252 lines
No EOL
5.4 MiB
252 lines
No EOL
5.4 MiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Nerdhalla — Valheim World Map</title>
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
|
|
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
html, body { height: 100%; font-family: 'Segoe UI', system-ui, sans-serif; }
|
|
#map { height: 100vh; width: 100vw; }
|
|
.leaflet-container { background: #1a1a2e; }
|
|
.info-panel {
|
|
position: absolute; top: 10px; right: 10px; z-index: 1000;
|
|
background: rgba(20, 20, 35, 0.92); color: #ddd;
|
|
padding: 12px 16px; border-radius: 8px; font-size: 13px;
|
|
max-width: 280px; max-height: 80vh; overflow-y: auto;
|
|
border: 1px solid #444; backdrop-filter: blur(8px);
|
|
}
|
|
.info-panel h3 { color: #ffd700; margin-bottom: 6px; font-size: 15px; }
|
|
.info-panel .stat { display: flex; justify-content: space-between; padding: 2px 0; }
|
|
.info-panel .stat span:last-child { color: #aaa; }
|
|
.legend {
|
|
position: absolute; bottom: 30px; right: 10px; z-index: 1000;
|
|
background: rgba(20, 20, 35, 0.92); color: #ddd;
|
|
padding: 10px 14px; border-radius: 8px; font-size: 12px;
|
|
border: 1px solid #444; backdrop-filter: blur(8px);
|
|
max-height: 50vh; overflow-y: auto;
|
|
}
|
|
.legend-item { display: flex; align-items: center; gap: 6px; padding: 2px 0; cursor: pointer; }
|
|
.legend-item .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
|
|
.legend-item .count { color: #888; margin-left: auto; font-size: 11px; }
|
|
.legend-item.active { color: #fff; }
|
|
.legend-item.inactive { opacity: 0.4; }
|
|
.search-box {
|
|
position: absolute; top: 10px; left: 10px; z-index: 1000;
|
|
background: rgba(20, 20, 35, 0.92); border: 1px solid #444;
|
|
border-radius: 8px; padding: 8px 12px; backdrop-filter: blur(8px);
|
|
display: flex; gap: 6px; align-items: center;
|
|
}
|
|
.search-box input {
|
|
background: transparent; border: none; color: #ddd; font-size: 13px;
|
|
outline: none; width: 180px;
|
|
}
|
|
.search-box input::placeholder { color: #666; }
|
|
.search-box .results {
|
|
position: absolute; top: 100%; left: 0; right: 0;
|
|
background: rgba(20, 20, 35, 0.95); border: 1px solid #444;
|
|
border-radius: 0 0 8px 8px; max-height: 200px; overflow-y: auto;
|
|
display: none;
|
|
}
|
|
.search-box .results div { padding: 6px 12px; cursor: pointer; font-size: 12px; border-bottom: 1px solid #333; }
|
|
.search-box .results div:hover { background: rgba(255,255,255,0.1); }
|
|
.search-box .results div .cat { color: #888; font-size: 10px; }
|
|
.popup-content { font-size: 12px; line-height: 1.5; }
|
|
.popup-content .name { font-weight: bold; font-size: 14px; color: #ffd700; }
|
|
.popup-content .coords { color: #888; }
|
|
.popup-content .badge { display: inline-block; padding: 1px 6px; border-radius: 3px; font-size: 10px; margin: 2px 2px 0 0; }
|
|
.popup-content .badge-dungeon { background: #ff8800; color: #000; }
|
|
.popup-content .badge-treasure { background: #ffd700; color: #000; }
|
|
.toggle-layer {
|
|
position: absolute; bottom: 30px; left: 10px; z-index: 1000;
|
|
display: flex; flex-direction: column; gap: 4px;
|
|
}
|
|
.toggle-layer button {
|
|
background: rgba(20, 20, 35, 0.92); color: #ddd; border: 1px solid #444;
|
|
padding: 6px 12px; border-radius: 6px; cursor: pointer; font-size: 11px;
|
|
backdrop-filter: blur(8px); text-align: left;
|
|
}
|
|
.toggle-layer button.active { border-color: #ffd700; color: #ffd700; }
|
|
.toggle-layer button:hover { background: rgba(40, 40, 60, 0.95); }
|
|
@media (max-width: 768px) { .info-panel { display: none; } .search-box input { width: 120px; } }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="map"></div>
|
|
|
|
<div class="search-box">
|
|
<span style="color:#666;">🔍</span>
|
|
<input type="text" id="search" placeholder="Search POIs..." oninput="doSearch(this.value)">
|
|
<div class="results" id="searchResults"></div>
|
|
</div>
|
|
|
|
<div class="info-panel" id="infoPanel">
|
|
<h3>🌍 Nerdhalla</h3>
|
|
<div class="stat"><span>Seed</span><span>yzZ5fr2tGa</span></div>
|
|
<div class="stat"><span>World</span><span>24000 x 24000</span></div>
|
|
<div class="stat"><span>POIs</span><span>11309</span></div>
|
|
<div class="stat"><span>Items</span><span>24407</span></div>
|
|
<div class="stat"><span>Biomes</span><span>9</span></div>
|
|
<hr style="border-color:#333;margin:6px 0;">
|
|
<div style="font-size:11px;color:#888;">
|
|
Click a marker for details<br>
|
|
Search by name or category
|
|
</div>
|
|
</div>
|
|
|
|
<div class="toggle-layer">
|
|
<button class="active" onclick="toggleLayer('composite')" id="btn-composite">🗺 Composite</button>
|
|
<button onclick="toggleLayer('biome')" id="btn-biome">🌿 Biome</button>
|
|
<button onclick="toggleLayer('height')" id="btn-height">⛰ Height</button>
|
|
</div>
|
|
|
|
<div class="legend" id="legend"></div>
|
|
|
|
<script>
|
|
const POIS = [{"id": 10093, "name": "Runestone_Ashlands", "category": "altar", "x": 194.9, "z": -8941.5, "px": 2081.3, "py": 522.0, "has_dungeon": false, "has_important": false}, {"id": 10094, "name": "Runestone_Ashlands", "category": "altar", "x": -2160.3, "z": -9038.8, "px": 1679.3, "py": 505.4, "has_dungeon": false, "has_important": false}, {"id": 10095, "name": "Runestone_Ashlands", "category": "altar", "x": 431.6, "z": -8969.3, "px": 2121.7, "py": 517.2, "has_dungeon": false, "has_important": false}, {"id": 10096, "name": "Runestone_Ashlands", "category": "altar", "x": -902.7, "z": -9086.0, "px": 1893.9, "py": 497.3, "has_dungeon": false, "has_important": false}, {"id": 10097, "name": "Runestone_Ashlands", "category": "altar", "x": 1544.7, "z": -9272.8, "px": 2311.6, "py": 465.4, "has_dungeon": false, "has_important": false}, {"id": 10098, "name": "Runestone_Ashlands", "category": "altar", "x": 1018.0, "z": -8966.1, "px": 2221.7, "py": 517.8, "has_dungeon": false, "has_important": false}, {"id": 10099, "name": "Runestone_Ashlands", "category": "altar", "x": 3082.5, "z": -9169.1, "px": 2574.1, "py": 483.1, "has_dungeon": false, "has_important": false}, {"id": 10100, "name": "Runestone_Ashlands", "category": "altar", "x": 2929.2, "z": -9104.7, "px": 2547.9, "py": 494.1, "has_dungeon": false, "has_important": false}, {"id": 10101, "name": "Runestone_Ashlands", "category": "altar", "x": 4143.8, "z": -8822.7, "px": 2755.2, "py": 542.3, "has_dungeon": false, "has_important": false}, {"id": 10102, "name": "Runestone_Ashlands", "category": "altar", "x": -5049.9, "z": -7600.0, "px": 1186.2, "py": 750.9, "has_dungeon": false, "has_important": false}, {"id": 10103, "name": "Runestone_Ashlands", "category": "altar", "x": 3254.8, "z": -9347.4, "px": 2603.5, "py": 452.7, "has_dungeon": false, "has_important": false}, {"id": 10104, "name": "Runestone_Ashlands", "category": "altar", "x": 2995.6, "z": -9264.1, "px": 2559.2, "py": 466.9, "has_dungeon": false, "has_important": false}, {"id": 10105, "name": "Runestone_Ashlands", "category": "altar", "x": 2929.0, "z": -8905.3, "px": 2547.9, "py": 528.2, "has_dungeon": false, "has_important": false}, {"id": 10106, "name": "Runestone_Ashlands", "category": "altar", "x": 2131.0, "z": -8317.7, "px": 2411.7, "py": 628.4, "has_dungeon": false, "has_important": false}, {"id": 10107, "name": "Runestone_Ashlands", "category": "altar", "x": -1836.7, "z": -8889.7, "px": 1734.5, "py": 530.8, "has_dungeon": false, "has_important": false}, {"id": 10108, "name": "Runestone_Ashlands", "category": "altar", "x": 2229.1, "z": -9276.8, "px": 2428.4, "py": 464.8, "has_dungeon": false, "has_important": false}, {"id": 10109, "name": "Runestone_Ashlands", "category": "altar", "x": 1527.4, "z": -9653.6, "px": 2308.7, "py": 400.5, "has_dungeon": false, "has_important": false}, {"id": 10110, "name": "Runestone_Ashlands", "category": "altar", "x": -1029.7, "z": -9353.9, "px": 1872.3, "py": 451.6, "has_dungeon": false, "has_important": false}, {"id": 10111, "name": "Runestone_Ashlands", "category": "altar", "x": -3658.9, "z": -8658.8, "px": 1423.5, "py": 570.2, "has_dungeon": false, "has_important": false}, {"id": 10112, "name": "Runestone_Ashlands", "category": "altar", "x": 2688.1, "z": -9094.4, "px": 2506.8, "py": 495.9, "has_dungeon": false, "has_important": false}, {"id": 10113, "name": "Runestone_Ashlands", "category": "altar", "x": 3770.9, "z": -8326.6, "px": 2691.6, "py": 626.9, "has_dungeon": false, "has_important": false}, {"id": 10114, "name": "Runestone_Ashlands", "category": "altar", "x": 2424.3, "z": -9103.8, "px": 2461.7, "py": 494.3, "has_dungeon": false, "has_important": false}, {"id": 10115, "name": "Runestone_Ashlands", "category": "altar", "x": -944.3, "z": -8829.0, "px": 1886.8, "py": 541.2, "has_dungeon": false, "has_important": false}, {"id": 10116, "name": "Runestone_Ashlands", "category": "altar", "x": -2296.0, "z": -8366.1, "px": 1656.1, "py": 620.2, "has_dungeon": false, "has_important": false}, {"id": 10117, "name": "Runestone_Ashlands", "category": "altar", "x": 4099.4, "z": -8658.4, "px": 2747.6, "py": 570.3, "has_dungeon": false, "has_important": false}, {"id": 10118, "name": "Runestone_Ashlands", "category": "altar", "x": -3515.8, "z": -8783.3, "px": 1448.0, "py": 549.0, "has_dungeon": false, "has_important": false}, {"id": 10119, "name": "Runestone_Ashlands", "category": "altar", "x": -3899.2, "z": -9132.3, "px": 1382.5, "py": 489.4, "has_dungeon": false, "has_important": false}, {"id": 10120, "name": "Runestone_Ashlands", "category": "altar", "x": 3506.3, "z": -8134.3, "px": 2646.4, "py": 659.7, "has_dungeon": false, "has_important": false}, {"id": 10121, "name": "Runestone_Ashlands", "category": "altar", "x": -3730.2, "z": -8269.2, "px": 1411.4, "py": 636.7, "has_dungeon": false, "has_important": false}, {"id": 10122, "name": "Runestone_Ashlands", "category": "altar", "x": 1738.9, "z": -9744.2, "px": 2344.8, "py": 385.0, "has_dungeon": false, "has_important": false}, {"id": 10123, "name": "Runestone_Ashlands", "category": "altar", "x": -2617.9, "z": -8689.0, "px": 1601.2, "py": 565.1, "has_dungeon": false, "has_important": false}, {"id": 10124, "name": "Runestone_Ashlands", "category": "altar", "x": 5370.6, "z": -7791.2, "px": 2964.6, "py": 718.3, "has_dungeon": false, "has_important": false}, {"id": 10125, "name": "Runestone_Ashlands", "category": "altar", "x": 951.5, "z": -9198.2, "px": 2210.4, "py": 478.2, "has_dungeon": false, "has_important": false}, {"id": 10126, "name": "Runestone_Ashlands", "category": "altar", "x": -2763.0, "z": -8236.6, "px": 1576.4, "py": 642.3, "has_dungeon": false, "has_important": false}, {"id": 10127, "name": "Runestone_Ashlands", "category": "altar", "x": -1915.3, "z": -9389.2, "px": 1721.1, "py": 445.6, "has_dungeon": false, "has_important": false}, {"id": 10128, "name": "Runestone_Ashlands", "category": "altar", "x": -4603.8, "z": -8237.1, "px": 1262.3, "py": 642.2, "has_dungeon": false, "has_important": false}, {"id": 10129, "name": "Runestone_Ashlands", "category": "altar", "x": -1554.8, "z": -9469.7, "px": 1782.6, "py": 431.8, "has_dungeon": false, "has_important": false}, {"id": 10130, "name": "Runestone_Ashlands", "category": "altar", "x": 5324.1, "z": -8012.4, "px": 2956.6, "py": 680.6, "has_dungeon": false, "has_important": false}, {"id": 10131, "name": "Runestone_Ashlands", "category": "altar", "x": -4280.3, "z": -8187.5, "px": 1317.5, "py": 650.7, "has_dungeon": false, "has_important": false}, {"id": 10132, "name": "Runestone_Ashlands", "category": "altar", "x": 4048.7, "z": -8960.3, "px": 2739.0, "py": 518.8, "has_dungeon": false, "has_important": false}, {"id": 10133, "name": "Runestone_Ashlands", "category": "altar", "x": -78.9, "z": -9842.8, "px": 2034.5, "py": 368.2, "has_dungeon": false, "has_important": false}, {"id": 10134, "name": "Runestone_Ashlands", "category": "altar", "x": 264.6, "z": -9158.3, "px": 2093.2, "py": 485.0, "has_dungeon": false, "has_important": false}, {"id": 10135, "name": "Runestone_Ashlands", "category": "altar", "x": 3442.7, "z": -8268.6, "px": 2635.6, "py": 636.8, "has_dungeon": false, "has_important": false}, {"id": 10136, "name": "Runestone_Ashlands", "category": "altar", "x": 3195.2, "z": -9482.5, "px": 2593.3, "py": 429.7, "has_dungeon": false, "has_important": false}, {"id": 10137, "name": "Runestone_Ashlands", "category": "altar", "x": 4013.8, "z": -8833.4, "px": 2733.0, "py": 540.4, "has_dungeon": false, "has_important": false}, {"id": 10138, "name": "Runestone_Ashlands", "category": "altar", "x": -767.4, "z": -9276.7, "px": 1917.0, "py": 464.8, "has_dungeon": false, "has_important": false}, {"id": 10139, "name": "Runestone_Ashlands", "category": "altar", "x": 56.0, "z": -9772.2, "px": 2057.6, "py": 380.2, "has_dungeon": false, "has_important": false}, {"id": 10140, "name": "Runestone_Ashlands", "category": "altar", "x": -3665.0, "z": -8958.6, "px": 1422.5, "py": 519.1, "has_dungeon": false, "has_important": false}, {"id": 10141, "name": "Runestone_Ashlands", "category": "altar", "x": -3634.8, "z": -8830.9, "px": 1427.7, "py": 540.9, "has_dungeon": false, "has_important": false}, {"id": 10142, "name": "Runestone_Ashlands", "category": "altar", "x": -2165.8, "z": -8756.3, "px": 1678.4, "py": 553.6, "has_dungeon": false, "has_important": false}, {"id": 10143, "name": "Runestone_Ashlands", "category": "altar", "x": 321.5, "z": -9681.5, "px": 2102.9, "py": 395.7, "has_dungeon": false, "has_important": false}, {"id": 10144, "name": "Runestone_Ashlands", "category": "altar", "x": -2157.1, "z": -8584.9, "px": 1679.9, "py": 582.8, "has_dungeon": false, "has_important": false}, {"id": 10145, "name": "Runestone_Ashlands", "category": "altar", "x": 519.6, "z": -9997.0, "px": 2136.7, "py": 341.8, "has_dungeon": false, "has_important": false}, {"id": 10146, "name": "Runestone_Ashlands", "category": "altar", "x": -5064.2, "z": -7744.1, "px": 1183.7, "py": 726.3, "has_dungeon": false, "has_important": false}, {"id": 10147, "name": "Runestone_Ashlands", "category": "altar", "x": 950.1, "z": -8702.5, "px": 2210.2, "py": 562.8, "has_dungeon": false, "has_important": false}, {"id": 10148, "name": "Runestone_Ashlands", "category": "altar", "x": -2686.3, "z": -8339.7, "px": 1589.5, "py": 624.7, "has_dungeon": false, "has_important": false}, {"id": 10149, "name": "Runestone_Ashlands", "category": "altar", "x": -198.2, "z": -8718.0, "px": 2014.2, "py": 560.1, "has_dungeon": false, "has_important": false}, {"id": 10150, "name": "Runestone_Ashlands", "category": "altar", "x": 1491.1, "z": -9788.9, "px": 2302.5, "py": 377.4, "has_dungeon": false, "has_important": false}, {"id": 10151, "name": "Runestone_Ashlands", "category": "altar", "x": -2610.6, "z": -8511.6, "px": 1602.5, "py": 595.4, "has_dungeon": false, "has_important": false}, {"id": 10152, "name": "Runestone_Ashlands", "category": "altar", "x": -144.5, "z": -8911.4, "px": 2023.3, "py": 527.1, "has_dungeon": false, "has_important": false}, {"id": 10153, "name": "Runestone_Ashlands", "category": "altar", "x": -512.2, "z": -9776.7, "px": 1960.6, "py": 379.4, "has_dungeon": false, "has_important": false}, {"id": 10154, "name": "Runestone_Ashlands", "category": "altar", "x": -1672.3, "z": -9402.7, "px": 1762.6, "py": 443.3, "has_dungeon": false, "has_important": false}, {"id": 10155, "name": "Runestone_Ashlands", "category": "altar", "x": -262.8, "z": -9540.7, "px": 2003.1, "py": 419.7, "has_dungeon": false, "has_important": false}, {"id": 10156, "name": "Runestone_Ashlands", "category": "altar", "x": -558.2, "z": -9581.5, "px": 1952.7, "py": 412.8, "has_dungeon": false, "has_important": false}, {"id": 10157, "name": "Runestone_Ashlands", "category": "altar", "x": -4721.0, "z": -8140.4, "px": 1242.3, "py": 658.7, "has_dungeon": false, "has_important": false}, {"id": 10158, "name": "Runestone_Ashlands", "category": "altar", "x": 1746.2, "z": -9233.9, "px": 2346.0, "py": 472.1, "has_dungeon": false, "has_important": false}, {"id": 10159, "name": "Runestone_Ashlands", "category": "altar", "x": -3826.9, "z": -9024.3, "px": 1394.9, "py": 507.9, "has_dungeon": false, "has_important": false}, {"id": 10160, "name": "Runestone_Ashlands", "category": "altar", "x": -5565.2, "z": -7747.9, "px": 1098.2, "py": 725.7, "has_dungeon": false, "has_important": false}, {"id": 10161, "name": "Runestone_Ashlands", "category": "altar", "x": 504.3, "z": -9220.5, "px": 2134.1, "py": 474.4, "has_dungeon": false, "has_important": false}, {"id": 10162, "name": "Runestone_Ashlands", "category": "altar", "x": 658.0, "z": -8638.5, "px": 2160.3, "py": 573.7, "has_dungeon": false, "has_important": false}, {"id": 7096, "name": "Runestone_BlackForest", "category": "altar", "x": -2506.7, "z": -6278.9, "px": 1620.2, "py": 976.4, "has_dungeon": false, "has_important": false}, {"id": 7097, "name": "Runestone_BlackForest", "category": "altar", "x": 3910.3, "z": 879.3, "px": 2715.4, "py": 2198.1, "has_dungeon": false, "has_important": false}, {"id": 7098, "name": "Runestone_BlackForest", "category": "altar", "x": 1960.9, "z": -4368.0, "px": 2382.7, "py": 1302.5, "has_dungeon": false, "has_important": false}, {"id": 7099, "name": "Runestone_BlackForest", "category": "altar", "x": 6925.9, "z": -4086.7, "px": 3230.0, "py": 1350.5, "has_dungeon": false, "has_important": false}, {"id": 7100, "name": "Runestone_BlackForest", "category": "altar", "x": -6995.8, "z": 263.4, "px": 854.1, "py": 2093.0, "has_dungeon": false, "has_important": false}, {"id": 7101, "name": "Runestone_BlackForest", "category": "altar", "x": 2730.6, "z": 5308.0, "px": 2514.0, "py": 2953.9, "has_dungeon": false, "has_important": false}, {"id": 7102, "name": "Runestone_BlackForest", "category": "altar", "x": -9618.9, "z": 621.8, "px": 406.4, "py": 2154.1, "has_dungeon": false, "has_important": false}, {"id": 7103, "name": "Runestone_BlackForest", "category": "altar", "x": 2154.7, "z": 1331.4, "px": 2415.7, "py": 2275.2, "has_dungeon": false, "has_important": false}, {"id": 7104, "name": "Runestone_BlackForest", "category": "altar", "x": -6056.6, "z": 4685.4, "px": 1014.3, "py": 2847.6, "has_dungeon": false, "has_important": false}, {"id": 7105, "name": "Runestone_BlackForest", "category": "altar", "x": -3264.6, "z": 4304.6, "px": 1490.8, "py": 2782.7, "has_dungeon": false, "has_important": false}, {"id": 7106, "name": "Runestone_BlackForest", "category": "altar", "x": 8813.5, "z": -1449.6, "px": 3552.2, "py": 1800.6, "has_dungeon": false, "has_important": false}, {"id": 7107, "name": "Runestone_BlackForest", "category": "altar", "x": 3322.8, "z": 0.6, "px": 2615.1, "py": 2048.1, "has_dungeon": false, "has_important": false}, {"id": 7108, "name": "Runestone_BlackForest", "category": "altar", "x": 5632.2, "z": -766.3, "px": 3009.2, "py": 1917.2, "has_dungeon": false, "has_important": false}, {"id": 7109, "name": "Runestone_BlackForest", "category": "altar", "x": -4221.6, "z": -314.8, "px": 1327.5, "py": 1994.3, "has_dungeon": false, "has_important": false}, {"id": 7110, "name": "Runestone_BlackForest", "category": "altar", "x": 7037.0, "z": 2306.4, "px": 3249.0, "py": 2441.6, "has_dungeon": false, "has_important": false}, {"id": 7111, "name": "Runestone_BlackForest", "category": "altar", "x": 1791.4, "z": -1390.5, "px": 2353.7, "py": 1810.7, "has_dungeon": false, "has_important": false}, {"id": 7112, "name": "Runestone_BlackForest", "category": "altar", "x": -8557.1, "z": -2034.0, "px": 587.6, "py": 1700.9, "has_dungeon": false, "has_important": false}, {"id": 7113, "name": "Runestone_BlackForest", "category": "altar", "x": 5056.2, "z": 5358.4, "px": 2910.9, "py": 2962.5, "has_dungeon": false, "has_important": false}, {"id": 7114, "name": "Runestone_BlackForest", "category": "altar", "x": -7307.7, "z": -1937.4, "px": 800.8, "py": 1717.4, "has_dungeon": false, "has_important": false}, {"id": 7115, "name": "Runestone_BlackForest", "category": "altar", "x": 5230.6, "z": 5192.4, "px": 2940.7, "py": 2934.2, "has_dungeon": false, "has_important": false}, {"id": 7116, "name": "Runestone_BlackForest", "category": "altar", "x": -6607.9, "z": 3630.0, "px": 920.3, "py": 2667.5, "has_dungeon": false, "has_important": false}, {"id": 7117, "name": "Runestone_BlackForest", "category": "altar", "x": 363.7, "z": 5043.5, "px": 2110.1, "py": 2908.8, "has_dungeon": false, "has_important": false}, {"id": 7118, "name": "Runestone_BlackForest", "category": "altar", "x": 526.1, "z": 7163.9, "px": 2137.8, "py": 3270.6, "has_dungeon": false, "has_important": false}, {"id": 7119, "name": "Runestone_BlackForest", "category": "altar", "x": -6676.4, "z": -4675.0, "px": 908.6, "py": 1250.1, "has_dungeon": false, "has_important": false}, {"id": 7120, "name": "Runestone_BlackForest", "category": "altar", "x": 5674.8, "z": 5098.5, "px": 3016.5, "py": 2918.1, "has_dungeon": false, "has_important": false}, {"id": 7121, "name": "Runestone_BlackForest", "category": "altar", "x": 2472.6, "z": 1461.5, "px": 2470.0, "py": 2297.4, "has_dungeon": false, "has_important": false}, {"id": 7122, "name": "Runestone_BlackForest", "category": "altar", "x": -9173.2, "z": -2636.6, "px": 482.4, "py": 1598.0, "has_dungeon": false, "has_important": false}, {"id": 7123, "name": "Runestone_BlackForest", "category": "altar", "x": -8617.9, "z": -552.5, "px": 577.2, "py": 1953.7, "has_dungeon": false, "has_important": false}, {"id": 7124, "name": "Runestone_BlackForest", "category": "altar", "x": 2280.3, "z": 5331.9, "px": 2437.2, "py": 2958.0, "has_dungeon": false, "has_important": false}, {"id": 7125, "name": "Runestone_BlackForest", "category": "altar", "x": -3991.1, "z": 1915.7, "px": 1366.9, "py": 2374.9, "has_dungeon": false, "has_important": false}, {"id": 7126, "name": "Runestone_BlackForest", "category": "altar", "x": 8720.7, "z": -1685.5, "px": 3536.3, "py": 1760.3, "has_dungeon": false, "has_important": false}, {"id": 7127, "name": "Runestone_BlackForest", "category": "altar", "x": -1257.8, "z": -7661.3, "px": 1833.3, "py": 740.5, "has_dungeon": false, "has_important": false}, {"id": 7128, "name": "Runestone_BlackForest", "category": "altar", "x": -6069.2, "z": -575.5, "px": 1012.2, "py": 1949.8, "has_dungeon": false, "has_important": false}, {"id": 7129, "name": "Runestone_BlackForest", "category": "altar", "x": 2897.9, "z": -2191.3, "px": 2542.6, "py": 1674.0, "has_dungeon": false, "has_important": false}, {"id": 7130, "name": "Runestone_BlackForest", "category": "altar", "x": -8884.0, "z": 3219.7, "px": 531.8, "py": 2597.5, "has_dungeon": false, "has_important": false}, {"id": 7131, "name": "Runestone_BlackForest", "category": "altar", "x": 2384.8, "z": -1640.4, "px": 2455.0, "py": 1768.0, "has_dungeon": false, "has_important": false}, {"id": 7132, "name": "Runestone_BlackForest", "category": "altar", "x": 7094.4, "z": -4232.6, "px": 3258.8, "py": 1325.6, "has_dungeon": false, "has_important": false}, {"id": 7133, "name": "Runestone_BlackForest", "category": "altar", "x": 1797.2, "z": -6191.2, "px": 2354.7, "py": 991.4, "has_dungeon": false, "has_important": false}, {"id": 7134, "name": "Runestone_BlackForest", "category": "altar", "x": 2182.5, "z": -1657.7, "px": 2420.5, "py": 1765.1, "has_dungeon": false, "has_important": false}, {"id": 7135, "name": "Runestone_BlackForest", "category": "altar", "x": 2923.2, "z": 937.7, "px": 2546.9, "py": 2208.0, "has_dungeon": false, "has_important": false}, {"id": 7136, "name": "Runestone_BlackForest", "category": "altar", "x": 3959.7, "z": -333.1, "px": 2723.8, "py": 1991.2, "has_dungeon": false, "has_important": false}, {"id": 7137, "name": "Runestone_BlackForest", "category": "altar", "x": -8684.7, "z": -1021.8, "px": 565.8, "py": 1873.6, "has_dungeon": false, "has_important": false}, {"id": 7138, "name": "Runestone_BlackForest", "category": "altar", "x": -8769.0, "z": -488.2, "px": 551.4, "py": 1964.7, "has_dungeon": false, "has_important": false}, {"id": 7139, "name": "Runestone_BlackForest", "category": "altar", "x": 8175.4, "z": -2665.4, "px": 3443.3, "py": 1593.1, "has_dungeon": false, "has_important": false}, {"id": 7140, "name": "Runestone_BlackForest", "category": "altar", "x": 1714.0, "z": -4469.1, "px": 2340.5, "py": 1285.3, "has_dungeon": false, "has_important": false}, {"id": 7141, "name": "Runestone_BlackForest", "category": "altar", "x": -5684.0, "z": -4910.9, "px": 1077.9, "py": 1209.9, "has_dungeon": false, "has_important": false}, {"id": 7142, "name": "Runestone_BlackForest", "category": "altar", "x": 6635.3, "z": 4968.8, "px": 3180.4, "py": 2896.0, "has_dungeon": false, "has_important": false}, {"id": 7143, "name": "Runestone_BlackForest", "category": "altar", "x": 1064.4, "z": 3407.2, "px": 2229.7, "py": 2629.5, "has_dungeon": false, "has_important": false}, {"id": 7144, "name": "Runestone_BlackForest", "category": "altar", "x": 7725.5, "z": -2542.7, "px": 3366.5, "py": 1614.0, "has_dungeon": false, "has_important": false}, {"id": 7145, "name": "Runestone_BlackForest", "category": "altar", "x": 1448.4, "z": -2500.4, "px": 2295.2, "py": 1621.3, "has_dungeon": false, "has_important": false}, {"id": 6849, "name": "Runestone_Boars", "category": "altar", "x": -4980.5, "z": 406.1, "px": 1198.0, "py": 2117.3, "has_dungeon": false, "has_important": true}, {"id": 6850, "name": "Runestone_Boars", "category": "altar", "x": -3883.3, "z": -2345.0, "px": 1385.3, "py": 1647.8, "has_dungeon": false, "has_important": true}, {"id": 6851, "name": "Runestone_Boars", "category": "altar", "x": 4308.5, "z": -1259.4, "px": 2783.3, "py": 1833.1, "has_dungeon": false, "has_important": true}, {"id": 6852, "name": "Runestone_Boars", "category": "altar", "x": -2360.0, "z": 437.1, "px": 1645.2, "py": 2122.6, "has_dungeon": false, "has_important": true}, {"id": 6853, "name": "Runestone_Boars", "category": "altar", "x": -2994.7, "z": 1837.6, "px": 1536.9, "py": 2361.6, "has_dungeon": false, "has_important": true}, {"id": 6854, "name": "Runestone_Boars", "category": "altar", "x": 108.1, "z": -4167.3, "px": 2066.4, "py": 1336.8, "has_dungeon": false, "has_important": true}, {"id": 6855, "name": "Runestone_Boars", "category": "altar", "x": 645.7, "z": 3369.7, "px": 2158.2, "py": 2623.1, "has_dungeon": false, "has_important": true}, {"id": 6856, "name": "Runestone_Boars", "category": "altar", "x": -3921.8, "z": -2218.9, "px": 1378.7, "py": 1669.3, "has_dungeon": false, "has_important": true}, {"id": 6857, "name": "Runestone_Boars", "category": "altar", "x": 3026.9, "z": -2761.0, "px": 2564.6, "py": 1576.8, "has_dungeon": false, "has_important": true}, {"id": 6858, "name": "Runestone_Boars", "category": "altar", "x": 3435.6, "z": -146.9, "px": 2634.3, "py": 2022.9, "has_dungeon": false, "has_important": true}, {"id": 6859, "name": "Runestone_Boars", "category": "altar", "x": -1768.8, "z": 3195.3, "px": 1746.1, "py": 2593.3, "has_dungeon": false, "has_important": true}, {"id": 6860, "name": "Runestone_Boars", "category": "altar", "x": 203.7, "z": -1520.1, "px": 2082.8, "py": 1788.6, "has_dungeon": false, "has_important": true}, {"id": 6861, "name": "Runestone_Boars", "category": "altar", "x": -3854.6, "z": -2105.5, "px": 1390.1, "py": 1688.7, "has_dungeon": false, "has_important": true}, {"id": 6862, "name": "Runestone_Boars", "category": "altar", "x": 982.8, "z": 698.0, "px": 2215.7, "py": 2167.1, "has_dungeon": false, "has_important": true}, {"id": 6863, "name": "Runestone_Boars", "category": "altar", "x": 4136.0, "z": -1237.1, "px": 2753.9, "py": 1836.9, "has_dungeon": false, "has_important": true}, {"id": 6864, "name": "Runestone_Boars", "category": "altar", "x": 4271.4, "z": -1486.1, "px": 2777.0, "py": 1794.4, "has_dungeon": false, "has_important": true}, {"id": 6865, "name": "Runestone_Boars", "category": "altar", "x": 3371.9, "z": -255.7, "px": 2623.5, "py": 2004.4, "has_dungeon": false, "has_important": true}, {"id": 6866, "name": "Runestone_Boars", "category": "altar", "x": -3539.2, "z": -1873.6, "px": 1444.0, "py": 1728.2, "has_dungeon": false, "has_important": true}, {"id": 6867, "name": "Runestone_Boars", "category": "altar", "x": -2101.9, "z": 382.7, "px": 1689.3, "py": 2113.3, "has_dungeon": false, "has_important": true}, {"id": 6868, "name": "Runestone_Boars", "category": "altar", "x": 10.6, "z": 276.8, "px": 2049.8, "py": 2095.2, "has_dungeon": false, "has_important": true}, {"id": 6869, "name": "Runestone_Boars", "category": "altar", "x": 124.9, "z": 396.4, "px": 2069.3, "py": 2115.7, "has_dungeon": false, "has_important": true}, {"id": 6870, "name": "Runestone_Boars", "category": "altar", "x": 1687.5, "z": -74.2, "px": 2336.0, "py": 2035.3, "has_dungeon": false, "has_important": true}, {"id": 6871, "name": "Runestone_Boars", "category": "altar", "x": -311.6, "z": 240.6, "px": 1994.8, "py": 2089.1, "has_dungeon": false, "has_important": true}, {"id": 6872, "name": "Runestone_Boars", "category": "altar", "x": 1811.1, "z": 1291.5, "px": 2357.1, "py": 2268.4, "has_dungeon": false, "has_important": true}, {"id": 6873, "name": "Runestone_Boars", "category": "altar", "x": -215.1, "z": 40.0, "px": 2011.3, "py": 2054.8, "has_dungeon": false, "has_important": true}, {"id": 6874, "name": "Runestone_Boars", "category": "altar", "x": 1128.7, "z": 827.0, "px": 2240.6, "py": 2189.1, "has_dungeon": false, "has_important": true}, {"id": 6875, "name": "Runestone_Boars", "category": "altar", "x": -2730.9, "z": 1686.8, "px": 1581.9, "py": 2335.9, "has_dungeon": false, "has_important": true}, {"id": 6876, "name": "Runestone_Boars", "category": "altar", "x": 429.3, "z": -105.2, "px": 2121.3, "py": 2030.0, "has_dungeon": false, "has_important": true}, {"id": 6877, "name": "Runestone_Boars", "category": "altar", "x": 4232.8, "z": -1363.1, "px": 2770.4, "py": 1815.4, "has_dungeon": false, "has_important": true}, {"id": 6878, "name": "Runestone_Boars", "category": "altar", "x": -2175.0, "z": 198.6, "px": 1676.8, "py": 2081.9, "has_dungeon": false, "has_important": true}, {"id": 6879, "name": "Runestone_Boars", "category": "altar", "x": 185.4, "z": 250.0, "px": 2079.6, "py": 2090.7, "has_dungeon": false, "has_important": true}, {"id": 6880, "name": "Runestone_Boars", "category": "altar", "x": -525.3, "z": -1208.9, "px": 1958.3, "py": 1841.7, "has_dungeon": false, "has_important": true}, {"id": 6881, "name": "Runestone_Boars", "category": "altar", "x": -70.0, "z": -1791.1, "px": 2036.1, "py": 1742.3, "has_dungeon": false, "has_important": true}, {"id": 6882, "name": "Runestone_Boars", "category": "altar", "x": -3539.4, "z": 2793.2, "px": 1443.9, "py": 2524.7, "has_dungeon": false, "has_important": true}, {"id": 6883, "name": "Runestone_Boars", "category": "altar", "x": -1583.1, "z": -1551.2, "px": 1777.8, "py": 1783.3, "has_dungeon": false, "has_important": true}, {"id": 6884, "name": "Runestone_Boars", "category": "altar", "x": 1687.9, "z": 87.1, "px": 2336.1, "py": 2062.9, "has_dungeon": false, "has_important": true}, {"id": 6885, "name": "Runestone_Boars", "category": "altar", "x": 3027.0, "z": 2698.0, "px": 2564.6, "py": 2508.5, "has_dungeon": false, "has_important": true}, {"id": 6886, "name": "Runestone_Boars", "category": "altar", "x": -2094.9, "z": 1943.5, "px": 1690.5, "py": 2379.7, "has_dungeon": false, "has_important": true}, {"id": 6887, "name": "Runestone_Boars", "category": "altar", "x": 1148.7, "z": -2164.1, "px": 2244.0, "py": 1678.7, "has_dungeon": false, "has_important": true}, {"id": 6888, "name": "Runestone_Boars", "category": "altar", "x": -1585.5, "z": -821.5, "px": 1777.4, "py": 1907.8, "has_dungeon": false, "has_important": true}, {"id": 6889, "name": "Runestone_Boars", "category": "altar", "x": 837.4, "z": 893.5, "px": 2190.9, "py": 2200.5, "has_dungeon": false, "has_important": true}, {"id": 6890, "name": "Runestone_Boars", "category": "altar", "x": 3325.1, "z": 2512.9, "px": 2615.5, "py": 2476.9, "has_dungeon": false, "has_important": true}, {"id": 6891, "name": "Runestone_Boars", "category": "altar", "x": -127.6, "z": -205.4, "px": 2026.2, "py": 2012.9, "has_dungeon": false, "has_important": true}, {"id": 6892, "name": "Runestone_Boars", "category": "altar", "x": -4988.9, "z": 234.6, "px": 1196.6, "py": 2088.0, "has_dungeon": false, "has_important": true}, {"id": 6893, "name": "Runestone_Boars", "category": "altar", "x": -1744.1, "z": 3019.0, "px": 1750.3, "py": 2563.2, "has_dungeon": false, "has_important": true}, {"id": 6894, "name": "Runestone_Boars", "category": "altar", "x": -1577.1, "z": -1394.3, "px": 1778.8, "py": 1810.0, "has_dungeon": false, "has_important": true}, {"id": 6895, "name": "Runestone_Boars", "category": "altar", "x": -533.7, "z": -3822.8, "px": 1956.9, "py": 1395.6, "has_dungeon": false, "has_important": true}, {"id": 6896, "name": "Runestone_Boars", "category": "altar", "x": 66.4, "z": -4045.0, "px": 2059.3, "py": 1357.7, "has_dungeon": false, "has_important": true}, {"id": 6897, "name": "Runestone_Boars", "category": "altar", "x": -3577.5, "z": -2029.3, "px": 1437.4, "py": 1701.7, "has_dungeon": false, "has_important": true}, {"id": 6898, "name": "Runestone_Boars", "category": "altar", "x": -585.5, "z": -3697.0, "px": 1948.1, "py": 1417.0, "has_dungeon": false, "has_important": true}, {"id": 1935, "name": "Runestone_Draugr", "category": "altar", "x": 1356.3, "z": 2313.8, "px": 2279.5, "py": 2442.9, "has_dungeon": false, "has_important": true}, {"id": 1936, "name": "Runestone_Draugr", "category": "altar", "x": 1784.2, "z": 4816.0, "px": 2352.5, "py": 2869.9, "has_dungeon": false, "has_important": true}, {"id": 1937, "name": "Runestone_Draugr", "category": "altar", "x": -4494.8, "z": 3642.9, "px": 1280.9, "py": 2669.7, "has_dungeon": false, "has_important": true}, {"id": 1938, "name": "Runestone_Draugr", "category": "altar", "x": -2808.3, "z": -1855.7, "px": 1568.7, "py": 1731.3, "has_dungeon": false, "has_important": true}, {"id": 1939, "name": "Runestone_Draugr", "category": "altar", "x": 182.1, "z": 4224.0, "px": 2079.1, "py": 2768.9, "has_dungeon": false, "has_important": true}, {"id": 1940, "name": "Runestone_Draugr", "category": "altar", "x": 4798.5, "z": -513.2, "px": 2866.9, "py": 1960.4, "has_dungeon": false, "has_important": true}, {"id": 1941, "name": "Runestone_Draugr", "category": "altar", "x": 4113.8, "z": 466.5, "px": 2750.1, "py": 2127.6, "has_dungeon": false, "has_important": true}, {"id": 1942, "name": "Runestone_Draugr", "category": "altar", "x": -2425.2, "z": 4463.2, "px": 1634.1, "py": 2809.7, "has_dungeon": false, "has_important": true}, {"id": 1943, "name": "Runestone_Draugr", "category": "altar", "x": 2744.9, "z": 3836.5, "px": 2516.5, "py": 2702.8, "has_dungeon": false, "has_important": true}, {"id": 1944, "name": "Runestone_Draugr", "category": "altar", "x": 2511.7, "z": -5184.7, "px": 2476.7, "py": 1163.1, "has_dungeon": false, "has_important": true}, {"id": 1945, "name": "Runestone_Draugr", "category": "altar", "x": 2797.7, "z": -557.7, "px": 2525.5, "py": 1952.8, "has_dungeon": false, "has_important": true}, {"id": 1946, "name": "Runestone_Draugr", "category": "altar", "x": 2441.9, "z": -874.2, "px": 2464.8, "py": 1898.8, "has_dungeon": false, "has_important": true}, {"id": 1947, "name": "Runestone_Draugr", "category": "altar", "x": 3833.7, "z": 573.0, "px": 2702.3, "py": 2145.8, "has_dungeon": false, "has_important": true}, {"id": 1948, "name": "Runestone_Draugr", "category": "altar", "x": -2115.7, "z": -4275.8, "px": 1686.9, "py": 1318.3, "has_dungeon": false, "has_important": true}, {"id": 1949, "name": "Runestone_Draugr", "category": "altar", "x": 1158.4, "z": 4243.8, "px": 2245.7, "py": 2772.3, "has_dungeon": false, "has_important": true}, {"id": 1950, "name": "Runestone_Draugr", "category": "altar", "x": 2216.9, "z": 562.2, "px": 2426.4, "py": 2143.9, "has_dungeon": false, "has_important": true}, {"id": 1951, "name": "Runestone_Draugr", "category": "altar", "x": -2577.3, "z": -847.8, "px": 1608.1, "py": 1903.3, "has_dungeon": false, "has_important": true}, {"id": 1952, "name": "Runestone_Draugr", "category": "altar", "x": 2119.3, "z": 319.5, "px": 2409.7, "py": 2102.5, "has_dungeon": false, "has_important": true}, {"id": 1953, "name": "Runestone_Draugr", "category": "altar", "x": -5054.3, "z": -704.5, "px": 1185.4, "py": 1927.8, "has_dungeon": false, "has_important": true}, {"id": 1954, "name": "Runestone_Draugr", "category": "altar", "x": 3464.3, "z": -4627.9, "px": 2639.2, "py": 1258.2, "has_dungeon": false, "has_important": true}, {"id": 1955, "name": "Runestone_Draugr", "category": "altar", "x": -2562.5, "z": -4099.2, "px": 1610.7, "py": 1348.4, "has_dungeon": false, "has_important": true}, {"id": 1956, "name": "Runestone_Draugr", "category": "altar", "x": 726.0, "z": 2625.4, "px": 2171.9, "py": 2496.1, "has_dungeon": false, "has_important": true}, {"id": 1957, "name": "Runestone_Draugr", "category": "altar", "x": -1038.8, "z": -3765.1, "px": 1870.7, "py": 1405.4, "has_dungeon": false, "has_important": true}, {"id": 1958, "name": "Runestone_Draugr", "category": "altar", "x": 3392.1, "z": 4778.1, "px": 2626.9, "py": 2863.5, "has_dungeon": false, "has_important": true}, {"id": 1959, "name": "Runestone_Draugr", "category": "altar", "x": -2668.4, "z": -1519.5, "px": 1592.6, "py": 1788.7, "has_dungeon": false, "has_important": true}, {"id": 1960, "name": "Runestone_Draugr", "category": "altar", "x": 70.6, "z": -5205.3, "px": 2060.0, "py": 1159.6, "has_dungeon": false, "has_important": true}, {"id": 1961, "name": "Runestone_Draugr", "category": "altar", "x": -503.0, "z": -4113.6, "px": 1962.2, "py": 1345.9, "has_dungeon": false, "has_important": true}, {"id": 1962, "name": "Runestone_Draugr", "category": "altar", "x": -5300.1, "z": -842.9, "px": 1143.4, "py": 1904.1, "has_dungeon": false, "has_important": true}, {"id": 1963, "name": "Runestone_Draugr", "category": "altar", "x": 3514.0, "z": -4274.9, "px": 2647.7, "py": 1318.4, "has_dungeon": false, "has_important": true}, {"id": 1964, "name": "Runestone_Draugr", "category": "altar", "x": -2510.2, "z": -1602.4, "px": 1619.6, "py": 1774.5, "has_dungeon": false, "has_important": true}, {"id": 1965, "name": "Runestone_Draugr", "category": "altar", "x": 4602.2, "z": -3305.9, "px": 2833.4, "py": 1483.8, "has_dungeon": false, "has_important": true}, {"id": 1966, "name": "Runestone_Draugr", "category": "altar", "x": -2600.7, "z": -454.6, "px": 1604.1, "py": 1970.4, "has_dungeon": false, "has_important": true}, {"id": 1967, "name": "Runestone_Draugr", "category": "altar", "x": -2700.4, "z": -4115.6, "px": 1587.1, "py": 1345.6, "has_dungeon": false, "has_important": true}, {"id": 1968, "name": "Runestone_Draugr", "category": "altar", "x": 3567.2, "z": 629.7, "px": 2656.8, "py": 2155.5, "has_dungeon": false, "has_important": true}, {"id": 1969, "name": "Runestone_Draugr", "category": "altar", "x": 5715.9, "z": 1422.9, "px": 3023.5, "py": 2290.8, "has_dungeon": false, "has_important": true}, {"id": 1970, "name": "Runestone_Draugr", "category": "altar", "x": -4409.2, "z": 3764.8, "px": 1295.5, "py": 2690.5, "has_dungeon": false, "has_important": true}, {"id": 1971, "name": "Runestone_Draugr", "category": "altar", "x": -2606.4, "z": 2188.6, "px": 1603.2, "py": 2421.5, "has_dungeon": false, "has_important": true}, {"id": 1972, "name": "Runestone_Draugr", "category": "altar", "x": 73.9, "z": 2700.5, "px": 2060.6, "py": 2508.9, "has_dungeon": false, "has_important": true}, {"id": 1973, "name": "Runestone_Draugr", "category": "altar", "x": 1268.7, "z": 2005.0, "px": 2264.5, "py": 2390.2, "has_dungeon": false, "has_important": true}, {"id": 1974, "name": "Runestone_Draugr", "category": "altar", "x": 3253.0, "z": 4744.7, "px": 2603.2, "py": 2857.8, "has_dungeon": false, "has_important": true}, {"id": 1975, "name": "Runestone_Draugr", "category": "altar", "x": -3785.2, "z": -4104.2, "px": 1402.0, "py": 1347.5, "has_dungeon": false, "has_important": true}, {"id": 1976, "name": "Runestone_Draugr", "category": "altar", "x": -3529.0, "z": 2580.7, "px": 1445.7, "py": 2488.4, "has_dungeon": false, "has_important": true}, {"id": 1977, "name": "Runestone_Draugr", "category": "altar", "x": 1657.5, "z": 1424.1, "px": 2330.9, "py": 2291.0, "has_dungeon": false, "has_important": true}, {"id": 1978, "name": "Runestone_Draugr", "category": "altar", "x": 3530.6, "z": 772.4, "px": 2650.6, "py": 2179.8, "has_dungeon": false, "has_important": true}, {"id": 1979, "name": "Runestone_Draugr", "category": "altar", "x": -3638.0, "z": 3028.6, "px": 1427.1, "py": 2564.9, "has_dungeon": false, "has_important": true}, {"id": 1980, "name": "Runestone_Draugr", "category": "altar", "x": -2539.5, "z": 5181.8, "px": 1614.6, "py": 2932.4, "has_dungeon": false, "has_important": true}, {"id": 1981, "name": "Runestone_Draugr", "category": "altar", "x": 701.2, "z": 4724.6, "px": 2167.7, "py": 2854.3, "has_dungeon": false, "has_important": true}, {"id": 1982, "name": "Runestone_Draugr", "category": "altar", "x": 2386.1, "z": 4032.3, "px": 2455.2, "py": 2736.2, "has_dungeon": false, "has_important": true}, {"id": 1983, "name": "Runestone_Draugr", "category": "altar", "x": 1786.1, "z": 1488.0, "px": 2352.8, "py": 2302.0, "has_dungeon": false, "has_important": true}, {"id": 1984, "name": "Runestone_Draugr", "category": "altar", "x": 5113.6, "z": -210.0, "px": 2920.7, "py": 2012.2, "has_dungeon": false, "has_important": true}, {"id": 1633, "name": "Runestone_Greydwarfs", "category": "altar", "x": -774.6, "z": -53.6, "px": 1915.8, "py": 2038.9, "has_dungeon": false, "has_important": false}, {"id": 1634, "name": "Runestone_Greydwarfs", "category": "altar", "x": 590.2, "z": -190.0, "px": 2148.7, "py": 2015.6, "has_dungeon": false, "has_important": false}, {"id": 1635, "name": "Runestone_Greydwarfs", "category": "altar", "x": -903.9, "z": 437.5, "px": 1893.7, "py": 2122.7, "has_dungeon": false, "has_important": false}, {"id": 1636, "name": "Runestone_Greydwarfs", "category": "altar", "x": 749.5, "z": -192.7, "px": 2175.9, "py": 2015.1, "has_dungeon": false, "has_important": false}, {"id": 1637, "name": "Runestone_Greydwarfs", "category": "altar", "x": 651.4, "z": 382.5, "px": 2159.2, "py": 2113.3, "has_dungeon": false, "has_important": false}, {"id": 1638, "name": "Runestone_Greydwarfs", "category": "altar", "x": -848.4, "z": 637.3, "px": 1903.2, "py": 2156.8, "has_dungeon": false, "has_important": false}, {"id": 1639, "name": "Runestone_Greydwarfs", "category": "altar", "x": 61.0, "z": -1085.6, "px": 2058.4, "py": 1862.7, "has_dungeon": false, "has_important": false}, {"id": 1640, "name": "Runestone_Greydwarfs", "category": "altar", "x": 1920.4, "z": -199.7, "px": 2375.7, "py": 2013.9, "has_dungeon": false, "has_important": false}, {"id": 1641, "name": "Runestone_Greydwarfs", "category": "altar", "x": 571.4, "z": 23.6, "px": 2145.5, "py": 2052.0, "has_dungeon": false, "has_important": false}, {"id": 1642, "name": "Runestone_Greydwarfs", "category": "altar", "x": -1344.4, "z": -1228.0, "px": 1818.6, "py": 1838.4, "has_dungeon": false, "has_important": false}, {"id": 1643, "name": "Runestone_Greydwarfs", "category": "altar", "x": -1154.0, "z": -1412.9, "px": 1851.1, "py": 1806.9, "has_dungeon": false, "has_important": false}, {"id": 1644, "name": "Runestone_Greydwarfs", "category": "altar", "x": -1388.9, "z": -1418.9, "px": 1811.0, "py": 1805.8, "has_dungeon": false, "has_important": false}, {"id": 1645, "name": "Runestone_Greydwarfs", "category": "altar", "x": -276.3, "z": 594.6, "px": 2000.8, "py": 2149.5, "has_dungeon": false, "has_important": false}, {"id": 1646, "name": "Runestone_Greydwarfs", "category": "altar", "x": -1280.8, "z": -1531.5, "px": 1829.4, "py": 1786.6, "has_dungeon": false, "has_important": false}, {"id": 1647, "name": "Runestone_Greydwarfs", "category": "altar", "x": 444.2, "z": -274.8, "px": 2123.8, "py": 2001.1, "has_dungeon": false, "has_important": false}, {"id": 1648, "name": "Runestone_Greydwarfs", "category": "altar", "x": -1100.1, "z": -963.2, "px": 1860.2, "py": 1883.6, "has_dungeon": false, "has_important": false}, {"id": 1649, "name": "Runestone_Greydwarfs", "category": "altar", "x": -525.1, "z": 467.5, "px": 1958.4, "py": 2127.8, "has_dungeon": false, "has_important": false}, {"id": 1650, "name": "Runestone_Greydwarfs", "category": "altar", "x": -180.6, "z": 789.3, "px": 2017.2, "py": 2182.7, "has_dungeon": false, "has_important": false}, {"id": 1651, "name": "Runestone_Greydwarfs", "category": "altar", "x": -443.7, "z": 264.1, "px": 1972.3, "py": 2093.1, "has_dungeon": false, "has_important": false}, {"id": 1652, "name": "Runestone_Greydwarfs", "category": "altar", "x": -631.2, "z": -40.1, "px": 1940.3, "py": 2041.2, "has_dungeon": false, "has_important": false}, {"id": 1653, "name": "Runestone_Greydwarfs", "category": "altar", "x": -388.9, "z": 463.5, "px": 1981.6, "py": 2127.1, "has_dungeon": false, "has_important": false}, {"id": 1654, "name": "Runestone_Greydwarfs", "category": "altar", "x": 554.6, "z": 530.8, "px": 2142.7, "py": 2138.6, "has_dungeon": false, "has_important": false}, {"id": 1655, "name": "Runestone_Greydwarfs", "category": "altar", "x": -1152.6, "z": -1275.5, "px": 1851.3, "py": 1830.3, "has_dungeon": false, "has_important": false}, {"id": 1656, "name": "Runestone_Greydwarfs", "category": "altar", "x": 1769.9, "z": -843.3, "px": 2350.1, "py": 1904.1, "has_dungeon": false, "has_important": false}, {"id": 1657, "name": "Runestone_Greydwarfs", "category": "altar", "x": -304.5, "z": -1512.0, "px": 1996.0, "py": 1790.0, "has_dungeon": false, "has_important": false}, {"id": 6749, "name": "Runestone_Meadows", "category": "altar", "x": 84.7, "z": -1840.9, "px": 2062.5, "py": 1733.8, "has_dungeon": false, "has_important": false}, {"id": 6750, "name": "Runestone_Meadows", "category": "altar", "x": 278.8, "z": 364.1, "px": 2095.6, "py": 2110.1, "has_dungeon": false, "has_important": false}, {"id": 6751, "name": "Runestone_Meadows", "category": "altar", "x": -1640.8, "z": -1278.6, "px": 1768.0, "py": 1829.8, "has_dungeon": false, "has_important": false}, {"id": 6752, "name": "Runestone_Meadows", "category": "altar", "x": 308.9, "z": -2.0, "px": 2100.7, "py": 2047.7, "has_dungeon": false, "has_important": false}, {"id": 6753, "name": "Runestone_Meadows", "category": "altar", "x": -3637.4, "z": -2350.5, "px": 1427.2, "py": 1646.8, "has_dungeon": false, "has_important": false}, {"id": 6754, "name": "Runestone_Meadows", "category": "altar", "x": 3000.4, "z": 3773.7, "px": 2560.1, "py": 2692.0, "has_dungeon": false, "has_important": false}, {"id": 6755, "name": "Runestone_Meadows", "category": "altar", "x": 3498.6, "z": -1871.4, "px": 2645.1, "py": 1728.6, "has_dungeon": false, "has_important": false}, {"id": 6756, "name": "Runestone_Meadows", "category": "altar", "x": -301.3, "z": -1750.5, "px": 1996.6, "py": 1749.2, "has_dungeon": false, "has_important": false}, {"id": 6757, "name": "Runestone_Meadows", "category": "altar", "x": 756.1, "z": 3266.8, "px": 2177.0, "py": 2605.5, "has_dungeon": false, "has_important": false}, {"id": 6758, "name": "Runestone_Meadows", "category": "altar", "x": -1710.6, "z": -386.9, "px": 1756.1, "py": 1982.0, "has_dungeon": false, "has_important": false}, {"id": 6759, "name": "Runestone_Meadows", "category": "altar", "x": 2728.5, "z": 1005.3, "px": 2513.7, "py": 2219.6, "has_dungeon": false, "has_important": false}, {"id": 6760, "name": "Runestone_Meadows", "category": "altar", "x": 919.1, "z": -2135.3, "px": 2204.9, "py": 1683.6, "has_dungeon": false, "has_important": false}, {"id": 6761, "name": "Runestone_Meadows", "category": "altar", "x": -2318.2, "z": -1470.4, "px": 1652.4, "py": 1797.1, "has_dungeon": false, "has_important": false}, {"id": 6762, "name": "Runestone_Meadows", "category": "altar", "x": 3839.8, "z": -1398.1, "px": 2703.3, "py": 1809.4, "has_dungeon": false, "has_important": false}, {"id": 6763, "name": "Runestone_Meadows", "category": "altar", "x": -492.9, "z": -1340.0, "px": 1963.9, "py": 1819.3, "has_dungeon": false, "has_important": false}, {"id": 6764, "name": "Runestone_Meadows", "category": "altar", "x": 846.8, "z": 4610.6, "px": 2192.5, "py": 2834.9, "has_dungeon": false, "has_important": false}, {"id": 6765, "name": "Runestone_Meadows", "category": "altar", "x": -3189.2, "z": 3018.7, "px": 1503.7, "py": 2563.2, "has_dungeon": false, "has_important": false}, {"id": 6766, "name": "Runestone_Meadows", "category": "altar", "x": 1029.7, "z": 936.3, "px": 2223.7, "py": 2207.8, "has_dungeon": false, "has_important": false}, {"id": 6767, "name": "Runestone_Meadows", "category": "altar", "x": 1259.8, "z": -3625.0, "px": 2263.0, "py": 1429.3, "has_dungeon": false, "has_important": false}, {"id": 6768, "name": "Runestone_Meadows", "category": "altar", "x": -2702.0, "z": 1922.2, "px": 1586.9, "py": 2376.1, "has_dungeon": false, "has_important": false}, {"id": 6769, "name": "Runestone_Meadows", "category": "altar", "x": 3022.9, "z": -2626.7, "px": 2563.9, "py": 1599.7, "has_dungeon": false, "has_important": false}, {"id": 6770, "name": "Runestone_Meadows", "category": "altar", "x": -1385.9, "z": -535.2, "px": 1811.5, "py": 1956.7, "has_dungeon": false, "has_important": false}, {"id": 6771, "name": "Runestone_Meadows", "category": "altar", "x": -4209.2, "z": 1960.7, "px": 1329.6, "py": 2382.6, "has_dungeon": false, "has_important": false}, {"id": 6772, "name": "Runestone_Meadows", "category": "altar", "x": 85.9, "z": -251.7, "px": 2062.7, "py": 2005.0, "has_dungeon": false, "has_important": false}, {"id": 6773, "name": "Runestone_Meadows", "category": "altar", "x": -2243.1, "z": 55.4, "px": 1665.2, "py": 2057.5, "has_dungeon": false, "has_important": false}, {"id": 6774, "name": "Runestone_Meadows", "category": "altar", "x": 301.5, "z": 3799.5, "px": 2099.5, "py": 2696.4, "has_dungeon": false, "has_important": false}, {"id": 6775, "name": "Runestone_Meadows", "category": "altar", "x": 296.5, "z": -1416.7, "px": 2098.6, "py": 1806.2, "has_dungeon": false, "has_important": false}, {"id": 6776, "name": "Runestone_Meadows", "category": "altar", "x": 3180.7, "z": 2639.5, "px": 2590.8, "py": 2498.5, "has_dungeon": false, "has_important": false}, {"id": 6777, "name": "Runestone_Meadows", "category": "altar", "x": -2174.3, "z": 1832.4, "px": 1676.9, "py": 2360.7, "has_dungeon": false, "has_important": false}, {"id": 6778, "name": "Runestone_Meadows", "category": "altar", "x": -2058.0, "z": -1804.1, "px": 1696.8, "py": 1740.1, "has_dungeon": false, "has_important": false}, {"id": 6779, "name": "Runestone_Meadows", "category": "altar", "x": -1783.1, "z": -1224.1, "px": 1743.7, "py": 1839.1, "has_dungeon": false, "has_important": false}, {"id": 6780, "name": "Runestone_Meadows", "category": "altar", "x": -4727.9, "z": 770.9, "px": 1241.1, "py": 2179.6, "has_dungeon": false, "has_important": false}, {"id": 6781, "name": "Runestone_Meadows", "category": "altar", "x": 2732.2, "z": -2964.4, "px": 2514.3, "py": 1542.1, "has_dungeon": false, "has_important": false}, {"id": 6782, "name": "Runestone_Meadows", "category": "altar", "x": 2411.9, "z": -712.9, "px": 2459.6, "py": 1926.3, "has_dungeon": false, "has_important": false}, {"id": 6783, "name": "Runestone_Meadows", "category": "altar", "x": -3986.1, "z": -2062.6, "px": 1367.7, "py": 1696.0, "has_dungeon": false, "has_important": false}, {"id": 6784, "name": "Runestone_Meadows", "category": "altar", "x": -4855.9, "z": 657.3, "px": 1219.3, "py": 2160.2, "has_dungeon": false, "has_important": false}, {"id": 6785, "name": "Runestone_Meadows", "category": "altar", "x": 57.9, "z": -69.4, "px": 2057.9, "py": 2036.2, "has_dungeon": false, "has_important": false}, {"id": 6786, "name": "Runestone_Meadows", "category": "altar", "x": -1594.3, "z": -1681.2, "px": 1775.9, "py": 1761.1, "has_dungeon": false, "has_important": false}, {"id": 6787, "name": "Runestone_Meadows", "category": "altar", "x": -2228.6, "z": 326.4, "px": 1667.7, "py": 2103.7, "has_dungeon": false, "has_important": false}, {"id": 6788, "name": "Runestone_Meadows", "category": "altar", "x": -3243.4, "z": 2890.8, "px": 1494.5, "py": 2541.4, "has_dungeon": false, "has_important": false}, {"id": 6789, "name": "Runestone_Meadows", "category": "altar", "x": 3442.6, "z": -1992.1, "px": 2635.5, "py": 1708.0, "has_dungeon": false, "has_important": false}, {"id": 6790, "name": "Runestone_Meadows", "category": "altar", "x": 1422.5, "z": 70.5, "px": 2290.8, "py": 2060.0, "has_dungeon": false, "has_important": false}, {"id": 6791, "name": "Runestone_Meadows", "category": "altar", "x": -2297.8, "z": 636.4, "px": 1655.8, "py": 2156.6, "has_dungeon": false, "has_important": false}, {"id": 6792, "name": "Runestone_Meadows", "category": "altar", "x": 261.6, "z": -176.0, "px": 2092.6, "py": 2018.0, "has_dungeon": false, "has_important": false}, {"id": 6793, "name": "Runestone_Meadows", "category": "altar", "x": 2951.5, "z": -2422.4, "px": 2551.7, "py": 1634.6, "has_dungeon": false, "has_important": false}, {"id": 6794, "name": "Runestone_Meadows", "category": "altar", "x": -3410.3, "z": -2450.3, "px": 1466.0, "py": 1629.8, "has_dungeon": false, "has_important": false}, {"id": 6795, "name": "Runestone_Meadows", "category": "altar", "x": -1495.4, "z": -1044.2, "px": 1792.8, "py": 1869.8, "has_dungeon": false, "has_important": false}, {"id": 6796, "name": "Runestone_Meadows", "category": "altar", "x": -1262.4, "z": -599.0, "px": 1832.6, "py": 1945.8, "has_dungeon": false, "has_important": false}, {"id": 6797, "name": "Runestone_Meadows", "category": "altar", "x": -4116.9, "z": -2093.5, "px": 1345.4, "py": 1690.7, "has_dungeon": false, "has_important": false}, {"id": 6798, "name": "Runestone_Meadows", "category": "altar", "x": 2453.9, "z": -3118.2, "px": 2466.8, "py": 1515.8, "has_dungeon": false, "has_important": false}, {"id": 6799, "name": "Runestone_Meadows", "category": "altar", "x": 3214.8, "z": 2420.5, "px": 2596.7, "py": 2461.1, "has_dungeon": false, "has_important": false}, {"id": 6800, "name": "Runestone_Meadows", "category": "altar", "x": 1320.0, "z": -71.8, "px": 2273.3, "py": 2035.7, "has_dungeon": false, "has_important": false}, {"id": 6801, "name": "Runestone_Meadows", "category": "altar", "x": 917.1, "z": -3856.3, "px": 2204.5, "py": 1389.9, "has_dungeon": false, "has_important": false}, {"id": 6802, "name": "Runestone_Meadows", "category": "altar", "x": 909.8, "z": 3218.2, "px": 2203.3, "py": 2597.2, "has_dungeon": false, "has_important": false}, {"id": 6803, "name": "Runestone_Meadows", "category": "altar", "x": -4728.3, "z": 916.8, "px": 1241.0, "py": 2204.5, "has_dungeon": false, "has_important": false}, {"id": 6804, "name": "Runestone_Meadows", "category": "altar", "x": 2821.2, "z": -919.5, "px": 2529.5, "py": 1891.1, "has_dungeon": false, "has_important": false}, {"id": 6805, "name": "Runestone_Meadows", "category": "altar", "x": -1159.0, "z": -727.9, "px": 1850.2, "py": 1923.8, "has_dungeon": false, "has_important": false}, {"id": 6806, "name": "Runestone_Meadows", "category": "altar", "x": -2307.2, "z": -1722.9, "px": 1654.2, "py": 1754.0, "has_dungeon": false, "has_important": false}, {"id": 6807, "name": "Runestone_Meadows", "category": "altar", "x": -2112.1, "z": -1609.9, "px": 1687.5, "py": 1773.2, "has_dungeon": false, "has_important": false}, {"id": 6808, "name": "Runestone_Meadows", "category": "altar", "x": -1349.7, "z": -836.1, "px": 1817.7, "py": 1905.3, "has_dungeon": false, "has_important": false}, {"id": 6809, "name": "Runestone_Meadows", "category": "altar", "x": 391.3, "z": 201.9, "px": 2114.8, "py": 2082.5, "has_dungeon": false, "has_important": false}, {"id": 6810, "name": "Runestone_Meadows", "category": "altar", "x": -196.3, "z": -4042.8, "px": 2014.5, "py": 1358.0, "has_dungeon": false, "has_important": false}, {"id": 6811, "name": "Runestone_Meadows", "category": "altar", "x": -1837.5, "z": -887.5, "px": 1734.4, "py": 1896.5, "has_dungeon": false, "has_important": false}, {"id": 6812, "name": "Runestone_Meadows", "category": "altar", "x": 4141.1, "z": -1536.2, "px": 2754.7, "py": 1785.8, "has_dungeon": false, "has_important": false}, {"id": 6813, "name": "Runestone_Meadows", "category": "altar", "x": -110.7, "z": 117.5, "px": 2029.1, "py": 2068.1, "has_dungeon": false, "has_important": false}, {"id": 6814, "name": "Runestone_Meadows", "category": "altar", "x": 1856.9, "z": -1622.8, "px": 2364.9, "py": 1771.0, "has_dungeon": false, "has_important": false}, {"id": 6815, "name": "Runestone_Meadows", "category": "altar", "x": 1064.8, "z": -83.8, "px": 2229.7, "py": 2033.7, "has_dungeon": false, "has_important": false}, {"id": 6816, "name": "Runestone_Meadows", "category": "altar", "x": -468.5, "z": -1025.2, "px": 1968.0, "py": 1873.0, "has_dungeon": false, "has_important": false}, {"id": 6817, "name": "Runestone_Meadows", "category": "altar", "x": -1849.3, "z": -46.1, "px": 1732.4, "py": 2040.1, "has_dungeon": false, "has_important": false}, {"id": 6818, "name": "Runestone_Meadows", "category": "altar", "x": -1612.9, "z": 4677.6, "px": 1772.7, "py": 2846.3, "has_dungeon": false, "has_important": false}, {"id": 6819, "name": "Runestone_Meadows", "category": "altar", "x": 3081.3, "z": -243.4, "px": 2573.9, "py": 2006.5, "has_dungeon": false, "has_important": false}, {"id": 6820, "name": "Runestone_Meadows", "category": "altar", "x": 3449.6, "z": -2131.7, "px": 2636.7, "py": 1684.2, "has_dungeon": false, "has_important": false}, {"id": 6821, "name": "Runestone_Meadows", "category": "altar", "x": -135.7, "z": -1968.8, "px": 2024.8, "py": 1712.0, "has_dungeon": false, "has_important": false}, {"id": 6822, "name": "Runestone_Meadows", "category": "altar", "x": -435.5, "z": -106.1, "px": 1973.7, "py": 2029.9, "has_dungeon": false, "has_important": false}, {"id": 6823, "name": "Runestone_Meadows", "category": "altar", "x": 4022.0, "z": -1589.7, "px": 2734.4, "py": 1776.7, "has_dungeon": false, "has_important": false}, {"id": 6824, "name": "Runestone_Meadows", "category": "altar", "x": -1704.0, "z": -1585.7, "px": 1757.2, "py": 1777.4, "has_dungeon": false, "has_important": false}, {"id": 6825, "name": "Runestone_Meadows", "category": "altar", "x": -21.6, "z": -324.8, "px": 2044.3, "py": 1992.6, "has_dungeon": false, "has_important": false}, {"id": 6826, "name": "Runestone_Meadows", "category": "altar", "x": 2690.1, "z": -760.7, "px": 2507.1, "py": 1918.2, "has_dungeon": false, "has_important": false}, {"id": 6827, "name": "Runestone_Meadows", "category": "altar", "x": 1961.6, "z": -1778.0, "px": 2382.8, "py": 1744.6, "has_dungeon": false, "has_important": false}, {"id": 6828, "name": "Runestone_Meadows", "category": "altar", "x": -442.3, "z": -854.4, "px": 1972.5, "py": 1902.2, "has_dungeon": false, "has_important": false}, {"id": 6829, "name": "Runestone_Meadows", "category": "altar", "x": 2986.7, "z": -335.3, "px": 2557.7, "py": 1990.8, "has_dungeon": false, "has_important": false}, {"id": 6830, "name": "Runestone_Meadows", "category": "altar", "x": -3347.3, "z": 1492.4, "px": 1476.7, "py": 2302.7, "has_dungeon": false, "has_important": false}, {"id": 6831, "name": "Runestone_Meadows", "category": "altar", "x": -1004.1, "z": -700.3, "px": 1876.6, "py": 1928.5, "has_dungeon": false, "has_important": false}, {"id": 6832, "name": "Runestone_Meadows", "category": "altar", "x": -406.3, "z": -1857.0, "px": 1978.7, "py": 1731.1, "has_dungeon": false, "has_important": false}, {"id": 6833, "name": "Runestone_Meadows", "category": "altar", "x": 1576.5, "z": 6.4, "px": 2317.1, "py": 2049.1, "has_dungeon": false, "has_important": false}, {"id": 6834, "name": "Runestone_Meadows", "category": "altar", "x": -215.5, "z": -853.3, "px": 2011.2, "py": 1902.4, "has_dungeon": false, "has_important": false}, {"id": 6835, "name": "Runestone_Meadows", "category": "altar", "x": 120.4, "z": 51.8, "px": 2068.5, "py": 2056.8, "has_dungeon": false, "has_important": false}, {"id": 6836, "name": "Runestone_Meadows", "category": "altar", "x": -1647.0, "z": -1007.8, "px": 1766.9, "py": 1876.0, "has_dungeon": false, "has_important": false}, {"id": 6837, "name": "Runestone_Meadows", "category": "altar", "x": 1021.7, "z": 407.3, "px": 2222.4, "py": 2117.5, "has_dungeon": false, "has_important": false}, {"id": 6838, "name": "Runestone_Meadows", "category": "altar", "x": 2879.2, "z": -3062.9, "px": 2539.4, "py": 1525.3, "has_dungeon": false, "has_important": false}, {"id": 6839, "name": "Runestone_Meadows", "category": "altar", "x": -2196.2, "z": -1877.7, "px": 1673.2, "py": 1727.5, "has_dungeon": false, "has_important": false}, {"id": 6840, "name": "Runestone_Meadows", "category": "altar", "x": -1780.7, "z": -499.5, "px": 1744.1, "py": 1962.8, "has_dungeon": false, "has_important": false}, {"id": 6841, "name": "Runestone_Meadows", "category": "altar", "x": 1801.1, "z": 1109.7, "px": 2355.4, "py": 2237.4, "has_dungeon": false, "has_important": false}, {"id": 6842, "name": "Runestone_Meadows", "category": "altar", "x": 1089.4, "z": 619.4, "px": 2233.9, "py": 2153.7, "has_dungeon": false, "has_important": false}, {"id": 6843, "name": "Runestone_Meadows", "category": "altar", "x": 64.4, "z": -1708.5, "px": 2059.0, "py": 1756.4, "has_dungeon": false, "has_important": false}, {"id": 6844, "name": "Runestone_Meadows", "category": "altar", "x": 773.2, "z": 3393.7, "px": 2180.0, "py": 2627.2, "has_dungeon": false, "has_important": false}, {"id": 6845, "name": "Runestone_Meadows", "category": "altar", "x": 1473.1, "z": 203.9, "px": 2299.4, "py": 2082.8, "has_dungeon": false, "has_important": false}, {"id": 6846, "name": "Runestone_Meadows", "category": "altar", "x": -2091.8, "z": 78.1, "px": 1691.0, "py": 2061.3, "has_dungeon": false, "has_important": false}, {"id": 6847, "name": "Runestone_Meadows", "category": "altar", "x": 470.4, "z": 325.1, "px": 2128.3, "py": 2103.5, "has_dungeon": false, "has_important": false}, {"id": 6848, "name": "Runestone_Meadows", "category": "altar", "x": -3413.7, "z": 2831.3, "px": 1465.4, "py": 2531.2, "has_dungeon": false, "has_important": false}, {"id": 9894, "name": "Runestone_Mistlands", "category": "altar", "x": 6318.9, "z": 4397.7, "px": 3126.4, "py": 2798.5, "has_dungeon": false, "has_important": false}, {"id": 9895, "name": "Runestone_Mistlands", "category": "altar", "x": -3694.5, "z": 6609.9, "px": 1417.5, "py": 3176.1, "has_dungeon": false, "has_important": false}, {"id": 9896, "name": "Runestone_Mistlands", "category": "altar", "x": 5312.3, "z": 6132.7, "px": 2954.6, "py": 3094.6, "has_dungeon": false, "has_important": false}, {"id": 9897, "name": "Runestone_Mistlands", "category": "altar", "x": -3631.3, "z": 5043.5, "px": 1428.3, "py": 2908.8, "has_dungeon": false, "has_important": false}, {"id": 9898, "name": "Runestone_Mistlands", "category": "altar", "x": 7091.7, "z": -850.3, "px": 3258.3, "py": 1902.9, "has_dungeon": false, "has_important": false}, {"id": 9899, "name": "Runestone_Mistlands", "category": "altar", "x": -883.7, "z": 7036.1, "px": 1897.2, "py": 3248.8, "has_dungeon": false, "has_important": false}, {"id": 9900, "name": "Runestone_Mistlands", "category": "altar", "x": 8271.8, "z": -640.1, "px": 3459.7, "py": 1938.8, "has_dungeon": false, "has_important": false}, {"id": 9901, "name": "Runestone_Mistlands", "category": "altar", "x": -717.5, "z": 6898.6, "px": 1925.5, "py": 3225.4, "has_dungeon": false, "has_important": false}, {"id": 9902, "name": "Runestone_Mistlands", "category": "altar", "x": 4088.3, "z": 6085.8, "px": 2745.7, "py": 3086.6, "has_dungeon": false, "has_important": false}, {"id": 9903, "name": "Runestone_Mistlands", "category": "altar", "x": -8525.5, "z": 2490.7, "px": 593.0, "py": 2473.1, "has_dungeon": false, "has_important": false}, {"id": 9904, "name": "Runestone_Mistlands", "category": "altar", "x": 7437.4, "z": 4553.7, "px": 3317.3, "py": 2825.2, "has_dungeon": false, "has_important": false}, {"id": 9905, "name": "Runestone_Mistlands", "category": "altar", "x": 2819.1, "z": 5747.9, "px": 2529.1, "py": 3029.0, "has_dungeon": false, "has_important": false}, {"id": 9906, "name": "Runestone_Mistlands", "category": "altar", "x": 6201.6, "z": -4476.1, "px": 3106.4, "py": 1284.1, "has_dungeon": false, "has_important": false}, {"id": 9907, "name": "Runestone_Mistlands", "category": "altar", "x": 7106.3, "z": 123.4, "px": 3260.8, "py": 2069.1, "has_dungeon": false, "has_important": false}, {"id": 9908, "name": "Runestone_Mistlands", "category": "altar", "x": 6400.4, "z": 2627.3, "px": 3140.3, "py": 2496.4, "has_dungeon": false, "has_important": false}, {"id": 9909, "name": "Runestone_Mistlands", "category": "altar", "x": -3831.9, "z": 5828.1, "px": 1394.0, "py": 3042.7, "has_dungeon": false, "has_important": false}, {"id": 9910, "name": "Runestone_Mistlands", "category": "altar", "x": -2989.0, "z": 6542.7, "px": 1537.9, "py": 3164.6, "has_dungeon": false, "has_important": false}, {"id": 9911, "name": "Runestone_Mistlands", "category": "altar", "x": 4165.5, "z": -4941.1, "px": 2758.9, "py": 1204.7, "has_dungeon": false, "has_important": false}, {"id": 9912, "name": "Runestone_Mistlands", "category": "altar", "x": -9518.5, "z": -1454.3, "px": 423.5, "py": 1799.8, "has_dungeon": false, "has_important": false}, {"id": 9913, "name": "Runestone_Mistlands", "category": "altar", "x": -1480.7, "z": -7245.7, "px": 1795.3, "py": 811.4, "has_dungeon": false, "has_important": false}, {"id": 9914, "name": "Runestone_Mistlands", "category": "altar", "x": -7633.7, "z": -3215.1, "px": 745.2, "py": 1499.3, "has_dungeon": false, "has_important": false}, {"id": 9915, "name": "Runestone_Mistlands", "category": "altar", "x": 7989.1, "z": 2191.2, "px": 3411.5, "py": 2422.0, "has_dungeon": false, "has_important": false}, {"id": 9916, "name": "Runestone_Mistlands", "category": "altar", "x": -3821.3, "z": 5580.6, "px": 1395.8, "py": 3000.4, "has_dungeon": false, "has_important": false}, {"id": 9917, "name": "Runestone_Mistlands", "category": "altar", "x": 6851.4, "z": -5265.4, "px": 3217.3, "py": 1149.4, "has_dungeon": false, "has_important": false}, {"id": 9918, "name": "Runestone_Mistlands", "category": "altar", "x": 4214.1, "z": 6455.2, "px": 2767.2, "py": 3149.7, "has_dungeon": false, "has_important": false}, {"id": 9919, "name": "Runestone_Mistlands", "category": "altar", "x": 7105.6, "z": -3823.0, "px": 3260.7, "py": 1395.5, "has_dungeon": false, "has_important": false}, {"id": 9920, "name": "Runestone_Mistlands", "category": "altar", "x": 4162.2, "z": -5237.6, "px": 2758.3, "py": 1154.1, "has_dungeon": false, "has_important": false}, {"id": 9921, "name": "Runestone_Mistlands", "category": "altar", "x": -6536.6, "z": 2481.8, "px": 932.4, "py": 2471.6, "has_dungeon": false, "has_important": false}, {"id": 9922, "name": "Runestone_Mistlands", "category": "altar", "x": -9090.3, "z": -1532.0, "px": 496.6, "py": 1786.5, "has_dungeon": false, "has_important": false}, {"id": 9923, "name": "Runestone_Mistlands", "category": "altar", "x": 5107.5, "z": -5322.3, "px": 2919.7, "py": 1139.7, "has_dungeon": false, "has_important": false}, {"id": 9924, "name": "Runestone_Mistlands", "category": "altar", "x": 4040.3, "z": 5440.6, "px": 2737.5, "py": 2976.5, "has_dungeon": false, "has_important": false}, {"id": 9925, "name": "Runestone_Mistlands", "category": "altar", "x": -6456.5, "z": -3346.1, "px": 946.1, "py": 1476.9, "has_dungeon": false, "has_important": false}, {"id": 9926, "name": "Runestone_Mistlands", "category": "altar", "x": 1803.2, "z": 6911.8, "px": 2355.7, "py": 3227.6, "has_dungeon": false, "has_important": false}, {"id": 9927, "name": "Runestone_Mistlands", "category": "altar", "x": 6317.8, "z": 5585.6, "px": 3126.2, "py": 3001.3, "has_dungeon": false, "has_important": false}, {"id": 9928, "name": "Runestone_Mistlands", "category": "altar", "x": -558.5, "z": -6789.0, "px": 1952.7, "py": 889.3, "has_dungeon": false, "has_important": false}, {"id": 9929, "name": "Runestone_Mistlands", "category": "altar", "x": -5128.4, "z": 4908.9, "px": 1172.8, "py": 2885.8, "has_dungeon": false, "has_important": false}, {"id": 9930, "name": "Runestone_Mistlands", "category": "altar", "x": 5571.9, "z": 4597.1, "px": 2998.9, "py": 2832.6, "has_dungeon": false, "has_important": false}, {"id": 9931, "name": "Runestone_Mistlands", "category": "altar", "x": 7374.7, "z": -4988.8, "px": 3306.6, "py": 1196.6, "has_dungeon": false, "has_important": false}, {"id": 9932, "name": "Runestone_Mistlands", "category": "altar", "x": -8642.0, "z": -3195.6, "px": 573.1, "py": 1502.6, "has_dungeon": false, "has_important": false}, {"id": 9933, "name": "Runestone_Mistlands", "category": "altar", "x": -7806.3, "z": 4484.0, "px": 715.7, "py": 2813.3, "has_dungeon": false, "has_important": false}, {"id": 9934, "name": "Runestone_Mistlands", "category": "altar", "x": 5902.5, "z": -1085.4, "px": 3055.4, "py": 1862.8, "has_dungeon": false, "has_important": false}, {"id": 9935, "name": "Runestone_Mistlands", "category": "altar", "x": 3787.6, "z": -5948.1, "px": 2694.4, "py": 1032.9, "has_dungeon": false, "has_important": false}, {"id": 9936, "name": "Runestone_Mistlands", "category": "altar", "x": 5778.9, "z": 2899.5, "px": 3034.3, "py": 2542.8, "has_dungeon": false, "has_important": false}, {"id": 9937, "name": "Runestone_Mistlands", "category": "altar", "x": 4814.0, "z": 6316.7, "px": 2869.6, "py": 3126.1, "has_dungeon": false, "has_important": false}, {"id": 9938, "name": "Runestone_Mistlands", "category": "altar", "x": 8694.2, "z": -2806.3, "px": 3531.8, "py": 1569.1, "has_dungeon": false, "has_important": false}, {"id": 9939, "name": "Runestone_Mistlands", "category": "altar", "x": -8059.2, "z": 2566.9, "px": 672.6, "py": 2486.1, "has_dungeon": false, "has_important": false}, {"id": 9940, "name": "Runestone_Mistlands", "category": "altar", "x": 4935.7, "z": -6067.2, "px": 2890.4, "py": 1012.5, "has_dungeon": false, "has_important": false}, {"id": 9941, "name": "Runestone_Mistlands", "category": "altar", "x": 273.6, "z": -6982.4, "px": 2094.7, "py": 856.3, "has_dungeon": false, "has_important": false}, {"id": 9942, "name": "Runestone_Mistlands", "category": "altar", "x": 7217.3, "z": 4560.5, "px": 3279.8, "py": 2826.3, "has_dungeon": false, "has_important": false}, {"id": 9943, "name": "Runestone_Mistlands", "category": "altar", "x": -6982.4, "z": 2752.0, "px": 856.3, "py": 2517.7, "has_dungeon": false, "has_important": false}, {"id": 6999, "name": "Runestone_Mountains", "category": "altar", "x": -4907.1, "z": 2577.9, "px": 1210.5, "py": 2488.0, "has_dungeon": false, "has_important": false}, {"id": 7000, "name": "Runestone_Mountains", "category": "altar", "x": 1236.5, "z": 8565.6, "px": 2259.0, "py": 3509.9, "has_dungeon": false, "has_important": false}, {"id": 7001, "name": "Runestone_Mountains", "category": "altar", "x": -2359.5, "z": 7476.6, "px": 1645.3, "py": 3324.0, "has_dungeon": false, "has_important": false}, {"id": 7002, "name": "Runestone_Mountains", "category": "altar", "x": 9017.2, "z": -2441.1, "px": 3586.9, "py": 1631.4, "has_dungeon": false, "has_important": false}, {"id": 7003, "name": "Runestone_Mountains", "category": "altar", "x": -3901.4, "z": 4585.9, "px": 1382.2, "py": 2830.7, "has_dungeon": false, "has_important": false}, {"id": 7004, "name": "Runestone_Mountains", "category": "altar", "x": 1146.4, "z": 87.4, "px": 2243.7, "py": 2062.9, "has_dungeon": false, "has_important": false}, {"id": 7005, "name": "Runestone_Mountains", "category": "altar", "x": -4030.3, "z": 1488.7, "px": 1360.2, "py": 2302.1, "has_dungeon": false, "has_important": false}, {"id": 7006, "name": "Runestone_Mountains", "category": "altar", "x": -5641.8, "z": -2747.6, "px": 1085.1, "py": 1579.1, "has_dungeon": false, "has_important": false}, {"id": 7007, "name": "Runestone_Mountains", "category": "altar", "x": 9455.6, "z": -2121.3, "px": 3661.8, "py": 1686.0, "has_dungeon": false, "has_important": false}, {"id": 7008, "name": "Runestone_Mountains", "category": "altar", "x": -3791.8, "z": 4523.2, "px": 1400.9, "py": 2820.0, "has_dungeon": false, "has_important": false}, {"id": 7009, "name": "Runestone_Mountains", "category": "altar", "x": 2482.7, "z": -2888.4, "px": 2471.7, "py": 1555.0, "has_dungeon": false, "has_important": false}, {"id": 7010, "name": "Runestone_Mountains", "category": "altar", "x": 6805.3, "z": 6698.3, "px": 3209.4, "py": 3191.2, "has_dungeon": false, "has_important": false}, {"id": 7011, "name": "Runestone_Mountains", "category": "altar", "x": 4433.5, "z": -2090.2, "px": 2804.7, "py": 1691.3, "has_dungeon": false, "has_important": false}, {"id": 7012, "name": "Runestone_Mountains", "category": "altar", "x": 3138.9, "z": -1808.2, "px": 2583.7, "py": 1739.4, "has_dungeon": false, "has_important": false}, {"id": 7013, "name": "Runestone_Mountains", "category": "altar", "x": -4300.4, "z": -3990.7, "px": 1314.1, "py": 1366.9, "has_dungeon": false, "has_important": false}, {"id": 7014, "name": "Runestone_Mountains", "category": "altar", "x": 2409.5, "z": 808.7, "px": 2459.2, "py": 2186.0, "has_dungeon": false, "has_important": false}, {"id": 7015, "name": "Runestone_Mountains", "category": "altar", "x": 3592.9, "z": -104.1, "px": 2661.2, "py": 2030.2, "has_dungeon": false, "has_important": false}, {"id": 7016, "name": "Runestone_Mountains", "category": "altar", "x": 3634.9, "z": 9289.7, "px": 2668.4, "py": 3633.4, "has_dungeon": false, "has_important": false}, {"id": 7017, "name": "Runestone_Mountains", "category": "altar", "x": -2378.6, "z": 1906.2, "px": 1642.1, "py": 2373.3, "has_dungeon": false, "has_important": false}, {"id": 7018, "name": "Runestone_Mountains", "category": "altar", "x": 7121.6, "z": -268.0, "px": 3263.4, "py": 2002.3, "has_dungeon": false, "has_important": false}, {"id": 7019, "name": "Runestone_Mountains", "category": "altar", "x": 6520.7, "z": 7048.4, "px": 3160.9, "py": 3250.9, "has_dungeon": false, "has_important": false}, {"id": 7020, "name": "Runestone_Mountains", "category": "altar", "x": 4307.3, "z": 1344.0, "px": 2783.1, "py": 2277.4, "has_dungeon": false, "has_important": false}, {"id": 7021, "name": "Runestone_Mountains", "category": "altar", "x": 2450.0, "z": 8951.7, "px": 2466.1, "py": 3575.8, "has_dungeon": false, "has_important": false}, {"id": 7022, "name": "Runestone_Mountains", "category": "altar", "x": -4365.7, "z": -1266.6, "px": 1302.9, "py": 1831.8, "has_dungeon": false, "has_important": false}, {"id": 7023, "name": "Runestone_Mountains", "category": "altar", "x": -3882.0, "z": 5010.6, "px": 1385.5, "py": 2903.1, "has_dungeon": false, "has_important": false}, {"id": 7024, "name": "Runestone_Mountains", "category": "altar", "x": -113.6, "z": -1417.1, "px": 2028.6, "py": 1806.1, "has_dungeon": false, "has_important": false}, {"id": 7025, "name": "Runestone_Mountains", "category": "altar", "x": -271.3, "z": -1260.9, "px": 2001.7, "py": 1832.8, "has_dungeon": false, "has_important": false}, {"id": 7026, "name": "Runestone_Mountains", "category": "altar", "x": -6313.1, "z": -651.3, "px": 970.6, "py": 1936.8, "has_dungeon": false, "has_important": false}, {"id": 7027, "name": "Runestone_Mountains", "category": "altar", "x": 6039.6, "z": -1387.4, "px": 3078.8, "py": 1811.2, "has_dungeon": false, "has_important": false}, {"id": 7028, "name": "Runestone_Mountains", "category": "altar", "x": -2099.9, "z": -557.2, "px": 1689.6, "py": 1952.9, "has_dungeon": false, "has_important": false}, {"id": 7029, "name": "Runestone_Mountains", "category": "altar", "x": 1085.7, "z": 212.1, "px": 2233.3, "py": 2084.2, "has_dungeon": false, "has_important": false}, {"id": 7030, "name": "Runestone_Mountains", "category": "altar", "x": 5432.1, "z": 6013.6, "px": 2975.1, "py": 3074.3, "has_dungeon": false, "has_important": false}, {"id": 7031, "name": "Runestone_Mountains", "category": "altar", "x": -8493.2, "z": -1004.8, "px": 598.5, "py": 1876.5, "has_dungeon": false, "has_important": false}, {"id": 7032, "name": "Runestone_Mountains", "category": "altar", "x": -2000.4, "z": -132.0, "px": 1706.6, "py": 2025.5, "has_dungeon": false, "has_important": false}, {"id": 7033, "name": "Runestone_Mountains", "category": "altar", "x": 6017.0, "z": 4363.8, "px": 3074.9, "py": 2792.8, "has_dungeon": false, "has_important": false}, {"id": 7034, "name": "Runestone_Mountains", "category": "altar", "x": 9748.3, "z": -1149.7, "px": 3711.7, "py": 1851.8, "has_dungeon": false, "has_important": false}, {"id": 7035, "name": "Runestone_Mountains", "category": "altar", "x": -2255.1, "z": -272.0, "px": 1663.1, "py": 2001.6, "has_dungeon": false, "has_important": false}, {"id": 7036, "name": "Runestone_Mountains", "category": "altar", "x": -2501.4, "z": 7498.8, "px": 1621.1, "py": 3327.8, "has_dungeon": false, "has_important": false}, {"id": 7037, "name": "Runestone_Mountains", "category": "altar", "x": 1482.1, "z": 6999.3, "px": 2300.9, "py": 3242.5, "has_dungeon": false, "has_important": false}, {"id": 7038, "name": "Runestone_Mountains", "category": "altar", "x": -7170.6, "z": -2517.4, "px": 824.2, "py": 1618.4, "has_dungeon": false, "has_important": false}, {"id": 7039, "name": "Runestone_Mountains", "category": "altar", "x": 3346.8, "z": 125.2, "px": 2619.2, "py": 2069.4, "has_dungeon": false, "has_important": false}, {"id": 7040, "name": "Runestone_Mountains", "category": "altar", "x": 2363.4, "z": -2573.4, "px": 2451.4, "py": 1608.8, "has_dungeon": false, "has_important": false}, {"id": 7041, "name": "Runestone_Mountains", "category": "altar", "x": 574.9, "z": 4285.2, "px": 2146.1, "py": 2779.3, "has_dungeon": false, "has_important": false}, {"id": 7042, "name": "Runestone_Mountains", "category": "altar", "x": -3445.7, "z": 6478.8, "px": 1459.9, "py": 3153.7, "has_dungeon": false, "has_important": false}, {"id": 7043, "name": "Runestone_Mountains", "category": "altar", "x": -1979.2, "z": -515.7, "px": 1710.2, "py": 1960.0, "has_dungeon": false, "has_important": false}, {"id": 7044, "name": "Runestone_Mountains", "category": "altar", "x": 5713.0, "z": -51.5, "px": 3023.0, "py": 2039.2, "has_dungeon": false, "has_important": false}, {"id": 7045, "name": "Runestone_Mountains", "category": "altar", "x": 368.3, "z": 3587.9, "px": 2110.9, "py": 2660.3, "has_dungeon": false, "has_important": false}, {"id": 7046, "name": "Runestone_Mountains", "category": "altar", "x": -8558.8, "z": -173.4, "px": 587.3, "py": 2018.4, "has_dungeon": false, "has_important": false}, {"id": 7047, "name": "Runestone_Mountains", "category": "altar", "x": 2476.0, "z": 8747.2, "px": 2470.6, "py": 3540.9, "has_dungeon": false, "has_important": false}, {"id": 7048, "name": "Runestone_Mountains", "category": "altar", "x": 6988.7, "z": -398.3, "px": 3240.7, "py": 1980.0, "has_dungeon": false, "has_important": false}, {"id": 7049, "name": "Runestone_Mountains", "category": "altar", "x": -4009.6, "z": 4434.1, "px": 1363.7, "py": 2804.8, "has_dungeon": false, "has_important": false}, {"id": 7050, "name": "Runestone_Mountains", "category": "altar", "x": -5054.4, "z": 5424.7, "px": 1185.4, "py": 2973.8, "has_dungeon": false, "has_important": false}, {"id": 7051, "name": "Runestone_Mountains", "category": "altar", "x": 6518.9, "z": 6678.3, "px": 3160.6, "py": 3187.8, "has_dungeon": false, "has_important": false}, {"id": 7052, "name": "Runestone_Mountains", "category": "altar", "x": -6889.7, "z": -2373.3, "px": 872.2, "py": 1643.0, "has_dungeon": false, "has_important": false}, {"id": 7053, "name": "Runestone_Mountains", "category": "altar", "x": 4364.4, "z": -5649.7, "px": 2792.9, "py": 1083.8, "has_dungeon": false, "has_important": false}, {"id": 7054, "name": "Runestone_Mountains", "category": "altar", "x": 6447.4, "z": 7177.6, "px": 3148.4, "py": 3273.0, "has_dungeon": false, "has_important": false}, {"id": 7055, "name": "Runestone_Mountains", "category": "altar", "x": -7038.7, "z": -2537.1, "px": 846.7, "py": 1615.0, "has_dungeon": false, "has_important": false}, {"id": 7056, "name": "Runestone_Mountains", "category": "altar", "x": -2000.7, "z": -363.5, "px": 1706.5, "py": 1986.0, "has_dungeon": false, "has_important": false}, {"id": 7057, "name": "Runestone_Mountains", "category": "altar", "x": -3467.8, "z": -2047.5, "px": 1456.2, "py": 1698.6, "has_dungeon": false, "has_important": false}, {"id": 7058, "name": "Runestone_Mountains", "category": "altar", "x": -4527.8, "z": -4153.5, "px": 1275.3, "py": 1339.1, "has_dungeon": false, "has_important": false}, {"id": 7059, "name": "Runestone_Mountains", "category": "altar", "x": 1903.4, "z": -6790.7, "px": 2372.8, "py": 889.1, "has_dungeon": false, "has_important": false}, {"id": 7060, "name": "Runestone_Mountains", "category": "altar", "x": -6082.2, "z": -456.8, "px": 1010.0, "py": 1970.0, "has_dungeon": false, "has_important": false}, {"id": 7061, "name": "Runestone_Mountains", "category": "altar", "x": -4142.4, "z": 3244.0, "px": 1341.0, "py": 2601.6, "has_dungeon": false, "has_important": false}, {"id": 7062, "name": "Runestone_Mountains", "category": "altar", "x": 1263.2, "z": -5048.9, "px": 2263.6, "py": 1186.3, "has_dungeon": false, "has_important": false}, {"id": 7063, "name": "Runestone_Mountains", "category": "altar", "x": 3123.9, "z": 9426.4, "px": 2581.1, "py": 3656.8, "has_dungeon": false, "has_important": false}, {"id": 7064, "name": "Runestone_Mountains", "category": "altar", "x": 3671.2, "z": -808.8, "px": 2674.6, "py": 1910.0, "has_dungeon": false, "has_important": false}, {"id": 7065, "name": "Runestone_Mountains", "category": "altar", "x": -3221.6, "z": 2644.0, "px": 1498.2, "py": 2499.2, "has_dungeon": false, "has_important": false}, {"id": 7066, "name": "Runestone_Mountains", "category": "altar", "x": 1150.1, "z": -2389.5, "px": 2244.3, "py": 1640.2, "has_dungeon": false, "has_important": false}, {"id": 7067, "name": "Runestone_Mountains", "category": "altar", "x": 6653.8, "z": 6838.8, "px": 3183.6, "py": 3215.2, "has_dungeon": false, "has_important": false}, {"id": 7068, "name": "Runestone_Mountains", "category": "altar", "x": 2766.8, "z": 790.9, "px": 2520.2, "py": 2183.0, "has_dungeon": false, "has_important": false}, {"id": 7069, "name": "Runestone_Mountains", "category": "altar", "x": -6185.4, "z": -312.7, "px": 992.4, "py": 1994.6, "has_dungeon": false, "has_important": false}, {"id": 7070, "name": "Runestone_Mountains", "category": "altar", "x": -4401.6, "z": -4140.5, "px": 1296.8, "py": 1341.4, "has_dungeon": false, "has_important": false}, {"id": 7071, "name": "Runestone_Mountains", "category": "altar", "x": 2926.5, "z": 694.4, "px": 2547.5, "py": 2166.5, "has_dungeon": false, "has_important": false}, {"id": 7072, "name": "Runestone_Mountains", "category": "altar", "x": -9859.9, "z": -655.3, "px": 365.2, "py": 1936.2, "has_dungeon": false, "has_important": false}, {"id": 7073, "name": "Runestone_Mountains", "category": "altar", "x": 5842.9, "z": 4423.1, "px": 3045.2, "py": 2802.9, "has_dungeon": false, "has_important": false}, {"id": 7074, "name": "Runestone_Mountains", "category": "altar", "x": 2040.0, "z": -1559.9, "px": 2396.2, "py": 1781.8, "has_dungeon": false, "has_important": false}, {"id": 7075, "name": "Runestone_Mountains", "category": "altar", "x": 7224.5, "z": -396.6, "px": 3281.0, "py": 1980.3, "has_dungeon": false, "has_important": false}, {"id": 7076, "name": "Runestone_Mountains", "category": "altar", "x": -6005.0, "z": -298.4, "px": 1023.1, "py": 1997.1, "has_dungeon": false, "has_important": false}, {"id": 7077, "name": "Runestone_Mountains", "category": "altar", "x": -9844.3, "z": -389.9, "px": 367.9, "py": 1981.5, "has_dungeon": false, "has_important": false}, {"id": 7078, "name": "Runestone_Mountains", "category": "altar", "x": -5191.5, "z": 5298.1, "px": 1162.0, "py": 2952.2, "has_dungeon": false, "has_important": false}, {"id": 7079, "name": "Runestone_Mountains", "category": "altar", "x": -6908.9, "z": -2509.4, "px": 868.9, "py": 1619.7, "has_dungeon": false, "has_important": false}, {"id": 7080, "name": "Runestone_Mountains", "category": "altar", "x": 2170.6, "z": -3671.8, "px": 2418.4, "py": 1421.3, "has_dungeon": false, "has_important": false}, {"id": 7081, "name": "Runestone_Mountains", "category": "altar", "x": -4537.9, "z": -1270.2, "px": 1273.5, "py": 1831.2, "has_dungeon": false, "has_important": false}, {"id": 7082, "name": "Runestone_Mountains", "category": "altar", "x": 1605.1, "z": 6972.0, "px": 2321.9, "py": 3237.9, "has_dungeon": false, "has_important": false}, {"id": 7083, "name": "Runestone_Mountains", "category": "altar", "x": 8372.1, "z": -4039.9, "px": 3476.8, "py": 1358.5, "has_dungeon": false, "has_important": false}, {"id": 7084, "name": "Runestone_Mountains", "category": "altar", "x": -3978.6, "z": 1667.3, "px": 1369.0, "py": 2332.6, "has_dungeon": false, "has_important": false}, {"id": 7085, "name": "Runestone_Mountains", "category": "altar", "x": -747.1, "z": 213.1, "px": 1920.5, "py": 2084.4, "has_dungeon": false, "has_important": false}, {"id": 7086, "name": "Runestone_Mountains", "category": "altar", "x": 3150.7, "z": 524.3, "px": 2585.7, "py": 2137.5, "has_dungeon": false, "has_important": false}, {"id": 7087, "name": "Runestone_Mountains", "category": "altar", "x": 5583.8, "z": 2135.1, "px": 3001.0, "py": 2412.4, "has_dungeon": false, "has_important": false}, {"id": 7088, "name": "Runestone_Mountains", "category": "altar", "x": -4157.8, "z": -4096.9, "px": 1338.4, "py": 1348.8, "has_dungeon": false, "has_important": false}, {"id": 7089, "name": "Runestone_Mountains", "category": "altar", "x": 5966.9, "z": 4781.3, "px": 3066.4, "py": 2864.0, "has_dungeon": false, "has_important": false}, {"id": 7090, "name": "Runestone_Mountains", "category": "altar", "x": 5713.7, "z": -555.5, "px": 3023.1, "py": 1953.2, "has_dungeon": false, "has_important": false}, {"id": 7091, "name": "Runestone_Mountains", "category": "altar", "x": 1548.4, "z": 6769.5, "px": 2312.3, "py": 3203.3, "has_dungeon": false, "has_important": false}, {"id": 7092, "name": "Runestone_Mountains", "category": "altar", "x": -1330.0, "z": -4871.3, "px": 1821.0, "py": 1216.6, "has_dungeon": false, "has_important": false}, {"id": 7093, "name": "Runestone_Mountains", "category": "altar", "x": 4529.0, "z": -1878.4, "px": 2820.9, "py": 1727.4, "has_dungeon": false, "has_important": false}, {"id": 7094, "name": "Runestone_Mountains", "category": "altar", "x": -5826.0, "z": -5203.3, "px": 1053.7, "py": 1160.0, "has_dungeon": false, "has_important": false}, {"id": 7095, "name": "Runestone_Mountains", "category": "altar", "x": -4499.6, "z": -0.6, "px": 1280.1, "py": 2047.9, "has_dungeon": false, "has_important": false}, {"id": 7146, "name": "Runestone_Plains", "category": "altar", "x": 2029.0, "z": 4033.4, "px": 2394.3, "py": 2736.4, "has_dungeon": false, "has_important": false}, {"id": 7147, "name": "Runestone_Plains", "category": "altar", "x": 4165.7, "z": 1000.4, "px": 2758.9, "py": 2218.7, "has_dungeon": false, "has_important": false}, {"id": 7148, "name": "Runestone_Plains", "category": "altar", "x": 5033.3, "z": 2942.2, "px": 2907.0, "py": 2550.1, "has_dungeon": false, "has_important": false}, {"id": 7149, "name": "Runestone_Plains", "category": "altar", "x": -2879.6, "z": 2838.7, "px": 1556.5, "py": 2532.5, "has_dungeon": false, "has_important": false}, {"id": 7150, "name": "Runestone_Plains", "category": "altar", "x": -3030.8, "z": 2900.8, "px": 1530.7, "py": 2543.1, "has_dungeon": false, "has_important": false}, {"id": 7151, "name": "Runestone_Plains", "category": "altar", "x": -3625.7, "z": 2057.6, "px": 1429.2, "py": 2399.2, "has_dungeon": false, "has_important": false}, {"id": 7152, "name": "Runestone_Plains", "category": "altar", "x": -968.4, "z": -6229.4, "px": 1882.7, "py": 984.8, "has_dungeon": false, "has_important": false}, {"id": 7153, "name": "Runestone_Plains", "category": "altar", "x": -3455.5, "z": 2298.7, "px": 1458.3, "py": 2440.3, "has_dungeon": false, "has_important": false}, {"id": 7154, "name": "Runestone_Plains", "category": "altar", "x": -7464.9, "z": 2409.0, "px": 774.0, "py": 2459.1, "has_dungeon": false, "has_important": false}, {"id": 7155, "name": "Runestone_Plains", "category": "altar", "x": 6978.4, "z": -2484.5, "px": 3239.0, "py": 1624.0, "has_dungeon": false, "has_important": false}, {"id": 7156, "name": "Runestone_Plains", "category": "altar", "x": 2984.9, "z": -852.8, "px": 2557.4, "py": 1902.5, "has_dungeon": false, "has_important": false}, {"id": 7157, "name": "Runestone_Plains", "category": "altar", "x": 195.0, "z": 5200.1, "px": 2081.3, "py": 2935.5, "has_dungeon": false, "has_important": false}, {"id": 7158, "name": "Runestone_Plains", "category": "altar", "x": 145.5, "z": 4029.7, "px": 2072.8, "py": 2735.7, "has_dungeon": false, "has_important": false}, {"id": 7159, "name": "Runestone_Plains", "category": "altar", "x": 6761.5, "z": 2388.2, "px": 3202.0, "py": 2455.6, "has_dungeon": false, "has_important": false}, {"id": 7160, "name": "Runestone_Plains", "category": "altar", "x": 6846.6, "z": 2896.7, "px": 3216.5, "py": 2542.4, "has_dungeon": false, "has_important": false}, {"id": 7161, "name": "Runestone_Plains", "category": "altar", "x": 4012.9, "z": 4949.7, "px": 2732.9, "py": 2892.7, "has_dungeon": false, "has_important": false}, {"id": 7162, "name": "Runestone_Plains", "category": "altar", "x": -2992.4, "z": 5673.8, "px": 1537.3, "py": 3016.3, "has_dungeon": false, "has_important": false}, {"id": 7163, "name": "Runestone_Plains", "category": "altar", "x": 6802.2, "z": -2539.7, "px": 3208.9, "py": 1614.6, "has_dungeon": false, "has_important": false}, {"id": 7164, "name": "Runestone_Plains", "category": "altar", "x": 1105.1, "z": 4727.4, "px": 2236.6, "py": 2854.8, "has_dungeon": false, "has_important": false}, {"id": 7165, "name": "Runestone_Plains", "category": "altar", "x": 1405.6, "z": -4460.8, "px": 2287.9, "py": 1286.7, "has_dungeon": false, "has_important": false}, {"id": 7166, "name": "Runestone_Plains", "category": "altar", "x": -1017.7, "z": -4656.4, "px": 1874.3, "py": 1253.3, "has_dungeon": false, "has_important": false}, {"id": 7167, "name": "Runestone_Plains", "category": "altar", "x": 5396.6, "z": -2432.1, "px": 2969.0, "py": 1632.9, "has_dungeon": false, "has_important": false}, {"id": 7168, "name": "Runestone_Plains", "category": "altar", "x": 2759.2, "z": 4922.5, "px": 2518.9, "py": 2888.1, "has_dungeon": false, "has_important": false}, {"id": 7169, "name": "Runestone_Plains", "category": "altar", "x": -4673.0, "z": -507.1, "px": 1250.5, "py": 1961.5, "has_dungeon": false, "has_important": false}, {"id": 7170, "name": "Runestone_Plains", "category": "altar", "x": -2956.0, "z": 5906.1, "px": 1543.5, "py": 3056.0, "has_dungeon": false, "has_important": false}, {"id": 7171, "name": "Runestone_Plains", "category": "altar", "x": -6275.9, "z": -1411.1, "px": 976.9, "py": 1807.2, "has_dungeon": false, "has_important": false}, {"id": 7172, "name": "Runestone_Plains", "category": "altar", "x": -4688.1, "z": -893.4, "px": 1247.9, "py": 1895.5, "has_dungeon": false, "has_important": false}, {"id": 7173, "name": "Runestone_Plains", "category": "altar", "x": 3257.4, "z": -505.2, "px": 2603.9, "py": 1961.8, "has_dungeon": false, "has_important": false}, {"id": 7174, "name": "Runestone_Plains", "category": "altar", "x": 2813.6, "z": -1840.5, "px": 2528.2, "py": 1733.9, "has_dungeon": false, "has_important": false}, {"id": 7175, "name": "Runestone_Plains", "category": "altar", "x": -4152.7, "z": -3663.3, "px": 1339.3, "py": 1422.8, "has_dungeon": false, "has_important": false}, {"id": 7176, "name": "Runestone_Plains", "category": "altar", "x": -241.1, "z": -5716.5, "px": 2006.9, "py": 1072.4, "has_dungeon": false, "has_important": false}, {"id": 7177, "name": "Runestone_Plains", "category": "altar", "x": -4885.0, "z": 3665.8, "px": 1214.3, "py": 2673.6, "has_dungeon": false, "has_important": false}, {"id": 7178, "name": "Runestone_Plains", "category": "altar", "x": 2096.3, "z": -2750.3, "px": 2405.8, "py": 1578.6, "has_dungeon": false, "has_important": false}, {"id": 7179, "name": "Runestone_Plains", "category": "altar", "x": -3147.4, "z": 1198.1, "px": 1510.8, "py": 2252.5, "has_dungeon": false, "has_important": false}, {"id": 7180, "name": "Runestone_Plains", "category": "altar", "x": -3970.1, "z": -4287.4, "px": 1370.4, "py": 1316.3, "has_dungeon": false, "has_important": false}, {"id": 7181, "name": "Runestone_Plains", "category": "altar", "x": -4172.2, "z": -41.8, "px": 1335.9, "py": 2040.9, "has_dungeon": false, "has_important": false}, {"id": 7182, "name": "Runestone_Plains", "category": "altar", "x": 7160.8, "z": -1017.7, "px": 3270.1, "py": 1874.3, "has_dungeon": false, "has_important": false}, {"id": 7183, "name": "Runestone_Plains", "category": "altar", "x": 2282.5, "z": -4904.8, "px": 2437.5, "py": 1210.9, "has_dungeon": false, "has_important": false}, {"id": 7184, "name": "Runestone_Plains", "category": "altar", "x": -5295.2, "z": -1026.7, "px": 1144.3, "py": 1872.8, "has_dungeon": false, "has_important": false}, {"id": 7185, "name": "Runestone_Plains", "category": "altar", "x": 274.7, "z": 4027.8, "px": 2094.9, "py": 2735.4, "has_dungeon": false, "has_important": false}, {"id": 7186, "name": "Runestone_Plains", "category": "altar", "x": 2641.6, "z": -5121.3, "px": 2498.8, "py": 1174.0, "has_dungeon": false, "has_important": false}, {"id": 7187, "name": "Runestone_Plains", "category": "altar", "x": 4535.5, "z": 1235.7, "px": 2822.1, "py": 2258.9, "has_dungeon": false, "has_important": false}, {"id": 7188, "name": "Runestone_Plains", "category": "altar", "x": -2318.1, "z": 3837.8, "px": 1652.4, "py": 2703.0, "has_dungeon": false, "has_important": false}, {"id": 7189, "name": "Runestone_Plains", "category": "altar", "x": -5483.6, "z": 5263.3, "px": 1112.1, "py": 2946.3, "has_dungeon": false, "has_important": false}, {"id": 7190, "name": "Runestone_Plains", "category": "altar", "x": 2051.1, "z": -3780.6, "px": 2398.1, "py": 1402.8, "has_dungeon": false, "has_important": false}, {"id": 7191, "name": "Runestone_Plains", "category": "altar", "x": 891.9, "z": 3895.3, "px": 2200.2, "py": 2712.8, "has_dungeon": false, "has_important": false}, {"id": 7192, "name": "Runestone_Plains", "category": "altar", "x": 4980.5, "z": -1083.0, "px": 2898.0, "py": 1863.2, "has_dungeon": false, "has_important": false}, {"id": 7193, "name": "Runestone_Plains", "category": "altar", "x": 5005.8, "z": -2320.4, "px": 2902.3, "py": 1652.0, "has_dungeon": false, "has_important": false}, {"id": 7194, "name": "Runestone_Plains", "category": "altar", "x": 1040.0, "z": 3784.2, "px": 2225.5, "py": 2693.8, "has_dungeon": false, "has_important": false}, {"id": 7195, "name": "Runestone_Plains", "category": "altar", "x": 2294.7, "z": 6011.8, "px": 2439.6, "py": 3074.0, "has_dungeon": false, "has_important": false}, {"id": 7196, "name": "Runestone_Plains", "category": "altar", "x": 2426.4, "z": 4608.3, "px": 2462.1, "py": 2834.5, "has_dungeon": false, "has_important": false}, {"id": 7197, "name": "Runestone_Plains", "category": "altar", "x": -2428.0, "z": -1851.3, "px": 1633.6, "py": 1732.0, "has_dungeon": false, "has_important": false}, {"id": 7198, "name": "Runestone_Plains", "category": "altar", "x": 2746.5, "z": 4022.0, "px": 2516.7, "py": 2734.4, "has_dungeon": false, "has_important": false}, {"id": 7199, "name": "Runestone_Plains", "category": "altar", "x": -4040.4, "z": 2902.0, "px": 1358.4, "py": 2543.3, "has_dungeon": false, "has_important": false}, {"id": 7200, "name": "Runestone_Plains", "category": "altar", "x": -5110.9, "z": -2966.1, "px": 1175.7, "py": 1541.8, "has_dungeon": false, "has_important": false}, {"id": 7201, "name": "Runestone_Plains", "category": "altar", "x": 3903.9, "z": 5425.6, "px": 2714.3, "py": 2974.0, "has_dungeon": false, "has_important": false}, {"id": 7202, "name": "Runestone_Plains", "category": "altar", "x": -4291.8, "z": 6194.6, "px": 1315.5, "py": 3105.2, "has_dungeon": false, "has_important": false}, {"id": 7203, "name": "Runestone_Plains", "category": "altar", "x": 406.2, "z": 3920.9, "px": 2117.3, "py": 2717.2, "has_dungeon": false, "has_important": false}, {"id": 7204, "name": "Runestone_Plains", "category": "altar", "x": -2126.1, "z": -5420.4, "px": 1685.1, "py": 1122.9, "has_dungeon": false, "has_important": false}, {"id": 7205, "name": "Runestone_Plains", "category": "altar", "x": 313.8, "z": 5422.0, "px": 2101.6, "py": 2973.4, "has_dungeon": false, "has_important": false}, {"id": 7206, "name": "Runestone_Plains", "category": "altar", "x": 2578.6, "z": -7337.4, "px": 2488.1, "py": 795.8, "has_dungeon": false, "has_important": false}, {"id": 7207, "name": "Runestone_Plains", "category": "altar", "x": 4793.0, "z": 2559.5, "px": 2866.0, "py": 2484.8, "has_dungeon": false, "has_important": false}, {"id": 7208, "name": "Runestone_Plains", "category": "altar", "x": 7104.8, "z": 2059.9, "px": 3260.6, "py": 2399.6, "has_dungeon": false, "has_important": false}, {"id": 7209, "name": "Runestone_Plains", "category": "altar", "x": 5615.7, "z": -1354.3, "px": 3006.4, "py": 1816.9, "has_dungeon": false, "has_important": false}, {"id": 7210, "name": "Runestone_Plains", "category": "altar", "x": -5780.9, "z": 1025.7, "px": 1061.4, "py": 2223.1, "has_dungeon": false, "has_important": false}, {"id": 7211, "name": "Runestone_Plains", "category": "altar", "x": 1797.1, "z": 4547.3, "px": 2354.7, "py": 2824.1, "has_dungeon": false, "has_important": false}, {"id": 7212, "name": "Runestone_Plains", "category": "altar", "x": -4375.5, "z": -2302.6, "px": 1301.2, "py": 1655.0, "has_dungeon": false, "has_important": false}, {"id": 7213, "name": "Runestone_Plains", "category": "altar", "x": 3396.5, "z": -904.9, "px": 2627.7, "py": 1893.6, "has_dungeon": false, "has_important": false}, {"id": 7214, "name": "Runestone_Plains", "category": "altar", "x": 496.0, "z": 4140.8, "px": 2132.7, "py": 2754.7, "has_dungeon": false, "has_important": false}, {"id": 7215, "name": "Runestone_Plains", "category": "altar", "x": 888.7, "z": -7310.4, "px": 2199.7, "py": 800.4, "has_dungeon": false, "has_important": false}, {"id": 7216, "name": "Runestone_Plains", "category": "altar", "x": 829.2, "z": 4027.7, "px": 2189.5, "py": 2735.4, "has_dungeon": false, "has_important": false}, {"id": 7217, "name": "Runestone_Plains", "category": "altar", "x": -2435.0, "z": 2997.2, "px": 1632.4, "py": 2559.5, "has_dungeon": false, "has_important": false}, {"id": 7218, "name": "Runestone_Plains", "category": "altar", "x": 3515.9, "z": -1110.0, "px": 2648.0, "py": 1858.6, "has_dungeon": false, "has_important": false}, {"id": 7219, "name": "Runestone_Plains", "category": "altar", "x": -3715.5, "z": 3792.6, "px": 1413.9, "py": 2695.3, "has_dungeon": false, "has_important": false}, {"id": 7220, "name": "Runestone_Plains", "category": "altar", "x": 5397.6, "z": -2190.0, "px": 2969.2, "py": 1674.2, "has_dungeon": false, "has_important": false}, {"id": 7221, "name": "Runestone_Plains", "category": "altar", "x": -5581.3, "z": 4474.5, "px": 1095.5, "py": 2811.6, "has_dungeon": false, "has_important": false}, {"id": 7222, "name": "Runestone_Plains", "category": "altar", "x": 5115.3, "z": 1261.0, "px": 2921.0, "py": 2263.2, "has_dungeon": false, "has_important": false}, {"id": 7223, "name": "Runestone_Plains", "category": "altar", "x": 3671.3, "z": -1269.0, "px": 2674.6, "py": 1831.4, "has_dungeon": false, "has_important": false}, {"id": 7224, "name": "Runestone_Plains", "category": "altar", "x": -1397.0, "z": -5050.7, "px": 1809.6, "py": 1186.0, "has_dungeon": false, "has_important": false}, {"id": 7225, "name": "Runestone_Plains", "category": "altar", "x": -3317.6, "z": -1587.5, "px": 1481.8, "py": 1777.1, "has_dungeon": false, "has_important": false}, {"id": 7226, "name": "Runestone_Plains", "category": "altar", "x": -7247.7, "z": 1858.7, "px": 811.1, "py": 2365.2, "has_dungeon": false, "has_important": false}, {"id": 7227, "name": "Runestone_Plains", "category": "altar", "x": -2616.5, "z": -3083.6, "px": 1601.5, "py": 1521.7, "has_dungeon": false, "has_important": false}, {"id": 7228, "name": "Runestone_Plains", "category": "altar", "x": -1898.5, "z": -3001.1, "px": 1724.0, "py": 1535.8, "has_dungeon": false, "has_important": false}, {"id": 7229, "name": "Runestone_Plains", "category": "altar", "x": -4392.3, "z": -6037.5, "px": 1298.4, "py": 1017.6, "has_dungeon": false, "has_important": false}, {"id": 7230, "name": "Runestone_Plains", "category": "altar", "x": 4159.4, "z": 5195.3, "px": 2757.9, "py": 2934.7, "has_dungeon": false, "has_important": false}, {"id": 7231, "name": "Runestone_Plains", "category": "altar", "x": -4423.3, "z": -3635.7, "px": 1293.1, "py": 1427.5, "has_dungeon": false, "has_important": false}, {"id": 7232, "name": "Runestone_Plains", "category": "altar", "x": 2565.1, "z": -6357.5, "px": 2485.8, "py": 963.0, "has_dungeon": false, "has_important": false}, {"id": 7233, "name": "Runestone_Plains", "category": "altar", "x": -4183.2, "z": 3065.5, "px": 1334.1, "py": 2571.2, "has_dungeon": false, "has_important": false}, {"id": 7234, "name": "Runestone_Plains", "category": "altar", "x": -4242.3, "z": 3412.3, "px": 1324.0, "py": 2630.4, "has_dungeon": false, "has_important": false}, {"id": 7235, "name": "Runestone_Plains", "category": "altar", "x": -965.0, "z": -4992.1, "px": 1883.3, "py": 1196.0, "has_dungeon": false, "has_important": false}, {"id": 7236, "name": "Runestone_Plains", "category": "altar", "x": 2317.3, "z": -2293.8, "px": 2443.5, "py": 1656.5, "has_dungeon": false, "has_important": false}, {"id": 7237, "name": "Runestone_Plains", "category": "altar", "x": -7187.3, "z": 1973.9, "px": 821.4, "py": 2384.9, "has_dungeon": false, "has_important": false}, {"id": 7238, "name": "Runestone_Plains", "category": "altar", "x": 327.4, "z": 5588.7, "px": 2103.9, "py": 3001.8, "has_dungeon": false, "has_important": false}, {"id": 7239, "name": "Runestone_Plains", "category": "altar", "x": 3286.1, "z": -1360.7, "px": 2608.8, "py": 1815.8, "has_dungeon": false, "has_important": false}, {"id": 7240, "name": "Runestone_Plains", "category": "altar", "x": -1988.0, "z": 3180.1, "px": 1708.7, "py": 2590.7, "has_dungeon": false, "has_important": false}, {"id": 7241, "name": "Runestone_Plains", "category": "altar", "x": -682.1, "z": 4159.4, "px": 1931.6, "py": 2757.9, "has_dungeon": false, "has_important": false}, {"id": 7242, "name": "Runestone_Plains", "category": "altar", "x": -466.6, "z": -6166.4, "px": 1968.4, "py": 995.6, "has_dungeon": false, "has_important": false}, {"id": 7243, "name": "Runestone_Plains", "category": "altar", "x": 4736.0, "z": -2447.8, "px": 2856.3, "py": 1630.2, "has_dungeon": false, "has_important": false}, {"id": 7244, "name": "Runestone_Plains", "category": "altar", "x": -3221.7, "z": 3975.9, "px": 1498.2, "py": 2726.6, "has_dungeon": false, "has_important": false}, {"id": 7245, "name": "Runestone_Plains", "category": "altar", "x": 4027.4, "z": 4103.2, "px": 2735.3, "py": 2748.3, "has_dungeon": false, "has_important": false}, {"id": 6899, "name": "Runestone_Swamps", "category": "altar", "x": 2301.0, "z": 4154.0, "px": 2440.7, "py": 2756.9, "has_dungeon": false, "has_important": false}, {"id": 6900, "name": "Runestone_Swamps", "category": "altar", "x": -5744.6, "z": -1201.6, "px": 1067.6, "py": 1842.9, "has_dungeon": false, "has_important": false}, {"id": 6901, "name": "Runestone_Swamps", "category": "altar", "x": 2494.7, "z": 3596.9, "px": 2473.8, "py": 2661.9, "has_dungeon": false, "has_important": false}, {"id": 6902, "name": "Runestone_Swamps", "category": "altar", "x": -2216.3, "z": 4720.7, "px": 1669.8, "py": 2853.7, "has_dungeon": false, "has_important": false}, {"id": 6903, "name": "Runestone_Swamps", "category": "altar", "x": 3664.8, "z": 4650.0, "px": 2673.5, "py": 2841.6, "has_dungeon": false, "has_important": false}, {"id": 6904, "name": "Runestone_Swamps", "category": "altar", "x": -5582.9, "z": -1137.3, "px": 1095.2, "py": 1853.9, "has_dungeon": false, "has_important": false}, {"id": 6905, "name": "Runestone_Swamps", "category": "altar", "x": 2065.3, "z": -3196.4, "px": 2400.5, "py": 1502.5, "has_dungeon": false, "has_important": false}, {"id": 6906, "name": "Runestone_Swamps", "category": "altar", "x": 3595.6, "z": -2239.4, "px": 2661.6, "py": 1665.8, "has_dungeon": false, "has_important": false}, {"id": 6907, "name": "Runestone_Swamps", "category": "altar", "x": -5867.7, "z": -519.4, "px": 1046.6, "py": 1959.4, "has_dungeon": false, "has_important": false}, {"id": 6908, "name": "Runestone_Swamps", "category": "altar", "x": 2479.3, "z": 136.2, "px": 2471.1, "py": 2071.2, "has_dungeon": false, "has_important": false}, {"id": 6909, "name": "Runestone_Swamps", "category": "altar", "x": 2240.7, "z": -3093.7, "px": 2430.4, "py": 1520.0, "has_dungeon": false, "has_important": false}, {"id": 6910, "name": "Runestone_Swamps", "category": "altar", "x": -3315.3, "z": 297.0, "px": 1482.2, "py": 2098.7, "has_dungeon": false, "has_important": false}, {"id": 6911, "name": "Runestone_Swamps", "category": "altar", "x": -2302.0, "z": -958.5, "px": 1655.1, "py": 1884.4, "has_dungeon": false, "has_important": false}, {"id": 6912, "name": "Runestone_Swamps", "category": "altar", "x": 5454.7, "z": 1043.1, "px": 2978.9, "py": 2226.0, "has_dungeon": false, "has_important": false}, {"id": 6913, "name": "Runestone_Swamps", "category": "altar", "x": -2818.1, "z": 1984.8, "px": 1567.0, "py": 2386.7, "has_dungeon": false, "has_important": false}, {"id": 6914, "name": "Runestone_Swamps", "category": "altar", "x": -5271.2, "z": -1648.8, "px": 1148.4, "py": 1766.6, "has_dungeon": false, "has_important": false}, {"id": 6915, "name": "Runestone_Swamps", "category": "altar", "x": 941.5, "z": 4354.7, "px": 2208.7, "py": 2791.2, "has_dungeon": false, "has_important": false}, {"id": 6916, "name": "Runestone_Swamps", "category": "altar", "x": -4473.8, "z": 393.5, "px": 1284.5, "py": 2115.2, "has_dungeon": false, "has_important": false}, {"id": 6917, "name": "Runestone_Swamps", "category": "altar", "x": 4270.5, "z": 2002.7, "px": 2776.8, "py": 2389.8, "has_dungeon": false, "has_important": false}, {"id": 6918, "name": "Runestone_Swamps", "category": "altar", "x": -2936.0, "z": -5179.7, "px": 1546.9, "py": 1164.0, "has_dungeon": false, "has_important": false}, {"id": 6919, "name": "Runestone_Swamps", "category": "altar", "x": -3762.9, "z": 2882.6, "px": 1405.8, "py": 2540.0, "has_dungeon": false, "has_important": false}, {"id": 6920, "name": "Runestone_Swamps", "category": "altar", "x": -1166.5, "z": -3476.3, "px": 1848.9, "py": 1454.7, "has_dungeon": false, "has_important": false}, {"id": 6921, "name": "Runestone_Swamps", "category": "altar", "x": -2430.1, "z": 2283.4, "px": 1633.3, "py": 2437.7, "has_dungeon": false, "has_important": false}, {"id": 6922, "name": "Runestone_Swamps", "category": "altar", "x": -5563.7, "z": 2064.3, "px": 1098.5, "py": 2400.3, "has_dungeon": false, "has_important": false}, {"id": 6923, "name": "Runestone_Swamps", "category": "altar", "x": 4425.8, "z": -1154.5, "px": 2803.3, "py": 1851.0, "has_dungeon": false, "has_important": false}, {"id": 6924, "name": "Runestone_Swamps", "category": "altar", "x": 384.7, "z": 2505.7, "px": 2113.7, "py": 2475.6, "has_dungeon": false, "has_important": false}, {"id": 6925, "name": "Runestone_Swamps", "category": "altar", "x": 2434.6, "z": -132.4, "px": 2463.5, "py": 2025.4, "has_dungeon": false, "has_important": false}, {"id": 6926, "name": "Runestone_Swamps", "category": "altar", "x": 3120.7, "z": -4183.7, "px": 2580.6, "py": 1334.0, "has_dungeon": false, "has_important": false}, {"id": 6927, "name": "Runestone_Swamps", "category": "altar", "x": -1748.0, "z": 4595.9, "px": 1749.7, "py": 2832.4, "has_dungeon": false, "has_important": false}, {"id": 6928, "name": "Runestone_Swamps", "category": "altar", "x": -5244.8, "z": -691.6, "px": 1152.9, "py": 1930.0, "has_dungeon": false, "has_important": false}, {"id": 6929, "name": "Runestone_Swamps", "category": "altar", "x": 1032.2, "z": -3649.9, "px": 2224.2, "py": 1425.1, "has_dungeon": false, "has_important": false}, {"id": 6930, "name": "Runestone_Swamps", "category": "altar", "x": -5449.1, "z": 1898.4, "px": 1118.0, "py": 2372.0, "has_dungeon": false, "has_important": false}, {"id": 6931, "name": "Runestone_Swamps", "category": "altar", "x": 2537.3, "z": -779.4, "px": 2481.0, "py": 1915.0, "has_dungeon": false, "has_important": false}, {"id": 6932, "name": "Runestone_Swamps", "category": "altar", "x": 3669.3, "z": 1135.7, "px": 2674.2, "py": 2241.8, "has_dungeon": false, "has_important": false}, {"id": 6933, "name": "Runestone_Swamps", "category": "altar", "x": -4470.2, "z": -406.2, "px": 1285.1, "py": 1978.7, "has_dungeon": false, "has_important": false}, {"id": 6934, "name": "Runestone_Swamps", "category": "altar", "x": 1943.5, "z": 4305.9, "px": 2379.7, "py": 2782.9, "has_dungeon": false, "has_important": false}, {"id": 6935, "name": "Runestone_Swamps", "category": "altar", "x": -5416.0, "z": -1740.9, "px": 1123.7, "py": 1750.9, "has_dungeon": false, "has_important": false}, {"id": 6936, "name": "Runestone_Swamps", "category": "altar", "x": 4906.0, "z": 2381.8, "px": 2885.3, "py": 2454.5, "has_dungeon": false, "has_important": false}, {"id": 6937, "name": "Runestone_Swamps", "category": "altar", "x": -5097.1, "z": 1512.1, "px": 1178.1, "py": 2306.1, "has_dungeon": false, "has_important": false}, {"id": 6938, "name": "Runestone_Swamps", "category": "altar", "x": 2601.9, "z": -5352.5, "px": 2492.1, "py": 1134.5, "has_dungeon": false, "has_important": false}, {"id": 6939, "name": "Runestone_Swamps", "category": "altar", "x": 2296.6, "z": 4372.7, "px": 2440.0, "py": 2794.3, "has_dungeon": false, "has_important": false}, {"id": 6940, "name": "Runestone_Swamps", "category": "altar", "x": -4353.3, "z": 828.4, "px": 1305.0, "py": 2189.4, "has_dungeon": false, "has_important": false}, {"id": 6941, "name": "Runestone_Swamps", "category": "altar", "x": -3339.6, "z": 3210.2, "px": 1478.0, "py": 2595.9, "has_dungeon": false, "has_important": false}, {"id": 6942, "name": "Runestone_Swamps", "category": "altar", "x": -1263.9, "z": -5736.4, "px": 1832.3, "py": 1069.0, "has_dungeon": false, "has_important": false}, {"id": 6943, "name": "Runestone_Swamps", "category": "altar", "x": -3639.3, "z": -3979.9, "px": 1426.9, "py": 1368.8, "has_dungeon": false, "has_important": false}, {"id": 6944, "name": "Runestone_Swamps", "category": "altar", "x": -3662.4, "z": 104.7, "px": 1423.0, "py": 2065.9, "has_dungeon": false, "has_important": false}, {"id": 6945, "name": "Runestone_Swamps", "category": "altar", "x": -1719.2, "z": 4404.1, "px": 1754.6, "py": 2799.6, "has_dungeon": false, "has_important": false}, {"id": 6946, "name": "Runestone_Swamps", "category": "altar", "x": 2886.7, "z": 3590.2, "px": 2540.7, "py": 2660.7, "has_dungeon": false, "has_important": false}, {"id": 6947, "name": "Runestone_Swamps", "category": "altar", "x": -4876.5, "z": -382.2, "px": 1215.7, "py": 1982.8, "has_dungeon": false, "has_important": false}, {"id": 6948, "name": "Runestone_Swamps", "category": "altar", "x": -2774.9, "z": -1599.1, "px": 1574.4, "py": 1775.1, "has_dungeon": false, "has_important": false}, {"id": 6949, "name": "Runestone_Swamps", "category": "altar", "x": 681.7, "z": 2485.2, "px": 2164.3, "py": 2472.1, "has_dungeon": false, "has_important": false}, {"id": 6950, "name": "Runestone_Swamps", "category": "altar", "x": -2501.1, "z": 4627.3, "px": 1621.1, "py": 2837.7, "has_dungeon": false, "has_important": false}, {"id": 6951, "name": "Runestone_Swamps", "category": "altar", "x": 321.3, "z": 4246.4, "px": 2102.8, "py": 2772.7, "has_dungeon": false, "has_important": false}, {"id": 6952, "name": "Runestone_Swamps", "category": "altar", "x": 2090.1, "z": -1142.2, "px": 2404.7, "py": 1853.1, "has_dungeon": false, "has_important": false}, {"id": 6953, "name": "Runestone_Swamps", "category": "altar", "x": 5369.8, "z": 1195.7, "px": 2964.4, "py": 2252.1, "has_dungeon": false, "has_important": false}, {"id": 6954, "name": "Runestone_Swamps", "category": "altar", "x": -2607.8, "z": -1833.5, "px": 1602.9, "py": 1735.1, "has_dungeon": false, "has_important": false}, {"id": 6955, "name": "Runestone_Swamps", "category": "altar", "x": 5050.5, "z": -383.7, "px": 2910.0, "py": 1982.5, "has_dungeon": false, "has_important": false}, {"id": 6956, "name": "Runestone_Swamps", "category": "altar", "x": 1522.9, "z": -5420.7, "px": 2307.9, "py": 1122.9, "has_dungeon": false, "has_important": false}, {"id": 6957, "name": "Runestone_Swamps", "category": "altar", "x": -4112.0, "z": 3787.6, "px": 1346.2, "py": 2694.4, "has_dungeon": false, "has_important": false}, {"id": 6958, "name": "Runestone_Swamps", "category": "altar", "x": 5440.9, "z": 2247.8, "px": 2976.6, "py": 2431.6, "has_dungeon": false, "has_important": false}, {"id": 6959, "name": "Runestone_Swamps", "category": "altar", "x": -4823.6, "z": -3457.4, "px": 1224.8, "py": 1457.9, "has_dungeon": false, "has_important": false}, {"id": 6960, "name": "Runestone_Swamps", "category": "altar", "x": -2309.7, "z": -1109.0, "px": 1653.8, "py": 1858.7, "has_dungeon": false, "has_important": false}, {"id": 6961, "name": "Runestone_Swamps", "category": "altar", "x": -1962.8, "z": 4365.9, "px": 1713.0, "py": 2793.1, "has_dungeon": false, "has_important": false}, {"id": 6962, "name": "Runestone_Swamps", "category": "altar", "x": -1396.3, "z": -5648.9, "px": 1809.7, "py": 1083.9, "has_dungeon": false, "has_important": false}, {"id": 6963, "name": "Runestone_Swamps", "category": "altar", "x": 2750.1, "z": -327.9, "px": 2517.4, "py": 1992.0, "has_dungeon": false, "has_important": false}, {"id": 6964, "name": "Runestone_Swamps", "category": "altar", "x": 3253.1, "z": -727.7, "px": 2603.2, "py": 1923.8, "has_dungeon": false, "has_important": false}, {"id": 6965, "name": "Runestone_Swamps", "category": "altar", "x": 2259.6, "z": -1193.9, "px": 2433.6, "py": 1844.2, "has_dungeon": false, "has_important": false}, {"id": 6966, "name": "Runestone_Swamps", "category": "altar", "x": 1390.0, "z": 4600.0, "px": 2285.2, "py": 2833.1, "has_dungeon": false, "has_important": false}, {"id": 6967, "name": "Runestone_Swamps", "category": "altar", "x": 3177.1, "z": -372.2, "px": 2590.2, "py": 1984.5, "has_dungeon": false, "has_important": false}, {"id": 6968, "name": "Runestone_Swamps", "category": "altar", "x": -4310.6, "z": 1041.6, "px": 1312.3, "py": 2225.8, "has_dungeon": false, "has_important": false}, {"id": 6969, "name": "Runestone_Swamps", "category": "altar", "x": 2601.7, "z": -2315.2, "px": 2492.0, "py": 1652.9, "has_dungeon": false, "has_important": false}, {"id": 6970, "name": "Runestone_Swamps", "category": "altar", "x": 5696.2, "z": 1776.3, "px": 3020.2, "py": 2351.2, "has_dungeon": false, "has_important": false}, {"id": 6971, "name": "Runestone_Swamps", "category": "altar", "x": -3781.8, "z": 3216.0, "px": 1402.6, "py": 2596.9, "has_dungeon": false, "has_important": false}, {"id": 6972, "name": "Runestone_Swamps", "category": "altar", "x": -2432.9, "z": -4017.2, "px": 1632.8, "py": 1362.4, "has_dungeon": false, "has_important": false}, {"id": 6973, "name": "Runestone_Swamps", "category": "altar", "x": -4410.4, "z": -619.9, "px": 1295.3, "py": 1942.2, "has_dungeon": false, "has_important": false}, {"id": 6974, "name": "Runestone_Swamps", "category": "altar", "x": -4985.0, "z": -3218.6, "px": 1197.2, "py": 1498.7, "has_dungeon": false, "has_important": false}, {"id": 6975, "name": "Runestone_Swamps", "category": "altar", "x": -3599.8, "z": -4119.8, "px": 1433.6, "py": 1344.9, "has_dungeon": false, "has_important": false}, {"id": 6976, "name": "Runestone_Swamps", "category": "altar", "x": -1389.8, "z": -5782.7, "px": 1810.8, "py": 1061.1, "has_dungeon": false, "has_important": false}, {"id": 6977, "name": "Runestone_Swamps", "category": "altar", "x": 2746.1, "z": -182.8, "px": 2516.7, "py": 2016.8, "has_dungeon": false, "has_important": false}, {"id": 6978, "name": "Runestone_Swamps", "category": "altar", "x": 1040.8, "z": 2382.4, "px": 2225.6, "py": 2454.6, "has_dungeon": false, "has_important": false}, {"id": 6979, "name": "Runestone_Swamps", "category": "altar", "x": -4866.6, "z": 3139.0, "px": 1217.4, "py": 2583.7, "has_dungeon": false, "has_important": false}, {"id": 6980, "name": "Runestone_Swamps", "category": "altar", "x": -2293.0, "z": -4289.7, "px": 1656.7, "py": 1315.9, "has_dungeon": false, "has_important": false}, {"id": 6981, "name": "Runestone_Swamps", "category": "altar", "x": -4673.6, "z": 1089.4, "px": 1250.4, "py": 2233.9, "has_dungeon": false, "has_important": false}, {"id": 6982, "name": "Runestone_Swamps", "category": "altar", "x": 385.4, "z": 4484.6, "px": 2113.8, "py": 2813.4, "has_dungeon": false, "has_important": false}, {"id": 6983, "name": "Runestone_Swamps", "category": "altar", "x": -3786.6, "z": -4237.8, "px": 1401.8, "py": 1324.7, "has_dungeon": false, "has_important": false}, {"id": 6984, "name": "Runestone_Swamps", "category": "altar", "x": -3947.9, "z": 3602.1, "px": 1374.2, "py": 2662.8, "has_dungeon": false, "has_important": false}, {"id": 6985, "name": "Runestone_Swamps", "category": "altar", "x": -5756.2, "z": -382.4, "px": 1065.6, "py": 1982.7, "has_dungeon": false, "has_important": false}, {"id": 6986, "name": "Runestone_Swamps", "category": "altar", "x": 4150.2, "z": 2234.3, "px": 2756.3, "py": 2429.3, "has_dungeon": false, "has_important": false}, {"id": 6987, "name": "Runestone_Swamps", "category": "altar", "x": -3912.4, "z": 192.6, "px": 1380.3, "py": 2080.9, "has_dungeon": false, "has_important": false}, {"id": 6988, "name": "Runestone_Swamps", "category": "altar", "x": -2250.6, "z": 4847.1, "px": 1663.9, "py": 2875.2, "has_dungeon": false, "has_important": false}, {"id": 6989, "name": "Runestone_Swamps", "category": "altar", "x": -2833.1, "z": 1784.1, "px": 1564.5, "py": 2352.5, "has_dungeon": false, "has_important": false}, {"id": 6990, "name": "Runestone_Swamps", "category": "altar", "x": -3536.5, "z": 3150.5, "px": 1444.4, "py": 2585.7, "has_dungeon": false, "has_important": false}, {"id": 6991, "name": "Runestone_Swamps", "category": "altar", "x": -4531.2, "z": 215.9, "px": 1274.7, "py": 2084.8, "has_dungeon": false, "has_important": false}, {"id": 6992, "name": "Runestone_Swamps", "category": "altar", "x": -2439.3, "z": -5102.4, "px": 1631.7, "py": 1177.2, "has_dungeon": false, "has_important": false}, {"id": 6993, "name": "Runestone_Swamps", "category": "altar", "x": 5000.9, "z": -826.3, "px": 2901.5, "py": 1907.0, "has_dungeon": false, "has_important": false}, {"id": 6994, "name": "Runestone_Swamps", "category": "altar", "x": -2227.9, "z": 4335.7, "px": 1667.8, "py": 2788.0, "has_dungeon": false, "has_important": false}, {"id": 6995, "name": "Runestone_Swamps", "category": "altar", "x": 4978.3, "z": -266.8, "px": 2897.6, "py": 2002.5, "has_dungeon": false, "has_important": false}, {"id": 6996, "name": "Runestone_Swamps", "category": "altar", "x": -2410.9, "z": -595.3, "px": 1636.5, "py": 1946.4, "has_dungeon": false, "has_important": false}, {"id": 6997, "name": "Runestone_Swamps", "category": "altar", "x": -5627.5, "z": -1002.1, "px": 1087.6, "py": 1877.0, "has_dungeon": false, "has_important": false}, {"id": 6998, "name": "Runestone_Swamps", "category": "altar", "x": 3456.4, "z": 1137.9, "px": 2637.9, "py": 2242.2, "has_dungeon": false, "has_important": false}, {"id": 3335, "name": "StoneHenge1", "category": "altar", "x": 3328.4, "z": -447.7, "px": 2616.0, "py": 1971.6, "has_dungeon": false, "has_important": true}, {"id": 3336, "name": "StoneHenge1", "category": "altar", "x": 4863.1, "z": -1217.3, "px": 2878.0, "py": 1840.2, "has_dungeon": false, "has_important": false}, {"id": 3337, "name": "StoneHenge1", "category": "altar", "x": 7039.0, "z": -2432.9, "px": 3249.3, "py": 1632.8, "has_dungeon": false, "has_important": true}, {"id": 3338, "name": "StoneHenge1", "category": "altar", "x": -5824.1, "z": 1919.2, "px": 1054.0, "py": 2375.5, "has_dungeon": false, "has_important": true}, {"id": 3339, "name": "StoneHenge1", "category": "altar", "x": -896.5, "z": -6334.6, "px": 1895.0, "py": 966.9, "has_dungeon": false, "has_important": true}, {"id": 3340, "name": "StoneHenge2", "category": "altar", "x": -1857.7, "z": 3198.3, "px": 1731.0, "py": 2593.8, "has_dungeon": false, "has_important": true}, {"id": 3341, "name": "StoneHenge2", "category": "altar", "x": -1342.2, "z": -4352.1, "px": 1818.9, "py": 1305.2, "has_dungeon": false, "has_important": false}, {"id": 3342, "name": "StoneHenge2", "category": "altar", "x": 1855.9, "z": 3774.6, "px": 2364.7, "py": 2692.2, "has_dungeon": false, "has_important": false}, {"id": 3343, "name": "StoneHenge2", "category": "altar", "x": 1470.9, "z": -4351.9, "px": 2299.0, "py": 1305.3, "has_dungeon": false, "has_important": true}, {"id": 3344, "name": "StoneHenge2", "category": "altar", "x": 831.8, "z": -7360.0, "px": 2190.0, "py": 791.9, "has_dungeon": false, "has_important": true}, {"id": 3345, "name": "StoneHenge3", "category": "altar", "x": -3198.3, "z": 5952.2, "px": 1502.2, "py": 3063.8, "has_dungeon": false, "has_important": true}, {"id": 3346, "name": "StoneHenge3", "category": "altar", "x": -3583.4, "z": -1726.5, "px": 1436.4, "py": 1753.3, "has_dungeon": false, "has_important": true}, {"id": 3347, "name": "StoneHenge3", "category": "altar", "x": 3135.1, "z": 4415.9, "px": 2583.1, "py": 2801.6, "has_dungeon": false, "has_important": false}, {"id": 3348, "name": "StoneHenge3", "category": "altar", "x": 2879.4, "z": -5951.2, "px": 2539.4, "py": 1032.3, "has_dungeon": false, "has_important": false}, {"id": 3349, "name": "StoneHenge3", "category": "altar", "x": 3711.9, "z": 1727.4, "px": 2681.5, "py": 2342.8, "has_dungeon": false, "has_important": true}, {"id": 3350, "name": "StoneHenge4", "category": "altar", "x": -4479.1, "z": -6079.4, "px": 1283.6, "py": 1010.4, "has_dungeon": false, "has_important": true}, {"id": 3351, "name": "StoneHenge4", "category": "altar", "x": -2431.8, "z": -3008.4, "px": 1633.0, "py": 1534.6, "has_dungeon": false, "has_important": false}, {"id": 3352, "name": "StoneHenge4", "category": "altar", "x": 5822.1, "z": -4800.2, "px": 3041.6, "py": 1228.8, "has_dungeon": false, "has_important": true}, {"id": 3353, "name": "StoneHenge4", "category": "altar", "x": -5886.8, "z": -1344.7, "px": 1043.3, "py": 1818.5, "has_dungeon": false, "has_important": false}, {"id": 3354, "name": "StoneHenge4", "category": "altar", "x": 4094.2, "z": 4928.6, "px": 2746.7, "py": 2889.1, "has_dungeon": false, "has_important": true}, {"id": 3355, "name": "StoneHenge5", "category": "altar", "x": -2938.8, "z": -2608.1, "px": 1546.4, "py": 1602.9, "has_dungeon": false, "has_important": true}, {"id": 3356, "name": "StoneHenge5", "category": "altar", "x": -3850.2, "z": 2802.6, "px": 1390.9, "py": 2526.3, "has_dungeon": false, "has_important": true}, {"id": 3357, "name": "StoneHenge5", "category": "altar", "x": 6223.2, "z": 1596.2, "px": 3110.1, "py": 2320.4, "has_dungeon": false, "has_important": true}, {"id": 3358, "name": "StoneHenge5", "category": "altar", "x": -4080.3, "z": 3575.0, "px": 1351.6, "py": 2658.1, "has_dungeon": false, "has_important": false}, {"id": 3359, "name": "StoneHenge5", "category": "altar", "x": 5490.2, "z": -2125.9, "px": 2985.0, "py": 1685.2, "has_dungeon": false, "has_important": true}, {"id": 3360, "name": "StoneHenge5", "category": "altar", "x": -1851.5, "z": -3257.9, "px": 1732.0, "py": 1492.0, "has_dungeon": false, "has_important": true}, {"id": 3361, "name": "StoneHenge5", "category": "altar", "x": 4994.0, "z": -2371.0, "px": 2900.3, "py": 1643.3, "has_dungeon": false, "has_important": false}, {"id": 3362, "name": "StoneHenge5", "category": "altar", "x": -1343.2, "z": -6788.8, "px": 1818.8, "py": 889.4, "has_dungeon": false, "has_important": true}, {"id": 3363, "name": "StoneHenge5", "category": "altar", "x": -5446.8, "z": 504.9, "px": 1118.4, "py": 2134.2, "has_dungeon": false, "has_important": true}, {"id": 3364, "name": "StoneHenge5", "category": "altar", "x": 373.8, "z": 3343.2, "px": 2111.8, "py": 2618.6, "has_dungeon": false, "has_important": true}, {"id": 3365, "name": "StoneHenge5", "category": "altar", "x": 4355.7, "z": 1009.0, "px": 2791.4, "py": 2220.2, "has_dungeon": false, "has_important": false}, {"id": 3366, "name": "StoneHenge5", "category": "altar", "x": 960.2, "z": -4087.9, "px": 2211.9, "py": 1350.3, "has_dungeon": false, "has_important": true}, {"id": 3367, "name": "StoneHenge5", "category": "altar", "x": 4623.5, "z": 1466.9, "px": 2837.1, "py": 2298.4, "has_dungeon": false, "has_important": true}, {"id": 3368, "name": "StoneHenge5", "category": "altar", "x": -1671.1, "z": -4999.9, "px": 1762.8, "py": 1194.7, "has_dungeon": false, "has_important": true}, {"id": 3369, "name": "StoneHenge5", "category": "altar", "x": 5507.9, "z": 379.6, "px": 2988.0, "py": 2112.8, "has_dungeon": false, "has_important": false}, {"id": 3370, "name": "StoneHenge5", "category": "altar", "x": 4724.6, "z": -1717.8, "px": 2854.3, "py": 1754.8, "has_dungeon": false, "has_important": true}, {"id": 3371, "name": "StoneHenge5", "category": "altar", "x": 2057.8, "z": 5833.4, "px": 2399.2, "py": 3043.6, "has_dungeon": false, "has_important": false}, {"id": 3372, "name": "StoneHenge5", "category": "altar", "x": 2510.1, "z": -7346.9, "px": 2476.4, "py": 794.1, "has_dungeon": false, "has_important": true}, {"id": 3373, "name": "StoneHenge5", "category": "altar", "x": -11.1, "z": -5133.6, "px": 2046.1, "py": 1171.9, "has_dungeon": false, "has_important": true}, {"id": 3374, "name": "StoneHenge5", "category": "altar", "x": 4723.5, "z": -2803.1, "px": 2854.1, "py": 1569.6, "has_dungeon": false, "has_important": true}, {"id": 3375, "name": "StoneHenge6", "category": "altar", "x": -4611.3, "z": 2575.9, "px": 1261.0, "py": 2487.6, "has_dungeon": false, "has_important": false}, {"id": 3376, "name": "StoneHenge6", "category": "altar", "x": 4081.1, "z": -965.0, "px": 2744.5, "py": 1883.3, "has_dungeon": false, "has_important": false}, {"id": 3377, "name": "StoneHenge6", "category": "altar", "x": 904.3, "z": 4623.8, "px": 2202.3, "py": 2837.1, "has_dungeon": false, "has_important": false}, {"id": 3378, "name": "StoneHenge6", "category": "altar", "x": 4673.6, "z": 3203.1, "px": 2845.6, "py": 2594.7, "has_dungeon": false, "has_important": false}, {"id": 3379, "name": "StoneHenge6", "category": "altar", "x": -4154.6, "z": 1016.3, "px": 1338.9, "py": 2221.4, "has_dungeon": false, "has_important": false}, {"id": 3380, "name": "StoneHenge6", "category": "altar", "x": 1141.3, "z": 3583.9, "px": 2242.8, "py": 2659.7, "has_dungeon": false, "has_important": false}, {"id": 3381, "name": "StoneHenge6", "category": "altar", "x": -2894.4, "z": 1146.0, "px": 1554.0, "py": 2243.6, "has_dungeon": false, "has_important": false}, {"id": 3382, "name": "StoneHenge6", "category": "altar", "x": -7479.1, "z": 2372.9, "px": 771.6, "py": 2453.0, "has_dungeon": false, "has_important": false}, {"id": 3383, "name": "StoneHenge6", "category": "altar", "x": 3016.3, "z": 3065.9, "px": 2562.8, "py": 2571.2, "has_dungeon": false, "has_important": false}, {"id": 3384, "name": "StoneHenge6", "category": "altar", "x": -4556.3, "z": -586.5, "px": 1270.4, "py": 1947.9, "has_dungeon": false, "has_important": false}, {"id": 3385, "name": "StoneHenge6", "category": "altar", "x": -7030.4, "z": 4.9, "px": 848.1, "py": 2048.8, "has_dungeon": false, "has_important": false}, {"id": 3386, "name": "StoneHenge6", "category": "altar", "x": -2684.2, "z": 2377.0, "px": 1589.9, "py": 2453.7, "has_dungeon": false, "has_important": false}, {"id": 3387, "name": "StoneHenge6", "category": "altar", "x": 5510.1, "z": -1217.3, "px": 2988.4, "py": 1840.2, "has_dungeon": false, "has_important": false}, {"id": 3388, "name": "StoneHenge6", "category": "altar", "x": -3535.9, "z": 2303.3, "px": 1444.5, "py": 2441.1, "has_dungeon": false, "has_important": false}, {"id": 3389, "name": "StoneHenge6", "category": "altar", "x": -6404.8, "z": -4739.2, "px": 954.9, "py": 1239.2, "has_dungeon": false, "has_important": false}, {"id": 3390, "name": "StoneHenge6", "category": "altar", "x": 2931.1, "z": -3266.3, "px": 2548.2, "py": 1490.6, "has_dungeon": false, "has_important": false}, {"id": 3391, "name": "StoneHenge6", "category": "altar", "x": 2056.8, "z": 4937.8, "px": 2399.0, "py": 2890.7, "has_dungeon": false, "has_important": false}, {"id": 3392, "name": "StoneHenge6", "category": "altar", "x": -4982.8, "z": -2879.7, "px": 1197.6, "py": 1556.5, "has_dungeon": false, "has_important": false}, {"id": 3393, "name": "StoneHenge6", "category": "altar", "x": -316.1, "z": -5707.2, "px": 1994.1, "py": 1074.0, "has_dungeon": false, "has_important": false}, {"id": 3394, "name": "StoneHenge6", "category": "altar", "x": -4213.5, "z": -4227.5, "px": 1328.9, "py": 1326.5, "has_dungeon": false, "has_important": false}, {"id": 13, "name": "Bonemass", "category": "boss", "x": -2951.8, "z": 586.4, "px": 1544.2, "py": 2148.1, "has_dungeon": false, "has_important": false}, {"id": 14, "name": "Bonemass", "category": "boss", "x": 4810.9, "z": -770.1, "px": 2869.1, "py": 1916.6, "has_dungeon": false, "has_important": false}, {"id": 15, "name": "Bonemass", "category": "boss", "x": -2758.3, "z": -5127.8, "px": 1577.3, "py": 1172.9, "has_dungeon": false, "has_important": false}, {"id": 16, "name": "Bonemass", "category": "boss", "x": -2438.7, "z": 4997.8, "px": 1631.8, "py": 2901.0, "has_dungeon": false, "has_important": false}, {"id": 17, "name": "Bonemass", "category": "boss", "x": 1788.0, "z": 4281.1, "px": 2353.2, "py": 2778.6, "has_dungeon": false, "has_important": false}, {"id": 2, "name": "Eikthyrnir", "category": "boss", "x": -20.3, "z": -178.0, "px": 2044.5, "py": 2017.6, "has_dungeon": false, "has_important": false}, {"id": 3, "name": "Eikthyrnir", "category": "boss", "x": -0.7, "z": -79.5, "px": 2047.9, "py": 2034.4, "has_dungeon": false, "has_important": false}, {"id": 4, "name": "Eikthyrnir", "category": "boss", "x": -236.9, "z": -187.4, "px": 2007.6, "py": 2016.0, "has_dungeon": false, "has_important": false}, {"id": 9, "name": "GDKing", "category": "boss", "x": -3326.3, "z": 4346.2, "px": 1480.3, "py": 2789.8, "has_dungeon": false, "has_important": false}, {"id": 10, "name": "GDKing", "category": "boss", "x": -1401.8, "z": -1985.1, "px": 1808.8, "py": 1709.2, "has_dungeon": false, "has_important": false}, {"id": 11, "name": "GDKing", "category": "boss", "x": 2756.7, "z": 385.2, "px": 2518.5, "py": 2113.7, "has_dungeon": false, "has_important": false}, {"id": 12, "name": "GDKing", "category": "boss", "x": -5761.9, "z": -1539.0, "px": 1064.6, "py": 1785.3, "has_dungeon": false, "has_important": false}, {"id": 5, "name": "GoblinKing", "category": "boss", "x": 7104.0, "z": 1088.0, "px": 3260.4, "py": 2233.7, "has_dungeon": false, "has_important": false}, {"id": 6, "name": "GoblinKing", "category": "boss", "x": -1536.0, "z": -4224.0, "px": 1785.9, "py": 1327.1, "has_dungeon": false, "has_important": false}, {"id": 7, "name": "GoblinKing", "category": "boss", "x": 3584.0, "z": 1664.0, "px": 2659.7, "py": 2332.0, "has_dungeon": false, "has_important": false}, {"id": 8, "name": "GoblinKing", "category": "boss", "x": -2560.0, "z": 5952.0, "px": 1611.1, "py": 3063.8, "has_dungeon": false, "has_important": false}, {"id": 1985, "name": "Crypt2", "category": "dungeon", "x": -5749.3, "z": -4995.7, "px": 1066.8, "py": 1195.4, "has_dungeon": true, "has_important": true}, {"id": 1986, "name": "Crypt2", "category": "dungeon", "x": -1784.6, "z": -4355.4, "px": 1743.4, "py": 1304.7, "has_dungeon": true, "has_important": true}, {"id": 1987, "name": "Crypt2", "category": "dungeon", "x": -3193.8, "z": 4469.9, "px": 1502.9, "py": 2810.9, "has_dungeon": true, "has_important": true}, {"id": 1988, "name": "Crypt2", "category": "dungeon", "x": -1462.0, "z": -1719.2, "px": 1798.5, "py": 1754.6, "has_dungeon": true, "has_important": true}, {"id": 1989, "name": "Crypt2", "category": "dungeon", "x": 3641.8, "z": 3969.8, "px": 2669.5, "py": 2725.5, "has_dungeon": true, "has_important": true}, {"id": 1990, "name": "Crypt2", "category": "dungeon", "x": -9021.5, "z": 3142.1, "px": 508.3, "py": 2584.3, "has_dungeon": true, "has_important": true}, {"id": 1991, "name": "Crypt2", "category": "dungeon", "x": -1736.3, "z": -4225.4, "px": 1751.7, "py": 1326.9, "has_dungeon": true, "has_important": true}, {"id": 1992, "name": "Crypt2", "category": "dungeon", "x": -8265.4, "z": 2494.6, "px": 637.4, "py": 2473.7, "has_dungeon": true, "has_important": true}, {"id": 1993, "name": "Crypt2", "category": "dungeon", "x": -5949.7, "z": 1468.8, "px": 1032.6, "py": 2298.7, "has_dungeon": true, "has_important": true}, {"id": 1994, "name": "Crypt2", "category": "dungeon", "x": -5368.1, "z": -1919.7, "px": 1131.8, "py": 1720.4, "has_dungeon": true, "has_important": true}, {"id": 1995, "name": "Crypt2", "category": "dungeon", "x": 7744.4, "z": -2746.7, "px": 3369.7, "py": 1579.2, "has_dungeon": true, "has_important": true}, {"id": 1996, "name": "Crypt2", "category": "dungeon", "x": 8580.9, "z": -1732.6, "px": 3512.5, "py": 1752.3, "has_dungeon": true, "has_important": true}, {"id": 1997, "name": "Crypt2", "category": "dungeon", "x": -5052.2, "z": 585.3, "px": 1185.8, "py": 2147.9, "has_dungeon": true, "has_important": true}, {"id": 1998, "name": "Crypt2", "category": "dungeon", "x": -1158.1, "z": -1210.7, "px": 1850.4, "py": 1841.4, "has_dungeon": true, "has_important": true}, {"id": 1999, "name": "Crypt2", "category": "dungeon", "x": -6850.3, "z": 5430.7, "px": 878.9, "py": 2974.8, "has_dungeon": true, "has_important": true}, {"id": 2000, "name": "Crypt2", "category": "dungeon", "x": 8261.5, "z": -2503.6, "px": 3458.0, "py": 1620.7, "has_dungeon": true, "has_important": true}, {"id": 2001, "name": "Crypt2", "category": "dungeon", "x": -6655.6, "z": -4797.9, "px": 912.1, "py": 1229.2, "has_dungeon": true, "has_important": true}, {"id": 2002, "name": "Crypt2", "category": "dungeon", "x": 3705.4, "z": 3650.9, "px": 2680.4, "py": 2671.1, "has_dungeon": true, "has_important": true}, {"id": 2003, "name": "Crypt2", "category": "dungeon", "x": 709.3, "z": 4485.9, "px": 2169.1, "py": 2813.6, "has_dungeon": true, "has_important": true}, {"id": 2004, "name": "Crypt2", "category": "dungeon", "x": 5893.1, "z": -707.2, "px": 3053.8, "py": 1927.3, "has_dungeon": true, "has_important": true}, {"id": 2005, "name": "Crypt2", "category": "dungeon", "x": -6785.2, "z": 514.4, "px": 890.0, "py": 2135.8, "has_dungeon": true, "has_important": true}, {"id": 2006, "name": "Crypt2", "category": "dungeon", "x": 3589.3, "z": 3712.8, "px": 2660.6, "py": 2681.7, "has_dungeon": true, "has_important": true}, {"id": 2007, "name": "Crypt2", "category": "dungeon", "x": 2754.1, "z": 5051.3, "px": 2518.0, "py": 2910.1, "has_dungeon": true, "has_important": true}, {"id": 2008, "name": "Crypt2", "category": "dungeon", "x": 8127.2, "z": -263.8, "px": 3435.0, "py": 2003.0, "has_dungeon": true, "has_important": true}, {"id": 2009, "name": "Crypt2", "category": "dungeon", "x": -2304.6, "z": -3082.4, "px": 1654.7, "py": 1521.9, "has_dungeon": true, "has_important": true}, {"id": 2010, "name": "Crypt2", "category": "dungeon", "x": -1345.3, "z": -5450.9, "px": 1818.4, "py": 1117.7, "has_dungeon": true, "has_important": true}, {"id": 2011, "name": "Crypt2", "category": "dungeon", "x": 5431.7, "z": -900.4, "px": 2975.0, "py": 1894.3, "has_dungeon": true, "has_important": true}, {"id": 2012, "name": "Crypt2", "category": "dungeon", "x": 2615.5, "z": 5691.7, "px": 2494.4, "py": 3019.4, "has_dungeon": true, "has_important": true}, {"id": 2013, "name": "Crypt2", "category": "dungeon", "x": -2295.1, "z": 708.0, "px": 1656.3, "py": 2168.8, "has_dungeon": true, "has_important": true}, {"id": 2014, "name": "Crypt2", "category": "dungeon", "x": 5767.3, "z": 1542.2, "px": 3032.3, "py": 2311.2, "has_dungeon": true, "has_important": true}, {"id": 2015, "name": "Crypt2", "category": "dungeon", "x": 4422.3, "z": 6725.0, "px": 2802.7, "py": 3195.7, "has_dungeon": true, "has_important": true}, {"id": 2016, "name": "Crypt2", "category": "dungeon", "x": 2113.8, "z": 841.5, "px": 2408.8, "py": 2191.6, "has_dungeon": true, "has_important": true}, {"id": 2017, "name": "Crypt2", "category": "dungeon", "x": 713.6, "z": 4919.8, "px": 2169.8, "py": 2887.6, "has_dungeon": true, "has_important": true}, {"id": 2018, "name": "Crypt2", "category": "dungeon", "x": 2366.9, "z": -3455.3, "px": 2452.0, "py": 1458.3, "has_dungeon": true, "has_important": true}, {"id": 2019, "name": "Crypt2", "category": "dungeon", "x": 1852.0, "z": 7225.8, "px": 2364.1, "py": 3281.2, "has_dungeon": true, "has_important": true}, {"id": 2020, "name": "Crypt2", "category": "dungeon", "x": -5828.9, "z": 1534.9, "px": 1053.2, "py": 2310.0, "has_dungeon": true, "has_important": true}, {"id": 2021, "name": "Crypt2", "category": "dungeon", "x": 1212.3, "z": -5636.2, "px": 2254.9, "py": 1086.1, "has_dungeon": true, "has_important": true}, {"id": 2022, "name": "Crypt2", "category": "dungeon", "x": -5119.0, "z": 704.2, "px": 1174.4, "py": 2168.2, "has_dungeon": true, "has_important": true}, {"id": 2023, "name": "Crypt2", "category": "dungeon", "x": -4614.5, "z": 5449.2, "px": 1260.5, "py": 2978.0, "has_dungeon": true, "has_important": true}, {"id": 2024, "name": "Crypt2", "category": "dungeon", "x": 2300.8, "z": 3847.4, "px": 2440.7, "py": 2704.6, "has_dungeon": true, "has_important": true}, {"id": 2025, "name": "Crypt2", "category": "dungeon", "x": 5246.9, "z": 4990.5, "px": 2943.5, "py": 2899.7, "has_dungeon": true, "has_important": true}, {"id": 2026, "name": "Crypt2", "category": "dungeon", "x": 1224.6, "z": -5429.1, "px": 2257.0, "py": 1121.4, "has_dungeon": true, "has_important": true}, {"id": 2027, "name": "Crypt2", "category": "dungeon", "x": -1987.5, "z": -5560.2, "px": 1708.8, "py": 1099.1, "has_dungeon": true, "has_important": true}, {"id": 2028, "name": "Crypt2", "category": "dungeon", "x": 9860.3, "z": -1604.7, "px": 3730.8, "py": 1774.1, "has_dungeon": true, "has_important": true}, {"id": 2029, "name": "Crypt2", "category": "dungeon", "x": 1796.7, "z": 7414.9, "px": 2354.6, "py": 3313.5, "has_dungeon": true, "has_important": true}, {"id": 2030, "name": "Crypt2", "category": "dungeon", "x": -8439.3, "z": -1721.8, "px": 607.7, "py": 1754.1, "has_dungeon": true, "has_important": true}, {"id": 2031, "name": "Crypt2", "category": "dungeon", "x": -1856.3, "z": -4486.1, "px": 1731.2, "py": 1282.4, "has_dungeon": true, "has_important": true}, {"id": 2032, "name": "Crypt2", "category": "dungeon", "x": -9030.2, "z": 3011.1, "px": 506.8, "py": 2561.9, "has_dungeon": true, "has_important": true}, {"id": 2033, "name": "Crypt2", "category": "dungeon", "x": -5258.4, "z": 649.0, "px": 1150.6, "py": 2158.8, "has_dungeon": true, "has_important": true}, {"id": 2034, "name": "Crypt2", "category": "dungeon", "x": -8262.3, "z": 2627.8, "px": 637.9, "py": 2496.5, "has_dungeon": true, "has_important": true}, {"id": 2035, "name": "Crypt2", "category": "dungeon", "x": -3390.5, "z": 4170.9, "px": 1469.4, "py": 2759.8, "has_dungeon": true, "has_important": true}, {"id": 2036, "name": "Crypt2", "category": "dungeon", "x": -1159.1, "z": -1664.8, "px": 1850.2, "py": 1763.9, "has_dungeon": true, "has_important": true}, {"id": 2037, "name": "Crypt2", "category": "dungeon", "x": 894.0, "z": 320.1, "px": 2200.6, "py": 2102.6, "has_dungeon": true, "has_important": true}, {"id": 2038, "name": "Crypt2", "category": "dungeon", "x": 2247.9, "z": -886.9, "px": 2431.6, "py": 1896.6, "has_dungeon": true, "has_important": true}, {"id": 2039, "name": "Crypt2", "category": "dungeon", "x": -5571.0, "z": -6197.3, "px": 1097.2, "py": 990.3, "has_dungeon": true, "has_important": true}, {"id": 2040, "name": "Crypt2", "category": "dungeon", "x": 3391.7, "z": 3514.9, "px": 2626.9, "py": 2647.9, "has_dungeon": true, "has_important": true}, {"id": 2041, "name": "Crypt2", "category": "dungeon", "x": -2236.4, "z": 4542.5, "px": 1666.3, "py": 2823.3, "has_dungeon": true, "has_important": true}, {"id": 2042, "name": "Crypt2", "category": "dungeon", "x": 3908.4, "z": 3896.3, "px": 2715.0, "py": 2713.0, "has_dungeon": true, "has_important": true}, {"id": 2043, "name": "Crypt2", "category": "dungeon", "x": 7367.4, "z": 3701.7, "px": 3305.4, "py": 2679.8, "has_dungeon": true, "has_important": true}, {"id": 2044, "name": "Crypt2", "category": "dungeon", "x": 1789.0, "z": -6149.7, "px": 2353.3, "py": 998.5, "has_dungeon": true, "has_important": true}, {"id": 2045, "name": "Crypt2", "category": "dungeon", "x": 6264.5, "z": -4358.4, "px": 3117.1, "py": 1304.2, "has_dungeon": true, "has_important": true}, {"id": 2046, "name": "Crypt2", "category": "dungeon", "x": 4928.8, "z": -2241.7, "px": 2889.2, "py": 1665.4, "has_dungeon": true, "has_important": true}, {"id": 2047, "name": "Crypt2", "category": "dungeon", "x": 2934.8, "z": -2054.4, "px": 2548.9, "py": 1697.4, "has_dungeon": true, "has_important": true}, {"id": 2048, "name": "Crypt2", "category": "dungeon", "x": 2177.1, "z": -374.6, "px": 2419.6, "py": 1984.1, "has_dungeon": true, "has_important": true}, {"id": 2049, "name": "Crypt2", "category": "dungeon", "x": 832.6, "z": 3465.7, "px": 2190.1, "py": 2639.5, "has_dungeon": true, "has_important": true}, {"id": 2050, "name": "Crypt2", "category": "dungeon", "x": 1149.0, "z": 5321.2, "px": 2244.1, "py": 2956.2, "has_dungeon": true, "has_important": true}, {"id": 2051, "name": "Crypt2", "category": "dungeon", "x": -5573.1, "z": -5305.9, "px": 1096.9, "py": 1142.5, "has_dungeon": true, "has_important": true}, {"id": 2052, "name": "Crypt2", "category": "dungeon", "x": -5125.7, "z": 183.2, "px": 1173.2, "py": 2079.3, "has_dungeon": true, "has_important": true}, {"id": 2053, "name": "Crypt2", "category": "dungeon", "x": 5060.9, "z": -2298.6, "px": 2911.7, "py": 1655.7, "has_dungeon": true, "has_important": true}, {"id": 2054, "name": "Crypt2", "category": "dungeon", "x": -5577.5, "z": -5061.9, "px": 1096.1, "py": 1184.1, "has_dungeon": true, "has_important": true}, {"id": 2055, "name": "Crypt2", "category": "dungeon", "x": 769.5, "z": 192.1, "px": 2179.3, "py": 2080.8, "has_dungeon": true, "has_important": true}, {"id": 2056, "name": "Crypt2", "category": "dungeon", "x": -8000.9, "z": 393.2, "px": 682.5, "py": 2115.1, "has_dungeon": true, "has_important": true}, {"id": 2057, "name": "Crypt2", "category": "dungeon", "x": -9792.4, "z": -119.9, "px": 376.8, "py": 2027.5, "has_dungeon": true, "has_important": true}, {"id": 2058, "name": "Crypt2", "category": "dungeon", "x": -1343.6, "z": -1865.0, "px": 1818.7, "py": 1729.7, "has_dungeon": true, "has_important": true}, {"id": 2059, "name": "Crypt2", "category": "dungeon", "x": -5058.0, "z": 821.8, "px": 1184.8, "py": 2188.3, "has_dungeon": true, "has_important": true}, {"id": 2060, "name": "Crypt2", "category": "dungeon", "x": 4682.5, "z": -5049.9, "px": 2847.1, "py": 1186.2, "has_dungeon": true, "has_important": true}, {"id": 2061, "name": "Crypt2", "category": "dungeon", "x": -2431.5, "z": 4169.7, "px": 1633.0, "py": 2759.6, "has_dungeon": true, "has_important": true}, {"id": 2062, "name": "Crypt2", "category": "dungeon", "x": -5771.0, "z": -1665.8, "px": 1063.1, "py": 1763.7, "has_dungeon": true, "has_important": true}, {"id": 2063, "name": "Crypt2", "category": "dungeon", "x": 3071.8, "z": 893.7, "px": 2572.3, "py": 2200.5, "has_dungeon": true, "has_important": true}, {"id": 2064, "name": "Crypt2", "category": "dungeon", "x": 6654.9, "z": 3129.8, "px": 3183.8, "py": 2582.2, "has_dungeon": true, "has_important": true}, {"id": 2065, "name": "Crypt2", "category": "dungeon", "x": 2569.6, "z": -4599.8, "px": 2486.5, "py": 1263.0, "has_dungeon": true, "has_important": true}, {"id": 2066, "name": "Crypt2", "category": "dungeon", "x": 5948.5, "z": 1414.3, "px": 3063.2, "py": 2289.4, "has_dungeon": true, "has_important": true}, {"id": 2067, "name": "Crypt2", "category": "dungeon", "x": 8253.5, "z": 198.8, "px": 3456.6, "py": 2081.9, "has_dungeon": true, "has_important": true}, {"id": 2068, "name": "Crypt2", "category": "dungeon", "x": 7799.0, "z": -261.2, "px": 3379.0, "py": 2003.4, "has_dungeon": true, "has_important": true}, {"id": 2069, "name": "Crypt2", "category": "dungeon", "x": -134.7, "z": -905.2, "px": 2025.0, "py": 1893.5, "has_dungeon": true, "has_important": true}, {"id": 2070, "name": "Crypt2", "category": "dungeon", "x": -4618.1, "z": 5752.9, "px": 1259.8, "py": 3029.8, "has_dungeon": true, "has_important": true}, {"id": 2071, "name": "Crypt2", "category": "dungeon", "x": 1793.0, "z": -4478.1, "px": 2354.0, "py": 1283.7, "has_dungeon": true, "has_important": true}, {"id": 2072, "name": "Crypt2", "category": "dungeon", "x": 7928.0, "z": -2627.6, "px": 3401.0, "py": 1599.6, "has_dungeon": true, "has_important": true}, {"id": 2073, "name": "Crypt2", "category": "dungeon", "x": 7548.2, "z": -2743.2, "px": 3336.2, "py": 1579.8, "has_dungeon": true, "has_important": true}, {"id": 2074, "name": "Crypt2", "category": "dungeon", "x": 2555.5, "z": -4361.4, "px": 2484.1, "py": 1303.7, "has_dungeon": true, "has_important": true}, {"id": 2075, "name": "Crypt2", "category": "dungeon", "x": 508.4, "z": 511.0, "px": 2134.8, "py": 2135.2, "has_dungeon": true, "has_important": true}, {"id": 2076, "name": "Crypt2", "category": "dungeon", "x": 1978.5, "z": 1274.9, "px": 2385.7, "py": 2265.6, "has_dungeon": true, "has_important": true}, {"id": 2077, "name": "Crypt2", "category": "dungeon", "x": 2107.7, "z": 1143.7, "px": 2407.7, "py": 2243.2, "has_dungeon": true, "has_important": true}, {"id": 2078, "name": "Crypt2", "category": "dungeon", "x": 8757.2, "z": -1472.7, "px": 3542.6, "py": 1796.7, "has_dungeon": true, "has_important": true}, {"id": 2079, "name": "Crypt2", "category": "dungeon", "x": -5431.8, "z": -6277.2, "px": 1121.0, "py": 976.7, "has_dungeon": true, "has_important": true}, {"id": 2080, "name": "Crypt2", "category": "dungeon", "x": -381.3, "z": -4345.5, "px": 1982.9, "py": 1306.4, "has_dungeon": true, "has_important": true}, {"id": 2081, "name": "Crypt2", "category": "dungeon", "x": -9975.8, "z": -134.2, "px": 345.5, "py": 2025.1, "has_dungeon": true, "has_important": true}, {"id": 2082, "name": "Crypt2", "category": "dungeon", "x": -1272.0, "z": -2183.0, "px": 1830.9, "py": 1675.4, "has_dungeon": true, "has_important": true}, {"id": 2083, "name": "Crypt2", "category": "dungeon", "x": -4296.8, "z": -6398.2, "px": 1314.7, "py": 956.0, "has_dungeon": true, "has_important": true}, {"id": 2084, "name": "Crypt2", "category": "dungeon", "x": -4355.4, "z": 1795.5, "px": 1304.7, "py": 2354.4, "has_dungeon": true, "has_important": true}, {"id": 2085, "name": "Crypt2", "category": "dungeon", "x": 761.4, "z": 4665.8, "px": 2177.9, "py": 2844.3, "has_dungeon": true, "has_important": true}, {"id": 2086, "name": "Crypt2", "category": "dungeon", "x": -2122.5, "z": -3076.8, "px": 1685.8, "py": 1522.9, "has_dungeon": true, "has_important": true}, {"id": 2087, "name": "Crypt2", "category": "dungeon", "x": 2431.1, "z": -1534.2, "px": 2462.9, "py": 1786.2, "has_dungeon": true, "has_important": true}, {"id": 2088, "name": "Crypt2", "category": "dungeon", "x": -2487.2, "z": -6143.3, "px": 1623.5, "py": 999.5, "has_dungeon": true, "has_important": true}, {"id": 2089, "name": "Crypt2", "category": "dungeon", "x": 2170.4, "z": -707.7, "px": 2418.4, "py": 1927.2, "has_dungeon": true, "has_important": true}, {"id": 2090, "name": "Crypt2", "category": "dungeon", "x": -1801.2, "z": -4735.1, "px": 1740.6, "py": 1239.9, "has_dungeon": true, "has_important": true}, {"id": 2091, "name": "Crypt2", "category": "dungeon", "x": -7615.2, "z": -4745.0, "px": 748.3, "py": 1238.2, "has_dungeon": true, "has_important": true}, {"id": 2092, "name": "Crypt2", "category": "dungeon", "x": -6474.9, "z": 3722.6, "px": 943.0, "py": 2683.3, "has_dungeon": true, "has_important": true}, {"id": 2093, "name": "Crypt2", "category": "dungeon", "x": 455.5, "z": 5046.0, "px": 2125.7, "py": 2909.2, "has_dungeon": true, "has_important": true}, {"id": 2094, "name": "Crypt2", "category": "dungeon", "x": 568.7, "z": 4745.9, "px": 2145.1, "py": 2858.0, "has_dungeon": true, "has_important": true}, {"id": 2095, "name": "Crypt2", "category": "dungeon", "x": -1910.0, "z": -4163.4, "px": 1722.0, "py": 1337.4, "has_dungeon": true, "has_important": true}, {"id": 2096, "name": "Crypt2", "category": "dungeon", "x": -4747.0, "z": 5697.4, "px": 1237.8, "py": 3020.4, "has_dungeon": true, "has_important": true}, {"id": 2097, "name": "Crypt2", "category": "dungeon", "x": -4027.5, "z": -2360.5, "px": 1360.6, "py": 1645.1, "has_dungeon": true, "has_important": true}, {"id": 2098, "name": "Crypt2", "category": "dungeon", "x": 2933.5, "z": -4341.4, "px": 2548.7, "py": 1307.1, "has_dungeon": true, "has_important": true}, {"id": 2099, "name": "Crypt2", "category": "dungeon", "x": -7287.1, "z": 2560.3, "px": 804.3, "py": 2485.0, "has_dungeon": true, "has_important": true}, {"id": 2100, "name": "Crypt2", "category": "dungeon", "x": 4230.3, "z": -191.4, "px": 2770.0, "py": 2015.3, "has_dungeon": true, "has_important": true}, {"id": 2101, "name": "Crypt2", "category": "dungeon", "x": -1158.2, "z": -1530.7, "px": 1850.3, "py": 1786.8, "has_dungeon": true, "has_important": true}, {"id": 2102, "name": "Crypt2", "category": "dungeon", "x": -7167.8, "z": 2488.8, "px": 824.7, "py": 2472.8, "has_dungeon": true, "has_important": true}, {"id": 2103, "name": "Crypt2", "category": "dungeon", "x": 3965.6, "z": -382.1, "px": 2724.8, "py": 1982.8, "has_dungeon": true, "has_important": true}, {"id": 2104, "name": "Crypt2", "category": "dungeon", "x": 835.6, "z": 4856.2, "px": 2190.6, "py": 2876.8, "has_dungeon": true, "has_important": true}, {"id": 2105, "name": "Crypt2", "category": "dungeon", "x": 968.4, "z": 5450.5, "px": 2213.3, "py": 2978.2, "has_dungeon": true, "has_important": true}, {"id": 2106, "name": "Crypt2", "category": "dungeon", "x": 3317.8, "z": -2698.3, "px": 2614.2, "py": 1587.5, "has_dungeon": true, "has_important": true}, {"id": 2107, "name": "Crypt2", "category": "dungeon", "x": -9664.7, "z": -321.6, "px": 398.6, "py": 1993.1, "has_dungeon": true, "has_important": true}, {"id": 2108, "name": "Crypt2", "category": "dungeon", "x": 7680.5, "z": -2887.2, "px": 3358.8, "py": 1555.3, "has_dungeon": true, "has_important": true}, {"id": 2109, "name": "Crypt2", "category": "dungeon", "x": 4553.1, "z": -5122.9, "px": 2825.1, "py": 1173.7, "has_dungeon": true, "has_important": true}, {"id": 2110, "name": "Crypt2", "category": "dungeon", "x": -7299.5, "z": -3591.5, "px": 802.2, "py": 1435.1, "has_dungeon": true, "has_important": true}, {"id": 2111, "name": "Crypt2", "category": "dungeon", "x": -4411.1, "z": 1666.0, "px": 1295.2, "py": 2332.3, "has_dungeon": true, "has_important": true}, {"id": 2112, "name": "Crypt2", "category": "dungeon", "x": 5188.7, "z": 5240.8, "px": 2933.5, "py": 2942.4, "has_dungeon": true, "has_important": true}, {"id": 2113, "name": "Crypt2", "category": "dungeon", "x": 502.9, "z": 377.9, "px": 2133.8, "py": 2112.5, "has_dungeon": true, "has_important": true}, {"id": 2114, "name": "Crypt2", "category": "dungeon", "x": 8841.5, "z": 123.6, "px": 3556.9, "py": 2069.1, "has_dungeon": true, "has_important": true}, {"id": 2115, "name": "Crypt2", "category": "dungeon", "x": -5826.5, "z": -329.0, "px": 1053.6, "py": 1991.9, "has_dungeon": true, "has_important": true}, {"id": 2116, "name": "Crypt2", "category": "dungeon", "x": 5760.1, "z": -827.4, "px": 3031.1, "py": 1906.8, "has_dungeon": true, "has_important": true}, {"id": 2117, "name": "Crypt2", "category": "dungeon", "x": -1278.8, "z": -2047.9, "px": 1829.8, "py": 1698.5, "has_dungeon": true, "has_important": true}, {"id": 2118, "name": "Crypt2", "category": "dungeon", "x": 4092.3, "z": 3912.8, "px": 2746.4, "py": 2715.8, "has_dungeon": true, "has_important": true}, {"id": 2119, "name": "Crypt2", "category": "dungeon", "x": 5123.6, "z": 5438.1, "px": 2922.4, "py": 2976.1, "has_dungeon": true, "has_important": true}, {"id": 2120, "name": "Crypt2", "category": "dungeon", "x": 2178.0, "z": 1283.9, "px": 2419.7, "py": 2267.1, "has_dungeon": true, "has_important": true}, {"id": 2121, "name": "Crypt2", "category": "dungeon", "x": -3338.0, "z": 4485.4, "px": 1478.3, "py": 2813.5, "has_dungeon": true, "has_important": true}, {"id": 2122, "name": "Crypt2", "category": "dungeon", "x": 1973.5, "z": 3575.7, "px": 2384.8, "py": 2658.3, "has_dungeon": true, "has_important": true}, {"id": 2123, "name": "Crypt2", "category": "dungeon", "x": -6721.1, "z": 3657.4, "px": 900.9, "py": 2672.2, "has_dungeon": true, "has_important": true}, {"id": 2124, "name": "Crypt2", "category": "dungeon", "x": -3017.7, "z": 4282.1, "px": 1533.0, "py": 2778.8, "has_dungeon": true, "has_important": true}, {"id": 2125, "name": "Crypt2", "category": "dungeon", "x": 2423.3, "z": 3647.1, "px": 2461.6, "py": 2670.4, "has_dungeon": true, "has_important": true}, {"id": 2126, "name": "Crypt2", "category": "dungeon", "x": -5059.6, "z": -1797.8, "px": 1184.5, "py": 1741.2, "has_dungeon": true, "has_important": true}, {"id": 2127, "name": "Crypt2", "category": "dungeon", "x": 3769.9, "z": 3914.8, "px": 2691.4, "py": 2716.1, "has_dungeon": true, "has_important": true}, {"id": 2128, "name": "Crypt2", "category": "dungeon", "x": 5510.8, "z": 456.2, "px": 2988.5, "py": 2125.9, "has_dungeon": true, "has_important": true}, {"id": 2129, "name": "Crypt2", "category": "dungeon", "x": -2120.9, "z": 694.0, "px": 1686.0, "py": 2166.4, "has_dungeon": true, "has_important": true}, {"id": 2130, "name": "Crypt2", "category": "dungeon", "x": -1981.4, "z": -5691.3, "px": 1709.8, "py": 1076.7, "has_dungeon": true, "has_important": true}, {"id": 2131, "name": "Crypt2", "category": "dungeon", "x": 3194.2, "z": -2879.3, "px": 2593.1, "py": 1556.6, "has_dungeon": true, "has_important": true}, {"id": 2132, "name": "Crypt2", "category": "dungeon", "x": 772.8, "z": 4226.6, "px": 2179.9, "py": 2769.3, "has_dungeon": true, "has_important": true}, {"id": 2133, "name": "Crypt2", "category": "dungeon", "x": 3722.8, "z": -252.1, "px": 2683.4, "py": 2005.0, "has_dungeon": true, "has_important": true}, {"id": 2134, "name": "Crypt2", "category": "dungeon", "x": -5754.4, "z": 4490.5, "px": 1065.9, "py": 2814.4, "has_dungeon": true, "has_important": true}, {"id": 2135, "name": "Crypt2", "category": "dungeon", "x": 8263.2, "z": -2115.4, "px": 3458.3, "py": 1687.0, "has_dungeon": true, "has_important": true}, {"id": 2136, "name": "Crypt2", "category": "dungeon", "x": 2248.8, "z": -1352.8, "px": 2431.8, "py": 1817.1, "has_dungeon": true, "has_important": true}, {"id": 2137, "name": "Crypt2", "category": "dungeon", "x": 6136.3, "z": -5898.6, "px": 3095.3, "py": 1041.3, "has_dungeon": true, "has_important": true}, {"id": 2138, "name": "Crypt2", "category": "dungeon", "x": -1608.3, "z": 4729.8, "px": 1773.5, "py": 2855.2, "has_dungeon": true, "has_important": true}, {"id": 2139, "name": "Crypt2", "category": "dungeon", "x": -5886.6, "z": 4606.1, "px": 1043.4, "py": 2834.1, "has_dungeon": true, "has_important": true}, {"id": 2140, "name": "Crypt2", "category": "dungeon", "x": 643.2, "z": 5308.8, "px": 2157.8, "py": 2954.0, "has_dungeon": true, "has_important": true}, {"id": 2141, "name": "Crypt2", "category": "dungeon", "x": -1283.3, "z": -1154.5, "px": 1829.0, "py": 1851.0, "has_dungeon": true, "has_important": true}, {"id": 2142, "name": "Crypt2", "category": "dungeon", "x": -3129.8, "z": 4169.0, "px": 1513.8, "py": 2759.5, "has_dungeon": true, "has_important": true}, {"id": 2143, "name": "Crypt2", "category": "dungeon", "x": 2561.5, "z": 450.1, "px": 2485.2, "py": 2124.8, "has_dungeon": true, "has_important": true}, {"id": 2144, "name": "Crypt2", "category": "dungeon", "x": -7431.3, "z": -1848.0, "px": 779.7, "py": 1732.6, "has_dungeon": true, "has_important": true}, {"id": 2145, "name": "Crypt2", "category": "dungeon", "x": 2491.2, "z": 5062.0, "px": 2473.2, "py": 2911.9, "has_dungeon": true, "has_important": true}, {"id": 2146, "name": "Crypt2", "category": "dungeon", "x": 3189.9, "z": -2681.3, "px": 2592.4, "py": 1590.4, "has_dungeon": true, "has_important": true}, {"id": 2147, "name": "Crypt2", "category": "dungeon", "x": 442.3, "z": 5504.3, "px": 2123.5, "py": 2987.4, "has_dungeon": true, "has_important": true}, {"id": 2148, "name": "Crypt2", "category": "dungeon", "x": 7106.3, "z": 1216.9, "px": 3260.8, "py": 2255.7, "has_dungeon": true, "has_important": true}, {"id": 2149, "name": "Crypt2", "category": "dungeon", "x": 2239.1, "z": 5115.9, "px": 2430.1, "py": 2921.1, "has_dungeon": true, "has_important": true}, {"id": 2150, "name": "Crypt2", "category": "dungeon", "x": -9718.2, "z": 648.1, "px": 389.4, "py": 2158.6, "has_dungeon": true, "has_important": true}, {"id": 2151, "name": "Crypt2", "category": "dungeon", "x": 7352.5, "z": -3254.6, "px": 3302.8, "py": 1492.5, "has_dungeon": true, "has_important": true}, {"id": 2152, "name": "Crypt2", "category": "dungeon", "x": 1094.5, "z": -5131.0, "px": 2234.8, "py": 1172.3, "has_dungeon": true, "has_important": true}, {"id": 2153, "name": "Crypt2", "category": "dungeon", "x": -834.3, "z": -6600.1, "px": 1905.6, "py": 921.6, "has_dungeon": true, "has_important": true}, {"id": 2154, "name": "Crypt2", "category": "dungeon", "x": 2556.2, "z": 5818.7, "px": 2484.3, "py": 3041.1, "has_dungeon": true, "has_important": true}, {"id": 2155, "name": "Crypt2", "category": "dungeon", "x": 2501.3, "z": -3655.8, "px": 2474.9, "py": 1424.1, "has_dungeon": true, "has_important": true}, {"id": 2156, "name": "Crypt2", "category": "dungeon", "x": -4855.4, "z": -3010.4, "px": 1219.3, "py": 1534.2, "has_dungeon": true, "has_important": true}, {"id": 2157, "name": "Crypt2", "category": "dungeon", "x": -2947.2, "z": 4168.6, "px": 1545.0, "py": 2759.4, "has_dungeon": true, "has_important": true}, {"id": 2158, "name": "Crypt2", "category": "dungeon", "x": 8393.8, "z": 2741.1, "px": 3480.5, "py": 2515.8, "has_dungeon": true, "has_important": true}, {"id": 2159, "name": "Crypt2", "category": "dungeon", "x": -3267.2, "z": 4220.0, "px": 1490.4, "py": 2768.2, "has_dungeon": true, "has_important": true}, {"id": 2160, "name": "Crypt2", "category": "dungeon", "x": -5622.7, "z": 4937.3, "px": 1088.4, "py": 2890.6, "has_dungeon": true, "has_important": true}, {"id": 2161, "name": "Crypt2", "category": "dungeon", "x": 3962.9, "z": 7040.8, "px": 2724.3, "py": 3249.6, "has_dungeon": true, "has_important": true}, {"id": 2162, "name": "Crypt2", "category": "dungeon", "x": 7797.5, "z": -3061.1, "px": 3378.8, "py": 1525.6, "has_dungeon": true, "has_important": true}, {"id": 2163, "name": "Crypt2", "category": "dungeon", "x": -8955.2, "z": 3272.0, "px": 519.6, "py": 2606.4, "has_dungeon": true, "has_important": true}, {"id": 2164, "name": "Crypt2", "category": "dungeon", "x": 644.1, "z": -245.8, "px": 2157.9, "py": 2006.1, "has_dungeon": true, "has_important": true}, {"id": 2165, "name": "Crypt2", "category": "dungeon", "x": 8135.7, "z": 895.5, "px": 3436.5, "py": 2200.8, "has_dungeon": true, "has_important": true}, {"id": 2166, "name": "Crypt2", "category": "dungeon", "x": -5567.0, "z": 4730.5, "px": 1097.9, "py": 2855.3, "has_dungeon": true, "has_important": true}, {"id": 2167, "name": "Crypt2", "category": "dungeon", "x": 2951.2, "z": -4922.7, "px": 2551.7, "py": 1207.9, "has_dungeon": true, "has_important": true}, {"id": 2168, "name": "Crypt2", "category": "dungeon", "x": -7164.3, "z": -4734.5, "px": 825.3, "py": 1240.0, "has_dungeon": true, "has_important": true}, {"id": 2169, "name": "Crypt2", "category": "dungeon", "x": -7622.1, "z": 4287.6, "px": 747.2, "py": 2779.8, "has_dungeon": true, "has_important": true}, {"id": 2170, "name": "Crypt2", "category": "dungeon", "x": 7876.9, "z": -2761.7, "px": 3392.3, "py": 1576.7, "has_dungeon": true, "has_important": true}, {"id": 2171, "name": "Crypt2", "category": "dungeon", "x": -5879.9, "z": -5111.8, "px": 1044.5, "py": 1175.6, "has_dungeon": true, "has_important": true}, {"id": 2172, "name": "Crypt2", "category": "dungeon", "x": 7926.2, "z": -3080.1, "px": 3400.7, "py": 1522.3, "has_dungeon": true, "has_important": true}, {"id": 2173, "name": "Crypt2", "category": "dungeon", "x": 1034.1, "z": -5498.0, "px": 2224.5, "py": 1109.7, "has_dungeon": true, "has_important": true}, {"id": 2174, "name": "Crypt2", "category": "dungeon", "x": -4168.3, "z": -6390.4, "px": 1336.6, "py": 957.4, "has_dungeon": true, "has_important": true}, {"id": 2175, "name": "Crypt2", "category": "dungeon", "x": 312.2, "z": 5051.0, "px": 2101.3, "py": 2910.0, "has_dungeon": true, "has_important": true}, {"id": 2176, "name": "Crypt2", "category": "dungeon", "x": -6793.8, "z": 3780.2, "px": 888.5, "py": 2693.2, "has_dungeon": true, "has_important": true}, {"id": 2177, "name": "Crypt2", "category": "dungeon", "x": 582.5, "z": 60.8, "px": 2147.4, "py": 2058.4, "has_dungeon": true, "has_important": true}, {"id": 2178, "name": "Crypt2", "category": "dungeon", "x": 4361.3, "z": -5052.7, "px": 2792.3, "py": 1185.7, "has_dungeon": true, "has_important": true}, {"id": 2179, "name": "Crypt2", "category": "dungeon", "x": -824.1, "z": 4866.1, "px": 1907.4, "py": 2878.5, "has_dungeon": true, "has_important": true}, {"id": 2180, "name": "Crypt2", "category": "dungeon", "x": -6520.2, "z": -4795.6, "px": 935.2, "py": 1229.6, "has_dungeon": true, "has_important": true}, {"id": 2181, "name": "Crypt2", "category": "dungeon", "x": -9341.1, "z": 3254.4, "px": 453.8, "py": 2603.4, "has_dungeon": true, "has_important": true}, {"id": 2182, "name": "Crypt2", "category": "dungeon", "x": -7942.6, "z": 265.7, "px": 692.5, "py": 2093.3, "has_dungeon": true, "has_important": true}, {"id": 2183, "name": "Crypt2", "category": "dungeon", "x": -9269.2, "z": 3385.5, "px": 466.1, "py": 2625.8, "has_dungeon": true, "has_important": true}, {"id": 2184, "name": "Crypt2", "category": "dungeon", "x": -5509.5, "z": -1928.1, "px": 1107.7, "py": 1718.9, "has_dungeon": true, "has_important": true}, {"id": 4108, "name": "Crypt3", "category": "dungeon", "x": 8504.1, "z": -1928.2, "px": 3499.4, "py": 1718.9, "has_dungeon": true, "has_important": true}, {"id": 4109, "name": "Crypt3", "category": "dungeon", "x": 2942.1, "z": 903.8, "px": 2550.1, "py": 2202.2, "has_dungeon": true, "has_important": true}, {"id": 4110, "name": "Crypt3", "category": "dungeon", "x": -3637.8, "z": 4362.6, "px": 1427.1, "py": 2792.6, "has_dungeon": true, "has_important": true}, {"id": 4111, "name": "Crypt3", "category": "dungeon", "x": 5448.4, "z": -1157.3, "px": 2977.9, "py": 1850.5, "has_dungeon": true, "has_important": true}, {"id": 4112, "name": "Crypt3", "category": "dungeon", "x": 513.6, "z": 5365.1, "px": 2135.7, "py": 2963.6, "has_dungeon": true, "has_important": true}, {"id": 4113, "name": "Crypt3", "category": "dungeon", "x": 2939.2, "z": -125.2, "px": 2549.6, "py": 2026.6, "has_dungeon": true, "has_important": true}, {"id": 4114, "name": "Crypt3", "category": "dungeon", "x": -8966.8, "z": 2952.0, "px": 517.7, "py": 2551.8, "has_dungeon": true, "has_important": true}, {"id": 4115, "name": "Crypt3", "category": "dungeon", "x": -5001.8, "z": 777.7, "px": 1194.4, "py": 2180.7, "has_dungeon": true, "has_important": true}, {"id": 4116, "name": "Crypt3", "category": "dungeon", "x": -1589.1, "z": -1726.7, "px": 1776.8, "py": 1753.3, "has_dungeon": true, "has_important": true}, {"id": 4117, "name": "Crypt3", "category": "dungeon", "x": -4740.3, "z": 5570.9, "px": 1239.0, "py": 2998.8, "has_dungeon": true, "has_important": true}, {"id": 4118, "name": "Crypt3", "category": "dungeon", "x": -9206.7, "z": 3189.3, "px": 476.7, "py": 2592.3, "has_dungeon": true, "has_important": true}, {"id": 4119, "name": "Crypt3", "category": "dungeon", "x": 2236.0, "z": -1290.8, "px": 2429.6, "py": 1827.7, "has_dungeon": true, "has_important": true}, {"id": 4120, "name": "Crypt3", "category": "dungeon", "x": -6462.9, "z": -4733.3, "px": 945.0, "py": 1240.2, "has_dungeon": true, "has_important": true}, {"id": 4121, "name": "Crypt3", "category": "dungeon", "x": 3272.7, "z": -4548.3, "px": 2606.5, "py": 1271.8, "has_dungeon": true, "has_important": true}, {"id": 4122, "name": "Crypt3", "category": "dungeon", "x": 3384.6, "z": -2614.5, "px": 2625.6, "py": 1601.8, "has_dungeon": true, "has_important": true}, {"id": 4123, "name": "Crypt3", "category": "dungeon", "x": -7167.3, "z": -1866.0, "px": 824.8, "py": 1729.5, "has_dungeon": true, "has_important": true}, {"id": 4124, "name": "Crypt3", "category": "dungeon", "x": 1994.9, "z": 1141.6, "px": 2388.5, "py": 2242.8, "has_dungeon": true, "has_important": true}, {"id": 4125, "name": "Crypt3", "category": "dungeon", "x": -7167.7, "z": 2685.6, "px": 824.7, "py": 2506.3, "has_dungeon": true, "has_important": true}, {"id": 4126, "name": "Crypt3", "category": "dungeon", "x": 8251.4, "z": -388.6, "px": 3456.2, "py": 1981.7, "has_dungeon": true, "has_important": true}, {"id": 4127, "name": "Crypt3", "category": "dungeon", "x": -9343.8, "z": 2946.3, "px": 453.3, "py": 2550.8, "has_dungeon": true, "has_important": true}, {"id": 4128, "name": "Crypt3", "category": "dungeon", "x": -4281.1, "z": 1733.4, "px": 1317.4, "py": 2343.8, "has_dungeon": true, "has_important": true}, {"id": 4129, "name": "Crypt3", "category": "dungeon", "x": -6527.9, "z": 5445.1, "px": 933.9, "py": 2977.3, "has_dungeon": true, "has_important": true}, {"id": 4130, "name": "Crypt3", "category": "dungeon", "x": 4938.7, "z": -2114.9, "px": 2890.9, "py": 1687.1, "has_dungeon": true, "has_important": true}, {"id": 4131, "name": "Crypt3", "category": "dungeon", "x": -5766.6, "z": -5058.9, "px": 1063.8, "py": 1184.6, "has_dungeon": true, "has_important": true}, {"id": 4132, "name": "Crypt3", "category": "dungeon", "x": 1077.3, "z": -5511.5, "px": 2231.9, "py": 1107.4, "has_dungeon": true, "has_important": true}, {"id": 4133, "name": "Crypt3", "category": "dungeon", "x": 2500.2, "z": 1219.2, "px": 2474.7, "py": 2256.1, "has_dungeon": true, "has_important": true}, {"id": 4134, "name": "Crypt3", "category": "dungeon", "x": 3018.6, "z": -4425.6, "px": 2563.2, "py": 1292.7, "has_dungeon": true, "has_important": true}, {"id": 4135, "name": "Crypt3", "category": "dungeon", "x": 2434.5, "z": 5052.4, "px": 2463.5, "py": 2910.3, "has_dungeon": true, "has_important": true}, {"id": 4136, "name": "Crypt3", "category": "dungeon", "x": 6022.3, "z": -5886.6, "px": 3075.8, "py": 1043.4, "has_dungeon": true, "has_important": true}, {"id": 4137, "name": "Crypt3", "category": "dungeon", "x": 1785.0, "z": -1220.8, "px": 2352.6, "py": 1839.7, "has_dungeon": true, "has_important": true}, {"id": 4138, "name": "Crypt3", "category": "dungeon", "x": -3385.4, "z": 4539.1, "px": 1470.2, "py": 2822.7, "has_dungeon": true, "has_important": true}, {"id": 4139, "name": "Crypt3", "category": "dungeon", "x": -4995.9, "z": 5704.5, "px": 1195.4, "py": 3021.6, "has_dungeon": true, "has_important": true}, {"id": 4140, "name": "Crypt3", "category": "dungeon", "x": 5192.8, "z": -2238.7, "px": 2934.2, "py": 1665.9, "has_dungeon": true, "has_important": true}, {"id": 4141, "name": "Crypt3", "category": "dungeon", "x": -8380.7, "z": -710.6, "px": 617.7, "py": 1926.7, "has_dungeon": true, "has_important": true}, {"id": 4142, "name": "Crypt3", "category": "dungeon", "x": -2429.2, "z": -118.6, "px": 1633.4, "py": 2027.8, "has_dungeon": true, "has_important": true}, {"id": 4143, "name": "Crypt3", "category": "dungeon", "x": 3581.2, "z": 3573.3, "px": 2659.2, "py": 2657.8, "has_dungeon": true, "has_important": true}, {"id": 4144, "name": "Crypt3", "category": "dungeon", "x": 7544.4, "z": -2691.5, "px": 3335.6, "py": 1588.7, "has_dungeon": true, "has_important": true}, {"id": 4145, "name": "Crypt3", "category": "dungeon", "x": 761.7, "z": 262.0, "px": 2178.0, "py": 2092.7, "has_dungeon": true, "has_important": true}, {"id": 4146, "name": "Crypt3", "category": "dungeon", "x": 2298.1, "z": 6275.1, "px": 2440.2, "py": 3119.0, "has_dungeon": true, "has_important": true}, {"id": 4147, "name": "Crypt3", "category": "dungeon", "x": -9157.9, "z": 3333.6, "px": 485.1, "py": 2616.9, "has_dungeon": true, "has_important": true}, {"id": 4148, "name": "Crypt3", "category": "dungeon", "x": 2038.7, "z": -1161.5, "px": 2395.9, "py": 1849.8, "has_dungeon": true, "has_important": true}, {"id": 4149, "name": "Crypt3", "category": "dungeon", "x": 3274.6, "z": -2807.2, "px": 2606.9, "py": 1568.9, "has_dungeon": true, "has_important": true}, {"id": 4150, "name": "Crypt3", "category": "dungeon", "x": -9221.4, "z": 2885.5, "px": 474.2, "py": 2540.5, "has_dungeon": true, "has_important": true}, {"id": 4151, "name": "Crypt3", "category": "dungeon", "x": 831.2, "z": -2237.7, "px": 2189.9, "py": 1666.1, "has_dungeon": true, "has_important": true}, {"id": 4152, "name": "Crypt3", "category": "dungeon", "x": 5113.9, "z": 5255.2, "px": 2920.8, "py": 2944.9, "has_dungeon": true, "has_important": true}, {"id": 4153, "name": "Crypt3", "category": "dungeon", "x": -6601.9, "z": 571.6, "px": 921.3, "py": 2145.6, "has_dungeon": true, "has_important": true}, {"id": 4154, "name": "Crypt3", "category": "dungeon", "x": -1339.3, "z": -1343.6, "px": 1819.4, "py": 1818.7, "has_dungeon": true, "has_important": true}, {"id": 4155, "name": "Crypt3", "category": "dungeon", "x": 5321.9, "z": 4856.1, "px": 2956.3, "py": 2876.8, "has_dungeon": true, "has_important": true}, {"id": 4156, "name": "Crypt3", "category": "dungeon", "x": 6653.1, "z": 4920.0, "px": 3183.5, "py": 2887.7, "has_dungeon": true, "has_important": true}, {"id": 4157, "name": "Crypt3", "category": "dungeon", "x": -9159.0, "z": 3018.4, "px": 484.9, "py": 2563.1, "has_dungeon": true, "has_important": true}, {"id": 4158, "name": "Crypt3", "category": "dungeon", "x": 1157.1, "z": -5302.3, "px": 2245.5, "py": 1143.1, "has_dungeon": true, "has_important": true}, {"id": 4159, "name": "Crypt3", "category": "dungeon", "x": -2231.0, "z": 4486.8, "px": 1667.2, "py": 2813.7, "has_dungeon": true, "has_important": true}, {"id": 4160, "name": "Crypt3", "category": "dungeon", "x": -8074.3, "z": 376.3, "px": 670.0, "py": 2112.2, "has_dungeon": true, "has_important": true}, {"id": 4161, "name": "Crypt3", "category": "dungeon", "x": 6406.0, "z": 3253.2, "px": 3141.3, "py": 2603.2, "has_dungeon": true, "has_important": true}, {"id": 4162, "name": "Crypt3", "category": "dungeon", "x": 7496.6, "z": -4341.8, "px": 3327.4, "py": 1307.0, "has_dungeon": true, "has_important": true}, {"id": 4163, "name": "Crypt3", "category": "dungeon", "x": -1787.8, "z": -4426.4, "px": 1742.9, "py": 1292.6, "has_dungeon": true, "has_important": true}, {"id": 4164, "name": "Crypt3", "category": "dungeon", "x": -7426.8, "z": -4985.2, "px": 780.5, "py": 1197.2, "has_dungeon": true, "has_important": true}, {"id": 4165, "name": "Crypt3", "category": "dungeon", "x": -3838.5, "z": -380.1, "px": 1392.9, "py": 1983.1, "has_dungeon": true, "has_important": true}, {"id": 4166, "name": "Crypt3", "category": "dungeon", "x": 5699.1, "z": 1534.6, "px": 3020.6, "py": 2309.9, "has_dungeon": true, "has_important": true}, {"id": 4167, "name": "Crypt3", "category": "dungeon", "x": 447.7, "z": 375.2, "px": 2124.4, "py": 2112.0, "has_dungeon": true, "has_important": true}, {"id": 4168, "name": "Crypt3", "category": "dungeon", "x": 8825.5, "z": -3830.4, "px": 3554.2, "py": 1394.3, "has_dungeon": true, "has_important": true}, {"id": 4169, "name": "Crypt3", "category": "dungeon", "x": 1218.9, "z": -2236.2, "px": 2256.0, "py": 1666.4, "has_dungeon": true, "has_important": true}, {"id": 4170, "name": "Crypt3", "category": "dungeon", "x": 1734.2, "z": 7416.2, "px": 2344.0, "py": 3313.7, "has_dungeon": true, "has_important": true}, {"id": 4171, "name": "Crypt3", "category": "dungeon", "x": -4031.3, "z": -2490.3, "px": 1360.0, "py": 1623.0, "has_dungeon": true, "has_important": true}, {"id": 4172, "name": "Crypt3", "category": "dungeon", "x": -8070.8, "z": 517.7, "px": 670.6, "py": 2136.4, "has_dungeon": true, "has_important": true}, {"id": 4173, "name": "Crypt3", "category": "dungeon", "x": 4153.2, "z": 3769.4, "px": 2756.8, "py": 2691.3, "has_dungeon": true, "has_important": true}, {"id": 4174, "name": "Crypt3", "category": "dungeon", "x": 1161.6, "z": 5507.9, "px": 2246.2, "py": 2988.0, "has_dungeon": true, "has_important": true}, {"id": 4175, "name": "Crypt3", "category": "dungeon", "x": -1674.2, "z": 4799.8, "px": 1762.3, "py": 2867.2, "has_dungeon": true, "has_important": true}, {"id": 4176, "name": "Crypt3", "category": "dungeon", "x": 899.2, "z": 3392.5, "px": 2201.5, "py": 2627.0, "has_dungeon": true, "has_important": true}, {"id": 4177, "name": "Crypt3", "category": "dungeon", "x": -3203.0, "z": 4417.2, "px": 1501.4, "py": 2801.9, "has_dungeon": true, "has_important": true}, {"id": 4178, "name": "Crypt3", "category": "dungeon", "x": 5053.1, "z": 5444.3, "px": 2910.4, "py": 2977.2, "has_dungeon": true, "has_important": true}, {"id": 4179, "name": "Crypt3", "category": "dungeon", "x": -7242.2, "z": -4937.2, "px": 812.0, "py": 1205.4, "has_dungeon": true, "has_important": true}, {"id": 4180, "name": "Crypt3", "category": "dungeon", "x": 1992.1, "z": -4477.5, "px": 2388.0, "py": 1283.8, "has_dungeon": true, "has_important": true}, {"id": 4181, "name": "Crypt3", "category": "dungeon", "x": 842.8, "z": -3.9, "px": 2191.8, "py": 2047.3, "has_dungeon": true, "has_important": true}, {"id": 4182, "name": "Crypt3", "category": "dungeon", "x": 3142.6, "z": -1276.7, "px": 2584.3, "py": 1830.1, "has_dungeon": true, "has_important": true}, {"id": 4183, "name": "Crypt3", "category": "dungeon", "x": -7557.0, "z": -4745.1, "px": 758.3, "py": 1238.2, "has_dungeon": true, "has_important": true}, {"id": 4184, "name": "Crypt3", "category": "dungeon", "x": -1341.5, "z": -1738.7, "px": 1819.1, "py": 1751.3, "has_dungeon": true, "has_important": true}, {"id": 4185, "name": "Crypt3", "category": "dungeon", "x": -5579.0, "z": -4997.9, "px": 1095.9, "py": 1195.0, "has_dungeon": true, "has_important": true}, {"id": 4186, "name": "Crypt3", "category": "dungeon", "x": 7875.4, "z": -2620.2, "px": 3392.1, "py": 1600.8, "has_dungeon": true, "has_important": true}, {"id": 4187, "name": "Crypt3", "category": "dungeon", "x": 2357.9, "z": -1343.9, "px": 2450.4, "py": 1818.6, "has_dungeon": true, "has_important": true}, {"id": 4188, "name": "Crypt3", "category": "dungeon", "x": 3456.5, "z": -2434.8, "px": 2637.9, "py": 1632.5, "has_dungeon": true, "has_important": true}, {"id": 4189, "name": "Crypt3", "category": "dungeon", "x": 2811.4, "z": -4794.0, "px": 2527.8, "py": 1229.8, "has_dungeon": true, "has_important": true}, {"id": 4190, "name": "Crypt3", "category": "dungeon", "x": 2058.7, "z": 1015.3, "px": 2399.4, "py": 2221.3, "has_dungeon": true, "has_important": true}, {"id": 4191, "name": "Crypt3", "category": "dungeon", "x": 3893.5, "z": 4862.5, "px": 2712.5, "py": 2877.9, "has_dungeon": true, "has_important": true}, {"id": 4192, "name": "Crypt3", "category": "dungeon", "x": 7925.4, "z": -2948.4, "px": 3400.6, "py": 1544.8, "has_dungeon": true, "has_important": true}, {"id": 4193, "name": "Crypt3", "category": "dungeon", "x": 2503.9, "z": -4613.5, "px": 2475.3, "py": 1260.6, "has_dungeon": true, "has_important": true}, {"id": 4194, "name": "Crypt3", "category": "dungeon", "x": 1215.8, "z": -5496.9, "px": 2255.5, "py": 1109.9, "has_dungeon": true, "has_important": true}, {"id": 4195, "name": "Crypt3", "category": "dungeon", "x": 3199.5, "z": -2569.3, "px": 2594.0, "py": 1609.5, "has_dungeon": true, "has_important": true}, {"id": 4196, "name": "Crypt3", "category": "dungeon", "x": 1976.2, "z": -957.5, "px": 2385.3, "py": 1884.6, "has_dungeon": true, "has_important": true}, {"id": 4197, "name": "Crypt3", "category": "dungeon", "x": -8693.4, "z": -457.0, "px": 564.3, "py": 1970.0, "has_dungeon": true, "has_important": true}, {"id": 4198, "name": "Crypt3", "category": "dungeon", "x": 3829.0, "z": 1215.6, "px": 2701.5, "py": 2255.5, "has_dungeon": true, "has_important": true}, {"id": 4199, "name": "Crypt3", "category": "dungeon", "x": 2884.2, "z": -2239.6, "px": 2540.2, "py": 1665.8, "has_dungeon": true, "has_important": true}, {"id": 4200, "name": "Crypt3", "category": "dungeon", "x": 2247.2, "z": 6136.8, "px": 2431.5, "py": 3095.3, "has_dungeon": true, "has_important": true}, {"id": 4201, "name": "Crypt3", "category": "dungeon", "x": 1916.7, "z": 7036.3, "px": 2375.1, "py": 3248.9, "has_dungeon": true, "has_important": true}, {"id": 4202, "name": "Crypt3", "category": "dungeon", "x": -8186.5, "z": 2743.4, "px": 650.8, "py": 2516.2, "has_dungeon": true, "has_important": true}, {"id": 4203, "name": "Crypt3", "category": "dungeon", "x": 2238.2, "z": 1021.5, "px": 2430.0, "py": 2222.3, "has_dungeon": true, "has_important": true}, {"id": 4204, "name": "Crypt3", "category": "dungeon", "x": 3832.5, "z": 3901.3, "px": 2702.1, "py": 2713.8, "has_dungeon": true, "has_important": true}, {"id": 4205, "name": "Crypt3", "category": "dungeon", "x": -7223.4, "z": -4729.8, "px": 815.2, "py": 1240.8, "has_dungeon": true, "has_important": true}, {"id": 4206, "name": "Crypt3", "category": "dungeon", "x": 7049.9, "z": -4285.7, "px": 3251.2, "py": 1316.6, "has_dungeon": true, "has_important": true}, {"id": 4207, "name": "Crypt3", "category": "dungeon", "x": 9654.2, "z": 1404.6, "px": 3695.7, "py": 2287.7, "has_dungeon": true, "has_important": true}, {"id": 4208, "name": "Crypt3", "category": "dungeon", "x": 2693.9, "z": -3652.1, "px": 2507.8, "py": 1424.7, "has_dungeon": true, "has_important": true}, {"id": 4209, "name": "Crypt3", "category": "dungeon", "x": 4603.6, "z": -5193.7, "px": 2833.7, "py": 1161.6, "has_dungeon": true, "has_important": true}, {"id": 4210, "name": "Crypt3", "category": "dungeon", "x": -2503.3, "z": 1718.0, "px": 1620.8, "py": 2341.2, "has_dungeon": true, "has_important": true}, {"id": 4211, "name": "Crypt3", "category": "dungeon", "x": 1342.8, "z": -5442.2, "px": 2277.2, "py": 1119.2, "has_dungeon": true, "has_important": true}, {"id": 4212, "name": "Crypt3", "category": "dungeon", "x": -5377.4, "z": -2041.4, "px": 1130.3, "py": 1699.6, "has_dungeon": true, "has_important": true}, {"id": 4213, "name": "Crypt3", "category": "dungeon", "x": -9607.3, "z": 584.3, "px": 408.4, "py": 2147.7, "has_dungeon": true, "has_important": true}, {"id": 4214, "name": "Crypt3", "category": "dungeon", "x": 8389.3, "z": 330.5, "px": 3479.8, "py": 2104.4, "has_dungeon": true, "has_important": true}, {"id": 4215, "name": "Crypt3", "category": "dungeon", "x": -3967.1, "z": -2613.4, "px": 1370.9, "py": 1602.0, "has_dungeon": true, "has_important": true}, {"id": 4216, "name": "Crypt3", "category": "dungeon", "x": 124.1, "z": -4545.7, "px": 2069.2, "py": 1272.2, "has_dungeon": true, "has_important": true}, {"id": 4217, "name": "Crypt3", "category": "dungeon", "x": 2361.2, "z": 3838.0, "px": 2451.0, "py": 2703.0, "has_dungeon": true, "has_important": true}, {"id": 4218, "name": "Crypt3", "category": "dungeon", "x": -2378.8, "z": 4597.9, "px": 1642.0, "py": 2832.7, "has_dungeon": true, "has_important": true}, {"id": 4219, "name": "Crypt3", "category": "dungeon", "x": -5114.9, "z": 309.7, "px": 1175.1, "py": 2100.9, "has_dungeon": true, "has_important": true}, {"id": 4220, "name": "Crypt3", "category": "dungeon", "x": 8705.3, "z": -3714.4, "px": 3533.7, "py": 1414.1, "has_dungeon": true, "has_important": true}, {"id": 4221, "name": "Crypt3", "category": "dungeon", "x": -4150.3, "z": -117.1, "px": 1339.7, "py": 2028.0, "has_dungeon": true, "has_important": true}, {"id": 4222, "name": "Crypt3", "category": "dungeon", "x": 833.8, "z": -2569.4, "px": 2190.3, "py": 1609.5, "has_dungeon": true, "has_important": true}, {"id": 4223, "name": "Crypt3", "category": "dungeon", "x": 1789.2, "z": 6727.5, "px": 2353.4, "py": 3196.2, "has_dungeon": true, "has_important": true}, {"id": 4224, "name": "Crypt3", "category": "dungeon", "x": 1013.1, "z": 5697.9, "px": 2220.9, "py": 3020.4, "has_dungeon": true, "has_important": true}, {"id": 4225, "name": "Crypt3", "category": "dungeon", "x": -3832.3, "z": -2556.2, "px": 1394.0, "py": 1611.7, "has_dungeon": true, "has_important": true}, {"id": 4226, "name": "Crypt3", "category": "dungeon", "x": 8135.3, "z": -2488.2, "px": 3436.4, "py": 1623.3, "has_dungeon": true, "has_important": true}, {"id": 4227, "name": "Crypt3", "category": "dungeon", "x": 1924.7, "z": -830.3, "px": 2376.5, "py": 1906.3, "has_dungeon": true, "has_important": true}, {"id": 4228, "name": "Crypt3", "category": "dungeon", "x": 2681.5, "z": -4486.6, "px": 2505.6, "py": 1282.3, "has_dungeon": true, "has_important": true}, {"id": 4229, "name": "Crypt3", "category": "dungeon", "x": 907.0, "z": 5564.8, "px": 2202.8, "py": 2997.7, "has_dungeon": true, "has_important": true}, {"id": 4230, "name": "Crypt3", "category": "dungeon", "x": -7741.6, "z": 4344.6, "px": 726.8, "py": 2789.5, "has_dungeon": true, "has_important": true}, {"id": 4231, "name": "Crypt3", "category": "dungeon", "x": 5060.5, "z": -2175.6, "px": 2911.7, "py": 1676.7, "has_dungeon": true, "has_important": true}, {"id": 4232, "name": "Crypt3", "category": "dungeon", "x": 5628.7, "z": -1013.6, "px": 3008.6, "py": 1875.0, "has_dungeon": true, "has_important": true}, {"id": 4233, "name": "Crypt3", "category": "dungeon", "x": -9029.0, "z": 3203.1, "px": 507.1, "py": 2594.7, "has_dungeon": true, "has_important": true}, {"id": 4234, "name": "Crypt3", "category": "dungeon", "x": 2241.6, "z": 5178.2, "px": 2430.6, "py": 2931.7, "has_dungeon": true, "has_important": true}, {"id": 4235, "name": "Crypt3", "category": "dungeon", "x": 4286.9, "z": -838.4, "px": 2779.6, "py": 1904.9, "has_dungeon": true, "has_important": true}, {"id": 4236, "name": "Crypt3", "category": "dungeon", "x": -5256.6, "z": 5576.3, "px": 1150.9, "py": 2999.7, "has_dungeon": true, "has_important": true}, {"id": 4237, "name": "Crypt3", "category": "dungeon", "x": 8254.8, "z": -1992.0, "px": 3456.8, "py": 1708.0, "has_dungeon": true, "has_important": true}, {"id": 4238, "name": "Crypt3", "category": "dungeon", "x": 9473.5, "z": 201.9, "px": 3664.8, "py": 2082.5, "has_dungeon": true, "has_important": true}, {"id": 4239, "name": "Crypt3", "category": "dungeon", "x": 1726.7, "z": -4362.4, "px": 2342.7, "py": 1303.5, "has_dungeon": true, "has_important": true}, {"id": 4240, "name": "Crypt3", "category": "dungeon", "x": -326.5, "z": -4228.1, "px": 1992.3, "py": 1326.4, "has_dungeon": true, "has_important": true}, {"id": 4241, "name": "Crypt3", "category": "dungeon", "x": 6474.4, "z": 4791.9, "px": 3153.0, "py": 2865.8, "has_dungeon": true, "has_important": true}, {"id": 4242, "name": "Crypt3", "category": "dungeon", "x": -2167.4, "z": 702.4, "px": 1678.1, "py": 2167.9, "has_dungeon": true, "has_important": true}, {"id": 4243, "name": "Crypt3", "category": "dungeon", "x": 579.7, "z": 185.9, "px": 2146.9, "py": 2079.7, "has_dungeon": true, "has_important": true}, {"id": 4244, "name": "Crypt3", "category": "dungeon", "x": -5828.6, "z": 4542.6, "px": 1053.3, "py": 2823.3, "has_dungeon": true, "has_important": true}, {"id": 4245, "name": "Crypt3", "category": "dungeon", "x": 8067.7, "z": 323.4, "px": 3424.9, "py": 2103.2, "has_dungeon": true, "has_important": true}, {"id": 4246, "name": "Crypt3", "category": "dungeon", "x": -5832.1, "z": 1476.6, "px": 1052.7, "py": 2300.0, "has_dungeon": true, "has_important": true}, {"id": 4247, "name": "Crypt3", "category": "dungeon", "x": 2744.6, "z": 5254.7, "px": 2516.4, "py": 2944.8, "has_dungeon": true, "has_important": true}, {"id": 4248, "name": "Crypt3", "category": "dungeon", "x": -5761.9, "z": 1610.3, "px": 1064.6, "py": 2322.8, "has_dungeon": true, "has_important": true}, {"id": 4249, "name": "Crypt3", "category": "dungeon", "x": 7430.7, "z": -3206.4, "px": 3316.2, "py": 1500.8, "has_dungeon": true, "has_important": true}, {"id": 4250, "name": "Crypt3", "category": "dungeon", "x": -4867.6, "z": 5757.0, "px": 1217.3, "py": 3030.5, "has_dungeon": true, "has_important": true}, {"id": 4251, "name": "Crypt3", "category": "dungeon", "x": -5947.0, "z": 1400.3, "px": 1033.0, "py": 2287.0, "has_dungeon": true, "has_important": true}, {"id": 4252, "name": "Crypt3", "category": "dungeon", "x": -6152.8, "z": 2296.4, "px": 997.9, "py": 2439.9, "has_dungeon": true, "has_important": true}, {"id": 4253, "name": "Crypt3", "category": "dungeon", "x": -7557.9, "z": -1993.0, "px": 758.1, "py": 1707.9, "has_dungeon": true, "has_important": true}, {"id": 4254, "name": "Crypt3", "category": "dungeon", "x": 2185.2, "z": 1205.6, "px": 2420.9, "py": 2253.8, "has_dungeon": true, "has_important": true}, {"id": 4255, "name": "Crypt3", "category": "dungeon", "x": -7035.7, "z": 2438.1, "px": 847.2, "py": 2464.1, "has_dungeon": true, "has_important": true}, {"id": 4256, "name": "Crypt3", "category": "dungeon", "x": 2299.3, "z": 1538.2, "px": 2440.4, "py": 2310.5, "has_dungeon": true, "has_important": true}, {"id": 4257, "name": "Crypt3", "category": "dungeon", "x": -649.4, "z": -6517.8, "px": 1937.2, "py": 935.6, "has_dungeon": true, "has_important": true}, {"id": 4258, "name": "Crypt3", "category": "dungeon", "x": -1079.5, "z": -5820.3, "px": 1863.8, "py": 1054.7, "has_dungeon": true, "has_important": true}, {"id": 4259, "name": "Crypt3", "category": "dungeon", "x": 7996.1, "z": -2755.7, "px": 3412.7, "py": 1577.7, "has_dungeon": true, "has_important": true}, {"id": 4260, "name": "Crypt3", "category": "dungeon", "x": -444.3, "z": -4292.0, "px": 1972.2, "py": 1315.5, "has_dungeon": true, "has_important": true}, {"id": 4261, "name": "Crypt3", "category": "dungeon", "x": 2549.6, "z": -3462.5, "px": 2483.1, "py": 1457.1, "has_dungeon": true, "has_important": true}, {"id": 4262, "name": "Crypt3", "category": "dungeon", "x": 713.0, "z": 5437.3, "px": 2169.7, "py": 2976.0, "has_dungeon": true, "has_important": true}, {"id": 4263, "name": "Crypt3", "category": "dungeon", "x": -5571.4, "z": 5003.0, "px": 1097.1, "py": 2901.8, "has_dungeon": true, "has_important": true}, {"id": 4264, "name": "Crypt3", "category": "dungeon", "x": 8056.3, "z": -2882.2, "px": 3422.9, "py": 1556.1, "has_dungeon": true, "has_important": true}, {"id": 4265, "name": "Crypt3", "category": "dungeon", "x": 2375.4, "z": -1605.8, "px": 2453.4, "py": 1773.9, "has_dungeon": true, "has_important": true}, {"id": 4266, "name": "Crypt3", "category": "dungeon", "x": 632.8, "z": 5047.1, "px": 2156.0, "py": 2909.4, "has_dungeon": true, "has_important": true}, {"id": 4267, "name": "Crypt3", "category": "dungeon", "x": -3721.4, "z": 6782.4, "px": 1412.9, "py": 3205.5, "has_dungeon": true, "has_important": true}, {"id": 4268, "name": "Crypt3", "category": "dungeon", "x": 3143.0, "z": -2424.5, "px": 2584.4, "py": 1634.2, "has_dungeon": true, "has_important": true}, {"id": 4269, "name": "Crypt3", "category": "dungeon", "x": -1795.6, "z": 3065.6, "px": 1741.6, "py": 2571.2, "has_dungeon": true, "has_important": true}, {"id": 4270, "name": "Crypt3", "category": "dungeon", "x": -3338.7, "z": -2428.5, "px": 1478.2, "py": 1633.5, "has_dungeon": true, "has_important": true}, {"id": 4271, "name": "Crypt3", "category": "dungeon", "x": -6662.5, "z": 5429.6, "px": 910.9, "py": 2974.7, "has_dungeon": true, "has_important": true}, {"id": 4272, "name": "Crypt3", "category": "dungeon", "x": -9543.9, "z": -2625.6, "px": 419.2, "py": 1599.9, "has_dungeon": true, "has_important": true}, {"id": 4273, "name": "Crypt3", "category": "dungeon", "x": 1912.7, "z": 6784.9, "px": 2374.4, "py": 3206.0, "has_dungeon": true, "has_important": true}, {"id": 4274, "name": "Crypt3", "category": "dungeon", "x": -9671.9, "z": -2564.5, "px": 397.3, "py": 1610.3, "has_dungeon": true, "has_important": true}, {"id": 4275, "name": "Crypt3", "category": "dungeon", "x": -4100.0, "z": -2235.3, "px": 1348.3, "py": 1666.5, "has_dungeon": true, "has_important": true}, {"id": 4276, "name": "Crypt3", "category": "dungeon", "x": -1415.9, "z": -2056.9, "px": 1806.4, "py": 1697.0, "has_dungeon": true, "has_important": true}, {"id": 4277, "name": "Crypt3", "category": "dungeon", "x": 710.5, "z": -128.2, "px": 2169.3, "py": 2026.1, "has_dungeon": true, "has_important": true}, {"id": 4278, "name": "Crypt3", "category": "dungeon", "x": 2569.6, "z": 4988.7, "px": 2486.5, "py": 2899.4, "has_dungeon": true, "has_important": true}, {"id": 4279, "name": "Crypt3", "category": "dungeon", "x": 3849.9, "z": 3584.6, "px": 2705.0, "py": 2659.8, "has_dungeon": true, "has_important": true}, {"id": 4280, "name": "Crypt3", "category": "dungeon", "x": -2302.1, "z": -3017.9, "px": 1655.1, "py": 1532.9, "has_dungeon": true, "has_important": true}, {"id": 4281, "name": "Crypt3", "category": "dungeon", "x": -1027.4, "z": -5060.9, "px": 1872.7, "py": 1184.3, "has_dungeon": true, "has_important": true}, {"id": 4282, "name": "Crypt3", "category": "dungeon", "x": -6016.3, "z": 4606.7, "px": 1021.2, "py": 2834.2, "has_dungeon": true, "has_important": true}, {"id": 4283, "name": "Crypt3", "category": "dungeon", "x": -1219.6, "z": -1141.5, "px": 1839.9, "py": 1853.2, "has_dungeon": true, "has_important": true}, {"id": 4284, "name": "Crypt3", "category": "dungeon", "x": 3833.1, "z": 894.9, "px": 2702.2, "py": 2200.7, "has_dungeon": true, "has_important": true}, {"id": 4285, "name": "Crypt3", "category": "dungeon", "x": -9146.8, "z": -1529.4, "px": 486.9, "py": 1787.0, "has_dungeon": true, "has_important": true}, {"id": 4286, "name": "Crypt3", "category": "dungeon", "x": 772.0, "z": 5308.1, "px": 2179.8, "py": 2953.9, "has_dungeon": true, "has_important": true}, {"id": 4287, "name": "Crypt3", "category": "dungeon", "x": -4214.3, "z": -2304.7, "px": 1328.8, "py": 1654.7, "has_dungeon": true, "has_important": true}, {"id": 4288, "name": "Crypt3", "category": "dungeon", "x": 4550.6, "z": -4986.1, "px": 2824.6, "py": 1197.0, "has_dungeon": true, "has_important": true}, {"id": 4289, "name": "Crypt3", "category": "dungeon", "x": 7161.4, "z": -4478.0, "px": 3270.2, "py": 1283.8, "has_dungeon": true, "has_important": true}, {"id": 4290, "name": "Crypt3", "category": "dungeon", "x": -8455.7, "z": -1866.4, "px": 604.9, "py": 1729.5, "has_dungeon": true, "has_important": true}, {"id": 4291, "name": "Crypt3", "category": "dungeon", "x": -9346.4, "z": 3080.4, "px": 452.9, "py": 2573.7, "has_dungeon": true, "has_important": true}, {"id": 4292, "name": "Crypt3", "category": "dungeon", "x": 1531.7, "z": 6326.6, "px": 2309.4, "py": 3127.7, "has_dungeon": true, "has_important": true}, {"id": 4293, "name": "Crypt3", "category": "dungeon", "x": 2745.6, "z": 455.2, "px": 2516.6, "py": 2125.7, "has_dungeon": true, "has_important": true}, {"id": 4294, "name": "Crypt3", "category": "dungeon", "x": -7735.8, "z": -2246.0, "px": 727.8, "py": 1664.7, "has_dungeon": true, "has_important": true}, {"id": 4295, "name": "Crypt3", "category": "dungeon", "x": -8200.0, "z": 2570.1, "px": 648.5, "py": 2486.6, "has_dungeon": true, "has_important": true}, {"id": 4296, "name": "Crypt3", "category": "dungeon", "x": -2248.7, "z": 1737.9, "px": 1664.2, "py": 2344.6, "has_dungeon": true, "has_important": true}, {"id": 4297, "name": "Crypt3", "category": "dungeon", "x": 968.5, "z": 5317.9, "px": 2213.3, "py": 2955.6, "has_dungeon": true, "has_important": true}, {"id": 4298, "name": "Crypt3", "category": "dungeon", "x": 6791.1, "z": 4738.8, "px": 3207.0, "py": 2856.8, "has_dungeon": true, "has_important": true}, {"id": 4299, "name": "Crypt3", "category": "dungeon", "x": 2947.0, "z": 3833.6, "px": 2551.0, "py": 2702.3, "has_dungeon": true, "has_important": true}, {"id": 4300, "name": "Crypt3", "category": "dungeon", "x": 7413.3, "z": -4476.7, "px": 3313.2, "py": 1284.0, "has_dungeon": true, "has_important": true}, {"id": 4301, "name": "Crypt3", "category": "dungeon", "x": 2058.1, "z": -834.7, "px": 2399.2, "py": 1905.5, "has_dungeon": true, "has_important": true}, {"id": 4302, "name": "Crypt3", "category": "dungeon", "x": -3838.8, "z": -251.4, "px": 1392.8, "py": 2005.1, "has_dungeon": true, "has_important": true}, {"id": 4303, "name": "Crypt3", "category": "dungeon", "x": -516.3, "z": 325.0, "px": 1959.9, "py": 2103.5, "has_dungeon": true, "has_important": true}, {"id": 4304, "name": "Crypt3", "category": "dungeon", "x": 9.6, "z": -4220.6, "px": 2049.6, "py": 1327.7, "has_dungeon": true, "has_important": true}, {"id": 4305, "name": "Crypt3", "category": "dungeon", "x": -6663.1, "z": 3777.2, "px": 910.8, "py": 2692.6, "has_dungeon": true, "has_important": true}, {"id": 4306, "name": "Crypt3", "category": "dungeon", "x": 3400.3, "z": -2175.3, "px": 2628.3, "py": 1676.7, "has_dungeon": true, "has_important": true}, {"id": 4307, "name": "Crypt3", "category": "dungeon", "x": 5049.3, "z": 3338.7, "px": 2909.7, "py": 2617.8, "has_dungeon": true, "has_important": true}, {"id": 4308, "name": "Crypt4", "category": "dungeon", "x": 5503.2, "z": -2502.2, "px": 2987.2, "py": 1621.0, "has_dungeon": true, "has_important": true}, {"id": 4309, "name": "Crypt4", "category": "dungeon", "x": -3079.9, "z": 4483.3, "px": 1522.4, "py": 2813.1, "has_dungeon": true, "has_important": true}, {"id": 4310, "name": "Crypt4", "category": "dungeon", "x": -1786.0, "z": 4667.8, "px": 1743.2, "py": 2844.6, "has_dungeon": true, "has_important": true}, {"id": 4311, "name": "Crypt4", "category": "dungeon", "x": 2953.2, "z": -2112.1, "px": 2552.0, "py": 1687.5, "has_dungeon": true, "has_important": true}, {"id": 4312, "name": "Crypt4", "category": "dungeon", "x": 2168.5, "z": -1334.2, "px": 2418.1, "py": 1820.3, "has_dungeon": true, "has_important": true}, {"id": 4313, "name": "Crypt4", "category": "dungeon", "x": 968.2, "z": 5495.6, "px": 2213.2, "py": 2985.9, "has_dungeon": true, "has_important": true}, {"id": 4314, "name": "Crypt4", "category": "dungeon", "x": -6971.4, "z": 2491.2, "px": 858.2, "py": 2473.2, "has_dungeon": true, "has_important": true}, {"id": 4315, "name": "Crypt4", "category": "dungeon", "x": 7231.3, "z": 1270.3, "px": 3282.1, "py": 2264.8, "has_dungeon": true, "has_important": true}, {"id": 4316, "name": "Crypt4", "category": "dungeon", "x": 7689.0, "z": -3067.6, "px": 3360.3, "py": 1524.5, "has_dungeon": true, "has_important": true}, {"id": 4317, "name": "Crypt4", "category": "dungeon", "x": 2230.8, "z": 1097.7, "px": 2428.7, "py": 2235.3, "has_dungeon": true, "has_important": true}, {"id": 4318, "name": "Crypt4", "category": "dungeon", "x": -6719.5, "z": -4808.2, "px": 901.2, "py": 1227.4, "has_dungeon": true, "has_important": true}, {"id": 4319, "name": "Crypt4", "category": "dungeon", "x": 2298.7, "z": -522.1, "px": 2440.3, "py": 1958.9, "has_dungeon": true, "has_important": true}, {"id": 4320, "name": "Crypt4", "category": "dungeon", "x": 1529.8, "z": -6332.0, "px": 2309.1, "py": 967.3, "has_dungeon": true, "has_important": true}, {"id": 4321, "name": "Crypt4", "category": "dungeon", "x": -9207.0, "z": 3143.0, "px": 476.7, "py": 2584.4, "has_dungeon": true, "has_important": true}, {"id": 4322, "name": "Crypt4", "category": "dungeon", "x": -1535.3, "z": -1858.3, "px": 1786.0, "py": 1730.9, "has_dungeon": true, "has_important": true}, {"id": 4323, "name": "Crypt4", "category": "dungeon", "x": -5815.7, "z": 4610.4, "px": 1055.5, "py": 2834.8, "has_dungeon": true, "has_important": true}, {"id": 4324, "name": "Crypt4", "category": "dungeon", "x": 3912.6, "z": -507.5, "px": 2715.8, "py": 1961.4, "has_dungeon": true, "has_important": true}, {"id": 4325, "name": "Crypt4", "category": "dungeon", "x": -8960.4, "z": 3145.3, "px": 518.8, "py": 2584.8, "has_dungeon": true, "has_important": true}, {"id": 4326, "name": "Crypt4", "category": "dungeon", "x": 710.8, "z": 5309.7, "px": 2169.3, "py": 2954.2, "has_dungeon": true, "has_important": true}, {"id": 4327, "name": "Crypt4", "category": "dungeon", "x": 959.4, "z": 5365.3, "px": 2211.7, "py": 2963.7, "has_dungeon": true, "has_important": true}, {"id": 4328, "name": "Crypt4", "category": "dungeon", "x": -3191.1, "z": 6518.2, "px": 1503.4, "py": 3160.4, "has_dungeon": true, "has_important": true}, {"id": 4329, "name": "Crypt4", "category": "dungeon", "x": 7222.2, "z": -4105.2, "px": 3280.6, "py": 1347.4, "has_dungeon": true, "has_important": true}, {"id": 4330, "name": "Crypt4", "category": "dungeon", "x": -7228.8, "z": -1924.0, "px": 814.3, "py": 1719.6, "has_dungeon": true, "has_important": true}, {"id": 4331, "name": "Crypt4", "category": "dungeon", "x": -7416.6, "z": 4353.4, "px": 782.2, "py": 2791.0, "has_dungeon": true, "has_important": true}, {"id": 4332, "name": "Crypt4", "category": "dungeon", "x": -9217.9, "z": -2808.8, "px": 474.8, "py": 1568.6, "has_dungeon": true, "has_important": true}, {"id": 4333, "name": "Crypt4", "category": "dungeon", "x": -7349.3, "z": -1663.5, "px": 793.7, "py": 1764.1, "has_dungeon": true, "has_important": true}, {"id": 4334, "name": "Crypt4", "category": "dungeon", "x": -4345.2, "z": -6326.3, "px": 1306.4, "py": 968.3, "has_dungeon": true, "has_important": true}, {"id": 4335, "name": "Crypt4", "category": "dungeon", "x": -2042.7, "z": -5630.1, "px": 1699.4, "py": 1087.1, "has_dungeon": true, "has_important": true}, {"id": 4336, "name": "Crypt4", "category": "dungeon", "x": 2820.0, "z": -4873.7, "px": 2529.3, "py": 1216.2, "has_dungeon": true, "has_important": true}, {"id": 4337, "name": "Crypt4", "category": "dungeon", "x": -8387.1, "z": -1974.8, "px": 616.6, "py": 1711.0, "has_dungeon": true, "has_important": true}, {"id": 4338, "name": "Crypt4", "category": "dungeon", "x": -1467.5, "z": -1670.1, "px": 1797.5, "py": 1763.0, "has_dungeon": true, "has_important": true}, {"id": 4339, "name": "Crypt4", "category": "dungeon", "x": 566.2, "z": 5367.6, "px": 2144.6, "py": 2964.1, "has_dungeon": true, "has_important": true}, {"id": 4340, "name": "Crypt4", "category": "dungeon", "x": -5185.9, "z": 330.5, "px": 1162.9, "py": 2104.4, "has_dungeon": true, "has_important": true}, {"id": 4341, "name": "Crypt4", "category": "dungeon", "x": 3324.6, "z": -2746.9, "px": 2615.4, "py": 1579.2, "has_dungeon": true, "has_important": true}, {"id": 4342, "name": "Crypt4", "category": "dungeon", "x": -8323.5, "z": -1738.5, "px": 627.5, "py": 1751.3, "has_dungeon": true, "has_important": true}, {"id": 4343, "name": "Crypt4", "category": "dungeon", "x": 3840.5, "z": 1278.9, "px": 2703.4, "py": 2266.3, "has_dungeon": true, "has_important": true}, {"id": 4344, "name": "Crypt4", "category": "dungeon", "x": -9541.9, "z": -313.4, "px": 419.5, "py": 1994.5, "has_dungeon": true, "has_important": true}, {"id": 4345, "name": "Crypt4", "category": "dungeon", "x": 2618.7, "z": -3525.7, "px": 2494.9, "py": 1446.3, "has_dungeon": true, "has_important": true}, {"id": 4346, "name": "Crypt4", "category": "dungeon", "x": 5045.5, "z": 2760.5, "px": 2909.1, "py": 2519.1, "has_dungeon": true, "has_important": true}, {"id": 4347, "name": "Crypt4", "category": "dungeon", "x": 2690.0, "z": -4345.6, "px": 2507.1, "py": 1306.4, "has_dungeon": true, "has_important": true}, {"id": 4348, "name": "Crypt4", "category": "dungeon", "x": 7751.4, "z": -2879.9, "px": 3370.9, "py": 1556.5, "has_dungeon": true, "has_important": true}, {"id": 4349, "name": "Crypt4", "category": "dungeon", "x": 3638.2, "z": 3256.7, "px": 2668.9, "py": 2603.8, "has_dungeon": true, "has_important": true}, {"id": 4350, "name": "Crypt4", "category": "dungeon", "x": -5947.4, "z": 1598.8, "px": 1033.0, "py": 2320.9, "has_dungeon": true, "has_important": true}, {"id": 4351, "name": "Crypt4", "category": "dungeon", "x": -6072.7, "z": 1407.4, "px": 1011.6, "py": 2288.2, "has_dungeon": true, "has_important": true}, {"id": 4352, "name": "Crypt4", "category": "dungeon", "x": 2186.2, "z": 3782.1, "px": 2421.1, "py": 2693.5, "has_dungeon": true, "has_important": true}, {"id": 4353, "name": "Crypt4", "category": "dungeon", "x": -3525.6, "z": 6778.0, "px": 1446.3, "py": 3204.8, "has_dungeon": true, "has_important": true}, {"id": 4354, "name": "Crypt4", "category": "dungeon", "x": -253.6, "z": -4213.8, "px": 2004.7, "py": 1328.8, "has_dungeon": true, "has_important": true}, {"id": 4355, "name": "Crypt4", "category": "dungeon", "x": 2367.4, "z": 1284.3, "px": 2452.0, "py": 2267.2, "has_dungeon": true, "has_important": true}, {"id": 4356, "name": "Crypt4", "category": "dungeon", "x": 4296.6, "z": 6795.0, "px": 2781.3, "py": 3207.7, "has_dungeon": true, "has_important": true}, {"id": 4357, "name": "Crypt4", "category": "dungeon", "x": 7558.7, "z": -2818.9, "px": 3338.0, "py": 1566.9, "has_dungeon": true, "has_important": true}, {"id": 4358, "name": "Crypt4", "category": "dungeon", "x": 8125.6, "z": -196.7, "px": 3434.8, "py": 2014.4, "has_dungeon": true, "has_important": true}, {"id": 4359, "name": "Crypt4", "category": "dungeon", "x": -568.3, "z": 512.2, "px": 1951.0, "py": 2135.4, "has_dungeon": true, "has_important": true}, {"id": 4360, "name": "Crypt4", "category": "dungeon", "x": -3975.9, "z": -574.4, "px": 1369.4, "py": 1950.0, "has_dungeon": true, "has_important": true}, {"id": 4361, "name": "Crypt4", "category": "dungeon", "x": -6843.9, "z": 501.8, "px": 880.0, "py": 2133.6, "has_dungeon": true, "has_important": true}, {"id": 4362, "name": "Crypt4", "category": "dungeon", "x": 3191.6, "z": -2309.6, "px": 2592.7, "py": 1653.8, "has_dungeon": true, "has_important": true}, {"id": 4363, "name": "Crypt4", "category": "dungeon", "x": 8010.6, "z": 188.7, "px": 3415.1, "py": 2080.2, "has_dungeon": true, "has_important": true}, {"id": 4364, "name": "Crypt4", "category": "dungeon", "x": -6595.0, "z": 5437.6, "px": 922.5, "py": 2976.0, "has_dungeon": true, "has_important": true}, {"id": 4365, "name": "Crypt4", "category": "dungeon", "x": 1276.2, "z": 5630.3, "px": 2265.8, "py": 3008.9, "has_dungeon": true, "has_important": true}, {"id": 4366, "name": "Crypt4", "category": "dungeon", "x": 1930.9, "z": 1147.1, "px": 2377.5, "py": 2243.8, "has_dungeon": true, "has_important": true}, {"id": 4367, "name": "Crypt4", "category": "dungeon", "x": -1032.8, "z": 377.8, "px": 1871.7, "py": 2112.5, "has_dungeon": true, "has_important": true}, {"id": 4368, "name": "Crypt4", "category": "dungeon", "x": -9275.3, "z": 3326.7, "px": 465.0, "py": 2615.8, "has_dungeon": true, "has_important": true}, {"id": 4369, "name": "Crypt4", "category": "dungeon", "x": 2044.7, "z": -1077.5, "px": 2397.0, "py": 1864.1, "has_dungeon": true, "has_important": true}, {"id": 4370, "name": "Crypt4", "category": "dungeon", "x": 3528.1, "z": 3652.7, "px": 2650.1, "py": 2671.4, "has_dungeon": true, "has_important": true}, {"id": 4371, "name": "Crypt4", "category": "dungeon", "x": 2562.5, "z": -4486.3, "px": 2485.3, "py": 1282.3, "has_dungeon": true, "has_important": true}, {"id": 4372, "name": "Crypt4", "category": "dungeon", "x": 5112.1, "z": 3129.1, "px": 2920.5, "py": 2582.0, "has_dungeon": true, "has_important": true}, {"id": 4373, "name": "Crypt4", "category": "dungeon", "x": 7289.3, "z": -3133.3, "px": 3292.0, "py": 1513.3, "has_dungeon": true, "has_important": true}, {"id": 4374, "name": "Crypt4", "category": "dungeon", "x": 506.0, "z": 4674.8, "px": 2134.4, "py": 2845.8, "has_dungeon": true, "has_important": true}, {"id": 4375, "name": "Crypt4", "category": "dungeon", "x": -8056.8, "z": 2757.5, "px": 673.0, "py": 2518.6, "has_dungeon": true, "has_important": true}, {"id": 4376, "name": "Crypt4", "category": "dungeon", "x": 2488.8, "z": -1352.3, "px": 2472.8, "py": 1817.2, "has_dungeon": true, "has_important": true}, {"id": 4377, "name": "Crypt4", "category": "dungeon", "x": 4170.2, "z": -1086.8, "px": 2759.7, "py": 1862.5, "has_dungeon": true, "has_important": true}, {"id": 4378, "name": "Crypt4", "category": "dungeon", "x": -1334.3, "z": -1916.0, "px": 1820.3, "py": 1721.0, "has_dungeon": true, "has_important": true}, {"id": 4379, "name": "Crypt4", "category": "dungeon", "x": 2684.9, "z": -3701.4, "px": 2506.2, "py": 1416.3, "has_dungeon": true, "has_important": true}, {"id": 4380, "name": "Crypt4", "category": "dungeon", "x": 5123.8, "z": 5194.0, "px": 2922.5, "py": 2934.4, "has_dungeon": true, "has_important": true}, {"id": 4381, "name": "Crypt4", "category": "dungeon", "x": -8694.4, "z": -828.0, "px": 564.2, "py": 1906.7, "has_dungeon": true, "has_important": true}, {"id": 4382, "name": "Crypt4", "category": "dungeon", "x": -7489.9, "z": -4736.3, "px": 769.7, "py": 1239.7, "has_dungeon": true, "has_important": true}, {"id": 4383, "name": "Crypt4", "category": "dungeon", "x": -1781.4, "z": -4545.8, "px": 1744.0, "py": 1272.2, "has_dungeon": true, "has_important": true}, {"id": 4384, "name": "Crypt4", "category": "dungeon", "x": 1482.1, "z": 6272.2, "px": 2300.9, "py": 3118.5, "has_dungeon": true, "has_important": true}, {"id": 4385, "name": "Crypt4", "category": "dungeon", "x": 2042.6, "z": 3914.5, "px": 2396.6, "py": 2716.1, "has_dungeon": true, "has_important": true}, {"id": 4386, "name": "Crypt4", "category": "dungeon", "x": 8323.7, "z": 195.3, "px": 3468.6, "py": 2081.3, "has_dungeon": true, "has_important": true}, {"id": 4387, "name": "Crypt4", "category": "dungeon", "x": 5190.4, "z": 5056.9, "px": 2933.8, "py": 2911.0, "has_dungeon": true, "has_important": true}, {"id": 4388, "name": "Crypt4", "category": "dungeon", "x": 1660.3, "z": -4422.1, "px": 2331.4, "py": 1293.3, "has_dungeon": true, "has_important": true}, {"id": 4389, "name": "Crypt4", "category": "dungeon", "x": 7416.7, "z": 1096.8, "px": 3313.8, "py": 2235.2, "has_dungeon": true, "has_important": true}, {"id": 4390, "name": "Crypt4", "category": "dungeon", "x": 2373.4, "z": 3769.6, "px": 2453.1, "py": 2691.3, "has_dungeon": true, "has_important": true}, {"id": 4391, "name": "Crypt4", "category": "dungeon", "x": -6849.0, "z": 3786.3, "px": 879.1, "py": 2694.2, "has_dungeon": true, "has_important": true}, {"id": 4392, "name": "Crypt4", "category": "dungeon", "x": 2299.3, "z": 5187.5, "px": 2440.4, "py": 2933.3, "has_dungeon": true, "has_important": true}, {"id": 4393, "name": "Crypt4", "category": "dungeon", "x": -7365.5, "z": -1859.4, "px": 791.0, "py": 1730.7, "has_dungeon": true, "has_important": true}, {"id": 4394, "name": "Crypt4", "category": "dungeon", "x": -8376.6, "z": 636.4, "px": 618.4, "py": 2156.6, "has_dungeon": true, "has_important": true}, {"id": 4395, "name": "Crypt4", "category": "dungeon", "x": 506.6, "z": 5049.8, "px": 2134.5, "py": 2909.8, "has_dungeon": true, "has_important": true}, {"id": 4396, "name": "Crypt4", "category": "dungeon", "x": 889.9, "z": 3450.9, "px": 2199.9, "py": 2637.0, "has_dungeon": true, "has_important": true}, {"id": 4397, "name": "Crypt4", "category": "dungeon", "x": 7352.3, "z": -3330.0, "px": 3302.8, "py": 1479.7, "has_dungeon": true, "has_important": true}, {"id": 4398, "name": "Crypt4", "category": "dungeon", "x": 5256.1, "z": -2236.2, "px": 2945.0, "py": 1666.4, "has_dungeon": true, "has_important": true}, {"id": 4399, "name": "Crypt4", "category": "dungeon", "x": -9589.9, "z": -183.4, "px": 411.3, "py": 2016.7, "has_dungeon": true, "has_important": true}, {"id": 4400, "name": "Crypt4", "category": "dungeon", "x": 3450.0, "z": -2686.0, "px": 2636.8, "py": 1589.6, "has_dungeon": true, "has_important": true}, {"id": 4401, "name": "Crypt4", "category": "dungeon", "x": 2939.6, "z": -257.2, "px": 2549.7, "py": 2004.1, "has_dungeon": true, "has_important": true}, {"id": 4402, "name": "Crypt4", "category": "dungeon", "x": 1781.0, "z": 7356.1, "px": 2352.0, "py": 3303.4, "has_dungeon": true, "has_important": true}, {"id": 4403, "name": "Crypt4", "category": "dungeon", "x": -5239.2, "z": 764.2, "px": 1153.8, "py": 2178.4, "has_dungeon": true, "has_important": true}, {"id": 4404, "name": "Crypt4", "category": "dungeon", "x": 1985.8, "z": -6334.0, "px": 2386.9, "py": 967.0, "has_dungeon": true, "has_important": true}, {"id": 4405, "name": "Crypt4", "category": "dungeon", "x": -6005.8, "z": 4800.9, "px": 1023.0, "py": 2867.4, "has_dungeon": true, "has_important": true}, {"id": 4406, "name": "Crypt4", "category": "dungeon", "x": -6645.1, "z": 3574.4, "px": 913.9, "py": 2658.0, "has_dungeon": true, "has_important": true}, {"id": 4407, "name": "Crypt4", "category": "dungeon", "x": 9546.9, "z": 63.9, "px": 3677.3, "py": 2058.9, "has_dungeon": true, "has_important": true}, {"id": 4408, "name": "Crypt4", "category": "dungeon", "x": -68.7, "z": -4600.0, "px": 2036.3, "py": 1262.9, "has_dungeon": true, "has_important": true}, {"id": 4409, "name": "Crypt4", "category": "dungeon", "x": -4025.2, "z": -322.6, "px": 1361.0, "py": 1992.9, "has_dungeon": true, "has_important": true}, {"id": 4410, "name": "Crypt4", "category": "dungeon", "x": 3274.8, "z": -4.6, "px": 2606.9, "py": 2047.2, "has_dungeon": true, "has_important": true}, {"id": 4411, "name": "Crypt4", "category": "dungeon", "x": 8574.1, "z": -3708.9, "px": 3511.3, "py": 1415.0, "has_dungeon": true, "has_important": true}, {"id": 4412, "name": "Crypt4", "category": "dungeon", "x": -1215.7, "z": -1221.1, "px": 1840.5, "py": 1839.6, "has_dungeon": true, "has_important": true}, {"id": 4413, "name": "Crypt4", "category": "dungeon", "x": -1670.7, "z": -4227.6, "px": 1762.9, "py": 1326.5, "has_dungeon": true, "has_important": true}, {"id": 4414, "name": "Crypt4", "category": "dungeon", "x": -1983.0, "z": -831.7, "px": 1709.6, "py": 1906.1, "has_dungeon": true, "has_important": true}, {"id": 4415, "name": "Crypt4", "category": "dungeon", "x": -5956.5, "z": -70.0, "px": 1031.4, "py": 2036.1, "has_dungeon": true, "has_important": true}, {"id": 4416, "name": "Crypt4", "category": "dungeon", "x": -3705.2, "z": 7113.6, "px": 1415.6, "py": 3262.1, "has_dungeon": true, "has_important": true}, {"id": 4417, "name": "Crypt4", "category": "dungeon", "x": 7298.0, "z": -4547.5, "px": 3293.5, "py": 1271.9, "has_dungeon": true, "has_important": true}, {"id": 4418, "name": "Crypt4", "category": "dungeon", "x": 3208.8, "z": -2630.5, "px": 2595.6, "py": 1599.1, "has_dungeon": true, "has_important": true}, {"id": 4419, "name": "Crypt4", "category": "dungeon", "x": 4991.3, "z": -2122.8, "px": 2899.8, "py": 1685.7, "has_dungeon": true, "has_important": true}, {"id": 4420, "name": "Crypt4", "category": "dungeon", "x": 2427.3, "z": -1475.0, "px": 2462.3, "py": 1796.3, "has_dungeon": true, "has_important": true}, {"id": 4421, "name": "Crypt4", "category": "dungeon", "x": 5510.4, "z": -969.9, "px": 2988.4, "py": 1882.5, "has_dungeon": true, "has_important": true}, {"id": 4422, "name": "Crypt4", "category": "dungeon", "x": -1219.5, "z": -1606.9, "px": 1839.9, "py": 1773.8, "has_dungeon": true, "has_important": true}, {"id": 4423, "name": "Crypt4", "category": "dungeon", "x": -5955.5, "z": 4667.7, "px": 1031.6, "py": 2844.6, "has_dungeon": true, "has_important": true}, {"id": 4424, "name": "Crypt4", "category": "dungeon", "x": 7353.4, "z": -4420.3, "px": 3303.0, "py": 1293.6, "has_dungeon": true, "has_important": true}, {"id": 4425, "name": "Crypt4", "category": "dungeon", "x": 2552.7, "z": 258.9, "px": 2483.7, "py": 2092.2, "has_dungeon": true, "has_important": true}, {"id": 4426, "name": "Crypt4", "category": "dungeon", "x": 8777.6, "z": -1335.1, "px": 3546.0, "py": 1820.1, "has_dungeon": true, "has_important": true}, {"id": 4427, "name": "Crypt4", "category": "dungeon", "x": 1735.8, "z": -1148.4, "px": 2344.2, "py": 1852.0, "has_dungeon": true, "has_important": true}, {"id": 4428, "name": "Crypt4", "category": "dungeon", "x": -59.6, "z": -1013.7, "px": 2037.8, "py": 1875.0, "has_dungeon": true, "has_important": true}, {"id": 4429, "name": "Crypt4", "category": "dungeon", "x": 5067.0, "z": 377.9, "px": 2912.8, "py": 2112.5, "has_dungeon": true, "has_important": true}, {"id": 4430, "name": "Crypt4", "category": "dungeon", "x": -4101.4, "z": -2312.7, "px": 1348.0, "py": 1653.3, "has_dungeon": true, "has_important": true}, {"id": 4431, "name": "Crypt4", "category": "dungeon", "x": 5367.0, "z": 522.6, "px": 2964.0, "py": 2137.2, "has_dungeon": true, "has_important": true}, {"id": 4432, "name": "Crypt4", "category": "dungeon", "x": -890.1, "z": -5825.4, "px": 1896.1, "py": 1053.8, "has_dungeon": true, "has_important": true}, {"id": 4433, "name": "Crypt4", "category": "dungeon", "x": 6602.0, "z": 4795.5, "px": 3174.7, "py": 2866.4, "has_dungeon": true, "has_important": true}, {"id": 4434, "name": "Crypt4", "category": "dungeon", "x": -9078.9, "z": 3462.7, "px": 498.5, "py": 2639.0, "has_dungeon": true, "has_important": true}, {"id": 4435, "name": "Crypt4", "category": "dungeon", "x": 4406.6, "z": 6657.9, "px": 2800.1, "py": 3184.3, "has_dungeon": true, "has_important": true}, {"id": 4436, "name": "Crypt4", "category": "dungeon", "x": 1152.8, "z": 5443.9, "px": 2244.7, "py": 2977.1, "has_dungeon": true, "has_important": true}, {"id": 4437, "name": "Crypt4", "category": "dungeon", "x": 6726.1, "z": 4922.7, "px": 3195.9, "py": 2888.1, "has_dungeon": true, "has_important": true}, {"id": 4438, "name": "Crypt4", "category": "dungeon", "x": -7037.2, "z": 246.7, "px": 847.0, "py": 2090.1, "has_dungeon": true, "has_important": true}, {"id": 4439, "name": "Crypt4", "category": "dungeon", "x": 5825.4, "z": -4736.0, "px": 3042.2, "py": 1239.7, "has_dungeon": true, "has_important": true}, {"id": 4440, "name": "Crypt4", "category": "dungeon", "x": 4425.2, "z": 6792.0, "px": 2803.2, "py": 3207.2, "has_dungeon": true, "has_important": true}, {"id": 4441, "name": "Crypt4", "category": "dungeon", "x": -192.8, "z": 572.5, "px": 2015.1, "py": 2145.7, "has_dungeon": true, "has_important": true}, {"id": 4442, "name": "Crypt4", "category": "dungeon", "x": 2816.5, "z": -136.0, "px": 2528.7, "py": 2024.8, "has_dungeon": true, "has_important": true}, {"id": 4443, "name": "Crypt4", "category": "dungeon", "x": 1025.3, "z": -5563.5, "px": 2223.0, "py": 1098.5, "has_dungeon": true, "has_important": true}, {"id": 4444, "name": "Crypt4", "category": "dungeon", "x": -9150.6, "z": 2822.4, "px": 486.3, "py": 2529.7, "has_dungeon": true, "has_important": true}, {"id": 4445, "name": "Crypt4", "category": "dungeon", "x": 1988.0, "z": 1414.1, "px": 2387.3, "py": 2289.3, "has_dungeon": true, "has_important": true}, {"id": 4446, "name": "Crypt4", "category": "dungeon", "x": 2169.4, "z": 3962.5, "px": 2418.2, "py": 2724.3, "has_dungeon": true, "has_important": true}, {"id": 4447, "name": "Crypt4", "category": "dungeon", "x": 6773.8, "z": 4795.9, "px": 3204.1, "py": 2866.5, "has_dungeon": true, "has_important": true}, {"id": 4448, "name": "Crypt4", "category": "dungeon", "x": -6717.4, "z": 5561.0, "px": 901.6, "py": 2997.1, "has_dungeon": true, "has_important": true}, {"id": 4449, "name": "Crypt4", "category": "dungeon", "x": -9086.4, "z": 3208.4, "px": 497.3, "py": 2595.6, "has_dungeon": true, "has_important": true}, {"id": 4450, "name": "Crypt4", "category": "dungeon", "x": -8954.4, "z": 3016.4, "px": 519.8, "py": 2562.8, "has_dungeon": true, "has_important": true}, {"id": 4451, "name": "Crypt4", "category": "dungeon", "x": -3511.8, "z": 4799.5, "px": 1448.7, "py": 2867.1, "has_dungeon": true, "has_important": true}, {"id": 4452, "name": "Crypt4", "category": "dungeon", "x": -5703.6, "z": 4931.1, "px": 1074.6, "py": 2889.6, "has_dungeon": true, "has_important": true}, {"id": 4453, "name": "Crypt4", "category": "dungeon", "x": -3274.2, "z": 4359.9, "px": 1489.2, "py": 2792.1, "has_dungeon": true, "has_important": true}, {"id": 4454, "name": "Crypt4", "category": "dungeon", "x": 9791.7, "z": -1482.1, "px": 3719.1, "py": 1795.1, "has_dungeon": true, "has_important": true}, {"id": 4455, "name": "Crypt4", "category": "dungeon", "x": 9526.9, "z": 1407.6, "px": 3673.9, "py": 2288.2, "has_dungeon": true, "has_important": true}, {"id": 4456, "name": "Crypt4", "category": "dungeon", "x": 7751.7, "z": -2687.8, "px": 3371.0, "py": 1589.3, "has_dungeon": true, "has_important": true}, {"id": 4457, "name": "Crypt4", "category": "dungeon", "x": -4149.9, "z": -198.9, "px": 1339.8, "py": 2014.1, "has_dungeon": true, "has_important": true}, {"id": 4458, "name": "Crypt4", "category": "dungeon", "x": -8120.2, "z": 2564.7, "px": 662.2, "py": 2485.7, "has_dungeon": true, "has_important": true}, {"id": 4459, "name": "Crypt4", "category": "dungeon", "x": 584.4, "z": 4475.8, "px": 2147.7, "py": 2811.9, "has_dungeon": true, "has_important": true}, {"id": 4460, "name": "Crypt4", "category": "dungeon", "x": -7484.5, "z": -4990.2, "px": 770.6, "py": 1196.3, "has_dungeon": true, "has_important": true}, {"id": 4461, "name": "Crypt4", "category": "dungeon", "x": 8072.0, "z": -2489.1, "px": 3425.6, "py": 1623.2, "has_dungeon": true, "has_important": true}, {"id": 4462, "name": "Crypt4", "category": "dungeon", "x": 2112.5, "z": -4356.6, "px": 2408.5, "py": 1304.5, "has_dungeon": true, "has_important": true}, {"id": 4463, "name": "Crypt4", "category": "dungeon", "x": 648.8, "z": 309.0, "px": 2158.7, "py": 2100.7, "has_dungeon": true, "has_important": true}, {"id": 4464, "name": "Crypt4", "category": "dungeon", "x": 3768.6, "z": -386.4, "px": 2691.2, "py": 1982.1, "has_dungeon": true, "has_important": true}, {"id": 4465, "name": "Crypt4", "category": "dungeon", "x": -584.0, "z": -6463.7, "px": 1948.3, "py": 944.9, "has_dungeon": true, "has_important": true}, {"id": 4466, "name": "Crypt4", "category": "dungeon", "x": 1162.4, "z": -2230.1, "px": 2246.4, "py": 1667.4, "has_dungeon": true, "has_important": true}, {"id": 4467, "name": "Crypt4", "category": "dungeon", "x": 3511.5, "z": 3513.7, "px": 2647.3, "py": 2647.7, "has_dungeon": true, "has_important": true}, {"id": 4468, "name": "Crypt4", "category": "dungeon", "x": 3901.0, "z": 1013.6, "px": 2713.8, "py": 2221.0, "has_dungeon": true, "has_important": true}, {"id": 4469, "name": "Crypt4", "category": "dungeon", "x": 4477.9, "z": -5048.3, "px": 2812.2, "py": 1186.4, "has_dungeon": true, "has_important": true}, {"id": 4470, "name": "Crypt4", "category": "dungeon", "x": -1216.5, "z": 2569.6, "px": 1840.4, "py": 2486.5, "has_dungeon": true, "has_important": true}, {"id": 4471, "name": "Crypt4", "category": "dungeon", "x": 6596.3, "z": 3146.6, "px": 3173.8, "py": 2585.0, "has_dungeon": true, "has_important": true}, {"id": 4472, "name": "Crypt4", "category": "dungeon", "x": 378.2, "z": 5310.1, "px": 2112.5, "py": 2954.3, "has_dungeon": true, "has_important": true}, {"id": 4473, "name": "Crypt4", "category": "dungeon", "x": -1352.6, "z": -1536.9, "px": 1817.2, "py": 1785.7, "has_dungeon": true, "has_important": true}, {"id": 4474, "name": "Crypt4", "category": "dungeon", "x": -6838.8, "z": 5306.6, "px": 880.8, "py": 2953.7, "has_dungeon": true, "has_important": true}, {"id": 4475, "name": "Crypt4", "category": "dungeon", "x": 1734.3, "z": -4545.6, "px": 2344.0, "py": 1272.2, "has_dungeon": true, "has_important": true}, {"id": 4476, "name": "Crypt4", "category": "dungeon", "x": -3898.5, "z": -138.6, "px": 1382.7, "py": 2024.3, "has_dungeon": true, "has_important": true}, {"id": 4477, "name": "Crypt4", "category": "dungeon", "x": 2108.3, "z": 1209.2, "px": 2407.8, "py": 2254.4, "has_dungeon": true, "has_important": true}, {"id": 4478, "name": "Crypt4", "category": "dungeon", "x": -2374.0, "z": -6154.7, "px": 1642.8, "py": 997.6, "has_dungeon": true, "has_important": true}, {"id": 4479, "name": "Crypt4", "category": "dungeon", "x": -1589.2, "z": -5703.7, "px": 1776.8, "py": 1074.6, "has_dungeon": true, "has_important": true}, {"id": 4480, "name": "Crypt4", "category": "dungeon", "x": -124.8, "z": -4743.5, "px": 2026.7, "py": 1238.4, "has_dungeon": true, "has_important": true}, {"id": 4481, "name": "Crypt4", "category": "dungeon", "x": -1911.4, "z": -4671.1, "px": 1721.8, "py": 1250.8, "has_dungeon": true, "has_important": true}, {"id": 4482, "name": "Crypt4", "category": "dungeon", "x": 2112.1, "z": 903.8, "px": 2408.5, "py": 2202.2, "has_dungeon": true, "has_important": true}, {"id": 4483, "name": "Crypt4", "category": "dungeon", "x": -4800.9, "z": 5752.8, "px": 1228.6, "py": 3029.8, "has_dungeon": true, "has_important": true}, {"id": 4484, "name": "Crypt4", "category": "dungeon", "x": 9404.2, "z": 56.3, "px": 3653.0, "py": 2057.6, "has_dungeon": true, "has_important": true}, {"id": 4485, "name": "Crypt4", "category": "dungeon", "x": 3648.4, "z": 197.1, "px": 2670.7, "py": 2081.6, "has_dungeon": true, "has_important": true}, {"id": 4486, "name": "Crypt4", "category": "dungeon", "x": 3395.3, "z": -2438.4, "px": 2627.5, "py": 1631.8, "has_dungeon": true, "has_important": true}, {"id": 4487, "name": "Crypt4", "category": "dungeon", "x": 1917.8, "z": 7177.5, "px": 2375.3, "py": 3273.0, "has_dungeon": true, "has_important": true}, {"id": 4488, "name": "Crypt4", "category": "dungeon", "x": -5891.9, "z": 4474.7, "px": 1042.4, "py": 2811.7, "has_dungeon": true, "has_important": true}, {"id": 4489, "name": "Crypt4", "category": "dungeon", "x": 8070.1, "z": 59.3, "px": 3425.3, "py": 2058.1, "has_dungeon": true, "has_important": true}, {"id": 4490, "name": "Crypt4", "category": "dungeon", "x": -5060.1, "z": 761.5, "px": 1184.4, "py": 2178.0, "has_dungeon": true, "has_important": true}, {"id": 4491, "name": "Crypt4", "category": "dungeon", "x": -2042.1, "z": 510.0, "px": 1699.5, "py": 2135.0, "has_dungeon": true, "has_important": true}, {"id": 4492, "name": "Crypt4", "category": "dungeon", "x": 831.2, "z": 5252.1, "px": 2189.9, "py": 2944.4, "has_dungeon": true, "has_important": true}, {"id": 4493, "name": "Crypt4", "category": "dungeon", "x": -3957.2, "z": -2552.7, "px": 1372.6, "py": 1612.3, "has_dungeon": true, "has_important": true}, {"id": 4494, "name": "Crypt4", "category": "dungeon", "x": -4989.8, "z": 5566.0, "px": 1196.4, "py": 2997.9, "has_dungeon": true, "has_important": true}, {"id": 4495, "name": "Crypt4", "category": "dungeon", "x": -8956.0, "z": 2882.7, "px": 519.5, "py": 2540.0, "has_dungeon": true, "has_important": true}, {"id": 4496, "name": "Crypt4", "category": "dungeon", "x": -886.5, "z": 518.3, "px": 1896.7, "py": 2136.5, "has_dungeon": true, "has_important": true}, {"id": 4497, "name": "Crypt4", "category": "dungeon", "x": 4920.5, "z": 198.6, "px": 2887.8, "py": 2081.9, "has_dungeon": true, "has_important": true}, {"id": 4498, "name": "Crypt4", "category": "dungeon", "x": 1098.3, "z": -5692.8, "px": 2235.4, "py": 1076.4, "has_dungeon": true, "has_important": true}, {"id": 4499, "name": "Crypt4", "category": "dungeon", "x": 450.4, "z": 440.0, "px": 2124.9, "py": 2123.1, "has_dungeon": true, "has_important": true}, {"id": 4500, "name": "Crypt4", "category": "dungeon", "x": -3201.7, "z": -2365.6, "px": 1501.6, "py": 1644.3, "has_dungeon": true, "has_important": true}, {"id": 4501, "name": "Crypt4", "category": "dungeon", "x": 1659.5, "z": -898.7, "px": 2331.2, "py": 1894.6, "has_dungeon": true, "has_important": true}, {"id": 4502, "name": "Crypt4", "category": "dungeon", "x": 1737.4, "z": -1014.3, "px": 2344.5, "py": 1874.9, "has_dungeon": true, "has_important": true}, {"id": 4503, "name": "Crypt4", "category": "dungeon", "x": 8635.6, "z": -1917.6, "px": 3521.8, "py": 1720.7, "has_dungeon": true, "has_important": true}, {"id": 4504, "name": "Crypt4", "category": "dungeon", "x": 2173.2, "z": -965.9, "px": 2418.9, "py": 1883.2, "has_dungeon": true, "has_important": true}, {"id": 4505, "name": "Crypt4", "category": "dungeon", "x": -9609.6, "z": 699.3, "px": 408.0, "py": 2167.3, "has_dungeon": true, "has_important": true}, {"id": 4506, "name": "Crypt4", "category": "dungeon", "x": 5060.4, "z": -2244.4, "px": 2911.6, "py": 1665.0, "has_dungeon": true, "has_important": true}, {"id": 4507, "name": "Crypt4", "category": "dungeon", "x": 8121.8, "z": -3975.7, "px": 3434.1, "py": 1369.5, "has_dungeon": true, "has_important": true}, {"id": 901, "name": "Hildir_cave", "category": "dungeon", "x": 4736.0, "z": -5504.0, "px": 2856.3, "py": 1108.7, "has_dungeon": true, "has_important": true}, {"id": 902, "name": "Hildir_cave", "category": "dungeon", "x": -2688.0, "z": 7360.0, "px": 1589.2, "py": 3304.1, "has_dungeon": true, "has_important": true}, {"id": 903, "name": "Hildir_cave", "category": "dungeon", "x": 6016.0, "z": 4608.0, "px": 3074.7, "py": 2834.4, "has_dungeon": true, "has_important": true}, {"id": 914, "name": "Hildir_crypt", "category": "dungeon", "x": -7097.0, "z": 2614.7, "px": 836.8, "py": 2494.2, "has_dungeon": true, "has_important": true}, {"id": 915, "name": "Hildir_crypt", "category": "dungeon", "x": 2312.6, "z": -4479.1, "px": 2442.7, "py": 1283.6, "has_dungeon": true, "has_important": true}, {"id": 916, "name": "Hildir_crypt", "category": "dungeon", "x": 2613.9, "z": 5053.6, "px": 2494.1, "py": 2910.5, "has_dungeon": true, "has_important": true}, {"id": 656, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 3008.0, "z": 6848.0, "px": 2561.4, "py": 3216.7, "has_dungeon": true, "has_important": true}, {"id": 657, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -8320.0, "z": 320.0, "px": 628.1, "py": 2102.6, "has_dungeon": true, "has_important": true}, {"id": 658, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -1856.0, "z": -6976.0, "px": 1731.2, "py": 857.4, "has_dungeon": true, "has_important": true}, {"id": 659, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 3840.0, "z": -5952.0, "px": 2703.4, "py": 1032.2, "has_dungeon": true, "has_important": true}, {"id": 660, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -6080.0, "z": -896.0, "px": 1010.3, "py": 1895.1, "has_dungeon": true, "has_important": true}, {"id": 661, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 9280.0, "z": -1728.0, "px": 3631.8, "py": 1753.1, "has_dungeon": true, "has_important": true}, {"id": 662, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 1856.0, "z": -7104.0, "px": 2364.8, "py": 835.6, "has_dungeon": true, "has_important": true}, {"id": 663, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -1728.0, "z": -7296.0, "px": 1753.1, "py": 802.8, "has_dungeon": true, "has_important": true}, {"id": 664, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 5952.0, "z": 5120.0, "px": 3063.8, "py": 2921.8, "has_dungeon": true, "has_important": true}, {"id": 665, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -8640.0, "z": 128.0, "px": 573.4, "py": 2069.8, "has_dungeon": true, "has_important": true}, {"id": 666, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 3072.0, "z": 6336.0, "px": 2572.3, "py": 3129.3, "has_dungeon": true, "has_important": true}, {"id": 667, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -2752.0, "z": -6016.0, "px": 1578.3, "py": 1021.3, "has_dungeon": true, "has_important": true}, {"id": 668, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 5952.0, "z": -4416.0, "px": 3063.8, "py": 1294.3, "has_dungeon": true, "has_important": true}, {"id": 669, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -2112.0, "z": 7360.0, "px": 1687.6, "py": 3304.1, "has_dungeon": true, "has_important": true}, {"id": 670, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -4736.0, "z": -3968.0, "px": 1239.7, "py": 1370.8, "has_dungeon": true, "has_important": true}, {"id": 671, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -6400.0, "z": -3968.0, "px": 955.7, "py": 1370.8, "has_dungeon": true, "has_important": true}, {"id": 672, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 3776.0, "z": 5952.0, "px": 2692.4, "py": 3063.8, "has_dungeon": true, "has_important": true}, {"id": 673, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 7296.0, "z": -5056.0, "px": 3293.2, "py": 1185.1, "has_dungeon": true, "has_important": true}, {"id": 674, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 1664.0, "z": -6784.0, "px": 2332.0, "py": 890.2, "has_dungeon": true, "has_important": true}, {"id": 675, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -6912.0, "z": 1088.0, "px": 868.4, "py": 2233.7, "has_dungeon": true, "has_important": true}, {"id": 676, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -7552.0, "z": -2624.0, "px": 759.1, "py": 1600.2, "has_dungeon": true, "has_important": true}, {"id": 677, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -8000.0, "z": -4288.0, "px": 682.7, "py": 1316.2, "has_dungeon": true, "has_important": true}, {"id": 678, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -8960.0, "z": 768.0, "px": 518.8, "py": 2179.1, "has_dungeon": true, "has_important": true}, {"id": 679, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 4096.0, "z": -5888.0, "px": 2747.1, "py": 1043.1, "has_dungeon": true, "has_important": true}, {"id": 680, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 8128.0, "z": -3136.0, "px": 3435.2, "py": 1512.8, "has_dungeon": true, "has_important": true}, {"id": 681, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -8576.0, "z": 2112.0, "px": 584.4, "py": 2408.4, "has_dungeon": true, "has_important": true}, {"id": 682, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 3904.0, "z": -5632.0, "px": 2714.3, "py": 1086.8, "has_dungeon": true, "has_important": true}, {"id": 683, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 9088.0, "z": 1472.0, "px": 3599.0, "py": 2299.2, "has_dungeon": true, "has_important": true}, {"id": 684, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -8640.0, "z": 1536.0, "px": 573.4, "py": 2310.1, "has_dungeon": true, "has_important": true}, {"id": 685, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -3072.0, "z": -7104.0, "px": 1523.7, "py": 835.6, "has_dungeon": true, "has_important": true}, {"id": 686, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 7744.0, "z": 2496.0, "px": 3369.6, "py": 2474.0, "has_dungeon": true, "has_important": true}, {"id": 687, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 8640.0, "z": -832.0, "px": 3522.6, "py": 1906.0, "has_dungeon": true, "has_important": true}, {"id": 688, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -1920.0, "z": 7040.0, "px": 1720.3, "py": 3249.5, "has_dungeon": true, "has_important": true}, {"id": 689, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 7040.0, "z": -3712.0, "px": 3249.5, "py": 1414.5, "has_dungeon": true, "has_important": true}, {"id": 690, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -5440.0, "z": 5760.0, "px": 1119.6, "py": 3031.0, "has_dungeon": true, "has_important": true}, {"id": 691, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 8960.0, "z": -1024.0, "px": 3577.2, "py": 1873.2, "has_dungeon": true, "has_important": true}, {"id": 692, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -2816.0, "z": 6272.0, "px": 1567.4, "py": 3118.4, "has_dungeon": true, "has_important": true}, {"id": 693, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 5440.0, "z": 3328.0, "px": 2976.4, "py": 2616.0, "has_dungeon": true, "has_important": true}, {"id": 694, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 4864.0, "z": -4992.0, "px": 2878.1, "py": 1196.0, "has_dungeon": true, "has_important": true}, {"id": 695, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 7360.0, "z": -3456.0, "px": 3304.1, "py": 1458.2, "has_dungeon": true, "has_important": true}, {"id": 696, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 4672.0, "z": -4672.0, "px": 2845.4, "py": 1250.6, "has_dungeon": true, "has_important": true}, {"id": 697, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 9600.0, "z": -2368.0, "px": 3686.4, "py": 1643.9, "has_dungeon": true, "has_important": true}, {"id": 698, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 6208.0, "z": 5760.0, "px": 3107.5, "py": 3031.0, "has_dungeon": true, "has_important": true}, {"id": 699, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 3392.0, "z": 5696.0, "px": 2626.9, "py": 3020.1, "has_dungeon": true, "has_important": true}, {"id": 700, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 8448.0, "z": 896.0, "px": 3489.8, "py": 2200.9, "has_dungeon": true, "has_important": true}, {"id": 701, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -1152.0, "z": -7040.0, "px": 1851.4, "py": 846.5, "has_dungeon": true, "has_important": true}, {"id": 702, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 7424.0, "z": -2176.0, "px": 3315.0, "py": 1676.6, "has_dungeon": true, "has_important": true}, {"id": 703, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -384.0, "z": -6656.0, "px": 1982.5, "py": 912.0, "has_dungeon": true, "has_important": true}, {"id": 704, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 1280.0, "z": -6592.0, "px": 2266.5, "py": 923.0, "has_dungeon": true, "has_important": true}, {"id": 705, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 6144.0, "z": -1536.0, "px": 3096.6, "py": 1785.9, "has_dungeon": true, "has_important": true}, {"id": 706, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 9728.0, "z": 1536.0, "px": 3708.2, "py": 2310.1, "has_dungeon": true, "has_important": true}, {"id": 707, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 1024.0, "z": -7360.0, "px": 2222.8, "py": 791.9, "has_dungeon": true, "has_important": true}, {"id": 708, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 8512.0, "z": 1152.0, "px": 3500.7, "py": 2244.6, "has_dungeon": true, "has_important": true}, {"id": 709, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -6080.0, "z": -1984.0, "px": 1010.3, "py": 1709.4, "has_dungeon": true, "has_important": true}, {"id": 710, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 8384.0, "z": -3456.0, "px": 3478.9, "py": 1458.2, "has_dungeon": true, "has_important": true}, {"id": 711, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -5184.0, "z": 6208.0, "px": 1163.3, "py": 3107.5, "has_dungeon": true, "has_important": true}, {"id": 712, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 9152.0, "z": -1280.0, "px": 3609.9, "py": 1829.5, "has_dungeon": true, "has_important": true}, {"id": 713, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 4224.0, "z": 5824.0, "px": 2768.9, "py": 3042.0, "has_dungeon": true, "has_important": true}, {"id": 714, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -896.0, "z": -7616.0, "px": 1895.1, "py": 748.2, "has_dungeon": true, "has_important": true}, {"id": 715, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 8064.0, "z": 2752.0, "px": 3424.3, "py": 2517.7, "has_dungeon": true, "has_important": true}, {"id": 716, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -6336.0, "z": 3328.0, "px": 966.7, "py": 2616.0, "has_dungeon": true, "has_important": true}, {"id": 717, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -7360.0, "z": -3392.0, "px": 791.9, "py": 1469.1, "has_dungeon": true, "has_important": true}, {"id": 718, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -6336.0, "z": 704.0, "px": 966.7, "py": 2168.1, "has_dungeon": true, "has_important": true}, {"id": 719, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 4032.0, "z": -6144.0, "px": 2736.1, "py": 999.4, "has_dungeon": true, "has_important": true}, {"id": 720, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -7168.0, "z": 640.0, "px": 824.7, "py": 2157.2, "has_dungeon": true, "has_important": true}, {"id": 721, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -2560.0, "z": -5760.0, "px": 1611.1, "py": 1065.0, "has_dungeon": true, "has_important": true}, {"id": 722, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -4480.0, "z": -4352.0, "px": 1283.4, "py": 1305.3, "has_dungeon": true, "has_important": true}, {"id": 723, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 8768.0, "z": -2944.0, "px": 3544.4, "py": 1545.6, "has_dungeon": true, "has_important": true}, {"id": 724, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -6912.0, "z": 5056.0, "px": 868.4, "py": 2910.9, "has_dungeon": true, "has_important": true}, {"id": 725, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 2816.0, "z": 5696.0, "px": 2528.6, "py": 3020.1, "has_dungeon": true, "has_important": true}, {"id": 726, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 832.0, "z": -7040.0, "px": 2190.0, "py": 846.5, "has_dungeon": true, "has_important": true}, {"id": 727, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 6144.0, "z": -4672.0, "px": 3096.6, "py": 1250.6, "has_dungeon": true, "has_important": true}, {"id": 728, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 7680.0, "z": -2368.0, "px": 3358.7, "py": 1643.9, "has_dungeon": true, "has_important": true}, {"id": 729, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 8064.0, "z": -1728.0, "px": 3424.3, "py": 1753.1, "has_dungeon": true, "has_important": true}, {"id": 730, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 8192.0, "z": -832.0, "px": 3446.1, "py": 1906.0, "has_dungeon": true, "has_important": true}, {"id": 731, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -7744.0, "z": -2880.0, "px": 726.4, "py": 1556.5, "has_dungeon": true, "has_important": true}, {"id": 732, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 6464.0, "z": 2880.0, "px": 3151.2, "py": 2539.5, "has_dungeon": true, "has_important": true}, {"id": 733, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 8256.0, "z": 2432.0, "px": 3457.0, "py": 2463.1, "has_dungeon": true, "has_important": true}, {"id": 734, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 2752.0, "z": 5952.0, "px": 2517.7, "py": 3063.8, "has_dungeon": true, "has_important": true}, {"id": 735, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -9536.0, "z": 832.0, "px": 420.5, "py": 2190.0, "has_dungeon": true, "has_important": true}, {"id": 736, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 9088.0, "z": -3008.0, "px": 3599.0, "py": 1534.6, "has_dungeon": true, "has_important": true}, {"id": 737, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -9728.0, "z": -1024.0, "px": 387.8, "py": 1873.2, "has_dungeon": true, "has_important": true}, {"id": 738, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -3072.0, "z": -5760.0, "px": 1523.7, "py": 1065.0, "has_dungeon": true, "has_important": true}, {"id": 739, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -6912.0, "z": 704.0, "px": 868.4, "py": 2168.1, "has_dungeon": true, "has_important": true}, {"id": 740, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -5760.0, "z": -1984.0, "px": 1065.0, "py": 1709.4, "has_dungeon": true, "has_important": true}, {"id": 741, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 6400.0, "z": 4352.0, "px": 3140.3, "py": 2790.7, "has_dungeon": true, "has_important": true}, {"id": 742, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -5376.0, "z": 4736.0, "px": 1130.5, "py": 2856.3, "has_dungeon": true, "has_important": true}, {"id": 743, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -9408.0, "z": -2432.0, "px": 442.4, "py": 1632.9, "has_dungeon": true, "has_important": true}, {"id": 744, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 1408.0, "z": 7488.0, "px": 2288.3, "py": 3326.0, "has_dungeon": true, "has_important": true}, {"id": 745, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -5824.0, "z": 3264.0, "px": 1054.0, "py": 2605.1, "has_dungeon": true, "has_important": true}, {"id": 746, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -6592.0, "z": 896.0, "px": 923.0, "py": 2200.9, "has_dungeon": true, "has_important": true}, {"id": 747, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -7296.0, "z": 1152.0, "px": 802.8, "py": 2244.6, "has_dungeon": true, "has_important": true}, {"id": 748, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -4096.0, "z": 4736.0, "px": 1348.9, "py": 2856.3, "has_dungeon": true, "has_important": true}, {"id": 749, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 192.0, "z": -7424.0, "px": 2080.8, "py": 781.0, "has_dungeon": true, "has_important": true}, {"id": 750, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 3072.0, "z": 7168.0, "px": 2572.3, "py": 3271.3, "has_dungeon": true, "has_important": true}, {"id": 751, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -1792.0, "z": -5824.0, "px": 1742.2, "py": 1054.0, "has_dungeon": true, "has_important": true}, {"id": 752, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 8256.0, "z": -2880.0, "px": 3457.0, "py": 1556.5, "has_dungeon": true, "has_important": true}, {"id": 753, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -1408.0, "z": -6016.0, "px": 1807.7, "py": 1021.3, "has_dungeon": true, "has_important": true}, {"id": 754, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -9664.0, "z": -2176.0, "px": 398.7, "py": 1676.6, "has_dungeon": true, "has_important": true}, {"id": 755, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -9216.0, "z": -640.0, "px": 475.1, "py": 1938.8, "has_dungeon": true, "has_important": true}, {"id": 756, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 8000.0, "z": 2112.0, "px": 3413.3, "py": 2408.4, "has_dungeon": true, "has_important": true}, {"id": 757, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 8768.0, "z": 896.0, "px": 3544.4, "py": 2200.9, "has_dungeon": true, "has_important": true}, {"id": 758, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 8896.0, "z": 320.0, "px": 3566.3, "py": 2102.6, "has_dungeon": true, "has_important": true}, {"id": 759, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 3968.0, "z": -5312.0, "px": 2725.2, "py": 1141.4, "has_dungeon": true, "has_important": true}, {"id": 760, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 4160.0, "z": -4736.0, "px": 2758.0, "py": 1239.7, "has_dungeon": true, "has_important": true}, {"id": 761, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -2112.0, "z": -6656.0, "px": 1687.6, "py": 912.0, "has_dungeon": true, "has_important": true}, {"id": 762, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 4032.0, "z": -6464.0, "px": 2736.1, "py": 944.8, "has_dungeon": true, "has_important": true}, {"id": 763, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 3904.0, "z": -7040.0, "px": 2714.3, "py": 846.5, "has_dungeon": true, "has_important": true}, {"id": 764, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -7168.0, "z": -1280.0, "px": 824.7, "py": 1829.5, "has_dungeon": true, "has_important": true}, {"id": 765, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -3712.0, "z": 6656.0, "px": 1414.5, "py": 3184.0, "has_dungeon": true, "has_important": true}, {"id": 766, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 5760.0, "z": 6080.0, "px": 3031.0, "py": 3085.7, "has_dungeon": true, "has_important": true}, {"id": 767, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 1152.0, "z": 7616.0, "px": 2244.6, "py": 3347.8, "has_dungeon": true, "has_important": true}, {"id": 768, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -1856.0, "z": 7488.0, "px": 1731.2, "py": 3326.0, "has_dungeon": true, "has_important": true}, {"id": 769, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -6272.0, "z": 3008.0, "px": 977.6, "py": 2561.4, "has_dungeon": true, "has_important": true}, {"id": 770, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 7552.0, "z": -4480.0, "px": 3336.9, "py": 1283.4, "has_dungeon": true, "has_important": true}, {"id": 771, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 2944.0, "z": 5440.0, "px": 2550.4, "py": 2976.4, "has_dungeon": true, "has_important": true}, {"id": 772, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -7104.0, "z": -2176.0, "px": 835.6, "py": 1676.6, "has_dungeon": true, "has_important": true}, {"id": 773, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": -4416.0, "z": -6784.0, "px": 1294.3, "py": 890.2, "has_dungeon": true, "has_important": true}, {"id": 774, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 6016.0, "z": 5952.0, "px": 3074.7, "py": 3063.8, "has_dungeon": true, "has_important": true}, {"id": 775, "name": "Mistlands_DvergrTownEntrance1", "category": "dungeon", "x": 5632.0, "z": 2432.0, "px": 3009.2, "py": 2463.1, "has_dungeon": true, "has_important": true}, {"id": 776, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -3200.0, "z": 5376.0, "px": 1501.9, "py": 2965.5, "has_dungeon": true, "has_important": true}, {"id": 777, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 4864.0, "z": 6208.0, "px": 2878.1, "py": 3107.5, "has_dungeon": true, "has_important": true}, {"id": 778, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -7616.0, "z": 1216.0, "px": 748.2, "py": 2255.5, "has_dungeon": true, "has_important": true}, {"id": 779, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 2304.0, "z": -5760.0, "px": 2441.2, "py": 1065.0, "has_dungeon": true, "has_important": true}, {"id": 780, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -5312.0, "z": -4480.0, "px": 1141.4, "py": 1283.4, "has_dungeon": true, "has_important": true}, {"id": 781, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -6144.0, "z": 3520.0, "px": 999.4, "py": 2648.7, "has_dungeon": true, "has_important": true}, {"id": 782, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -6144.0, "z": 3968.0, "px": 999.4, "py": 2725.2, "has_dungeon": true, "has_important": true}, {"id": 783, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 6784.0, "z": 1216.0, "px": 3205.8, "py": 2255.5, "has_dungeon": true, "has_important": true}, {"id": 784, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -3776.0, "z": 5440.0, "px": 1403.6, "py": 2976.4, "has_dungeon": true, "has_important": true}, {"id": 785, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -192.0, "z": -6400.0, "px": 2015.2, "py": 955.7, "has_dungeon": true, "has_important": true}, {"id": 786, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -9472.0, "z": -960.0, "px": 431.4, "py": 1884.2, "has_dungeon": true, "has_important": true}, {"id": 787, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 3200.0, "z": 5504.0, "px": 2594.1, "py": 2987.3, "has_dungeon": true, "has_important": true}, {"id": 788, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 4864.0, "z": 5696.0, "px": 2878.1, "py": 3020.1, "has_dungeon": true, "has_important": true}, {"id": 789, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -704.0, "z": 6848.0, "px": 1927.9, "py": 3216.7, "has_dungeon": true, "has_important": true}, {"id": 790, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 384.0, "z": -7104.0, "px": 2113.5, "py": 835.6, "has_dungeon": true, "has_important": true}, {"id": 791, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 6720.0, "z": 5376.0, "px": 3194.9, "py": 2965.5, "has_dungeon": true, "has_important": true}, {"id": 792, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -9152.0, "z": 960.0, "px": 486.1, "py": 2211.8, "has_dungeon": true, "has_important": true}, {"id": 793, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 4224.0, "z": 6336.0, "px": 2768.9, "py": 3129.3, "has_dungeon": true, "has_important": true}, {"id": 794, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -8320.0, "z": 64.0, "px": 628.1, "py": 2058.9, "has_dungeon": true, "has_important": true}, {"id": 795, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 8512.0, "z": 576.0, "px": 3500.7, "py": 2146.3, "has_dungeon": true, "has_important": true}, {"id": 796, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -128.0, "z": 7360.0, "px": 2026.2, "py": 3304.1, "has_dungeon": true, "has_important": true}, {"id": 797, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 7424.0, "z": 256.0, "px": 3315.0, "py": 2091.7, "has_dungeon": true, "has_important": true}, {"id": 798, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -576.0, "z": -6976.0, "px": 1949.7, "py": 857.4, "has_dungeon": true, "has_important": true}, {"id": 799, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -8704.0, "z": -1280.0, "px": 562.5, "py": 1829.5, "has_dungeon": true, "has_important": true}, {"id": 800, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 2368.0, "z": -6592.0, "px": 2452.1, "py": 923.0, "has_dungeon": true, "has_important": true}, {"id": 801, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -5760.0, "z": -5504.0, "px": 1065.0, "py": 1108.7, "has_dungeon": true, "has_important": true}, {"id": 802, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -4800.0, "z": 4160.0, "px": 1228.8, "py": 2758.0, "has_dungeon": true, "has_important": true}, {"id": 803, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -3008.0, "z": -6080.0, "px": 1534.6, "py": 1010.3, "has_dungeon": true, "has_important": true}, {"id": 804, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 128.0, "z": 6848.0, "px": 2069.8, "py": 3216.7, "has_dungeon": true, "has_important": true}, {"id": 805, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 8640.0, "z": -576.0, "px": 3522.6, "py": 1949.7, "has_dungeon": true, "has_important": true}, {"id": 806, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 4608.0, "z": 6336.0, "px": 2834.4, "py": 3129.3, "has_dungeon": true, "has_important": true}, {"id": 807, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -2944.0, "z": -6528.0, "px": 1545.6, "py": 933.9, "has_dungeon": true, "has_important": true}, {"id": 808, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 4928.0, "z": -5696.0, "px": 2889.0, "py": 1075.9, "has_dungeon": true, "has_important": true}, {"id": 809, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 4416.0, "z": 5568.0, "px": 2801.7, "py": 2998.3, "has_dungeon": true, "has_important": true}, {"id": 810, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 768.0, "z": 6528.0, "px": 2179.1, "py": 3162.1, "has_dungeon": true, "has_important": true}, {"id": 811, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -5568.0, "z": 3328.0, "px": 1097.7, "py": 2616.0, "has_dungeon": true, "has_important": true}, {"id": 812, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 6848.0, "z": -256.0, "px": 3216.7, "py": 2004.3, "has_dungeon": true, "has_important": true}, {"id": 813, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -8192.0, "z": -3520.0, "px": 649.9, "py": 1447.3, "has_dungeon": true, "has_important": true}, {"id": 814, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 192.0, "z": 7104.0, "px": 2080.8, "py": 3260.4, "has_dungeon": true, "has_important": true}, {"id": 815, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 832.0, "z": 6784.0, "px": 2190.0, "py": 3205.8, "has_dungeon": true, "has_important": true}, {"id": 816, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -7040.0, "z": 5312.0, "px": 846.5, "py": 2954.6, "has_dungeon": true, "has_important": true}, {"id": 817, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -6976.0, "z": -1728.0, "px": 857.4, "py": 1753.1, "has_dungeon": true, "has_important": true}, {"id": 818, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -7360.0, "z": 4032.0, "px": 791.9, "py": 2736.1, "has_dungeon": true, "has_important": true}, {"id": 819, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -6592.0, "z": -4992.0, "px": 923.0, "py": 1196.0, "has_dungeon": true, "has_important": true}, {"id": 820, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -7360.0, "z": 3008.0, "px": 791.9, "py": 2561.4, "has_dungeon": true, "has_important": true}, {"id": 821, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 384.0, "z": 7552.0, "px": 2113.5, "py": 3336.9, "has_dungeon": true, "has_important": true}, {"id": 822, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -5696.0, "z": 3648.0, "px": 1075.9, "py": 2670.6, "has_dungeon": true, "has_important": true}, {"id": 823, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -6720.0, "z": -3328.0, "px": 901.1, "py": 1480.0, "has_dungeon": true, "has_important": true}, {"id": 824, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -2368.0, "z": -6464.0, "px": 1643.9, "py": 944.8, "has_dungeon": true, "has_important": true}, {"id": 825, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -8384.0, "z": -448.0, "px": 617.1, "py": 1971.5, "has_dungeon": true, "has_important": true}, {"id": 826, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 7040.0, "z": 3840.0, "px": 3249.5, "py": 2703.4, "has_dungeon": true, "has_important": true}, {"id": 827, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 6336.0, "z": -1280.0, "px": 3129.3, "py": 1829.5, "has_dungeon": true, "has_important": true}, {"id": 828, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 7168.0, "z": -64.0, "px": 3271.3, "py": 2037.1, "has_dungeon": true, "has_important": true}, {"id": 829, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -4992.0, "z": -3648.0, "px": 1196.0, "py": 1425.4, "has_dungeon": true, "has_important": true}, {"id": 830, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 9920.0, "z": -192.0, "px": 3741.0, "py": 2015.2, "has_dungeon": true, "has_important": true}, {"id": 831, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 8640.0, "z": -3328.0, "px": 3522.6, "py": 1480.0, "has_dungeon": true, "has_important": true}, {"id": 832, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -9216.0, "z": -64.0, "px": 475.1, "py": 2037.1, "has_dungeon": true, "has_important": true}, {"id": 833, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 6208.0, "z": 5056.0, "px": 3107.5, "py": 2910.9, "has_dungeon": true, "has_important": true}, {"id": 834, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -8576.0, "z": 1280.0, "px": 584.4, "py": 2266.5, "has_dungeon": true, "has_important": true}, {"id": 835, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -8192.0, "z": 2304.0, "px": 649.9, "py": 2441.2, "has_dungeon": true, "has_important": true}, {"id": 836, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -6592.0, "z": 4800.0, "px": 923.0, "py": 2867.2, "has_dungeon": true, "has_important": true}, {"id": 837, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -9408.0, "z": 1472.0, "px": 442.4, "py": 2299.2, "has_dungeon": true, "has_important": true}, {"id": 838, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -1088.0, "z": -6080.0, "px": 1862.3, "py": 1010.3, "has_dungeon": true, "has_important": true}, {"id": 839, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -8960.0, "z": 1472.0, "px": 518.8, "py": 2299.2, "has_dungeon": true, "has_important": true}, {"id": 840, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -1664.0, "z": 7104.0, "px": 1764.0, "py": 3260.4, "has_dungeon": true, "has_important": true}, {"id": 841, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 3648.0, "z": -6784.0, "px": 2670.6, "py": 890.2, "has_dungeon": true, "has_important": true}, {"id": 842, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -4480.0, "z": -5376.0, "px": 1283.4, "py": 1130.5, "has_dungeon": true, "has_important": true}, {"id": 843, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 9664.0, "z": -768.0, "px": 3697.3, "py": 1916.9, "has_dungeon": true, "has_important": true}, {"id": 844, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 2560.0, "z": -5568.0, "px": 2484.9, "py": 1097.7, "has_dungeon": true, "has_important": true}, {"id": 845, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 4672.0, "z": -6080.0, "px": 2845.4, "py": 1010.3, "has_dungeon": true, "has_important": true}, {"id": 846, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -1152.0, "z": -7488.0, "px": 1851.4, "py": 770.0, "has_dungeon": true, "has_important": true}, {"id": 847, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 1280.0, "z": 6016.0, "px": 2266.5, "py": 3074.7, "has_dungeon": true, "has_important": true}, {"id": 848, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -6016.0, "z": -5568.0, "px": 1021.3, "py": 1097.7, "has_dungeon": true, "has_important": true}, {"id": 849, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 4544.0, "z": -6656.0, "px": 2823.5, "py": 912.0, "has_dungeon": true, "has_important": true}, {"id": 850, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -8576.0, "z": -2816.0, "px": 584.4, "py": 1567.4, "has_dungeon": true, "has_important": true}, {"id": 851, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 8000.0, "z": -4480.0, "px": 3413.3, "py": 1283.4, "has_dungeon": true, "has_important": true}, {"id": 852, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 8512.0, "z": -2688.0, "px": 3500.7, "py": 1589.2, "has_dungeon": true, "has_important": true}, {"id": 853, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -7104.0, "z": 2880.0, "px": 835.6, "py": 2539.5, "has_dungeon": true, "has_important": true}, {"id": 854, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 5696.0, "z": 5632.0, "px": 3020.1, "py": 3009.2, "has_dungeon": true, "has_important": true}, {"id": 855, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 2560.0, "z": -5824.0, "px": 2484.9, "py": 1054.0, "has_dungeon": true, "has_important": true}, {"id": 856, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -7168.0, "z": 3840.0, "px": 824.7, "py": 2703.4, "has_dungeon": true, "has_important": true}, {"id": 857, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 2368.0, "z": 7296.0, "px": 2452.1, "py": 3293.2, "has_dungeon": true, "has_important": true}, {"id": 858, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -8384.0, "z": -3072.0, "px": 617.1, "py": 1523.7, "has_dungeon": true, "has_important": true}, {"id": 859, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 4288.0, "z": -6080.0, "px": 2779.8, "py": 1010.3, "has_dungeon": true, "has_important": true}, {"id": 860, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 9664.0, "z": 768.0, "px": 3697.3, "py": 2179.1, "has_dungeon": true, "has_important": true}, {"id": 861, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 6656.0, "z": -5504.0, "px": 3184.0, "py": 1108.7, "has_dungeon": true, "has_important": true}, {"id": 862, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -8128.0, "z": -3968.0, "px": 660.8, "py": 1370.8, "has_dungeon": true, "has_important": true}, {"id": 863, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -1664.0, "z": -6080.0, "px": 1764.0, "py": 1010.3, "has_dungeon": true, "has_important": true}, {"id": 864, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 6592.0, "z": -192.0, "px": 3173.0, "py": 2015.2, "has_dungeon": true, "has_important": true}, {"id": 865, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -6400.0, "z": -2112.0, "px": 955.7, "py": 1687.6, "has_dungeon": true, "has_important": true}, {"id": 866, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 8384.0, "z": -1728.0, "px": 3478.9, "py": 1753.1, "has_dungeon": true, "has_important": true}, {"id": 867, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -5120.0, "z": 4672.0, "px": 1174.2, "py": 2845.4, "has_dungeon": true, "has_important": true}, {"id": 868, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -7040.0, "z": 1344.0, "px": 846.5, "py": 2277.4, "has_dungeon": true, "has_important": true}, {"id": 869, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -6528.0, "z": -4416.0, "px": 933.9, "py": 1294.3, "has_dungeon": true, "has_important": true}, {"id": 870, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 5696.0, "z": 3520.0, "px": 3020.1, "py": 2648.7, "has_dungeon": true, "has_important": true}, {"id": 871, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -6016.0, "z": 2880.0, "px": 1021.3, "py": 2539.5, "has_dungeon": true, "has_important": true}, {"id": 872, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -9152.0, "z": -2240.0, "px": 486.1, "py": 1665.7, "has_dungeon": true, "has_important": true}, {"id": 873, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 4480.0, "z": 5952.0, "px": 2812.6, "py": 3063.8, "has_dungeon": true, "has_important": true}, {"id": 874, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 1856.0, "z": -6592.0, "px": 2364.8, "py": 923.0, "has_dungeon": true, "has_important": true}, {"id": 875, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 1280.0, "z": -6336.0, "px": 2266.5, "py": 966.7, "has_dungeon": true, "has_important": true}, {"id": 876, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -2240.0, "z": -7040.0, "px": 1665.7, "py": 846.5, "has_dungeon": true, "has_important": true}, {"id": 877, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -6272.0, "z": -5376.0, "px": 977.6, "py": 1130.5, "has_dungeon": true, "has_important": true}, {"id": 878, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 1344.0, "z": -7296.0, "px": 2277.4, "py": 802.8, "has_dungeon": true, "has_important": true}, {"id": 879, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -6592.0, "z": 4032.0, "px": 923.0, "py": 2736.1, "has_dungeon": true, "has_important": true}, {"id": 880, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 4352.0, "z": -4416.0, "px": 2790.7, "py": 1294.3, "has_dungeon": true, "has_important": true}, {"id": 881, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 4352.0, "z": 4672.0, "px": 2790.7, "py": 2845.4, "has_dungeon": true, "has_important": true}, {"id": 882, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 7936.0, "z": 3008.0, "px": 3402.4, "py": 2561.4, "has_dungeon": true, "has_important": true}, {"id": 883, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 576.0, "z": 6784.0, "px": 2146.3, "py": 3205.8, "has_dungeon": true, "has_important": true}, {"id": 884, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -7872.0, "z": 4608.0, "px": 704.5, "py": 2834.4, "has_dungeon": true, "has_important": true}, {"id": 885, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -5184.0, "z": -3840.0, "px": 1163.3, "py": 1392.6, "has_dungeon": true, "has_important": true}, {"id": 886, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -3904.0, "z": 5888.0, "px": 1381.7, "py": 3052.9, "has_dungeon": true, "has_important": true}, {"id": 887, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -7616.0, "z": -3328.0, "px": 748.2, "py": 1480.0, "has_dungeon": true, "has_important": true}, {"id": 888, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 5056.0, "z": -3840.0, "px": 2910.9, "py": 1392.6, "has_dungeon": true, "has_important": true}, {"id": 889, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 7360.0, "z": 4544.0, "px": 3304.1, "py": 2823.5, "has_dungeon": true, "has_important": true}, {"id": 890, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -6528.0, "z": -3008.0, "px": 933.9, "py": 1534.6, "has_dungeon": true, "has_important": true}, {"id": 891, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 9280.0, "z": 1728.0, "px": 3631.8, "py": 2342.9, "has_dungeon": true, "has_important": true}, {"id": 892, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -6400.0, "z": 5632.0, "px": 955.7, "py": 3009.2, "has_dungeon": true, "has_important": true}, {"id": 893, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -8384.0, "z": -3776.0, "px": 617.1, "py": 1403.6, "has_dungeon": true, "has_important": true}, {"id": 894, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": 5952.0, "z": 2432.0, "px": 3063.8, "py": 2463.1, "has_dungeon": true, "has_important": true}, {"id": 895, "name": "Mistlands_DvergrTownEntrance2", "category": "dungeon", "x": -7424.0, "z": 4544.0, "px": 781.0, "py": 2823.5, "has_dungeon": true, "has_important": true}, {"id": 7444, "name": "MountainCave02", "category": "dungeon", "x": 5696.0, "z": 2112.0, "px": 3020.1, "py": 2408.4, "has_dungeon": true, "has_important": true}, {"id": 7445, "name": "MountainCave02", "category": "dungeon", "x": 1280.0, "z": 8448.0, "px": 2266.5, "py": 3489.8, "has_dungeon": true, "has_important": true}, {"id": 7446, "name": "MountainCave02", "category": "dungeon", "x": 4544.0, "z": -5632.0, "px": 2823.5, "py": 1086.8, "has_dungeon": true, "has_important": true}, {"id": 7447, "name": "MountainCave02", "category": "dungeon", "x": 9920.0, "z": -1216.0, "px": 3741.0, "py": 1840.5, "has_dungeon": true, "has_important": true}, {"id": 7448, "name": "MountainCave02", "category": "dungeon", "x": 2240.0, "z": 8768.0, "px": 2430.3, "py": 3544.4, "has_dungeon": true, "has_important": true}, {"id": 7449, "name": "MountainCave02", "category": "dungeon", "x": -3328.0, "z": -2048.0, "px": 1480.0, "py": 1698.5, "has_dungeon": true, "has_important": true}, {"id": 7450, "name": "MountainCave02", "category": "dungeon", "x": 5248.0, "z": 192.0, "px": 2943.7, "py": 2080.8, "has_dungeon": true, "has_important": true}, {"id": 7451, "name": "MountainCave02", "category": "dungeon", "x": 8384.0, "z": -3904.0, "px": 3478.9, "py": 1381.7, "has_dungeon": true, "has_important": true}, {"id": 7452, "name": "MountainCave02", "category": "dungeon", "x": -2624.0, "z": 7360.0, "px": 1600.2, "py": 3304.1, "has_dungeon": true, "has_important": true}, {"id": 7453, "name": "MountainCave02", "category": "dungeon", "x": -3584.0, "z": 6464.0, "px": 1436.3, "py": 3151.2, "has_dungeon": true, "has_important": true}, {"id": 7454, "name": "MountainCave02", "category": "dungeon", "x": 1216.0, "z": 6848.0, "px": 2255.5, "py": 3216.7, "has_dungeon": true, "has_important": true}, {"id": 7455, "name": "MountainCave02", "category": "dungeon", "x": 6592.0, "z": 6464.0, "px": 3173.0, "py": 3151.2, "has_dungeon": true, "has_important": true}, {"id": 7456, "name": "MountainCave02", "category": "dungeon", "x": -128.0, "z": -1344.0, "px": 2026.2, "py": 1818.6, "has_dungeon": true, "has_important": true}, {"id": 7457, "name": "MountainCave02", "category": "dungeon", "x": 2560.0, "z": 896.0, "px": 2484.9, "py": 2200.9, "has_dungeon": true, "has_important": true}, {"id": 7458, "name": "MountainCave02", "category": "dungeon", "x": 6144.0, "z": 4736.0, "px": 3096.6, "py": 2856.3, "has_dungeon": true, "has_important": true}, {"id": 7459, "name": "MountainCave02", "category": "dungeon", "x": -6848.0, "z": -2368.0, "px": 879.3, "py": 1643.9, "has_dungeon": true, "has_important": true}, {"id": 7460, "name": "MountainCave02", "category": "dungeon", "x": -4480.0, "z": -1344.0, "px": 1283.4, "py": 1818.6, "has_dungeon": true, "has_important": true}, {"id": 7461, "name": "MountainCave02", "category": "dungeon", "x": 1024.0, "z": -2624.0, "px": 2222.8, "py": 1600.2, "has_dungeon": true, "has_important": true}, {"id": 7462, "name": "MountainCave02", "category": "dungeon", "x": -3904.0, "z": 4480.0, "px": 1381.7, "py": 2812.6, "has_dungeon": true, "has_important": true}, {"id": 7463, "name": "MountainCave02", "category": "dungeon", "x": 6400.0, "z": 6592.0, "px": 3140.3, "py": 3173.0, "has_dungeon": true, "has_important": true}, {"id": 7464, "name": "MountainCave02", "category": "dungeon", "x": -6656.0, "z": -1984.0, "px": 912.0, "py": 1709.4, "has_dungeon": true, "has_important": true}, {"id": 7465, "name": "MountainCave02", "category": "dungeon", "x": -5184.0, "z": 5440.0, "px": 1163.3, "py": 2976.4, "has_dungeon": true, "has_important": true}, {"id": 7466, "name": "MountainCave02", "category": "dungeon", "x": 7296.0, "z": -384.0, "px": 3293.2, "py": 1982.5, "has_dungeon": true, "has_important": true}, {"id": 7467, "name": "MountainCave02", "category": "dungeon", "x": 2688.0, "z": -2688.0, "px": 2506.8, "py": 1589.2, "has_dungeon": true, "has_important": true}, {"id": 7468, "name": "MountainCave02", "category": "dungeon", "x": 1472.0, "z": 6848.0, "px": 2299.2, "py": 3216.7, "has_dungeon": true, "has_important": true}, {"id": 7469, "name": "MountainCave02", "category": "dungeon", "x": -5312.0, "z": 5184.0, "px": 1141.4, "py": 2932.7, "has_dungeon": true, "has_important": true}, {"id": 7470, "name": "MountainCave02", "category": "dungeon", "x": 2624.0, "z": 8576.0, "px": 2495.8, "py": 3511.6, "has_dungeon": true, "has_important": true}, {"id": 7471, "name": "MountainCave02", "category": "dungeon", "x": -4480.0, "z": -4096.0, "px": 1283.4, "py": 1348.9, "has_dungeon": true, "has_important": true}, {"id": 7472, "name": "MountainCave02", "category": "dungeon", "x": 4608.0, "z": -5440.0, "px": 2834.4, "py": 1119.6, "has_dungeon": true, "has_important": true}, {"id": 7473, "name": "MountainCave02", "category": "dungeon", "x": 0.0, "z": -1152.0, "px": 2048.0, "py": 1851.4, "has_dungeon": true, "has_important": true}, {"id": 7474, "name": "MountainCave02", "category": "dungeon", "x": 4480.0, "z": -1792.0, "px": 2812.6, "py": 1742.2, "has_dungeon": true, "has_important": true}, {"id": 7475, "name": "MountainCave02", "category": "dungeon", "x": 6656.0, "z": 6784.0, "px": 3184.0, "py": 3205.8, "has_dungeon": true, "has_important": true}, {"id": 7476, "name": "MountainCave02", "category": "dungeon", "x": 2496.0, "z": -2816.0, "px": 2474.0, "py": 1567.4, "has_dungeon": true, "has_important": true}, {"id": 7477, "name": "MountainCave02", "category": "dungeon", "x": 2880.0, "z": 768.0, "px": 2539.5, "py": 2179.1, "has_dungeon": true, "has_important": true}, {"id": 7478, "name": "MountainCave02", "category": "dungeon", "x": 4800.0, "z": -5312.0, "px": 2867.2, "py": 1141.4, "has_dungeon": true, "has_important": true}, {"id": 7479, "name": "MountainCave02", "category": "dungeon", "x": 2688.0, "z": 640.0, "px": 2506.8, "py": 2157.2, "has_dungeon": true, "has_important": true}, {"id": 7480, "name": "MountainCave02", "category": "dungeon", "x": -3776.0, "z": 1408.0, "px": 1403.6, "py": 2288.3, "has_dungeon": true, "has_important": true}, {"id": 7481, "name": "MountainCave02", "category": "dungeon", "x": -832.0, "z": 8512.0, "px": 1906.0, "py": 3500.7, "has_dungeon": true, "has_important": true}, {"id": 7482, "name": "MountainCave02", "category": "dungeon", "x": 4288.0, "z": -5824.0, "px": 2779.8, "py": 1054.0, "has_dungeon": true, "has_important": true}, {"id": 7483, "name": "MountainCave02", "category": "dungeon", "x": -2112.0, "z": -512.0, "px": 1687.6, "py": 1960.6, "has_dungeon": true, "has_important": true}, {"id": 7484, "name": "MountainCave02", "category": "dungeon", "x": 2240.0, "z": -2688.0, "px": 2430.3, "py": 1589.2, "has_dungeon": true, "has_important": true}, {"id": 7485, "name": "MountainCave02", "category": "dungeon", "x": -2048.0, "z": -192.0, "px": 1698.5, "py": 2015.2, "has_dungeon": true, "has_important": true}, {"id": 7486, "name": "MountainCave02", "category": "dungeon", "x": 1728.0, "z": 6656.0, "px": 2342.9, "py": 3184.0, "has_dungeon": true, "has_important": true}, {"id": 7487, "name": "MountainCave02", "category": "dungeon", "x": -3968.0, "z": 5120.0, "px": 1370.8, "py": 2921.8, "has_dungeon": true, "has_important": true}, {"id": 7488, "name": "MountainCave02", "category": "dungeon", "x": -7616.0, "z": -2368.0, "px": 748.2, "py": 1643.9, "has_dungeon": true, "has_important": true}, {"id": 7489, "name": "MountainCave02", "category": "dungeon", "x": 7040.0, "z": -512.0, "px": 3249.5, "py": 1960.6, "has_dungeon": true, "has_important": true}, {"id": 7490, "name": "MountainCave02", "category": "dungeon", "x": -6848.0, "z": -2176.0, "px": 879.3, "py": 1676.6, "has_dungeon": true, "has_important": true}, {"id": 7491, "name": "MountainCave02", "category": "dungeon", "x": -4160.0, "z": 3200.0, "px": 1338.0, "py": 2594.1, "has_dungeon": true, "has_important": true}, {"id": 7492, "name": "MountainCave02", "category": "dungeon", "x": -8512.0, "z": -192.0, "px": 595.3, "py": 2015.2, "has_dungeon": true, "has_important": true}, {"id": 7493, "name": "MountainCave02", "category": "dungeon", "x": 1344.0, "z": 6656.0, "px": 2277.4, "py": 3184.0, "has_dungeon": true, "has_important": true}, {"id": 7494, "name": "MountainCave02", "category": "dungeon", "x": 9664.0, "z": -1216.0, "px": 3697.3, "py": 1840.5, "has_dungeon": true, "has_important": true}, {"id": 7495, "name": "MountainCave02", "category": "dungeon", "x": 3328.0, "z": 9280.0, "px": 2616.0, "py": 3631.8, "has_dungeon": true, "has_important": true}, {"id": 7496, "name": "MountainCave02", "category": "dungeon", "x": 4608.0, "z": -5824.0, "px": 2834.4, "py": 1054.0, "has_dungeon": true, "has_important": true}, {"id": 7497, "name": "MountainCave02", "category": "dungeon", "x": 1984.0, "z": -6784.0, "px": 2386.6, "py": 890.2, "has_dungeon": true, "has_important": true}, {"id": 7498, "name": "MountainCave02", "category": "dungeon", "x": -3776.0, "z": 5184.0, "px": 1403.6, "py": 2932.7, "has_dungeon": true, "has_important": true}, {"id": 7499, "name": "MountainCave02", "category": "dungeon", "x": 4480.0, "z": -2048.0, "px": 2812.6, "py": 1698.5, "has_dungeon": true, "has_important": true}, {"id": 7500, "name": "MountainCave02", "category": "dungeon", "x": -9600.0, "z": -576.0, "px": 409.6, "py": 1949.7, "has_dungeon": true, "has_important": true}, {"id": 7501, "name": "MountainCave02", "category": "dungeon", "x": -3840.0, "z": 4736.0, "px": 1392.6, "py": 2856.3, "has_dungeon": true, "has_important": true}, {"id": 7502, "name": "MountainCave02", "category": "dungeon", "x": 4800.0, "z": -5568.0, "px": 2867.2, "py": 1097.7, "has_dungeon": true, "has_important": true}, {"id": 7503, "name": "MountainCave02", "category": "dungeon", "x": 1344.0, "z": 8640.0, "px": 2277.4, "py": 3522.6, "has_dungeon": true, "has_important": true}, {"id": 7504, "name": "MountainCave02", "category": "dungeon", "x": 5504.0, "z": 64.0, "px": 2987.3, "py": 2058.9, "has_dungeon": true, "has_important": true}, {"id": 7505, "name": "MountainCave02", "category": "dungeon", "x": 5952.0, "z": 4672.0, "px": 3063.8, "py": 2845.4, "has_dungeon": true, "has_important": true}, {"id": 7506, "name": "MountainCave02", "category": "dungeon", "x": 2048.0, "z": 4736.0, "px": 2397.5, "py": 2856.3, "has_dungeon": true, "has_important": true}, {"id": 7507, "name": "MountainCave02", "category": "dungeon", "x": -5056.0, "z": 2688.0, "px": 1185.1, "py": 2506.8, "has_dungeon": true, "has_important": true}, {"id": 7508, "name": "MountainCave02", "category": "dungeon", "x": 3520.0, "z": 9216.0, "px": 2648.7, "py": 3620.9, "has_dungeon": true, "has_important": true}, {"id": 7509, "name": "MountainCave02", "category": "dungeon", "x": -2688.0, "z": 7104.0, "px": 1589.2, "py": 3260.4, "has_dungeon": true, "has_important": true}, {"id": 7510, "name": "MountainCave02", "category": "dungeon", "x": 6592.0, "z": 7104.0, "px": 3173.0, "py": 3260.4, "has_dungeon": true, "has_important": true}, {"id": 7511, "name": "MountainCave02", "category": "dungeon", "x": -6592.0, "z": -2240.0, "px": 923.0, "py": 1665.7, "has_dungeon": true, "has_important": true}, {"id": 7512, "name": "MountainCave02", "category": "dungeon", "x": 5632.0, "z": -512.0, "px": 3009.2, "py": 1960.6, "has_dungeon": true, "has_important": true}, {"id": 7513, "name": "MountainCave02", "category": "dungeon", "x": 3072.0, "z": -1920.0, "px": 2572.3, "py": 1720.3, "has_dungeon": true, "has_important": true}, {"id": 7514, "name": "MountainCave02", "category": "dungeon", "x": -3584.0, "z": 6080.0, "px": 1436.3, "py": 3085.7, "has_dungeon": true, "has_important": true}, {"id": 7515, "name": "MountainCave02", "category": "dungeon", "x": 1216.0, "z": 4864.0, "px": 2255.5, "py": 2878.1, "has_dungeon": true, "has_important": true}, {"id": 7516, "name": "MountainCave02", "category": "dungeon", "x": 3008.0, "z": 576.0, "px": 2561.4, "py": 2146.3, "has_dungeon": true, "has_important": true}, {"id": 7517, "name": "MountainCave02", "category": "dungeon", "x": 7488.0, "z": 3968.0, "px": 3326.0, "py": 2725.2, "has_dungeon": true, "has_important": true}, {"id": 7518, "name": "MountainCave02", "category": "dungeon", "x": 2560.0, "z": 8768.0, "px": 2484.9, "py": 3544.4, "has_dungeon": true, "has_important": true}, {"id": 7519, "name": "MountainCave02", "category": "dungeon", "x": -7040.0, "z": -2432.0, "px": 846.5, "py": 1632.9, "has_dungeon": true, "has_important": true}, {"id": 7520, "name": "MountainCave02", "category": "dungeon", "x": 512.0, "z": 3776.0, "px": 2135.4, "py": 2692.4, "has_dungeon": true, "has_important": true}, {"id": 7521, "name": "MountainCave02", "category": "dungeon", "x": 2240.0, "z": -3712.0, "px": 2430.3, "py": 1414.5, "has_dungeon": true, "has_important": true}, {"id": 7522, "name": "MountainCave02", "category": "dungeon", "x": -4032.0, "z": 1408.0, "px": 1359.9, "py": 2288.3, "has_dungeon": true, "has_important": true}, {"id": 7523, "name": "MountainCave02", "category": "dungeon", "x": 6016.0, "z": 4288.0, "px": 3074.7, "py": 2779.8, "has_dungeon": true, "has_important": true}, {"id": 7524, "name": "MountainCave02", "category": "dungeon", "x": 4288.0, "z": -1856.0, "px": 2779.8, "py": 1731.2, "has_dungeon": true, "has_important": true}, {"id": 7525, "name": "MountainCave02", "category": "dungeon", "x": -4160.0, "z": -4032.0, "px": 1338.0, "py": 1359.9, "has_dungeon": true, "has_important": true}, {"id": 7526, "name": "MountainCave02", "category": "dungeon", "x": 2560.0, "z": 8960.0, "px": 2484.9, "py": 3577.2, "has_dungeon": true, "has_important": true}, {"id": 7527, "name": "MountainCave02", "category": "dungeon", "x": -3392.0, "z": 6336.0, "px": 1469.1, "py": 3129.3, "has_dungeon": true, "has_important": true}, {"id": 7528, "name": "MountainCave02", "category": "dungeon", "x": -6848.0, "z": 6848.0, "px": 879.3, "py": 3216.7, "has_dungeon": true, "has_important": true}, {"id": 7529, "name": "MountainCave02", "category": "dungeon", "x": 2496.0, "z": -3008.0, "px": 2474.0, "py": 1534.6, "has_dungeon": true, "has_important": true}, {"id": 7530, "name": "MountainCave02", "category": "dungeon", "x": 5312.0, "z": -64.0, "px": 2954.6, "py": 2037.1, "has_dungeon": true, "has_important": true}, {"id": 7531, "name": "MountainCave02", "category": "dungeon", "x": 6016.0, "z": 4480.0, "px": 3074.7, "py": 2812.6, "has_dungeon": true, "has_important": true}, {"id": 7532, "name": "MountainCave02", "category": "dungeon", "x": -9984.0, "z": -512.0, "px": 344.1, "py": 1960.6, "has_dungeon": true, "has_important": true}, {"id": 7533, "name": "MountainCave02", "category": "dungeon", "x": -8576.0, "z": -960.0, "px": 584.4, "py": 1884.2, "has_dungeon": true, "has_important": true}, {"id": 7534, "name": "MountainCave02", "category": "dungeon", "x": 896.0, "z": -2432.0, "px": 2200.9, "py": 1632.9, "has_dungeon": true, "has_important": true}, {"id": 7535, "name": "MountainCave02", "category": "dungeon", "x": -9792.0, "z": -704.0, "px": 376.8, "py": 1927.9, "has_dungeon": true, "has_important": true}, {"id": 7536, "name": "MountainCave02", "category": "dungeon", "x": 2112.0, "z": -3520.0, "px": 2408.4, "py": 1447.3, "has_dungeon": true, "has_important": true}, {"id": 7537, "name": "MountainCave02", "category": "dungeon", "x": 6272.0, "z": 6784.0, "px": 3118.4, "py": 3205.8, "has_dungeon": true, "has_important": true}, {"id": 7538, "name": "MountainCave02", "category": "dungeon", "x": 6208.0, "z": 4544.0, "px": 3107.5, "py": 2823.5, "has_dungeon": true, "has_important": true}, {"id": 7539, "name": "MountainCave02", "category": "dungeon", "x": 1280.0, "z": -4992.0, "px": 2266.5, "py": 1196.0, "has_dungeon": true, "has_important": true}, {"id": 7540, "name": "MountainCave02", "category": "dungeon", "x": 1344.0, "z": 7040.0, "px": 2277.4, "py": 3249.5, "has_dungeon": true, "has_important": true}, {"id": 7541, "name": "MountainCave02", "category": "dungeon", "x": -320.0, "z": -1280.0, "px": 1993.4, "py": 1829.5, "has_dungeon": true, "has_important": true}, {"id": 7542, "name": "MountainCave02", "category": "dungeon", "x": 1088.0, "z": 128.0, "px": 2233.7, "py": 2069.8, "has_dungeon": true, "has_important": true}, {"id": 7543, "name": "MountainCave02", "category": "dungeon", "x": -3904.0, "z": 1728.0, "px": 1381.7, "py": 2342.9, "has_dungeon": true, "has_important": true}, {"id": 7544, "name": "MountainCave02", "category": "dungeon", "x": -2432.0, "z": 1920.0, "px": 1632.9, "py": 2375.7, "has_dungeon": true, "has_important": true}, {"id": 7545, "name": "MountainCave02", "category": "dungeon", "x": -192.0, "z": -1536.0, "px": 2015.2, "py": 1785.9, "has_dungeon": true, "has_important": true}, {"id": 7546, "name": "MountainCave02", "category": "dungeon", "x": -4480.0, "z": -64.0, "px": 1283.4, "py": 2037.1, "has_dungeon": true, "has_important": true}, {"id": 7547, "name": "MountainCave02", "category": "dungeon", "x": 5760.0, "z": 4480.0, "px": 3031.0, "py": 2812.6, "has_dungeon": true, "has_important": true}, {"id": 7548, "name": "MountainCave02", "category": "dungeon", "x": -960.0, "z": 8704.0, "px": 1884.2, "py": 3533.5, "has_dungeon": true, "has_important": true}, {"id": 7549, "name": "MountainCave02", "category": "dungeon", "x": 2496.0, "z": -2560.0, "px": 2474.0, "py": 1611.1, "has_dungeon": true, "has_important": true}, {"id": 7550, "name": "MountainCave02", "category": "dungeon", "x": 1280.0, "z": 320.0, "px": 2266.5, "py": 2102.6, "has_dungeon": true, "has_important": true}, {"id": 7551, "name": "MountainCave02", "category": "dungeon", "x": -1920.0, "z": -576.0, "px": 1720.3, "py": 1949.7, "has_dungeon": true, "has_important": true}, {"id": 7552, "name": "MountainCave02", "category": "dungeon", "x": -128.0, "z": -4096.0, "px": 2026.2, "py": 1348.9, "has_dungeon": true, "has_important": true}, {"id": 7553, "name": "MountainCave02", "category": "dungeon", "x": -6080.0, "z": -320.0, "px": 1010.3, "py": 1993.4, "has_dungeon": true, "has_important": true}, {"id": 7554, "name": "MountainCave02", "category": "dungeon", "x": 3776.0, "z": -128.0, "px": 2692.4, "py": 2026.2, "has_dungeon": true, "has_important": true}, {"id": 7555, "name": "MountainCave02", "category": "dungeon", "x": -6272.0, "z": -448.0, "px": 977.6, "py": 1971.5, "has_dungeon": true, "has_important": true}, {"id": 7556, "name": "MountainCave02", "category": "dungeon", "x": -3200.0, "z": 2752.0, "px": 1501.9, "py": 2517.7, "has_dungeon": true, "has_important": true}, {"id": 7557, "name": "MountainCave02", "category": "dungeon", "x": 3264.0, "z": 256.0, "px": 2605.1, "py": 2091.7, "has_dungeon": true, "has_important": true}, {"id": 7558, "name": "MountainCave02", "category": "dungeon", "x": -4416.0, "z": -3840.0, "px": 1294.3, "py": 1392.6, "has_dungeon": true, "has_important": true}, {"id": 7559, "name": "MountainCave02", "category": "dungeon", "x": -4096.0, "z": 1600.0, "px": 1348.9, "py": 2321.1, "has_dungeon": true, "has_important": true}, {"id": 7560, "name": "MountainCave02", "category": "dungeon", "x": 9344.0, "z": -2240.0, "px": 3642.7, "py": 1665.7, "has_dungeon": true, "has_important": true}, {"id": 7561, "name": "MountainCave02", "category": "dungeon", "x": -6208.0, "z": -640.0, "px": 988.5, "py": 1938.8, "has_dungeon": true, "has_important": true}, {"id": 7562, "name": "MountainCave02", "category": "dungeon", "x": 5632.0, "z": 2304.0, "px": 3009.2, "py": 2441.2, "has_dungeon": true, "has_important": true}, {"id": 7563, "name": "MountainCave02", "category": "dungeon", "x": -3584.0, "z": 1472.0, "px": 1436.3, "py": 2299.2, "has_dungeon": true, "has_important": true}, {"id": 7564, "name": "MountainCave02", "category": "dungeon", "x": 6400.0, "z": 7040.0, "px": 3140.3, "py": 3249.5, "has_dungeon": true, "has_important": true}, {"id": 7565, "name": "MountainCave02", "category": "dungeon", "x": -256.0, "z": 9152.0, "px": 2004.3, "py": 3609.9, "has_dungeon": true, "has_important": true}, {"id": 7566, "name": "MountainCave02", "category": "dungeon", "x": -4288.0, "z": -1216.0, "px": 1316.2, "py": 1840.5, "has_dungeon": true, "has_important": true}, {"id": 7567, "name": "MountainCave02", "category": "dungeon", "x": 2048.0, "z": -1600.0, "px": 2397.5, "py": 1774.9, "has_dungeon": true, "has_important": true}, {"id": 7568, "name": "MountainCave02", "category": "dungeon", "x": 1536.0, "z": 6592.0, "px": 2310.1, "py": 3173.0, "has_dungeon": true, "has_important": true}, {"id": 7569, "name": "MountainCave02", "category": "dungeon", "x": -5376.0, "z": 4992.0, "px": 1130.5, "py": 2900.0, "has_dungeon": true, "has_important": true}, {"id": 7570, "name": "MountainCave02", "category": "dungeon", "x": 1600.0, "z": 7040.0, "px": 2321.1, "py": 3249.5, "has_dungeon": true, "has_important": true}, {"id": 7571, "name": "MountainCave02", "category": "dungeon", "x": -7232.0, "z": -1024.0, "px": 813.7, "py": 1873.2, "has_dungeon": true, "has_important": true}, {"id": 7572, "name": "MountainCave02", "category": "dungeon", "x": 3648.0, "z": -704.0, "px": 2670.6, "py": 1927.9, "has_dungeon": true, "has_important": true}, {"id": 7573, "name": "MountainCave02", "category": "dungeon", "x": 2304.0, "z": -2880.0, "px": 2441.2, "py": 1556.5, "has_dungeon": true, "has_important": true}, {"id": 7574, "name": "MountainCave02", "category": "dungeon", "x": 5760.0, "z": 4800.0, "px": 3031.0, "py": 2867.2, "has_dungeon": true, "has_important": true}, {"id": 18, "name": "SunkenCrypt4", "category": "dungeon", "x": 2438.5, "z": -1087.3, "px": 2464.2, "py": 1862.4, "has_dungeon": true, "has_important": true}, {"id": 19, "name": "SunkenCrypt4", "category": "dungeon", "x": 3320.3, "z": 4792.1, "px": 2614.7, "py": 2865.9, "has_dungeon": true, "has_important": true}, {"id": 20, "name": "SunkenCrypt4", "category": "dungeon", "x": -2682.3, "z": -5191.9, "px": 1590.2, "py": 1161.9, "has_dungeon": true, "has_important": true}, {"id": 21, "name": "SunkenCrypt4", "category": "dungeon", "x": -4146.8, "z": 3646.5, "px": 1340.3, "py": 2670.3, "has_dungeon": true, "has_important": true}, {"id": 22, "name": "SunkenCrypt4", "category": "dungeon", "x": -4353.9, "z": 1157.7, "px": 1304.9, "py": 2245.6, "has_dungeon": true, "has_important": true}, {"id": 23, "name": "SunkenCrypt4", "category": "dungeon", "x": -590.9, "z": -3594.7, "px": 1947.2, "py": 1434.5, "has_dungeon": true, "has_important": true}, {"id": 24, "name": "SunkenCrypt4", "category": "dungeon", "x": 2365.0, "z": 184.9, "px": 2451.6, "py": 2079.6, "has_dungeon": true, "has_important": true}, {"id": 25, "name": "SunkenCrypt4", "category": "dungeon", "x": 1095.0, "z": 4349.5, "px": 2234.9, "py": 2790.3, "has_dungeon": true, "has_important": true}, {"id": 26, "name": "SunkenCrypt4", "category": "dungeon", "x": -3714.0, "z": -4105.5, "px": 1414.1, "py": 1347.3, "has_dungeon": true, "has_important": true}, {"id": 27, "name": "SunkenCrypt4", "category": "dungeon", "x": -3648.3, "z": -4161.2, "px": 1425.4, "py": 1337.8, "has_dungeon": true, "has_important": true}, {"id": 28, "name": "SunkenCrypt4", "category": "dungeon", "x": 4720.8, "z": -717.3, "px": 2853.7, "py": 1925.6, "has_dungeon": true, "has_important": true}, {"id": 29, "name": "SunkenCrypt4", "category": "dungeon", "x": -4342.2, "z": 1229.9, "px": 1306.9, "py": 2257.9, "has_dungeon": true, "has_important": true}, {"id": 30, "name": "SunkenCrypt4", "category": "dungeon", "x": -525.6, "z": -3575.0, "px": 1958.3, "py": 1437.9, "has_dungeon": true, "has_important": true}, {"id": 31, "name": "SunkenCrypt4", "category": "dungeon", "x": 3723.6, "z": 816.0, "px": 2683.5, "py": 2187.3, "has_dungeon": true, "has_important": true}, {"id": 32, "name": "SunkenCrypt4", "category": "dungeon", "x": 3386.5, "z": -4286.1, "px": 2626.0, "py": 1316.5, "has_dungeon": true, "has_important": true}, {"id": 33, "name": "SunkenCrypt4", "category": "dungeon", "x": 1739.5, "z": 4407.1, "px": 2344.9, "py": 2800.1, "has_dungeon": true, "has_important": true}, {"id": 34, "name": "SunkenCrypt4", "category": "dungeon", "x": 1475.7, "z": 2164.3, "px": 2299.9, "py": 2417.4, "has_dungeon": true, "has_important": true}, {"id": 35, "name": "SunkenCrypt4", "category": "dungeon", "x": -209.6, "z": 2703.7, "px": 2012.2, "py": 2509.4, "has_dungeon": true, "has_important": true}, {"id": 36, "name": "SunkenCrypt4", "category": "dungeon", "x": -2570.0, "z": -1520.8, "px": 1609.4, "py": 1788.5, "has_dungeon": true, "has_important": true}, {"id": 37, "name": "SunkenCrypt4", "category": "dungeon", "x": -384.0, "z": 2571.6, "px": 1982.5, "py": 2486.9, "has_dungeon": true, "has_important": true}, {"id": 38, "name": "SunkenCrypt4", "category": "dungeon", "x": -2445.9, "z": -4152.3, "px": 1630.6, "py": 1339.3, "has_dungeon": true, "has_important": true}, {"id": 39, "name": "SunkenCrypt4", "category": "dungeon", "x": -562.3, "z": -4030.4, "px": 1952.0, "py": 1360.1, "has_dungeon": true, "has_important": true}, {"id": 40, "name": "SunkenCrypt4", "category": "dungeon", "x": 464.9, "z": 2558.6, "px": 2127.3, "py": 2484.7, "has_dungeon": true, "has_important": true}, {"id": 41, "name": "SunkenCrypt4", "category": "dungeon", "x": -4227.6, "z": 396.2, "px": 1326.5, "py": 2115.6, "has_dungeon": true, "has_important": true}, {"id": 42, "name": "SunkenCrypt4", "category": "dungeon", "x": 3699.8, "z": 4355.8, "px": 2679.4, "py": 2791.4, "has_dungeon": true, "has_important": true}, {"id": 43, "name": "SunkenCrypt4", "category": "dungeon", "x": -4994.4, "z": 1343.0, "px": 1195.6, "py": 2277.2, "has_dungeon": true, "has_important": true}, {"id": 44, "name": "SunkenCrypt4", "category": "dungeon", "x": -187.0, "z": 2492.5, "px": 2016.1, "py": 2473.4, "has_dungeon": true, "has_important": true}, {"id": 45, "name": "SunkenCrypt4", "category": "dungeon", "x": -2578.0, "z": -1589.3, "px": 1608.0, "py": 1776.8, "has_dungeon": true, "has_important": true}, {"id": 46, "name": "SunkenCrypt4", "category": "dungeon", "x": -2351.2, "z": 4805.5, "px": 1646.7, "py": 2868.1, "has_dungeon": true, "has_important": true}, {"id": 47, "name": "SunkenCrypt4", "category": "dungeon", "x": -2414.9, "z": 4847.7, "px": 1635.9, "py": 2875.3, "has_dungeon": true, "has_important": true}, {"id": 48, "name": "SunkenCrypt4", "category": "dungeon", "x": -5066.2, "z": 1345.8, "px": 1183.4, "py": 2277.7, "has_dungeon": true, "has_important": true}, {"id": 49, "name": "SunkenCrypt4", "category": "dungeon", "x": -2494.1, "z": 4982.9, "px": 1622.3, "py": 2898.4, "has_dungeon": true, "has_important": true}, {"id": 50, "name": "SunkenCrypt4", "category": "dungeon", "x": -773.5, "z": -3723.6, "px": 1916.0, "py": 1412.5, "has_dungeon": true, "has_important": true}, {"id": 51, "name": "SunkenCrypt4", "category": "dungeon", "x": 4555.6, "z": -3149.3, "px": 2825.5, "py": 1510.5, "has_dungeon": true, "has_important": true}, {"id": 52, "name": "SunkenCrypt4", "category": "dungeon", "x": 1297.8, "z": 2051.9, "px": 2269.5, "py": 2398.2, "has_dungeon": true, "has_important": true}, {"id": 53, "name": "SunkenCrypt4", "category": "dungeon", "x": -2806.7, "z": -5166.8, "px": 1569.0, "py": 1166.2, "has_dungeon": true, "has_important": true}, {"id": 54, "name": "SunkenCrypt4", "category": "dungeon", "x": 133.7, "z": 2553.3, "px": 2070.8, "py": 2483.8, "has_dungeon": true, "has_important": true}, {"id": 55, "name": "SunkenCrypt4", "category": "dungeon", "x": -5323.0, "z": -1724.1, "px": 1139.5, "py": 1753.8, "has_dungeon": true, "has_important": true}, {"id": 56, "name": "SunkenCrypt4", "category": "dungeon", "x": 2178.8, "z": -3206.1, "px": 2419.8, "py": 1500.8, "has_dungeon": true, "has_important": true}, {"id": 57, "name": "SunkenCrypt4", "category": "dungeon", "x": 3789.7, "z": 4478.3, "px": 2694.8, "py": 2812.3, "has_dungeon": true, "has_important": true}, {"id": 58, "name": "SunkenCrypt4", "category": "dungeon", "x": 1550.5, "z": 2242.3, "px": 2312.6, "py": 2430.7, "has_dungeon": true, "has_important": true}, {"id": 59, "name": "SunkenCrypt4", "category": "dungeon", "x": -3448.5, "z": 3407.3, "px": 1459.5, "py": 2629.5, "has_dungeon": true, "has_important": true}, {"id": 60, "name": "SunkenCrypt4", "category": "dungeon", "x": -5388.9, "z": 1521.4, "px": 1128.3, "py": 2307.7, "has_dungeon": true, "has_important": true}, {"id": 61, "name": "SunkenCrypt4", "category": "dungeon", "x": -3631.6, "z": 3121.5, "px": 1428.2, "py": 2580.7, "has_dungeon": true, "has_important": true}, {"id": 62, "name": "SunkenCrypt4", "category": "dungeon", "x": -2356.3, "z": -1007.5, "px": 1645.9, "py": 1876.1, "has_dungeon": true, "has_important": true}, {"id": 63, "name": "SunkenCrypt4", "category": "dungeon", "x": 1654.7, "z": 4477.8, "px": 2330.4, "py": 2812.2, "has_dungeon": true, "has_important": true}, {"id": 64, "name": "SunkenCrypt4", "category": "dungeon", "x": -4300.6, "z": 656.9, "px": 1314.0, "py": 2160.1, "has_dungeon": true, "has_important": true}, {"id": 65, "name": "SunkenCrypt4", "category": "dungeon", "x": -4301.0, "z": 516.6, "px": 1314.0, "py": 2136.2, "has_dungeon": true, "has_important": true}, {"id": 66, "name": "SunkenCrypt4", "category": "dungeon", "x": -2736.5, "z": -1736.3, "px": 1581.0, "py": 1751.7, "has_dungeon": true, "has_important": true}, {"id": 67, "name": "SunkenCrypt4", "category": "dungeon", "x": -79.4, "z": 2703.3, "px": 2034.4, "py": 2509.4, "has_dungeon": true, "has_important": true}, {"id": 68, "name": "SunkenCrypt4", "category": "dungeon", "x": -3123.2, "z": 395.0, "px": 1515.0, "py": 2115.4, "has_dungeon": true, "has_important": true}, {"id": 69, "name": "SunkenCrypt4", "category": "dungeon", "x": 2314.6, "z": -1080.4, "px": 2443.0, "py": 1863.6, "has_dungeon": true, "has_important": true}, {"id": 70, "name": "SunkenCrypt4", "category": "dungeon", "x": 2613.0, "z": -138.8, "px": 2494.0, "py": 2024.3, "has_dungeon": true, "has_important": true}, {"id": 71, "name": "SunkenCrypt4", "category": "dungeon", "x": 1918.6, "z": 1526.0, "px": 2375.4, "py": 2308.4, "has_dungeon": true, "has_important": true}, {"id": 72, "name": "SunkenCrypt4", "category": "dungeon", "x": 4479.3, "z": -2945.6, "px": 2812.5, "py": 1545.3, "has_dungeon": true, "has_important": true}, {"id": 73, "name": "SunkenCrypt4", "category": "dungeon", "x": -2615.5, "z": -950.2, "px": 1601.6, "py": 1885.8, "has_dungeon": true, "has_important": true}, {"id": 74, "name": "SunkenCrypt4", "category": "dungeon", "x": 4783.1, "z": -691.7, "px": 2864.3, "py": 1929.9, "has_dungeon": true, "has_important": true}, {"id": 75, "name": "SunkenCrypt4", "category": "dungeon", "x": -5701.0, "z": -1147.1, "px": 1075.0, "py": 1852.2, "has_dungeon": true, "has_important": true}, {"id": 76, "name": "SunkenCrypt4", "category": "dungeon", "x": -2491.8, "z": -4097.4, "px": 1622.7, "py": 1348.7, "has_dungeon": true, "has_important": true}, {"id": 77, "name": "SunkenCrypt4", "category": "dungeon", "x": 2296.4, "z": -3207.7, "px": 2439.9, "py": 1500.6, "has_dungeon": true, "has_important": true}, {"id": 78, "name": "SunkenCrypt4", "category": "dungeon", "x": 4463.0, "z": -3019.3, "px": 2809.7, "py": 1532.7, "has_dungeon": true, "has_important": true}, {"id": 79, "name": "SunkenCrypt4", "category": "dungeon", "x": -952.0, "z": -5685.9, "px": 1885.5, "py": 1077.6, "has_dungeon": true, "has_important": true}, {"id": 80, "name": "SunkenCrypt4", "category": "dungeon", "x": 2377.0, "z": -1156.8, "px": 2453.7, "py": 1850.6, "has_dungeon": true, "has_important": true}, {"id": 81, "name": "SunkenCrypt4", "category": "dungeon", "x": -888.8, "z": -3716.9, "px": 1896.3, "py": 1413.6, "has_dungeon": true, "has_important": true}, {"id": 82, "name": "SunkenCrypt4", "category": "dungeon", "x": -629.5, "z": -3515.5, "px": 1940.6, "py": 1448.0, "has_dungeon": true, "has_important": true}, {"id": 83, "name": "SunkenCrypt4", "category": "dungeon", "x": 1649.5, "z": 4335.2, "px": 2329.5, "py": 2787.9, "has_dungeon": true, "has_important": true}, {"id": 84, "name": "SunkenCrypt4", "category": "dungeon", "x": 1293.6, "z": 2251.1, "px": 2268.8, "py": 2432.2, "has_dungeon": true, "has_important": true}, {"id": 85, "name": "SunkenCrypt4", "category": "dungeon", "x": -1139.7, "z": -5705.5, "px": 1853.5, "py": 1074.3, "has_dungeon": true, "has_important": true}, {"id": 86, "name": "SunkenCrypt4", "category": "dungeon", "x": -3576.1, "z": 180.7, "px": 1437.7, "py": 2078.8, "has_dungeon": true, "has_important": true}, {"id": 87, "name": "SunkenCrypt4", "category": "dungeon", "x": 3310.7, "z": -4417.7, "px": 2613.0, "py": 1294.0, "has_dungeon": true, "has_important": true}, {"id": 88, "name": "SunkenCrypt4", "category": "dungeon", "x": 2353.7, "z": 270.7, "px": 2449.7, "py": 2094.2, "has_dungeon": true, "has_important": true}, {"id": 89, "name": "SunkenCrypt4", "category": "dungeon", "x": -1936.1, "z": 4537.9, "px": 1717.6, "py": 2822.5, "has_dungeon": true, "has_important": true}, {"id": 90, "name": "SunkenCrypt4", "category": "dungeon", "x": -582.8, "z": -3968.2, "px": 1948.5, "py": 1370.8, "has_dungeon": true, "has_important": true}, {"id": 91, "name": "SunkenCrypt4", "category": "dungeon", "x": -5102.0, "z": -771.2, "px": 1177.3, "py": 1916.4, "has_dungeon": true, "has_important": true}, {"id": 92, "name": "SunkenCrypt4", "category": "dungeon", "x": 1287.0, "z": 2118.5, "px": 2267.6, "py": 2409.6, "has_dungeon": true, "has_important": true}, {"id": 93, "name": "SunkenCrypt4", "category": "dungeon", "x": -5688.0, "z": -1080.8, "px": 1077.2, "py": 1863.5, "has_dungeon": true, "has_important": true}, {"id": 94, "name": "SunkenCrypt4", "category": "dungeon", "x": 4547.2, "z": -3269.9, "px": 2824.1, "py": 1489.9, "has_dungeon": true, "has_important": true}, {"id": 95, "name": "SunkenCrypt4", "category": "dungeon", "x": -4304.7, "z": 337.4, "px": 1313.3, "py": 2105.6, "has_dungeon": true, "has_important": true}, {"id": 96, "name": "SunkenCrypt4", "category": "dungeon", "x": -116.2, "z": 2562.7, "px": 2028.2, "py": 2485.4, "has_dungeon": true, "has_important": true}, {"id": 97, "name": "SunkenCrypt4", "category": "dungeon", "x": 2738.0, "z": 3658.2, "px": 2515.3, "py": 2672.3, "has_dungeon": true, "has_important": true}, {"id": 98, "name": "SunkenCrypt4", "category": "dungeon", "x": 2425.8, "z": -1021.2, "px": 2462.0, "py": 1873.7, "has_dungeon": true, "has_important": true}, {"id": 99, "name": "SunkenCrypt4", "category": "dungeon", "x": -1920.0, "z": 4600.7, "px": 1720.3, "py": 2833.2, "has_dungeon": true, "has_important": true}, {"id": 100, "name": "SunkenCrypt4", "category": "dungeon", "x": 2508.7, "z": -5306.2, "px": 2476.2, "py": 1142.4, "has_dungeon": true, "has_important": true}, {"id": 101, "name": "SunkenCrypt4", "category": "dungeon", "x": -1014.2, "z": -5639.2, "px": 1874.9, "py": 1085.6, "has_dungeon": true, "has_important": true}, {"id": 102, "name": "SunkenCrypt4", "category": "dungeon", "x": -5252.9, "z": -769.4, "px": 1151.5, "py": 1916.7, "has_dungeon": true, "has_important": true}, {"id": 103, "name": "SunkenCrypt4", "category": "dungeon", "x": -5489.1, "z": 1993.6, "px": 1111.2, "py": 2388.2, "has_dungeon": true, "has_important": true}, {"id": 104, "name": "SunkenCrypt4", "category": "dungeon", "x": 1020.1, "z": 4295.3, "px": 2222.1, "py": 2781.1, "has_dungeon": true, "has_important": true}, {"id": 105, "name": "SunkenCrypt4", "category": "dungeon", "x": 197.3, "z": 2575.2, "px": 2081.7, "py": 2487.5, "has_dungeon": true, "has_important": true}, {"id": 106, "name": "SunkenCrypt4", "category": "dungeon", "x": -2182.9, "z": 4304.1, "px": 1675.5, "py": 2782.6, "has_dungeon": true, "has_important": true}, {"id": 107, "name": "SunkenCrypt4", "category": "dungeon", "x": -2631.9, "z": -882.8, "px": 1598.8, "py": 1897.3, "has_dungeon": true, "has_important": true}, {"id": 108, "name": "SunkenCrypt4", "category": "dungeon", "x": 521.3, "z": 2624.5, "px": 2137.0, "py": 2495.9, "has_dungeon": true, "has_important": true}, {"id": 109, "name": "SunkenCrypt4", "category": "dungeon", "x": -1078.2, "z": -3658.3, "px": 1864.0, "py": 1423.7, "has_dungeon": true, "has_important": true}, {"id": 110, "name": "SunkenCrypt4", "category": "dungeon", "x": 1466.6, "z": 2232.4, "px": 2298.3, "py": 2429.0, "has_dungeon": true, "has_important": true}, {"id": 111, "name": "SunkenCrypt4", "category": "dungeon", "x": -264.5, "z": 2509.6, "px": 2002.9, "py": 2476.3, "has_dungeon": true, "has_important": true}, {"id": 112, "name": "SunkenCrypt4", "category": "dungeon", "x": 2361.0, "z": -3273.3, "px": 2450.9, "py": 1489.4, "has_dungeon": true, "has_important": true}, {"id": 113, "name": "SunkenCrypt4", "category": "dungeon", "x": 1402.0, "z": 2222.3, "px": 2287.3, "py": 2427.3, "has_dungeon": true, "has_important": true}, {"id": 114, "name": "SunkenCrypt4", "category": "dungeon", "x": 1607.7, "z": 2117.6, "px": 2322.4, "py": 2409.4, "has_dungeon": true, "has_important": true}, {"id": 115, "name": "SunkenCrypt4", "category": "dungeon", "x": -61.9, "z": 2612.1, "px": 2037.4, "py": 2493.8, "has_dungeon": true, "has_important": true}, {"id": 116, "name": "SunkenCrypt4", "category": "dungeon", "x": 2291.5, "z": 250.0, "px": 2439.1, "py": 2090.7, "has_dungeon": true, "has_important": true}, {"id": 117, "name": "SunkenCrypt4", "category": "dungeon", "x": 272.2, "z": 2565.9, "px": 2094.5, "py": 2485.9, "has_dungeon": true, "has_important": true}, {"id": 118, "name": "SunkenCrypt4", "category": "dungeon", "x": -2309.6, "z": 4288.3, "px": 1653.8, "py": 2779.9, "has_dungeon": true, "has_important": true}, {"id": 119, "name": "SunkenCrypt4", "category": "dungeon", "x": -5197.6, "z": 1466.1, "px": 1160.9, "py": 2298.2, "has_dungeon": true, "has_important": true}, {"id": 120, "name": "SunkenCrypt4", "category": "dungeon", "x": -5252.1, "z": -1711.3, "px": 1151.6, "py": 1755.9, "has_dungeon": true, "has_important": true}, {"id": 121, "name": "SunkenCrypt4", "category": "dungeon", "x": -4236.9, "z": 465.5, "px": 1324.9, "py": 2127.4, "has_dungeon": true, "has_important": true}, {"id": 122, "name": "SunkenCrypt4", "category": "dungeon", "x": 2226.5, "z": 268.7, "px": 2428.0, "py": 2093.9, "has_dungeon": true, "has_important": true}, {"id": 123, "name": "SunkenCrypt4", "category": "dungeon", "x": 2317.7, "z": 334.7, "px": 2443.6, "py": 2105.1, "has_dungeon": true, "has_important": true}, {"id": 124, "name": "SunkenCrypt4", "category": "dungeon", "x": 3454.8, "z": -4349.8, "px": 2637.6, "py": 1305.6, "has_dungeon": true, "has_important": true}, {"id": 125, "name": "SunkenCrypt4", "category": "dungeon", "x": -5361.6, "z": 1717.9, "px": 1133.0, "py": 2341.2, "has_dungeon": true, "has_important": true}, {"id": 126, "name": "SunkenCrypt4", "category": "dungeon", "x": 2176.0, "z": 447.6, "px": 2419.4, "py": 2124.4, "has_dungeon": true, "has_important": true}, {"id": 127, "name": "SunkenCrypt4", "category": "dungeon", "x": 3631.1, "z": 716.1, "px": 2667.7, "py": 2170.2, "has_dungeon": true, "has_important": true}, {"id": 128, "name": "SunkenCrypt4", "category": "dungeon", "x": -963.5, "z": -3775.8, "px": 1883.6, "py": 1403.6, "has_dungeon": true, "has_important": true}, {"id": 129, "name": "SunkenCrypt4", "category": "dungeon", "x": -3081.8, "z": 578.8, "px": 1522.0, "py": 2146.8, "has_dungeon": true, "has_important": true}, {"id": 130, "name": "SunkenCrypt4", "category": "dungeon", "x": 4748.1, "z": -509.7, "px": 2858.3, "py": 1961.0, "has_dungeon": true, "has_important": true}, {"id": 131, "name": "SunkenCrypt4", "category": "dungeon", "x": 64.3, "z": 2610.1, "px": 2059.0, "py": 2493.5, "has_dungeon": true, "has_important": true}, {"id": 132, "name": "SunkenCrypt4", "category": "dungeon", "x": -2767.1, "z": -1805.5, "px": 1575.7, "py": 1739.9, "has_dungeon": true, "has_important": true}, {"id": 133, "name": "SunkenCrypt4", "category": "dungeon", "x": -2637.3, "z": -5254.9, "px": 1597.9, "py": 1151.2, "has_dungeon": true, "has_important": true}, {"id": 134, "name": "SunkenCrypt4", "category": "dungeon", "x": -3640.2, "z": 3214.4, "px": 1426.7, "py": 2596.6, "has_dungeon": true, "has_important": true}, {"id": 135, "name": "SunkenCrypt4", "category": "dungeon", "x": 2251.6, "z": 335.0, "px": 2432.3, "py": 2105.2, "has_dungeon": true, "has_important": true}, {"id": 136, "name": "SunkenCrypt4", "category": "dungeon", "x": 1096.3, "z": -3647.7, "px": 2235.1, "py": 1425.5, "has_dungeon": true, "has_important": true}, {"id": 137, "name": "SunkenCrypt4", "category": "dungeon", "x": 2561.4, "z": -16.1, "px": 2485.1, "py": 2045.3, "has_dungeon": true, "has_important": true}, {"id": 138, "name": "SunkenCrypt4", "category": "dungeon", "x": -2417.8, "z": -4091.4, "px": 1635.4, "py": 1349.7, "has_dungeon": true, "has_important": true}, {"id": 139, "name": "SunkenCrypt4", "category": "dungeon", "x": 3504.5, "z": 1327.7, "px": 2646.1, "py": 2274.6, "has_dungeon": true, "has_important": true}, {"id": 140, "name": "SunkenCrypt4", "category": "dungeon", "x": 383.1, "z": 2565.9, "px": 2113.4, "py": 2485.9, "has_dungeon": true, "has_important": true}, {"id": 141, "name": "SunkenCrypt4", "category": "dungeon", "x": -3468.1, "z": 180.0, "px": 1456.1, "py": 2078.7, "has_dungeon": true, "has_important": true}, {"id": 142, "name": "SunkenCrypt4", "category": "dungeon", "x": -5046.4, "z": 1265.2, "px": 1186.7, "py": 2263.9, "has_dungeon": true, "has_important": true}, {"id": 143, "name": "SunkenCrypt4", "category": "dungeon", "x": 4484.2, "z": -3187.4, "px": 2813.3, "py": 1504.0, "has_dungeon": true, "has_important": true}, {"id": 144, "name": "SunkenCrypt4", "category": "dungeon", "x": 1488.4, "z": 1973.9, "px": 2302.0, "py": 2384.9, "has_dungeon": true, "has_important": true}, {"id": 145, "name": "SunkenCrypt4", "category": "dungeon", "x": -5130.3, "z": 1350.3, "px": 1172.4, "py": 2278.5, "has_dungeon": true, "has_important": true}, {"id": 146, "name": "SunkenCrypt4", "category": "dungeon", "x": -1070.8, "z": -5708.6, "px": 1865.3, "py": 1073.7, "has_dungeon": true, "has_important": true}, {"id": 147, "name": "SunkenCrypt4", "category": "dungeon", "x": -3130.3, "z": 497.4, "px": 1513.8, "py": 2132.9, "has_dungeon": true, "has_important": true}, {"id": 148, "name": "SunkenCrypt4", "category": "dungeon", "x": 586.4, "z": 2679.5, "px": 2148.1, "py": 2505.3, "has_dungeon": true, "has_important": true}, {"id": 149, "name": "SunkenCrypt4", "category": "dungeon", "x": 1404.0, "z": 1975.1, "px": 2287.6, "py": 2385.1, "has_dungeon": true, "has_important": true}, {"id": 150, "name": "SunkenCrypt4", "category": "dungeon", "x": 3631.8, "z": 1023.6, "px": 2667.8, "py": 2222.7, "has_dungeon": true, "has_important": true}, {"id": 151, "name": "SunkenCrypt4", "category": "dungeon", "x": -3642.6, "z": -4094.0, "px": 1426.3, "py": 1349.3, "has_dungeon": true, "has_important": true}, {"id": 152, "name": "SunkenCrypt4", "category": "dungeon", "x": 3722.0, "z": 717.5, "px": 2683.2, "py": 2170.5, "has_dungeon": true, "has_important": true}, {"id": 153, "name": "SunkenCrypt4", "category": "dungeon", "x": -5179.6, "z": 1393.9, "px": 1164.0, "py": 2285.9, "has_dungeon": true, "has_important": true}, {"id": 154, "name": "SunkenCrypt4", "category": "dungeon", "x": -2430.0, "z": 4939.6, "px": 1633.3, "py": 2891.0, "has_dungeon": true, "has_important": true}, {"id": 155, "name": "SunkenCrypt4", "category": "dungeon", "x": -5362.2, "z": 1582.8, "px": 1132.9, "py": 2318.1, "has_dungeon": true, "has_important": true}, {"id": 156, "name": "SunkenCrypt4", "category": "dungeon", "x": 3335.7, "z": -4334.9, "px": 2617.3, "py": 1308.2, "has_dungeon": true, "has_important": true}, {"id": 157, "name": "SunkenCrypt4", "category": "dungeon", "x": -51.9, "z": 2544.7, "px": 2039.1, "py": 2482.3, "has_dungeon": true, "has_important": true}, {"id": 158, "name": "SunkenCrypt4", "category": "dungeon", "x": -4423.2, "z": 1289.1, "px": 1293.1, "py": 2268.0, "has_dungeon": true, "has_important": true}, {"id": 159, "name": "SunkenCrypt4", "category": "dungeon", "x": -4406.6, "z": 1211.3, "px": 1295.9, "py": 2254.7, "has_dungeon": true, "has_important": true}, {"id": 160, "name": "SunkenCrypt4", "category": "dungeon", "x": -2167.4, "z": 4223.9, "px": 1678.1, "py": 2768.9, "has_dungeon": true, "has_important": true}, {"id": 161, "name": "SunkenCrypt4", "category": "dungeon", "x": -2701.2, "z": -912.1, "px": 1587.0, "py": 1892.3, "has_dungeon": true, "has_important": true}, {"id": 162, "name": "SunkenCrypt4", "category": "dungeon", "x": 3787.7, "z": 697.4, "px": 2694.4, "py": 2167.0, "has_dungeon": true, "has_important": true}, {"id": 163, "name": "SunkenCrypt4", "category": "dungeon", "x": 4625.9, "z": -3085.3, "px": 2837.5, "py": 1521.4, "has_dungeon": true, "has_important": true}, {"id": 164, "name": "SunkenCrypt4", "category": "dungeon", "x": -144.7, "z": 2735.8, "px": 2023.3, "py": 2514.9, "has_dungeon": true, "has_important": true}, {"id": 165, "name": "SunkenCrypt4", "category": "dungeon", "x": 2629.5, "z": 3851.6, "px": 2496.8, "py": 2705.3, "has_dungeon": true, "has_important": true}, {"id": 166, "name": "SunkenCrypt4", "category": "dungeon", "x": -2244.3, "z": 4276.9, "px": 1665.0, "py": 2777.9, "has_dungeon": true, "has_important": true}, {"id": 167, "name": "SunkenCrypt4", "category": "dungeon", "x": 3397.0, "z": -4496.1, "px": 2627.8, "py": 1280.7, "has_dungeon": true, "has_important": true}, {"id": 168, "name": "SunkenCrypt4", "category": "dungeon", "x": -889.7, "z": -3644.9, "px": 1896.2, "py": 1425.9, "has_dungeon": true, "has_important": true}, {"id": 169, "name": "SunkenCrypt4", "category": "dungeon", "x": -5107.9, "z": 1285.8, "px": 1176.3, "py": 2267.4, "has_dungeon": true, "has_important": true}, {"id": 170, "name": "SunkenCrypt4", "category": "dungeon", "x": -4366.3, "z": 396.5, "px": 1302.8, "py": 2115.7, "has_dungeon": true, "has_important": true}, {"id": 171, "name": "SunkenCrypt4", "category": "dungeon", "x": 633.0, "z": 2548.8, "px": 2156.0, "py": 2483.0, "has_dungeon": true, "has_important": true}, {"id": 172, "name": "SunkenCrypt4", "category": "dungeon", "x": -3663.7, "z": 205.0, "px": 1422.7, "py": 2083.0, "has_dungeon": true, "has_important": true}, {"id": 173, "name": "SunkenCrypt4", "category": "dungeon", "x": 4731.5, "z": -783.9, "px": 2855.5, "py": 1914.2, "has_dungeon": true, "has_important": true}, {"id": 174, "name": "SunkenCrypt4", "category": "dungeon", "x": 563.7, "z": 2571.8, "px": 2144.2, "py": 2486.9, "has_dungeon": true, "has_important": true}, {"id": 175, "name": "SunkenCrypt4", "category": "dungeon", "x": -3717.0, "z": -4233.5, "px": 1413.6, "py": 1325.5, "has_dungeon": true, "has_important": true}, {"id": 176, "name": "SunkenCrypt4", "category": "dungeon", "x": -1990.7, "z": 4469.7, "px": 1708.3, "py": 2810.8, "has_dungeon": true, "has_important": true}, {"id": 177, "name": "SunkenCrypt4", "category": "dungeon", "x": -3456.5, "z": 3310.3, "px": 1458.1, "py": 2613.0, "has_dungeon": true, "has_important": true}, {"id": 178, "name": "SunkenCrypt4", "category": "dungeon", "x": -4272.5, "z": 3640.1, "px": 1318.8, "py": 2669.2, "has_dungeon": true, "has_important": true}, {"id": 179, "name": "SunkenCrypt4", "category": "dungeon", "x": 133.5, "z": 2638.3, "px": 2070.8, "py": 2498.3, "has_dungeon": true, "has_important": true}, {"id": 180, "name": "SunkenCrypt4", "category": "dungeon", "x": 3381.3, "z": -4433.3, "px": 2625.1, "py": 1291.4, "has_dungeon": true, "has_important": true}, {"id": 181, "name": "SunkenCrypt4", "category": "dungeon", "x": 2700.5, "z": 3847.2, "px": 2508.9, "py": 2704.6, "has_dungeon": true, "has_important": true}, {"id": 182, "name": "SunkenCrypt4", "category": "dungeon", "x": -2513.9, "z": -4161.4, "px": 1619.0, "py": 1337.8, "has_dungeon": true, "has_important": true}, {"id": 183, "name": "SunkenCrypt4", "category": "dungeon", "x": -2508.1, "z": 4873.8, "px": 1620.0, "py": 2879.8, "has_dungeon": true, "has_important": true}, {"id": 184, "name": "SunkenCrypt4", "category": "dungeon", "x": -819.9, "z": -3633.2, "px": 1908.1, "py": 1427.9, "has_dungeon": true, "has_important": true}, {"id": 185, "name": "SunkenCrypt4", "category": "dungeon", "x": 12.0, "z": 2560.5, "px": 2050.0, "py": 2485.0, "has_dungeon": true, "has_important": true}, {"id": 186, "name": "SunkenCrypt4", "category": "dungeon", "x": -5617.1, "z": -1099.6, "px": 1089.3, "py": 1860.3, "has_dungeon": true, "has_important": true}, {"id": 187, "name": "SunkenCrypt4", "category": "dungeon", "x": 4433.2, "z": -3127.0, "px": 2804.6, "py": 1514.3, "has_dungeon": true, "has_important": true}, {"id": 188, "name": "SunkenCrypt4", "category": "dungeon", "x": 4725.5, "z": -880.8, "px": 2854.5, "py": 1897.7, "has_dungeon": true, "has_important": true}, {"id": 189, "name": "SunkenCrypt4", "category": "dungeon", "x": 1211.9, "z": 2097.1, "px": 2254.8, "py": 2405.9, "has_dungeon": true, "has_important": true}, {"id": 190, "name": "SunkenCrypt4", "category": "dungeon", "x": 1354.8, "z": 2124.8, "px": 2279.2, "py": 2410.6, "has_dungeon": true, "has_important": true}, {"id": 191, "name": "SunkenCrypt4", "category": "dungeon", "x": -701.9, "z": -3592.2, "px": 1928.2, "py": 1434.9, "has_dungeon": true, "has_important": true}, {"id": 192, "name": "SunkenCrypt4", "category": "dungeon", "x": -5170.2, "z": -656.1, "px": 1165.6, "py": 1936.0, "has_dungeon": true, "has_important": true}, {"id": 3680, "name": "TrollCave02", "category": "dungeon", "x": -7490.7, "z": 4796.9, "px": 769.6, "py": 2866.7, "has_dungeon": false, "has_important": true}, {"id": 3681, "name": "TrollCave02", "category": "dungeon", "x": 1981.9, "z": 1210.0, "px": 2386.2, "py": 2254.5, "has_dungeon": false, "has_important": true}, {"id": 3682, "name": "TrollCave02", "category": "dungeon", "x": 8764.5, "z": -3834.4, "px": 3543.8, "py": 1393.6, "has_dungeon": false, "has_important": true}, {"id": 3683, "name": "TrollCave02", "category": "dungeon", "x": -1272.0, "z": -1862.3, "px": 1830.9, "py": 1730.2, "has_dungeon": false, "has_important": true}, {"id": 3684, "name": "TrollCave02", "category": "dungeon", "x": 4994.6, "z": -2173.4, "px": 2900.4, "py": 1677.1, "has_dungeon": false, "has_important": true}, {"id": 3685, "name": "TrollCave02", "category": "dungeon", "x": 4484.1, "z": -325.2, "px": 2813.3, "py": 1992.5, "has_dungeon": false, "has_important": true}, {"id": 3686, "name": "TrollCave02", "category": "dungeon", "x": -8383.0, "z": -828.8, "px": 617.3, "py": 1906.6, "has_dungeon": false, "has_important": true}, {"id": 3687, "name": "TrollCave02", "category": "dungeon", "x": 60.5, "z": -1029.2, "px": 2058.3, "py": 1872.3, "has_dungeon": false, "has_important": true}, {"id": 3688, "name": "TrollCave02", "category": "dungeon", "x": -312.7, "z": -4487.1, "px": 1994.6, "py": 1282.2, "has_dungeon": false, "has_important": true}, {"id": 3689, "name": "TrollCave02", "category": "dungeon", "x": 2756.7, "z": -3714.8, "px": 2518.5, "py": 1414.0, "has_dungeon": false, "has_important": true}, {"id": 3690, "name": "TrollCave02", "category": "dungeon", "x": 5637.1, "z": -893.0, "px": 3010.1, "py": 1895.6, "has_dungeon": false, "has_important": true}, {"id": 3691, "name": "TrollCave02", "category": "dungeon", "x": -3460.7, "z": 6716.9, "px": 1457.4, "py": 3194.4, "has_dungeon": false, "has_important": true}, {"id": 3692, "name": "TrollCave02", "category": "dungeon", "x": 3386.7, "z": -2688.7, "px": 2626.0, "py": 1589.1, "has_dungeon": false, "has_important": true}, {"id": 3693, "name": "TrollCave02", "category": "dungeon", "x": 3969.6, "z": -444.6, "px": 2725.5, "py": 1972.1, "has_dungeon": false, "has_important": true}, {"id": 3694, "name": "TrollCave02", "category": "dungeon", "x": -572.7, "z": 582.5, "px": 1950.3, "py": 2147.4, "has_dungeon": false, "has_important": true}, {"id": 3695, "name": "TrollCave02", "category": "dungeon", "x": -4799.0, "z": 5433.5, "px": 1229.0, "py": 2975.3, "has_dungeon": false, "has_important": true}, {"id": 3696, "name": "TrollCave02", "category": "dungeon", "x": -9145.4, "z": 3265.8, "px": 487.2, "py": 2605.4, "has_dungeon": false, "has_important": true}, {"id": 3697, "name": "TrollCave02", "category": "dungeon", "x": 6713.5, "z": 4869.0, "px": 3193.8, "py": 2879.0, "has_dungeon": false, "has_important": true}, {"id": 3698, "name": "TrollCave02", "category": "dungeon", "x": 1211.3, "z": -5761.3, "px": 2254.7, "py": 1064.7, "has_dungeon": false, "has_important": true}, {"id": 3699, "name": "TrollCave02", "category": "dungeon", "x": 1724.6, "z": -6208.0, "px": 2342.3, "py": 988.5, "has_dungeon": false, "has_important": true}, {"id": 3700, "name": "TrollCave02", "category": "dungeon", "x": -6919.8, "z": 2370.7, "px": 867.0, "py": 2452.6, "has_dungeon": false, "has_important": true}, {"id": 3701, "name": "TrollCave02", "category": "dungeon", "x": -8577.0, "z": -1985.8, "px": 584.2, "py": 1709.1, "has_dungeon": false, "has_important": true}, {"id": 3702, "name": "TrollCave02", "category": "dungeon", "x": 8057.5, "z": -2623.5, "px": 3423.1, "py": 1600.3, "has_dungeon": false, "has_important": true}, {"id": 3703, "name": "TrollCave02", "category": "dungeon", "x": 7425.8, "z": -4225.3, "px": 3315.3, "py": 1326.9, "has_dungeon": false, "has_important": true}, {"id": 3704, "name": "TrollCave02", "category": "dungeon", "x": 1728.8, "z": 6406.7, "px": 2343.0, "py": 3141.4, "has_dungeon": false, "has_important": true}, {"id": 3705, "name": "TrollCave02", "category": "dungeon", "x": -5948.8, "z": 4473.6, "px": 1032.7, "py": 2811.5, "has_dungeon": false, "has_important": true}, {"id": 3706, "name": "TrollCave02", "category": "dungeon", "x": -5254.2, "z": 378.8, "px": 1151.3, "py": 2112.6, "has_dungeon": false, "has_important": true}, {"id": 3707, "name": "TrollCave02", "category": "dungeon", "x": 3845.3, "z": 3655.8, "px": 2704.3, "py": 2671.9, "has_dungeon": false, "has_important": true}, {"id": 3708, "name": "TrollCave02", "category": "dungeon", "x": 5945.5, "z": -572.3, "px": 3062.7, "py": 1950.3, "has_dungeon": false, "has_important": true}, {"id": 3709, "name": "TrollCave02", "category": "dungeon", "x": 2939.3, "z": 381.0, "px": 2549.6, "py": 2113.0, "has_dungeon": false, "has_important": true}, {"id": 3710, "name": "TrollCave02", "category": "dungeon", "x": -9210.6, "z": 3012.9, "px": 476.1, "py": 2562.2, "has_dungeon": false, "has_important": true}, {"id": 3711, "name": "TrollCave02", "category": "dungeon", "x": 1915.7, "z": -4285.6, "px": 2374.9, "py": 1316.6, "has_dungeon": false, "has_important": true}, {"id": 3712, "name": "TrollCave02", "category": "dungeon", "x": -3719.4, "z": 4217.5, "px": 1413.2, "py": 2767.8, "has_dungeon": false, "has_important": true}, {"id": 3713, "name": "TrollCave02", "category": "dungeon", "x": 2237.7, "z": 1601.7, "px": 2429.9, "py": 2321.4, "has_dungeon": false, "has_important": true}, {"id": 3714, "name": "TrollCave02", "category": "dungeon", "x": 8327.0, "z": -2117.3, "px": 3469.1, "py": 1686.6, "has_dungeon": false, "has_important": true}, {"id": 3715, "name": "TrollCave02", "category": "dungeon", "x": 5818.9, "z": 191.6, "px": 3041.1, "py": 2080.7, "has_dungeon": false, "has_important": true}, {"id": 3716, "name": "TrollCave02", "category": "dungeon", "x": 7809.1, "z": -2757.9, "px": 3380.8, "py": 1577.3, "has_dungeon": false, "has_important": true}, {"id": 3717, "name": "TrollCave02", "category": "dungeon", "x": -2362.6, "z": -69.7, "px": 1644.8, "py": 2036.1, "has_dungeon": false, "has_important": true}, {"id": 3718, "name": "TrollCave02", "category": "dungeon", "x": -1093.3, "z": -1345.6, "px": 1861.4, "py": 1818.4, "has_dungeon": false, "has_important": true}, {"id": 3719, "name": "TrollCave02", "category": "dungeon", "x": 2298.1, "z": 1216.5, "px": 2440.2, "py": 2255.6, "has_dungeon": false, "has_important": true}, {"id": 3720, "name": "TrollCave02", "category": "dungeon", "x": 2234.2, "z": -1662.2, "px": 2429.3, "py": 1764.3, "has_dungeon": false, "has_important": true}, {"id": 3721, "name": "TrollCave02", "category": "dungeon", "x": 197.6, "z": -4409.8, "px": 2081.7, "py": 1295.4, "has_dungeon": false, "has_important": true}, {"id": 3722, "name": "TrollCave02", "category": "dungeon", "x": -2947.2, "z": 4290.9, "px": 1545.0, "py": 2780.3, "has_dungeon": false, "has_important": true}, {"id": 3723, "name": "TrollCave02", "category": "dungeon", "x": 1219.3, "z": -5368.6, "px": 2256.1, "py": 1131.8, "has_dungeon": false, "has_important": true}, {"id": 3724, "name": "TrollCave02", "category": "dungeon", "x": 8580.7, "z": -2168.7, "px": 3512.4, "py": 1677.9, "has_dungeon": false, "has_important": true}, {"id": 3725, "name": "TrollCave02", "category": "dungeon", "x": -1732.3, "z": -4410.7, "px": 1752.4, "py": 1295.2, "has_dungeon": false, "has_important": true}, {"id": 3726, "name": "TrollCave02", "category": "dungeon", "x": 709.5, "z": 507.3, "px": 2169.1, "py": 2134.6, "has_dungeon": false, "has_important": true}, {"id": 3727, "name": "TrollCave02", "category": "dungeon", "x": 2051.3, "z": 3580.5, "px": 2398.1, "py": 2659.1, "has_dungeon": false, "has_important": true}, {"id": 3728, "name": "TrollCave02", "category": "dungeon", "x": 515.5, "z": 4612.2, "px": 2136.0, "py": 2835.1, "has_dungeon": false, "has_important": true}, {"id": 3729, "name": "TrollCave02", "category": "dungeon", "x": -5828.9, "z": -5048.7, "px": 1053.2, "py": 1186.4, "has_dungeon": false, "has_important": true}, {"id": 3730, "name": "TrollCave02", "category": "dungeon", "x": -7354.9, "z": -4678.6, "px": 792.8, "py": 1249.5, "has_dungeon": false, "has_important": true}, {"id": 3731, "name": "TrollCave02", "category": "dungeon", "x": 380.8, "z": 5241.2, "px": 2113.0, "py": 2942.5, "has_dungeon": false, "has_important": true}, {"id": 3732, "name": "TrollCave02", "category": "dungeon", "x": 894.7, "z": 5126.4, "px": 2200.7, "py": 2922.9, "has_dungeon": false, "has_important": true}, {"id": 3733, "name": "TrollCave02", "category": "dungeon", "x": 3451.4, "z": 3584.6, "px": 2637.0, "py": 2659.8, "has_dungeon": false, "has_important": true}, {"id": 3734, "name": "TrollCave02", "category": "dungeon", "x": -3832.3, "z": -313.4, "px": 1394.0, "py": 1994.5, "has_dungeon": false, "has_important": true}, {"id": 3735, "name": "TrollCave02", "category": "dungeon", "x": -1984.4, "z": -4155.2, "px": 1709.3, "py": 1338.8, "has_dungeon": false, "has_important": true}, {"id": 3736, "name": "TrollCave02", "category": "dungeon", "x": 1222.7, "z": 5702.9, "px": 2256.7, "py": 3021.3, "has_dungeon": false, "has_important": true}, {"id": 3737, "name": "TrollCave02", "category": "dungeon", "x": 699.1, "z": 5376.2, "px": 2167.3, "py": 2965.5, "has_dungeon": false, "has_important": true}, {"id": 3738, "name": "TrollCave02", "category": "dungeon", "x": 5118.3, "z": 5370.0, "px": 2921.5, "py": 2964.5, "has_dungeon": false, "has_important": true}, {"id": 3739, "name": "TrollCave02", "category": "dungeon", "x": 7045.3, "z": -4227.9, "px": 3250.4, "py": 1326.4, "has_dungeon": false, "has_important": true}, {"id": 3740, "name": "TrollCave02", "category": "dungeon", "x": 1927.7, "z": 6714.1, "px": 2377.0, "py": 3193.9, "has_dungeon": false, "has_important": true}, {"id": 3741, "name": "TrollCave02", "category": "dungeon", "x": -5753.1, "z": -1594.3, "px": 1066.1, "py": 1775.9, "has_dungeon": false, "has_important": true}, {"id": 3742, "name": "TrollCave02", "category": "dungeon", "x": 1916.6, "z": -1155.5, "px": 2375.1, "py": 1850.8, "has_dungeon": false, "has_important": true}, {"id": 3743, "name": "TrollCave02", "category": "dungeon", "x": 2500.4, "z": -1413.7, "px": 2474.7, "py": 1806.7, "has_dungeon": false, "has_important": true}, {"id": 3744, "name": "TrollCave02", "category": "dungeon", "x": -6714.7, "z": 5381.9, "px": 902.0, "py": 2966.5, "has_dungeon": false, "has_important": true}, {"id": 3745, "name": "TrollCave02", "category": "dungeon", "x": -5823.3, "z": -192.9, "px": 1054.2, "py": 2015.1, "has_dungeon": false, "has_important": true}, {"id": 3746, "name": "TrollCave02", "category": "dungeon", "x": -4097.4, "z": -6395.4, "px": 1348.7, "py": 956.5, "has_dungeon": false, "has_important": true}, {"id": 3747, "name": "TrollCave02", "category": "dungeon", "x": 2493.6, "z": -4479.4, "px": 2473.6, "py": 1283.5, "has_dungeon": false, "has_important": true}, {"id": 3748, "name": "TrollCave02", "category": "dungeon", "x": 7356.0, "z": 1215.8, "px": 3303.4, "py": 2255.5, "has_dungeon": false, "has_important": true}, {"id": 3749, "name": "TrollCave02", "category": "dungeon", "x": 764.3, "z": -2429.7, "px": 2178.4, "py": 1633.3, "has_dungeon": false, "has_important": true}, {"id": 3750, "name": "TrollCave02", "category": "dungeon", "x": 8192.4, "z": -3780.4, "px": 3446.2, "py": 1402.8, "has_dungeon": false, "has_important": true}, {"id": 3751, "name": "TrollCave02", "category": "dungeon", "x": 2496.6, "z": 4930.4, "px": 2474.1, "py": 2889.5, "has_dungeon": false, "has_important": true}, {"id": 3752, "name": "TrollCave02", "category": "dungeon", "x": -8251.8, "z": -2047.4, "px": 639.7, "py": 1698.6, "has_dungeon": false, "has_important": true}, {"id": 3753, "name": "TrollCave02", "category": "dungeon", "x": -7482.5, "z": -1856.3, "px": 771.0, "py": 1731.2, "has_dungeon": false, "has_important": true}, {"id": 3754, "name": "TrollCave02", "category": "dungeon", "x": -1665.4, "z": 7680.5, "px": 1763.8, "py": 3358.8, "has_dungeon": false, "has_important": true}, {"id": 3755, "name": "TrollCave02", "category": "dungeon", "x": 1793.5, "z": -4609.6, "px": 2354.1, "py": 1261.3, "has_dungeon": false, "has_important": true}, {"id": 3756, "name": "TrollCave02", "category": "dungeon", "x": -3385.3, "z": 4344.0, "px": 1470.2, "py": 2789.4, "has_dungeon": false, "has_important": true}, {"id": 3757, "name": "TrollCave02", "category": "dungeon", "x": 9466.6, "z": 1344.4, "px": 3663.6, "py": 2277.4, "has_dungeon": false, "has_important": true}, {"id": 3758, "name": "TrollCave02", "category": "dungeon", "x": 2043.5, "z": 891.3, "px": 2396.8, "py": 2200.1, "has_dungeon": false, "has_important": true}, {"id": 3759, "name": "TrollCave02", "category": "dungeon", "x": 8001.0, "z": -2363.9, "px": 3413.5, "py": 1644.6, "has_dungeon": false, "has_important": true}, {"id": 3760, "name": "TrollCave02", "category": "dungeon", "x": -9284.3, "z": -1465.2, "px": 463.5, "py": 1797.9, "has_dungeon": false, "has_important": true}, {"id": 3761, "name": "TrollCave02", "category": "dungeon", "x": 2617.2, "z": -3463.9, "px": 2494.7, "py": 1456.8, "has_dungeon": false, "has_important": true}, {"id": 3762, "name": "TrollCave02", "category": "dungeon", "x": -8130.1, "z": 2744.9, "px": 660.5, "py": 2516.5, "has_dungeon": false, "has_important": true}, {"id": 3763, "name": "TrollCave02", "category": "dungeon", "x": -5888.7, "z": 1532.4, "px": 1043.0, "py": 2309.5, "has_dungeon": false, "has_important": true}, {"id": 3764, "name": "TrollCave02", "category": "dungeon", "x": -9210.9, "z": 2749.0, "px": 476.0, "py": 2517.2, "has_dungeon": false, "has_important": true}, {"id": 3765, "name": "TrollCave02", "category": "dungeon", "x": -4349.8, "z": 1666.7, "px": 1305.6, "py": 2332.5, "has_dungeon": false, "has_important": true}, {"id": 3766, "name": "TrollCave02", "category": "dungeon", "x": -8762.2, "z": -769.8, "px": 552.6, "py": 1916.6, "has_dungeon": false, "has_important": true}, {"id": 3767, "name": "TrollCave02", "category": "dungeon", "x": -3910.3, "z": -2556.5, "px": 1380.6, "py": 1611.7, "has_dungeon": false, "has_important": true}, {"id": 3768, "name": "TrollCave02", "category": "dungeon", "x": 8256.0, "z": 256.4, "px": 3457.0, "py": 2091.8, "has_dungeon": false, "has_important": true}, {"id": 3769, "name": "TrollCave02", "category": "dungeon", "x": -4735.0, "z": 5820.1, "px": 1239.9, "py": 3041.3, "has_dungeon": false, "has_important": true}, {"id": 3770, "name": "TrollCave02", "category": "dungeon", "x": -1537.8, "z": -1788.4, "px": 1785.5, "py": 1742.8, "has_dungeon": false, "has_important": true}, {"id": 3771, "name": "TrollCave02", "category": "dungeon", "x": -2176.7, "z": 769.5, "px": 1676.5, "py": 2179.3, "has_dungeon": false, "has_important": true}, {"id": 3772, "name": "TrollCave02", "category": "dungeon", "x": 2047.5, "z": -893.5, "px": 2397.4, "py": 1895.5, "has_dungeon": false, "has_important": true}, {"id": 3773, "name": "TrollCave02", "category": "dungeon", "x": -5755.6, "z": 4868.9, "px": 1065.7, "py": 2879.0, "has_dungeon": false, "has_important": true}, {"id": 3774, "name": "TrollCave02", "category": "dungeon", "x": 2496.5, "z": 5191.5, "px": 2474.1, "py": 2934.0, "has_dungeon": false, "has_important": true}, {"id": 3775, "name": "TrollCave02", "category": "dungeon", "x": 3011.2, "z": -2307.9, "px": 2561.9, "py": 1654.1, "has_dungeon": false, "has_important": true}, {"id": 3776, "name": "TrollCave02", "category": "dungeon", "x": 1080.6, "z": 5436.8, "px": 2232.4, "py": 2975.9, "has_dungeon": false, "has_important": true}, {"id": 3777, "name": "TrollCave02", "category": "dungeon", "x": -3462.0, "z": 4673.6, "px": 1457.2, "py": 2845.6, "has_dungeon": false, "has_important": true}, {"id": 3778, "name": "TrollCave02", "category": "dungeon", "x": 2238.2, "z": 5052.9, "px": 2430.0, "py": 2910.4, "has_dungeon": false, "has_important": true}, {"id": 3779, "name": "TrollCave02", "category": "dungeon", "x": -7864.9, "z": -2428.8, "px": 705.7, "py": 1633.5, "has_dungeon": false, "has_important": true}, {"id": 3780, "name": "TrollCave02", "category": "dungeon", "x": -1728.8, "z": 4739.2, "px": 1753.0, "py": 2856.8, "has_dungeon": false, "has_important": true}, {"id": 3781, "name": "TrollCave02", "category": "dungeon", "x": 2876.8, "z": -5.6, "px": 2539.0, "py": 2047.0, "has_dungeon": false, "has_important": true}, {"id": 3782, "name": "TrollCave02", "category": "dungeon", "x": 895.5, "z": -5562.6, "px": 2200.8, "py": 1098.6, "has_dungeon": false, "has_important": true}, {"id": 3783, "name": "TrollCave02", "category": "dungeon", "x": -829.5, "z": -0.2, "px": 1906.4, "py": 2048.0, "has_dungeon": false, "has_important": true}, {"id": 3784, "name": "TrollCave02", "category": "dungeon", "x": -8321.6, "z": -1671.9, "px": 627.8, "py": 1762.7, "has_dungeon": false, "has_important": true}, {"id": 3785, "name": "TrollCave02", "category": "dungeon", "x": 6073.2, "z": -5959.7, "px": 3084.5, "py": 1030.9, "has_dungeon": false, "has_important": true}, {"id": 3786, "name": "TrollCave02", "category": "dungeon", "x": -6713.9, "z": -4667.5, "px": 902.2, "py": 1251.4, "has_dungeon": false, "has_important": true}, {"id": 3787, "name": "TrollCave02", "category": "dungeon", "x": 4221.6, "z": -249.2, "px": 2768.5, "py": 2005.5, "has_dungeon": false, "has_important": true}, {"id": 3788, "name": "TrollCave02", "category": "dungeon", "x": -7622.4, "z": -4869.7, "px": 747.1, "py": 1216.9, "has_dungeon": false, "has_important": true}, {"id": 3789, "name": "TrollCave02", "category": "dungeon", "x": -1147.2, "z": -1093.0, "px": 1852.2, "py": 1861.5, "has_dungeon": false, "has_important": true}, {"id": 3790, "name": "TrollCave02", "category": "dungeon", "x": 8190.4, "z": 1.8, "px": 3445.8, "py": 2048.3, "has_dungeon": false, "has_important": true}, {"id": 3791, "name": "TrollCave02", "category": "dungeon", "x": -3714.2, "z": 6916.4, "px": 1414.1, "py": 3228.4, "has_dungeon": false, "has_important": true}, {"id": 3792, "name": "TrollCave02", "category": "dungeon", "x": -2243.9, "z": -3007.8, "px": 1665.0, "py": 1534.7, "has_dungeon": false, "has_important": true}, {"id": 3793, "name": "TrollCave02", "category": "dungeon", "x": 9471.5, "z": 5.8, "px": 3664.5, "py": 2049.0, "has_dungeon": false, "has_important": true}, {"id": 3794, "name": "TrollCave02", "category": "dungeon", "x": 2878.4, "z": -4863.1, "px": 2539.2, "py": 1218.0, "has_dungeon": false, "has_important": true}, {"id": 3795, "name": "TrollCave02", "category": "dungeon", "x": 6850.4, "z": -3901.3, "px": 3217.1, "py": 1382.2, "has_dungeon": false, "has_important": true}, {"id": 3796, "name": "TrollCave02", "category": "dungeon", "x": -9791.4, "z": -195.1, "px": 376.9, "py": 2014.7, "has_dungeon": false, "has_important": true}, {"id": 3797, "name": "TrollCave02", "category": "dungeon", "x": -4099.4, "z": -2360.3, "px": 1348.4, "py": 1645.2, "has_dungeon": false, "has_important": true}, {"id": 3798, "name": "TrollCave02", "category": "dungeon", "x": -8958.8, "z": 3075.5, "px": 519.0, "py": 2572.9, "has_dungeon": false, "has_important": true}, {"id": 3799, "name": "TrollCave02", "category": "dungeon", "x": 2499.3, "z": 1410.3, "px": 2474.5, "py": 2288.7, "has_dungeon": false, "has_important": true}, {"id": 3800, "name": "TrollCave02", "category": "dungeon", "x": 960.1, "z": 3394.0, "px": 2211.9, "py": 2627.2, "has_dungeon": false, "has_important": true}, {"id": 3801, "name": "TrollCave02", "category": "dungeon", "x": -5063.5, "z": 5691.7, "px": 1183.8, "py": 3019.4, "has_dungeon": false, "has_important": true}, {"id": 3802, "name": "TrollCave02", "category": "dungeon", "x": -2105.1, "z": 1030.1, "px": 1688.7, "py": 2223.8, "has_dungeon": false, "has_important": true}, {"id": 3803, "name": "TrollCave02", "category": "dungeon", "x": -9670.8, "z": 582.3, "px": 397.5, "py": 2147.4, "has_dungeon": false, "has_important": true}, {"id": 3804, "name": "TrollCave02", "category": "dungeon", "x": 7549.6, "z": -2883.2, "px": 3336.5, "py": 1555.9, "has_dungeon": false, "has_important": true}, {"id": 3805, "name": "TrollCave02", "category": "dungeon", "x": -4.8, "z": -4738.9, "px": 2047.2, "py": 1239.2, "has_dungeon": false, "has_important": true}, {"id": 3806, "name": "TrollCave02", "category": "dungeon", "x": 772.7, "z": 4862.7, "px": 2179.9, "py": 2877.9, "has_dungeon": false, "has_important": true}, {"id": 3807, "name": "TrollCave02", "category": "dungeon", "x": -1275.9, "z": -5382.8, "px": 1830.2, "py": 1129.3, "has_dungeon": false, "has_important": true}, {"id": 3808, "name": "TrollCave02", "category": "dungeon", "x": -9411.7, "z": -133.3, "px": 441.7, "py": 2025.3, "has_dungeon": false, "has_important": true}, {"id": 3809, "name": "TrollCave02", "category": "dungeon", "x": 8769.6, "z": -1413.0, "px": 3544.7, "py": 1806.8, "has_dungeon": false, "has_important": true}, {"id": 3810, "name": "TrollCave02", "category": "dungeon", "x": 7425.5, "z": -3262.8, "px": 3315.3, "py": 1491.1, "has_dungeon": false, "has_important": true}, {"id": 3811, "name": "TrollCave02", "category": "dungeon", "x": 1413.4, "z": -2500.8, "px": 2289.2, "py": 1621.2, "has_dungeon": false, "has_important": true}, {"id": 3812, "name": "TrollCave02", "category": "dungeon", "x": -5566.6, "z": -5180.0, "px": 1098.0, "py": 1163.9, "has_dungeon": false, "has_important": true}, {"id": 3813, "name": "TrollCave02", "category": "dungeon", "x": -826.8, "z": 512.6, "px": 1906.9, "py": 2135.5, "has_dungeon": false, "has_important": true}, {"id": 3814, "name": "TrollCave02", "category": "dungeon", "x": -8316.8, "z": -1210.1, "px": 628.6, "py": 1841.5, "has_dungeon": false, "has_important": true}, {"id": 3815, "name": "TrollCave02", "category": "dungeon", "x": 4288.4, "z": -963.1, "px": 2779.9, "py": 1883.6, "has_dungeon": false, "has_important": true}, {"id": 3816, "name": "TrollCave02", "category": "dungeon", "x": 898.8, "z": -5306.1, "px": 2201.4, "py": 1142.4, "has_dungeon": false, "has_important": true}, {"id": 3817, "name": "TrollCave02", "category": "dungeon", "x": 9348.1, "z": 321.7, "px": 3643.4, "py": 2102.9, "has_dungeon": false, "has_important": true}, {"id": 3818, "name": "TrollCave02", "category": "dungeon", "x": 5308.7, "z": 5052.4, "px": 2954.0, "py": 2910.3, "has_dungeon": false, "has_important": true}, {"id": 3819, "name": "TrollCave02", "category": "dungeon", "x": 5374.1, "z": -962.4, "px": 2965.2, "py": 1883.8, "has_dungeon": false, "has_important": true}, {"id": 3820, "name": "TrollCave02", "category": "dungeon", "x": -9158.0, "z": 3524.6, "px": 485.0, "py": 2649.5, "has_dungeon": false, "has_important": true}, {"id": 3821, "name": "TrollCave02", "category": "dungeon", "x": -6919.7, "z": 260.0, "px": 867.0, "py": 2092.4, "has_dungeon": false, "has_important": true}, {"id": 3822, "name": "TrollCave02", "category": "dungeon", "x": 2750.4, "z": -4601.0, "px": 2517.4, "py": 1262.8, "has_dungeon": false, "has_important": true}, {"id": 3823, "name": "TrollCave02", "category": "dungeon", "x": -6791.2, "z": 3718.5, "px": 889.0, "py": 2682.6, "has_dungeon": false, "has_important": true}, {"id": 3824, "name": "TrollCave02", "category": "dungeon", "x": -5177.3, "z": 708.7, "px": 1164.4, "py": 2169.0, "has_dungeon": false, "has_important": true}, {"id": 3825, "name": "TrollCave02", "category": "dungeon", "x": -9337.1, "z": -2692.8, "px": 454.5, "py": 1588.4, "has_dungeon": false, "has_important": true}, {"id": 3826, "name": "TrollCave02", "category": "dungeon", "x": 2173.8, "z": 3842.8, "px": 2419.0, "py": 2703.8, "has_dungeon": false, "has_important": true}, {"id": 3827, "name": "TrollCave02", "category": "dungeon", "x": 5115.8, "z": 2815.4, "px": 2921.1, "py": 2528.5, "has_dungeon": false, "has_important": true}, {"id": 3828, "name": "TrollCave02", "category": "dungeon", "x": 7804.1, "z": -765.8, "px": 3379.9, "py": 1917.3, "has_dungeon": false, "has_important": true}, {"id": 3829, "name": "TrollCave02", "category": "dungeon", "x": 2566.7, "z": 323.5, "px": 2486.1, "py": 2103.2, "has_dungeon": false, "has_important": true}, {"id": 3830, "name": "TrollCave02", "category": "dungeon", "x": -3133.3, "z": 6651.7, "px": 1513.3, "py": 3183.2, "has_dungeon": false, "has_important": true}, {"id": 3831, "name": "TrollCave02", "category": "dungeon", "x": -3128.5, "z": -1921.5, "px": 1514.1, "py": 1720.1, "has_dungeon": false, "has_important": true}, {"id": 3832, "name": "TrollCave02", "category": "dungeon", "x": -1988.7, "z": -4732.3, "px": 1708.6, "py": 1240.4, "has_dungeon": false, "has_important": true}, {"id": 3833, "name": "TrollCave02", "category": "dungeon", "x": 8258.3, "z": -4158.8, "px": 3457.4, "py": 1338.2, "has_dungeon": false, "has_important": true}, {"id": 3834, "name": "TrollCave02", "category": "dungeon", "x": 3704.4, "z": 3395.4, "px": 2680.2, "py": 2627.5, "has_dungeon": false, "has_important": true}, {"id": 3835, "name": "TrollCave02", "category": "dungeon", "x": 4600.8, "z": -5114.6, "px": 2833.2, "py": 1175.1, "has_dungeon": false, "has_important": true}, {"id": 3836, "name": "TrollCave02", "category": "dungeon", "x": -5689.6, "z": 4606.9, "px": 1077.0, "py": 2834.2, "has_dungeon": false, "has_important": true}, {"id": 3837, "name": "TrollCave02", "category": "dungeon", "x": -1727.8, "z": 4999.6, "px": 1753.1, "py": 2901.3, "has_dungeon": false, "has_important": true}, {"id": 3838, "name": "TrollCave02", "category": "dungeon", "x": 4282.8, "z": 6715.4, "px": 2778.9, "py": 3194.1, "has_dungeon": false, "has_important": true}, {"id": 3839, "name": "TrollCave02", "category": "dungeon", "x": 1731.9, "z": -826.9, "px": 2343.6, "py": 1906.9, "has_dungeon": false, "has_important": true}, {"id": 3840, "name": "TrollCave02", "category": "dungeon", "x": -5499.1, "z": -6213.3, "px": 1109.5, "py": 987.6, "has_dungeon": false, "has_important": true}, {"id": 3841, "name": "TrollCave02", "category": "dungeon", "x": 450.3, "z": 642.2, "px": 2124.9, "py": 2157.6, "has_dungeon": false, "has_important": true}, {"id": 3842, "name": "TrollCave02", "category": "dungeon", "x": -955.8, "z": 259.9, "px": 1884.9, "py": 2092.4, "has_dungeon": false, "has_important": true}, {"id": 3843, "name": "TrollCave02", "category": "dungeon", "x": -7354.8, "z": -4988.7, "px": 792.8, "py": 1196.6, "has_dungeon": false, "has_important": true}, {"id": 3844, "name": "TrollCave02", "category": "dungeon", "x": -6713.3, "z": 445.6, "px": 902.3, "py": 2124.0, "has_dungeon": false, "has_important": true}, {"id": 3845, "name": "TrollCave02", "category": "dungeon", "x": 5953.2, "z": -250.6, "px": 3064.0, "py": 2005.2, "has_dungeon": false, "has_important": true}, {"id": 3846, "name": "TrollCave02", "category": "dungeon", "x": -5510.3, "z": -1859.5, "px": 1107.6, "py": 1730.6, "has_dungeon": false, "has_important": true}, {"id": 3847, "name": "TrollCave02", "category": "dungeon", "x": -4216.1, "z": -257.4, "px": 1328.5, "py": 2004.1, "has_dungeon": false, "has_important": true}, {"id": 3848, "name": "TrollCave02", "category": "dungeon", "x": 7865.7, "z": -3013.2, "px": 3390.4, "py": 1533.7, "has_dungeon": false, "has_important": true}, {"id": 3849, "name": "TrollCave02", "category": "dungeon", "x": 9784.1, "z": 1209.0, "px": 3717.8, "py": 2254.3, "has_dungeon": false, "has_important": true}, {"id": 3850, "name": "TrollCave02", "category": "dungeon", "x": 771.1, "z": -2689.5, "px": 2179.6, "py": 1589.0, "has_dungeon": false, "has_important": true}, {"id": 3851, "name": "TrollCave02", "category": "dungeon", "x": -1339.4, "z": -1600.6, "px": 1819.4, "py": 1774.8, "has_dungeon": false, "has_important": true}, {"id": 3852, "name": "TrollCave02", "category": "dungeon", "x": -7224.3, "z": -1976.6, "px": 815.1, "py": 1710.7, "has_dungeon": false, "has_important": true}, {"id": 3853, "name": "TrollCave02", "category": "dungeon", "x": 9786.0, "z": -1543.8, "px": 3718.1, "py": 1784.5, "has_dungeon": false, "has_important": true}, {"id": 3854, "name": "TrollCave02", "category": "dungeon", "x": 7613.6, "z": 3776.7, "px": 3347.4, "py": 2692.6, "has_dungeon": false, "has_important": true}, {"id": 3855, "name": "TrollCave02", "category": "dungeon", "x": 1528.8, "z": -449.9, "px": 2308.9, "py": 1971.2, "has_dungeon": false, "has_important": true}, {"id": 3856, "name": "TrollCave02", "category": "dungeon", "x": 5306.9, "z": 6399.7, "px": 2953.7, "py": 3140.2, "has_dungeon": false, "has_important": true}, {"id": 3857, "name": "TrollCave02", "category": "dungeon", "x": 6782.9, "z": 4614.1, "px": 3205.6, "py": 2835.5, "has_dungeon": false, "has_important": true}, {"id": 6358, "name": "AbandonedLogCabin02", "category": "other", "x": 4116.3, "z": 5632.7, "px": 2750.5, "py": 3009.3, "has_dungeon": false, "has_important": true}, {"id": 6359, "name": "AbandonedLogCabin02", "category": "other", "x": -4352.5, "z": -1234.2, "px": 1305.2, "py": 1837.4, "has_dungeon": false, "has_important": true}, {"id": 6360, "name": "AbandonedLogCabin02", "category": "other", "x": 2349.5, "z": 8690.8, "px": 2449.0, "py": 3531.2, "has_dungeon": false, "has_important": true}, {"id": 6361, "name": "AbandonedLogCabin02", "category": "other", "x": 2442.5, "z": 8825.3, "px": 2464.9, "py": 3554.2, "has_dungeon": false, "has_important": true}, {"id": 6362, "name": "AbandonedLogCabin02", "category": "other", "x": 5773.3, "z": -441.2, "px": 3033.3, "py": 1972.7, "has_dungeon": false, "has_important": true}, {"id": 6363, "name": "AbandonedLogCabin02", "category": "other", "x": -6838.7, "z": -2231.7, "px": 880.9, "py": 1667.1, "has_dungeon": false, "has_important": true}, {"id": 6364, "name": "AbandonedLogCabin02", "category": "other", "x": 5777.5, "z": 4658.0, "px": 3034.0, "py": 2843.0, "has_dungeon": false, "has_important": true}, {"id": 6365, "name": "AbandonedLogCabin02", "category": "other", "x": -3455.9, "z": 6344.3, "px": 1458.2, "py": 3130.8, "has_dungeon": false, "has_important": true}, {"id": 6366, "name": "AbandonedLogCabin02", "category": "other", "x": -2000.8, "z": -238.3, "px": 1706.5, "py": 2007.3, "has_dungeon": false, "has_important": true}, {"id": 6367, "name": "AbandonedLogCabin02", "category": "other", "x": 3251.0, "z": -1851.5, "px": 2602.8, "py": 1732.0, "has_dungeon": false, "has_important": true}, {"id": 6368, "name": "AbandonedLogCabin02", "category": "other", "x": 1470.8, "z": 7024.6, "px": 2299.0, "py": 3246.9, "has_dungeon": false, "has_important": true}, {"id": 6369, "name": "AbandonedLogCabin02", "category": "other", "x": 5943.7, "z": 4404.9, "px": 3062.4, "py": 2799.8, "has_dungeon": false, "has_important": false}, {"id": 6370, "name": "AbandonedLogCabin02", "category": "other", "x": 7694.5, "z": -511.1, "px": 3361.2, "py": 1960.8, "has_dungeon": false, "has_important": true}, {"id": 6371, "name": "AbandonedLogCabin02", "category": "other", "x": 2374.1, "z": -2517.0, "px": 2453.2, "py": 1618.4, "has_dungeon": false, "has_important": true}, {"id": 6372, "name": "AbandonedLogCabin02", "category": "other", "x": -4488.8, "z": -1205.3, "px": 1281.9, "py": 1842.3, "has_dungeon": false, "has_important": true}, {"id": 6373, "name": "AbandonedLogCabin02", "category": "other", "x": -4345.6, "z": -3923.1, "px": 1306.4, "py": 1378.5, "has_dungeon": false, "has_important": true}, {"id": 6374, "name": "AbandonedLogCabin02", "category": "other", "x": -2452.7, "z": 7442.3, "px": 1629.4, "py": 3318.2, "has_dungeon": false, "has_important": true}, {"id": 6375, "name": "AbandonedLogCabin02", "category": "other", "x": -2679.5, "z": 7312.2, "px": 1590.7, "py": 3295.9, "has_dungeon": false, "has_important": true}, {"id": 6376, "name": "AbandonedLogCabin02", "category": "other", "x": 5583.7, "z": 58.7, "px": 3001.0, "py": 2058.0, "has_dungeon": false, "has_important": true}, {"id": 6377, "name": "AbandonedLogCabin02", "category": "other", "x": 4274.6, "z": -1746.4, "px": 2777.5, "py": 1749.9, "has_dungeon": false, "has_important": true}, {"id": 6378, "name": "AbandonedLogCabin02", "category": "other", "x": 2514.4, "z": 954.8, "px": 2477.1, "py": 2211.0, "has_dungeon": false, "has_important": true}, {"id": 6379, "name": "AbandonedLogCabin02", "category": "other", "x": -6290.5, "z": -708.5, "px": 974.4, "py": 1927.1, "has_dungeon": false, "has_important": true}, {"id": 6380, "name": "AbandonedLogCabin02", "category": "other", "x": 1361.3, "z": 6732.4, "px": 2280.3, "py": 3197.0, "has_dungeon": false, "has_important": true}, {"id": 6381, "name": "AbandonedLogCabin02", "category": "other", "x": -9923.9, "z": -319.1, "px": 354.3, "py": 1993.5, "has_dungeon": false, "has_important": true}, {"id": 6382, "name": "AbandonedLogCabin02", "category": "other", "x": -73.9, "z": -1482.6, "px": 2035.4, "py": 1795.0, "has_dungeon": false, "has_important": true}, {"id": 6383, "name": "AbandonedLogCabin02", "category": "other", "x": 5885.3, "z": 4811.0, "px": 3052.4, "py": 2869.1, "has_dungeon": false, "has_important": false}, {"id": 6384, "name": "AbandonedLogCabin02", "category": "other", "x": 3473.1, "z": 9359.4, "px": 2640.7, "py": 3645.3, "has_dungeon": false, "has_important": true}, {"id": 6385, "name": "AbandonedLogCabin02", "category": "other", "x": -1941.1, "z": -618.6, "px": 1716.7, "py": 1942.4, "has_dungeon": false, "has_important": true}, {"id": 6386, "name": "AbandonedLogCabin02", "category": "other", "x": 561.3, "z": 3574.0, "px": 2143.8, "py": 2658.0, "has_dungeon": false, "has_important": true}, {"id": 6387, "name": "AbandonedLogCabin02", "category": "other", "x": -6011.9, "z": -1791.9, "px": 1022.0, "py": 1742.2, "has_dungeon": false, "has_important": true}, {"id": 6388, "name": "AbandonedLogCabin02", "category": "other", "x": 7285.5, "z": -532.2, "px": 3291.4, "py": 1957.2, "has_dungeon": false, "has_important": true}, {"id": 6389, "name": "AbandonedLogCabin02", "category": "other", "x": -6672.6, "z": -2195.0, "px": 909.2, "py": 1673.4, "has_dungeon": false, "has_important": true}, {"id": 6390, "name": "AbandonedLogCabin02", "category": "other", "x": 1909.9, "z": -6865.1, "px": 2374.0, "py": 876.4, "has_dungeon": false, "has_important": false}, {"id": 6391, "name": "AbandonedLogCabin03", "category": "other", "x": 4501.1, "z": -5633.7, "px": 2816.2, "py": 1086.5, "has_dungeon": false, "has_important": true}, {"id": 6392, "name": "AbandonedLogCabin03", "category": "other", "x": -3144.3, "z": 2629.9, "px": 1511.4, "py": 2496.8, "has_dungeon": false, "has_important": true}, {"id": 6393, "name": "AbandonedLogCabin03", "category": "other", "x": 2614.9, "z": 682.9, "px": 2494.3, "py": 2164.5, "has_dungeon": false, "has_important": true}, {"id": 6394, "name": "AbandonedLogCabin03", "category": "other", "x": 1223.7, "z": -5193.8, "px": 2256.8, "py": 1161.6, "has_dungeon": false, "has_important": true}, {"id": 6395, "name": "AbandonedLogCabin03", "category": "other", "x": -9658.0, "z": -619.0, "px": 399.7, "py": 1942.4, "has_dungeon": false, "has_important": true}, {"id": 6396, "name": "AbandonedLogCabin03", "category": "other", "x": -6155.2, "z": -436.1, "px": 997.5, "py": 1973.6, "has_dungeon": false, "has_important": true}, {"id": 6397, "name": "AbandonedLogCabin03", "category": "other", "x": -8691.0, "z": -59.6, "px": 564.7, "py": 2037.8, "has_dungeon": false, "has_important": true}, {"id": 6398, "name": "AbandonedLogCabin03", "category": "other", "x": -2102.7, "z": -404.0, "px": 1689.1, "py": 1979.1, "has_dungeon": false, "has_important": true}, {"id": 6399, "name": "AbandonedLogCabin03", "category": "other", "x": 5523.2, "z": -456.4, "px": 2990.6, "py": 1970.1, "has_dungeon": false, "has_important": true}, {"id": 6400, "name": "AbandonedLogCabin03", "category": "other", "x": 4651.6, "z": -5626.7, "px": 2841.9, "py": 1087.7, "has_dungeon": false, "has_important": true}, {"id": 6401, "name": "AbandonedLogCabin03", "category": "other", "x": 1017.3, "z": -2510.1, "px": 2221.6, "py": 1619.6, "has_dungeon": false, "has_important": true}, {"id": 6402, "name": "AbandonedLogCabin03", "category": "other", "x": 3635.2, "z": -117.0, "px": 2668.4, "py": 2028.0, "has_dungeon": false, "has_important": true}, {"id": 6403, "name": "AbandonedLogCabin03", "category": "other", "x": -3831.4, "z": 4658.4, "px": 1394.1, "py": 2843.0, "has_dungeon": false, "has_important": true}, {"id": 6404, "name": "AbandonedLogCabin03", "category": "other", "x": 2441.7, "z": -2740.5, "px": 2464.7, "py": 1580.3, "has_dungeon": false, "has_important": true}, {"id": 6405, "name": "AbandonedLogCabin03", "category": "other", "x": 7508.2, "z": 4037.7, "px": 3329.4, "py": 2737.1, "has_dungeon": false, "has_important": true}, {"id": 6406, "name": "AbandonedLogCabin03", "category": "other", "x": -7287.5, "z": -1131.6, "px": 804.3, "py": 1854.9, "has_dungeon": false, "has_important": true}, {"id": 6407, "name": "AbandonedLogCabin03", "category": "other", "x": -8572.6, "z": -1145.9, "px": 584.9, "py": 1852.4, "has_dungeon": false, "has_important": true}, {"id": 6408, "name": "AbandonedLogCabin03", "category": "other", "x": 2954.5, "z": 660.1, "px": 2552.2, "py": 2160.7, "has_dungeon": false, "has_important": true}, {"id": 6409, "name": "AbandonedLogCabin03", "category": "other", "x": 519.4, "z": 4342.9, "px": 2136.6, "py": 2789.2, "has_dungeon": false, "has_important": true}, {"id": 6410, "name": "AbandonedLogCabin03", "category": "other", "x": 4222.2, "z": -1865.1, "px": 2768.6, "py": 1729.7, "has_dungeon": false, "has_important": true}, {"id": 6411, "name": "AbandonedLogCabin03", "category": "other", "x": -4469.9, "z": -4138.8, "px": 1285.1, "py": 1341.6, "has_dungeon": false, "has_important": true}, {"id": 6412, "name": "AbandonedLogCabin03", "category": "other", "x": 4294.6, "z": 1425.4, "px": 2780.9, "py": 2291.3, "has_dungeon": false, "has_important": true}, {"id": 6413, "name": "AbandonedLogCabin03", "category": "other", "x": -9910.2, "z": -443.5, "px": 356.7, "py": 1972.3, "has_dungeon": false, "has_important": true}, {"id": 6414, "name": "AbandonedLogCabin03", "category": "other", "x": 1011.0, "z": 199.7, "px": 2220.5, "py": 2082.1, "has_dungeon": false, "has_important": true}, {"id": 6415, "name": "AbandonedLogCabin03", "category": "other", "x": -3384.0, "z": -2112.1, "px": 1470.5, "py": 1687.5, "has_dungeon": false, "has_important": true}, {"id": 6416, "name": "AbandonedLogCabin03", "category": "other", "x": 1276.1, "z": 4928.1, "px": 2265.8, "py": 2889.1, "has_dungeon": false, "has_important": true}, {"id": 6417, "name": "AbandonedLogCabin03", "category": "other", "x": 4395.9, "z": -5762.7, "px": 2798.2, "py": 1064.5, "has_dungeon": false, "has_important": true}, {"id": 6418, "name": "AbandonedLogCabin03", "category": "other", "x": 9877.1, "z": -1197.4, "px": 3733.7, "py": 1843.6, "has_dungeon": false, "has_important": true}, {"id": 6419, "name": "AbandonedLogCabin03", "category": "other", "x": 4434.5, "z": -2069.4, "px": 2804.8, "py": 1694.8, "has_dungeon": false, "has_important": true}, {"id": 6420, "name": "AbandonedLogCabin03", "category": "other", "x": 3271.2, "z": 9407.3, "px": 2606.3, "py": 3653.5, "has_dungeon": false, "has_important": true}, {"id": 6421, "name": "AbandonedLogCabin03", "category": "other", "x": -4992.0, "z": 2575.2, "px": 1196.0, "py": 2487.5, "has_dungeon": false, "has_important": true}, {"id": 6422, "name": "AbandonedLogCabin03", "category": "other", "x": 2069.0, "z": -1467.4, "px": 2401.1, "py": 1797.6, "has_dungeon": false, "has_important": true}, {"id": 6423, "name": "AbandonedLogCabin03", "category": "other", "x": -5098.9, "z": 5426.5, "px": 1177.8, "py": 2974.1, "has_dungeon": false, "has_important": true}, {"id": 6424, "name": "AbandonedLogCabin04", "category": "other", "x": 5396.5, "z": 5996.7, "px": 2969.0, "py": 3071.4, "has_dungeon": false, "has_important": true}, {"id": 6425, "name": "AbandonedLogCabin04", "category": "other", "x": 512.5, "z": 3727.7, "px": 2135.5, "py": 2684.2, "has_dungeon": false, "has_important": true}, {"id": 6426, "name": "AbandonedLogCabin04", "category": "other", "x": 2737.1, "z": 719.2, "px": 2515.1, "py": 2170.7, "has_dungeon": false, "has_important": true}, {"id": 6427, "name": "AbandonedLogCabin04", "category": "other", "x": 3566.8, "z": -840.9, "px": 2656.7, "py": 1904.5, "has_dungeon": false, "has_important": true}, {"id": 6428, "name": "AbandonedLogCabin04", "category": "other", "x": -3952.1, "z": 4523.7, "px": 1373.5, "py": 2820.0, "has_dungeon": false, "has_important": true}, {"id": 6429, "name": "AbandonedLogCabin04", "category": "other", "x": -3905.0, "z": 1537.0, "px": 1381.5, "py": 2310.3, "has_dungeon": false, "has_important": true}, {"id": 6430, "name": "AbandonedLogCabin04", "category": "other", "x": 7094.7, "z": -303.6, "px": 3258.8, "py": 1996.2, "has_dungeon": false, "has_important": true}, {"id": 6431, "name": "AbandonedLogCabin04", "category": "other", "x": -6968.9, "z": -2543.1, "px": 858.6, "py": 1614.0, "has_dungeon": false, "has_important": true}, {"id": 6432, "name": "AbandonedLogCabin04", "category": "other", "x": 1396.8, "z": 6597.7, "px": 2286.4, "py": 3174.0, "has_dungeon": false, "has_important": true}, {"id": 6433, "name": "AbandonedLogCabin04", "category": "other", "x": -6018.9, "z": -373.8, "px": 1020.8, "py": 1984.2, "has_dungeon": false, "has_important": true}, {"id": 6434, "name": "AbandonedLogCabin04", "category": "other", "x": -2389.2, "z": 1861.0, "px": 1640.2, "py": 2365.6, "has_dungeon": false, "has_important": true}, {"id": 6435, "name": "AbandonedLogCabin04", "category": "other", "x": 6608.2, "z": 7059.8, "px": 3175.8, "py": 3252.9, "has_dungeon": false, "has_important": true}, {"id": 6436, "name": "AbandonedLogCabin04", "category": "other", "x": 1590.2, "z": 6723.4, "px": 2319.4, "py": 3195.5, "has_dungeon": false, "has_important": true}, {"id": 6437, "name": "AbandonedLogCabin04", "category": "other", "x": -758.4, "z": 249.6, "px": 1918.6, "py": 2090.6, "has_dungeon": false, "has_important": true}, {"id": 6438, "name": "AbandonedLogCabin04", "category": "other", "x": 6452.9, "z": 7227.4, "px": 3149.3, "py": 3281.5, "has_dungeon": false, "has_important": true}, {"id": 6439, "name": "AbandonedLogCabin04", "category": "other", "x": 7158.9, "z": -404.7, "px": 3269.8, "py": 1978.9, "has_dungeon": false, "has_important": true}, {"id": 6440, "name": "AbandonedLogCabin04", "category": "other", "x": -9874.7, "z": -570.6, "px": 362.7, "py": 1950.6, "has_dungeon": false, "has_important": true}, {"id": 6441, "name": "AbandonedLogCabin04", "category": "other", "x": -2289.6, "z": -430.8, "px": 1657.2, "py": 1974.5, "has_dungeon": false, "has_important": true}, {"id": 6442, "name": "AbandonedLogCabin04", "category": "other", "x": 1365.1, "z": 8404.9, "px": 2281.0, "py": 3482.4, "has_dungeon": false, "has_important": true}, {"id": 6443, "name": "AbandonedLogCabin04", "category": "other", "x": 3026.3, "z": 9482.8, "px": 2564.5, "py": 3666.4, "has_dungeon": false, "has_important": true}, {"id": 6444, "name": "AbandonedLogCabin04", "category": "other", "x": 5501.3, "z": 1739.1, "px": 2986.9, "py": 2344.8, "has_dungeon": false, "has_important": true}, {"id": 6445, "name": "AbandonedLogCabin04", "category": "other", "x": 6217.9, "z": 4727.3, "px": 3109.2, "py": 2854.8, "has_dungeon": false, "has_important": true}, {"id": 6446, "name": "AbandonedLogCabin04", "category": "other", "x": 2005.3, "z": 4685.4, "px": 2390.2, "py": 2847.6, "has_dungeon": false, "has_important": true}, {"id": 6447, "name": "AbandonedLogCabin04", "category": "other", "x": 1164.5, "z": 247.9, "px": 2246.7, "py": 2090.3, "has_dungeon": false, "has_important": true}, {"id": 6448, "name": "AbandonedLogCabin04", "category": "other", "x": -5226.9, "z": 5231.5, "px": 1155.9, "py": 2940.8, "has_dungeon": false, "has_important": true}, {"id": 6449, "name": "AbandonedLogCabin04", "category": "other", "x": 4406.7, "z": -1865.4, "px": 2800.1, "py": 1729.6, "has_dungeon": false, "has_important": true}, {"id": 6450, "name": "AbandonedLogCabin04", "category": "other", "x": 8494.0, "z": -3858.6, "px": 3497.6, "py": 1389.5, "has_dungeon": false, "has_important": true}, {"id": 6451, "name": "AbandonedLogCabin04", "category": "other", "x": 1604.6, "z": 6855.8, "px": 2321.9, "py": 3218.1, "has_dungeon": false, "has_important": true}, {"id": 6452, "name": "AbandonedLogCabin04", "category": "other", "x": 4685.7, "z": -5394.4, "px": 2847.7, "py": 1127.4, "has_dungeon": false, "has_important": true}, {"id": 6453, "name": "AbandonedLogCabin04", "category": "other", "x": -15.0, "z": -1299.1, "px": 2045.4, "py": 1826.3, "has_dungeon": false, "has_important": true}, {"id": 6454, "name": "AbandonedLogCabin04", "category": "other", "x": -6604.4, "z": -1868.7, "px": 920.8, "py": 1729.1, "has_dungeon": false, "has_important": true}, {"id": 6455, "name": "AbandonedLogCabin04", "category": "other", "x": 2480.8, "z": 695.1, "px": 2471.4, "py": 2166.6, "has_dungeon": false, "has_important": true}, {"id": 6456, "name": "AbandonedLogCabin04", "category": "other", "x": 1194.7, "z": 389.0, "px": 2251.9, "py": 2114.4, "has_dungeon": false, "has_important": true}, {"id": 6457, "name": "AbandonedLogCabin04", "category": "other", "x": 5370.1, "z": 49.8, "px": 2964.5, "py": 2056.5, "has_dungeon": false, "has_important": true}, {"id": 6458, "name": "AbandonedLogCabin04", "category": "other", "x": 2384.7, "z": 780.6, "px": 2455.0, "py": 2181.2, "has_dungeon": false, "has_important": true}, {"id": 6459, "name": "AbandonedLogCabin04", "category": "other", "x": 6545.4, "z": 6740.9, "px": 3165.1, "py": 3198.4, "has_dungeon": false, "has_important": true}, {"id": 6460, "name": "AbandonedLogCabin04", "category": "other", "x": 3123.1, "z": -2114.7, "px": 2581.0, "py": 1687.1, "has_dungeon": false, "has_important": true}, {"id": 6461, "name": "AbandonedLogCabin04", "category": "other", "x": 1345.4, "z": 6959.4, "px": 2277.6, "py": 3235.7, "has_dungeon": false, "has_important": true}, {"id": 6462, "name": "AbandonedLogCabin04", "category": "other", "x": 3119.7, "z": -1912.5, "px": 2580.4, "py": 1721.6, "has_dungeon": false, "has_important": true}, {"id": 6463, "name": "AbandonedLogCabin04", "category": "other", "x": -3526.3, "z": -2178.4, "px": 1446.2, "py": 1676.2, "has_dungeon": false, "has_important": true}, {"id": 6464, "name": "AbandonedLogCabin04", "category": "other", "x": 3284.0, "z": 374.1, "px": 2608.5, "py": 2111.8, "has_dungeon": false, "has_important": true}, {"id": 6465, "name": "AbandonedLogCabin04", "category": "other", "x": -2062.2, "z": -588.1, "px": 1696.1, "py": 1947.6, "has_dungeon": false, "has_important": true}, {"id": 6466, "name": "AbandonedLogCabin04", "category": "other", "x": -3781.1, "z": 1482.9, "px": 1402.7, "py": 2301.1, "has_dungeon": false, "has_important": true}, {"id": 6467, "name": "AbandonedLogCabin04", "category": "other", "x": 1205.2, "z": -5046.2, "px": 2253.7, "py": 1186.8, "has_dungeon": false, "has_important": true}, {"id": 6468, "name": "AbandonedLogCabin04", "category": "other", "x": 5676.4, "z": -339.8, "px": 3016.8, "py": 1990.0, "has_dungeon": false, "has_important": true}, {"id": 6469, "name": "AbandonedLogCabin04", "category": "other", "x": 2517.3, "z": 582.4, "px": 2477.6, "py": 2147.4, "has_dungeon": false, "has_important": true}, {"id": 6470, "name": "AbandonedLogCabin04", "category": "other", "x": 7110.0, "z": -565.9, "px": 3261.4, "py": 1951.4, "has_dungeon": false, "has_important": true}, {"id": 6471, "name": "AbandonedLogCabin04", "category": "other", "x": -6891.5, "z": 6780.8, "px": 871.9, "py": 3205.3, "has_dungeon": false, "has_important": true}, {"id": 6472, "name": "AbandonedLogCabin04", "category": "other", "x": -4602.4, "z": -183.1, "px": 1262.5, "py": 2016.8, "has_dungeon": false, "has_important": true}, {"id": 6473, "name": "AbandonedLogCabin04", "category": "other", "x": -5573.2, "z": -2736.7, "px": 1096.8, "py": 1580.9, "has_dungeon": false, "has_important": true}, {"id": 7251, "name": "BigRockClearing", "category": "other", "x": 1733.5, "z": -975.8, "px": 2343.9, "py": 1881.5, "has_dungeon": false, "has_important": true}, {"id": 7252, "name": "BigRockClearing", "category": "other", "x": -3378.2, "z": 4400.8, "px": 1471.5, "py": 2799.1, "has_dungeon": false, "has_important": true}, {"id": 7253, "name": "BigRockClearing", "category": "other", "x": 945.2, "z": 5263.8, "px": 2209.3, "py": 2946.4, "has_dungeon": false, "has_important": true}, {"id": 7254, "name": "BigRockClearing", "category": "other", "x": 8141.5, "z": 1.1, "px": 3437.5, "py": 2048.2, "has_dungeon": false, "has_important": true}, {"id": 7255, "name": "BigRockClearing", "category": "other", "x": -8269.2, "z": -1778.7, "px": 636.7, "py": 1744.4, "has_dungeon": false, "has_important": true}, {"id": 7256, "name": "BigRockClearing", "category": "other", "x": -9275.7, "z": 3008.8, "px": 464.9, "py": 2561.5, "has_dungeon": false, "has_important": true}, {"id": 7257, "name": "BigRockClearing", "category": "other", "x": 8075.3, "z": -2377.8, "px": 3426.2, "py": 1642.2, "has_dungeon": false, "has_important": true}, {"id": 7258, "name": "BigRockClearing", "category": "other", "x": 2229.1, "z": 1138.5, "px": 2428.4, "py": 2242.3, "has_dungeon": false, "has_important": true}, {"id": 7259, "name": "BigRockClearing", "category": "other", "x": -1717.3, "z": -4293.8, "px": 1754.9, "py": 1315.2, "has_dungeon": false, "has_important": true}, {"id": 7260, "name": "BigRockClearing", "category": "other", "x": 2567.2, "z": -3590.6, "px": 2486.1, "py": 1435.2, "has_dungeon": false, "has_important": true}, {"id": 3858, "name": "Dolmen01", "category": "other", "x": 6834.8, "z": -3823.5, "px": 3214.5, "py": 1395.5, "has_dungeon": false, "has_important": true}, {"id": 3859, "name": "Dolmen01", "category": "other", "x": 2380.4, "z": -1394.2, "px": 2454.3, "py": 1810.1, "has_dungeon": false, "has_important": true}, {"id": 3860, "name": "Dolmen01", "category": "other", "x": 2231.1, "z": 1389.2, "px": 2428.8, "py": 2285.1, "has_dungeon": false, "has_important": true}, {"id": 3861, "name": "Dolmen01", "category": "other", "x": 3513.5, "z": 5058.0, "px": 2647.6, "py": 2911.2, "has_dungeon": false, "has_important": true}, {"id": 3862, "name": "Dolmen01", "category": "other", "x": 385.2, "z": 570.2, "px": 2113.7, "py": 2145.3, "has_dungeon": false, "has_important": false}, {"id": 3863, "name": "Dolmen01", "category": "other", "x": 8000.5, "z": -3094.8, "px": 3413.4, "py": 1519.8, "has_dungeon": false, "has_important": true}, {"id": 3864, "name": "Dolmen01", "category": "other", "x": -3497.3, "z": 4734.6, "px": 1451.1, "py": 2856.0, "has_dungeon": false, "has_important": true}, {"id": 3865, "name": "Dolmen01", "category": "other", "x": 2934.0, "z": -2248.8, "px": 2548.7, "py": 1664.2, "has_dungeon": false, "has_important": true}, {"id": 3866, "name": "Dolmen01", "category": "other", "x": 768.3, "z": 4270.5, "px": 2179.1, "py": 2776.8, "has_dungeon": false, "has_important": false}, {"id": 3867, "name": "Dolmen01", "category": "other", "x": -497.9, "z": 46.8, "px": 1963.0, "py": 2056.0, "has_dungeon": false, "has_important": true}, {"id": 3868, "name": "Dolmen01", "category": "other", "x": 2699.7, "z": -3349.7, "px": 2508.7, "py": 1476.3, "has_dungeon": false, "has_important": true}, {"id": 3869, "name": "Dolmen01", "category": "other", "x": -5113.8, "z": 5651.2, "px": 1175.2, "py": 3012.5, "has_dungeon": false, "has_important": true}, {"id": 3870, "name": "Dolmen01", "category": "other", "x": -3455.7, "z": -2501.1, "px": 1458.2, "py": 1621.1, "has_dungeon": false, "has_important": true}, {"id": 3871, "name": "Dolmen01", "category": "other", "x": -3135.0, "z": 3112.8, "px": 1513.0, "py": 2579.3, "has_dungeon": false, "has_important": true}, {"id": 3872, "name": "Dolmen01", "category": "other", "x": -1805.5, "z": -84.0, "px": 1739.9, "py": 2033.7, "has_dungeon": false, "has_important": true}, {"id": 3873, "name": "Dolmen01", "category": "other", "x": 2745.9, "z": -4969.2, "px": 2516.6, "py": 1199.9, "has_dungeon": false, "has_important": true}, {"id": 3874, "name": "Dolmen01", "category": "other", "x": 8529.2, "z": 196.7, "px": 3503.7, "py": 2081.6, "has_dungeon": false, "has_important": true}, {"id": 3875, "name": "Dolmen01", "category": "other", "x": 1295.7, "z": 5577.2, "px": 2269.1, "py": 2999.8, "has_dungeon": false, "has_important": false}, {"id": 3876, "name": "Dolmen01", "category": "other", "x": 2187.7, "z": 5137.7, "px": 2421.4, "py": 2924.8, "has_dungeon": false, "has_important": true}, {"id": 3877, "name": "Dolmen01", "category": "other", "x": -2550.4, "z": -6189.7, "px": 1612.7, "py": 991.6, "has_dungeon": false, "has_important": true}, {"id": 3878, "name": "Dolmen01", "category": "other", "x": -3841.9, "z": 1204.8, "px": 1392.3, "py": 2253.6, "has_dungeon": false, "has_important": true}, {"id": 3879, "name": "Dolmen01", "category": "other", "x": -9110.2, "z": 3014.1, "px": 493.2, "py": 2562.4, "has_dungeon": false, "has_important": true}, {"id": 3880, "name": "Dolmen01", "category": "other", "x": -9293.8, "z": 2733.4, "px": 461.9, "py": 2514.5, "has_dungeon": false, "has_important": true}, {"id": 3881, "name": "Dolmen01", "category": "other", "x": 2623.6, "z": 4931.0, "px": 2495.8, "py": 2889.6, "has_dungeon": false, "has_important": true}, {"id": 3882, "name": "Dolmen01", "category": "other", "x": -1280.6, "z": -5494.6, "px": 1829.4, "py": 1110.3, "has_dungeon": false, "has_important": true}, {"id": 3883, "name": "Dolmen01", "category": "other", "x": -4983.9, "z": 456.2, "px": 1197.4, "py": 2125.9, "has_dungeon": false, "has_important": false}, {"id": 3884, "name": "Dolmen01", "category": "other", "x": 5225.0, "z": -2124.6, "px": 2939.7, "py": 1685.4, "has_dungeon": false, "has_important": false}, {"id": 3885, "name": "Dolmen01", "category": "other", "x": 2372.7, "z": 3643.1, "px": 2452.9, "py": 2669.8, "has_dungeon": false, "has_important": true}, {"id": 3886, "name": "Dolmen01", "category": "other", "x": -3954.8, "z": -2283.2, "px": 1373.0, "py": 1658.3, "has_dungeon": false, "has_important": false}, {"id": 3887, "name": "Dolmen01", "category": "other", "x": -4860.9, "z": 5506.6, "px": 1218.4, "py": 2987.8, "has_dungeon": false, "has_important": true}, {"id": 3888, "name": "Dolmen01", "category": "other", "x": -2000.5, "z": 3.5, "px": 1706.6, "py": 2048.6, "has_dungeon": false, "has_important": true}, {"id": 3889, "name": "Dolmen01", "category": "other", "x": -3396.4, "z": 1520.3, "px": 1468.3, "py": 2307.5, "has_dungeon": false, "has_important": true}, {"id": 3890, "name": "Dolmen01", "category": "other", "x": -7234.7, "z": 2536.8, "px": 813.3, "py": 2480.9, "has_dungeon": false, "has_important": true}, {"id": 3891, "name": "Dolmen01", "category": "other", "x": -1211.3, "z": -1287.4, "px": 1841.3, "py": 1828.3, "has_dungeon": false, "has_important": true}, {"id": 3892, "name": "Dolmen01", "category": "other", "x": -6888.5, "z": 5378.9, "px": 872.4, "py": 2966.0, "has_dungeon": false, "has_important": true}, {"id": 3893, "name": "Dolmen01", "category": "other", "x": 134.5, "z": -41.0, "px": 2071.0, "py": 2041.0, "has_dungeon": false, "has_important": true}, {"id": 3894, "name": "Dolmen01", "category": "other", "x": -5000.6, "z": 5821.3, "px": 1194.6, "py": 3041.5, "has_dungeon": false, "has_important": true}, {"id": 3895, "name": "Dolmen01", "category": "other", "x": 2420.8, "z": -3392.8, "px": 2461.1, "py": 1469.0, "has_dungeon": false, "has_important": true}, {"id": 3896, "name": "Dolmen01", "category": "other", "x": -7415.4, "z": -2024.3, "px": 782.4, "py": 1702.5, "has_dungeon": false, "has_important": true}, {"id": 3897, "name": "Dolmen01", "category": "other", "x": 896.9, "z": -3979.1, "px": 2201.1, "py": 1368.9, "has_dungeon": false, "has_important": true}, {"id": 3898, "name": "Dolmen01", "category": "other", "x": 48.3, "z": 134.3, "px": 2056.2, "py": 2070.9, "has_dungeon": false, "has_important": false}, {"id": 3899, "name": "Dolmen01", "category": "other", "x": 1792.7, "z": 1225.1, "px": 2354.0, "py": 2257.1, "has_dungeon": false, "has_important": false}, {"id": 3900, "name": "Dolmen01", "category": "other", "x": 2964.1, "z": -2902.3, "px": 2553.9, "py": 1552.7, "has_dungeon": false, "has_important": true}, {"id": 3901, "name": "Dolmen01", "category": "other", "x": -1718.2, "z": -1450.0, "px": 1754.8, "py": 1800.5, "has_dungeon": false, "has_important": false}, {"id": 3902, "name": "Dolmen01", "category": "other", "x": -1814.1, "z": -749.0, "px": 1738.4, "py": 1920.2, "has_dungeon": false, "has_important": true}, {"id": 3903, "name": "Dolmen01", "category": "other", "x": -1705.3, "z": -1099.1, "px": 1757.0, "py": 1860.4, "has_dungeon": false, "has_important": true}, {"id": 3904, "name": "Dolmen01", "category": "other", "x": -9650.2, "z": 640.5, "px": 401.0, "py": 2157.3, "has_dungeon": false, "has_important": true}, {"id": 3905, "name": "Dolmen01", "category": "other", "x": 7794.5, "z": -209.0, "px": 3378.3, "py": 2012.3, "has_dungeon": false, "has_important": true}, {"id": 3906, "name": "Dolmen01", "category": "other", "x": -1236.5, "z": -2027.4, "px": 1837.0, "py": 1702.0, "has_dungeon": false, "has_important": true}, {"id": 3907, "name": "Dolmen01", "category": "other", "x": 2320.0, "z": -841.1, "px": 2443.9, "py": 1904.5, "has_dungeon": false, "has_important": false}, {"id": 3908, "name": "Dolmen01", "category": "other", "x": 721.4, "z": 3340.9, "px": 2171.1, "py": 2618.2, "has_dungeon": false, "has_important": true}, {"id": 3909, "name": "Dolmen01", "category": "other", "x": 4.3, "z": -374.5, "px": 2048.7, "py": 1984.1, "has_dungeon": false, "has_important": true}, {"id": 3910, "name": "Dolmen01", "category": "other", "x": -3883.0, "z": -183.8, "px": 1385.3, "py": 2016.6, "has_dungeon": false, "has_important": false}, {"id": 3911, "name": "Dolmen01", "category": "other", "x": 8196.8, "z": -2473.2, "px": 3446.9, "py": 1625.9, "has_dungeon": false, "has_important": true}, {"id": 3912, "name": "Dolmen01", "category": "other", "x": -5241.1, "z": 722.5, "px": 1153.5, "py": 2171.3, "has_dungeon": false, "has_important": true}, {"id": 3913, "name": "Dolmen01", "category": "other", "x": -6274.1, "z": 2361.1, "px": 977.2, "py": 2451.0, "has_dungeon": false, "has_important": true}, {"id": 3914, "name": "Dolmen01", "category": "other", "x": -3434.2, "z": 3209.1, "px": 1461.9, "py": 2595.7, "has_dungeon": false, "has_important": true}, {"id": 3915, "name": "Dolmen01", "category": "other", "x": -566.5, "z": 104.9, "px": 1951.3, "py": 2065.9, "has_dungeon": false, "has_important": true}, {"id": 3916, "name": "Dolmen01", "category": "other", "x": 3919.6, "z": 3647.0, "px": 2716.9, "py": 2670.4, "has_dungeon": false, "has_important": true}, {"id": 3917, "name": "Dolmen01", "category": "other", "x": -9045.5, "z": 3258.0, "px": 504.2, "py": 2604.0, "has_dungeon": false, "has_important": true}, {"id": 3918, "name": "Dolmen01", "category": "other", "x": 4084.5, "z": -1525.6, "px": 2745.1, "py": 1787.6, "has_dungeon": false, "has_important": true}, {"id": 3919, "name": "Dolmen01", "category": "other", "x": -1682.1, "z": -361.8, "px": 1760.9, "py": 1986.3, "has_dungeon": false, "has_important": true}, {"id": 3920, "name": "Dolmen01", "category": "other", "x": 6010.7, "z": 1403.0, "px": 3073.8, "py": 2287.4, "has_dungeon": false, "has_important": true}, {"id": 3921, "name": "Dolmen01", "category": "other", "x": 1740.2, "z": -14.2, "px": 2345.0, "py": 2045.6, "has_dungeon": false, "has_important": true}, {"id": 3922, "name": "Dolmen01", "category": "other", "x": -586.7, "z": -45.0, "px": 1947.9, "py": 2040.3, "has_dungeon": false, "has_important": true}, {"id": 3923, "name": "Dolmen01", "category": "other", "x": -1171.5, "z": -5360.5, "px": 1848.1, "py": 1133.1, "has_dungeon": false, "has_important": true}, {"id": 3924, "name": "Dolmen01", "category": "other", "x": 3187.2, "z": -2772.8, "px": 2591.9, "py": 1574.8, "has_dungeon": false, "has_important": true}, {"id": 3925, "name": "Dolmen01", "category": "other", "x": -8704.3, "z": -653.6, "px": 562.5, "py": 1936.5, "has_dungeon": false, "has_important": false}, {"id": 3926, "name": "Dolmen01", "category": "other", "x": 7317.2, "z": -4113.4, "px": 3296.8, "py": 1346.0, "has_dungeon": false, "has_important": true}, {"id": 3927, "name": "Dolmen01", "category": "other", "x": -2429.6, "z": -1654.9, "px": 1633.3, "py": 1765.6, "has_dungeon": false, "has_important": true}, {"id": 3928, "name": "Dolmen01", "category": "other", "x": -6762.9, "z": 5488.9, "px": 893.8, "py": 2984.8, "has_dungeon": false, "has_important": true}, {"id": 3929, "name": "Dolmen01", "category": "other", "x": 1454.0, "z": 122.2, "px": 2296.1, "py": 2068.9, "has_dungeon": false, "has_important": true}, {"id": 3930, "name": "Dolmen01", "category": "other", "x": -4299.7, "z": -382.3, "px": 1314.2, "py": 1982.8, "has_dungeon": false, "has_important": true}, {"id": 3931, "name": "Dolmen01", "category": "other", "x": 4266.8, "z": -307.8, "px": 2776.2, "py": 1995.5, "has_dungeon": false, "has_important": true}, {"id": 3932, "name": "Dolmen01", "category": "other", "x": 2951.6, "z": -2325.0, "px": 2551.7, "py": 1651.2, "has_dungeon": false, "has_important": true}, {"id": 3933, "name": "Dolmen01", "category": "other", "x": -6930.4, "z": 2302.0, "px": 865.2, "py": 2440.9, "has_dungeon": false, "has_important": true}, {"id": 3934, "name": "Dolmen01", "category": "other", "x": -9715.4, "z": -399.7, "px": 389.9, "py": 1979.8, "has_dungeon": false, "has_important": true}, {"id": 3935, "name": "Dolmen01", "category": "other", "x": -7677.5, "z": -1852.3, "px": 737.7, "py": 1731.9, "has_dungeon": false, "has_important": false}, {"id": 3936, "name": "Dolmen01", "category": "other", "x": 5498.1, "z": 497.8, "px": 2986.3, "py": 2133.0, "has_dungeon": false, "has_important": true}, {"id": 3937, "name": "Dolmen01", "category": "other", "x": -1724.9, "z": 3055.9, "px": 1753.6, "py": 2569.5, "has_dungeon": false, "has_important": true}, {"id": 3938, "name": "Dolmen01", "category": "other", "x": -7311.8, "z": 2519.5, "px": 800.1, "py": 2478.0, "has_dungeon": false, "has_important": true}, {"id": 3939, "name": "Dolmen01", "category": "other", "x": 7279.6, "z": 3783.4, "px": 3290.4, "py": 2693.7, "has_dungeon": false, "has_important": true}, {"id": 3940, "name": "Dolmen01", "category": "other", "x": 881.4, "z": -2728.2, "px": 2198.4, "py": 1582.4, "has_dungeon": false, "has_important": true}, {"id": 3941, "name": "Dolmen01", "category": "other", "x": -4074.5, "z": -2052.6, "px": 1352.6, "py": 1697.7, "has_dungeon": false, "has_important": true}, {"id": 3942, "name": "Dolmen01", "category": "other", "x": -5038.2, "z": 398.3, "px": 1188.1, "py": 2116.0, "has_dungeon": false, "has_important": false}, {"id": 3943, "name": "Dolmen01", "category": "other", "x": -3179.8, "z": 4227.6, "px": 1505.3, "py": 2769.5, "has_dungeon": false, "has_important": true}, {"id": 3944, "name": "Dolmen01", "category": "other", "x": -3445.1, "z": 2861.7, "px": 1460.0, "py": 2536.4, "has_dungeon": false, "has_important": true}, {"id": 3945, "name": "Dolmen01", "category": "other", "x": 2420.2, "z": -4539.4, "px": 2461.0, "py": 1273.3, "has_dungeon": false, "has_important": false}, {"id": 3946, "name": "Dolmen01", "category": "other", "x": 5268.2, "z": 4860.6, "px": 2947.1, "py": 2877.5, "has_dungeon": false, "has_important": true}, {"id": 3947, "name": "Dolmen01", "category": "other", "x": -7144.6, "z": 2639.8, "px": 828.7, "py": 2498.5, "has_dungeon": false, "has_important": true}, {"id": 3948, "name": "Dolmen01", "category": "other", "x": 3401.2, "z": 3571.1, "px": 2628.5, "py": 2657.5, "has_dungeon": false, "has_important": true}, {"id": 3949, "name": "Dolmen01", "category": "other", "x": 276.5, "z": -1279.0, "px": 2095.2, "py": 1829.7, "has_dungeon": false, "has_important": false}, {"id": 3950, "name": "Dolmen01", "category": "other", "x": 8888.3, "z": -1641.6, "px": 3564.9, "py": 1767.8, "has_dungeon": false, "has_important": true}, {"id": 3951, "name": "Dolmen01", "category": "other", "x": 3279.2, "z": -2293.1, "px": 2607.7, "py": 1656.6, "has_dungeon": false, "has_important": true}, {"id": 3952, "name": "Dolmen01", "category": "other", "x": 3284.3, "z": 2427.8, "px": 2608.5, "py": 2462.3, "has_dungeon": false, "has_important": false}, {"id": 3953, "name": "Dolmen01", "category": "other", "x": -270.5, "z": -4182.6, "px": 2001.8, "py": 1334.2, "has_dungeon": false, "has_important": true}, {"id": 3954, "name": "Dolmen01", "category": "other", "x": 8273.7, "z": -440.4, "px": 3460.0, "py": 1972.8, "has_dungeon": false, "has_important": false}, {"id": 3955, "name": "Dolmen01", "category": "other", "x": 110.5, "z": -208.7, "px": 2066.9, "py": 2012.4, "has_dungeon": false, "has_important": true}, {"id": 3956, "name": "Dolmen01", "category": "other", "x": -6643.0, "z": 5526.4, "px": 914.3, "py": 2991.2, "has_dungeon": false, "has_important": true}, {"id": 3957, "name": "Dolmen01", "category": "other", "x": 1725.0, "z": 175.2, "px": 2342.4, "py": 2077.9, "has_dungeon": false, "has_important": false}, {"id": 3958, "name": "Dolmen02", "category": "other", "x": -3562.5, "z": -1962.9, "px": 1440.0, "py": 1713.0, "has_dungeon": false, "has_important": true}, {"id": 3959, "name": "Dolmen02", "category": "other", "x": 3882.8, "z": -1525.9, "px": 2710.7, "py": 1787.6, "has_dungeon": false, "has_important": true}, {"id": 3960, "name": "Dolmen02", "category": "other", "x": -1493.5, "z": -1163.4, "px": 1793.1, "py": 1849.4, "has_dungeon": false, "has_important": true}, {"id": 3961, "name": "Dolmen02", "category": "other", "x": 2100.2, "z": 1015.7, "px": 2406.4, "py": 2221.3, "has_dungeon": false, "has_important": true}, {"id": 3962, "name": "Dolmen02", "category": "other", "x": 1541.6, "z": -148.2, "px": 2311.1, "py": 2022.7, "has_dungeon": false, "has_important": true}, {"id": 3963, "name": "Dolmen02", "category": "other", "x": 3724.3, "z": 1329.8, "px": 2683.6, "py": 2275.0, "has_dungeon": false, "has_important": true}, {"id": 3964, "name": "Dolmen02", "category": "other", "x": 380.8, "z": 5185.4, "px": 2113.0, "py": 2933.0, "has_dungeon": false, "has_important": true}, {"id": 3965, "name": "Dolmen02", "category": "other", "x": 5182.0, "z": -2109.0, "px": 2932.4, "py": 1688.1, "has_dungeon": false, "has_important": false}, {"id": 3966, "name": "Dolmen02", "category": "other", "x": 206.3, "z": 494.8, "px": 2083.2, "py": 2132.4, "has_dungeon": false, "has_important": false}, {"id": 3967, "name": "Dolmen02", "category": "other", "x": 949.0, "z": 112.6, "px": 2210.0, "py": 2067.2, "has_dungeon": false, "has_important": true}, {"id": 3968, "name": "Dolmen02", "category": "other", "x": -8332.4, "z": 2546.9, "px": 625.9, "py": 2482.7, "has_dungeon": false, "has_important": true}, {"id": 3969, "name": "Dolmen02", "category": "other", "x": -3535.9, "z": -2493.5, "px": 1444.5, "py": 1622.4, "has_dungeon": false, "has_important": true}, {"id": 3970, "name": "Dolmen02", "category": "other", "x": 175.9, "z": -58.0, "px": 2078.0, "py": 2038.1, "has_dungeon": false, "has_important": true}, {"id": 3971, "name": "Dolmen02", "category": "other", "x": -336.9, "z": -947.6, "px": 1990.5, "py": 1886.3, "has_dungeon": false, "has_important": true}, {"id": 3972, "name": "Dolmen02", "category": "other", "x": 9722.0, "z": 1208.9, "px": 3707.2, "py": 2254.3, "has_dungeon": false, "has_important": true}, {"id": 3973, "name": "Dolmen02", "category": "other", "x": 4356.3, "z": 6803.5, "px": 2791.5, "py": 3209.1, "has_dungeon": false, "has_important": true}, {"id": 3974, "name": "Dolmen02", "category": "other", "x": 4137.0, "z": 6766.7, "px": 2754.0, "py": 3202.9, "has_dungeon": false, "has_important": true}, {"id": 3975, "name": "Dolmen02", "category": "other", "x": -2166.5, "z": -4084.0, "px": 1678.3, "py": 1351.0, "has_dungeon": false, "has_important": true}, {"id": 3976, "name": "Dolmen02", "category": "other", "x": 2105.1, "z": 704.3, "px": 2407.3, "py": 2168.2, "has_dungeon": false, "has_important": true}, {"id": 3977, "name": "Dolmen02", "category": "other", "x": 7952.5, "z": -2307.4, "px": 3405.2, "py": 1654.2, "has_dungeon": false, "has_important": true}, {"id": 3978, "name": "Dolmen02", "category": "other", "x": 8113.8, "z": -3913.0, "px": 3432.8, "py": 1380.2, "has_dungeon": false, "has_important": true}, {"id": 3979, "name": "Dolmen02", "category": "other", "x": -2244.4, "z": 428.5, "px": 1665.0, "py": 2121.1, "has_dungeon": false, "has_important": true}, {"id": 3980, "name": "Dolmen02", "category": "other", "x": -2037.8, "z": -4102.0, "px": 1700.2, "py": 1347.9, "has_dungeon": false, "has_important": false}, {"id": 3981, "name": "Dolmen02", "category": "other", "x": 787.0, "z": -119.5, "px": 2182.3, "py": 2027.6, "has_dungeon": false, "has_important": true}, {"id": 3982, "name": "Dolmen02", "category": "other", "x": -2836.0, "z": 918.9, "px": 1564.0, "py": 2204.8, "has_dungeon": false, "has_important": true}, {"id": 3983, "name": "Dolmen02", "category": "other", "x": -75.4, "z": 893.5, "px": 2035.1, "py": 2200.5, "has_dungeon": false, "has_important": true}, {"id": 3984, "name": "Dolmen02", "category": "other", "x": 58.0, "z": -1651.3, "px": 2057.9, "py": 1766.2, "has_dungeon": false, "has_important": false}, {"id": 3985, "name": "Dolmen02", "category": "other", "x": -2106.1, "z": -4359.7, "px": 1688.6, "py": 1303.9, "has_dungeon": false, "has_important": true}, {"id": 3986, "name": "Dolmen02", "category": "other", "x": 7470.8, "z": -3337.9, "px": 3323.0, "py": 1478.3, "has_dungeon": false, "has_important": false}, {"id": 3987, "name": "Dolmen02", "category": "other", "x": -5905.1, "z": -66.8, "px": 1040.2, "py": 2036.6, "has_dungeon": false, "has_important": true}, {"id": 3988, "name": "Dolmen02", "category": "other", "x": 3880.5, "z": 1066.9, "px": 2710.3, "py": 2230.1, "has_dungeon": false, "has_important": true}, {"id": 3989, "name": "Dolmen02", "category": "other", "x": -8440.2, "z": 659.2, "px": 607.5, "py": 2160.5, "has_dungeon": false, "has_important": false}, {"id": 3990, "name": "Dolmen02", "category": "other", "x": -7126.5, "z": -1905.8, "px": 831.7, "py": 1722.7, "has_dungeon": false, "has_important": true}, {"id": 3991, "name": "Dolmen02", "category": "other", "x": -581.6, "z": 272.7, "px": 1948.7, "py": 2094.5, "has_dungeon": false, "has_important": true}, {"id": 3992, "name": "Dolmen02", "category": "other", "x": -1751.9, "z": -4156.9, "px": 1749.0, "py": 1338.6, "has_dungeon": false, "has_important": true}, {"id": 3993, "name": "Dolmen02", "category": "other", "x": -1220.0, "z": -1451.4, "px": 1839.8, "py": 1800.3, "has_dungeon": false, "has_important": true}, {"id": 3994, "name": "Dolmen02", "category": "other", "x": -6796.4, "z": 3671.0, "px": 888.1, "py": 2674.5, "has_dungeon": false, "has_important": true}, {"id": 3995, "name": "Dolmen02", "category": "other", "x": -5508.6, "z": -1978.7, "px": 1107.9, "py": 1710.3, "has_dungeon": false, "has_important": true}, {"id": 3996, "name": "Dolmen02", "category": "other", "x": 1928.2, "z": -4604.2, "px": 2377.1, "py": 1262.2, "has_dungeon": false, "has_important": true}, {"id": 3997, "name": "Dolmen02", "category": "other", "x": 952.9, "z": 5715.4, "px": 2210.6, "py": 3023.4, "has_dungeon": false, "has_important": true}, {"id": 3998, "name": "Dolmen02", "category": "other", "x": 2837.7, "z": -71.9, "px": 2532.3, "py": 2035.7, "has_dungeon": false, "has_important": true}, {"id": 3999, "name": "Dolmen02", "category": "other", "x": -2129.8, "z": -3122.4, "px": 1684.5, "py": 1515.1, "has_dungeon": false, "has_important": true}, {"id": 4000, "name": "Dolmen02", "category": "other", "x": 3024.5, "z": -2500.5, "px": 2564.2, "py": 1621.2, "has_dungeon": false, "has_important": true}, {"id": 4001, "name": "Dolmen02", "category": "other", "x": 116.9, "z": -1548.3, "px": 2068.0, "py": 1783.8, "has_dungeon": false, "has_important": false}, {"id": 4002, "name": "Dolmen02", "category": "other", "x": -6889.5, "z": 5319.0, "px": 872.2, "py": 2955.8, "has_dungeon": false, "has_important": true}, {"id": 4003, "name": "Dolmen02", "category": "other", "x": 1323.6, "z": 5546.4, "px": 2273.9, "py": 2994.6, "has_dungeon": false, "has_important": false}, {"id": 4004, "name": "Dolmen02", "category": "other", "x": -178.9, "z": 340.4, "px": 2017.5, "py": 2106.1, "has_dungeon": false, "has_important": false}, {"id": 4005, "name": "Dolmen02", "category": "other", "x": -2280.5, "z": -2943.5, "px": 1658.8, "py": 1545.6, "has_dungeon": false, "has_important": false}, {"id": 4006, "name": "Dolmen02", "category": "other", "x": 9491.2, "z": 54.2, "px": 3667.8, "py": 2057.3, "has_dungeon": false, "has_important": true}, {"id": 4007, "name": "Dolmen02", "category": "other", "x": 2358.9, "z": 3948.2, "px": 2450.6, "py": 2721.8, "has_dungeon": false, "has_important": true}, {"id": 4008, "name": "Dolmen02", "category": "other", "x": 4357.8, "z": -1452.4, "px": 2791.7, "py": 1800.1, "has_dungeon": false, "has_important": false}, {"id": 4009, "name": "Dolmen02", "category": "other", "x": 6714.3, "z": 4989.4, "px": 3193.9, "py": 2899.5, "has_dungeon": false, "has_important": true}, {"id": 4010, "name": "Dolmen02", "category": "other", "x": -5040.4, "z": 620.7, "px": 1187.8, "py": 2153.9, "has_dungeon": false, "has_important": true}, {"id": 4011, "name": "Dolmen02", "category": "other", "x": 55.0, "z": 212.4, "px": 2057.4, "py": 2084.2, "has_dungeon": false, "has_important": true}, {"id": 4012, "name": "Dolmen02", "category": "other", "x": 266.3, "z": 5191.9, "px": 2093.4, "py": 2934.1, "has_dungeon": false, "has_important": true}, {"id": 4013, "name": "Dolmen02", "category": "other", "x": -1801.9, "z": -139.6, "px": 1740.5, "py": 2024.2, "has_dungeon": false, "has_important": false}, {"id": 4014, "name": "Dolmen02", "category": "other", "x": -6869.9, "z": 430.8, "px": 875.5, "py": 2121.5, "has_dungeon": false, "has_important": false}, {"id": 4015, "name": "Dolmen02", "category": "other", "x": 7464.1, "z": -4417.4, "px": 3321.9, "py": 1294.1, "has_dungeon": false, "has_important": true}, {"id": 4016, "name": "Dolmen02", "category": "other", "x": 2903.4, "z": -2627.6, "px": 2543.5, "py": 1599.6, "has_dungeon": false, "has_important": true}, {"id": 4017, "name": "Dolmen02", "category": "other", "x": -6608.2, "z": 3526.8, "px": 920.2, "py": 2649.9, "has_dungeon": false, "has_important": true}, {"id": 4018, "name": "Dolmen02", "category": "other", "x": 2899.8, "z": -4782.3, "px": 2542.9, "py": 1231.8, "has_dungeon": false, "has_important": false}, {"id": 4019, "name": "Dolmen02", "category": "other", "x": -2233.8, "z": -3113.0, "px": 1666.8, "py": 1516.7, "has_dungeon": false, "has_important": true}, {"id": 4020, "name": "Dolmen02", "category": "other", "x": -448.1, "z": -1522.9, "px": 1971.5, "py": 1788.1, "has_dungeon": false, "has_important": false}, {"id": 4021, "name": "Dolmen02", "category": "other", "x": 1097.4, "z": -5167.3, "px": 2235.3, "py": 1166.1, "has_dungeon": false, "has_important": true}, {"id": 4022, "name": "Dolmen02", "category": "other", "x": 2262.9, "z": -824.9, "px": 2434.2, "py": 1907.2, "has_dungeon": false, "has_important": true}, {"id": 4023, "name": "Dolmen02", "category": "other", "x": 1366.8, "z": -197.6, "px": 2281.3, "py": 2014.3, "has_dungeon": false, "has_important": true}, {"id": 4024, "name": "Dolmen02", "category": "other", "x": -5550.1, "z": -5245.6, "px": 1100.8, "py": 1152.8, "has_dungeon": false, "has_important": true}, {"id": 4025, "name": "Dolmen02", "category": "other", "x": 2765.0, "z": -3820.7, "px": 2519.9, "py": 1395.9, "has_dungeon": false, "has_important": true}, {"id": 4026, "name": "Dolmen02", "category": "other", "x": 5634.0, "z": 4983.8, "px": 3009.5, "py": 2898.6, "has_dungeon": false, "has_important": true}, {"id": 4027, "name": "Dolmen02", "category": "other", "x": 8632.2, "z": 132.3, "px": 3521.2, "py": 2070.6, "has_dungeon": false, "has_important": false}, {"id": 4028, "name": "Dolmen02", "category": "other", "x": 3839.8, "z": 4879.4, "px": 2703.3, "py": 2880.8, "has_dungeon": false, "has_important": true}, {"id": 4029, "name": "Dolmen02", "category": "other", "x": 7607.1, "z": 3923.2, "px": 3346.3, "py": 2717.6, "has_dungeon": false, "has_important": false}, {"id": 4030, "name": "Dolmen02", "category": "other", "x": 8462.4, "z": -2096.2, "px": 3492.2, "py": 1690.2, "has_dungeon": false, "has_important": false}, {"id": 4031, "name": "Dolmen02", "category": "other", "x": -6639.1, "z": 3625.9, "px": 914.9, "py": 2666.8, "has_dungeon": false, "has_important": true}, {"id": 4032, "name": "Dolmen02", "category": "other", "x": 1841.3, "z": 1276.3, "px": 2362.2, "py": 2265.8, "has_dungeon": false, "has_important": true}, {"id": 4033, "name": "Dolmen02", "category": "other", "x": 300.4, "z": 3895.7, "px": 2099.3, "py": 2712.9, "has_dungeon": false, "has_important": true}, {"id": 4034, "name": "Dolmen02", "category": "other", "x": 3947.7, "z": -1340.0, "px": 2721.7, "py": 1819.3, "has_dungeon": false, "has_important": true}, {"id": 4035, "name": "Dolmen02", "category": "other", "x": -5012.8, "z": 301.8, "px": 1192.5, "py": 2099.5, "has_dungeon": false, "has_important": true}, {"id": 4036, "name": "Dolmen02", "category": "other", "x": 123.7, "z": -1354.6, "px": 2069.1, "py": 1816.8, "has_dungeon": false, "has_important": true}, {"id": 4037, "name": "Dolmen02", "category": "other", "x": -9915.3, "z": -176.7, "px": 355.8, "py": 2017.8, "has_dungeon": false, "has_important": true}, {"id": 4038, "name": "Dolmen02", "category": "other", "x": 1707.9, "z": 7339.0, "px": 2339.5, "py": 3300.5, "has_dungeon": false, "has_important": false}, {"id": 4039, "name": "Dolmen02", "category": "other", "x": -5119.9, "z": 5806.3, "px": 1174.2, "py": 3038.9, "has_dungeon": false, "has_important": true}, {"id": 4040, "name": "Dolmen02", "category": "other", "x": 2548.7, "z": -1608.7, "px": 2483.0, "py": 1773.4, "has_dungeon": false, "has_important": true}, {"id": 4041, "name": "Dolmen02", "category": "other", "x": 3050.0, "z": -2519.3, "px": 2568.5, "py": 1618.0, "has_dungeon": false, "has_important": false}, {"id": 4042, "name": "Dolmen02", "category": "other", "x": -2992.3, "z": 1793.3, "px": 1537.3, "py": 2354.1, "has_dungeon": false, "has_important": true}, {"id": 4043, "name": "Dolmen02", "category": "other", "x": -271.2, "z": 51.2, "px": 2001.7, "py": 2056.7, "has_dungeon": false, "has_important": false}, {"id": 4044, "name": "Dolmen02", "category": "other", "x": 2551.0, "z": 5675.3, "px": 2483.4, "py": 3016.6, "has_dungeon": false, "has_important": false}, {"id": 4045, "name": "Dolmen02", "category": "other", "x": 2249.5, "z": 907.7, "px": 2431.9, "py": 2202.9, "has_dungeon": false, "has_important": true}, {"id": 4046, "name": "Dolmen02", "category": "other", "x": -3341.3, "z": 4271.0, "px": 1477.8, "py": 2776.9, "has_dungeon": false, "has_important": true}, {"id": 4047, "name": "Dolmen02", "category": "other", "x": -1137.4, "z": -1487.0, "px": 1853.9, "py": 1794.2, "has_dungeon": false, "has_important": false}, {"id": 4048, "name": "Dolmen02", "category": "other", "x": -5929.3, "z": 4844.0, "px": 1036.1, "py": 2874.7, "has_dungeon": false, "has_important": true}, {"id": 4049, "name": "Dolmen02", "category": "other", "x": 5335.5, "z": -785.8, "px": 2958.6, "py": 1913.9, "has_dungeon": false, "has_important": true}, {"id": 4050, "name": "Dolmen02", "category": "other", "x": 3455.7, "z": -1746.0, "px": 2637.8, "py": 1750.0, "has_dungeon": false, "has_important": true}, {"id": 4051, "name": "Dolmen02", "category": "other", "x": -3714.0, "z": 2928.2, "px": 1414.1, "py": 2547.7, "has_dungeon": false, "has_important": true}, {"id": 4052, "name": "Dolmen02", "category": "other", "x": 2359.2, "z": 1201.8, "px": 2450.6, "py": 2253.1, "has_dungeon": false, "has_important": true}, {"id": 4053, "name": "Dolmen02", "category": "other", "x": 8365.2, "z": 142.4, "px": 3475.7, "py": 2072.3, "has_dungeon": false, "has_important": true}, {"id": 4054, "name": "Dolmen02", "category": "other", "x": -4028.7, "z": -2558.3, "px": 1360.4, "py": 1611.4, "has_dungeon": false, "has_important": true}, {"id": 4055, "name": "Dolmen02", "category": "other", "x": -753.8, "z": -6485.7, "px": 1919.4, "py": 941.1, "has_dungeon": false, "has_important": true}, {"id": 4056, "name": "Dolmen02", "category": "other", "x": 2798.1, "z": 22.0, "px": 2525.5, "py": 2051.8, "has_dungeon": false, "has_important": true}, {"id": 4057, "name": "Dolmen02", "category": "other", "x": 5836.3, "z": 1425.4, "px": 3044.1, "py": 2291.3, "has_dungeon": false, "has_important": false}, {"id": 4058, "name": "Dolmen03", "category": "other", "x": -7701.6, "z": -2191.1, "px": 733.6, "py": 1674.1, "has_dungeon": false, "has_important": true}, {"id": 4059, "name": "Dolmen03", "category": "other", "x": 1100.8, "z": 2126.5, "px": 2235.9, "py": 2410.9, "has_dungeon": false, "has_important": true}, {"id": 4060, "name": "Dolmen03", "category": "other", "x": 4108.7, "z": -1343.5, "px": 2749.2, "py": 1818.7, "has_dungeon": false, "has_important": true}, {"id": 4061, "name": "Dolmen03", "category": "other", "x": -149.5, "z": 889.9, "px": 2022.5, "py": 2199.9, "has_dungeon": false, "has_important": true}, {"id": 4062, "name": "Dolmen03", "category": "other", "x": -3667.0, "z": 1169.3, "px": 1422.2, "py": 2247.6, "has_dungeon": false, "has_important": true}, {"id": 4063, "name": "Dolmen03", "category": "other", "x": 1491.0, "z": -2355.7, "px": 2302.5, "py": 1646.0, "has_dungeon": false, "has_important": true}, {"id": 4064, "name": "Dolmen03", "category": "other", "x": -9040.7, "z": 2899.2, "px": 505.1, "py": 2542.8, "has_dungeon": false, "has_important": true}, {"id": 4065, "name": "Dolmen03", "category": "other", "x": 2101.9, "z": -1221.5, "px": 2406.7, "py": 1839.5, "has_dungeon": false, "has_important": true}, {"id": 4066, "name": "Dolmen03", "category": "other", "x": -6677.7, "z": 3698.6, "px": 908.3, "py": 2679.2, "has_dungeon": false, "has_important": true}, {"id": 4067, "name": "Dolmen03", "category": "other", "x": 8053.7, "z": -2451.8, "px": 3422.5, "py": 1629.6, "has_dungeon": false, "has_important": true}, {"id": 4068, "name": "Dolmen03", "category": "other", "x": 8633.5, "z": -1872.3, "px": 3521.5, "py": 1728.5, "has_dungeon": false, "has_important": true}, {"id": 4069, "name": "Dolmen03", "category": "other", "x": -85.7, "z": -127.0, "px": 2033.4, "py": 2026.3, "has_dungeon": false, "has_important": true}, {"id": 4070, "name": "Dolmen03", "category": "other", "x": -2103.3, "z": 1663.5, "px": 1689.0, "py": 2331.9, "has_dungeon": false, "has_important": true}, {"id": 4071, "name": "Dolmen03", "category": "other", "x": 2380.3, "z": -4422.4, "px": 2454.2, "py": 1293.2, "has_dungeon": false, "has_important": true}, {"id": 4072, "name": "Dolmen03", "category": "other", "x": -371.5, "z": -4532.7, "px": 1984.6, "py": 1274.4, "has_dungeon": false, "has_important": true}, {"id": 4073, "name": "Dolmen03", "category": "other", "x": 2417.9, "z": 1263.6, "px": 2460.7, "py": 2263.7, "has_dungeon": false, "has_important": true}, {"id": 4074, "name": "Dolmen03", "category": "other", "x": -4018.4, "z": 4174.8, "px": 1362.2, "py": 2760.5, "has_dungeon": false, "has_important": true}, {"id": 4075, "name": "Dolmen03", "category": "other", "x": -8775.3, "z": -466.1, "px": 550.3, "py": 1968.5, "has_dungeon": false, "has_important": true}, {"id": 4076, "name": "Dolmen03", "category": "other", "x": -1775.3, "z": 2929.6, "px": 1745.0, "py": 2548.0, "has_dungeon": false, "has_important": true}, {"id": 4077, "name": "Dolmen03", "category": "other", "x": 3184.2, "z": 118.7, "px": 2591.4, "py": 2068.3, "has_dungeon": false, "has_important": true}, {"id": 4078, "name": "Dolmen03", "category": "other", "x": 1015.4, "z": 4460.9, "px": 2221.3, "py": 2809.3, "has_dungeon": false, "has_important": true}, {"id": 4079, "name": "Dolmen03", "category": "other", "x": 2808.5, "z": -3898.5, "px": 2527.3, "py": 1382.7, "has_dungeon": false, "has_important": true}, {"id": 4080, "name": "Dolmen03", "category": "other", "x": 8338.7, "z": -2028.6, "px": 3471.1, "py": 1701.8, "has_dungeon": false, "has_important": true}, {"id": 4081, "name": "Dolmen03", "category": "other", "x": -1224.9, "z": -5381.7, "px": 1839.0, "py": 1129.5, "has_dungeon": false, "has_important": true}, {"id": 4082, "name": "Dolmen03", "category": "other", "x": -4140.9, "z": 1811.8, "px": 1341.3, "py": 2357.2, "has_dungeon": false, "has_important": true}, {"id": 4083, "name": "Dolmen03", "category": "other", "x": -5704.5, "z": 5013.0, "px": 1074.4, "py": 2903.6, "has_dungeon": false, "has_important": true}, {"id": 4084, "name": "Dolmen03", "category": "other", "x": 8145.7, "z": -528.7, "px": 3438.2, "py": 1957.8, "has_dungeon": false, "has_important": true}, {"id": 4085, "name": "Dolmen03", "category": "other", "x": -5614.6, "z": -1834.6, "px": 1089.8, "py": 1734.9, "has_dungeon": false, "has_important": true}, {"id": 4086, "name": "Dolmen03", "category": "other", "x": -9281.1, "z": -2797.0, "px": 464.0, "py": 1570.6, "has_dungeon": false, "has_important": true}, {"id": 4087, "name": "Dolmen03", "category": "other", "x": -2430.1, "z": -1717.8, "px": 1633.3, "py": 1754.8, "has_dungeon": false, "has_important": true}, {"id": 4088, "name": "Dolmen03", "category": "other", "x": -3327.1, "z": 3280.1, "px": 1480.2, "py": 2607.8, "has_dungeon": false, "has_important": true}, {"id": 4089, "name": "Dolmen03", "category": "other", "x": -7422.6, "z": 4285.7, "px": 781.2, "py": 2779.4, "has_dungeon": false, "has_important": true}, {"id": 4090, "name": "Dolmen03", "category": "other", "x": 2762.3, "z": 5.1, "px": 2519.4, "py": 2048.9, "has_dungeon": false, "has_important": true}, {"id": 4091, "name": "Dolmen03", "category": "other", "x": 1074.9, "z": 5265.1, "px": 2231.4, "py": 2946.6, "has_dungeon": false, "has_important": true}, {"id": 4092, "name": "Dolmen03", "category": "other", "x": -9674.9, "z": -274.1, "px": 396.8, "py": 2001.2, "has_dungeon": false, "has_important": true}, {"id": 4093, "name": "Dolmen03", "category": "other", "x": 8576.1, "z": -3648.8, "px": 3511.7, "py": 1425.3, "has_dungeon": false, "has_important": true}, {"id": 4094, "name": "Dolmen03", "category": "other", "x": -4291.9, "z": 1873.9, "px": 1315.5, "py": 2367.8, "has_dungeon": false, "has_important": true}, {"id": 4095, "name": "Dolmen03", "category": "other", "x": -4934.2, "z": 5265.2, "px": 1205.9, "py": 2946.6, "has_dungeon": false, "has_important": true}, {"id": 4096, "name": "Dolmen03", "category": "other", "x": 6033.0, "z": -5803.2, "px": 3077.6, "py": 1057.6, "has_dungeon": false, "has_important": true}, {"id": 4097, "name": "Dolmen03", "category": "other", "x": 7658.4, "z": 3659.1, "px": 3355.0, "py": 2672.5, "has_dungeon": false, "has_important": true}, {"id": 4098, "name": "Dolmen03", "category": "other", "x": 5123.7, "z": -2097.4, "px": 2922.4, "py": 1690.0, "has_dungeon": false, "has_important": true}, {"id": 4099, "name": "Dolmen03", "category": "other", "x": -118.2, "z": -4800.4, "px": 2027.8, "py": 1228.7, "has_dungeon": false, "has_important": true}, {"id": 4100, "name": "Dolmen03", "category": "other", "x": -9429.9, "z": -302.9, "px": 438.6, "py": 1996.3, "has_dungeon": false, "has_important": true}, {"id": 4101, "name": "Dolmen03", "category": "other", "x": 3890.3, "z": 974.3, "px": 2711.9, "py": 2214.3, "has_dungeon": false, "has_important": true}, {"id": 4102, "name": "Dolmen03", "category": "other", "x": -4781.0, "z": 700.3, "px": 1232.0, "py": 2167.5, "has_dungeon": false, "has_important": true}, {"id": 4103, "name": "Dolmen03", "category": "other", "x": 8826.9, "z": -1550.5, "px": 3554.5, "py": 1783.4, "has_dungeon": false, "has_important": true}, {"id": 4104, "name": "Dolmen03", "category": "other", "x": 2498.2, "z": -4348.4, "px": 2474.4, "py": 1305.9, "has_dungeon": false, "has_important": true}, {"id": 4105, "name": "Dolmen03", "category": "other", "x": -1652.7, "z": -4400.3, "px": 1765.9, "py": 1297.0, "has_dungeon": false, "has_important": true}, {"id": 4106, "name": "Dolmen03", "category": "other", "x": 7410.7, "z": 1351.2, "px": 3312.8, "py": 2278.6, "has_dungeon": false, "has_important": true}, {"id": 4107, "name": "Dolmen03", "category": "other", "x": -8912.5, "z": 3249.2, "px": 526.9, "py": 2602.5, "has_dungeon": false, "has_important": true}, {"id": 203, "name": "Dragonqueen", "category": "other", "x": 1407.2, "z": 6842.7, "px": 2288.2, "py": 3215.8, "has_dungeon": false, "has_important": false}, {"id": 204, "name": "Dragonqueen", "category": "other", "x": 4370.2, "z": -1939.2, "px": 2793.8, "py": 1717.0, "has_dungeon": false, "has_important": false}, {"id": 205, "name": "Dragonqueen", "category": "other", "x": -4432.1, "z": -4019.9, "px": 1291.6, "py": 1361.9, "has_dungeon": false, "has_important": false}, {"id": 6574, "name": "DrakeLorestone", "category": "other", "x": -5039.8, "z": 2650.5, "px": 1187.9, "py": 2500.4, "has_dungeon": false, "has_important": false}, {"id": 6575, "name": "DrakeLorestone", "category": "other", "x": -2508.5, "z": 7316.0, "px": 1619.9, "py": 3296.6, "has_dungeon": false, "has_important": false}, {"id": 6576, "name": "DrakeLorestone", "category": "other", "x": -4539.0, "z": -3909.3, "px": 1273.3, "py": 1380.8, "has_dungeon": false, "has_important": false}, {"id": 6577, "name": "DrakeLorestone", "category": "other", "x": -9654.0, "z": -600.9, "px": 400.4, "py": 1945.4, "has_dungeon": false, "has_important": false}, {"id": 6578, "name": "DrakeLorestone", "category": "other", "x": -2153.8, "z": -179.6, "px": 1680.4, "py": 2017.3, "has_dungeon": false, "has_important": false}, {"id": 6579, "name": "DrakeLorestone", "category": "other", "x": 5738.1, "z": 2135.0, "px": 3027.3, "py": 2412.4, "has_dungeon": false, "has_important": false}, {"id": 6580, "name": "DrakeLorestone", "category": "other", "x": 4210.6, "z": -1806.8, "px": 2766.6, "py": 1739.6, "has_dungeon": false, "has_important": false}, {"id": 6581, "name": "DrakeLorestone", "category": "other", "x": -293.6, "z": 9177.2, "px": 1997.9, "py": 3614.2, "has_dungeon": false, "has_important": false}, {"id": 6582, "name": "DrakeLorestone", "category": "other", "x": 7047.1, "z": -553.9, "px": 3250.7, "py": 1953.5, "has_dungeon": false, "has_important": false}, {"id": 6583, "name": "DrakeLorestone", "category": "other", "x": 2561.2, "z": 967.2, "px": 2485.1, "py": 2213.1, "has_dungeon": false, "has_important": false}, {"id": 6584, "name": "DrakeLorestone", "category": "other", "x": 2302.2, "z": 8723.7, "px": 2440.9, "py": 3536.8, "has_dungeon": false, "has_important": false}, {"id": 6585, "name": "DrakeLorestone", "category": "other", "x": 4752.8, "z": -5298.3, "px": 2859.1, "py": 1143.8, "has_dungeon": false, "has_important": false}, {"id": 6586, "name": "DrakeLorestone", "category": "other", "x": 2508.7, "z": 8596.7, "px": 2476.2, "py": 3515.2, "has_dungeon": false, "has_important": false}, {"id": 6587, "name": "DrakeLorestone", "category": "other", "x": 5201.3, "z": 191.9, "px": 2935.7, "py": 2080.8, "has_dungeon": false, "has_important": false}, {"id": 6588, "name": "DrakeLorestone", "category": "other", "x": -1982.4, "z": -676.9, "px": 1709.7, "py": 1932.5, "has_dungeon": false, "has_important": false}, {"id": 6589, "name": "DrakeLorestone", "category": "other", "x": 976.5, "z": -2605.4, "px": 2214.7, "py": 1603.3, "has_dungeon": false, "has_important": false}, {"id": 6590, "name": "DrakeLorestone", "category": "other", "x": 572.3, "z": 3510.8, "px": 2145.7, "py": 2647.2, "has_dungeon": false, "has_important": false}, {"id": 6591, "name": "DrakeLorestone", "category": "other", "x": -2130.5, "z": -301.3, "px": 1684.4, "py": 1996.6, "has_dungeon": false, "has_important": false}, {"id": 6592, "name": "DrakeLorestone", "category": "other", "x": -6192.3, "z": -533.7, "px": 991.2, "py": 1956.9, "has_dungeon": false, "has_important": false}, {"id": 6593, "name": "DrakeLorestone", "category": "other", "x": -5311.5, "z": 5073.5, "px": 1141.5, "py": 2913.9, "has_dungeon": false, "has_important": false}, {"id": 6594, "name": "DrakeLorestone", "category": "other", "x": -3447.4, "z": 6221.0, "px": 1459.6, "py": 3109.7, "has_dungeon": false, "has_important": false}, {"id": 6595, "name": "DrakeLorestone", "category": "other", "x": 2632.3, "z": 763.9, "px": 2497.2, "py": 2178.4, "has_dungeon": false, "has_important": false}, {"id": 6596, "name": "DrakeLorestone", "category": "other", "x": -5273.7, "z": 5424.9, "px": 1148.0, "py": 2973.8, "has_dungeon": false, "has_important": false}, {"id": 6597, "name": "DrakeLorestone", "category": "other", "x": 6104.7, "z": 4840.8, "px": 3089.9, "py": 2874.2, "has_dungeon": false, "has_important": false}, {"id": 6598, "name": "DrakeLorestone", "category": "other", "x": 1190.4, "z": 420.5, "px": 2251.2, "py": 2119.8, "has_dungeon": false, "has_important": false}, {"id": 6599, "name": "DrakeLorestone", "category": "other", "x": 3247.9, "z": 421.1, "px": 2602.3, "py": 2119.9, "has_dungeon": false, "has_important": false}, {"id": 6600, "name": "DrakeLorestone", "category": "other", "x": 3334.5, "z": 9206.3, "px": 2617.1, "py": 3619.2, "has_dungeon": false, "has_important": false}, {"id": 6601, "name": "DrakeLorestone", "category": "other", "x": -845.2, "z": 8619.3, "px": 1903.8, "py": 3519.0, "has_dungeon": false, "has_important": false}, {"id": 6602, "name": "DrakeLorestone", "category": "other", "x": -8590.3, "z": -905.9, "px": 581.9, "py": 1893.4, "has_dungeon": false, "has_important": false}, {"id": 6603, "name": "DrakeLorestone", "category": "other", "x": -36.5, "z": -1280.4, "px": 2041.8, "py": 1829.5, "has_dungeon": false, "has_important": false}, {"id": 6604, "name": "DrakeLorestone", "category": "other", "x": 5656.9, "z": -335.3, "px": 3013.4, "py": 1990.8, "has_dungeon": false, "has_important": false}, {"id": 6605, "name": "DrakeLorestone", "category": "other", "x": 1298.6, "z": 6868.3, "px": 2269.6, "py": 3220.2, "has_dungeon": false, "has_important": false}, {"id": 6606, "name": "DrakeLorestone", "category": "other", "x": 4632.3, "z": -5738.1, "px": 2838.6, "py": 1068.7, "has_dungeon": false, "has_important": false}, {"id": 6607, "name": "DrakeLorestone", "category": "other", "x": 2307.4, "z": 8852.0, "px": 2441.8, "py": 3558.7, "has_dungeon": false, "has_important": false}, {"id": 6608, "name": "DrakeLorestone", "category": "other", "x": 2729.0, "z": -2698.4, "px": 2513.7, "py": 1587.5, "has_dungeon": false, "has_important": false}, {"id": 6609, "name": "DrakeLorestone", "category": "other", "x": 9879.9, "z": -1253.7, "px": 3734.2, "py": 1834.0, "has_dungeon": false, "has_important": false}, {"id": 6610, "name": "DrakeLorestone", "category": "other", "x": -9903.4, "z": -510.0, "px": 357.8, "py": 1961.0, "has_dungeon": false, "has_important": false}, {"id": 6611, "name": "DrakeLorestone", "category": "other", "x": 5392.0, "z": -552.3, "px": 2968.2, "py": 1953.7, "has_dungeon": false, "has_important": false}, {"id": 6612, "name": "DrakeLorestone", "category": "other", "x": 2316.3, "z": -2916.5, "px": 2443.3, "py": 1550.3, "has_dungeon": false, "has_important": false}, {"id": 6613, "name": "DrakeLorestone", "category": "other", "x": 2473.8, "z": -2673.5, "px": 2470.2, "py": 1591.7, "has_dungeon": false, "has_important": false}, {"id": 6614, "name": "DrakeLorestone", "category": "other", "x": -3580.7, "z": 6515.9, "px": 1436.9, "py": 3160.0, "has_dungeon": false, "has_important": false}, {"id": 6615, "name": "DrakeLorestone", "category": "other", "x": 9910.4, "z": -1110.4, "px": 3739.4, "py": 1858.5, "has_dungeon": false, "has_important": false}, {"id": 6616, "name": "DrakeLorestone", "category": "other", "x": 1638.4, "z": 6550.7, "px": 2327.6, "py": 3166.0, "has_dungeon": false, "has_important": false}, {"id": 6617, "name": "DrakeLorestone", "category": "other", "x": 2030.4, "z": -6809.2, "px": 2394.5, "py": 885.9, "has_dungeon": false, "has_important": false}, {"id": 6618, "name": "DrakeLorestone", "category": "other", "x": -6760.0, "z": -2352.9, "px": 894.3, "py": 1646.4, "has_dungeon": false, "has_important": false}, {"id": 6619, "name": "DrakeLorestone", "category": "other", "x": 2646.3, "z": 8762.3, "px": 2499.6, "py": 3543.4, "has_dungeon": false, "has_important": false}, {"id": 6620, "name": "DrakeLorestone", "category": "other", "x": 5804.4, "z": -374.2, "px": 3038.6, "py": 1984.1, "has_dungeon": false, "has_important": false}, {"id": 6621, "name": "DrakeLorestone", "category": "other", "x": -6959.5, "z": -2257.9, "px": 860.2, "py": 1662.7, "has_dungeon": false, "has_important": false}, {"id": 6622, "name": "DrakeLorestone", "category": "other", "x": -178.2, "z": -1112.4, "px": 2017.6, "py": 1858.2, "has_dungeon": false, "has_important": false}, {"id": 6623, "name": "DrakeLorestone", "category": "other", "x": -6767.9, "z": 6896.2, "px": 892.9, "py": 3225.0, "has_dungeon": false, "has_important": false}, {"id": 6058, "name": "DrakeNest01", "category": "other", "x": 4603.2, "z": -5557.0, "px": 2833.6, "py": 1099.6, "has_dungeon": false, "has_important": true}, {"id": 6059, "name": "DrakeNest01", "category": "other", "x": -2085.0, "z": -81.7, "px": 1692.2, "py": 2034.1, "has_dungeon": false, "has_important": true}, {"id": 6060, "name": "DrakeNest01", "category": "other", "x": 4523.5, "z": -5820.3, "px": 2820.0, "py": 1054.7, "has_dungeon": false, "has_important": true}, {"id": 6061, "name": "DrakeNest01", "category": "other", "x": -9882.9, "z": -468.6, "px": 361.3, "py": 1968.0, "has_dungeon": false, "has_important": true}, {"id": 6062, "name": "DrakeNest01", "category": "other", "x": 390.9, "z": 3639.4, "px": 2114.7, "py": 2669.1, "has_dungeon": false, "has_important": true}, {"id": 6063, "name": "DrakeNest01", "category": "other", "x": -112.1, "z": 9154.8, "px": 2028.9, "py": 3610.4, "has_dungeon": false, "has_important": true}, {"id": 6064, "name": "DrakeNest01", "category": "other", "x": 1240.5, "z": 320.2, "px": 2259.7, "py": 2102.6, "has_dungeon": false, "has_important": true}, {"id": 6065, "name": "DrakeNest01", "category": "other", "x": 1327.3, "z": -5123.4, "px": 2274.5, "py": 1173.6, "has_dungeon": false, "has_important": true}, {"id": 6066, "name": "DrakeNest01", "category": "other", "x": 2030.3, "z": -6824.6, "px": 2394.5, "py": 883.3, "has_dungeon": false, "has_important": true}, {"id": 6067, "name": "DrakeNest01", "category": "other", "x": -6872.0, "z": 6762.7, "px": 875.2, "py": 3202.2, "has_dungeon": false, "has_important": true}, {"id": 6068, "name": "DrakeNest01", "category": "other", "x": 6352.8, "z": 6864.2, "px": 3132.2, "py": 3219.5, "has_dungeon": false, "has_important": true}, {"id": 6069, "name": "DrakeNest01", "category": "other", "x": 2443.3, "z": 777.7, "px": 2465.0, "py": 2180.7, "has_dungeon": false, "has_important": true}, {"id": 6070, "name": "DrakeNest01", "category": "other", "x": 492.0, "z": 3653.1, "px": 2132.0, "py": 2671.5, "has_dungeon": false, "has_important": true}, {"id": 6071, "name": "DrakeNest01", "category": "other", "x": -6959.1, "z": -2408.6, "px": 860.3, "py": 1636.9, "has_dungeon": false, "has_important": true}, {"id": 6072, "name": "DrakeNest01", "category": "other", "x": -7142.6, "z": -1090.4, "px": 829.0, "py": 1861.9, "has_dungeon": false, "has_important": true}, {"id": 6073, "name": "DrakeNest01", "category": "other", "x": -1978.1, "z": -459.5, "px": 1710.4, "py": 1969.6, "has_dungeon": false, "has_important": true}, {"id": 6074, "name": "DrakeNest01", "category": "other", "x": 462.0, "z": 4296.7, "px": 2126.8, "py": 2781.3, "has_dungeon": false, "has_important": true}, {"id": 6075, "name": "DrakeNest01", "category": "other", "x": -6092.0, "z": -391.5, "px": 1008.3, "py": 1981.2, "has_dungeon": false, "has_important": true}, {"id": 6076, "name": "DrakeNest01", "category": "other", "x": 2361.0, "z": -2599.9, "px": 2450.9, "py": 1604.3, "has_dungeon": false, "has_important": true}, {"id": 6077, "name": "DrakeNest01", "category": "other", "x": 2789.9, "z": 778.0, "px": 2524.1, "py": 2180.8, "has_dungeon": false, "has_important": true}, {"id": 6078, "name": "DrakeNest01", "category": "other", "x": 2433.0, "z": -2710.2, "px": 2463.2, "py": 1585.5, "has_dungeon": false, "has_important": true}, {"id": 6079, "name": "DrakeNest01", "category": "other", "x": -3926.5, "z": 5197.9, "px": 1377.9, "py": 2935.1, "has_dungeon": false, "has_important": true}, {"id": 6080, "name": "DrakeNest01", "category": "other", "x": 7340.7, "z": 3953.7, "px": 3300.8, "py": 2722.8, "has_dungeon": false, "has_important": true}, {"id": 6081, "name": "DrakeNest01", "category": "other", "x": -7037.0, "z": -2504.3, "px": 847.0, "py": 1620.6, "has_dungeon": false, "has_important": true}, {"id": 6082, "name": "DrakeNest01", "category": "other", "x": 8969.6, "z": -2410.4, "px": 3578.8, "py": 1636.6, "has_dungeon": false, "has_important": true}, {"id": 6083, "name": "DrakeNest01", "category": "other", "x": 1525.4, "z": 6825.7, "px": 2308.3, "py": 3212.9, "has_dungeon": false, "has_important": true}, {"id": 6084, "name": "DrakeNest01", "category": "other", "x": 2153.3, "z": -3468.0, "px": 2415.5, "py": 1456.1, "has_dungeon": false, "has_important": true}, {"id": 6085, "name": "DrakeNest01", "category": "other", "x": 8434.6, "z": -3926.8, "px": 3487.5, "py": 1377.8, "has_dungeon": false, "has_important": true}, {"id": 6086, "name": "DrakeNest01", "category": "other", "x": 6035.5, "z": 4226.1, "px": 3078.1, "py": 2769.3, "has_dungeon": false, "has_important": true}, {"id": 6087, "name": "DrakeNest01", "category": "other", "x": 2071.8, "z": -3539.6, "px": 2401.6, "py": 1443.9, "has_dungeon": false, "has_important": true}, {"id": 6088, "name": "DrakeNest01", "category": "other", "x": -7293.1, "z": -1010.8, "px": 803.3, "py": 1875.5, "has_dungeon": false, "has_important": true}, {"id": 6089, "name": "DrakeNest01", "category": "other", "x": -3725.0, "z": 1487.8, "px": 1412.3, "py": 2301.9, "has_dungeon": false, "has_important": true}, {"id": 6090, "name": "DrakeNest01", "category": "other", "x": -7658.7, "z": -2356.8, "px": 740.9, "py": 1645.8, "has_dungeon": false, "has_important": true}, {"id": 6091, "name": "DrakeNest01", "category": "other", "x": 4412.2, "z": -1931.2, "px": 2801.0, "py": 1718.4, "has_dungeon": false, "has_important": true}, {"id": 6092, "name": "DrakeNest01", "category": "other", "x": -9961.2, "z": -410.3, "px": 348.0, "py": 1978.0, "has_dungeon": false, "has_important": true}, {"id": 6093, "name": "DrakeNest01", "category": "other", "x": -3783.9, "z": 5143.5, "px": 1402.2, "py": 2925.8, "has_dungeon": false, "has_important": true}, {"id": 6094, "name": "DrakeNest01", "category": "other", "x": 3268.3, "z": 9366.7, "px": 2605.8, "py": 3646.6, "has_dungeon": false, "has_important": true}, {"id": 6095, "name": "DrakeNest01", "category": "other", "x": 6650.9, "z": 7126.6, "px": 3183.1, "py": 3264.3, "has_dungeon": false, "has_important": true}, {"id": 6096, "name": "DrakeNest01", "category": "other", "x": -5045.5, "z": 2737.3, "px": 1186.9, "py": 2515.2, "has_dungeon": false, "has_important": true}, {"id": 6097, "name": "DrakeNest01", "category": "other", "x": 5305.0, "z": -309.5, "px": 2953.4, "py": 1995.2, "has_dungeon": false, "has_important": true}, {"id": 6098, "name": "DrakeNest01", "category": "other", "x": 1164.3, "z": 199.6, "px": 2246.7, "py": 2082.1, "has_dungeon": false, "has_important": true}, {"id": 6099, "name": "DrakeNest01", "category": "other", "x": 4557.9, "z": -1898.4, "px": 2825.9, "py": 1724.0, "has_dungeon": false, "has_important": true}, {"id": 6100, "name": "DrakeNest01", "category": "other", "x": 3379.1, "z": 273.4, "px": 2624.7, "py": 2094.7, "has_dungeon": false, "has_important": true}, {"id": 6101, "name": "DrakeNest01", "category": "other", "x": -4111.4, "z": 1525.0, "px": 1346.3, "py": 2308.3, "has_dungeon": false, "has_important": true}, {"id": 6102, "name": "DrakeNest01", "category": "other", "x": 2200.4, "z": -6163.5, "px": 2423.5, "py": 996.1, "has_dungeon": false, "has_important": true}, {"id": 6103, "name": "DrakeNest01", "category": "other", "x": -5268.8, "z": 5191.6, "px": 1148.8, "py": 2934.0, "has_dungeon": false, "has_important": true}, {"id": 6104, "name": "DrakeNest01", "category": "other", "x": 7718.9, "z": -579.1, "px": 3365.4, "py": 1949.2, "has_dungeon": false, "has_important": true}, {"id": 6105, "name": "DrakeNest01", "category": "other", "x": 5699.9, "z": -398.1, "px": 3020.8, "py": 1980.1, "has_dungeon": false, "has_important": true}, {"id": 6106, "name": "DrakeNest01", "category": "other", "x": 2312.8, "z": 8664.2, "px": 2442.7, "py": 3526.7, "has_dungeon": false, "has_important": true}, {"id": 6107, "name": "DrakeNest01", "category": "other", "x": 2567.5, "z": -2901.6, "px": 2486.2, "py": 1552.8, "has_dungeon": false, "has_important": true}, {"id": 6108, "name": "DrakeNest01", "category": "other", "x": -3913.0, "z": 1422.9, "px": 1380.2, "py": 2290.8, "has_dungeon": false, "has_important": true}, {"id": 6109, "name": "DrakeNest01", "category": "other", "x": 1639.4, "z": 6584.3, "px": 2327.8, "py": 3171.7, "has_dungeon": false, "has_important": true}, {"id": 6110, "name": "DrakeNest01", "category": "other", "x": 1363.8, "z": 6783.7, "px": 2280.8, "py": 3205.8, "has_dungeon": false, "has_important": true}, {"id": 6111, "name": "DrakeNest01", "category": "other", "x": 6602.4, "z": 6864.9, "px": 3174.8, "py": 3219.6, "has_dungeon": false, "has_important": true}, {"id": 6112, "name": "DrakeNest01", "category": "other", "x": 5830.9, "z": 4797.4, "px": 3043.1, "py": 2866.8, "has_dungeon": false, "has_important": true}, {"id": 6113, "name": "DrakeNest01", "category": "other", "x": 6455.5, "z": 6740.0, "px": 3149.7, "py": 3198.3, "has_dungeon": false, "has_important": true}, {"id": 6114, "name": "DrakeNest01", "category": "other", "x": 6773.0, "z": 6843.0, "px": 3203.9, "py": 3215.9, "has_dungeon": false, "has_important": true}, {"id": 6115, "name": "DrakeNest01", "category": "other", "x": 2355.6, "z": 871.1, "px": 2450.0, "py": 2196.7, "has_dungeon": false, "has_important": true}, {"id": 6116, "name": "DrakeNest01", "category": "other", "x": -6233.7, "z": -470.9, "px": 984.1, "py": 1967.6, "has_dungeon": false, "has_important": true}, {"id": 6117, "name": "DrakeNest01", "category": "other", "x": 6509.0, "z": 6542.1, "px": 3158.9, "py": 3164.5, "has_dungeon": false, "has_important": true}, {"id": 6118, "name": "DrakeNest01", "category": "other", "x": -6807.5, "z": -2233.2, "px": 886.2, "py": 1666.9, "has_dungeon": false, "has_important": true}, {"id": 6119, "name": "DrakeNest01", "category": "other", "x": 3244.7, "z": -1815.4, "px": 2601.8, "py": 1738.2, "has_dungeon": false, "has_important": true}, {"id": 6120, "name": "DrakeNest01", "category": "other", "x": 1139.7, "z": 368.2, "px": 2242.5, "py": 2110.8, "has_dungeon": false, "has_important": true}, {"id": 6121, "name": "DrakeNest01", "category": "other", "x": -3854.0, "z": 4495.3, "px": 1390.3, "py": 2815.2, "has_dungeon": false, "has_important": true}, {"id": 6122, "name": "DrakeNest01", "category": "other", "x": 2581.5, "z": 809.6, "px": 2488.6, "py": 2186.2, "has_dungeon": false, "has_important": true}, {"id": 6123, "name": "DrakeNest01", "category": "other", "x": 3445.6, "z": 9268.7, "px": 2636.0, "py": 3629.9, "has_dungeon": false, "has_important": true}, {"id": 6124, "name": "DrakeNest01", "category": "other", "x": -5402.0, "z": 5105.6, "px": 1126.1, "py": 2919.4, "has_dungeon": false, "has_important": true}, {"id": 6125, "name": "DrakeNest01", "category": "other", "x": 1133.3, "z": 111.3, "px": 2241.4, "py": 2067.0, "has_dungeon": false, "has_important": true}, {"id": 6126, "name": "DrakeNest01", "category": "other", "x": 4488.0, "z": -5682.8, "px": 2814.0, "py": 1078.1, "has_dungeon": false, "has_important": true}, {"id": 6127, "name": "DrakeNest01", "category": "other", "x": 2951.6, "z": 778.3, "px": 2551.7, "py": 2180.8, "has_dungeon": false, "has_important": true}, {"id": 6128, "name": "DrakeNest01", "category": "other", "x": -4395.1, "z": -1042.3, "px": 1297.9, "py": 1870.1, "has_dungeon": false, "has_important": true}, {"id": 6129, "name": "DrakeNest01", "category": "other", "x": -3888.7, "z": 4688.1, "px": 1384.3, "py": 2848.1, "has_dungeon": false, "has_important": true}, {"id": 6130, "name": "DrakeNest01", "category": "other", "x": 3273.1, "z": 295.3, "px": 2606.6, "py": 2098.4, "has_dungeon": false, "has_important": true}, {"id": 6131, "name": "DrakeNest01", "category": "other", "x": 6657.7, "z": 6720.0, "px": 3184.2, "py": 3194.9, "has_dungeon": false, "has_important": true}, {"id": 6132, "name": "DrakeNest01", "category": "other", "x": -8474.7, "z": -1010.6, "px": 601.7, "py": 1875.5, "has_dungeon": false, "has_important": true}, {"id": 6133, "name": "DrakeNest01", "category": "other", "x": 4270.1, "z": -5755.1, "px": 2776.8, "py": 1065.8, "has_dungeon": false, "has_important": true}, {"id": 6134, "name": "DrakeNest01", "category": "other", "x": 3603.1, "z": -88.4, "px": 2662.9, "py": 2032.9, "has_dungeon": false, "has_important": true}, {"id": 6135, "name": "DrakeNest01", "category": "other", "x": 5747.6, "z": -252.0, "px": 3028.9, "py": 2005.0, "has_dungeon": false, "has_important": true}, {"id": 6136, "name": "DrakeNest01", "category": "other", "x": 8341.2, "z": -4027.8, "px": 3471.6, "py": 1360.6, "has_dungeon": false, "has_important": true}, {"id": 6137, "name": "DrakeNest01", "category": "other", "x": 4301.9, "z": -1958.1, "px": 2782.2, "py": 1713.8, "has_dungeon": false, "has_important": true}, {"id": 6138, "name": "DrakeNest01", "category": "other", "x": 4157.0, "z": -1731.0, "px": 2757.5, "py": 1752.6, "has_dungeon": false, "has_important": true}, {"id": 6139, "name": "DrakeNest01", "category": "other", "x": 3337.2, "z": 188.3, "px": 2617.5, "py": 2080.1, "has_dungeon": false, "has_important": true}, {"id": 6140, "name": "DrakeNest01", "category": "other", "x": 9874.4, "z": -1158.7, "px": 3733.2, "py": 1850.2, "has_dungeon": false, "has_important": true}, {"id": 6141, "name": "DrakeNest01", "category": "other", "x": -279.5, "z": -1133.1, "px": 2000.3, "py": 1854.6, "has_dungeon": false, "has_important": true}, {"id": 6142, "name": "DrakeNest01", "category": "other", "x": 4242.3, "z": -2047.0, "px": 2772.0, "py": 1698.6, "has_dungeon": false, "has_important": true}, {"id": 6143, "name": "DrakeNest01", "category": "other", "x": 5905.9, "z": 4500.4, "px": 3055.9, "py": 2816.1, "has_dungeon": false, "has_important": true}, {"id": 6144, "name": "DrakeNest01", "category": "other", "x": 2859.1, "z": 575.8, "px": 2536.0, "py": 2146.3, "has_dungeon": false, "has_important": true}, {"id": 6145, "name": "DrakeNest01", "category": "other", "x": -9608.5, "z": -702.8, "px": 408.1, "py": 1928.1, "has_dungeon": false, "has_important": true}, {"id": 6146, "name": "DrakeNest01", "category": "other", "x": -259.7, "z": 9108.8, "px": 2003.7, "py": 3602.6, "has_dungeon": false, "has_important": true}, {"id": 6147, "name": "DrakeNest01", "category": "other", "x": 5288.1, "z": 192.6, "px": 2950.5, "py": 2080.9, "has_dungeon": false, "has_important": true}, {"id": 6148, "name": "DrakeNest01", "category": "other", "x": 4159.9, "z": -1839.0, "px": 2758.0, "py": 1734.1, "has_dungeon": false, "has_important": true}, {"id": 6149, "name": "DrakeNest01", "category": "other", "x": -2292.4, "z": -408.3, "px": 1656.8, "py": 1978.3, "has_dungeon": false, "has_important": true}, {"id": 6150, "name": "DrakeNest01", "category": "other", "x": 1580.6, "z": 6920.2, "px": 2317.8, "py": 3229.0, "has_dungeon": false, "has_important": true}, {"id": 6151, "name": "DrakeNest01", "category": "other", "x": 5582.0, "z": -488.0, "px": 3000.7, "py": 1964.7, "has_dungeon": false, "has_important": true}, {"id": 6152, "name": "DrakeNest01", "category": "other", "x": 7247.3, "z": -429.2, "px": 3284.9, "py": 1974.7, "has_dungeon": false, "has_important": true}, {"id": 6153, "name": "DrakeNest01", "category": "other", "x": 3180.5, "z": -2036.5, "px": 2590.8, "py": 1700.4, "has_dungeon": false, "has_important": true}, {"id": 6154, "name": "DrakeNest01", "category": "other", "x": 2423.6, "z": 656.5, "px": 2461.6, "py": 2160.0, "has_dungeon": false, "has_important": true}, {"id": 6155, "name": "DrakeNest01", "category": "other", "x": 2424.9, "z": 8665.5, "px": 2461.8, "py": 3526.9, "has_dungeon": false, "has_important": true}, {"id": 6156, "name": "DrakeNest01", "category": "other", "x": 1518.5, "z": 6992.6, "px": 2307.2, "py": 3241.4, "has_dungeon": false, "has_important": true}, {"id": 6157, "name": "DrakeNest01", "category": "other", "x": -3408.4, "z": -2009.0, "px": 1466.3, "py": 1705.1, "has_dungeon": false, "has_important": true}, {"id": 6158, "name": "DrakeNest01", "category": "other", "x": -8574.9, "z": -1002.3, "px": 584.6, "py": 1876.9, "has_dungeon": false, "has_important": true}, {"id": 6159, "name": "DrakeNest01", "category": "other", "x": -5141.3, "z": 5393.6, "px": 1170.6, "py": 2968.5, "has_dungeon": false, "has_important": true}, {"id": 6160, "name": "DrakeNest01", "category": "other", "x": 4735.7, "z": -5422.9, "px": 2856.2, "py": 1122.5, "has_dungeon": false, "has_important": true}, {"id": 6161, "name": "DrakeNest01", "category": "other", "x": -5332.3, "z": 5015.5, "px": 1138.0, "py": 2904.0, "has_dungeon": false, "has_important": true}, {"id": 6162, "name": "DrakeNest01", "category": "other", "x": -6674.5, "z": -2240.6, "px": 908.9, "py": 1665.6, "has_dungeon": false, "has_important": true}, {"id": 6163, "name": "DrakeNest01", "category": "other", "x": -4532.4, "z": -153.8, "px": 1274.5, "py": 2021.8, "has_dungeon": false, "has_important": true}, {"id": 6164, "name": "DrakeNest01", "category": "other", "x": 2394.9, "z": 8842.7, "px": 2456.7, "py": 3557.2, "has_dungeon": false, "has_important": true}, {"id": 6165, "name": "DrakeNest01", "category": "other", "x": -6616.6, "z": -1928.5, "px": 918.8, "py": 1718.9, "has_dungeon": false, "has_important": true}, {"id": 6166, "name": "DrakeNest01", "category": "other", "x": -3864.4, "z": 1553.5, "px": 1388.5, "py": 2313.1, "has_dungeon": false, "has_important": true}, {"id": 6167, "name": "DrakeNest01", "category": "other", "x": -4990.1, "z": 2597.7, "px": 1196.4, "py": 2491.3, "has_dungeon": false, "has_important": true}, {"id": 6168, "name": "DrakeNest01", "category": "other", "x": 7451.0, "z": 4010.1, "px": 3319.6, "py": 2732.4, "has_dungeon": false, "has_important": true}, {"id": 6169, "name": "DrakeNest01", "category": "other", "x": 6730.8, "z": 6953.5, "px": 3196.7, "py": 3234.7, "has_dungeon": false, "has_important": true}, {"id": 6170, "name": "DrakeNest01", "category": "other", "x": -3418.6, "z": 6155.4, "px": 1464.6, "py": 3098.5, "has_dungeon": false, "has_important": true}, {"id": 6171, "name": "DrakeNest01", "category": "other", "x": 2095.2, "z": -1492.3, "px": 2405.6, "py": 1793.3, "has_dungeon": false, "has_important": true}, {"id": 6172, "name": "DrakeNest01", "category": "other", "x": 6120.1, "z": 4343.9, "px": 3092.5, "py": 2789.4, "has_dungeon": false, "has_important": true}, {"id": 6173, "name": "DrakeNest01", "category": "other", "x": -1982.7, "z": -600.8, "px": 1709.6, "py": 1945.5, "has_dungeon": false, "has_important": true}, {"id": 6174, "name": "DrakeNest01", "category": "other", "x": 5947.5, "z": 4284.0, "px": 3063.0, "py": 2779.1, "has_dungeon": false, "has_important": true}, {"id": 6175, "name": "DrakeNest01", "category": "other", "x": -2560.3, "z": 7382.7, "px": 1611.0, "py": 3308.0, "has_dungeon": false, "has_important": true}, {"id": 6176, "name": "DrakeNest01", "category": "other", "x": 7115.8, "z": -461.5, "px": 3262.4, "py": 1969.2, "has_dungeon": false, "has_important": true}, {"id": 6177, "name": "DrakeNest01", "category": "other", "x": 7255.0, "z": -557.9, "px": 3286.2, "py": 1952.8, "has_dungeon": false, "has_important": true}, {"id": 6178, "name": "DrakeNest01", "category": "other", "x": 2711.8, "z": 922.5, "px": 2510.8, "py": 2205.4, "has_dungeon": false, "has_important": true}, {"id": 6179, "name": "DrakeNest01", "category": "other", "x": 6075.9, "z": 4661.6, "px": 3085.0, "py": 2843.6, "has_dungeon": false, "has_important": true}, {"id": 6180, "name": "DrakeNest01", "category": "other", "x": 5431.5, "z": 5967.6, "px": 2975.0, "py": 3066.5, "has_dungeon": false, "has_important": true}, {"id": 6181, "name": "DrakeNest01", "category": "other", "x": 6213.5, "z": 4661.2, "px": 3108.4, "py": 2843.5, "has_dungeon": false, "has_important": true}, {"id": 6182, "name": "DrakeNest01", "category": "other", "x": 2966.2, "z": 528.3, "px": 2554.2, "py": 2138.2, "has_dungeon": false, "has_important": true}, {"id": 6183, "name": "DrakeNest01", "category": "other", "x": 1321.5, "z": 6585.9, "px": 2273.5, "py": 3172.0, "has_dungeon": false, "has_important": true}, {"id": 6184, "name": "DrakeNest01", "category": "other", "x": 1254.0, "z": 8532.3, "px": 2262.0, "py": 3504.2, "has_dungeon": false, "has_important": true}, {"id": 6185, "name": "DrakeNest01", "category": "other", "x": 4343.9, "z": 1386.2, "px": 2789.4, "py": 2284.6, "has_dungeon": false, "has_important": true}, {"id": 6186, "name": "DrakeNest01", "category": "other", "x": 2346.5, "z": -6205.2, "px": 2448.5, "py": 989.0, "has_dungeon": false, "has_important": true}, {"id": 6187, "name": "DrakeNest01", "category": "other", "x": -3904.8, "z": 1669.9, "px": 1381.6, "py": 2333.0, "has_dungeon": false, "has_important": true}, {"id": 6188, "name": "DrakeNest01", "category": "other", "x": 2551.3, "z": -2993.6, "px": 2483.4, "py": 1537.1, "has_dungeon": false, "has_important": true}, {"id": 6189, "name": "DrakeNest01", "category": "other", "x": -1290.0, "z": -4882.6, "px": 1827.8, "py": 1214.7, "has_dungeon": false, "has_important": true}, {"id": 6190, "name": "DrakeNest01", "category": "other", "x": -2289.7, "z": -294.6, "px": 1657.2, "py": 1997.7, "has_dungeon": false, "has_important": true}, {"id": 6191, "name": "DrakeNest01", "category": "other", "x": -8617.3, "z": -137.5, "px": 577.3, "py": 2024.5, "has_dungeon": false, "has_important": true}, {"id": 6192, "name": "DrakeNest01", "category": "other", "x": -4348.8, "z": -3830.6, "px": 1305.8, "py": 1394.2, "has_dungeon": false, "has_important": true}, {"id": 6193, "name": "DrakeNest01", "category": "other", "x": 5774.1, "z": 2218.7, "px": 3033.4, "py": 2426.7, "has_dungeon": false, "has_important": true}, {"id": 6194, "name": "DrakeNest01", "category": "other", "x": 1517.6, "z": 6641.9, "px": 2307.0, "py": 3181.6, "has_dungeon": false, "has_important": true}, {"id": 6195, "name": "DrakeNest01", "category": "other", "x": -8534.4, "z": -1111.5, "px": 591.5, "py": 1858.3, "has_dungeon": false, "has_important": true}, {"id": 6196, "name": "DrakeNest01", "category": "other", "x": -5974.6, "z": -362.2, "px": 1028.3, "py": 1986.2, "has_dungeon": false, "has_important": true}, {"id": 6197, "name": "DrakeNest01", "category": "other", "x": -3505.3, "z": -2215.3, "px": 1449.8, "py": 1669.9, "has_dungeon": false, "has_important": true}, {"id": 6198, "name": "DrakeNest01", "category": "other", "x": -4094.7, "z": 3330.0, "px": 1349.2, "py": 2616.3, "has_dungeon": false, "has_important": true}, {"id": 6199, "name": "DrakeNest01", "category": "other", "x": 6600.1, "z": 6972.0, "px": 3174.4, "py": 3237.9, "has_dungeon": false, "has_important": true}, {"id": 6200, "name": "DrakeNest01", "category": "other", "x": 2579.2, "z": 1010.7, "px": 2488.2, "py": 2220.5, "has_dungeon": false, "has_important": true}, {"id": 6201, "name": "DrakeNest01", "category": "other", "x": 2499.3, "z": 881.7, "px": 2474.5, "py": 2198.5, "has_dungeon": false, "has_important": true}, {"id": 6202, "name": "DrakeNest01", "category": "other", "x": 1263.4, "z": -5199.0, "px": 2263.6, "py": 1160.7, "has_dungeon": false, "has_important": true}, {"id": 6203, "name": "DrakeNest01", "category": "other", "x": -3373.6, "z": 6404.8, "px": 1472.2, "py": 3141.1, "has_dungeon": false, "has_important": true}, {"id": 6204, "name": "DrakeNest01", "category": "other", "x": -7612.8, "z": -2504.5, "px": 748.7, "py": 1620.6, "has_dungeon": false, "has_important": true}, {"id": 6205, "name": "DrakeNest01", "category": "other", "x": -3430.9, "z": 6501.1, "px": 1462.5, "py": 3157.5, "has_dungeon": false, "has_important": true}, {"id": 6206, "name": "DrakeNest01", "category": "other", "x": -2758.0, "z": 7295.1, "px": 1577.3, "py": 3293.0, "has_dungeon": false, "has_important": true}, {"id": 6207, "name": "DrakeNest01", "category": "other", "x": 1174.2, "z": -2455.9, "px": 2248.4, "py": 1628.9, "has_dungeon": false, "has_important": true}, {"id": 6208, "name": "DrakeNest01", "category": "other", "x": 5416.3, "z": -25.7, "px": 2972.4, "py": 2043.6, "has_dungeon": false, "has_important": true}, {"id": 6209, "name": "DrakeNest01", "category": "other", "x": 6457.8, "z": 7051.0, "px": 3150.1, "py": 3251.4, "has_dungeon": false, "has_important": true}, {"id": 6210, "name": "DrakeNest01", "category": "other", "x": 3478.6, "z": 9147.8, "px": 2641.7, "py": 3609.2, "has_dungeon": false, "has_important": true}, {"id": 6211, "name": "DrakeNest01", "category": "other", "x": 2650.7, "z": -2750.5, "px": 2500.4, "py": 1578.6, "has_dungeon": false, "has_important": true}, {"id": 6212, "name": "DrakeNest01", "category": "other", "x": -3846.2, "z": 1350.9, "px": 1391.6, "py": 2278.6, "has_dungeon": false, "has_important": true}, {"id": 6213, "name": "DrakeNest01", "category": "other", "x": -6266.8, "z": -624.1, "px": 978.5, "py": 1941.5, "has_dungeon": false, "has_important": true}, {"id": 6214, "name": "DrakeNest01", "category": "other", "x": 2518.3, "z": 8693.7, "px": 2477.8, "py": 3531.7, "has_dungeon": false, "has_important": true}, {"id": 6215, "name": "DrakeNest01", "category": "other", "x": -4530.0, "z": -1233.4, "px": 1274.9, "py": 1837.5, "has_dungeon": false, "has_important": true}, {"id": 6216, "name": "DrakeNest01", "category": "other", "x": -5505.9, "z": -2747.8, "px": 1108.3, "py": 1579.0, "has_dungeon": false, "has_important": true}, {"id": 6217, "name": "DrakeNest01", "category": "other", "x": 4235.5, "z": 1333.8, "px": 2770.9, "py": 2275.6, "has_dungeon": false, "has_important": true}, {"id": 6218, "name": "DrakeNest01", "category": "other", "x": -4949.5, "z": 2713.7, "px": 1203.3, "py": 2511.1, "has_dungeon": false, "has_important": true}, {"id": 6219, "name": "DrakeNest01", "category": "other", "x": 3819.9, "z": -103.8, "px": 2699.9, "py": 2030.3, "has_dungeon": false, "has_important": true}, {"id": 6220, "name": "DrakeNest01", "category": "other", "x": -2069.6, "z": -529.4, "px": 1694.8, "py": 1957.6, "has_dungeon": false, "has_important": true}, {"id": 6221, "name": "DrakeNest01", "category": "other", "x": -2425.5, "z": 7498.8, "px": 1634.0, "py": 3327.8, "has_dungeon": false, "has_important": true}, {"id": 6222, "name": "DrakeNest01", "category": "other", "x": 2451.4, "z": 1071.1, "px": 2466.4, "py": 2230.8, "has_dungeon": false, "has_important": true}, {"id": 6223, "name": "DrakeNest01", "category": "other", "x": -6008.7, "z": -1744.0, "px": 1022.5, "py": 1750.4, "has_dungeon": false, "has_important": true}, {"id": 6224, "name": "DrakeNest01", "category": "other", "x": -365.8, "z": -1287.4, "px": 1985.6, "py": 1828.3, "has_dungeon": false, "has_important": true}, {"id": 6225, "name": "DrakeNest01", "category": "other", "x": -6125.2, "z": -1685.1, "px": 1002.6, "py": 1760.4, "has_dungeon": false, "has_important": true}, {"id": 6226, "name": "DrakeNest01", "category": "other", "x": -3496.2, "z": 6406.1, "px": 1451.3, "py": 3141.3, "has_dungeon": false, "has_important": true}, {"id": 6227, "name": "DrakeNest01", "category": "other", "x": -4013.9, "z": 4501.8, "px": 1363.0, "py": 2816.3, "has_dungeon": false, "has_important": true}, {"id": 6228, "name": "DrakeNest01", "category": "other", "x": -6146.9, "z": -530.7, "px": 998.9, "py": 1957.4, "has_dungeon": false, "has_important": true}, {"id": 6229, "name": "DrakeNest01", "category": "other", "x": 5797.6, "z": -455.9, "px": 3037.5, "py": 1970.2, "has_dungeon": false, "has_important": true}, {"id": 6230, "name": "DrakeNest01", "category": "other", "x": -2214.2, "z": -534.5, "px": 1670.1, "py": 1956.8, "has_dungeon": false, "has_important": true}, {"id": 6231, "name": "DrakeNest01", "category": "other", "x": -9704.2, "z": -587.5, "px": 391.8, "py": 1947.7, "has_dungeon": false, "has_important": true}, {"id": 6232, "name": "DrakeNest01", "category": "other", "x": 6101.7, "z": 4740.0, "px": 3089.4, "py": 2857.0, "has_dungeon": false, "has_important": true}, {"id": 6233, "name": "DrakeNest01", "category": "other", "x": -3977.0, "z": 1576.5, "px": 1369.3, "py": 2317.1, "has_dungeon": false, "has_important": true}, {"id": 6234, "name": "DrakeNest01", "category": "other", "x": -2071.0, "z": -230.4, "px": 1694.5, "py": 2008.7, "has_dungeon": false, "has_important": true}, {"id": 6235, "name": "DrakeNest01", "category": "other", "x": -247.1, "z": -1229.1, "px": 2005.8, "py": 1838.2, "has_dungeon": false, "has_important": true}, {"id": 6236, "name": "DrakeNest01", "category": "other", "x": 5881.3, "z": 4416.7, "px": 3051.7, "py": 2801.8, "has_dungeon": false, "has_important": true}, {"id": 6237, "name": "DrakeNest01", "category": "other", "x": 3649.2, "z": -766.4, "px": 2670.8, "py": 1917.2, "has_dungeon": false, "has_important": true}, {"id": 6238, "name": "DrakeNest01", "category": "other", "x": -4522.8, "z": -3948.4, "px": 1276.1, "py": 1374.1, "has_dungeon": false, "has_important": true}, {"id": 6239, "name": "DrakeNest01", "category": "other", "x": -3224.8, "z": 2672.8, "px": 1497.6, "py": 2504.2, "has_dungeon": false, "has_important": true}, {"id": 6240, "name": "DrakeNest01", "category": "other", "x": 5631.6, "z": 90.4, "px": 3009.1, "py": 2063.4, "has_dungeon": false, "has_important": true}, {"id": 6241, "name": "DrakeNest01", "category": "other", "x": 1199.8, "z": 4804.7, "px": 2252.8, "py": 2868.0, "has_dungeon": false, "has_important": true}, {"id": 6242, "name": "DrakeNest01", "category": "other", "x": -4041.0, "z": 1688.9, "px": 1358.3, "py": 2336.2, "has_dungeon": false, "has_important": true}, {"id": 6243, "name": "DrakeNest01", "category": "other", "x": 3027.0, "z": 9425.8, "px": 2564.6, "py": 3656.7, "has_dungeon": false, "has_important": true}, {"id": 6244, "name": "DrakeNest01", "category": "other", "x": 2632.3, "z": 8691.8, "px": 2497.2, "py": 3531.4, "has_dungeon": false, "has_important": true}, {"id": 6245, "name": "DrakeNest01", "category": "other", "x": -4352.0, "z": -4117.1, "px": 1305.3, "py": 1345.3, "has_dungeon": false, "has_important": true}, {"id": 6246, "name": "DrakeNest01", "category": "other", "x": -4278.6, "z": -1263.2, "px": 1317.8, "py": 1832.4, "has_dungeon": false, "has_important": true}, {"id": 6247, "name": "DrakeNest01", "category": "other", "x": 3189.8, "z": 521.1, "px": 2592.4, "py": 2136.9, "has_dungeon": false, "has_important": true}, {"id": 6248, "name": "DrakeNest01", "category": "other", "x": -965.9, "z": 8648.9, "px": 1883.2, "py": 3524.1, "has_dungeon": false, "has_important": true}, {"id": 6249, "name": "DrakeNest01", "category": "other", "x": -85.5, "z": -1161.6, "px": 2033.4, "py": 1849.8, "has_dungeon": false, "has_important": true}, {"id": 6250, "name": "DrakeNest01", "category": "other", "x": 1026.4, "z": -2371.4, "px": 2223.2, "py": 1643.3, "has_dungeon": false, "has_important": true}, {"id": 6251, "name": "DrakeNest01", "category": "other", "x": 6722.7, "z": 6546.2, "px": 3195.3, "py": 3165.2, "has_dungeon": false, "has_important": true}, {"id": 6252, "name": "DrakeNest01", "category": "other", "x": -3409.6, "z": -2154.3, "px": 1466.1, "py": 1680.3, "has_dungeon": false, "has_important": true}, {"id": 6253, "name": "DrakeNest01", "category": "other", "x": -9852.5, "z": -694.0, "px": 366.5, "py": 1929.6, "has_dungeon": false, "has_important": true}, {"id": 6254, "name": "DrakeNest01", "category": "other", "x": 1037.5, "z": 255.4, "px": 2225.1, "py": 2091.6, "has_dungeon": false, "has_important": true}, {"id": 6255, "name": "DrakeNest01", "category": "other", "x": -3722.0, "z": 6008.2, "px": 1412.8, "py": 3073.4, "has_dungeon": false, "has_important": true}, {"id": 6256, "name": "DrakeNest01", "category": "other", "x": -6845.8, "z": -2415.8, "px": 879.7, "py": 1635.7, "has_dungeon": false, "has_important": true}, {"id": 6257, "name": "DrakeNest01", "category": "other", "x": -2171.9, "z": -270.4, "px": 1677.3, "py": 2001.9, "has_dungeon": false, "has_important": true}, {"id": 920, "name": "FaderLocation", "category": "other", "x": -3648.0, "z": -8576.0, "px": 1425.4, "py": 584.4, "has_dungeon": false, "has_important": false}, {"id": 921, "name": "FaderLocation", "category": "other", "x": 2176.0, "z": -8512.0, "px": 2419.4, "py": 595.3, "has_dungeon": false, "has_important": false}, {"id": 922, "name": "FaderLocation", "category": "other", "x": 128.0, "z": -9664.0, "px": 2069.8, "py": 398.7, "has_dungeon": false, "has_important": false}, {"id": 923, "name": "FaderLocation", "category": "other", "x": 5248.0, "z": -7872.0, "px": 2943.7, "py": 704.5, "has_dungeon": false, "has_important": false}, {"id": 924, "name": "FaderLocation", "category": "other", "x": -5568.0, "z": -7616.0, "px": 1097.7, "py": 748.2, "has_dungeon": false, "has_important": false}, {"id": 1876, "name": "FireHole", "category": "other", "x": 2834.4, "z": 3568.1, "px": 2531.7, "py": 2657.0, "has_dungeon": false, "has_important": true}, {"id": 1877, "name": "FireHole", "category": "other", "x": -4242.4, "z": 329.1, "px": 1324.0, "py": 2104.2, "has_dungeon": false, "has_important": true}, {"id": 1878, "name": "FireHole", "category": "other", "x": -3185.2, "z": 405.8, "px": 1504.4, "py": 2117.3, "has_dungeon": false, "has_important": true}, {"id": 1879, "name": "FireHole", "category": "other", "x": -115.1, "z": 2497.0, "px": 2028.4, "py": 2474.2, "has_dungeon": false, "has_important": true}, {"id": 1880, "name": "FireHole", "category": "other", "x": 3686.3, "z": 4419.2, "px": 2677.1, "py": 2802.2, "has_dungeon": false, "has_important": true}, {"id": 1881, "name": "FireHole", "category": "other", "x": -4006.2, "z": 232.3, "px": 1364.3, "py": 2087.6, "has_dungeon": false, "has_important": true}, {"id": 1882, "name": "FireHole", "category": "other", "x": -837.3, "z": -3751.7, "px": 1905.1, "py": 1407.7, "has_dungeon": false, "has_important": true}, {"id": 1883, "name": "FireHole", "category": "other", "x": -3261.2, "z": 334.4, "px": 1491.4, "py": 2105.1, "has_dungeon": false, "has_important": true}, {"id": 1884, "name": "FireHole", "category": "other", "x": 4171.0, "z": 405.9, "px": 2759.9, "py": 2117.3, "has_dungeon": false, "has_important": true}, {"id": 1885, "name": "FireHole", "category": "other", "x": 2703.3, "z": 3593.1, "px": 2509.4, "py": 2661.2, "has_dungeon": false, "has_important": true}, {"id": 1886, "name": "FireHole", "category": "other", "x": 4677.3, "z": -769.9, "px": 2846.3, "py": 1916.6, "has_dungeon": false, "has_important": true}, {"id": 1887, "name": "FireHole", "category": "other", "x": 1716.8, "z": 4246.9, "px": 2341.0, "py": 2772.8, "has_dungeon": false, "has_important": true}, {"id": 1888, "name": "FireHole", "category": "other", "x": 1449.7, "z": 2119.2, "px": 2295.4, "py": 2409.7, "has_dungeon": false, "has_important": true}, {"id": 1889, "name": "FireHole", "category": "other", "x": 2511.4, "z": -86.2, "px": 2476.6, "py": 2033.3, "has_dungeon": false, "has_important": true}, {"id": 1890, "name": "FireHole", "category": "other", "x": -4228.0, "z": 549.4, "px": 1326.4, "py": 2141.8, "has_dungeon": false, "has_important": true}, {"id": 1891, "name": "FireHole", "category": "other", "x": -4439.1, "z": 326.9, "px": 1290.4, "py": 2103.8, "has_dungeon": false, "has_important": true}, {"id": 1892, "name": "FireHole", "category": "other", "x": -4330.6, "z": 549.3, "px": 1308.9, "py": 2141.7, "has_dungeon": false, "has_important": true}, {"id": 1893, "name": "FireHole", "category": "other", "x": 2579.8, "z": 3621.7, "px": 2488.3, "py": 2666.1, "has_dungeon": false, "has_important": true}, {"id": 1894, "name": "FireHole", "category": "other", "x": 2178.0, "z": 4310.0, "px": 2419.7, "py": 2783.6, "has_dungeon": false, "has_important": true}, {"id": 1895, "name": "FireHole", "category": "other", "x": -5185.5, "z": -754.1, "px": 1163.0, "py": 1919.3, "has_dungeon": false, "has_important": true}, {"id": 1896, "name": "FireHole", "category": "other", "x": -791.4, "z": -3669.3, "px": 1912.9, "py": 1421.8, "has_dungeon": false, "has_important": true}, {"id": 1897, "name": "FireHole", "category": "other", "x": 2485.4, "z": 3929.7, "px": 2472.2, "py": 2718.7, "has_dungeon": false, "has_important": true}, {"id": 1898, "name": "FireHole", "category": "other", "x": 3202.5, "z": -4339.2, "px": 2594.6, "py": 1307.4, "has_dungeon": false, "has_important": true}, {"id": 1899, "name": "FireHole", "category": "other", "x": -263.3, "z": 2710.7, "px": 2003.1, "py": 2510.6, "has_dungeon": false, "has_important": true}, {"id": 1900, "name": "FireHole", "category": "other", "x": -630.1, "z": -4005.2, "px": 1940.5, "py": 1364.4, "has_dungeon": false, "has_important": true}, {"id": 1901, "name": "FireHole", "category": "other", "x": -4336.9, "z": 327.0, "px": 1307.8, "py": 2103.8, "has_dungeon": false, "has_important": true}, {"id": 1902, "name": "FireHole", "category": "other", "x": -677.3, "z": -3630.3, "px": 1932.4, "py": 1428.4, "has_dungeon": false, "has_important": true}, {"id": 1903, "name": "FireHole", "category": "other", "x": 1491.3, "z": 2379.7, "px": 2302.5, "py": 2454.1, "has_dungeon": false, "has_important": true}, {"id": 1904, "name": "FireHole", "category": "other", "x": -7.3, "z": 2635.4, "px": 2046.8, "py": 2497.8, "has_dungeon": false, "has_important": true}, {"id": 1905, "name": "FireHole", "category": "other", "x": 2470.3, "z": 3967.2, "px": 2469.6, "py": 2725.1, "has_dungeon": false, "has_important": true}, {"id": 1906, "name": "FireHole", "category": "other", "x": 3472.5, "z": 1369.5, "px": 2640.6, "py": 2281.7, "has_dungeon": false, "has_important": true}, {"id": 1907, "name": "FireHole", "category": "other", "x": 1558.0, "z": 2192.1, "px": 2313.9, "py": 2422.1, "has_dungeon": false, "has_important": true}, {"id": 1908, "name": "FireHole", "category": "other", "x": 2582.6, "z": 3837.7, "px": 2488.8, "py": 2703.0, "has_dungeon": false, "has_important": true}, {"id": 1909, "name": "FireHole", "category": "other", "x": -2668.1, "z": -980.8, "px": 1592.6, "py": 1880.6, "has_dungeon": false, "has_important": true}, {"id": 1910, "name": "FireHole", "category": "other", "x": -793.1, "z": -3835.6, "px": 1912.6, "py": 1393.4, "has_dungeon": false, "has_important": true}, {"id": 1911, "name": "FireHole", "category": "other", "x": 2794.0, "z": 3727.9, "px": 2524.8, "py": 2684.2, "has_dungeon": false, "has_important": true}, {"id": 1912, "name": "FireHole", "category": "other", "x": 3792.9, "z": 4534.9, "px": 2695.3, "py": 2822.0, "has_dungeon": false, "has_important": true}, {"id": 1913, "name": "FireHole", "category": "other", "x": 1548.2, "z": 2112.0, "px": 2312.2, "py": 2408.4, "has_dungeon": false, "has_important": true}, {"id": 1914, "name": "FireHole", "category": "other", "x": -4284.9, "z": 448.9, "px": 1316.7, "py": 2124.6, "has_dungeon": false, "has_important": true}, {"id": 1915, "name": "FireHole", "category": "other", "x": -313.5, "z": 2670.4, "px": 1994.5, "py": 2503.7, "has_dungeon": false, "has_important": true}, {"id": 1916, "name": "FireHole", "category": "other", "x": -3316.1, "z": 165.3, "px": 1482.1, "py": 2076.2, "has_dungeon": false, "has_important": true}, {"id": 1917, "name": "FireHole", "category": "other", "x": 2650.5, "z": 3793.5, "px": 2500.4, "py": 2695.4, "has_dungeon": false, "has_important": true}, {"id": 1918, "name": "FireHole", "category": "other", "x": 2284.4, "z": 200.2, "px": 2437.9, "py": 2082.2, "has_dungeon": false, "has_important": true}, {"id": 1919, "name": "FireHole", "category": "other", "x": -5335.1, "z": 1778.4, "px": 1137.5, "py": 2351.5, "has_dungeon": false, "has_important": true}, {"id": 1920, "name": "FireHole", "category": "other", "x": 2889.6, "z": 3623.6, "px": 2541.2, "py": 2666.4, "has_dungeon": false, "has_important": true}, {"id": 1921, "name": "FireHole", "category": "other", "x": 2186.8, "z": 488.6, "px": 2421.2, "py": 2131.4, "has_dungeon": false, "has_important": true}, {"id": 1922, "name": "FireHole", "category": "other", "x": 2473.0, "z": 87.7, "px": 2470.1, "py": 2063.0, "has_dungeon": false, "has_important": true}, {"id": 1923, "name": "FireHole", "category": "other", "x": 3188.5, "z": -4266.0, "px": 2592.2, "py": 1319.9, "has_dungeon": false, "has_important": true}, {"id": 1924, "name": "FireHole", "category": "other", "x": 4593.2, "z": -2991.9, "px": 2831.9, "py": 1537.4, "has_dungeon": false, "has_important": true}, {"id": 1925, "name": "FireHole", "category": "other", "x": 1393.8, "z": 2032.1, "px": 2285.9, "py": 2394.8, "has_dungeon": false, "has_important": true}, {"id": 1926, "name": "FireHole", "category": "other", "x": -4225.9, "z": 3649.3, "px": 1326.8, "py": 2670.8, "has_dungeon": false, "has_important": true}, {"id": 1927, "name": "FireHole", "category": "other", "x": -1945.1, "z": 4479.5, "px": 1716.0, "py": 2812.5, "has_dungeon": false, "has_important": true}, {"id": 1928, "name": "FireHole", "category": "other", "x": -2455.3, "z": -975.5, "px": 1629.0, "py": 1881.5, "has_dungeon": false, "has_important": true}, {"id": 1929, "name": "FireHole", "category": "other", "x": -5255.6, "z": 1453.0, "px": 1151.0, "py": 2296.0, "has_dungeon": false, "has_important": true}, {"id": 1930, "name": "FireHole", "category": "other", "x": 2106.5, "z": 4314.7, "px": 2407.5, "py": 2784.4, "has_dungeon": false, "has_important": true}, {"id": 1931, "name": "FireHole", "category": "other", "x": 657.5, "z": 2611.5, "px": 2160.2, "py": 2493.7, "has_dungeon": false, "has_important": true}, {"id": 1932, "name": "FireHole", "category": "other", "x": -788.9, "z": -3900.7, "px": 1913.4, "py": 1382.3, "has_dungeon": false, "has_important": true}, {"id": 1933, "name": "FireHole", "category": "other", "x": -3332.6, "z": 279.0, "px": 1479.2, "py": 2095.6, "has_dungeon": false, "has_important": true}, {"id": 1934, "name": "FireHole", "category": "other", "x": -2709.1, "z": -5268.0, "px": 1585.6, "py": 1148.9, "has_dungeon": false, "has_important": true}, {"id": 1658, "name": "Grave1", "category": "other", "x": -2418.6, "z": -1020.3, "px": 1635.2, "py": 1873.9, "has_dungeon": false, "has_important": true}, {"id": 1659, "name": "Grave1", "category": "other", "x": 4792.5, "z": -557.2, "px": 2865.9, "py": 1952.9, "has_dungeon": false, "has_important": true}, {"id": 1660, "name": "Grave1", "category": "other", "x": -2748.3, "z": -1677.2, "px": 1579.0, "py": 1761.8, "has_dungeon": false, "has_important": true}, {"id": 1661, "name": "Grave1", "category": "other", "x": 3708.8, "z": 646.0, "px": 2681.0, "py": 2158.3, "has_dungeon": false, "has_important": true}, {"id": 1662, "name": "Grave1", "category": "other", "x": -115.6, "z": 2608.7, "px": 2028.3, "py": 2493.2, "has_dungeon": false, "has_important": true}, {"id": 1663, "name": "Grave1", "category": "other", "x": -2299.0, "z": 4862.5, "px": 1655.6, "py": 2877.9, "has_dungeon": false, "has_important": true}, {"id": 1664, "name": "Grave1", "category": "other", "x": 4799.3, "z": -641.5, "px": 2867.1, "py": 1938.5, "has_dungeon": false, "has_important": true}, {"id": 1665, "name": "Grave1", "category": "other", "x": 4873.3, "z": -699.1, "px": 2879.7, "py": 1928.7, "has_dungeon": false, "has_important": true}, {"id": 1666, "name": "Grave1", "category": "other", "x": -2741.9, "z": -5184.0, "px": 1580.0, "py": 1163.3, "has_dungeon": false, "has_important": true}, {"id": 1667, "name": "Grave1", "category": "other", "x": -75.0, "z": 2489.1, "px": 2035.2, "py": 2472.8, "has_dungeon": false, "has_important": true}, {"id": 1668, "name": "Grave1", "category": "other", "x": -4365.9, "z": 465.4, "px": 1302.9, "py": 2127.4, "has_dungeon": false, "has_important": true}, {"id": 1669, "name": "Grave1", "category": "other", "x": -2668.6, "z": -1744.6, "px": 1592.6, "py": 1750.3, "has_dungeon": false, "has_important": true}, {"id": 1670, "name": "Grave1", "category": "other", "x": 2702.6, "z": 3721.0, "px": 2509.2, "py": 2683.1, "has_dungeon": false, "has_important": true}, {"id": 1671, "name": "Grave1", "category": "other", "x": -2040.3, "z": 4681.5, "px": 1699.8, "py": 2847.0, "has_dungeon": false, "has_important": true}, {"id": 1672, "name": "Grave1", "category": "other", "x": -273.6, "z": 2629.0, "px": 2001.3, "py": 2496.7, "has_dungeon": false, "has_important": true}, {"id": 1673, "name": "Grave1", "category": "other", "x": -2668.3, "z": -5041.3, "px": 1592.6, "py": 1187.6, "has_dungeon": false, "has_important": true}, {"id": 1674, "name": "Grave1", "category": "other", "x": -5259.1, "z": 1611.1, "px": 1150.4, "py": 2323.0, "has_dungeon": false, "has_important": true}, {"id": 1675, "name": "Grave1", "category": "other", "x": -2361.0, "z": -1081.3, "px": 1645.1, "py": 1863.5, "has_dungeon": false, "has_important": true}, {"id": 1676, "name": "Grave1", "category": "other", "x": -3786.0, "z": -4273.8, "px": 1401.9, "py": 1318.6, "has_dungeon": false, "has_important": true}, {"id": 1677, "name": "Grave1", "category": "other", "x": 1335.3, "z": 2194.0, "px": 2275.9, "py": 2422.4, "has_dungeon": false, "has_important": true}, {"id": 1678, "name": "Grave1", "category": "other", "x": -5247.9, "z": 1419.0, "px": 1152.4, "py": 2290.2, "has_dungeon": false, "has_important": true}, {"id": 1679, "name": "Grave1", "category": "other", "x": 1731.6, "z": 4274.7, "px": 2343.5, "py": 2777.5, "has_dungeon": false, "has_important": true}, {"id": 1680, "name": "Grave1", "category": "other", "x": 2159.5, "z": 330.7, "px": 2416.6, "py": 2104.4, "has_dungeon": false, "has_important": true}, {"id": 1681, "name": "Grave1", "category": "other", "x": -1013.0, "z": -3659.8, "px": 1875.1, "py": 1423.4, "has_dungeon": false, "has_important": true}, {"id": 1682, "name": "Grave1", "category": "other", "x": 2417.2, "z": 66.5, "px": 2460.5, "py": 2059.3, "has_dungeon": false, "has_important": true}, {"id": 1683, "name": "Grave1", "category": "other", "x": -2483.2, "z": 4944.5, "px": 1624.2, "py": 2891.9, "has_dungeon": false, "has_important": true}, {"id": 1684, "name": "Grave1", "category": "other", "x": 1589.9, "z": 2055.2, "px": 2319.3, "py": 2398.8, "has_dungeon": false, "has_important": true}, {"id": 1685, "name": "Grave1", "category": "other", "x": 1209.9, "z": 2240.3, "px": 2254.5, "py": 2430.3, "has_dungeon": false, "has_important": true}, {"id": 1686, "name": "Grave1", "category": "other", "x": -251.1, "z": 2579.7, "px": 2005.1, "py": 2488.3, "has_dungeon": false, "has_important": true}, {"id": 1687, "name": "Grave1", "category": "other", "x": 4741.4, "z": -838.8, "px": 2857.2, "py": 1904.8, "has_dungeon": false, "has_important": true}, {"id": 1688, "name": "Grave1", "category": "other", "x": 1223.4, "z": 2047.4, "px": 2256.8, "py": 2397.4, "has_dungeon": false, "has_important": true}, {"id": 1689, "name": "Grave1", "category": "other", "x": 521.9, "z": 2556.1, "px": 2137.1, "py": 2484.2, "has_dungeon": false, "has_important": true}, {"id": 1690, "name": "Grave1", "category": "other", "x": -620.2, "z": -3567.7, "px": 1942.2, "py": 1439.1, "has_dungeon": false, "has_important": true}, {"id": 1691, "name": "Grave1", "category": "other", "x": 2427.2, "z": -964.4, "px": 2462.2, "py": 1883.4, "has_dungeon": false, "has_important": true}, {"id": 1692, "name": "Grave1", "category": "other", "x": -3089.6, "z": 506.7, "px": 1520.7, "py": 2134.5, "has_dungeon": false, "has_important": true}, {"id": 1693, "name": "Grave1", "category": "other", "x": 3591.8, "z": 1101.3, "px": 2661.0, "py": 2236.0, "has_dungeon": false, "has_important": true}, {"id": 1694, "name": "Grave1", "category": "other", "x": -4291.4, "z": 1204.1, "px": 1315.6, "py": 2253.5, "has_dungeon": false, "has_important": true}, {"id": 1695, "name": "Grave1", "category": "other", "x": -2351.1, "z": -4163.3, "px": 1646.7, "py": 1337.5, "has_dungeon": false, "has_important": true}, {"id": 1696, "name": "Grave1", "category": "other", "x": -2930.4, "z": 520.3, "px": 1547.9, "py": 2136.8, "has_dungeon": false, "has_important": true}, {"id": 1697, "name": "Grave1", "category": "other", "x": 1102.7, "z": 4284.7, "px": 2236.2, "py": 2779.3, "has_dungeon": false, "has_important": true}, {"id": 1698, "name": "Grave1", "category": "other", "x": -3001.3, "z": 594.1, "px": 1535.8, "py": 2149.4, "has_dungeon": false, "has_important": true}, {"id": 1699, "name": "Grave1", "category": "other", "x": -1042.1, "z": -5684.5, "px": 1870.1, "py": 1077.8, "has_dungeon": false, "has_important": true}, {"id": 1700, "name": "Grave1", "category": "other", "x": -1772.1, "z": 4496.9, "px": 1745.6, "py": 2815.5, "has_dungeon": false, "has_important": true}, {"id": 1701, "name": "Grave1", "category": "other", "x": -2502.6, "z": 5066.8, "px": 1620.9, "py": 2912.7, "has_dungeon": false, "has_important": true}, {"id": 1702, "name": "Grave1", "category": "other", "x": 4596.2, "z": -772.6, "px": 2832.4, "py": 1916.1, "has_dungeon": false, "has_important": true}, {"id": 1703, "name": "Grave1", "category": "other", "x": 3130.5, "z": -4281.1, "px": 2582.3, "py": 1317.4, "has_dungeon": false, "has_important": true}, {"id": 1704, "name": "Grave1", "category": "other", "x": 2423.1, "z": -5316.5, "px": 2461.5, "py": 1140.7, "has_dungeon": false, "has_important": true}, {"id": 1705, "name": "Grave1", "category": "other", "x": 3334.1, "z": 4748.9, "px": 2617.0, "py": 2858.5, "has_dungeon": false, "has_important": true}, {"id": 1706, "name": "Grave1", "category": "other", "x": 4553.0, "z": -3346.0, "px": 2825.0, "py": 1476.9, "has_dungeon": false, "has_important": true}, {"id": 1707, "name": "Grave1", "category": "other", "x": 1269.2, "z": 2160.5, "px": 2264.6, "py": 2416.7, "has_dungeon": false, "has_important": true}, {"id": 1708, "name": "Grave1", "category": "other", "x": -365.4, "z": 2612.5, "px": 1985.6, "py": 2493.9, "has_dungeon": false, "has_important": true}, {"id": 1709, "name": "Grave1", "category": "other", "x": -5047.4, "z": 1420.4, "px": 1186.6, "py": 2290.4, "has_dungeon": false, "has_important": true}, {"id": 1710, "name": "Grave1", "category": "other", "x": 4559.7, "z": -3018.5, "px": 2826.2, "py": 1532.8, "has_dungeon": false, "has_important": true}, {"id": 1711, "name": "Grave1", "category": "other", "x": -1040.8, "z": -5576.9, "px": 1870.4, "py": 1096.2, "has_dungeon": false, "has_important": true}, {"id": 1712, "name": "Grave1", "category": "other", "x": -4973.6, "z": 1294.3, "px": 1199.2, "py": 2268.9, "has_dungeon": false, "has_important": true}, {"id": 1713, "name": "Grave1", "category": "other", "x": 3823.7, "z": 698.2, "px": 2700.6, "py": 2167.2, "has_dungeon": false, "has_important": true}, {"id": 1714, "name": "Grave1", "category": "other", "x": 1484.4, "z": 2301.3, "px": 2301.3, "py": 2440.8, "has_dungeon": false, "has_important": true}, {"id": 1715, "name": "Grave1", "category": "other", "x": 3633.1, "z": 968.2, "px": 2668.0, "py": 2213.2, "has_dungeon": false, "has_important": true}, {"id": 1716, "name": "Grave1", "category": "other", "x": -568.2, "z": -3539.7, "px": 1951.0, "py": 1443.9, "has_dungeon": false, "has_important": true}, {"id": 1717, "name": "Grave1", "category": "other", "x": 3661.1, "z": 768.6, "px": 2672.8, "py": 2179.2, "has_dungeon": false, "has_important": true}, {"id": 1718, "name": "Grave1", "category": "other", "x": 3692.8, "z": 755.7, "px": 2678.2, "py": 2177.0, "has_dungeon": false, "has_important": true}, {"id": 1719, "name": "Grave1", "category": "other", "x": 3630.4, "z": 901.6, "px": 2667.6, "py": 2201.9, "has_dungeon": false, "has_important": true}, {"id": 1720, "name": "Grave1", "category": "other", "x": 2381.5, "z": -5365.0, "px": 2454.4, "py": 1132.4, "has_dungeon": false, "has_important": true}, {"id": 1721, "name": "Grave1", "category": "other", "x": 1169.0, "z": 4347.1, "px": 2247.5, "py": 2789.9, "has_dungeon": false, "has_important": true}, {"id": 1722, "name": "Grave1", "category": "other", "x": -2627.6, "z": -1663.1, "px": 1599.6, "py": 1764.2, "has_dungeon": false, "has_important": true}, {"id": 1723, "name": "Grave1", "category": "other", "x": -2684.7, "z": -1580.1, "px": 1589.8, "py": 1778.3, "has_dungeon": false, "has_important": true}, {"id": 1724, "name": "Grave1", "category": "other", "x": -2286.8, "z": -4143.8, "px": 1657.7, "py": 1340.8, "has_dungeon": false, "has_important": true}, {"id": 1725, "name": "Grave1", "category": "other", "x": -2763.7, "z": -898.4, "px": 1576.3, "py": 1894.7, "has_dungeon": false, "has_important": true}, {"id": 1726, "name": "Grave1", "category": "other", "x": -326.2, "z": 2489.5, "px": 1992.3, "py": 2472.9, "has_dungeon": false, "has_important": true}, {"id": 1727, "name": "Grave1", "category": "other", "x": -827.5, "z": -3839.3, "px": 1906.8, "py": 1392.8, "has_dungeon": false, "has_important": true}, {"id": 1728, "name": "Grave1", "category": "other", "x": 2675.8, "z": 3758.2, "px": 2504.7, "py": 2689.4, "has_dungeon": false, "has_important": true}, {"id": 1729, "name": "Grave1", "category": "other", "x": -5228.5, "z": 1681.9, "px": 1155.7, "py": 2335.0, "has_dungeon": false, "has_important": true}, {"id": 1730, "name": "Grave1", "category": "other", "x": 4559.3, "z": -3065.5, "px": 2826.1, "py": 1524.8, "has_dungeon": false, "has_important": true}, {"id": 1731, "name": "Grave1", "category": "other", "x": 1859.2, "z": 1461.2, "px": 2365.3, "py": 2297.4, "has_dungeon": false, "has_important": true}, {"id": 1732, "name": "Grave1", "category": "other", "x": 3255.3, "z": -4299.6, "px": 2603.6, "py": 1314.2, "has_dungeon": false, "has_important": true}, {"id": 1733, "name": "Grave1", "category": "other", "x": 4680.0, "z": -3069.8, "px": 2846.7, "py": 1524.1, "has_dungeon": false, "has_important": true}, {"id": 1734, "name": "Grave1", "category": "other", "x": 4485.3, "z": -3155.5, "px": 2813.5, "py": 1509.5, "has_dungeon": false, "has_important": true}, {"id": 1735, "name": "Grave1", "category": "other", "x": -2624.4, "z": -5139.3, "px": 1600.1, "py": 1170.9, "has_dungeon": false, "has_important": true}, {"id": 1736, "name": "Grave1", "category": "other", "x": 2579.4, "z": -595.9, "px": 2488.2, "py": 1946.3, "has_dungeon": false, "has_important": true}, {"id": 1737, "name": "Grave1", "category": "other", "x": -4908.1, "z": 1278.7, "px": 1210.4, "py": 2266.2, "has_dungeon": false, "has_important": true}, {"id": 1738, "name": "Grave1", "category": "other", "x": -5298.6, "z": 1659.3, "px": 1143.7, "py": 2331.2, "has_dungeon": false, "has_important": true}, {"id": 1739, "name": "Grave1", "category": "other", "x": -2304.3, "z": 4811.7, "px": 1654.7, "py": 2869.2, "has_dungeon": false, "has_important": true}, {"id": 1740, "name": "Grave1", "category": "other", "x": -2683.6, "z": -1645.2, "px": 1590.0, "py": 1767.2, "has_dungeon": false, "has_important": true}, {"id": 1741, "name": "Grave1", "category": "other", "x": -4423.2, "z": 3653.0, "px": 1293.1, "py": 2671.4, "has_dungeon": false, "has_important": true}, {"id": 1742, "name": "Grave1", "category": "other", "x": 1745.9, "z": 4338.6, "px": 2346.0, "py": 2788.5, "has_dungeon": false, "has_important": true}, {"id": 1743, "name": "Grave1", "category": "other", "x": -5319.1, "z": 1585.8, "px": 1140.2, "py": 2318.6, "has_dungeon": false, "has_important": true}, {"id": 1744, "name": "Grave1", "category": "other", "x": -205.6, "z": 2549.9, "px": 2012.9, "py": 2483.2, "has_dungeon": false, "has_important": true}, {"id": 1745, "name": "Grave1", "category": "other", "x": 2368.6, "z": -1024.8, "px": 2452.2, "py": 1873.1, "has_dungeon": false, "has_important": true}, {"id": 1746, "name": "Grave1", "category": "other", "x": 1410.3, "z": 2167.6, "px": 2288.7, "py": 2417.9, "has_dungeon": false, "has_important": true}, {"id": 1747, "name": "Grave1", "category": "other", "x": -3139.0, "z": 454.5, "px": 1512.3, "py": 2125.6, "has_dungeon": false, "has_important": true}, {"id": 1748, "name": "Grave1", "category": "other", "x": 4397.8, "z": -3054.5, "px": 2798.6, "py": 1526.7, "has_dungeon": false, "has_important": true}, {"id": 1749, "name": "Grave1", "category": "other", "x": -3601.9, "z": 3196.6, "px": 1433.3, "py": 2593.6, "has_dungeon": false, "has_important": true}, {"id": 1750, "name": "Grave1", "category": "other", "x": 1401.1, "z": 2113.5, "px": 2287.1, "py": 2408.7, "has_dungeon": false, "has_important": true}, {"id": 1751, "name": "Grave1", "category": "other", "x": -3533.3, "z": 3320.8, "px": 1445.0, "py": 2614.7, "has_dungeon": false, "has_important": true}, {"id": 1752, "name": "Grave1", "category": "other", "x": 4663.3, "z": -718.2, "px": 2843.9, "py": 1925.4, "has_dungeon": false, "has_important": true}, {"id": 1753, "name": "Grave1", "category": "other", "x": -4332.2, "z": 3631.2, "px": 1308.6, "py": 2667.7, "has_dungeon": false, "has_important": true}, {"id": 1754, "name": "Grave1", "category": "other", "x": -2002.9, "z": 4554.2, "px": 1706.2, "py": 2825.3, "has_dungeon": false, "has_important": true}, {"id": 1755, "name": "Grave1", "category": "other", "x": 3264.1, "z": -4348.3, "px": 2605.1, "py": 1305.9, "has_dungeon": false, "has_important": true}, {"id": 1756, "name": "Grave1", "category": "other", "x": -2234.1, "z": -4173.1, "px": 1666.7, "py": 1335.8, "has_dungeon": false, "has_important": true}, {"id": 1757, "name": "Grave1", "category": "other", "x": -209.5, "z": 2743.0, "px": 2012.2, "py": 2516.1, "has_dungeon": false, "has_important": true}, {"id": 1758, "name": "Grave1", "category": "other", "x": -5166.4, "z": 1525.6, "px": 1166.3, "py": 2308.4, "has_dungeon": false, "has_important": true}, {"id": 1759, "name": "Grave1", "category": "other", "x": 2186.2, "z": -4300.3, "px": 2421.1, "py": 1314.1, "has_dungeon": false, "has_important": true}, {"id": 1760, "name": "Grave1", "category": "other", "x": -2565.5, "z": 5103.5, "px": 1610.2, "py": 2919.0, "has_dungeon": false, "has_important": true}, {"id": 1761, "name": "Grave1", "category": "other", "x": -4878.7, "z": 1292.3, "px": 1215.4, "py": 2268.6, "has_dungeon": false, "has_important": true}, {"id": 1762, "name": "Grave1", "category": "other", "x": 2173.2, "z": 243.8, "px": 2418.9, "py": 2089.6, "has_dungeon": false, "has_important": true}, {"id": 1763, "name": "Grave1", "category": "other", "x": 2246.0, "z": -4285.3, "px": 2431.3, "py": 1316.6, "has_dungeon": false, "has_important": true}, {"id": 1764, "name": "Grave1", "category": "other", "x": -5369.6, "z": 1778.1, "px": 1131.6, "py": 2351.5, "has_dungeon": false, "has_important": true}, {"id": 1765, "name": "Grave1", "category": "other", "x": -565.1, "z": -3907.4, "px": 1951.6, "py": 1381.1, "has_dungeon": false, "has_important": true}, {"id": 1766, "name": "Grave1", "category": "other", "x": -648.3, "z": -3902.6, "px": 1937.4, "py": 1382.0, "has_dungeon": false, "has_important": true}, {"id": 1767, "name": "Grave1", "category": "other", "x": -1859.1, "z": 4485.7, "px": 1730.7, "py": 2813.6, "has_dungeon": false, "has_important": true}, {"id": 1768, "name": "Grave1", "category": "other", "x": 3821.8, "z": 773.9, "px": 2700.3, "py": 2180.1, "has_dungeon": false, "has_important": true}, {"id": 1769, "name": "Grave1", "category": "other", "x": -5195.5, "z": -688.7, "px": 1161.3, "py": 1930.5, "has_dungeon": false, "has_important": true}, {"id": 1770, "name": "Grave1", "category": "other", "x": -2992.3, "z": 523.5, "px": 1537.3, "py": 2137.3, "has_dungeon": false, "has_important": true}, {"id": 1771, "name": "Grave1", "category": "other", "x": -2570.5, "z": -5197.0, "px": 1609.3, "py": 1161.0, "has_dungeon": false, "has_important": true}, {"id": 1772, "name": "Grave1", "category": "other", "x": 2419.0, "z": -5387.2, "px": 2460.8, "py": 1128.6, "has_dungeon": false, "has_important": true}, {"id": 1773, "name": "Grave1", "category": "other", "x": 2759.0, "z": 3693.7, "px": 2518.9, "py": 2678.4, "has_dungeon": false, "has_important": true}, {"id": 1774, "name": "Grave1", "category": "other", "x": 4787.3, "z": -834.8, "px": 2865.0, "py": 1905.5, "has_dungeon": false, "has_important": true}, {"id": 1775, "name": "Grave1", "category": "other", "x": 3768.6, "z": 759.1, "px": 2691.2, "py": 2177.6, "has_dungeon": false, "has_important": true}, {"id": 1776, "name": "Grave1", "category": "other", "x": -4461.0, "z": 3580.3, "px": 1286.7, "py": 2659.0, "has_dungeon": false, "has_important": true}, {"id": 1777, "name": "Grave1", "category": "other", "x": -2420.4, "z": 4806.0, "px": 1634.9, "py": 2868.2, "has_dungeon": false, "has_important": true}, {"id": 1778, "name": "Grave1", "category": "other", "x": -4993.3, "z": 1393.9, "px": 1195.8, "py": 2285.9, "has_dungeon": false, "has_important": true}, {"id": 1779, "name": "Grave1", "category": "other", "x": -2675.9, "z": -1777.6, "px": 1591.3, "py": 1744.6, "has_dungeon": false, "has_important": true}, {"id": 1780, "name": "Grave1", "category": "other", "x": -5587.2, "z": 2001.8, "px": 1094.5, "py": 2389.6, "has_dungeon": false, "has_important": true}, {"id": 1781, "name": "Grave1", "category": "other", "x": 2573.3, "z": -71.0, "px": 2487.2, "py": 2035.9, "has_dungeon": false, "has_important": true}, {"id": 1782, "name": "Grave1", "category": "other", "x": -2561.8, "z": -5132.3, "px": 1610.8, "py": 1172.1, "has_dungeon": false, "has_important": true}, {"id": 1783, "name": "Grave1", "category": "other", "x": 1004.3, "z": 4341.3, "px": 2219.4, "py": 2788.9, "has_dungeon": false, "has_important": true}, {"id": 1784, "name": "Grave1", "category": "other", "x": -2636.1, "z": -1739.6, "px": 1598.1, "py": 1751.1, "has_dungeon": false, "has_important": true}, {"id": 1785, "name": "Grave1", "category": "other", "x": 4747.3, "z": -639.6, "px": 2858.2, "py": 1938.8, "has_dungeon": false, "has_important": true}, {"id": 1786, "name": "Grave1", "category": "other", "x": -5296.1, "z": 1554.4, "px": 1144.1, "py": 2313.3, "has_dungeon": false, "has_important": true}, {"id": 1787, "name": "Grave1", "category": "other", "x": 1225.7, "z": 2165.7, "px": 2257.2, "py": 2417.6, "has_dungeon": false, "has_important": true}, {"id": 1788, "name": "Grave1", "category": "other", "x": -5331.3, "z": 1456.0, "px": 1138.1, "py": 2296.5, "has_dungeon": false, "has_important": true}, {"id": 1789, "name": "Grave1", "category": "other", "x": -3077.0, "z": 451.7, "px": 1522.9, "py": 2125.1, "has_dungeon": false, "has_important": true}, {"id": 1790, "name": "Grave1", "category": "other", "x": 1362.6, "z": 2052.5, "px": 2280.6, "py": 2398.3, "has_dungeon": false, "has_important": true}, {"id": 1791, "name": "Grave1", "category": "other", "x": -1863.4, "z": 4544.3, "px": 1730.0, "py": 2823.6, "has_dungeon": false, "has_important": true}, {"id": 1792, "name": "Grave1", "category": "other", "x": 1143.7, "z": -3596.6, "px": 2243.2, "py": 1434.2, "has_dungeon": false, "has_important": true}, {"id": 1793, "name": "Grave1", "category": "other", "x": 4554.9, "z": -3207.7, "px": 2825.4, "py": 1500.6, "has_dungeon": false, "has_important": true}, {"id": 1794, "name": "Grave1", "category": "other", "x": 1341.4, "z": 1995.2, "px": 2276.9, "py": 2388.5, "has_dungeon": false, "has_important": true}, {"id": 1795, "name": "Grave1", "category": "other", "x": -1099.5, "z": -5642.0, "px": 1860.4, "py": 1085.1, "has_dungeon": false, "has_important": true}, {"id": 1796, "name": "Grave1", "category": "other", "x": 2605.3, "z": -57.2, "px": 2492.6, "py": 2038.2, "has_dungeon": false, "has_important": true}, {"id": 1797, "name": "Grave1", "category": "other", "x": -2551.0, "z": -881.7, "px": 1612.6, "py": 1897.5, "has_dungeon": false, "has_important": true}, {"id": 1798, "name": "Grave1", "category": "other", "x": -2364.2, "z": -4088.0, "px": 1644.5, "py": 1350.3, "has_dungeon": false, "has_important": true}, {"id": 1799, "name": "Grave1", "category": "other", "x": -5330.4, "z": 1743.5, "px": 1138.3, "py": 2345.6, "has_dungeon": false, "has_important": true}, {"id": 1800, "name": "Grave1", "category": "other", "x": 1530.8, "z": 1996.4, "px": 2309.3, "py": 2388.7, "has_dungeon": false, "has_important": true}, {"id": 1801, "name": "Grave1", "category": "other", "x": 4619.7, "z": -3135.8, "px": 2836.4, "py": 1512.8, "has_dungeon": false, "has_important": true}, {"id": 1802, "name": "Grave1", "category": "other", "x": -4875.1, "z": -3344.9, "px": 1216.0, "py": 1477.1, "has_dungeon": false, "has_important": true}, {"id": 1803, "name": "Grave1", "category": "other", "x": 1423.7, "z": 2296.2, "px": 2291.0, "py": 2439.9, "has_dungeon": false, "has_important": true}, {"id": 1804, "name": "Grave1", "category": "other", "x": -401.8, "z": 2478.6, "px": 1979.4, "py": 2471.0, "has_dungeon": false, "has_important": true}, {"id": 1805, "name": "Grave1", "category": "other", "x": 4400.7, "z": -2994.8, "px": 2799.1, "py": 1536.9, "has_dungeon": false, "has_important": true}, {"id": 1806, "name": "Grave1", "category": "other", "x": 2641.3, "z": 3891.3, "px": 2498.8, "py": 2712.1, "has_dungeon": false, "has_important": true}, {"id": 1807, "name": "Grave1", "category": "other", "x": -2757.9, "z": -972.8, "px": 1577.3, "py": 1882.0, "has_dungeon": false, "has_important": true}, {"id": 1808, "name": "Grave1", "category": "other", "x": 1788.9, "z": 4340.6, "px": 2353.3, "py": 2788.8, "has_dungeon": false, "has_important": true}, {"id": 1809, "name": "Grave1", "category": "other", "x": -4204.6, "z": 505.5, "px": 1330.4, "py": 2134.3, "has_dungeon": false, "has_important": true}, {"id": 1810, "name": "Grave1", "category": "other", "x": -5382.2, "z": 1657.0, "px": 1129.4, "py": 2330.8, "has_dungeon": false, "has_important": true}, {"id": 1811, "name": "Grave1", "category": "other", "x": -2639.3, "z": -5169.9, "px": 1597.6, "py": 1165.7, "has_dungeon": false, "has_important": true}, {"id": 1812, "name": "Grave1", "category": "other", "x": -4171.9, "z": 3715.3, "px": 1336.0, "py": 2682.1, "has_dungeon": false, "has_important": true}, {"id": 1813, "name": "Grave1", "category": "other", "x": 4672.4, "z": -3131.9, "px": 2845.4, "py": 1513.5, "has_dungeon": false, "has_important": true}, {"id": 1814, "name": "Grave1", "category": "other", "x": -4278.1, "z": 372.2, "px": 1317.9, "py": 2111.5, "has_dungeon": false, "has_important": true}, {"id": 1815, "name": "Grave1", "category": "other", "x": -2576.3, "z": 5042.5, "px": 1608.3, "py": 2908.6, "has_dungeon": false, "has_important": true}, {"id": 1816, "name": "Grave1", "category": "other", "x": -318.7, "z": 2612.7, "px": 1993.6, "py": 2493.9, "has_dungeon": false, "has_important": true}, {"id": 1817, "name": "Grave1", "category": "other", "x": 1470.3, "z": 2057.4, "px": 2298.9, "py": 2399.1, "has_dungeon": false, "has_important": true}, {"id": 1818, "name": "Grave1", "category": "other", "x": -914.0, "z": -3834.0, "px": 1892.0, "py": 1393.7, "has_dungeon": false, "has_important": true}, {"id": 1819, "name": "Grave1", "category": "other", "x": 248.1, "z": 4304.2, "px": 2090.3, "py": 2782.6, "has_dungeon": false, "has_important": true}, {"id": 1820, "name": "Grave1", "category": "other", "x": -2797.3, "z": -1721.5, "px": 1570.6, "py": 1754.2, "has_dungeon": false, "has_important": true}, {"id": 1821, "name": "Grave1", "category": "other", "x": -125.3, "z": 2682.6, "px": 2026.6, "py": 2505.8, "has_dungeon": false, "has_important": true}, {"id": 1822, "name": "Grave1", "category": "other", "x": 256.6, "z": 4347.4, "px": 2091.8, "py": 2790.0, "has_dungeon": false, "has_important": true}, {"id": 1823, "name": "Grave1", "category": "other", "x": 4619.8, "z": -717.4, "px": 2836.4, "py": 1925.6, "has_dungeon": false, "has_important": true}, {"id": 1824, "name": "Grave1", "category": "other", "x": 4465.4, "z": -2896.3, "px": 2810.1, "py": 1553.7, "has_dungeon": false, "has_important": true}, {"id": 1825, "name": "Grave1", "category": "other", "x": -947.5, "z": -3654.0, "px": 1886.3, "py": 1424.4, "has_dungeon": false, "has_important": true}, {"id": 1826, "name": "Grave1", "category": "other", "x": -828.2, "z": -3696.8, "px": 1906.7, "py": 1417.1, "has_dungeon": false, "has_important": true}, {"id": 1827, "name": "Grave1", "category": "other", "x": 3721.4, "z": 891.2, "px": 2683.1, "py": 2200.1, "has_dungeon": false, "has_important": true}, {"id": 1828, "name": "Grave1", "category": "other", "x": -3526.9, "z": 198.0, "px": 1446.1, "py": 2081.8, "has_dungeon": false, "has_important": true}, {"id": 1829, "name": "Grave1", "category": "other", "x": -3019.6, "z": 462.1, "px": 1532.7, "py": 2126.9, "has_dungeon": false, "has_important": true}, {"id": 1830, "name": "Grave1", "category": "other", "x": -775.4, "z": -3782.9, "px": 1915.7, "py": 1402.4, "has_dungeon": false, "has_important": true}, {"id": 1831, "name": "Grave1", "category": "other", "x": 2365.8, "z": 339.3, "px": 2451.8, "py": 2105.9, "has_dungeon": false, "has_important": true}, {"id": 1832, "name": "Grave1", "category": "other", "x": -5259.1, "z": 1531.8, "px": 1150.4, "py": 2309.4, "has_dungeon": false, "has_important": true}, {"id": 4508, "name": "InfestedTree01", "category": "other", "x": 3198.6, "z": 786.4, "px": 2593.9, "py": 2182.2, "has_dungeon": false, "has_important": false}, {"id": 4509, "name": "InfestedTree01", "category": "other", "x": 5439.2, "z": 2359.9, "px": 2976.3, "py": 2450.8, "has_dungeon": false, "has_important": false}, {"id": 4510, "name": "InfestedTree01", "category": "other", "x": -5078.9, "z": -754.2, "px": 1181.2, "py": 1919.3, "has_dungeon": false, "has_important": false}, {"id": 4511, "name": "InfestedTree01", "category": "other", "x": -4604.1, "z": 969.4, "px": 1262.2, "py": 2213.4, "has_dungeon": false, "has_important": false}, {"id": 4512, "name": "InfestedTree01", "category": "other", "x": -2446.6, "z": -897.3, "px": 1630.4, "py": 1894.9, "has_dungeon": false, "has_important": false}, {"id": 4513, "name": "InfestedTree01", "category": "other", "x": 920.2, "z": 4325.9, "px": 2205.0, "py": 2786.3, "has_dungeon": false, "has_important": false}, {"id": 4514, "name": "InfestedTree01", "category": "other", "x": 3719.6, "z": 4297.8, "px": 2682.8, "py": 2781.5, "has_dungeon": false, "has_important": false}, {"id": 4515, "name": "InfestedTree01", "category": "other", "x": 2098.8, "z": 174.5, "px": 2406.2, "py": 2077.8, "has_dungeon": false, "has_important": false}, {"id": 4516, "name": "InfestedTree01", "category": "other", "x": 2439.3, "z": 3796.2, "px": 2464.3, "py": 2695.9, "has_dungeon": false, "has_important": false}, {"id": 4517, "name": "InfestedTree01", "category": "other", "x": 4211.8, "z": 448.2, "px": 2766.8, "py": 2124.5, "has_dungeon": false, "has_important": false}, {"id": 4518, "name": "InfestedTree01", "category": "other", "x": 2821.5, "z": 3477.4, "px": 2529.5, "py": 2641.5, "has_dungeon": false, "has_important": false}, {"id": 4519, "name": "InfestedTree01", "category": "other", "x": -2539.4, "z": 4776.1, "px": 1614.6, "py": 2863.1, "has_dungeon": false, "has_important": false}, {"id": 4520, "name": "InfestedTree01", "category": "other", "x": -4212.8, "z": 3795.8, "px": 1329.0, "py": 2695.8, "has_dungeon": false, "has_important": false}, {"id": 4521, "name": "InfestedTree01", "category": "other", "x": -4882.8, "z": -654.0, "px": 1214.7, "py": 1936.4, "has_dungeon": false, "has_important": false}, {"id": 4522, "name": "InfestedTree01", "category": "other", "x": -4971.2, "z": -3304.6, "px": 1199.6, "py": 1484.0, "has_dungeon": false, "has_important": false}, {"id": 4523, "name": "InfestedTree01", "category": "other", "x": -2873.6, "z": -1676.8, "px": 1557.6, "py": 1761.8, "has_dungeon": false, "has_important": false}, {"id": 4524, "name": "InfestedTree01", "category": "other", "x": 4803.1, "z": -944.8, "px": 2867.7, "py": 1886.8, "has_dungeon": false, "has_important": false}, {"id": 4525, "name": "InfestedTree01", "category": "other", "x": -5684.1, "z": -514.7, "px": 1077.9, "py": 1960.2, "has_dungeon": false, "has_important": false}, {"id": 4526, "name": "InfestedTree01", "category": "other", "x": -1382.4, "z": -5818.5, "px": 1812.1, "py": 1055.0, "has_dungeon": false, "has_important": false}, {"id": 4527, "name": "InfestedTree01", "category": "other", "x": -3647.1, "z": 3087.5, "px": 1425.6, "py": 2574.9, "has_dungeon": false, "has_important": false}, {"id": 4528, "name": "InfestedTree01", "category": "other", "x": -3862.6, "z": 303.2, "px": 1388.8, "py": 2099.7, "has_dungeon": false, "has_important": false}, {"id": 4529, "name": "InfestedTree01", "category": "other", "x": 5418.6, "z": 1578.4, "px": 2972.8, "py": 2317.4, "has_dungeon": false, "has_important": false}, {"id": 4530, "name": "InfestedTree01", "category": "other", "x": -2422.5, "z": -1076.3, "px": 1634.6, "py": 1864.3, "has_dungeon": false, "has_important": false}, {"id": 4531, "name": "InfestedTree01", "category": "other", "x": 2639.0, "z": 4077.6, "px": 2498.4, "py": 2743.9, "has_dungeon": false, "has_important": false}, {"id": 4532, "name": "InfestedTree01", "category": "other", "x": 4503.7, "z": -717.2, "px": 2816.6, "py": 1925.6, "has_dungeon": false, "has_important": false}, {"id": 4533, "name": "InfestedTree01", "category": "other", "x": -3325.4, "z": 422.5, "px": 1480.5, "py": 2120.1, "has_dungeon": false, "has_important": false}, {"id": 4534, "name": "InfestedTree01", "category": "other", "x": -598.5, "z": -3474.3, "px": 1945.9, "py": 1455.1, "has_dungeon": false, "has_important": false}, {"id": 4535, "name": "InfestedTree01", "category": "other", "x": 4039.5, "z": 394.4, "px": 2737.4, "py": 2115.3, "has_dungeon": false, "has_important": false}, {"id": 4536, "name": "InfestedTree01", "category": "other", "x": 464.3, "z": 2641.2, "px": 2127.2, "py": 2498.8, "has_dungeon": false, "has_important": false}, {"id": 4537, "name": "InfestedTree01", "category": "other", "x": -5241.7, "z": 1741.4, "px": 1153.4, "py": 2345.2, "has_dungeon": false, "has_important": false}, {"id": 4538, "name": "InfestedTree01", "category": "other", "x": 1766.6, "z": 4905.6, "px": 2349.5, "py": 2885.2, "has_dungeon": false, "has_important": false}, {"id": 4539, "name": "InfestedTree01", "category": "other", "x": 4851.7, "z": -655.1, "px": 2876.0, "py": 1936.2, "has_dungeon": false, "has_important": false}, {"id": 4540, "name": "InfestedTree01", "category": "other", "x": -3572.8, "z": -4168.8, "px": 1438.2, "py": 1336.5, "has_dungeon": false, "has_important": false}, {"id": 4541, "name": "InfestedTree01", "category": "other", "x": 5359.2, "z": 2089.6, "px": 2962.6, "py": 2404.6, "has_dungeon": false, "has_important": false}, {"id": 4542, "name": "InfestedTree01", "category": "other", "x": -4846.5, "z": -195.8, "px": 1220.9, "py": 2014.6, "has_dungeon": false, "has_important": false}, {"id": 4543, "name": "InfestedTree01", "category": "other", "x": 5114.1, "z": -366.4, "px": 2920.8, "py": 1985.5, "has_dungeon": false, "has_important": false}, {"id": 4544, "name": "InfestedTree01", "category": "other", "x": -2900.3, "z": 1638.0, "px": 1553.0, "py": 2327.6, "has_dungeon": false, "has_important": false}, {"id": 4545, "name": "InfestedTree01", "category": "other", "x": -2510.7, "z": -5065.7, "px": 1619.5, "py": 1183.5, "has_dungeon": false, "has_important": false}, {"id": 4546, "name": "InfestedTree01", "category": "other", "x": 3943.2, "z": 664.2, "px": 2721.0, "py": 2161.4, "has_dungeon": false, "has_important": false}, {"id": 4547, "name": "InfestedTree01", "category": "other", "x": -2551.8, "z": -4228.6, "px": 1612.5, "py": 1326.3, "has_dungeon": false, "has_important": false}, {"id": 4548, "name": "InfestedTree01", "category": "other", "x": -5424.6, "z": 1709.5, "px": 1122.2, "py": 2339.8, "has_dungeon": false, "has_important": false}, {"id": 4549, "name": "InfestedTree01", "category": "other", "x": 461.4, "z": 2755.3, "px": 2126.7, "py": 2518.2, "has_dungeon": false, "has_important": false}, {"id": 4550, "name": "InfestedTree01", "category": "other", "x": 154.8, "z": 4269.0, "px": 2074.4, "py": 2776.6, "has_dungeon": false, "has_important": false}, {"id": 4551, "name": "InfestedTree01", "category": "other", "x": 2190.4, "z": 647.7, "px": 2421.8, "py": 2158.5, "has_dungeon": false, "has_important": false}, {"id": 4552, "name": "InfestedTree01", "category": "other", "x": 3660.0, "z": 4565.2, "px": 2672.6, "py": 2827.1, "has_dungeon": false, "has_important": false}, {"id": 4553, "name": "InfestedTree01", "category": "other", "x": -1993.0, "z": 4738.3, "px": 1707.9, "py": 2856.7, "has_dungeon": false, "has_important": false}, {"id": 4554, "name": "InfestedTree01", "category": "other", "x": -4780.5, "z": 1215.1, "px": 1232.1, "py": 2255.4, "has_dungeon": false, "has_important": false}, {"id": 4555, "name": "InfestedTree01", "category": "other", "x": 302.7, "z": 2475.6, "px": 2099.7, "py": 2470.5, "has_dungeon": false, "has_important": false}, {"id": 4556, "name": "InfestedTree01", "category": "other", "x": 1598.0, "z": -5013.8, "px": 2320.7, "py": 1192.3, "has_dungeon": false, "has_important": false}, {"id": 4557, "name": "InfestedTree01", "category": "other", "x": -2264.8, "z": 4237.0, "px": 1661.5, "py": 2771.1, "has_dungeon": false, "has_important": false}, {"id": 4558, "name": "InfestedTree01", "category": "other", "x": 2839.9, "z": -3303.1, "px": 2532.7, "py": 1484.3, "has_dungeon": false, "has_important": false}, {"id": 4559, "name": "InfestedTree01", "category": "other", "x": 3116.8, "z": -328.3, "px": 2579.9, "py": 1992.0, "has_dungeon": false, "has_important": false}, {"id": 4560, "name": "InfestedTree01", "category": "other", "x": 3913.5, "z": 4525.0, "px": 2715.9, "py": 2820.3, "has_dungeon": false, "has_important": false}, {"id": 4561, "name": "InfestedTree01", "category": "other", "x": 1558.4, "z": -5054.8, "px": 2314.0, "py": 1185.3, "has_dungeon": false, "has_important": false}, {"id": 4562, "name": "InfestedTree01", "category": "other", "x": -2638.6, "z": 1581.8, "px": 1597.7, "py": 2318.0, "has_dungeon": false, "has_important": false}, {"id": 4563, "name": "InfestedTree01", "category": "other", "x": 5702.6, "z": 1362.6, "px": 3021.2, "py": 2280.6, "has_dungeon": false, "has_important": false}, {"id": 4564, "name": "InfestedTree01", "category": "other", "x": -2328.7, "z": 4399.2, "px": 1650.6, "py": 2798.8, "has_dungeon": false, "has_important": false}, {"id": 4565, "name": "InfestedTree01", "category": "other", "x": -3455.0, "z": 2568.8, "px": 1458.3, "py": 2486.4, "has_dungeon": false, "has_important": false}, {"id": 4566, "name": "InfestedTree01", "category": "other", "x": -4416.2, "z": 3573.6, "px": 1294.3, "py": 2657.9, "has_dungeon": false, "has_important": false}, {"id": 4567, "name": "InfestedTree01", "category": "other", "x": -147.4, "z": 2390.0, "px": 2022.8, "py": 2455.9, "has_dungeon": false, "has_important": false}, {"id": 4568, "name": "InfestedTree01", "category": "other", "x": -5261.7, "z": -870.9, "px": 1150.0, "py": 1899.4, "has_dungeon": false, "has_important": false}, {"id": 4569, "name": "InfestedTree01", "category": "other", "x": -5424.5, "z": 1790.6, "px": 1122.2, "py": 2353.6, "has_dungeon": false, "has_important": false}, {"id": 4570, "name": "InfestedTree01", "category": "other", "x": 3194.9, "z": -4437.1, "px": 2593.3, "py": 1290.7, "has_dungeon": false, "has_important": false}, {"id": 4571, "name": "InfestedTree01", "category": "other", "x": 5299.2, "z": 1150.0, "px": 2952.4, "py": 2244.3, "has_dungeon": false, "has_important": false}, {"id": 4572, "name": "InfestedTree01", "category": "other", "x": 3047.6, "z": -533.4, "px": 2568.1, "py": 1957.0, "has_dungeon": false, "has_important": false}, {"id": 4573, "name": "InfestedTree01", "category": "other", "x": -4987.9, "z": -3241.2, "px": 1196.7, "py": 1494.8, "has_dungeon": false, "has_important": false}, {"id": 4574, "name": "InfestedTree01", "category": "other", "x": -2381.0, "z": -597.3, "px": 1641.6, "py": 1946.1, "has_dungeon": false, "has_important": false}, {"id": 4575, "name": "InfestedTree01", "category": "other", "x": 2283.5, "z": -3315.4, "px": 2437.7, "py": 1482.2, "has_dungeon": false, "has_important": false}, {"id": 4576, "name": "InfestedTree01", "category": "other", "x": 1210.1, "z": -3624.4, "px": 2254.5, "py": 1429.4, "has_dungeon": false, "has_important": false}, {"id": 4577, "name": "InfestedTree01", "category": "other", "x": -5324.2, "z": -744.5, "px": 1139.3, "py": 1920.9, "has_dungeon": false, "has_important": false}, {"id": 4578, "name": "InfestedTree01", "category": "other", "x": 4099.4, "z": 363.9, "px": 2747.6, "py": 2110.1, "has_dungeon": false, "has_important": false}, {"id": 4579, "name": "InfestedTree01", "category": "other", "x": -2286.5, "z": -4336.6, "px": 1657.8, "py": 1307.9, "has_dungeon": false, "has_important": false}, {"id": 4580, "name": "InfestedTree01", "category": "other", "x": 5168.3, "z": -394.1, "px": 2930.1, "py": 1980.7, "has_dungeon": false, "has_important": false}, {"id": 4581, "name": "InfestedTree01", "category": "other", "x": 3373.7, "z": 4687.0, "px": 2623.8, "py": 2847.9, "has_dungeon": false, "has_important": false}, {"id": 4582, "name": "InfestedTree01", "category": "other", "x": -2744.1, "z": -1908.7, "px": 1579.7, "py": 1722.2, "has_dungeon": false, "has_important": false}, {"id": 4583, "name": "InfestedTree01", "category": "other", "x": 2290.4, "z": -5542.1, "px": 2438.9, "py": 1102.1, "has_dungeon": false, "has_important": false}, {"id": 4584, "name": "InfestedTree01", "category": "other", "x": -3283.9, "z": 450.2, "px": 1487.5, "py": 2124.8, "has_dungeon": false, "has_important": false}, {"id": 4585, "name": "InfestedTree01", "category": "other", "x": -2379.6, "z": 4344.5, "px": 1641.9, "py": 2789.5, "has_dungeon": false, "has_important": false}, {"id": 4586, "name": "InfestedTree01", "category": "other", "x": 3561.7, "z": 1012.7, "px": 2655.9, "py": 2220.8, "has_dungeon": false, "has_important": false}, {"id": 4587, "name": "InfestedTree01", "category": "other", "x": -5304.1, "z": -662.7, "px": 1142.8, "py": 1934.9, "has_dungeon": false, "has_important": false}, {"id": 4588, "name": "InfestedTree01", "category": "other", "x": 1012.1, "z": -3573.4, "px": 2220.7, "py": 1438.1, "has_dungeon": false, "has_important": false}, {"id": 4589, "name": "InfestedTree01", "category": "other", "x": -2429.8, "z": 4519.8, "px": 1633.3, "py": 2819.4, "has_dungeon": false, "has_important": false}, {"id": 4590, "name": "InfestedTree01", "category": "other", "x": -4781.3, "z": -298.8, "px": 1232.0, "py": 1997.0, "has_dungeon": false, "has_important": false}, {"id": 4591, "name": "InfestedTree01", "category": "other", "x": -5619.6, "z": 2048.3, "px": 1088.9, "py": 2397.6, "has_dungeon": false, "has_important": false}, {"id": 4592, "name": "InfestedTree01", "category": "other", "x": -3730.8, "z": 80.9, "px": 1411.3, "py": 2061.8, "has_dungeon": false, "has_important": false}, {"id": 4593, "name": "InfestedTree01", "category": "other", "x": -2880.5, "z": -5257.5, "px": 1556.4, "py": 1150.7, "has_dungeon": false, "has_important": false}, {"id": 4594, "name": "InfestedTree01", "category": "other", "x": -3634.0, "z": -4275.7, "px": 1427.8, "py": 1318.3, "has_dungeon": false, "has_important": false}, {"id": 4595, "name": "InfestedTree01", "category": "other", "x": 2629.3, "z": -495.8, "px": 2496.7, "py": 1963.4, "has_dungeon": false, "has_important": false}, {"id": 4596, "name": "InfestedTree01", "category": "other", "x": -4337.9, "z": 728.7, "px": 1307.7, "py": 2172.4, "has_dungeon": false, "has_important": false}, {"id": 4597, "name": "InfestedTree01", "category": "other", "x": 298.5, "z": 2666.1, "px": 2098.9, "py": 2503.0, "has_dungeon": false, "has_important": false}, {"id": 4598, "name": "InfestedTree01", "category": "other", "x": -2508.7, "z": 5175.2, "px": 1619.8, "py": 2931.2, "has_dungeon": false, "has_important": false}, {"id": 4599, "name": "InfestedTree01", "category": "other", "x": -5270.4, "z": -837.2, "px": 1148.5, "py": 1905.1, "has_dungeon": false, "has_important": false}, {"id": 4600, "name": "InfestedTree01", "category": "other", "x": -67.2, "z": 2743.8, "px": 2036.5, "py": 2516.3, "has_dungeon": false, "has_important": false}, {"id": 4601, "name": "InfestedTree01", "category": "other", "x": 4797.9, "z": -3048.9, "px": 2866.8, "py": 1527.7, "has_dungeon": false, "has_important": false}, {"id": 4602, "name": "InfestedTree01", "category": "other", "x": -2090.5, "z": 4588.5, "px": 1691.2, "py": 2831.1, "has_dungeon": false, "has_important": false}, {"id": 4603, "name": "InfestedTree01", "category": "other", "x": -5332.7, "z": -1690.5, "px": 1137.9, "py": 1759.5, "has_dungeon": false, "has_important": false}, {"id": 4604, "name": "InfestedTree01", "category": "other", "x": 2771.3, "z": -529.4, "px": 2521.0, "py": 1957.6, "has_dungeon": false, "has_important": false}, {"id": 4605, "name": "InfestedTree01", "category": "other", "x": 1830.0, "z": 4438.6, "px": 2360.3, "py": 2805.5, "has_dungeon": false, "has_important": false}, {"id": 4606, "name": "InfestedTree01", "category": "other", "x": 3026.9, "z": -550.4, "px": 2564.6, "py": 1954.1, "has_dungeon": false, "has_important": false}, {"id": 4607, "name": "InfestedTree01", "category": "other", "x": -3982.8, "z": 3660.8, "px": 1368.3, "py": 2672.8, "has_dungeon": false, "has_important": false}, {"id": 4608, "name": "InfestedTree01", "category": "other", "x": -3585.4, "z": 2586.1, "px": 1436.1, "py": 2489.4, "has_dungeon": false, "has_important": false}, {"id": 4609, "name": "InfestedTree01", "category": "other", "x": 5645.7, "z": 1879.1, "px": 3011.5, "py": 2368.7, "has_dungeon": false, "has_important": false}, {"id": 4610, "name": "InfestedTree01", "category": "other", "x": -4538.8, "z": 3598.9, "px": 1273.4, "py": 2662.2, "has_dungeon": false, "has_important": false}, {"id": 4611, "name": "InfestedTree01", "category": "other", "x": -503.7, "z": -3945.3, "px": 1962.0, "py": 1374.7, "has_dungeon": false, "has_important": false}, {"id": 4612, "name": "InfestedTree01", "category": "other", "x": 4793.1, "z": -3030.7, "px": 2866.0, "py": 1530.8, "has_dungeon": false, "has_important": false}, {"id": 4613, "name": "InfestedTree01", "category": "other", "x": 3143.1, "z": -681.3, "px": 2584.4, "py": 1931.7, "has_dungeon": false, "has_important": false}, {"id": 4614, "name": "InfestedTree01", "category": "other", "x": -2557.8, "z": 5272.9, "px": 1611.5, "py": 2947.9, "has_dungeon": false, "has_important": false}, {"id": 4615, "name": "InfestedTree01", "category": "other", "x": 2066.4, "z": -4285.3, "px": 2400.7, "py": 1316.6, "has_dungeon": false, "has_important": false}, {"id": 4616, "name": "InfestedTree01", "category": "other", "x": 1774.3, "z": 4871.3, "px": 2350.8, "py": 2879.4, "has_dungeon": false, "has_important": false}, {"id": 4617, "name": "InfestedTree01", "category": "other", "x": -3076.1, "z": 701.6, "px": 1523.0, "py": 2167.7, "has_dungeon": false, "has_important": false}, {"id": 4618, "name": "InfestedTree01", "category": "other", "x": -1305.0, "z": -5722.8, "px": 1825.3, "py": 1071.3, "has_dungeon": false, "has_important": false}, {"id": 4619, "name": "InfestedTree01", "category": "other", "x": -2615.3, "z": -793.6, "px": 1601.7, "py": 1912.6, "has_dungeon": false, "has_important": false}, {"id": 4620, "name": "InfestedTree01", "category": "other", "x": 3348.8, "z": 1473.1, "px": 2619.5, "py": 2299.4, "has_dungeon": false, "has_important": false}, {"id": 4621, "name": "InfestedTree01", "category": "other", "x": -3656.5, "z": 2823.1, "px": 1424.0, "py": 2529.8, "has_dungeon": false, "has_important": false}, {"id": 4622, "name": "InfestedTree01", "category": "other", "x": 742.8, "z": 2452.4, "px": 2174.8, "py": 2466.5, "has_dungeon": false, "has_important": false}, {"id": 4623, "name": "InfestedTree01", "category": "other", "x": 1205.2, "z": -3538.5, "px": 2253.7, "py": 1444.1, "has_dungeon": false, "has_important": false}, {"id": 4624, "name": "InfestedTree01", "category": "other", "x": 2098.8, "z": 4365.4, "px": 2406.2, "py": 2793.0, "has_dungeon": false, "has_important": false}, {"id": 4625, "name": "InfestedTree01", "category": "other", "x": -2446.3, "z": 4737.1, "px": 1630.5, "py": 2856.5, "has_dungeon": false, "has_important": false}, {"id": 4626, "name": "InfestedTree01", "category": "other", "x": 106.4, "z": 2491.4, "px": 2066.2, "py": 2473.2, "has_dungeon": false, "has_important": false}, {"id": 4627, "name": "InfestedTree01", "category": "other", "x": 2452.6, "z": -3501.9, "px": 2466.6, "py": 1450.3, "has_dungeon": false, "has_important": false}, {"id": 4628, "name": "InfestedTree01", "category": "other", "x": 2625.1, "z": 4023.7, "px": 2496.0, "py": 2734.7, "has_dungeon": false, "has_important": false}, {"id": 4629, "name": "InfestedTree01", "category": "other", "x": -2861.2, "z": -5126.5, "px": 1559.7, "py": 1173.1, "has_dungeon": false, "has_important": false}, {"id": 4630, "name": "InfestedTree01", "category": "other", "x": 4928.7, "z": -685.0, "px": 2889.2, "py": 1931.1, "has_dungeon": false, "has_important": false}, {"id": 4631, "name": "InfestedTree01", "category": "other", "x": 2312.9, "z": -4304.4, "px": 2442.7, "py": 1313.4, "has_dungeon": false, "has_important": false}, {"id": 4632, "name": "InfestedTree01", "category": "other", "x": -5457.7, "z": 2062.0, "px": 1116.6, "py": 2399.9, "has_dungeon": false, "has_important": false}, {"id": 4633, "name": "InfestedTree01", "category": "other", "x": -2553.8, "z": -1068.0, "px": 1612.2, "py": 1865.7, "has_dungeon": false, "has_important": false}, {"id": 4634, "name": "InfestedTree01", "category": "other", "x": 5615.0, "z": 997.2, "px": 3006.3, "py": 2218.2, "has_dungeon": false, "has_important": false}, {"id": 4635, "name": "InfestedTree01", "category": "other", "x": -3780.3, "z": 3161.1, "px": 1402.8, "py": 2587.5, "has_dungeon": false, "has_important": false}, {"id": 4636, "name": "InfestedTree01", "category": "other", "x": -3146.1, "z": 281.7, "px": 1511.1, "py": 2096.1, "has_dungeon": false, "has_important": false}, {"id": 4637, "name": "InfestedTree01", "category": "other", "x": 1678.3, "z": 1446.1, "px": 2334.4, "py": 2294.8, "has_dungeon": false, "has_important": false}, {"id": 4638, "name": "InfestedTree01", "category": "other", "x": -5293.7, "z": -1787.8, "px": 1144.5, "py": 1742.9, "has_dungeon": false, "has_important": false}, {"id": 4639, "name": "InfestedTree01", "category": "other", "x": 2950.6, "z": -435.9, "px": 2551.6, "py": 1973.6, "has_dungeon": false, "has_important": false}, {"id": 4640, "name": "InfestedTree01", "category": "other", "x": 4773.8, "z": -997.7, "px": 2862.7, "py": 1877.7, "has_dungeon": false, "has_important": false}, {"id": 4641, "name": "InfestedTree01", "category": "other", "x": -1711.7, "z": -2863.5, "px": 1755.9, "py": 1559.3, "has_dungeon": false, "has_important": false}, {"id": 4642, "name": "InfestedTree01", "category": "other", "x": -2739.2, "z": 1610.1, "px": 1580.5, "py": 2322.8, "has_dungeon": false, "has_important": false}, {"id": 4643, "name": "InfestedTree01", "category": "other", "x": -2727.1, "z": -1875.9, "px": 1582.6, "py": 1727.8, "has_dungeon": false, "has_important": false}, {"id": 4644, "name": "InfestedTree01", "category": "other", "x": -2842.5, "z": 1646.8, "px": 1562.9, "py": 2329.1, "has_dungeon": false, "has_important": false}, {"id": 4645, "name": "InfestedTree01", "category": "other", "x": -2419.7, "z": 4692.8, "px": 1635.0, "py": 2848.9, "has_dungeon": false, "has_important": false}, {"id": 4646, "name": "InfestedTree01", "category": "other", "x": -5765.1, "z": -512.8, "px": 1064.1, "py": 1960.5, "has_dungeon": false, "has_important": false}, {"id": 4647, "name": "InfestedTree01", "category": "other", "x": -2733.9, "z": -5043.8, "px": 1581.4, "py": 1187.2, "has_dungeon": false, "has_important": false}, {"id": 4648, "name": "InfestedTree01", "category": "other", "x": 2437.5, "z": -832.2, "px": 2464.0, "py": 1906.0, "has_dungeon": false, "has_important": false}, {"id": 4649, "name": "InfestedTree01", "category": "other", "x": 4545.7, "z": -2959.6, "px": 2823.8, "py": 1542.9, "has_dungeon": false, "has_important": false}, {"id": 4650, "name": "InfestedTree01", "category": "other", "x": 2681.5, "z": -3173.7, "px": 2505.6, "py": 1506.4, "has_dungeon": false, "has_important": false}, {"id": 4651, "name": "InfestedTree01", "category": "other", "x": -4186.1, "z": 3840.6, "px": 1333.6, "py": 2703.5, "has_dungeon": false, "has_important": false}, {"id": 4652, "name": "InfestedTree01", "category": "other", "x": -3023.7, "z": 398.6, "px": 1532.0, "py": 2116.0, "has_dungeon": false, "has_important": false}, {"id": 4653, "name": "InfestedTree01", "category": "other", "x": -2777.7, "z": 1945.3, "px": 1573.9, "py": 2380.0, "has_dungeon": false, "has_important": false}, {"id": 4654, "name": "InfestedTree01", "category": "other", "x": -3673.9, "z": 2683.3, "px": 1421.0, "py": 2505.9, "has_dungeon": false, "has_important": false}, {"id": 4655, "name": "InfestedTree01", "category": "other", "x": 2547.0, "z": -5261.2, "px": 2482.7, "py": 1150.1, "has_dungeon": false, "has_important": false}, {"id": 4656, "name": "InfestedTree01", "category": "other", "x": -5862.6, "z": -825.2, "px": 1047.4, "py": 1907.2, "has_dungeon": false, "has_important": false}, {"id": 4657, "name": "InfestedTree01", "category": "other", "x": -4517.9, "z": 3310.3, "px": 1276.9, "py": 2613.0, "has_dungeon": false, "has_important": false}, {"id": 4658, "name": "InfestedTree01", "category": "other", "x": -2745.9, "z": 2041.1, "px": 1579.4, "py": 2396.3, "has_dungeon": false, "has_important": false}, {"id": 4659, "name": "InfestedTree01", "category": "other", "x": -5325.9, "z": 1348.7, "px": 1139.0, "py": 2278.2, "has_dungeon": false, "has_important": false}, {"id": 4660, "name": "InfestedTree01", "category": "other", "x": -5433.6, "z": 1638.2, "px": 1120.7, "py": 2327.6, "has_dungeon": false, "has_important": false}, {"id": 4661, "name": "InfestedTree01", "category": "other", "x": -454.6, "z": -4151.8, "px": 1970.4, "py": 1339.4, "has_dungeon": false, "has_important": false}, {"id": 4662, "name": "InfestedTree01", "category": "other", "x": -4333.0, "z": 1301.6, "px": 1308.5, "py": 2270.1, "has_dungeon": false, "has_important": false}, {"id": 4663, "name": "InfestedTree01", "category": "other", "x": -2734.7, "z": -1525.2, "px": 1581.3, "py": 1787.7, "has_dungeon": false, "has_important": false}, {"id": 4664, "name": "InfestedTree01", "category": "other", "x": 3643.0, "z": 4488.9, "px": 2669.7, "py": 2814.1, "has_dungeon": false, "has_important": false}, {"id": 4665, "name": "InfestedTree01", "category": "other", "x": -2103.1, "z": 1787.8, "px": 1689.1, "py": 2353.1, "has_dungeon": false, "has_important": false}, {"id": 4666, "name": "InfestedTree01", "category": "other", "x": -1875.7, "z": -2919.6, "px": 1727.9, "py": 1549.7, "has_dungeon": false, "has_important": false}, {"id": 4667, "name": "InfestedTree01", "category": "other", "x": -5881.4, "z": -602.4, "px": 1044.2, "py": 1945.2, "has_dungeon": false, "has_important": false}, {"id": 4668, "name": "InfestedTree01", "category": "other", "x": -2355.0, "z": 4270.7, "px": 1646.1, "py": 2776.9, "has_dungeon": false, "has_important": false}, {"id": 4669, "name": "InfestedTree01", "category": "other", "x": -4312.0, "z": 1137.9, "px": 1312.1, "py": 2242.2, "has_dungeon": false, "has_important": false}, {"id": 4670, "name": "InfestedTree01", "category": "other", "x": -2771.4, "z": -5256.0, "px": 1575.0, "py": 1151.0, "has_dungeon": false, "has_important": false}, {"id": 4671, "name": "InfestedTree01", "category": "other", "x": -5577.1, "z": 1870.6, "px": 1096.2, "py": 2367.2, "has_dungeon": false, "has_important": false}, {"id": 4672, "name": "InfestedTree01", "category": "other", "x": -2540.6, "z": -362.7, "px": 1614.4, "py": 1986.1, "has_dungeon": false, "has_important": false}, {"id": 4673, "name": "InfestedTree01", "category": "other", "x": -2373.8, "z": 2217.1, "px": 1642.9, "py": 2426.4, "has_dungeon": false, "has_important": false}, {"id": 4674, "name": "InfestedTree01", "category": "other", "x": -2474.4, "z": -1475.7, "px": 1625.7, "py": 1796.1, "has_dungeon": false, "has_important": false}, {"id": 4675, "name": "InfestedTree01", "category": "other", "x": -425.9, "z": 2725.1, "px": 1975.3, "py": 2513.1, "has_dungeon": false, "has_important": false}, {"id": 4676, "name": "InfestedTree01", "category": "other", "x": -2417.6, "z": 4629.3, "px": 1635.4, "py": 2838.1, "has_dungeon": false, "has_important": false}, {"id": 4677, "name": "InfestedTree01", "category": "other", "x": -2482.8, "z": 2189.0, "px": 1624.3, "py": 2421.6, "has_dungeon": false, "has_important": false}, {"id": 4678, "name": "InfestedTree01", "category": "other", "x": -602.2, "z": -3758.2, "px": 1945.2, "py": 1406.6, "has_dungeon": false, "has_important": false}, {"id": 4679, "name": "InfestedTree01", "category": "other", "x": -105.3, "z": 2440.0, "px": 2030.0, "py": 2464.4, "has_dungeon": false, "has_important": false}, {"id": 4680, "name": "InfestedTree01", "category": "other", "x": -3814.2, "z": -4365.6, "px": 1397.0, "py": 1302.9, "has_dungeon": false, "has_important": false}, {"id": 4681, "name": "InfestedTree01", "category": "other", "x": -5393.9, "z": -846.4, "px": 1127.4, "py": 1903.5, "has_dungeon": false, "has_important": false}, {"id": 4682, "name": "InfestedTree01", "category": "other", "x": 2199.1, "z": -3028.2, "px": 2423.3, "py": 1531.2, "has_dungeon": false, "has_important": false}, {"id": 4683, "name": "InfestedTree01", "category": "other", "x": -1141.2, "z": -5803.1, "px": 1853.2, "py": 1057.6, "has_dungeon": false, "has_important": false}, {"id": 4684, "name": "InfestedTree01", "category": "other", "x": -3050.0, "z": 361.8, "px": 1527.5, "py": 2109.7, "has_dungeon": false, "has_important": false}, {"id": 4685, "name": "InfestedTree01", "category": "other", "x": 2454.3, "z": 4535.9, "px": 2466.9, "py": 2822.1, "has_dungeon": false, "has_important": false}, {"id": 4686, "name": "InfestedTree01", "category": "other", "x": -3689.8, "z": -4008.7, "px": 1418.3, "py": 1363.8, "has_dungeon": false, "has_important": false}, {"id": 4687, "name": "InfestedTree01", "category": "other", "x": 3437.3, "z": 1418.6, "px": 2634.6, "py": 2290.1, "has_dungeon": false, "has_important": false}, {"id": 4688, "name": "InfestedTree01", "category": "other", "x": 5050.7, "z": -208.8, "px": 2910.0, "py": 2012.4, "has_dungeon": false, "has_important": false}, {"id": 4689, "name": "InfestedTree01", "category": "other", "x": -2135.5, "z": 4208.5, "px": 1683.5, "py": 2766.3, "has_dungeon": false, "has_important": false}, {"id": 4690, "name": "InfestedTree01", "category": "other", "x": 2283.2, "z": -3078.0, "px": 2437.7, "py": 1522.7, "has_dungeon": false, "has_important": false}, {"id": 4691, "name": "InfestedTree01", "category": "other", "x": 858.2, "z": -3776.8, "px": 2194.5, "py": 1403.4, "has_dungeon": false, "has_important": false}, {"id": 4692, "name": "InfestedTree01", "category": "other", "x": -1689.3, "z": 4497.7, "px": 1759.7, "py": 2815.6, "has_dungeon": false, "has_important": false}, {"id": 4693, "name": "InfestedTree01", "category": "other", "x": 2288.9, "z": -5395.4, "px": 2438.6, "py": 1127.2, "has_dungeon": false, "has_important": false}, {"id": 4694, "name": "InfestedTree01", "category": "other", "x": 1731.1, "z": 4906.6, "px": 2343.4, "py": 2885.4, "has_dungeon": false, "has_important": false}, {"id": 4695, "name": "InfestedTree01", "category": "other", "x": -2371.6, "z": -937.7, "px": 1643.2, "py": 1888.0, "has_dungeon": false, "has_important": false}, {"id": 4696, "name": "InfestedTree01", "category": "other", "x": -2443.7, "z": 2253.2, "px": 1630.9, "py": 2432.5, "has_dungeon": false, "has_important": false}, {"id": 4697, "name": "InfestedTree01", "category": "other", "x": 3063.3, "z": -819.8, "px": 2570.8, "py": 1908.1, "has_dungeon": false, "has_important": false}, {"id": 4698, "name": "InfestedTree01", "category": "other", "x": -3411.8, "z": 151.3, "px": 1465.7, "py": 2073.8, "has_dungeon": false, "has_important": false}, {"id": 4699, "name": "InfestedTree01", "category": "other", "x": 4821.1, "z": 2384.3, "px": 2870.8, "py": 2454.9, "has_dungeon": false, "has_important": false}, {"id": 4700, "name": "InfestedTree01", "category": "other", "x": 1792.5, "z": 4757.1, "px": 2353.9, "py": 2859.9, "has_dungeon": false, "has_important": false}, {"id": 4701, "name": "InfestedTree01", "category": "other", "x": 2584.5, "z": 3461.6, "px": 2489.1, "py": 2638.8, "has_dungeon": false, "has_important": false}, {"id": 4702, "name": "InfestedTree01", "category": "other", "x": 3786.0, "z": 814.9, "px": 2694.1, "py": 2187.1, "has_dungeon": false, "has_important": false}, {"id": 4703, "name": "InfestedTree01", "category": "other", "x": 3769.4, "z": 883.5, "px": 2691.3, "py": 2198.8, "has_dungeon": false, "has_important": false}, {"id": 4704, "name": "InfestedTree01", "category": "other", "x": 2386.7, "z": -1216.3, "px": 2455.3, "py": 1840.4, "has_dungeon": false, "has_important": false}, {"id": 4705, "name": "InfestedTree01", "category": "other", "x": -4181.8, "z": 1242.6, "px": 1334.3, "py": 2260.1, "has_dungeon": false, "has_important": false}, {"id": 4706, "name": "InfestedTree01", "category": "other", "x": 2516.2, "z": -661.0, "px": 2477.4, "py": 1935.2, "has_dungeon": false, "has_important": false}, {"id": 4707, "name": "InfestedTree01", "category": "other", "x": 4248.7, "z": 1997.6, "px": 2773.1, "py": 2388.9, "has_dungeon": false, "has_important": false}, {"id": 4708, "name": "InfestedTree01", "category": "other", "x": -4926.7, "z": 1461.5, "px": 1207.2, "py": 2297.4, "has_dungeon": false, "has_important": false}, {"id": 4709, "name": "InfestedTree01", "category": "other", "x": 5392.1, "z": 2302.5, "px": 2968.3, "py": 2441.0, "has_dungeon": false, "has_important": false}, {"id": 4710, "name": "InfestedTree01", "category": "other", "x": 4675.3, "z": -421.5, "px": 2845.9, "py": 1976.1, "has_dungeon": false, "has_important": false}, {"id": 4711, "name": "InfestedTree01", "category": "other", "x": 1560.7, "z": 2424.6, "px": 2314.4, "py": 2461.8, "has_dungeon": false, "has_important": false}, {"id": 4712, "name": "InfestedTree01", "category": "other", "x": 4880.4, "z": -882.4, "px": 2880.9, "py": 1897.4, "has_dungeon": false, "has_important": false}, {"id": 4713, "name": "InfestedTree01", "category": "other", "x": -3458.8, "z": 146.7, "px": 1457.7, "py": 2073.0, "has_dungeon": false, "has_important": false}, {"id": 4714, "name": "InfestedTree01", "category": "other", "x": -4432.5, "z": 638.4, "px": 1291.5, "py": 2157.0, "has_dungeon": false, "has_important": false}, {"id": 4715, "name": "InfestedTree01", "category": "other", "x": -5827.2, "z": -569.0, "px": 1053.5, "py": 1950.9, "has_dungeon": false, "has_important": false}, {"id": 4716, "name": "InfestedTree01", "category": "other", "x": 4332.3, "z": 2028.6, "px": 2787.4, "py": 2394.2, "has_dungeon": false, "has_important": false}, {"id": 4717, "name": "InfestedTree01", "category": "other", "x": 4972.2, "z": 2422.2, "px": 2896.6, "py": 2461.4, "has_dungeon": false, "has_important": false}, {"id": 4718, "name": "InfestedTree01", "category": "other", "x": -1200.5, "z": -5676.2, "px": 1843.1, "py": 1079.3, "has_dungeon": false, "has_important": false}, {"id": 4719, "name": "InfestedTree01", "category": "other", "x": -2856.0, "z": -1793.7, "px": 1560.6, "py": 1741.9, "has_dungeon": false, "has_important": false}, {"id": 4720, "name": "InfestedTree01", "category": "other", "x": 4198.8, "z": 279.6, "px": 2764.6, "py": 2095.7, "has_dungeon": false, "has_important": false}, {"id": 4721, "name": "InfestedTree01", "category": "other", "x": -2842.0, "z": -1813.8, "px": 1563.0, "py": 1738.4, "has_dungeon": false, "has_important": false}, {"id": 4722, "name": "InfestedTree01", "category": "other", "x": -2324.7, "z": 1656.9, "px": 1651.3, "py": 2330.8, "has_dungeon": false, "has_important": false}, {"id": 4723, "name": "InfestedTree01", "category": "other", "x": 2242.8, "z": -5492.0, "px": 2430.8, "py": 1110.7, "has_dungeon": false, "has_important": false}, {"id": 4724, "name": "InfestedTree01", "category": "other", "x": -5354.0, "z": -1852.7, "px": 1134.3, "py": 1731.8, "has_dungeon": false, "has_important": false}, {"id": 4725, "name": "InfestedTree01", "category": "other", "x": 3828.6, "z": 4329.0, "px": 2701.4, "py": 2786.8, "has_dungeon": false, "has_important": false}, {"id": 4726, "name": "InfestedTree01", "category": "other", "x": 2835.3, "z": -315.5, "px": 2531.9, "py": 1994.2, "has_dungeon": false, "has_important": false}, {"id": 4727, "name": "InfestedTree01", "category": "other", "x": 3952.9, "z": 4504.0, "px": 2722.6, "py": 2816.7, "has_dungeon": false, "has_important": false}, {"id": 4728, "name": "InfestedTree01", "category": "other", "x": 2183.8, "z": -4249.7, "px": 2420.7, "py": 1322.7, "has_dungeon": false, "has_important": false}, {"id": 4729, "name": "InfestedTree01", "category": "other", "x": -1847.7, "z": 4378.4, "px": 1732.7, "py": 2795.2, "has_dungeon": false, "has_important": false}, {"id": 4730, "name": "InfestedTree01", "category": "other", "x": 2320.8, "z": -1046.4, "px": 2444.1, "py": 1869.4, "has_dungeon": false, "has_important": false}, {"id": 4731, "name": "InfestedTree01", "category": "other", "x": 2507.5, "z": -696.9, "px": 2475.9, "py": 1929.1, "has_dungeon": false, "has_important": false}, {"id": 4732, "name": "InfestedTree01", "category": "other", "x": -5710.0, "z": -1036.4, "px": 1073.5, "py": 1871.1, "has_dungeon": false, "has_important": false}, {"id": 4733, "name": "InfestedTree01", "category": "other", "x": 4051.7, "z": 462.0, "px": 2739.5, "py": 2126.8, "has_dungeon": false, "has_important": false}, {"id": 4734, "name": "InfestedTree01", "category": "other", "x": 1945.4, "z": 1645.1, "px": 2380.0, "py": 2328.8, "has_dungeon": false, "has_important": false}, {"id": 4735, "name": "InfestedTree01", "category": "other", "x": -2358.8, "z": 4226.8, "px": 1645.4, "py": 2769.4, "has_dungeon": false, "has_important": false}, {"id": 4736, "name": "InfestedTree01", "category": "other", "x": 3032.3, "z": -4262.0, "px": 2565.5, "py": 1320.6, "has_dungeon": false, "has_important": false}, {"id": 4737, "name": "InfestedTree01", "category": "other", "x": -3540.9, "z": 88.5, "px": 1443.7, "py": 2063.1, "has_dungeon": false, "has_important": false}, {"id": 4738, "name": "InfestedTree01", "category": "other", "x": -2028.8, "z": 4439.8, "px": 1701.8, "py": 2805.7, "has_dungeon": false, "has_important": false}, {"id": 4739, "name": "InfestedTree01", "category": "other", "x": 3840.7, "z": 166.8, "px": 2703.5, "py": 2076.5, "has_dungeon": false, "has_important": false}, {"id": 4740, "name": "InfestedTree01", "category": "other", "x": 1227.8, "z": -3461.5, "px": 2257.5, "py": 1457.2, "has_dungeon": false, "has_important": false}, {"id": 4741, "name": "InfestedTree01", "category": "other", "x": 2666.1, "z": -2417.3, "px": 2503.0, "py": 1635.4, "has_dungeon": false, "has_important": false}, {"id": 4742, "name": "InfestedTree01", "category": "other", "x": 2825.6, "z": -5290.4, "px": 2530.2, "py": 1145.1, "has_dungeon": false, "has_important": false}, {"id": 4743, "name": "InfestedTree01", "category": "other", "x": -3570.5, "z": 3315.7, "px": 1438.6, "py": 2613.9, "has_dungeon": false, "has_important": false}, {"id": 4744, "name": "InfestedTree01", "category": "other", "x": 4049.3, "z": 326.8, "px": 2739.1, "py": 2103.8, "has_dungeon": false, "has_important": false}, {"id": 4745, "name": "InfestedTree01", "category": "other", "x": 3219.3, "z": -747.9, "px": 2597.4, "py": 1920.4, "has_dungeon": false, "has_important": false}, {"id": 4746, "name": "InfestedTree01", "category": "other", "x": 3692.9, "z": 1097.0, "px": 2678.3, "py": 2235.2, "has_dungeon": false, "has_important": false}, {"id": 4747, "name": "InfestedTree01", "category": "other", "x": -2512.6, "z": 4652.4, "px": 1619.2, "py": 2842.0, "has_dungeon": false, "has_important": false}, {"id": 4748, "name": "InfestedTree01", "category": "other", "x": 3242.8, "z": -753.1, "px": 2601.4, "py": 1919.5, "has_dungeon": false, "has_important": false}, {"id": 4749, "name": "InfestedTree01", "category": "other", "x": -4523.2, "z": 242.0, "px": 1276.0, "py": 2089.3, "has_dungeon": false, "has_important": false}, {"id": 4750, "name": "InfestedTree01", "category": "other", "x": 2225.2, "z": 399.1, "px": 2427.8, "py": 2116.1, "has_dungeon": false, "has_important": false}, {"id": 4751, "name": "InfestedTree01", "category": "other", "x": -2693.8, "z": -1841.0, "px": 1588.3, "py": 1733.8, "has_dungeon": false, "has_important": false}, {"id": 4752, "name": "InfestedTree01", "category": "other", "x": 5351.7, "z": 2049.2, "px": 2961.4, "py": 2397.7, "has_dungeon": false, "has_important": false}, {"id": 4753, "name": "InfestedTree01", "category": "other", "x": 2937.4, "z": -5198.1, "px": 2549.3, "py": 1160.9, "has_dungeon": false, "has_important": false}, {"id": 4754, "name": "InfestedTree01", "category": "other", "x": 5396.2, "z": 2251.2, "px": 2969.0, "py": 2432.2, "has_dungeon": false, "has_important": false}, {"id": 4755, "name": "InfestedTree01", "category": "other", "x": -2539.2, "z": 4756.8, "px": 1614.6, "py": 2859.8, "has_dungeon": false, "has_important": false}, {"id": 4756, "name": "InfestedTree01", "category": "other", "x": 61.8, "z": 2725.6, "px": 2058.5, "py": 2513.2, "has_dungeon": false, "has_important": false}, {"id": 4757, "name": "InfestedTree01", "category": "other", "x": -2254.0, "z": -966.3, "px": 1663.3, "py": 1883.1, "has_dungeon": false, "has_important": false}, {"id": 4758, "name": "InfestedTree01", "category": "other", "x": 2380.2, "z": 4542.0, "px": 2454.2, "py": 2823.2, "has_dungeon": false, "has_important": false}, {"id": 4759, "name": "InfestedTree01", "category": "other", "x": -473.6, "z": -3649.0, "px": 1967.2, "py": 1425.2, "has_dungeon": false, "has_important": false}, {"id": 4760, "name": "InfestedTree01", "category": "other", "x": -5136.5, "z": -1749.6, "px": 1171.4, "py": 1749.4, "has_dungeon": false, "has_important": false}, {"id": 4761, "name": "InfestedTree01", "category": "other", "x": -710.9, "z": -4077.4, "px": 1926.7, "py": 1352.1, "has_dungeon": false, "has_important": false}, {"id": 4762, "name": "InfestedTree01", "category": "other", "x": 4648.9, "z": -3026.4, "px": 2841.4, "py": 1531.5, "has_dungeon": false, "has_important": false}, {"id": 4763, "name": "InfestedTree01", "category": "other", "x": 2742.4, "z": -255.8, "px": 2516.0, "py": 2004.3, "has_dungeon": false, "has_important": false}, {"id": 4764, "name": "InfestedTree01", "category": "other", "x": 5324.5, "z": 1083.1, "px": 2956.7, "py": 2232.8, "has_dungeon": false, "has_important": false}, {"id": 4765, "name": "InfestedTree01", "category": "other", "x": -3540.8, "z": 3069.8, "px": 1443.7, "py": 2571.9, "has_dungeon": false, "has_important": false}, {"id": 4766, "name": "InfestedTree01", "category": "other", "x": 1515.7, "z": -5293.1, "px": 2306.7, "py": 1144.6, "has_dungeon": false, "has_important": false}, {"id": 4767, "name": "InfestedTree01", "category": "other", "x": -4517.1, "z": 3669.8, "px": 1277.1, "py": 2674.3, "has_dungeon": false, "has_important": false}, {"id": 4768, "name": "InfestedTree01", "category": "other", "x": -2968.7, "z": 743.9, "px": 1541.3, "py": 2175.0, "has_dungeon": false, "has_important": false}, {"id": 4769, "name": "InfestedTree01", "category": "other", "x": 3093.8, "z": -4342.0, "px": 2576.0, "py": 1307.0, "has_dungeon": false, "has_important": false}, {"id": 4770, "name": "InfestedTree01", "category": "other", "x": -3813.9, "z": -4209.6, "px": 1397.1, "py": 1329.6, "has_dungeon": false, "has_important": false}, {"id": 4771, "name": "InfestedTree01", "category": "other", "x": 2379.3, "z": 43.8, "px": 2454.1, "py": 2055.5, "has_dungeon": false, "has_important": false}, {"id": 4772, "name": "InfestedTree01", "category": "other", "x": 878.1, "z": 4200.8, "px": 2197.9, "py": 2764.9, "has_dungeon": false, "has_important": false}, {"id": 4773, "name": "InfestedTree01", "category": "other", "x": 909.2, "z": -3768.4, "px": 2203.2, "py": 1404.9, "has_dungeon": false, "has_important": false}, {"id": 4774, "name": "InfestedTree01", "category": "other", "x": 1864.8, "z": 4837.5, "px": 2366.3, "py": 2873.6, "has_dungeon": false, "has_important": false}, {"id": 4775, "name": "InfestedTree01", "category": "other", "x": 2583.5, "z": -177.5, "px": 2488.9, "py": 2017.7, "has_dungeon": false, "has_important": false}, {"id": 4776, "name": "InfestedTree01", "category": "other", "x": 2505.7, "z": 3540.3, "px": 2475.6, "py": 2652.2, "has_dungeon": false, "has_important": false}, {"id": 4777, "name": "InfestedTree01", "category": "other", "x": 683.6, "z": -2155.9, "px": 2164.7, "py": 1680.1, "has_dungeon": false, "has_important": false}, {"id": 4778, "name": "InfestedTree01", "category": "other", "x": -919.5, "z": -5585.4, "px": 1891.1, "py": 1094.8, "has_dungeon": false, "has_important": false}, {"id": 4779, "name": "InfestedTree01", "category": "other", "x": 2091.1, "z": 1540.7, "px": 2404.9, "py": 2310.9, "has_dungeon": false, "has_important": false}, {"id": 4780, "name": "InfestedTree01", "category": "other", "x": 3465.6, "z": -4426.2, "px": 2639.5, "py": 1292.6, "has_dungeon": false, "has_important": false}, {"id": 4781, "name": "InfestedTree01", "category": "other", "x": -4818.7, "z": -680.9, "px": 1225.6, "py": 1931.8, "has_dungeon": false, "has_important": false}, {"id": 4782, "name": "InfestedTree01", "category": "other", "x": 3778.2, "z": 961.6, "px": 2692.8, "py": 2212.1, "has_dungeon": false, "has_important": false}, {"id": 4783, "name": "InfestedTree01", "category": "other", "x": -2452.5, "z": 5127.3, "px": 1629.4, "py": 2923.1, "has_dungeon": false, "has_important": false}, {"id": 4784, "name": "InfestedTree01", "category": "other", "x": -2136.4, "z": -4235.0, "px": 1683.4, "py": 1325.2, "has_dungeon": false, "has_important": false}, {"id": 4785, "name": "InfestedTree01", "category": "other", "x": -154.9, "z": 2828.5, "px": 2021.6, "py": 2530.7, "has_dungeon": false, "has_important": false}, {"id": 4786, "name": "InfestedTree01", "category": "other", "x": 2841.5, "z": -5196.3, "px": 2532.9, "py": 1161.2, "has_dungeon": false, "has_important": false}, {"id": 4787, "name": "InfestedTree01", "category": "other", "x": 2949.8, "z": 3578.5, "px": 2551.4, "py": 2658.7, "has_dungeon": false, "has_important": false}, {"id": 4788, "name": "InfestedTree01", "category": "other", "x": -1114.9, "z": 5137.6, "px": 1857.7, "py": 2924.8, "has_dungeon": false, "has_important": false}, {"id": 4789, "name": "InfestedTree01", "category": "other", "x": -5582.2, "z": 2089.0, "px": 1095.3, "py": 2404.5, "has_dungeon": false, "has_important": false}, {"id": 4790, "name": "InfestedTree01", "category": "other", "x": -602.7, "z": -4166.0, "px": 1945.1, "py": 1337.0, "has_dungeon": false, "has_important": false}, {"id": 4791, "name": "InfestedTree01", "category": "other", "x": 4422.0, "z": -3238.6, "px": 2802.7, "py": 1495.3, "has_dungeon": false, "has_important": false}, {"id": 4792, "name": "InfestedTree01", "category": "other", "x": 1360.8, "z": 2436.6, "px": 2280.2, "py": 2463.8, "has_dungeon": false, "has_important": false}, {"id": 4793, "name": "InfestedTree01", "category": "other", "x": 2617.4, "z": 3411.5, "px": 2494.7, "py": 2630.2, "has_dungeon": false, "has_important": false}, {"id": 4794, "name": "InfestedTree01", "category": "other", "x": -4425.0, "z": 3301.5, "px": 1292.8, "py": 2611.5, "has_dungeon": false, "has_important": false}, {"id": 4795, "name": "InfestedTree01", "category": "other", "x": -3021.6, "z": 333.8, "px": 1532.3, "py": 2105.0, "has_dungeon": false, "has_important": false}, {"id": 4796, "name": "InfestedTree01", "category": "other", "x": 2603.6, "z": -947.8, "px": 2492.3, "py": 1886.2, "has_dungeon": false, "has_important": false}, {"id": 4797, "name": "InfestedTree01", "category": "other", "x": -335.7, "z": 2442.5, "px": 1990.7, "py": 2464.9, "has_dungeon": false, "has_important": false}, {"id": 4798, "name": "InfestedTree01", "category": "other", "x": 4291.5, "z": 2173.7, "px": 2780.4, "py": 2419.0, "has_dungeon": false, "has_important": false}, {"id": 4799, "name": "InfestedTree01", "category": "other", "x": 2118.6, "z": -1097.2, "px": 2409.6, "py": 1860.7, "has_dungeon": false, "has_important": false}, {"id": 4800, "name": "InfestedTree01", "category": "other", "x": -4344.5, "z": 980.4, "px": 1306.5, "py": 2215.3, "has_dungeon": false, "has_important": false}, {"id": 4801, "name": "InfestedTree01", "category": "other", "x": 1745.2, "z": 4759.1, "px": 2345.8, "py": 2860.2, "has_dungeon": false, "has_important": false}, {"id": 4802, "name": "InfestedTree01", "category": "other", "x": 3250.0, "z": -4245.4, "px": 2602.7, "py": 1323.5, "has_dungeon": false, "has_important": false}, {"id": 4803, "name": "InfestedTree01", "category": "other", "x": 1846.6, "z": 1409.6, "px": 2363.2, "py": 2288.6, "has_dungeon": false, "has_important": false}, {"id": 4804, "name": "InfestedTree01", "category": "other", "x": -5935.3, "z": -597.1, "px": 1035.0, "py": 1946.1, "has_dungeon": false, "has_important": false}, {"id": 4805, "name": "InfestedTree01", "category": "other", "x": -4826.5, "z": -787.8, "px": 1224.3, "py": 1913.5, "has_dungeon": false, "has_important": false}, {"id": 4806, "name": "InfestedTree01", "category": "other", "x": -4458.7, "z": 3541.4, "px": 1287.0, "py": 2652.4, "has_dungeon": false, "has_important": false}, {"id": 4807, "name": "InfestedTree01", "category": "other", "x": 3448.3, "z": 1061.4, "px": 2636.5, "py": 2229.1, "has_dungeon": false, "has_important": false}, {"id": 4808, "name": "InfestedTree01", "category": "other", "x": 5120.1, "z": -265.9, "px": 2921.8, "py": 2002.6, "has_dungeon": false, "has_important": false}, {"id": 4809, "name": "InfestedTree01", "category": "other", "x": 5636.8, "z": 1407.2, "px": 3010.0, "py": 2288.2, "has_dungeon": false, "has_important": false}, {"id": 4810, "name": "InfestedTree01", "category": "other", "x": -5124.0, "z": -833.4, "px": 1173.5, "py": 1905.8, "has_dungeon": false, "has_important": false}, {"id": 4811, "name": "InfestedTree01", "category": "other", "x": 1818.5, "z": 4441.1, "px": 2358.4, "py": 2805.9, "has_dungeon": false, "has_important": false}, {"id": 4812, "name": "InfestedTree01", "category": "other", "x": 5512.0, "z": 1449.5, "px": 2988.7, "py": 2295.4, "has_dungeon": false, "has_important": false}, {"id": 4813, "name": "InfestedTree01", "category": "other", "x": -4461.1, "z": -616.7, "px": 1286.6, "py": 1942.7, "has_dungeon": false, "has_important": false}, {"id": 4814, "name": "InfestedTree01", "category": "other", "x": 2240.7, "z": -1126.3, "px": 2430.4, "py": 1855.8, "has_dungeon": false, "has_important": false}, {"id": 4815, "name": "InfestedTree01", "category": "other", "x": 3508.4, "z": 1138.5, "px": 2646.8, "py": 2242.3, "has_dungeon": false, "has_important": false}, {"id": 4816, "name": "InfestedTree01", "category": "other", "x": 4333.7, "z": 1897.4, "px": 2787.6, "py": 2371.8, "has_dungeon": false, "has_important": false}, {"id": 4817, "name": "InfestedTree01", "category": "other", "x": -2412.4, "z": 5030.2, "px": 1636.3, "py": 2906.5, "has_dungeon": false, "has_important": false}, {"id": 4818, "name": "InfestedTree01", "category": "other", "x": -4888.6, "z": -3415.7, "px": 1213.7, "py": 1465.1, "has_dungeon": false, "has_important": false}, {"id": 4819, "name": "InfestedTree01", "category": "other", "x": -1776.6, "z": 4360.3, "px": 1744.8, "py": 2792.2, "has_dungeon": false, "has_important": false}, {"id": 4820, "name": "InfestedTree01", "category": "other", "x": -2454.1, "z": -838.9, "px": 1629.2, "py": 1904.8, "has_dungeon": false, "has_important": false}, {"id": 4821, "name": "InfestedTree01", "category": "other", "x": 1938.9, "z": 1579.8, "px": 2378.9, "py": 2317.6, "has_dungeon": false, "has_important": false}, {"id": 4822, "name": "InfestedTree01", "category": "other", "x": -3706.8, "z": 2732.0, "px": 1415.4, "py": 2514.3, "has_dungeon": false, "has_important": false}, {"id": 4823, "name": "InfestedTree01", "category": "other", "x": 1547.0, "z": 1893.3, "px": 2312.0, "py": 2371.1, "has_dungeon": false, "has_important": false}, {"id": 4824, "name": "InfestedTree01", "category": "other", "x": -1035.0, "z": -3838.0, "px": 1871.4, "py": 1393.0, "has_dungeon": false, "has_important": false}, {"id": 4825, "name": "InfestedTree01", "category": "other", "x": -3600.3, "z": 3089.6, "px": 1433.5, "py": 2575.3, "has_dungeon": false, "has_important": false}, {"id": 4826, "name": "InfestedTree01", "category": "other", "x": 2452.0, "z": 3862.2, "px": 2466.5, "py": 2707.1, "has_dungeon": false, "has_important": false}, {"id": 4827, "name": "InfestedTree01", "category": "other", "x": -2868.8, "z": 1928.0, "px": 1558.4, "py": 2377.0, "has_dungeon": false, "has_important": false}, {"id": 4828, "name": "InfestedTree01", "category": "other", "x": 3411.1, "z": 1432.0, "px": 2630.2, "py": 2292.4, "has_dungeon": false, "has_important": false}, {"id": 4829, "name": "InfestedTree01", "category": "other", "x": -5232.6, "z": 1798.0, "px": 1155.0, "py": 2354.9, "has_dungeon": false, "has_important": false}, {"id": 4830, "name": "InfestedTree01", "category": "other", "x": -473.2, "z": -3898.3, "px": 1967.2, "py": 1382.7, "has_dungeon": false, "has_important": false}, {"id": 4831, "name": "InfestedTree01", "category": "other", "x": 3379.8, "z": -4224.2, "px": 2624.8, "py": 1327.1, "has_dungeon": false, "has_important": false}, {"id": 4832, "name": "InfestedTree01", "category": "other", "x": 2391.3, "z": -3328.0, "px": 2456.1, "py": 1480.0, "has_dungeon": false, "has_important": false}, {"id": 4833, "name": "InfestedTree01", "category": "other", "x": 4807.5, "z": -3116.0, "px": 2868.5, "py": 1516.2, "has_dungeon": false, "has_important": false}, {"id": 4834, "name": "InfestedTree01", "category": "other", "x": 241.9, "z": 2661.8, "px": 2089.3, "py": 2502.3, "has_dungeon": false, "has_important": false}, {"id": 4835, "name": "InfestedTree01", "category": "other", "x": -3583.8, "z": -4204.6, "px": 1436.4, "py": 1330.4, "has_dungeon": false, "has_important": false}, {"id": 4836, "name": "InfestedTree01", "category": "other", "x": -2814.1, "z": -1608.2, "px": 1567.7, "py": 1773.5, "has_dungeon": false, "has_important": false}, {"id": 4837, "name": "InfestedTree01", "category": "other", "x": 3435.6, "z": -4521.5, "px": 2634.3, "py": 1276.3, "has_dungeon": false, "has_important": false}, {"id": 4838, "name": "InfestedTree01", "category": "other", "x": 703.4, "z": 2730.4, "px": 2168.0, "py": 2514.0, "has_dungeon": false, "has_important": false}, {"id": 4839, "name": "InfestedTree01", "category": "other", "x": 2668.8, "z": -629.5, "px": 2503.5, "py": 1940.6, "has_dungeon": false, "has_important": false}, {"id": 4840, "name": "InfestedTree01", "category": "other", "x": 4550.5, "z": -618.4, "px": 2824.6, "py": 1942.5, "has_dungeon": false, "has_important": false}, {"id": 4841, "name": "InfestedTree01", "category": "other", "x": -5130.9, "z": -1790.1, "px": 1172.3, "py": 1742.5, "has_dungeon": false, "has_important": false}, {"id": 4842, "name": "InfestedTree01", "category": "other", "x": -2941.5, "z": 383.9, "px": 1546.0, "py": 2113.5, "has_dungeon": false, "has_important": false}, {"id": 4843, "name": "InfestedTree01", "category": "other", "x": 2260.0, "z": -5462.6, "px": 2433.7, "py": 1115.7, "has_dungeon": false, "has_important": false}, {"id": 4844, "name": "InfestedTree01", "category": "other", "x": 2253.6, "z": -5356.7, "px": 2432.6, "py": 1133.8, "has_dungeon": false, "has_important": false}, {"id": 4845, "name": "InfestedTree01", "category": "other", "x": 2201.3, "z": -1213.3, "px": 2423.7, "py": 1840.9, "has_dungeon": false, "has_important": false}, {"id": 4846, "name": "InfestedTree01", "category": "other", "x": 4755.3, "z": -405.8, "px": 2859.6, "py": 1978.7, "has_dungeon": false, "has_important": false}, {"id": 4847, "name": "InfestedTree01", "category": "other", "x": 1177.8, "z": -3466.3, "px": 2249.0, "py": 1456.4, "has_dungeon": false, "has_important": false}, {"id": 4848, "name": "InfestedTree01", "category": "other", "x": -4461.0, "z": 1102.9, "px": 1286.7, "py": 2236.2, "has_dungeon": false, "has_important": false}, {"id": 4849, "name": "InfestedTree01", "category": "other", "x": 2536.9, "z": 167.2, "px": 2481.0, "py": 2076.5, "has_dungeon": false, "has_important": false}, {"id": 4850, "name": "InfestedTree01", "category": "other", "x": 3110.5, "z": -587.3, "px": 2578.9, "py": 1947.8, "has_dungeon": false, "has_important": false}, {"id": 4851, "name": "InfestedTree01", "category": "other", "x": 3621.4, "z": -2049.7, "px": 2666.1, "py": 1698.2, "has_dungeon": false, "has_important": false}, {"id": 4852, "name": "InfestedTree01", "category": "other", "x": -2826.3, "z": -856.1, "px": 1565.6, "py": 1901.9, "has_dungeon": false, "has_important": false}, {"id": 4853, "name": "InfestedTree01", "category": "other", "x": 1176.9, "z": 2176.1, "px": 2248.9, "py": 2419.4, "has_dungeon": false, "has_important": false}, {"id": 4854, "name": "InfestedTree01", "category": "other", "x": -2612.9, "z": -486.3, "px": 1602.1, "py": 1965.0, "has_dungeon": false, "has_important": false}, {"id": 4855, "name": "InfestedTree01", "category": "other", "x": 1489.9, "z": -5422.1, "px": 2302.3, "py": 1122.6, "has_dungeon": false, "has_important": false}, {"id": 4856, "name": "InfestedTree01", "category": "other", "x": -1850.2, "z": 4604.7, "px": 1732.2, "py": 2833.9, "has_dungeon": false, "has_important": false}, {"id": 4857, "name": "InfestedTree01", "category": "other", "x": 2494.6, "z": -1081.1, "px": 2473.7, "py": 1863.5, "has_dungeon": false, "has_important": false}, {"id": 4858, "name": "InfestedTree01", "category": "other", "x": 5332.6, "z": 2230.4, "px": 2958.1, "py": 2428.7, "has_dungeon": false, "has_important": false}, {"id": 4859, "name": "InfestedTree01", "category": "other", "x": -2569.9, "z": -4185.3, "px": 1609.4, "py": 1333.7, "has_dungeon": false, "has_important": false}, {"id": 4860, "name": "InfestedTree01", "category": "other", "x": 2533.5, "z": -1063.4, "px": 2480.4, "py": 1866.5, "has_dungeon": false, "has_important": false}, {"id": 4861, "name": "InfestedTree01", "category": "other", "x": -1879.3, "z": 4408.7, "px": 1727.3, "py": 2800.4, "has_dungeon": false, "has_important": false}, {"id": 4862, "name": "InfestedTree01", "category": "other", "x": -4825.8, "z": -236.4, "px": 1224.4, "py": 2007.7, "has_dungeon": false, "has_important": false}, {"id": 4863, "name": "InfestedTree01", "category": "other", "x": -4887.4, "z": -747.9, "px": 1213.9, "py": 1920.4, "has_dungeon": false, "has_important": false}, {"id": 4864, "name": "InfestedTree01", "category": "other", "x": 3898.1, "z": 823.7, "px": 2713.3, "py": 2188.6, "has_dungeon": false, "has_important": false}, {"id": 4865, "name": "InfestedTree01", "category": "other", "x": 316.1, "z": 2639.6, "px": 2101.9, "py": 2498.5, "has_dungeon": false, "has_important": false}, {"id": 4866, "name": "InfestedTree01", "category": "other", "x": 1203.3, "z": 4422.0, "px": 2253.4, "py": 2802.7, "has_dungeon": false, "has_important": false}, {"id": 4867, "name": "InfestedTree01", "category": "other", "x": -2132.8, "z": -764.5, "px": 1684.0, "py": 1917.5, "has_dungeon": false, "has_important": false}, {"id": 4868, "name": "InfestedTree01", "category": "other", "x": -2611.7, "z": -4210.1, "px": 1602.3, "py": 1329.5, "has_dungeon": false, "has_important": false}, {"id": 4869, "name": "InfestedTree01", "category": "other", "x": 1404.1, "z": 2351.2, "px": 2287.6, "py": 2449.3, "has_dungeon": false, "has_important": false}, {"id": 4870, "name": "InfestedTree01", "category": "other", "x": -2798.9, "z": 1938.6, "px": 1570.3, "py": 2378.9, "has_dungeon": false, "has_important": false}, {"id": 4871, "name": "InfestedTree01", "category": "other", "x": -4422.6, "z": -432.9, "px": 1293.2, "py": 1974.1, "has_dungeon": false, "has_important": false}, {"id": 4872, "name": "InfestedTree01", "category": "other", "x": -1328.0, "z": -5641.4, "px": 1821.4, "py": 1085.2, "has_dungeon": false, "has_important": false}, {"id": 4873, "name": "InfestedTree01", "category": "other", "x": 188.7, "z": 4399.2, "px": 2080.2, "py": 2798.8, "has_dungeon": false, "has_important": false}, {"id": 4874, "name": "InfestedTree01", "category": "other", "x": 295.8, "z": 4426.1, "px": 2098.5, "py": 2803.4, "has_dungeon": false, "has_important": false}, {"id": 4875, "name": "InfestedTree01", "category": "other", "x": 1193.6, "z": -3711.2, "px": 2251.7, "py": 1414.6, "has_dungeon": false, "has_important": false}, {"id": 4876, "name": "InfestedTree01", "category": "other", "x": -2151.0, "z": 4629.9, "px": 1680.9, "py": 2838.2, "has_dungeon": false, "has_important": false}, {"id": 4877, "name": "InfestedTree01", "category": "other", "x": -1547.5, "z": -5778.4, "px": 1783.9, "py": 1061.8, "has_dungeon": false, "has_important": false}, {"id": 4878, "name": "InfestedTree01", "category": "other", "x": 4356.1, "z": 1832.3, "px": 2791.4, "py": 2360.7, "has_dungeon": false, "has_important": false}, {"id": 4879, "name": "InfestedTree01", "category": "other", "x": 2126.9, "z": 4140.0, "px": 2411.0, "py": 2754.6, "has_dungeon": false, "has_important": false}, {"id": 4880, "name": "InfestedTree01", "category": "other", "x": 1840.0, "z": 4250.5, "px": 2362.0, "py": 2773.4, "has_dungeon": false, "has_important": false}, {"id": 4881, "name": "InfestedTree01", "category": "other", "x": -3396.6, "z": 3443.8, "px": 1468.3, "py": 2635.7, "has_dungeon": false, "has_important": false}, {"id": 4882, "name": "InfestedTree01", "category": "other", "x": 1146.2, "z": -3764.1, "px": 2243.6, "py": 1405.6, "has_dungeon": false, "has_important": false}, {"id": 4883, "name": "InfestedTree01", "category": "other", "x": -4206.5, "z": 703.3, "px": 1330.1, "py": 2168.0, "has_dungeon": false, "has_important": false}, {"id": 4884, "name": "InfestedTree01", "category": "other", "x": 1305.6, "z": 2356.1, "px": 2270.8, "py": 2450.1, "has_dungeon": false, "has_important": false}, {"id": 4885, "name": "InfestedTree01", "category": "other", "x": 2663.8, "z": 4042.0, "px": 2502.6, "py": 2737.8, "has_dungeon": false, "has_important": false}, {"id": 4886, "name": "InfestedTree01", "category": "other", "x": -370.6, "z": 2796.3, "px": 1984.8, "py": 2525.2, "has_dungeon": false, "has_important": false}, {"id": 4887, "name": "InfestedTree01", "category": "other", "x": -2439.6, "z": -3974.8, "px": 1631.6, "py": 1369.6, "has_dungeon": false, "has_important": false}, {"id": 4888, "name": "InfestedTree01", "category": "other", "x": 2320.5, "z": -3143.3, "px": 2444.0, "py": 1511.5, "has_dungeon": false, "has_important": false}, {"id": 4889, "name": "InfestedTree01", "category": "other", "x": 4749.7, "z": -3122.3, "px": 2858.6, "py": 1515.1, "has_dungeon": false, "has_important": false}, {"id": 4890, "name": "InfestedTree01", "category": "other", "x": 2411.1, "z": 3941.4, "px": 2459.5, "py": 2720.7, "has_dungeon": false, "has_important": false}, {"id": 4891, "name": "InfestedTree01", "category": "other", "x": 339.7, "z": 4463.8, "px": 2106.0, "py": 2809.8, "has_dungeon": false, "has_important": false}, {"id": 4892, "name": "InfestedTree01", "category": "other", "x": 198.8, "z": -3177.7, "px": 2081.9, "py": 1505.7, "has_dungeon": false, "has_important": false}, {"id": 4893, "name": "InfestedTree01", "category": "other", "x": 3514.4, "z": 710.9, "px": 2647.8, "py": 2169.3, "has_dungeon": false, "has_important": false}, {"id": 4894, "name": "InfestedTree01", "category": "other", "x": 4263.2, "z": 2224.4, "px": 2775.6, "py": 2427.6, "has_dungeon": false, "has_important": false}, {"id": 4895, "name": "InfestedTree01", "category": "other", "x": 4929.6, "z": -642.1, "px": 2889.3, "py": 1938.4, "has_dungeon": false, "has_important": false}, {"id": 4896, "name": "InfestedTree01", "category": "other", "x": -1771.9, "z": -2901.4, "px": 1745.6, "py": 1552.8, "has_dungeon": false, "has_important": false}, {"id": 4897, "name": "InfestedTree01", "category": "other", "x": 1686.5, "z": 4757.4, "px": 2335.8, "py": 2859.9, "has_dungeon": false, "has_important": false}, {"id": 4898, "name": "InfestedTree01", "category": "other", "x": -3717.3, "z": -4390.8, "px": 1413.6, "py": 1298.6, "has_dungeon": false, "has_important": false}, {"id": 4899, "name": "InfestedTree01", "category": "other", "x": 3341.3, "z": -4581.7, "px": 2618.2, "py": 1266.1, "has_dungeon": false, "has_important": false}, {"id": 4900, "name": "InfestedTree01", "category": "other", "x": -2582.4, "z": 2261.1, "px": 1607.3, "py": 2433.9, "has_dungeon": false, "has_important": false}, {"id": 4901, "name": "InfestedTree01", "category": "other", "x": -5205.9, "z": 1779.1, "px": 1159.5, "py": 2351.6, "has_dungeon": false, "has_important": false}, {"id": 4902, "name": "InfestedTree01", "category": "other", "x": 3672.1, "z": 4247.9, "px": 2674.7, "py": 2773.0, "has_dungeon": false, "has_important": false}, {"id": 4903, "name": "InfestedTree01", "category": "other", "x": -459.8, "z": -2027.3, "px": 1969.5, "py": 1702.0, "has_dungeon": false, "has_important": false}, {"id": 4904, "name": "InfestedTree01", "category": "other", "x": -4821.8, "z": -204.1, "px": 1225.1, "py": 2013.2, "has_dungeon": false, "has_important": false}, {"id": 4905, "name": "InfestedTree01", "category": "other", "x": 401.3, "z": 2617.7, "px": 2116.5, "py": 2494.8, "has_dungeon": false, "has_important": false}, {"id": 4906, "name": "InfestedTree01", "category": "other", "x": 1360.2, "z": -4845.3, "px": 2280.1, "py": 1221.1, "has_dungeon": false, "has_important": false}, {"id": 4907, "name": "InfestedTree01", "category": "other", "x": 2775.6, "z": -3058.9, "px": 2521.7, "py": 1525.9, "has_dungeon": false, "has_important": false}, {"id": 4908, "name": "InfestedTree01", "category": "other", "x": -2178.3, "z": -4411.1, "px": 1676.2, "py": 1295.2, "has_dungeon": false, "has_important": false}, {"id": 4909, "name": "InfestedTree01", "category": "other", "x": 4147.4, "z": 281.7, "px": 2755.8, "py": 2096.1, "has_dungeon": false, "has_important": false}, {"id": 4910, "name": "InfestedTree01", "category": "other", "x": -4495.2, "z": 1523.7, "px": 1280.8, "py": 2308.0, "has_dungeon": false, "has_important": false}, {"id": 4911, "name": "InfestedTree01", "category": "other", "x": 2917.9, "z": -5240.3, "px": 2546.0, "py": 1153.7, "has_dungeon": false, "has_important": false}, {"id": 4912, "name": "InfestedTree01", "category": "other", "x": -2631.8, "z": 1552.6, "px": 1598.8, "py": 2313.0, "has_dungeon": false, "has_important": false}, {"id": 4913, "name": "InfestedTree01", "category": "other", "x": 836.2, "z": 4229.3, "px": 2190.7, "py": 2769.8, "has_dungeon": false, "has_important": false}, {"id": 4914, "name": "InfestedTree01", "category": "other", "x": 4609.2, "z": -3247.0, "px": 2834.6, "py": 1493.8, "has_dungeon": false, "has_important": false}, {"id": 4915, "name": "InfestedTree01", "category": "other", "x": 3845.6, "z": 4582.4, "px": 2704.3, "py": 2830.1, "has_dungeon": false, "has_important": false}, {"id": 4916, "name": "InfestedTree01", "category": "other", "x": 1804.1, "z": 1520.1, "px": 2355.9, "py": 2307.4, "has_dungeon": false, "has_important": false}, {"id": 4917, "name": "InfestedTree01", "category": "other", "x": -3685.8, "z": 3302.3, "px": 1419.0, "py": 2611.6, "has_dungeon": false, "has_important": false}, {"id": 4918, "name": "InfestedTree01", "category": "other", "x": 4628.1, "z": -497.2, "px": 2837.9, "py": 1963.1, "has_dungeon": false, "has_important": false}, {"id": 4919, "name": "InfestedTree01", "category": "other", "x": -2880.4, "z": 1796.5, "px": 1556.4, "py": 2354.6, "has_dungeon": false, "has_important": false}, {"id": 4920, "name": "InfestedTree01", "category": "other", "x": 2361.9, "z": -3126.9, "px": 2451.1, "py": 1514.3, "has_dungeon": false, "has_important": false}, {"id": 4921, "name": "InfestedTree01", "category": "other", "x": -2725.5, "z": 2002.4, "px": 1582.8, "py": 2389.7, "has_dungeon": false, "has_important": false}, {"id": 4922, "name": "InfestedTree01", "category": "other", "x": -2664.7, "z": 1559.5, "px": 1593.2, "py": 2314.2, "has_dungeon": false, "has_important": false}, {"id": 4923, "name": "InfestedTree01", "category": "other", "x": 2566.9, "z": -5315.2, "px": 2486.1, "py": 1140.9, "has_dungeon": false, "has_important": false}, {"id": 4924, "name": "InfestedTree01", "category": "other", "x": -2414.7, "z": 1599.6, "px": 1635.9, "py": 2321.0, "has_dungeon": false, "has_important": false}, {"id": 4925, "name": "InfestedTree01", "category": "other", "x": 4186.2, "z": 2003.7, "px": 2762.4, "py": 2390.0, "has_dungeon": false, "has_important": false}, {"id": 4926, "name": "InfestedTree01", "category": "other", "x": 5444.5, "z": 955.3, "px": 2977.2, "py": 2211.0, "has_dungeon": false, "has_important": false}, {"id": 4927, "name": "InfestedTree01", "category": "other", "x": -2832.6, "z": -913.2, "px": 1564.6, "py": 1892.1, "has_dungeon": false, "has_important": false}, {"id": 4928, "name": "InfestedTree01", "category": "other", "x": 1623.7, "z": -5044.9, "px": 2325.1, "py": 1187.0, "has_dungeon": false, "has_important": false}, {"id": 4929, "name": "InfestedTree01", "category": "other", "x": -4901.4, "z": -3251.5, "px": 1211.5, "py": 1493.1, "has_dungeon": false, "has_important": false}, {"id": 4930, "name": "InfestedTree01", "category": "other", "x": 3558.3, "z": 1282.9, "px": 2655.3, "py": 2266.9, "has_dungeon": false, "has_important": false}, {"id": 4931, "name": "InfestedTree01", "category": "other", "x": 4377.1, "z": -2923.0, "px": 2795.0, "py": 1549.1, "has_dungeon": false, "has_important": false}, {"id": 4932, "name": "InfestedTree01", "category": "other", "x": -4306.0, "z": 683.7, "px": 1313.1, "py": 2164.7, "has_dungeon": false, "has_important": false}, {"id": 4933, "name": "InfestedTree01", "category": "other", "x": -2517.3, "z": -5308.5, "px": 1618.4, "py": 1142.0, "has_dungeon": false, "has_important": false}, {"id": 4934, "name": "InfestedTree01", "category": "other", "x": -200.5, "z": 2629.3, "px": 2013.8, "py": 2496.7, "has_dungeon": false, "has_important": false}, {"id": 4935, "name": "InfestedTree01", "category": "other", "x": -467.1, "z": -3763.7, "px": 1968.3, "py": 1405.7, "has_dungeon": false, "has_important": false}, {"id": 4936, "name": "InfestedTree01", "category": "other", "x": -2743.4, "z": -1021.6, "px": 1579.8, "py": 1873.6, "has_dungeon": false, "has_important": false}, {"id": 4937, "name": "InfestedTree01", "category": "other", "x": -4526.5, "z": 3498.0, "px": 1275.5, "py": 2645.0, "has_dungeon": false, "has_important": false}, {"id": 4938, "name": "InfestedTree01", "category": "other", "x": -5800.3, "z": -906.7, "px": 1058.1, "py": 1893.3, "has_dungeon": false, "has_important": false}, {"id": 4939, "name": "InfestedTree01", "category": "other", "x": -3889.0, "z": -4394.6, "px": 1384.3, "py": 1298.0, "has_dungeon": false, "has_important": false}, {"id": 4940, "name": "InfestedTree01", "category": "other", "x": 2545.8, "z": 3685.3, "px": 2482.5, "py": 2677.0, "has_dungeon": false, "has_important": false}, {"id": 4941, "name": "InfestedTree01", "category": "other", "x": -5186.1, "z": -1671.8, "px": 1162.9, "py": 1762.7, "has_dungeon": false, "has_important": false}, {"id": 4942, "name": "InfestedTree01", "category": "other", "x": -4563.9, "z": 3378.1, "px": 1269.1, "py": 2624.5, "has_dungeon": false, "has_important": false}, {"id": 4943, "name": "InfestedTree01", "category": "other", "x": -4522.1, "z": 1338.5, "px": 1276.2, "py": 2276.4, "has_dungeon": false, "has_important": false}, {"id": 4944, "name": "InfestedTree01", "category": "other", "x": 4499.0, "z": -3311.6, "px": 2815.8, "py": 1482.8, "has_dungeon": false, "has_important": false}, {"id": 4945, "name": "InfestedTree01", "category": "other", "x": 3159.7, "z": -648.0, "px": 2587.3, "py": 1937.4, "has_dungeon": false, "has_important": false}, {"id": 4946, "name": "InfestedTree01", "category": "other", "x": -4783.4, "z": -126.4, "px": 1231.6, "py": 2026.4, "has_dungeon": false, "has_important": false}, {"id": 4947, "name": "InfestedTree01", "category": "other", "x": 3217.3, "z": -727.1, "px": 2597.1, "py": 1923.9, "has_dungeon": false, "has_important": false}, {"id": 4948, "name": "InfestedTree01", "category": "other", "x": 2642.8, "z": -254.0, "px": 2499.0, "py": 2004.7, "has_dungeon": false, "has_important": false}, {"id": 4949, "name": "InfestedTree01", "category": "other", "x": 2265.4, "z": -5549.3, "px": 2434.6, "py": 1100.9, "has_dungeon": false, "has_important": false}, {"id": 4950, "name": "InfestedTree01", "category": "other", "x": 1573.1, "z": -5261.1, "px": 2316.5, "py": 1150.1, "has_dungeon": false, "has_important": false}, {"id": 4951, "name": "InfestedTree01", "category": "other", "x": -2604.9, "z": -5008.7, "px": 1603.4, "py": 1193.2, "has_dungeon": false, "has_important": false}, {"id": 4952, "name": "InfestedTree01", "category": "other", "x": -3894.2, "z": 256.9, "px": 1383.4, "py": 2091.8, "has_dungeon": false, "has_important": false}, {"id": 4953, "name": "InfestedTree01", "category": "other", "x": 3332.0, "z": 587.0, "px": 2616.7, "py": 2148.2, "has_dungeon": false, "has_important": false}, {"id": 4954, "name": "InfestedTree01", "category": "other", "x": -3723.6, "z": 118.9, "px": 1412.5, "py": 2068.3, "has_dungeon": false, "has_important": false}, {"id": 4955, "name": "InfestedTree01", "category": "other", "x": -4263.3, "z": 3816.4, "px": 1320.4, "py": 2699.3, "has_dungeon": false, "has_important": false}, {"id": 4956, "name": "InfestedTree01", "category": "other", "x": -2408.6, "z": -1175.6, "px": 1636.9, "py": 1847.4, "has_dungeon": false, "has_important": false}, {"id": 4957, "name": "InfestedTree01", "category": "other", "x": 201.4, "z": 2671.4, "px": 2082.4, "py": 2503.9, "has_dungeon": false, "has_important": false}, {"id": 4958, "name": "InfestedTree01", "category": "other", "x": 5464.1, "z": 2282.6, "px": 2980.5, "py": 2437.6, "has_dungeon": false, "has_important": false}, {"id": 4959, "name": "InfestedTree01", "category": "other", "x": 3561.2, "z": -2111.0, "px": 2655.8, "py": 1687.7, "has_dungeon": false, "has_important": false}, {"id": 4960, "name": "InfestedTree01", "category": "other", "x": -4890.9, "z": -3220.4, "px": 1213.3, "py": 1498.4, "has_dungeon": false, "has_important": false}, {"id": 4961, "name": "InfestedTree01", "category": "other", "x": 242.2, "z": 4237.5, "px": 2089.3, "py": 2771.2, "has_dungeon": false, "has_important": false}, {"id": 4962, "name": "InfestedTree01", "category": "other", "x": 4205.6, "z": 549.3, "px": 2765.8, "py": 2141.7, "has_dungeon": false, "has_important": false}, {"id": 4963, "name": "InfestedTree01", "category": "other", "x": 5374.7, "z": 1551.7, "px": 2965.3, "py": 2312.8, "has_dungeon": false, "has_important": false}, {"id": 4964, "name": "InfestedTree01", "category": "other", "x": -1150.6, "z": -3732.4, "px": 1851.6, "py": 1411.0, "has_dungeon": false, "has_important": false}, {"id": 4965, "name": "InfestedTree01", "category": "other", "x": 3608.1, "z": -2037.1, "px": 2663.8, "py": 1700.3, "has_dungeon": false, "has_important": false}, {"id": 4966, "name": "InfestedTree01", "category": "other", "x": 4359.4, "z": -3157.2, "px": 2792.0, "py": 1509.2, "has_dungeon": false, "has_important": false}, {"id": 4967, "name": "InfestedTree01", "category": "other", "x": 1151.8, "z": 4454.9, "px": 2244.6, "py": 2808.3, "has_dungeon": false, "has_important": false}, {"id": 4968, "name": "InfestedTree01", "category": "other", "x": -263.7, "z": 2388.8, "px": 2003.0, "py": 2455.7, "has_dungeon": false, "has_important": false}, {"id": 4969, "name": "InfestedTree01", "category": "other", "x": -4933.8, "z": -3215.7, "px": 1206.0, "py": 1499.2, "has_dungeon": false, "has_important": false}, {"id": 4970, "name": "InfestedTree01", "category": "other", "x": -4866.3, "z": -324.7, "px": 1217.5, "py": 1992.6, "has_dungeon": false, "has_important": false}, {"id": 4971, "name": "InfestedTree01", "category": "other", "x": 4592.7, "z": -809.3, "px": 2831.8, "py": 1909.9, "has_dungeon": false, "has_important": false}, {"id": 4972, "name": "InfestedTree01", "category": "other", "x": -5801.8, "z": -953.4, "px": 1057.8, "py": 1885.3, "has_dungeon": false, "has_important": false}, {"id": 4973, "name": "InfestedTree01", "category": "other", "x": -2560.2, "z": 4966.6, "px": 1611.1, "py": 2895.6, "has_dungeon": false, "has_important": false}, {"id": 4974, "name": "InfestedTree01", "category": "other", "x": 2406.7, "z": -1158.9, "px": 2458.7, "py": 1850.2, "has_dungeon": false, "has_important": false}, {"id": 4975, "name": "InfestedTree01", "category": "other", "x": -1196.8, "z": -5806.0, "px": 1843.7, "py": 1057.1, "has_dungeon": false, "has_important": false}, {"id": 4976, "name": "InfestedTree01", "category": "other", "x": -2431.3, "z": 4354.1, "px": 1633.1, "py": 2791.1, "has_dungeon": false, "has_important": false}, {"id": 4977, "name": "InfestedTree01", "category": "other", "x": -5038.1, "z": 1227.3, "px": 1188.2, "py": 2257.5, "has_dungeon": false, "has_important": false}, {"id": 4978, "name": "InfestedTree01", "category": "other", "x": -5015.5, "z": 1480.3, "px": 1192.0, "py": 2300.6, "has_dungeon": false, "has_important": false}, {"id": 4979, "name": "InfestedTree01", "category": "other", "x": 577.1, "z": 2512.1, "px": 2146.5, "py": 2476.7, "has_dungeon": false, "has_important": false}, {"id": 4980, "name": "InfestedTree01", "category": "other", "x": 2808.2, "z": -5230.0, "px": 2527.3, "py": 1155.4, "has_dungeon": false, "has_important": false}, {"id": 4981, "name": "InfestedTree01", "category": "other", "x": 3415.9, "z": 503.6, "px": 2631.0, "py": 2133.9, "has_dungeon": false, "has_important": false}, {"id": 4982, "name": "InfestedTree01", "category": "other", "x": 2703.9, "z": -131.2, "px": 2509.5, "py": 2025.6, "has_dungeon": false, "has_important": false}, {"id": 4983, "name": "InfestedTree01", "category": "other", "x": 2648.2, "z": -2471.0, "px": 2500.0, "py": 1626.3, "has_dungeon": false, "has_important": false}, {"id": 4984, "name": "InfestedTree01", "category": "other", "x": -2536.6, "z": 1585.5, "px": 1615.1, "py": 2318.6, "has_dungeon": false, "has_important": false}, {"id": 4985, "name": "InfestedTree01", "category": "other", "x": 1602.8, "z": 1906.0, "px": 2321.5, "py": 2373.3, "has_dungeon": false, "has_important": false}, {"id": 4986, "name": "InfestedTree01", "category": "other", "x": -4468.3, "z": 324.6, "px": 1285.4, "py": 2103.4, "has_dungeon": false, "has_important": false}, {"id": 4987, "name": "InfestedTree01", "category": "other", "x": -2606.6, "z": -4142.1, "px": 1603.1, "py": 1341.1, "has_dungeon": false, "has_important": false}, {"id": 4988, "name": "InfestedTree01", "category": "other", "x": -4786.9, "z": -22.1, "px": 1231.0, "py": 2044.2, "has_dungeon": false, "has_important": false}, {"id": 4989, "name": "InfestedTree01", "category": "other", "x": -2582.0, "z": 2302.5, "px": 1607.3, "py": 2441.0, "has_dungeon": false, "has_important": false}, {"id": 4990, "name": "InfestedTree01", "category": "other", "x": -2855.2, "z": -1605.2, "px": 1560.7, "py": 1774.0, "has_dungeon": false, "has_important": false}, {"id": 4991, "name": "InfestedTree01", "category": "other", "x": 2480.4, "z": -128.2, "px": 2471.3, "py": 2026.1, "has_dungeon": false, "has_important": false}, {"id": 4992, "name": "InfestedTree01", "category": "other", "x": 2134.5, "z": -4174.1, "px": 2412.3, "py": 1335.6, "has_dungeon": false, "has_important": false}, {"id": 4993, "name": "InfestedTree01", "category": "other", "x": 4645.9, "z": -870.3, "px": 2840.9, "py": 1899.5, "has_dungeon": false, "has_important": false}, {"id": 4994, "name": "InfestedTree01", "category": "other", "x": -1943.7, "z": 4433.0, "px": 1716.3, "py": 2804.6, "has_dungeon": false, "has_important": false}, {"id": 4995, "name": "InfestedTree01", "category": "other", "x": -2585.0, "z": -1040.2, "px": 1606.8, "py": 1870.5, "has_dungeon": false, "has_important": false}, {"id": 4996, "name": "InfestedTree01", "category": "other", "x": 1255.0, "z": -3584.7, "px": 2262.2, "py": 1436.2, "has_dungeon": false, "has_important": false}, {"id": 4997, "name": "InfestedTree01", "category": "other", "x": -4521.8, "z": 3284.0, "px": 1276.3, "py": 2608.5, "has_dungeon": false, "has_important": false}, {"id": 4998, "name": "InfestedTree01", "category": "other", "x": 2662.3, "z": -263.3, "px": 2502.4, "py": 2003.1, "has_dungeon": false, "has_important": false}, {"id": 4999, "name": "InfestedTree01", "category": "other", "x": -5640.6, "z": -398.5, "px": 1085.3, "py": 1980.0, "has_dungeon": false, "has_important": false}, {"id": 5000, "name": "InfestedTree01", "category": "other", "x": -5414.9, "z": 1428.1, "px": 1123.9, "py": 2291.7, "has_dungeon": false, "has_important": false}, {"id": 5001, "name": "InfestedTree01", "category": "other", "x": -1898.0, "z": -2928.3, "px": 1724.1, "py": 1548.2, "has_dungeon": false, "has_important": false}, {"id": 5002, "name": "InfestedTree01", "category": "other", "x": -2553.0, "z": -5274.4, "px": 1612.3, "py": 1147.8, "has_dungeon": false, "has_important": false}, {"id": 5003, "name": "InfestedTree01", "category": "other", "x": 3629.3, "z": -2184.9, "px": 2667.4, "py": 1675.1, "has_dungeon": false, "has_important": false}, {"id": 5004, "name": "InfestedTree01", "category": "other", "x": 4901.9, "z": -767.1, "px": 2884.6, "py": 1917.1, "has_dungeon": false, "has_important": false}, {"id": 5005, "name": "InfestedTree01", "category": "other", "x": 2235.7, "z": -3272.0, "px": 2429.6, "py": 1489.6, "has_dungeon": false, "has_important": false}, {"id": 5006, "name": "InfestedTree01", "category": "other", "x": 4204.9, "z": 2092.6, "px": 2765.6, "py": 2405.1, "has_dungeon": false, "has_important": false}, {"id": 5007, "name": "InfestedTree01", "category": "other", "x": 4667.4, "z": -2955.0, "px": 2844.6, "py": 1543.7, "has_dungeon": false, "has_important": false}, {"id": 5008, "name": "InfestedTree01", "category": "other", "x": -2310.7, "z": 4729.4, "px": 1653.6, "py": 2855.2, "has_dungeon": false, "has_important": false}, {"id": 5009, "name": "InfestedTree01", "category": "other", "x": 1562.6, "z": 4519.7, "px": 2314.7, "py": 2819.4, "has_dungeon": false, "has_important": false}, {"id": 5010, "name": "InfestedTree01", "category": "other", "x": 2442.0, "z": -5245.6, "px": 2464.8, "py": 1152.8, "has_dungeon": false, "has_important": false}, {"id": 5011, "name": "InfestedTree01", "category": "other", "x": -2649.7, "z": -5304.9, "px": 1595.8, "py": 1142.6, "has_dungeon": false, "has_important": false}, {"id": 5012, "name": "InfestedTree01", "category": "other", "x": 2368.9, "z": 4144.6, "px": 2452.3, "py": 2755.3, "has_dungeon": false, "has_important": false}, {"id": 5013, "name": "InfestedTree01", "category": "other", "x": 1397.3, "z": 2434.7, "px": 2286.5, "py": 2463.5, "has_dungeon": false, "has_important": false}, {"id": 5014, "name": "InfestedTree01", "category": "other", "x": -2791.1, "z": 2045.1, "px": 1571.7, "py": 2397.0, "has_dungeon": false, "has_important": false}, {"id": 5015, "name": "InfestedTree01", "category": "other", "x": 4877.5, "z": -566.4, "px": 2880.4, "py": 1951.3, "has_dungeon": false, "has_important": false}, {"id": 5016, "name": "InfestedTree01", "category": "other", "x": 2291.0, "z": 4305.0, "px": 2439.0, "py": 2782.7, "has_dungeon": false, "has_important": false}, {"id": 5017, "name": "InfestedTree01", "category": "other", "x": -465.0, "z": -4108.2, "px": 1968.6, "py": 1346.9, "has_dungeon": false, "has_important": false}, {"id": 5018, "name": "InfestedTree01", "category": "other", "x": 1169.0, "z": -3630.8, "px": 2247.5, "py": 1428.3, "has_dungeon": false, "has_important": false}, {"id": 5019, "name": "InfestedTree01", "category": "other", "x": -2302.5, "z": 4926.3, "px": 1655.0, "py": 2888.8, "has_dungeon": false, "has_important": false}, {"id": 5020, "name": "InfestedTree01", "category": "other", "x": 3689.4, "z": 997.7, "px": 2677.7, "py": 2218.3, "has_dungeon": false, "has_important": false}, {"id": 5021, "name": "InfestedTree01", "category": "other", "x": 2127.5, "z": 409.4, "px": 2411.1, "py": 2117.9, "has_dungeon": false, "has_important": false}, {"id": 5022, "name": "InfestedTree01", "category": "other", "x": 1832.9, "z": 4810.2, "px": 2360.8, "py": 2868.9, "has_dungeon": false, "has_important": false}, {"id": 5023, "name": "InfestedTree01", "category": "other", "x": -3763.2, "z": 246.0, "px": 1405.7, "py": 2090.0, "has_dungeon": false, "has_important": false}, {"id": 5024, "name": "InfestedTree01", "category": "other", "x": 2073.9, "z": 634.1, "px": 2401.9, "py": 2156.2, "has_dungeon": false, "has_important": false}, {"id": 5025, "name": "InfestedTree01", "category": "other", "x": 1817.9, "z": 1577.1, "px": 2358.3, "py": 2317.2, "has_dungeon": false, "has_important": false}, {"id": 5026, "name": "InfestedTree01", "category": "other", "x": -461.2, "z": 2670.9, "px": 1969.3, "py": 2503.8, "has_dungeon": false, "has_important": false}, {"id": 5027, "name": "InfestedTree01", "category": "other", "x": 2180.7, "z": -4172.0, "px": 2420.2, "py": 1336.0, "has_dungeon": false, "has_important": false}, {"id": 5028, "name": "InfestedTree01", "category": "other", "x": 2407.2, "z": 4136.1, "px": 2458.8, "py": 2753.9, "has_dungeon": false, "has_important": false}, {"id": 5029, "name": "InfestedTree01", "category": "other", "x": -4012.3, "z": 344.9, "px": 1363.2, "py": 2106.9, "has_dungeon": false, "has_important": false}, {"id": 5030, "name": "InfestedTree01", "category": "other", "x": -5074.4, "z": -589.3, "px": 1182.0, "py": 1947.4, "has_dungeon": false, "has_important": false}, {"id": 5031, "name": "InfestedTree01", "category": "other", "x": 4207.4, "z": 341.2, "px": 2766.1, "py": 2106.2, "has_dungeon": false, "has_important": false}, {"id": 5032, "name": "InfestedTree01", "category": "other", "x": 1555.8, "z": 4423.7, "px": 2313.5, "py": 2803.0, "has_dungeon": false, "has_important": false}, {"id": 5033, "name": "InfestedTree01", "category": "other", "x": 2436.8, "z": -1194.3, "px": 2463.9, "py": 1844.2, "has_dungeon": false, "has_important": false}, {"id": 5034, "name": "InfestedTree01", "category": "other", "x": 3384.9, "z": 4742.1, "px": 2625.7, "py": 2857.3, "has_dungeon": false, "has_important": false}, {"id": 5035, "name": "InfestedTree01", "category": "other", "x": 1674.1, "z": 2137.2, "px": 2333.7, "py": 2412.7, "has_dungeon": false, "has_important": false}, {"id": 5036, "name": "InfestedTree01", "category": "other", "x": -196.4, "z": 2854.7, "px": 2014.5, "py": 2535.2, "has_dungeon": false, "has_important": false}, {"id": 5037, "name": "InfestedTree01", "category": "other", "x": 3879.4, "z": 688.8, "px": 2710.1, "py": 2165.6, "has_dungeon": false, "has_important": false}, {"id": 5038, "name": "InfestedTree01", "category": "other", "x": -3777.4, "z": -4389.1, "px": 1403.3, "py": 1298.9, "has_dungeon": false, "has_important": false}, {"id": 5039, "name": "InfestedTree01", "category": "other", "x": 4715.2, "z": -460.8, "px": 2852.7, "py": 1969.4, "has_dungeon": false, "has_important": false}, {"id": 5040, "name": "InfestedTree01", "category": "other", "x": -5759.5, "z": -1113.7, "px": 1065.0, "py": 1857.9, "has_dungeon": false, "has_important": false}, {"id": 5041, "name": "InfestedTree01", "category": "other", "x": -2970.2, "z": 646.5, "px": 1541.1, "py": 2158.3, "has_dungeon": false, "has_important": false}, {"id": 5042, "name": "InfestedTree01", "category": "other", "x": -3052.2, "z": 782.4, "px": 1527.1, "py": 2181.5, "has_dungeon": false, "has_important": false}, {"id": 5043, "name": "InfestedTree01", "category": "other", "x": -5657.2, "z": -460.0, "px": 1082.5, "py": 1969.5, "has_dungeon": false, "has_important": false}, {"id": 5044, "name": "InfestedTree01", "category": "other", "x": 1999.4, "z": 1644.6, "px": 2389.2, "py": 2328.7, "has_dungeon": false, "has_important": false}, {"id": 5045, "name": "InfestedTree01", "category": "other", "x": 3346.7, "z": 4597.4, "px": 2619.2, "py": 2832.6, "has_dungeon": false, "has_important": false}, {"id": 5046, "name": "InfestedTree01", "category": "other", "x": -4523.8, "z": 3468.4, "px": 1275.9, "py": 2639.9, "has_dungeon": false, "has_important": false}, {"id": 5047, "name": "InfestedTree01", "category": "other", "x": 4298.7, "z": 1905.7, "px": 2781.6, "py": 2373.2, "has_dungeon": false, "has_important": false}, {"id": 5048, "name": "InfestedTree01", "category": "other", "x": 3322.7, "z": 613.1, "px": 2615.1, "py": 2152.6, "has_dungeon": false, "has_important": false}, {"id": 5049, "name": "InfestedTree01", "category": "other", "x": 1223.8, "z": 4361.4, "px": 2256.9, "py": 2792.3, "has_dungeon": false, "has_important": false}, {"id": 5050, "name": "InfestedTree01", "category": "other", "x": -4459.4, "z": 474.6, "px": 1286.9, "py": 2129.0, "has_dungeon": false, "has_important": false}, {"id": 5051, "name": "InfestedTree01", "category": "other", "x": -2295.0, "z": 4344.2, "px": 1656.3, "py": 2789.4, "has_dungeon": false, "has_important": false}, {"id": 5052, "name": "InfestedTree01", "category": "other", "x": -5651.5, "z": -1255.7, "px": 1083.5, "py": 1833.7, "has_dungeon": false, "has_important": false}, {"id": 5053, "name": "InfestedTree01", "category": "other", "x": -4517.1, "z": -468.6, "px": 1277.1, "py": 1968.0, "has_dungeon": false, "has_important": false}, {"id": 5054, "name": "InfestedTree01", "category": "other", "x": -948.7, "z": -5611.9, "px": 1886.1, "py": 1090.2, "has_dungeon": false, "has_important": false}, {"id": 5055, "name": "InfestedTree01", "category": "other", "x": -1221.2, "z": -3385.8, "px": 1839.6, "py": 1470.2, "has_dungeon": false, "has_important": false}, {"id": 5056, "name": "InfestedTree01", "category": "other", "x": -4301.4, "z": 1267.8, "px": 1313.9, "py": 2264.4, "has_dungeon": false, "has_important": false}, {"id": 5057, "name": "InfestedTree01", "category": "other", "x": 3783.3, "z": 4610.6, "px": 2693.7, "py": 2834.9, "has_dungeon": false, "has_important": false}, {"id": 5058, "name": "InfestedTree01", "category": "other", "x": 2513.4, "z": -5361.9, "px": 2477.0, "py": 1132.9, "has_dungeon": false, "has_important": false}, {"id": 5059, "name": "InfestedTree01", "category": "other", "x": -4421.8, "z": 1389.3, "px": 1293.3, "py": 2285.1, "has_dungeon": false, "has_important": false}, {"id": 5060, "name": "InfestedTree01", "category": "other", "x": -4689.2, "z": 1167.9, "px": 1247.7, "py": 2247.3, "has_dungeon": false, "has_important": false}, {"id": 5061, "name": "InfestedTree01", "category": "other", "x": 2261.1, "z": 4095.0, "px": 2433.9, "py": 2746.9, "has_dungeon": false, "has_important": false}, {"id": 5062, "name": "InfestedTree01", "category": "other", "x": -774.2, "z": -3989.5, "px": 1915.9, "py": 1367.1, "has_dungeon": false, "has_important": false}, {"id": 5063, "name": "InfestedTree01", "category": "other", "x": 594.7, "z": -2168.2, "px": 2149.5, "py": 1678.0, "has_dungeon": false, "has_important": false}, {"id": 5064, "name": "InfestedTree01", "category": "other", "x": -2490.1, "z": -562.2, "px": 1623.0, "py": 1952.1, "has_dungeon": false, "has_important": false}, {"id": 5065, "name": "InfestedTree01", "category": "other", "x": 5078.2, "z": -129.9, "px": 2914.7, "py": 2025.8, "has_dungeon": false, "has_important": false}, {"id": 5066, "name": "InfestedTree01", "category": "other", "x": -3770.0, "z": 2711.8, "px": 1404.6, "py": 2510.8, "has_dungeon": false, "has_important": false}, {"id": 5067, "name": "InfestedTree01", "category": "other", "x": -4186.8, "z": 511.3, "px": 1333.5, "py": 2135.3, "has_dungeon": false, "has_important": false}, {"id": 5068, "name": "InfestedTree01", "category": "other", "x": -2522.2, "z": 2299.4, "px": 1617.5, "py": 2440.4, "has_dungeon": false, "has_important": false}, {"id": 5069, "name": "InfestedTree01", "category": "other", "x": 1099.1, "z": 2326.6, "px": 2235.6, "py": 2445.1, "has_dungeon": false, "has_important": false}, {"id": 5070, "name": "InfestedTree01", "category": "other", "x": -4822.0, "z": -568.5, "px": 1225.0, "py": 1951.0, "has_dungeon": false, "has_important": false}, {"id": 5071, "name": "InfestedTree01", "category": "other", "x": 5076.8, "z": 2231.0, "px": 2914.4, "py": 2428.8, "has_dungeon": false, "has_important": false}, {"id": 5072, "name": "InfestedTree01", "category": "other", "x": -2303.6, "z": -4199.2, "px": 1654.9, "py": 1331.3, "has_dungeon": false, "has_important": false}, {"id": 5073, "name": "InfestedTree01", "category": "other", "x": 5335.0, "z": 2046.7, "px": 2958.5, "py": 2397.3, "has_dungeon": false, "has_important": false}, {"id": 5074, "name": "InfestedTree01", "category": "other", "x": 4412.9, "z": -3203.6, "px": 2801.1, "py": 1501.3, "has_dungeon": false, "has_important": false}, {"id": 5075, "name": "InfestedTree01", "category": "other", "x": -2536.1, "z": 4849.0, "px": 1615.2, "py": 2875.6, "has_dungeon": false, "has_important": false}, {"id": 5076, "name": "InfestedTree01", "category": "other", "x": 3469.1, "z": 1030.4, "px": 2640.1, "py": 2223.9, "has_dungeon": false, "has_important": false}, {"id": 5077, "name": "InfestedTree01", "category": "other", "x": 4976.1, "z": -758.9, "px": 2897.3, "py": 1918.5, "has_dungeon": false, "has_important": false}, {"id": 5078, "name": "InfestedTree01", "category": "other", "x": -2599.9, "z": 4948.5, "px": 1604.3, "py": 2892.5, "has_dungeon": false, "has_important": false}, {"id": 5079, "name": "InfestedTree01", "category": "other", "x": 5460.8, "z": 1470.7, "px": 2980.0, "py": 2299.0, "has_dungeon": false, "has_important": false}, {"id": 5080, "name": "InfestedTree01", "category": "other", "x": -2637.5, "z": -1542.2, "px": 1597.9, "py": 1784.8, "has_dungeon": false, "has_important": false}, {"id": 5081, "name": "InfestedTree01", "category": "other", "x": 494.9, "z": 2470.7, "px": 2132.5, "py": 2469.7, "has_dungeon": false, "has_important": false}, {"id": 5082, "name": "InfestedTree01", "category": "other", "x": -1937.6, "z": 4691.3, "px": 1717.3, "py": 2848.6, "has_dungeon": false, "has_important": false}, {"id": 5083, "name": "InfestedTree01", "category": "other", "x": -4014.9, "z": 3628.1, "px": 1362.8, "py": 2667.2, "has_dungeon": false, "has_important": false}, {"id": 5084, "name": "InfestedTree01", "category": "other", "x": 2458.3, "z": -3330.1, "px": 2467.5, "py": 1479.7, "has_dungeon": false, "has_important": false}, {"id": 5085, "name": "InfestedTree01", "category": "other", "x": 4653.9, "z": -560.7, "px": 2842.3, "py": 1952.3, "has_dungeon": false, "has_important": false}, {"id": 5086, "name": "InfestedTree01", "category": "other", "x": 2938.8, "z": -662.6, "px": 2549.6, "py": 1934.9, "has_dungeon": false, "has_important": false}, {"id": 5087, "name": "InfestedTree01", "category": "other", "x": 2353.0, "z": -5303.5, "px": 2449.6, "py": 1142.9, "has_dungeon": false, "has_important": false}, {"id": 5088, "name": "InfestedTree01", "category": "other", "x": -428.3, "z": 2548.4, "px": 1974.9, "py": 2482.9, "has_dungeon": false, "has_important": false}, {"id": 5089, "name": "InfestedTree01", "category": "other", "x": -2394.9, "z": -4224.9, "px": 1639.3, "py": 1327.0, "has_dungeon": false, "has_important": false}, {"id": 5090, "name": "InfestedTree01", "category": "other", "x": 1580.9, "z": 4326.3, "px": 2317.8, "py": 2786.4, "has_dungeon": false, "has_important": false}, {"id": 5091, "name": "InfestedTree01", "category": "other", "x": -2550.0, "z": -5070.6, "px": 1612.8, "py": 1182.6, "has_dungeon": false, "has_important": false}, {"id": 5092, "name": "InfestedTree01", "category": "other", "x": -5624.0, "z": 1934.5, "px": 1088.2, "py": 2378.2, "has_dungeon": false, "has_important": false}, {"id": 5093, "name": "InfestedTree01", "category": "other", "x": -2501.0, "z": -453.7, "px": 1621.2, "py": 1970.6, "has_dungeon": false, "has_important": false}, {"id": 5094, "name": "InfestedTree01", "category": "other", "x": -264.8, "z": 2777.3, "px": 2002.8, "py": 2522.0, "has_dungeon": false, "has_important": false}, {"id": 5095, "name": "InfestedTree01", "category": "other", "x": -4505.8, "z": 1352.5, "px": 1279.0, "py": 2278.8, "has_dungeon": false, "has_important": false}, {"id": 5096, "name": "InfestedTree01", "category": "other", "x": 1421.3, "z": 1875.6, "px": 2290.6, "py": 2368.1, "has_dungeon": false, "has_important": false}, {"id": 5097, "name": "InfestedTree01", "category": "other", "x": 3328.7, "z": 1520.9, "px": 2616.1, "py": 2307.6, "has_dungeon": false, "has_important": false}, {"id": 5098, "name": "InfestedTree01", "category": "other", "x": 3161.5, "z": 844.6, "px": 2587.6, "py": 2192.1, "has_dungeon": false, "has_important": false}, {"id": 5099, "name": "InfestedTree01", "category": "other", "x": -835.6, "z": -5703.4, "px": 1905.4, "py": 1074.6, "has_dungeon": false, "has_important": false}, {"id": 5100, "name": "InfestedTree01", "category": "other", "x": 274.5, "z": -3207.6, "px": 2094.8, "py": 1500.6, "has_dungeon": false, "has_important": false}, {"id": 5101, "name": "InfestedTree01", "category": "other", "x": -2299.6, "z": 4226.6, "px": 1655.5, "py": 2769.3, "has_dungeon": false, "has_important": false}, {"id": 5102, "name": "InfestedTree01", "category": "other", "x": 4442.9, "z": -3334.0, "px": 2806.3, "py": 1479.0, "has_dungeon": false, "has_important": false}, {"id": 5103, "name": "InfestedTree01", "category": "other", "x": 3605.4, "z": 686.0, "px": 2663.3, "py": 2165.1, "has_dungeon": false, "has_important": false}, {"id": 5104, "name": "InfestedTree01", "category": "other", "x": 4153.8, "z": 2286.5, "px": 2756.9, "py": 2438.2, "has_dungeon": false, "has_important": false}, {"id": 5105, "name": "InfestedTree01", "category": "other", "x": 2685.5, "z": -5356.2, "px": 2506.3, "py": 1133.9, "has_dungeon": false, "has_important": false}, {"id": 5106, "name": "InfestedTree01", "category": "other", "x": -3139.7, "z": 344.2, "px": 1512.2, "py": 2106.7, "has_dungeon": false, "has_important": false}, {"id": 5107, "name": "InfestedTree01", "category": "other", "x": 724.0, "z": -2133.1, "px": 2171.6, "py": 1684.0, "has_dungeon": false, "has_important": false}, {"id": 5108, "name": "InfestedTree01", "category": "other", "x": 2662.7, "z": 18.3, "px": 2502.4, "py": 2051.1, "has_dungeon": false, "has_important": false}, {"id": 5109, "name": "InfestedTree01", "category": "other", "x": -1071.2, "z": -3817.5, "px": 1865.2, "py": 1396.5, "has_dungeon": false, "has_important": false}, {"id": 5110, "name": "InfestedTree01", "category": "other", "x": -1042.2, "z": -5799.8, "px": 1870.1, "py": 1058.2, "has_dungeon": false, "has_important": false}, {"id": 5111, "name": "InfestedTree01", "category": "other", "x": 1198.6, "z": -3557.4, "px": 2252.6, "py": 1440.9, "has_dungeon": false, "has_important": false}, {"id": 5112, "name": "InfestedTree01", "category": "other", "x": 1960.3, "z": 1615.3, "px": 2382.6, "py": 2323.7, "has_dungeon": false, "has_important": false}, {"id": 5113, "name": "InfestedTree01", "category": "other", "x": -4753.1, "z": 1205.8, "px": 1236.8, "py": 2253.8, "has_dungeon": false, "has_important": false}, {"id": 5114, "name": "InfestedTree01", "category": "other", "x": -2710.4, "z": 2132.0, "px": 1585.4, "py": 2411.9, "has_dungeon": false, "has_important": false}, {"id": 5115, "name": "InfestedTree01", "category": "other", "x": 2566.8, "z": -512.1, "px": 2486.1, "py": 1960.6, "has_dungeon": false, "has_important": false}, {"id": 5116, "name": "InfestedTree01", "category": "other", "x": -4491.0, "z": 1233.1, "px": 1281.5, "py": 2258.4, "has_dungeon": false, "has_important": false}, {"id": 5117, "name": "InfestedTree01", "category": "other", "x": 3449.2, "z": 4753.9, "px": 2636.7, "py": 2859.3, "has_dungeon": false, "has_important": false}, {"id": 5118, "name": "InfestedTree01", "category": "other", "x": -2886.5, "z": 435.1, "px": 1555.4, "py": 2122.3, "has_dungeon": false, "has_important": false}, {"id": 5119, "name": "InfestedTree01", "category": "other", "x": 947.1, "z": 4394.2, "px": 2209.6, "py": 2797.9, "has_dungeon": false, "has_important": false}, {"id": 5120, "name": "InfestedTree01", "category": "other", "x": -5834.9, "z": -826.5, "px": 1052.2, "py": 1906.9, "has_dungeon": false, "has_important": false}, {"id": 5121, "name": "InfestedTree01", "category": "other", "x": -4792.5, "z": -382.9, "px": 1230.1, "py": 1982.7, "has_dungeon": false, "has_important": false}, {"id": 5122, "name": "InfestedTree01", "category": "other", "x": 975.1, "z": 2392.0, "px": 2214.4, "py": 2456.2, "has_dungeon": false, "has_important": false}, {"id": 5123, "name": "InfestedTree01", "category": "other", "x": -5686.4, "z": -338.2, "px": 1077.5, "py": 1990.3, "has_dungeon": false, "has_important": false}, {"id": 5124, "name": "InfestedTree01", "category": "other", "x": -5882.0, "z": -646.2, "px": 1044.1, "py": 1937.7, "has_dungeon": false, "has_important": false}, {"id": 5125, "name": "InfestedTree01", "category": "other", "x": -2263.0, "z": -706.2, "px": 1661.8, "py": 1927.5, "has_dungeon": false, "has_important": false}, {"id": 5126, "name": "InfestedTree01", "category": "other", "x": -5413.2, "z": -894.9, "px": 1124.1, "py": 1895.3, "has_dungeon": false, "has_important": false}, {"id": 5127, "name": "InfestedTree01", "category": "other", "x": 2725.5, "z": -153.6, "px": 2513.2, "py": 2021.8, "has_dungeon": false, "has_important": false}, {"id": 5128, "name": "InfestedTree01", "category": "other", "x": 4531.6, "z": -812.6, "px": 2821.4, "py": 1909.3, "has_dungeon": false, "has_important": false}, {"id": 5129, "name": "InfestedTree01", "category": "other", "x": -2447.4, "z": -1549.3, "px": 1630.3, "py": 1783.6, "has_dungeon": false, "has_important": false}, {"id": 5130, "name": "InfestedTree01", "category": "other", "x": -3590.2, "z": 3385.8, "px": 1435.3, "py": 2625.8, "has_dungeon": false, "has_important": false}, {"id": 5131, "name": "InfestedTree01", "category": "other", "x": -2175.3, "z": 4185.8, "px": 1676.7, "py": 2762.4, "has_dungeon": false, "has_important": false}, {"id": 5132, "name": "InfestedTree01", "category": "other", "x": 3370.9, "z": 1134.5, "px": 2623.3, "py": 2241.6, "has_dungeon": false, "has_important": false}, {"id": 5133, "name": "InfestedTree01", "category": "other", "x": 2734.7, "z": -883.3, "px": 2514.7, "py": 1897.3, "has_dungeon": false, "has_important": false}, {"id": 5134, "name": "InfestedTree01", "category": "other", "x": 4646.2, "z": -2874.4, "px": 2841.0, "py": 1557.4, "has_dungeon": false, "has_important": false}, {"id": 5135, "name": "InfestedTree01", "category": "other", "x": 4905.8, "z": 2488.1, "px": 2885.3, "py": 2472.6, "has_dungeon": false, "has_important": false}, {"id": 5136, "name": "InfestedTree01", "category": "other", "x": -1105.1, "z": 5171.8, "px": 1859.4, "py": 2930.7, "has_dungeon": false, "has_important": false}, {"id": 5137, "name": "InfestedTree01", "category": "other", "x": 2392.2, "z": -1281.7, "px": 2456.3, "py": 1829.3, "has_dungeon": false, "has_important": false}, {"id": 5138, "name": "InfestedTree01", "category": "other", "x": 2437.2, "z": -777.1, "px": 2463.9, "py": 1915.4, "has_dungeon": false, "has_important": false}, {"id": 5139, "name": "InfestedTree01", "category": "other", "x": -4437.2, "z": 1136.2, "px": 1290.7, "py": 2241.9, "has_dungeon": false, "has_important": false}, {"id": 5140, "name": "InfestedTree01", "category": "other", "x": -1750.9, "z": 4568.5, "px": 1749.2, "py": 2827.7, "has_dungeon": false, "has_important": false}, {"id": 5141, "name": "InfestedTree01", "category": "other", "x": -3947.0, "z": 234.7, "px": 1374.4, "py": 2088.1, "has_dungeon": false, "has_important": false}, {"id": 5142, "name": "InfestedTree01", "category": "other", "x": -3092.9, "z": 666.3, "px": 1520.1, "py": 2161.7, "has_dungeon": false, "has_important": false}, {"id": 5143, "name": "InfestedTree01", "category": "other", "x": 1641.3, "z": -5241.9, "px": 2328.1, "py": 1153.4, "has_dungeon": false, "has_important": false}, {"id": 5144, "name": "InfestedTree01", "category": "other", "x": 41.7, "z": 2454.7, "px": 2055.1, "py": 2466.9, "has_dungeon": false, "has_important": false}, {"id": 5145, "name": "InfestedTree01", "category": "other", "x": 3084.1, "z": -583.3, "px": 2574.4, "py": 1948.5, "has_dungeon": false, "has_important": false}, {"id": 5146, "name": "InfestedTree01", "category": "other", "x": -4442.5, "z": 530.8, "px": 1289.8, "py": 2138.6, "has_dungeon": false, "has_important": false}, {"id": 5147, "name": "InfestedTree01", "category": "other", "x": -3455.5, "z": 2608.4, "px": 1458.3, "py": 2493.2, "has_dungeon": false, "has_important": false}, {"id": 5148, "name": "InfestedTree01", "category": "other", "x": 140.5, "z": 4208.6, "px": 2072.0, "py": 2766.3, "has_dungeon": false, "has_important": false}, {"id": 5149, "name": "InfestedTree01", "category": "other", "x": -67.1, "z": 2439.8, "px": 2036.5, "py": 2464.4, "has_dungeon": false, "has_important": false}, {"id": 5150, "name": "InfestedTree01", "category": "other", "x": -2499.0, "z": -1703.8, "px": 1621.5, "py": 1757.2, "has_dungeon": false, "has_important": false}, {"id": 5151, "name": "InfestedTree01", "category": "other", "x": -3573.1, "z": 2865.8, "px": 1438.2, "py": 2537.1, "has_dungeon": false, "has_important": false}, {"id": 5152, "name": "InfestedTree01", "category": "other", "x": -3692.5, "z": -4281.4, "px": 1417.8, "py": 1317.3, "has_dungeon": false, "has_important": false}, {"id": 5153, "name": "InfestedTree01", "category": "other", "x": -5038.3, "z": -3213.4, "px": 1188.1, "py": 1499.6, "has_dungeon": false, "has_important": false}, {"id": 5154, "name": "InfestedTree01", "category": "other", "x": 1589.9, "z": 2347.3, "px": 2319.3, "py": 2448.6, "has_dungeon": false, "has_important": false}, {"id": 5155, "name": "InfestedTree01", "category": "other", "x": 4790.0, "z": -466.1, "px": 2865.5, "py": 1968.5, "has_dungeon": false, "has_important": false}, {"id": 5156, "name": "InfestedTree01", "category": "other", "x": 4904.2, "z": 2414.2, "px": 2885.0, "py": 2460.0, "has_dungeon": false, "has_important": false}, {"id": 5157, "name": "InfestedTree01", "category": "other", "x": 5805.8, "z": 1447.3, "px": 3038.9, "py": 2295.0, "has_dungeon": false, "has_important": false}, {"id": 5158, "name": "InfestedTree01", "category": "other", "x": 2421.6, "z": 4501.1, "px": 2461.3, "py": 2816.2, "has_dungeon": false, "has_important": false}, {"id": 5159, "name": "InfestedTree01", "category": "other", "x": -2108.9, "z": 4750.5, "px": 1688.1, "py": 2858.8, "has_dungeon": false, "has_important": false}, {"id": 5160, "name": "InfestedTree01", "category": "other", "x": -1723.2, "z": 4458.6, "px": 1753.9, "py": 2808.9, "has_dungeon": false, "has_important": false}, {"id": 5161, "name": "InfestedTree01", "category": "other", "x": -5295.3, "z": 1859.1, "px": 1144.3, "py": 2365.3, "has_dungeon": false, "has_important": false}, {"id": 5162, "name": "InfestedTree01", "category": "other", "x": 2886.4, "z": -3271.1, "px": 2540.6, "py": 1489.7, "has_dungeon": false, "has_important": false}, {"id": 5163, "name": "InfestedTree01", "category": "other", "x": -3666.2, "z": 26.5, "px": 1422.3, "py": 2052.5, "has_dungeon": false, "has_important": false}, {"id": 5164, "name": "InfestedTree01", "category": "other", "x": -4429.4, "z": 949.5, "px": 1292.0, "py": 2210.0, "has_dungeon": false, "has_important": false}, {"id": 5165, "name": "InfestedTree01", "category": "other", "x": 4312.2, "z": -3026.9, "px": 2783.9, "py": 1531.4, "has_dungeon": false, "has_important": false}, {"id": 5166, "name": "InfestedTree01", "category": "other", "x": 2043.5, "z": -3276.1, "px": 2396.8, "py": 1488.9, "has_dungeon": false, "has_important": false}, {"id": 5167, "name": "InfestedTree01", "category": "other", "x": 5563.2, "z": 904.9, "px": 2997.5, "py": 2202.4, "has_dungeon": false, "has_important": false}, {"id": 5168, "name": "InfestedTree01", "category": "other", "x": 2736.7, "z": -5298.2, "px": 2515.1, "py": 1143.8, "has_dungeon": false, "has_important": false}, {"id": 5169, "name": "InfestedTree01", "category": "other", "x": -573.4, "z": -4082.4, "px": 1950.1, "py": 1351.3, "has_dungeon": false, "has_important": false}, {"id": 5170, "name": "InfestedTree01", "category": "other", "x": -1817.1, "z": -2959.4, "px": 1737.9, "py": 1542.9, "has_dungeon": false, "has_important": false}, {"id": 5171, "name": "InfestedTree01", "category": "other", "x": -1130.9, "z": -3761.2, "px": 1855.0, "py": 1406.1, "has_dungeon": false, "has_important": false}, {"id": 5172, "name": "InfestedTree01", "category": "other", "x": 2476.7, "z": -1029.7, "px": 2470.7, "py": 1872.3, "has_dungeon": false, "has_important": false}, {"id": 5173, "name": "InfestedTree01", "category": "other", "x": 4517.6, "z": -2738.1, "px": 2819.0, "py": 1580.7, "has_dungeon": false, "has_important": false}, {"id": 5174, "name": "InfestedTree01", "category": "other", "x": 3753.8, "z": 521.1, "px": 2688.6, "py": 2136.9, "has_dungeon": false, "has_important": false}, {"id": 5175, "name": "InfestedTree01", "category": "other", "x": -3832.7, "z": -4293.9, "px": 1393.9, "py": 1315.2, "has_dungeon": false, "has_important": false}, {"id": 5176, "name": "InfestedTree01", "category": "other", "x": -2536.7, "z": -461.4, "px": 1615.1, "py": 1969.3, "has_dungeon": false, "has_important": false}, {"id": 5177, "name": "InfestedTree01", "category": "other", "x": 4086.2, "z": 499.6, "px": 2745.4, "py": 2133.3, "has_dungeon": false, "has_important": false}, {"id": 5178, "name": "InfestedTree01", "category": "other", "x": 1648.9, "z": -5161.3, "px": 2329.4, "py": 1167.1, "has_dungeon": false, "has_important": false}, {"id": 5179, "name": "InfestedTree01", "category": "other", "x": -4355.1, "z": 750.7, "px": 1304.7, "py": 2176.1, "has_dungeon": false, "has_important": false}, {"id": 5180, "name": "InfestedTree01", "category": "other", "x": -4820.4, "z": -653.9, "px": 1225.3, "py": 1936.4, "has_dungeon": false, "has_important": false}, {"id": 5181, "name": "InfestedTree01", "category": "other", "x": -5838.4, "z": -711.2, "px": 1051.6, "py": 1926.6, "has_dungeon": false, "has_important": false}, {"id": 5182, "name": "InfestedTree01", "category": "other", "x": -5200.1, "z": -563.5, "px": 1160.5, "py": 1951.8, "has_dungeon": false, "has_important": false}, {"id": 5183, "name": "InfestedTree01", "category": "other", "x": 3513.9, "z": 1225.4, "px": 2647.7, "py": 2257.1, "has_dungeon": false, "has_important": false}, {"id": 5184, "name": "InfestedTree01", "category": "other", "x": 2342.7, "z": 4077.9, "px": 2447.8, "py": 2744.0, "has_dungeon": false, "has_important": false}, {"id": 5185, "name": "InfestedTree01", "category": "other", "x": 2606.3, "z": -2408.9, "px": 2492.8, "py": 1636.9, "has_dungeon": false, "has_important": false}, {"id": 5186, "name": "InfestedTree01", "category": "other", "x": -3526.7, "z": 126.4, "px": 1446.1, "py": 2069.6, "has_dungeon": false, "has_important": false}, {"id": 5187, "name": "InfestedTree01", "category": "other", "x": 3760.0, "z": 559.6, "px": 2689.7, "py": 2143.5, "has_dungeon": false, "has_important": false}, {"id": 5188, "name": "InfestedTree01", "category": "other", "x": -4332.6, "z": 1397.5, "px": 1308.6, "py": 2286.5, "has_dungeon": false, "has_important": false}, {"id": 5189, "name": "InfestedTree01", "category": "other", "x": -462.0, "z": -3708.6, "px": 1969.2, "py": 1415.1, "has_dungeon": false, "has_important": false}, {"id": 5190, "name": "InfestedTree01", "category": "other", "x": -4463.6, "z": 3303.9, "px": 1286.2, "py": 2611.9, "has_dungeon": false, "has_important": false}, {"id": 5191, "name": "InfestedTree01", "category": "other", "x": 2123.4, "z": -3266.5, "px": 2410.4, "py": 1490.5, "has_dungeon": false, "has_important": false}, {"id": 5192, "name": "InfestedTree01", "category": "other", "x": 182.3, "z": 4302.1, "px": 2079.1, "py": 2782.2, "has_dungeon": false, "has_important": false}, {"id": 5193, "name": "InfestedTree01", "category": "other", "x": -2472.3, "z": 5110.9, "px": 1626.1, "py": 2920.3, "has_dungeon": false, "has_important": false}, {"id": 5194, "name": "InfestedTree01", "category": "other", "x": -512.6, "z": -4051.6, "px": 1960.5, "py": 1356.5, "has_dungeon": false, "has_important": false}, {"id": 5195, "name": "InfestedTree01", "category": "other", "x": -4234.2, "z": 1171.3, "px": 1325.4, "py": 2247.9, "has_dungeon": false, "has_important": false}, {"id": 5196, "name": "InfestedTree01", "category": "other", "x": -5700.7, "z": -432.3, "px": 1075.1, "py": 1974.2, "has_dungeon": false, "has_important": false}, {"id": 5197, "name": "InfestedTree01", "category": "other", "x": 3955.5, "z": 725.1, "px": 2723.1, "py": 2171.8, "has_dungeon": false, "has_important": false}, {"id": 5198, "name": "InfestedTree01", "category": "other", "x": 4612.1, "z": -2866.1, "px": 2835.1, "py": 1558.9, "has_dungeon": false, "has_important": false}, {"id": 5199, "name": "InfestedTree01", "category": "other", "x": -176.6, "z": 2388.4, "px": 2017.9, "py": 2455.6, "has_dungeon": false, "has_important": false}, {"id": 5200, "name": "InfestedTree01", "category": "other", "x": 10.6, "z": 2710.0, "px": 2049.8, "py": 2510.5, "has_dungeon": false, "has_important": false}, {"id": 5201, "name": "InfestedTree01", "category": "other", "x": -3910.3, "z": 3595.6, "px": 1380.6, "py": 2661.6, "has_dungeon": false, "has_important": false}, {"id": 5202, "name": "InfestedTree01", "category": "other", "x": 2294.6, "z": -5480.5, "px": 2439.6, "py": 1112.7, "has_dungeon": false, "has_important": false}, {"id": 5203, "name": "InfestedTree01", "category": "other", "x": -3465.0, "z": 3460.0, "px": 1456.6, "py": 2638.5, "has_dungeon": false, "has_important": false}, {"id": 5204, "name": "InfestedTree01", "category": "other", "x": -2111.7, "z": 4784.8, "px": 1687.6, "py": 2864.6, "has_dungeon": false, "has_important": false}, {"id": 5205, "name": "InfestedTree01", "category": "other", "x": -459.3, "z": -2008.2, "px": 1969.6, "py": 1705.3, "has_dungeon": false, "has_important": false}, {"id": 5206, "name": "InfestedTree01", "category": "other", "x": 2245.2, "z": -3024.8, "px": 2431.2, "py": 1531.8, "has_dungeon": false, "has_important": false}, {"id": 5207, "name": "InfestedTree01", "category": "other", "x": -3328.8, "z": 150.2, "px": 1479.9, "py": 2073.6, "has_dungeon": false, "has_important": false}, {"id": 10163, "name": "LeviathanLava", "category": "other", "x": -2516.2, "z": -8693.8, "px": 1618.6, "py": 564.3, "has_dungeon": false, "has_important": false}, {"id": 10164, "name": "LeviathanLava", "category": "other", "x": 1158.1, "z": -9260.9, "px": 2245.6, "py": 467.5, "has_dungeon": false, "has_important": false}, {"id": 10165, "name": "LeviathanLava", "category": "other", "x": -2294.3, "z": -8828.1, "px": 1656.4, "py": 541.3, "has_dungeon": false, "has_important": false}, {"id": 10166, "name": "LeviathanLava", "category": "other", "x": -2502.7, "z": -8499.4, "px": 1620.9, "py": 597.4, "has_dungeon": false, "has_important": false}, {"id": 10167, "name": "LeviathanLava", "category": "other", "x": -395.5, "z": -9803.7, "px": 1980.5, "py": 374.8, "has_dungeon": false, "has_important": false}, {"id": 10168, "name": "LeviathanLava", "category": "other", "x": -886.8, "z": -8912.7, "px": 1896.7, "py": 526.9, "has_dungeon": false, "has_important": false}, {"id": 10169, "name": "LeviathanLava", "category": "other", "x": -2058.6, "z": -8896.2, "px": 1696.7, "py": 529.7, "has_dungeon": false, "has_important": false}, {"id": 10170, "name": "LeviathanLava", "category": "other", "x": 3277.9, "z": -8463.1, "px": 2607.4, "py": 603.6, "has_dungeon": false, "has_important": false}, {"id": 10171, "name": "LeviathanLava", "category": "other", "x": -977.6, "z": -9365.4, "px": 1881.2, "py": 449.6, "has_dungeon": false, "has_important": false}, {"id": 10172, "name": "LeviathanLava", "category": "other", "x": -1167.1, "z": -9386.2, "px": 1848.8, "py": 446.1, "has_dungeon": false, "has_important": false}, {"id": 10173, "name": "LeviathanLava", "category": "other", "x": -567.0, "z": -8889.0, "px": 1951.2, "py": 530.9, "has_dungeon": false, "has_important": false}, {"id": 10174, "name": "LeviathanLava", "category": "other", "x": -1156.2, "z": -9361.7, "px": 1850.7, "py": 450.3, "has_dungeon": false, "has_important": false}, {"id": 10175, "name": "LeviathanLava", "category": "other", "x": -2128.3, "z": -9010.6, "px": 1684.8, "py": 510.2, "has_dungeon": false, "has_important": false}, {"id": 10176, "name": "LeviathanLava", "category": "other", "x": -366.7, "z": -9707.7, "px": 1985.4, "py": 391.2, "has_dungeon": false, "has_important": false}, {"id": 10177, "name": "LeviathanLava", "category": "other", "x": -1330.0, "z": -9651.7, "px": 1821.0, "py": 400.8, "has_dungeon": false, "has_important": false}, {"id": 10178, "name": "LeviathanLava", "category": "other", "x": -844.6, "z": -9660.0, "px": 1903.9, "py": 399.4, "has_dungeon": false, "has_important": false}, {"id": 10179, "name": "LeviathanLava", "category": "other", "x": 259.3, "z": -9290.7, "px": 2092.3, "py": 462.4, "has_dungeon": false, "has_important": false}, {"id": 10180, "name": "LeviathanLava", "category": "other", "x": -1086.2, "z": -9225.1, "px": 1862.6, "py": 473.6, "has_dungeon": false, "has_important": false}, {"id": 10181, "name": "LeviathanLava", "category": "other", "x": 810.7, "z": -9043.5, "px": 2186.4, "py": 504.6, "has_dungeon": false, "has_important": false}, {"id": 10182, "name": "LeviathanLava", "category": "other", "x": 3504.7, "z": -8207.1, "px": 2646.1, "py": 647.3, "has_dungeon": false, "has_important": false}, {"id": 10183, "name": "LeviathanLava", "category": "other", "x": 1553.1, "z": -9459.4, "px": 2313.1, "py": 433.6, "has_dungeon": false, "has_important": false}, {"id": 10184, "name": "LeviathanLava", "category": "other", "x": -2314.2, "z": -8942.5, "px": 1653.0, "py": 521.8, "has_dungeon": false, "has_important": false}, {"id": 10185, "name": "LeviathanLava", "category": "other", "x": -370.4, "z": -9026.1, "px": 1984.8, "py": 507.5, "has_dungeon": false, "has_important": false}, {"id": 10186, "name": "LeviathanLava", "category": "other", "x": -2410.5, "z": -8593.6, "px": 1636.6, "py": 581.4, "has_dungeon": false, "has_important": false}, {"id": 10187, "name": "LeviathanLava", "category": "other", "x": -941.8, "z": -9398.5, "px": 1887.3, "py": 444.0, "has_dungeon": false, "has_important": false}, {"id": 10188, "name": "LeviathanLava", "category": "other", "x": -785.4, "z": -9100.3, "px": 1914.0, "py": 494.9, "has_dungeon": false, "has_important": false}, {"id": 10189, "name": "LeviathanLava", "category": "other", "x": 532.2, "z": -9066.3, "px": 2138.8, "py": 500.7, "has_dungeon": false, "has_important": false}, {"id": 10190, "name": "LeviathanLava", "category": "other", "x": 2945.3, "z": -8975.4, "px": 2550.7, "py": 516.2, "has_dungeon": false, "has_important": false}, {"id": 10191, "name": "LeviathanLava", "category": "other", "x": 338.7, "z": -9091.8, "px": 2105.8, "py": 496.3, "has_dungeon": false, "has_important": false}, {"id": 10192, "name": "LeviathanLava", "category": "other", "x": -456.8, "z": -9646.2, "px": 1970.0, "py": 401.7, "has_dungeon": false, "has_important": false}, {"id": 10193, "name": "LeviathanLava", "category": "other", "x": -381.3, "z": -8880.6, "px": 1982.9, "py": 532.4, "has_dungeon": false, "has_important": false}, {"id": 10194, "name": "LeviathanLava", "category": "other", "x": -1995.3, "z": -8725.7, "px": 1707.5, "py": 558.8, "has_dungeon": false, "has_important": false}, {"id": 10195, "name": "LeviathanLava", "category": "other", "x": -785.3, "z": -9738.4, "px": 1914.0, "py": 386.0, "has_dungeon": false, "has_important": false}, {"id": 10196, "name": "LeviathanLava", "category": "other", "x": 1067.9, "z": -9235.1, "px": 2230.3, "py": 471.9, "has_dungeon": false, "has_important": false}, {"id": 10197, "name": "LeviathanLava", "category": "other", "x": -273.2, "z": -8832.8, "px": 2001.4, "py": 540.5, "has_dungeon": false, "has_important": false}, {"id": 10198, "name": "LeviathanLava", "category": "other", "x": -1006.9, "z": -9395.5, "px": 1876.2, "py": 444.5, "has_dungeon": false, "has_important": false}, {"id": 10199, "name": "LeviathanLava", "category": "other", "x": 2965.1, "z": -9155.6, "px": 2554.0, "py": 485.4, "has_dungeon": false, "has_important": false}, {"id": 10200, "name": "LeviathanLava", "category": "other", "x": 2884.7, "z": -9007.8, "px": 2540.3, "py": 510.7, "has_dungeon": false, "has_important": false}, {"id": 10201, "name": "LeviathanLava", "category": "other", "x": -1070.1, "z": -9722.2, "px": 1865.4, "py": 388.7, "has_dungeon": false, "has_important": false}, {"id": 10202, "name": "LeviathanLava", "category": "other", "x": -2189.4, "z": -8810.1, "px": 1674.3, "py": 544.4, "has_dungeon": false, "has_important": false}, {"id": 10203, "name": "LeviathanLava", "category": "other", "x": -2037.1, "z": -8749.1, "px": 1700.3, "py": 554.8, "has_dungeon": false, "has_important": false}, {"id": 10204, "name": "LeviathanLava", "category": "other", "x": -965.7, "z": -9531.5, "px": 1883.2, "py": 421.3, "has_dungeon": false, "has_important": false}, {"id": 10205, "name": "LeviathanLava", "category": "other", "x": -633.6, "z": -8897.0, "px": 1939.9, "py": 529.6, "has_dungeon": false, "has_important": false}, {"id": 10206, "name": "LeviathanLava", "category": "other", "x": 1106.3, "z": -9095.1, "px": 2236.8, "py": 495.8, "has_dungeon": false, "has_important": false}, {"id": 10207, "name": "LeviathanLava", "category": "other", "x": -697.2, "z": -9613.7, "px": 1929.0, "py": 407.3, "has_dungeon": false, "has_important": false}, {"id": 10208, "name": "LeviathanLava", "category": "other", "x": -4458.0, "z": -8012.4, "px": 1287.2, "py": 680.6, "has_dungeon": false, "has_important": false}, {"id": 10209, "name": "LeviathanLava", "category": "other", "x": 1388.2, "z": -9486.2, "px": 2284.9, "py": 429.0, "has_dungeon": false, "has_important": false}, {"id": 10210, "name": "LeviathanLava", "category": "other", "x": -2494.0, "z": -8620.4, "px": 1622.4, "py": 576.8, "has_dungeon": false, "has_important": false}, {"id": 10211, "name": "LeviathanLava", "category": "other", "x": 564.2, "z": -9004.2, "px": 2144.3, "py": 511.3, "has_dungeon": false, "has_important": false}, {"id": 10212, "name": "LeviathanLava", "category": "other", "x": -2312.6, "z": -8747.6, "px": 1653.3, "py": 555.1, "has_dungeon": false, "has_important": false}, {"id": 10213, "name": "LeviathanLava", "category": "other", "x": 249.0, "z": -9325.0, "px": 2090.5, "py": 456.5, "has_dungeon": false, "has_important": false}, {"id": 10214, "name": "LeviathanLava", "category": "other", "x": 1522.8, "z": -9530.1, "px": 2307.9, "py": 421.5, "has_dungeon": false, "has_important": false}, {"id": 10215, "name": "LeviathanLava", "category": "other", "x": -1006.1, "z": -9035.0, "px": 1876.3, "py": 506.0, "has_dungeon": false, "has_important": false}, {"id": 10216, "name": "LeviathanLava", "category": "other", "x": -532.7, "z": -9862.0, "px": 1957.1, "py": 364.9, "has_dungeon": false, "has_important": false}, {"id": 10217, "name": "LeviathanLava", "category": "other", "x": -1079.3, "z": -9584.8, "px": 1863.8, "py": 412.2, "has_dungeon": false, "has_important": false}, {"id": 10218, "name": "LeviathanLava", "category": "other", "x": 1235.0, "z": -9069.2, "px": 2258.8, "py": 500.2, "has_dungeon": false, "has_important": false}, {"id": 10219, "name": "LeviathanLava", "category": "other", "x": -2.2, "z": -8788.2, "px": 2047.6, "py": 548.1, "has_dungeon": false, "has_important": false}, {"id": 10220, "name": "LeviathanLava", "category": "other", "x": -766.7, "z": -9008.6, "px": 1917.1, "py": 510.5, "has_dungeon": false, "has_important": false}, {"id": 10221, "name": "LeviathanLava", "category": "other", "x": 1005.5, "z": -9083.9, "px": 2219.6, "py": 497.7, "has_dungeon": false, "has_important": false}, {"id": 10222, "name": "LeviathanLava", "category": "other", "x": -203.5, "z": -9740.9, "px": 2013.3, "py": 385.6, "has_dungeon": false, "has_important": false}, {"id": 10223, "name": "LeviathanLava", "category": "other", "x": -835.0, "z": -9776.7, "px": 1905.5, "py": 379.4, "has_dungeon": false, "has_important": false}, {"id": 10224, "name": "LeviathanLava", "category": "other", "x": 2808.9, "z": -9018.9, "px": 2527.4, "py": 508.8, "has_dungeon": false, "has_important": false}, {"id": 10225, "name": "LeviathanLava", "category": "other", "x": -1283.9, "z": -9601.4, "px": 1828.9, "py": 409.4, "has_dungeon": false, "has_important": false}, {"id": 10226, "name": "LeviathanLava", "category": "other", "x": -694.3, "z": -8765.8, "px": 1929.5, "py": 552.0, "has_dungeon": false, "has_important": false}, {"id": 10227, "name": "LeviathanLava", "category": "other", "x": -2242.3, "z": -8515.9, "px": 1665.3, "py": 594.6, "has_dungeon": false, "has_important": false}, {"id": 10228, "name": "LeviathanLava", "category": "other", "x": -1299.2, "z": -9555.4, "px": 1826.3, "py": 417.2, "has_dungeon": false, "has_important": false}, {"id": 10229, "name": "LeviathanLava", "category": "other", "x": -372.9, "z": -8951.6, "px": 1984.4, "py": 520.3, "has_dungeon": false, "has_important": false}, {"id": 10230, "name": "LeviathanLava", "category": "other", "x": 1163.1, "z": -9358.6, "px": 2246.5, "py": 450.8, "has_dungeon": false, "has_important": false}, {"id": 10231, "name": "LeviathanLava", "category": "other", "x": 126.0, "z": -8915.2, "px": 2069.5, "py": 526.5, "has_dungeon": false, "has_important": false}, {"id": 10232, "name": "LeviathanLava", "category": "other", "x": 1600.0, "z": -9275.3, "px": 2321.1, "py": 465.0, "has_dungeon": false, "has_important": false}, {"id": 10233, "name": "LeviathanLava", "category": "other", "x": 139.9, "z": -8852.8, "px": 2071.9, "py": 537.1, "has_dungeon": false, "has_important": false}, {"id": 10234, "name": "LeviathanLava", "category": "other", "x": 440.6, "z": -9045.5, "px": 2123.2, "py": 504.2, "has_dungeon": false, "has_important": false}, {"id": 10235, "name": "LeviathanLava", "category": "other", "x": -981.7, "z": -9659.0, "px": 1880.5, "py": 399.5, "has_dungeon": false, "has_important": false}, {"id": 10236, "name": "LeviathanLava", "category": "other", "x": 819.0, "z": -9203.8, "px": 2187.8, "py": 477.2, "has_dungeon": false, "has_important": false}, {"id": 10237, "name": "LeviathanLava", "category": "other", "x": 1136.2, "z": -9208.0, "px": 2241.9, "py": 476.5, "has_dungeon": false, "has_important": false}, {"id": 10238, "name": "LeviathanLava", "category": "other", "x": 505.2, "z": -9141.5, "px": 2134.2, "py": 487.9, "has_dungeon": false, "has_important": false}, {"id": 10239, "name": "LeviathanLava", "category": "other", "x": -504.7, "z": -9401.7, "px": 1961.9, "py": 443.4, "has_dungeon": false, "has_important": false}, {"id": 10240, "name": "LeviathanLava", "category": "other", "x": -810.1, "z": -9081.9, "px": 1909.7, "py": 498.0, "has_dungeon": false, "has_important": false}, {"id": 10241, "name": "LeviathanLava", "category": "other", "x": -2539.1, "z": -8492.9, "px": 1614.7, "py": 598.5, "has_dungeon": false, "has_important": false}, {"id": 10242, "name": "LeviathanLava", "category": "other", "x": 1015.9, "z": -9269.6, "px": 2221.4, "py": 466.0, "has_dungeon": false, "has_important": false}, {"id": 10243, "name": "LeviathanLava", "category": "other", "x": 959.7, "z": -9078.2, "px": 2211.8, "py": 498.7, "has_dungeon": false, "has_important": false}, {"id": 10244, "name": "LeviathanLava", "category": "other", "x": 3592.1, "z": -8496.8, "px": 2661.1, "py": 597.9, "has_dungeon": false, "has_important": false}, {"id": 10245, "name": "LeviathanLava", "category": "other", "x": -1262.5, "z": -9262.2, "px": 1832.5, "py": 467.3, "has_dungeon": false, "has_important": false}, {"id": 10246, "name": "LeviathanLava", "category": "other", "x": 954.7, "z": -8940.9, "px": 2210.9, "py": 522.1, "has_dungeon": false, "has_important": false}, {"id": 10247, "name": "LeviathanLava", "category": "other", "x": -658.1, "z": -9642.5, "px": 1935.7, "py": 402.3, "has_dungeon": false, "has_important": false}, {"id": 10248, "name": "LeviathanLava", "category": "other", "x": -1101.9, "z": -9078.4, "px": 1859.9, "py": 498.6, "has_dungeon": false, "has_important": false}, {"id": 10249, "name": "LeviathanLava", "category": "other", "x": -559.2, "z": -8758.4, "px": 1952.6, "py": 553.2, "has_dungeon": false, "has_important": false}, {"id": 10250, "name": "LeviathanLava", "category": "other", "x": -684.4, "z": -9021.9, "px": 1931.2, "py": 508.3, "has_dungeon": false, "has_important": false}, {"id": 10251, "name": "LeviathanLava", "category": "other", "x": 401.1, "z": -9070.0, "px": 2116.5, "py": 500.1, "has_dungeon": false, "has_important": false}, {"id": 10252, "name": "LeviathanLava", "category": "other", "x": 3647.4, "z": -8453.3, "px": 2670.5, "py": 605.3, "has_dungeon": false, "has_important": false}, {"id": 10253, "name": "LeviathanLava", "category": "other", "x": -572.7, "z": -9726.9, "px": 1950.3, "py": 387.9, "has_dungeon": false, "has_important": false}, {"id": 10254, "name": "LeviathanLava", "category": "other", "x": -661.1, "z": -9004.0, "px": 1935.2, "py": 511.3, "has_dungeon": false, "has_important": false}, {"id": 10255, "name": "LeviathanLava", "category": "other", "x": 776.5, "z": -8844.4, "px": 2180.5, "py": 538.6, "has_dungeon": false, "has_important": false}, {"id": 10256, "name": "LeviathanLava", "category": "other", "x": -952.4, "z": -9483.6, "px": 1885.5, "py": 429.5, "has_dungeon": false, "has_important": false}, {"id": 10257, "name": "LeviathanLava", "category": "other", "x": -564.3, "z": -9845.7, "px": 1951.7, "py": 367.7, "has_dungeon": false, "has_important": false}, {"id": 10258, "name": "LeviathanLava", "category": "other", "x": 510.7, "z": -9532.1, "px": 2135.2, "py": 421.2, "has_dungeon": false, "has_important": false}, {"id": 10259, "name": "LeviathanLava", "category": "other", "x": 2623.9, "z": -9145.6, "px": 2495.8, "py": 487.2, "has_dungeon": false, "has_important": false}, {"id": 10260, "name": "LeviathanLava", "category": "other", "x": 3517.2, "z": -8251.1, "px": 2648.3, "py": 639.8, "has_dungeon": false, "has_important": false}, {"id": 10261, "name": "LeviathanLava", "category": "other", "x": -2444.7, "z": -8941.4, "px": 1630.8, "py": 522.0, "has_dungeon": false, "has_important": false}, {"id": 10262, "name": "LeviathanLava", "category": "other", "x": -337.1, "z": -9711.8, "px": 1990.5, "py": 390.5, "has_dungeon": false, "has_important": false}, {"id": 896, "name": "Mistlands_DvergrBossEntrance1", "category": "other", "x": 7360.0, "z": -3840.0, "px": 3304.1, "py": 1392.6, "has_dungeon": true, "has_important": true}, {"id": 897, "name": "Mistlands_DvergrBossEntrance1", "category": "other", "x": 6976.0, "z": 1536.0, "px": 3238.6, "py": 2310.1, "has_dungeon": true, "has_important": true}, {"id": 898, "name": "Mistlands_DvergrBossEntrance1", "category": "other", "x": 8768.0, "z": -640.0, "px": 3544.4, "py": 1938.8, "has_dungeon": true, "has_important": true}, {"id": 899, "name": "Mistlands_DvergrBossEntrance1", "category": "other", "x": 3200.0, "z": 5440.0, "px": 2594.1, "py": 2976.4, "has_dungeon": true, "has_important": true}, {"id": 900, "name": "Mistlands_DvergrBossEntrance1", "category": "other", "x": -2176.0, "z": -7104.0, "px": 1676.6, "py": 835.6, "has_dungeon": true, "has_important": true}, {"id": 8025, "name": "Mistlands_Excavation1", "category": "other", "x": 7684.5, "z": -4542.3, "px": 3359.5, "py": 1272.8, "has_dungeon": false, "has_important": true}, {"id": 8026, "name": "Mistlands_Excavation1", "category": "other", "x": 7808.6, "z": -2315.8, "px": 3380.7, "py": 1652.8, "has_dungeon": false, "has_important": true}, {"id": 8027, "name": "Mistlands_Excavation1", "category": "other", "x": 8648.2, "z": -2743.6, "px": 3524.0, "py": 1579.8, "has_dungeon": false, "has_important": true}, {"id": 8028, "name": "Mistlands_Excavation1", "category": "other", "x": -7047.7, "z": 642.8, "px": 845.2, "py": 2157.7, "has_dungeon": false, "has_important": true}, {"id": 8029, "name": "Mistlands_Excavation1", "category": "other", "x": 4468.8, "z": -6985.4, "px": 2810.7, "py": 855.8, "has_dungeon": false, "has_important": true}, {"id": 8030, "name": "Mistlands_Excavation1", "category": "other", "x": 3255.1, "z": 6282.9, "px": 2603.5, "py": 3120.3, "has_dungeon": false, "has_important": true}, {"id": 8031, "name": "Mistlands_Excavation1", "category": "other", "x": 7306.1, "z": 4414.0, "px": 3294.9, "py": 2801.3, "has_dungeon": false, "has_important": true}, {"id": 8032, "name": "Mistlands_Excavation1", "category": "other", "x": -1275.4, "z": -6026.3, "px": 1830.3, "py": 1019.5, "has_dungeon": false, "has_important": true}, {"id": 8033, "name": "Mistlands_Excavation1", "category": "other", "x": -9086.1, "z": 951.4, "px": 497.3, "py": 2210.4, "has_dungeon": false, "has_important": true}, {"id": 8034, "name": "Mistlands_Excavation1", "category": "other", "x": 3451.1, "z": 5556.0, "px": 2637.0, "py": 2996.2, "has_dungeon": false, "has_important": true}, {"id": 8035, "name": "Mistlands_Excavation1", "category": "other", "x": 9153.3, "z": -1844.8, "px": 3610.2, "py": 1733.2, "has_dungeon": false, "has_important": true}, {"id": 8036, "name": "Mistlands_Excavation1", "category": "other", "x": -5239.5, "z": 5817.9, "px": 1153.8, "py": 3040.9, "has_dungeon": false, "has_important": true}, {"id": 8037, "name": "Mistlands_Excavation1", "category": "other", "x": -2807.6, "z": 6133.8, "px": 1568.8, "py": 3094.8, "has_dungeon": false, "has_important": true}, {"id": 8038, "name": "Mistlands_Excavation1", "category": "other", "x": 8507.2, "z": -958.8, "px": 3499.9, "py": 1884.4, "has_dungeon": false, "has_important": true}, {"id": 8039, "name": "Mistlands_Excavation1", "category": "other", "x": -2806.5, "z": -5755.0, "px": 1569.0, "py": 1065.8, "has_dungeon": false, "has_important": true}, {"id": 8040, "name": "Mistlands_Excavation1", "category": "other", "x": 5629.6, "z": 6022.5, "px": 3008.8, "py": 3075.8, "has_dungeon": false, "has_important": true}, {"id": 8041, "name": "Mistlands_Excavation1", "category": "other", "x": 8381.6, "z": 964.5, "px": 3478.5, "py": 2212.6, "has_dungeon": false, "has_important": true}, {"id": 8042, "name": "Mistlands_Excavation1", "category": "other", "x": -2868.4, "z": 6462.6, "px": 1558.5, "py": 3151.0, "has_dungeon": false, "has_important": true}, {"id": 8043, "name": "Mistlands_Excavation1", "category": "other", "x": -6857.8, "z": -1854.1, "px": 877.6, "py": 1731.6, "has_dungeon": false, "has_important": true}, {"id": 8044, "name": "Mistlands_Excavation1", "category": "other", "x": 9528.3, "z": 1611.5, "px": 3674.2, "py": 2323.0, "has_dungeon": false, "has_important": true}, {"id": 8045, "name": "Mistlands_Excavation1", "category": "other", "x": 4737.5, "z": 6008.2, "px": 2856.5, "py": 3073.4, "has_dungeon": false, "has_important": true}, {"id": 8046, "name": "Mistlands_Excavation1", "category": "other", "x": 5943.3, "z": 5824.3, "px": 3062.3, "py": 3042.0, "has_dungeon": false, "has_important": true}, {"id": 8047, "name": "Mistlands_Excavation1", "category": "other", "x": 9667.4, "z": 1608.9, "px": 3697.9, "py": 2322.6, "has_dungeon": false, "has_important": true}, {"id": 8048, "name": "Mistlands_Excavation1", "category": "other", "x": 5634.6, "z": 3466.8, "px": 3009.6, "py": 2639.7, "has_dungeon": false, "has_important": true}, {"id": 8049, "name": "Mistlands_Excavation1", "category": "other", "x": -6532.7, "z": 5633.6, "px": 933.1, "py": 3009.5, "has_dungeon": false, "has_important": true}, {"id": 8050, "name": "Mistlands_Excavation1", "category": "other", "x": 2809.1, "z": 5497.7, "px": 2527.4, "py": 2986.3, "has_dungeon": false, "has_important": true}, {"id": 8051, "name": "Mistlands_Excavation1", "category": "other", "x": 6907.9, "z": -3513.2, "px": 3226.9, "py": 1448.4, "has_dungeon": false, "has_important": true}, {"id": 8052, "name": "Mistlands_Excavation1", "category": "other", "x": 7562.7, "z": 4278.4, "px": 3338.7, "py": 2778.2, "has_dungeon": false, "has_important": true}, {"id": 8053, "name": "Mistlands_Excavation1", "category": "other", "x": 3908.6, "z": 5878.8, "px": 2715.1, "py": 3051.3, "has_dungeon": false, "has_important": true}, {"id": 8054, "name": "Mistlands_Excavation1", "category": "other", "x": 1344.5, "z": 7622.1, "px": 2277.5, "py": 3348.8, "has_dungeon": false, "has_important": true}, {"id": 8055, "name": "Mistlands_Excavation1", "category": "other", "x": 8005.2, "z": 2763.8, "px": 3414.2, "py": 2519.7, "has_dungeon": false, "has_important": true}, {"id": 8056, "name": "Mistlands_Excavation1", "category": "other", "x": 9354.2, "z": -1909.8, "px": 3644.5, "py": 1722.1, "has_dungeon": false, "has_important": true}, {"id": 8057, "name": "Mistlands_Excavation1", "category": "other", "x": 8314.4, "z": -3402.0, "px": 3467.0, "py": 1467.4, "has_dungeon": false, "has_important": true}, {"id": 8058, "name": "Mistlands_Excavation1", "category": "other", "x": 7235.1, "z": -129.9, "px": 3282.8, "py": 2025.8, "has_dungeon": false, "has_important": true}, {"id": 8059, "name": "Mistlands_Excavation1", "category": "other", "x": 9732.6, "z": -838.4, "px": 3709.0, "py": 1904.9, "has_dungeon": false, "has_important": true}, {"id": 8060, "name": "Mistlands_Excavation1", "category": "other", "x": 6388.6, "z": 2954.0, "px": 3138.3, "py": 2552.1, "has_dungeon": false, "has_important": true}, {"id": 8061, "name": "Mistlands_Excavation1", "category": "other", "x": -6473.5, "z": -3966.0, "px": 943.2, "py": 1371.1, "has_dungeon": false, "has_important": true}, {"id": 8062, "name": "Mistlands_Excavation1", "category": "other", "x": -9543.6, "z": 951.0, "px": 419.2, "py": 2210.3, "has_dungeon": false, "has_important": true}, {"id": 8063, "name": "Mistlands_Excavation1", "category": "other", "x": -1927.0, "z": -7109.1, "px": 1719.1, "py": 834.7, "has_dungeon": false, "has_important": true}, {"id": 8064, "name": "Mistlands_Excavation1", "category": "other", "x": -6211.9, "z": 3708.7, "px": 987.8, "py": 2681.0, "has_dungeon": false, "has_important": true}, {"id": 8065, "name": "Mistlands_Excavation2", "category": "other", "x": 3782.1, "z": -5887.4, "px": 2693.5, "py": 1043.2, "has_dungeon": false, "has_important": true}, {"id": 8066, "name": "Mistlands_Excavation2", "category": "other", "x": -5320.4, "z": 6068.3, "px": 1140.0, "py": 3083.7, "has_dungeon": false, "has_important": true}, {"id": 8067, "name": "Mistlands_Excavation2", "category": "other", "x": -393.3, "z": -6396.6, "px": 1980.9, "py": 956.3, "has_dungeon": false, "has_important": true}, {"id": 8068, "name": "Mistlands_Excavation2", "category": "other", "x": 1475.3, "z": -6452.1, "px": 2299.8, "py": 946.8, "has_dungeon": false, "has_important": true}, {"id": 8069, "name": "Mistlands_Excavation2", "category": "other", "x": -8636.0, "z": 2037.8, "px": 574.1, "py": 2395.8, "has_dungeon": false, "has_important": true}, {"id": 8070, "name": "Mistlands_Excavation2", "category": "other", "x": -7044.9, "z": 1204.9, "px": 845.7, "py": 2253.6, "has_dungeon": false, "has_important": true}, {"id": 8071, "name": "Mistlands_Excavation2", "category": "other", "x": -5699.7, "z": 3578.9, "px": 1075.3, "py": 2658.8, "has_dungeon": false, "has_important": true}, {"id": 8072, "name": "Mistlands_Excavation2", "category": "other", "x": -7224.3, "z": 3907.0, "px": 815.1, "py": 2714.8, "has_dungeon": false, "has_important": true}, {"id": 8073, "name": "Mistlands_Excavation2", "category": "other", "x": 9540.0, "z": 1789.1, "px": 3676.2, "py": 2353.3, "has_dungeon": false, "has_important": true}, {"id": 8074, "name": "Mistlands_Excavation2", "category": "other", "x": -8635.1, "z": 1288.5, "px": 574.3, "py": 2267.9, "has_dungeon": false, "has_important": true}, {"id": 8075, "name": "Mistlands_Excavation2", "category": "other", "x": 3894.0, "z": 6027.7, "px": 2712.6, "py": 3076.7, "has_dungeon": false, "has_important": true}, {"id": 8076, "name": "Mistlands_Excavation2", "category": "other", "x": 2179.7, "z": -6406.5, "px": 2420.0, "py": 954.6, "has_dungeon": false, "has_important": true}, {"id": 8077, "name": "Mistlands_Excavation2", "category": "other", "x": -1908.5, "z": 7235.3, "px": 1722.3, "py": 3282.8, "has_dungeon": false, "has_important": true}, {"id": 8078, "name": "Mistlands_Excavation2", "category": "other", "x": 8631.9, "z": 449.9, "px": 3521.2, "py": 2124.8, "has_dungeon": false, "has_important": true}, {"id": 8079, "name": "Mistlands_Excavation2", "category": "other", "x": 7178.6, "z": 4486.4, "px": 3273.1, "py": 2813.7, "has_dungeon": false, "has_important": true}, {"id": 8080, "name": "Mistlands_Excavation2", "category": "other", "x": 3846.4, "z": -6984.5, "px": 2704.5, "py": 856.0, "has_dungeon": false, "has_important": true}, {"id": 8081, "name": "Mistlands_Excavation2", "category": "other", "x": 7236.1, "z": -2176.0, "px": 3283.0, "py": 1676.6, "has_dungeon": false, "has_important": true}, {"id": 8082, "name": "Mistlands_Excavation2", "category": "other", "x": -1158.6, "z": -5956.1, "px": 1850.3, "py": 1031.5, "has_dungeon": false, "has_important": true}, {"id": 8083, "name": "Mistlands_Excavation2", "category": "other", "x": -7028.9, "z": -2113.9, "px": 848.4, "py": 1687.2, "has_dungeon": false, "has_important": true}, {"id": 8084, "name": "Mistlands_Excavation2", "category": "other", "x": 8756.1, "z": 564.6, "px": 3542.4, "py": 2144.4, "has_dungeon": false, "has_important": true}, {"id": 8085, "name": "Mistlands_Excavation2", "category": "other", "x": 2378.7, "z": -6465.8, "px": 2454.0, "py": 944.5, "has_dungeon": false, "has_important": true}, {"id": 8086, "name": "Mistlands_Excavation2", "category": "other", "x": 4415.9, "z": -6012.9, "px": 2801.6, "py": 1021.8, "has_dungeon": false, "has_important": true}, {"id": 8087, "name": "Mistlands_Excavation2", "category": "other", "x": 266.8, "z": 7100.9, "px": 2093.5, "py": 3259.9, "has_dungeon": false, "has_important": true}, {"id": 8088, "name": "Mistlands_Excavation2", "category": "other", "x": 197.6, "z": 7223.1, "px": 2081.7, "py": 3280.7, "has_dungeon": false, "has_important": true}, {"id": 8089, "name": "Mistlands_Excavation2", "category": "other", "x": -2167.1, "z": 7156.8, "px": 1678.1, "py": 3269.4, "has_dungeon": false, "has_important": true}, {"id": 8090, "name": "Mistlands_Excavation2", "category": "other", "x": 3905.5, "z": -5505.4, "px": 2714.5, "py": 1108.4, "has_dungeon": false, "has_important": true}, {"id": 8091, "name": "Mistlands_Excavation2", "category": "other", "x": -7432.2, "z": 1163.5, "px": 779.6, "py": 2246.6, "has_dungeon": false, "has_important": true}, {"id": 8092, "name": "Mistlands_Excavation2", "category": "other", "x": -835.0, "z": -7482.1, "px": 1905.5, "py": 771.1, "has_dungeon": false, "has_important": true}, {"id": 8093, "name": "Mistlands_Excavation2", "category": "other", "x": -2045.3, "z": 7358.7, "px": 1698.9, "py": 3303.9, "has_dungeon": false, "has_important": true}, {"id": 8094, "name": "Mistlands_Excavation2", "category": "other", "x": 3721.6, "z": -5574.1, "px": 2683.2, "py": 1096.7, "has_dungeon": false, "has_important": true}, {"id": 8095, "name": "Mistlands_Excavation2", "category": "other", "x": 6197.6, "z": -4550.0, "px": 3105.7, "py": 1271.5, "has_dungeon": false, "has_important": true}, {"id": 8096, "name": "Mistlands_Excavation2", "category": "other", "x": 11.4, "z": 7429.3, "px": 2049.9, "py": 3315.9, "has_dungeon": false, "has_important": true}, {"id": 8097, "name": "Mistlands_Excavation2", "category": "other", "x": -3206.5, "z": 5318.2, "px": 1500.8, "py": 2955.6, "has_dungeon": false, "has_important": true}, {"id": 8098, "name": "Mistlands_Excavation2", "category": "other", "x": 4225.1, "z": -5451.5, "px": 2769.1, "py": 1117.6, "has_dungeon": false, "has_important": true}, {"id": 8099, "name": "Mistlands_Excavation2", "category": "other", "x": -7096.6, "z": 1333.7, "px": 836.8, "py": 2275.6, "has_dungeon": false, "has_important": true}, {"id": 8100, "name": "Mistlands_Excavation2", "category": "other", "x": 6984.1, "z": -774.0, "px": 3240.0, "py": 1915.9, "has_dungeon": false, "has_important": true}, {"id": 8101, "name": "Mistlands_Excavation2", "category": "other", "x": 2946.3, "z": 6714.7, "px": 2550.8, "py": 3194.0, "has_dungeon": false, "has_important": true}, {"id": 8102, "name": "Mistlands_Excavation2", "category": "other", "x": -6652.7, "z": 5757.6, "px": 912.6, "py": 3030.6, "has_dungeon": false, "has_important": true}, {"id": 8103, "name": "Mistlands_Excavation2", "category": "other", "x": -8260.5, "z": -391.8, "px": 638.2, "py": 1981.1, "has_dungeon": false, "has_important": true}, {"id": 8104, "name": "Mistlands_Excavation2", "category": "other", "x": 4806.9, "z": 6199.7, "px": 2868.4, "py": 3106.1, "has_dungeon": false, "has_important": true}, {"id": 8105, "name": "Mistlands_Excavation3", "category": "other", "x": 8256.8, "z": -3205.0, "px": 3457.2, "py": 1501.0, "has_dungeon": false, "has_important": true}, {"id": 8106, "name": "Mistlands_Excavation3", "category": "other", "x": 8755.7, "z": -1073.3, "px": 3542.3, "py": 1864.8, "has_dungeon": false, "has_important": true}, {"id": 8107, "name": "Mistlands_Excavation3", "category": "other", "x": -8526.2, "z": -8.1, "px": 592.9, "py": 2046.6, "has_dungeon": false, "has_important": true}, {"id": 8108, "name": "Mistlands_Excavation3", "category": "other", "x": 6842.8, "z": 5301.4, "px": 3215.8, "py": 2952.8, "has_dungeon": false, "has_important": true}, {"id": 8109, "name": "Mistlands_Excavation3", "category": "other", "x": -1729.3, "z": -7217.3, "px": 1752.9, "py": 816.2, "has_dungeon": false, "has_important": true}, {"id": 8110, "name": "Mistlands_Excavation3", "category": "other", "x": -8500.4, "z": 115.2, "px": 597.3, "py": 2067.7, "has_dungeon": false, "has_important": true}, {"id": 8111, "name": "Mistlands_Excavation3", "category": "other", "x": -1786.1, "z": -7039.0, "px": 1743.2, "py": 846.7, "has_dungeon": false, "has_important": true}, {"id": 8112, "name": "Mistlands_Excavation3", "category": "other", "x": 3142.9, "z": 6406.4, "px": 2584.4, "py": 3141.4, "has_dungeon": false, "has_important": true}, {"id": 8113, "name": "Mistlands_Excavation3", "category": "other", "x": 8371.2, "z": -1034.0, "px": 3476.7, "py": 1871.5, "has_dungeon": false, "has_important": true}, {"id": 8114, "name": "Mistlands_Excavation3", "category": "other", "x": -1923.0, "z": 7483.7, "px": 1719.8, "py": 3325.2, "has_dungeon": false, "has_important": true}, {"id": 8115, "name": "Mistlands_Excavation3", "category": "other", "x": 4857.0, "z": -6089.8, "px": 2876.9, "py": 1008.7, "has_dungeon": false, "has_important": true}, {"id": 8116, "name": "Mistlands_Excavation3", "category": "other", "x": -6286.2, "z": -1083.7, "px": 975.2, "py": 1863.0, "has_dungeon": false, "has_important": true}, {"id": 8117, "name": "Mistlands_Excavation3", "category": "other", "x": 3261.3, "z": 6602.3, "px": 2604.6, "py": 3174.8, "has_dungeon": false, "has_important": true}, {"id": 8118, "name": "Mistlands_Excavation3", "category": "other", "x": 7541.8, "z": -2424.1, "px": 3335.1, "py": 1634.3, "has_dungeon": false, "has_important": true}, {"id": 8119, "name": "Mistlands_Excavation3", "category": "other", "x": 6322.0, "z": 4218.0, "px": 3127.0, "py": 2767.9, "has_dungeon": false, "has_important": true}, {"id": 8120, "name": "Mistlands_Excavation3", "category": "other", "x": 3277.4, "z": 7090.3, "px": 2607.3, "py": 3258.1, "has_dungeon": false, "has_important": true}, {"id": 8121, "name": "Mistlands_Excavation3", "category": "other", "x": -4429.1, "z": -4401.2, "px": 1292.1, "py": 1296.9, "has_dungeon": false, "has_important": true}, {"id": 8122, "name": "Mistlands_Excavation3", "category": "other", "x": 1976.4, "z": -6601.1, "px": 2385.3, "py": 921.4, "has_dungeon": false, "has_important": true}, {"id": 8123, "name": "Mistlands_Excavation3", "category": "other", "x": 3319.5, "z": 5628.3, "px": 2614.5, "py": 3008.6, "has_dungeon": false, "has_important": true}, {"id": 8124, "name": "Mistlands_Excavation3", "category": "other", "x": 5703.9, "z": 6198.7, "px": 3021.5, "py": 3105.9, "has_dungeon": false, "has_important": true}, {"id": 8125, "name": "Mistlands_Excavation3", "category": "other", "x": 7879.3, "z": 2802.0, "px": 3392.7, "py": 2526.2, "has_dungeon": false, "has_important": true}, {"id": 8126, "name": "Mistlands_Excavation3", "category": "other", "x": 314.1, "z": -7245.6, "px": 2101.6, "py": 811.4, "has_dungeon": false, "has_important": true}, {"id": 8127, "name": "Mistlands_Excavation3", "category": "other", "x": 8390.0, "z": 1079.3, "px": 3479.9, "py": 2232.2, "has_dungeon": false, "has_important": true}, {"id": 8128, "name": "Mistlands_Excavation3", "category": "other", "x": 316.2, "z": 7435.3, "px": 2102.0, "py": 3317.0, "has_dungeon": false, "has_important": true}, {"id": 8129, "name": "Mistlands_Excavation3", "category": "other", "x": -7050.4, "z": -1550.8, "px": 844.7, "py": 1783.3, "has_dungeon": false, "has_important": true}, {"id": 8130, "name": "Mistlands_Excavation3", "category": "other", "x": 7925.9, "z": 1977.3, "px": 3400.7, "py": 2385.5, "has_dungeon": false, "has_important": true}, {"id": 8131, "name": "Mistlands_Excavation3", "category": "other", "x": 7886.1, "z": 2306.6, "px": 3393.9, "py": 2441.7, "has_dungeon": false, "has_important": true}, {"id": 8132, "name": "Mistlands_Excavation3", "category": "other", "x": 6084.4, "z": -4553.6, "px": 3086.4, "py": 1270.9, "has_dungeon": false, "has_important": true}, {"id": 8133, "name": "Mistlands_Excavation3", "category": "other", "x": 5254.4, "z": 6131.6, "px": 2944.8, "py": 3094.5, "has_dungeon": false, "has_important": true}, {"id": 8134, "name": "Mistlands_Excavation3", "category": "other", "x": -6025.9, "z": -1024.6, "px": 1019.6, "py": 1873.1, "has_dungeon": false, "has_important": true}, {"id": 8135, "name": "Mistlands_Excavation3", "category": "other", "x": 3846.1, "z": -6028.7, "px": 2704.4, "py": 1019.1, "has_dungeon": false, "has_important": true}, {"id": 8136, "name": "Mistlands_Excavation3", "category": "other", "x": -1909.2, "z": 6854.3, "px": 1722.2, "py": 3217.8, "has_dungeon": false, "has_important": true}, {"id": 8137, "name": "Mistlands_Excavation3", "category": "other", "x": 2237.2, "z": -6518.3, "px": 2429.8, "py": 935.5, "has_dungeon": false, "has_important": true}, {"id": 8138, "name": "Mistlands_Excavation3", "category": "other", "x": 8708.3, "z": -3320.1, "px": 3534.2, "py": 1481.4, "has_dungeon": false, "has_important": true}, {"id": 8139, "name": "Mistlands_Excavation3", "category": "other", "x": -6526.1, "z": 3137.6, "px": 934.2, "py": 2583.5, "has_dungeon": false, "has_important": true}, {"id": 8140, "name": "Mistlands_Excavation3", "category": "other", "x": 8882.2, "z": 446.4, "px": 3563.9, "py": 2124.2, "has_dungeon": false, "has_important": true}, {"id": 8141, "name": "Mistlands_Excavation3", "category": "other", "x": -5817.6, "z": -5432.3, "px": 1055.1, "py": 1120.9, "has_dungeon": false, "has_important": true}, {"id": 8142, "name": "Mistlands_Excavation3", "category": "other", "x": 7820.8, "z": 4211.8, "px": 3382.7, "py": 2766.8, "has_dungeon": false, "has_important": true}, {"id": 8143, "name": "Mistlands_Excavation3", "category": "other", "x": 3068.7, "z": 7097.4, "px": 2571.7, "py": 3259.3, "has_dungeon": false, "has_important": true}, {"id": 8144, "name": "Mistlands_Excavation3", "category": "other", "x": 9466.9, "z": -1662.3, "px": 3663.7, "py": 1764.3, "has_dungeon": false, "has_important": true}, {"id": 206, "name": "Mistlands_Giant1", "category": "other", "x": 8454.4, "z": -588.8, "px": 3490.9, "py": 1947.5, "has_dungeon": false, "has_important": true}, {"id": 207, "name": "Mistlands_Giant1", "category": "other", "x": -566.4, "z": -6838.4, "px": 1951.3, "py": 880.9, "has_dungeon": false, "has_important": true}, {"id": 208, "name": "Mistlands_Giant1", "category": "other", "x": 7340.1, "z": 4618.3, "px": 3300.7, "py": 2836.2, "has_dungeon": false, "has_important": true}, {"id": 209, "name": "Mistlands_Giant1", "category": "other", "x": 243.3, "z": -7413.0, "px": 2089.5, "py": 782.8, "has_dungeon": false, "has_important": true}, {"id": 210, "name": "Mistlands_Giant1", "category": "other", "x": 318.8, "z": -7120.9, "px": 2102.4, "py": 832.7, "has_dungeon": false, "has_important": true}, {"id": 211, "name": "Mistlands_Giant1", "category": "other", "x": 1201.0, "z": 7687.7, "px": 2253.0, "py": 3360.0, "has_dungeon": false, "has_important": true}, {"id": 212, "name": "Mistlands_Giant1", "category": "other", "x": 5956.4, "z": -4276.2, "px": 3064.6, "py": 1318.2, "has_dungeon": false, "has_important": true}, {"id": 213, "name": "Mistlands_Giant1", "category": "other", "x": 2483.2, "z": -5552.8, "px": 2471.8, "py": 1100.3, "has_dungeon": false, "has_important": true}, {"id": 214, "name": "Mistlands_Giant1", "category": "other", "x": -8198.6, "z": -3269.9, "px": 648.8, "py": 1489.9, "has_dungeon": false, "has_important": true}, {"id": 215, "name": "Mistlands_Giant1", "category": "other", "x": 148.8, "z": 7149.4, "px": 2073.4, "py": 3268.2, "has_dungeon": false, "has_important": true}, {"id": 216, "name": "Mistlands_Giant1", "category": "other", "x": -8559.4, "z": 1399.3, "px": 587.2, "py": 2286.8, "has_dungeon": false, "has_important": true}, {"id": 217, "name": "Mistlands_Giant1", "category": "other", "x": 707.9, "z": 6639.0, "px": 2168.8, "py": 3181.1, "has_dungeon": false, "has_important": true}, {"id": 218, "name": "Mistlands_Giant1", "category": "other", "x": -7435.4, "z": 4501.0, "px": 779.0, "py": 2816.2, "has_dungeon": false, "has_important": true}, {"id": 219, "name": "Mistlands_Giant1", "category": "other", "x": 7533.9, "z": -2194.8, "px": 3333.8, "py": 1673.4, "has_dungeon": false, "has_important": true}, {"id": 220, "name": "Mistlands_Giant1", "category": "other", "x": 9619.1, "z": -1858.6, "px": 3689.7, "py": 1730.8, "has_dungeon": false, "has_important": true}, {"id": 221, "name": "Mistlands_Giant1", "category": "other", "x": 8132.4, "z": 2428.2, "px": 3435.9, "py": 2462.4, "has_dungeon": false, "has_important": true}, {"id": 222, "name": "Mistlands_Giant1", "category": "other", "x": 8713.1, "z": -571.5, "px": 3535.0, "py": 1950.5, "has_dungeon": false, "has_important": true}, {"id": 223, "name": "Mistlands_Giant1", "category": "other", "x": -1651.3, "z": -7044.6, "px": 1766.2, "py": 845.7, "has_dungeon": false, "has_important": true}, {"id": 224, "name": "Mistlands_Giant1", "category": "other", "x": 4335.1, "z": 6090.3, "px": 2787.9, "py": 3087.4, "has_dungeon": false, "has_important": true}, {"id": 225, "name": "Mistlands_Giant1", "category": "other", "x": 9087.9, "z": 1400.9, "px": 3599.0, "py": 2287.1, "has_dungeon": false, "has_important": true}, {"id": 226, "name": "Mistlands_Giant1", "category": "other", "x": 8448.2, "z": -3448.4, "px": 3489.8, "py": 1459.5, "has_dungeon": false, "has_important": true}, {"id": 227, "name": "Mistlands_Giant1", "category": "other", "x": -5887.2, "z": 3601.8, "px": 1043.3, "py": 2662.7, "has_dungeon": false, "has_important": true}, {"id": 228, "name": "Mistlands_Giant1", "category": "other", "x": -6395.3, "z": 4154.7, "px": 956.5, "py": 2757.1, "has_dungeon": false, "has_important": true}, {"id": 229, "name": "Mistlands_Giant1", "category": "other", "x": 5937.5, "z": -1611.0, "px": 3061.3, "py": 1773.1, "has_dungeon": false, "has_important": true}, {"id": 230, "name": "Mistlands_Giant1", "category": "other", "x": 4815.5, "z": 6263.5, "px": 2869.8, "py": 3117.0, "has_dungeon": false, "has_important": true}, {"id": 231, "name": "Mistlands_Giant1", "category": "other", "x": 9216.9, "z": -1415.0, "px": 3621.0, "py": 1806.5, "has_dungeon": false, "has_important": true}, {"id": 232, "name": "Mistlands_Giant1", "category": "other", "x": 4351.4, "z": 5515.8, "px": 2790.6, "py": 2989.4, "has_dungeon": false, "has_important": true}, {"id": 233, "name": "Mistlands_Giant1", "category": "other", "x": 8958.7, "z": -915.4, "px": 3577.0, "py": 1891.8, "has_dungeon": false, "has_important": true}, {"id": 234, "name": "Mistlands_Giant1", "category": "other", "x": 8839.5, "z": 849.9, "px": 3556.6, "py": 2193.0, "has_dungeon": false, "has_important": true}, {"id": 235, "name": "Mistlands_Giant1", "category": "other", "x": -1992.5, "z": -7241.9, "px": 1707.9, "py": 812.0, "has_dungeon": false, "has_important": true}, {"id": 236, "name": "Mistlands_Giant1", "category": "other", "x": 7313.9, "z": -5108.8, "px": 3296.2, "py": 1176.1, "has_dungeon": false, "has_important": true}, {"id": 237, "name": "Mistlands_Giant1", "category": "other", "x": -3250.5, "z": -7220.7, "px": 1493.2, "py": 815.7, "has_dungeon": false, "has_important": true}, {"id": 238, "name": "Mistlands_Giant1", "category": "other", "x": -2953.6, "z": -6268.4, "px": 1543.9, "py": 978.2, "has_dungeon": false, "has_important": true}, {"id": 239, "name": "Mistlands_Giant1", "category": "other", "x": 2800.5, "z": 6715.3, "px": 2526.0, "py": 3194.1, "has_dungeon": false, "has_important": true}, {"id": 240, "name": "Mistlands_Giant1", "category": "other", "x": 6927.1, "z": -5387.4, "px": 3230.2, "py": 1128.6, "has_dungeon": false, "has_important": true}, {"id": 241, "name": "Mistlands_Giant1", "category": "other", "x": -1090.1, "z": -6010.6, "px": 1862.0, "py": 1022.2, "has_dungeon": false, "has_important": true}, {"id": 242, "name": "Mistlands_Giant1", "category": "other", "x": 4051.2, "z": -5837.7, "px": 2739.4, "py": 1051.7, "has_dungeon": false, "has_important": true}, {"id": 243, "name": "Mistlands_Giant1", "category": "other", "x": 9533.0, "z": 491.9, "px": 3675.0, "py": 2132.0, "has_dungeon": false, "has_important": true}, {"id": 244, "name": "Mistlands_Giant1", "category": "other", "x": 7623.9, "z": 9.5, "px": 3349.1, "py": 2049.6, "has_dungeon": false, "has_important": true}, {"id": 245, "name": "Mistlands_Giant1", "category": "other", "x": 2242.2, "z": -6775.8, "px": 2430.7, "py": 891.6, "has_dungeon": false, "has_important": true}, {"id": 246, "name": "Mistlands_Giant1", "category": "other", "x": 8557.9, "z": -2878.6, "px": 3508.5, "py": 1556.7, "has_dungeon": false, "has_important": true}, {"id": 247, "name": "Mistlands_Giant1", "category": "other", "x": 7628.2, "z": -4489.4, "px": 3349.9, "py": 1281.8, "has_dungeon": false, "has_important": true}, {"id": 248, "name": "Mistlands_Giant1", "category": "other", "x": -2093.6, "z": 7245.1, "px": 1690.7, "py": 3284.5, "has_dungeon": false, "has_important": true}, {"id": 249, "name": "Mistlands_Giant1", "category": "other", "x": -2770.7, "z": 6338.5, "px": 1575.1, "py": 3129.8, "has_dungeon": false, "has_important": true}, {"id": 250, "name": "Mistlands_Giant1", "category": "other", "x": 4395.1, "z": -6967.7, "px": 2798.1, "py": 858.8, "has_dungeon": false, "has_important": true}, {"id": 251, "name": "Mistlands_Giant1", "category": "other", "x": 7434.7, "z": -3827.7, "px": 3316.9, "py": 1394.7, "has_dungeon": false, "has_important": true}, {"id": 252, "name": "Mistlands_Giant1", "category": "other", "x": -6860.4, "z": -1737.4, "px": 877.2, "py": 1751.5, "has_dungeon": false, "has_important": true}, {"id": 253, "name": "Mistlands_Giant1", "category": "other", "x": -1482.5, "z": 7363.1, "px": 1795.0, "py": 3304.6, "has_dungeon": false, "has_important": true}, {"id": 254, "name": "Mistlands_Giant1", "category": "other", "x": 7933.7, "z": -4608.0, "px": 3402.0, "py": 1261.6, "has_dungeon": false, "has_important": true}, {"id": 255, "name": "Mistlands_Giant1", "category": "other", "x": -7737.8, "z": 4483.7, "px": 727.4, "py": 2813.2, "has_dungeon": false, "has_important": true}, {"id": 256, "name": "Mistlands_Giant1", "category": "other", "x": -8382.0, "z": 2254.1, "px": 617.5, "py": 2432.7, "has_dungeon": false, "has_important": true}, {"id": 257, "name": "Mistlands_Giant1", "category": "other", "x": 8529.4, "z": 1003.7, "px": 3503.7, "py": 2219.3, "has_dungeon": false, "has_important": true}, {"id": 258, "name": "Mistlands_Giant1", "category": "other", "x": 4395.1, "z": 5833.2, "px": 2798.1, "py": 3043.5, "has_dungeon": false, "has_important": true}, {"id": 259, "name": "Mistlands_Giant1", "category": "other", "x": -7404.1, "z": 1235.1, "px": 784.4, "py": 2258.8, "has_dungeon": false, "has_important": true}, {"id": 260, "name": "Mistlands_Giant1", "category": "other", "x": 4370.9, "z": -4745.8, "px": 2794.0, "py": 1238.1, "has_dungeon": false, "has_important": true}, {"id": 261, "name": "Mistlands_Giant1", "category": "other", "x": 9043.5, "z": -1724.9, "px": 3591.4, "py": 1753.6, "has_dungeon": false, "has_important": true}, {"id": 262, "name": "Mistlands_Giant1", "category": "other", "x": 3820.9, "z": -6924.6, "px": 2700.1, "py": 866.2, "has_dungeon": false, "has_important": true}, {"id": 263, "name": "Mistlands_Giant1", "category": "other", "x": 5519.9, "z": 5582.9, "px": 2990.1, "py": 3000.8, "has_dungeon": false, "has_important": true}, {"id": 264, "name": "Mistlands_Giant1", "category": "other", "x": 5581.2, "z": 3437.0, "px": 3000.5, "py": 2634.6, "has_dungeon": false, "has_important": true}, {"id": 265, "name": "Mistlands_Giant1", "category": "other", "x": -6274.3, "z": 706.4, "px": 977.2, "py": 2168.6, "has_dungeon": false, "has_important": true}, {"id": 266, "name": "Mistlands_Giant1", "category": "other", "x": 46.1, "z": 7436.6, "px": 2055.9, "py": 3317.2, "has_dungeon": false, "has_important": true}, {"id": 267, "name": "Mistlands_Giant1", "category": "other", "x": -9556.1, "z": -2033.5, "px": 417.1, "py": 1700.9, "has_dungeon": false, "has_important": true}, {"id": 268, "name": "Mistlands_Giant1", "category": "other", "x": 7100.8, "z": 3.5, "px": 3259.9, "py": 2048.6, "has_dungeon": false, "has_important": true}, {"id": 269, "name": "Mistlands_Giant1", "category": "other", "x": -2318.4, "z": -6459.0, "px": 1652.3, "py": 945.7, "has_dungeon": false, "has_important": true}, {"id": 270, "name": "Mistlands_Giant1", "category": "other", "x": 7413.6, "z": -710.8, "px": 3313.3, "py": 1926.7, "has_dungeon": false, "has_important": true}, {"id": 271, "name": "Mistlands_Giant1", "category": "other", "x": 9260.2, "z": -2482.4, "px": 3628.4, "py": 1624.3, "has_dungeon": false, "has_important": true}, {"id": 272, "name": "Mistlands_Giant1", "category": "other", "x": -5437.2, "z": -4242.4, "px": 1120.1, "py": 1324.0, "has_dungeon": false, "has_important": true}, {"id": 273, "name": "Mistlands_Giant1", "category": "other", "x": 9539.3, "z": 1552.2, "px": 3676.0, "py": 2312.9, "has_dungeon": false, "has_important": true}, {"id": 274, "name": "Mistlands_Giant1", "category": "other", "x": -3969.6, "z": 5557.6, "px": 1370.5, "py": 2996.5, "has_dungeon": false, "has_important": true}, {"id": 275, "name": "Mistlands_Giant1", "category": "other", "x": 6387.5, "z": 4401.5, "px": 3138.1, "py": 2799.2, "has_dungeon": false, "has_important": true}, {"id": 276, "name": "Mistlands_Giant1", "category": "other", "x": -9522.7, "z": -944.2, "px": 422.8, "py": 1886.9, "has_dungeon": false, "has_important": true}, {"id": 277, "name": "Mistlands_Giant1", "category": "other", "x": 450.6, "z": 6976.7, "px": 2124.9, "py": 3238.7, "has_dungeon": false, "has_important": true}, {"id": 278, "name": "Mistlands_Giant1", "category": "other", "x": -6593.1, "z": -1740.2, "px": 922.8, "py": 1751.0, "has_dungeon": false, "has_important": true}, {"id": 279, "name": "Mistlands_Giant1", "category": "other", "x": 6797.5, "z": -531.5, "px": 3208.1, "py": 1957.3, "has_dungeon": false, "has_important": true}, {"id": 280, "name": "Mistlands_Giant1", "category": "other", "x": -966.6, "z": -7764.7, "px": 1883.0, "py": 722.8, "has_dungeon": false, "has_important": true}, {"id": 281, "name": "Mistlands_Giant1", "category": "other", "x": -9108.5, "z": -2348.8, "px": 493.5, "py": 1647.1, "has_dungeon": false, "has_important": true}, {"id": 282, "name": "Mistlands_Giant1", "category": "other", "x": 5780.9, "z": 4176.1, "px": 3034.6, "py": 2760.7, "has_dungeon": false, "has_important": true}, {"id": 283, "name": "Mistlands_Giant1", "category": "other", "x": -7700.3, "z": -3214.2, "px": 733.8, "py": 1499.4, "has_dungeon": false, "has_important": true}, {"id": 284, "name": "Mistlands_Giant1", "category": "other", "x": 7552.1, "z": 2234.7, "px": 3336.9, "py": 2429.4, "has_dungeon": false, "has_important": true}, {"id": 285, "name": "Mistlands_Giant1", "category": "other", "x": 1482.6, "z": -6510.7, "px": 2301.0, "py": 936.8, "has_dungeon": false, "has_important": true}, {"id": 286, "name": "Mistlands_Giant1", "category": "other", "x": -1327.8, "z": -6967.4, "px": 1821.4, "py": 858.9, "has_dungeon": false, "has_important": true}, {"id": 287, "name": "Mistlands_Giant1", "category": "other", "x": -5512.8, "z": 5906.7, "px": 1107.1, "py": 3056.1, "has_dungeon": false, "has_important": true}, {"id": 288, "name": "Mistlands_Giant1", "category": "other", "x": 6270.6, "z": 3015.3, "px": 3118.2, "py": 2562.6, "has_dungeon": false, "has_important": true}, {"id": 289, "name": "Mistlands_Giant1", "category": "other", "x": 6595.5, "z": 2745.2, "px": 3173.6, "py": 2516.5, "has_dungeon": false, "has_important": true}, {"id": 290, "name": "Mistlands_Giant1", "category": "other", "x": 4992.6, "z": -4738.3, "px": 2900.1, "py": 1239.3, "has_dungeon": false, "has_important": true}, {"id": 291, "name": "Mistlands_Giant1", "category": "other", "x": 3980.8, "z": -6099.8, "px": 2727.4, "py": 1007.0, "has_dungeon": false, "has_important": true}, {"id": 292, "name": "Mistlands_Giant1", "category": "other", "x": 8811.7, "z": -2821.6, "px": 3551.9, "py": 1566.4, "has_dungeon": false, "has_important": true}, {"id": 293, "name": "Mistlands_Giant1", "category": "other", "x": -8585.6, "z": 1866.2, "px": 582.7, "py": 2366.5, "has_dungeon": false, "has_important": true}, {"id": 294, "name": "Mistlands_Giant1", "category": "other", "x": 1293.4, "z": 6390.9, "px": 2268.7, "py": 3138.7, "has_dungeon": false, "has_important": true}, {"id": 295, "name": "Mistlands_Giant1", "category": "other", "x": 7469.9, "z": 4358.2, "px": 3322.9, "py": 2791.8, "has_dungeon": false, "has_important": true}, {"id": 296, "name": "Mistlands_Giant1", "category": "other", "x": -2951.6, "z": -5895.0, "px": 1544.3, "py": 1041.9, "has_dungeon": false, "has_important": true}, {"id": 297, "name": "Mistlands_Giant1", "category": "other", "x": 8243.2, "z": 1080.1, "px": 3454.8, "py": 2232.3, "has_dungeon": false, "has_important": true}, {"id": 298, "name": "Mistlands_Giant1", "category": "other", "x": -6975.0, "z": 586.2, "px": 857.6, "py": 2148.0, "has_dungeon": false, "has_important": true}, {"id": 299, "name": "Mistlands_Giant1", "category": "other", "x": 2492.0, "z": -5972.6, "px": 2473.3, "py": 1028.7, "has_dungeon": false, "has_important": true}, {"id": 300, "name": "Mistlands_Giant1", "category": "other", "x": -9387.7, "z": 980.5, "px": 445.8, "py": 2215.3, "has_dungeon": false, "has_important": true}, {"id": 301, "name": "Mistlands_Giant1", "category": "other", "x": -2414.0, "z": 6721.3, "px": 1636.0, "py": 3195.1, "has_dungeon": false, "has_important": true}, {"id": 302, "name": "Mistlands_Giant1", "category": "other", "x": -7153.5, "z": 1407.1, "px": 827.1, "py": 2288.1, "has_dungeon": false, "has_important": true}, {"id": 303, "name": "Mistlands_Giant1", "category": "other", "x": -7437.8, "z": 530.8, "px": 778.6, "py": 2138.6, "has_dungeon": false, "has_important": true}, {"id": 304, "name": "Mistlands_Giant1", "category": "other", "x": 8330.5, "z": -3053.3, "px": 3469.7, "py": 1526.9, "has_dungeon": false, "has_important": true}, {"id": 305, "name": "Mistlands_Giant1", "category": "other", "x": -3911.4, "z": 5954.9, "px": 1380.5, "py": 3064.3, "has_dungeon": false, "has_important": true}, {"id": 306, "name": "Mistlands_Giant1", "category": "other", "x": 8324.2, "z": -2753.4, "px": 3468.7, "py": 1578.1, "has_dungeon": false, "has_important": true}, {"id": 307, "name": "Mistlands_Giant1", "category": "other", "x": -7827.5, "z": -2928.3, "px": 712.1, "py": 1548.2, "has_dungeon": false, "has_important": true}, {"id": 308, "name": "Mistlands_Giant1", "category": "other", "x": -6283.6, "z": -1043.8, "px": 975.6, "py": 1869.9, "has_dungeon": false, "has_important": true}, {"id": 309, "name": "Mistlands_Giant1", "category": "other", "x": 3390.3, "z": 5516.9, "px": 2626.6, "py": 2989.6, "has_dungeon": false, "has_important": true}, {"id": 310, "name": "Mistlands_Giant1", "category": "other", "x": 5830.1, "z": -2064.1, "px": 3043.0, "py": 1695.7, "has_dungeon": false, "has_important": true}, {"id": 311, "name": "Mistlands_Giant1", "category": "other", "x": -7363.4, "z": -3311.9, "px": 791.3, "py": 1482.8, "has_dungeon": false, "has_important": true}, {"id": 312, "name": "Mistlands_Giant1", "category": "other", "x": 8142.6, "z": 2884.2, "px": 3437.7, "py": 2540.2, "has_dungeon": false, "has_important": true}, {"id": 313, "name": "Mistlands_Giant1", "category": "other", "x": -7854.7, "z": -299.1, "px": 707.5, "py": 1997.0, "has_dungeon": false, "has_important": true}, {"id": 314, "name": "Mistlands_Giant1", "category": "other", "x": -3532.1, "z": 5310.3, "px": 1445.2, "py": 2954.3, "has_dungeon": false, "has_important": true}, {"id": 315, "name": "Mistlands_Giant1", "category": "other", "x": 3084.2, "z": 6911.0, "px": 2574.4, "py": 3227.5, "has_dungeon": false, "has_important": true}, {"id": 316, "name": "Mistlands_Giant1", "category": "other", "x": -5999.7, "z": 1151.9, "px": 1024.1, "py": 2244.6, "has_dungeon": false, "has_important": true}, {"id": 317, "name": "Mistlands_Giant1", "category": "other", "x": 9672.4, "z": -850.4, "px": 3698.8, "py": 1902.9, "has_dungeon": false, "has_important": true}, {"id": 318, "name": "Mistlands_Giant1", "category": "other", "x": 1801.0, "z": -7120.7, "px": 2355.4, "py": 832.7, "has_dungeon": false, "has_important": true}, {"id": 319, "name": "Mistlands_Giant1", "category": "other", "x": 4625.0, "z": -6016.1, "px": 2837.3, "py": 1021.3, "has_dungeon": false, "has_important": true}, {"id": 320, "name": "Mistlands_Giant1", "category": "other", "x": -6836.6, "z": 4922.0, "px": 881.2, "py": 2888.0, "has_dungeon": false, "has_important": true}, {"id": 321, "name": "Mistlands_Giant1", "category": "other", "x": -6379.9, "z": 2938.3, "px": 959.2, "py": 2549.5, "has_dungeon": false, "has_important": true}, {"id": 322, "name": "Mistlands_Giant1", "category": "other", "x": -2288.9, "z": -6925.5, "px": 1657.4, "py": 866.0, "has_dungeon": false, "has_important": true}, {"id": 323, "name": "Mistlands_Giant1", "category": "other", "x": -8332.8, "z": -3713.6, "px": 625.9, "py": 1414.2, "has_dungeon": false, "has_important": true}, {"id": 324, "name": "Mistlands_Giant1", "category": "other", "x": -5356.7, "z": 4607.0, "px": 1133.8, "py": 2834.3, "has_dungeon": false, "has_important": true}, {"id": 325, "name": "Mistlands_Giant1", "category": "other", "x": 7986.4, "z": 1590.0, "px": 3411.0, "py": 2319.4, "has_dungeon": false, "has_important": true}, {"id": 326, "name": "Mistlands_Giant1", "category": "other", "x": -8453.4, "z": -3194.2, "px": 605.3, "py": 1502.9, "has_dungeon": false, "has_important": true}, {"id": 327, "name": "Mistlands_Giant1", "category": "other", "x": -9545.7, "z": -2349.7, "px": 418.9, "py": 1647.0, "has_dungeon": false, "has_important": true}, {"id": 328, "name": "Mistlands_Giant1", "category": "other", "x": 9156.0, "z": 1777.9, "px": 3610.6, "py": 2351.4, "has_dungeon": false, "has_important": true}, {"id": 329, "name": "Mistlands_Giant1", "category": "other", "x": 2672.6, "z": 5555.1, "px": 2504.1, "py": 2996.1, "has_dungeon": false, "has_important": true}, {"id": 330, "name": "Mistlands_Giant1", "category": "other", "x": -9272.3, "z": 622.4, "px": 465.5, "py": 2154.2, "has_dungeon": false, "has_important": true}, {"id": 331, "name": "Mistlands_Giant1", "category": "other", "x": -5571.4, "z": -2447.5, "px": 1097.1, "py": 1630.3, "has_dungeon": false, "has_important": true}, {"id": 332, "name": "Mistlands_Giant1", "category": "other", "x": -6001.6, "z": 2801.6, "px": 1023.7, "py": 2526.1, "has_dungeon": false, "has_important": true}, {"id": 333, "name": "Mistlands_Giant1", "category": "other", "x": 7881.3, "z": 3819.9, "px": 3393.1, "py": 2699.9, "has_dungeon": false, "has_important": true}, {"id": 334, "name": "Mistlands_Giant1", "category": "other", "x": 3210.3, "z": 6292.5, "px": 2595.9, "py": 3121.9, "has_dungeon": false, "has_important": true}, {"id": 335, "name": "Mistlands_Giant1", "category": "other", "x": 4099.6, "z": -6355.3, "px": 2747.7, "py": 963.4, "has_dungeon": false, "has_important": true}, {"id": 336, "name": "Mistlands_Giant1", "category": "other", "x": -6899.9, "z": 3963.4, "px": 870.4, "py": 2724.4, "has_dungeon": false, "has_important": true}, {"id": 337, "name": "Mistlands_Giant1", "category": "other", "x": 8913.0, "z": 587.7, "px": 3569.2, "py": 2148.3, "has_dungeon": false, "has_important": true}, {"id": 338, "name": "Mistlands_Giant1", "category": "other", "x": 5560.1, "z": 6217.6, "px": 2996.9, "py": 3109.1, "has_dungeon": false, "has_important": true}, {"id": 339, "name": "Mistlands_Giant1", "category": "other", "x": 4925.2, "z": 5870.4, "px": 2888.6, "py": 3049.9, "has_dungeon": false, "has_important": true}, {"id": 340, "name": "Mistlands_Giant1", "category": "other", "x": 4278.0, "z": -6144.0, "px": 2778.1, "py": 999.4, "has_dungeon": false, "has_important": true}, {"id": 341, "name": "Mistlands_Giant1", "category": "other", "x": 8183.7, "z": 2170.3, "px": 3444.7, "py": 2418.4, "has_dungeon": false, "has_important": true}, {"id": 342, "name": "Mistlands_Giant1", "category": "other", "x": 9346.3, "z": -1712.9, "px": 3643.1, "py": 1755.7, "has_dungeon": false, "has_important": true}, {"id": 343, "name": "Mistlands_Giant1", "category": "other", "x": -1982.1, "z": 6863.2, "px": 1709.7, "py": 3219.3, "has_dungeon": false, "has_important": true}, {"id": 344, "name": "Mistlands_Giant1", "category": "other", "x": -5873.1, "z": -2772.6, "px": 1045.7, "py": 1574.8, "has_dungeon": false, "has_important": true}, {"id": 345, "name": "Mistlands_Giant1", "category": "other", "x": -8459.7, "z": 274.5, "px": 604.2, "py": 2094.8, "has_dungeon": false, "has_important": true}, {"id": 346, "name": "Mistlands_Giant1", "category": "other", "x": 8724.5, "z": 1218.0, "px": 3537.0, "py": 2255.9, "has_dungeon": false, "has_important": true}, {"id": 347, "name": "Mistlands_Giant1", "category": "other", "x": -2556.8, "z": -5971.1, "px": 1611.6, "py": 1028.9, "has_dungeon": false, "has_important": true}, {"id": 348, "name": "Mistlands_Giant1", "category": "other", "x": -7551.6, "z": -884.6, "px": 759.2, "py": 1897.0, "has_dungeon": false, "has_important": true}, {"id": 349, "name": "Mistlands_Giant1", "category": "other", "x": -5877.6, "z": -5488.8, "px": 1044.9, "py": 1111.2, "has_dungeon": false, "has_important": true}, {"id": 350, "name": "Mistlands_Giant1", "category": "other", "x": 2955.4, "z": 5771.8, "px": 2552.4, "py": 3033.1, "has_dungeon": false, "has_important": true}, {"id": 351, "name": "Mistlands_Giant1", "category": "other", "x": -4338.6, "z": -4363.5, "px": 1307.5, "py": 1303.3, "has_dungeon": false, "has_important": true}, {"id": 352, "name": "Mistlands_Giant1", "category": "other", "x": 4651.8, "z": -4170.7, "px": 2841.9, "py": 1336.2, "has_dungeon": false, "has_important": true}, {"id": 353, "name": "Mistlands_Giant1", "category": "other", "x": 2752.4, "z": 6389.7, "px": 2517.7, "py": 3138.5, "has_dungeon": false, "has_important": true}, {"id": 354, "name": "Mistlands_Giant1", "category": "other", "x": -3905.6, "z": 6445.7, "px": 1381.4, "py": 3148.1, "has_dungeon": false, "has_important": true}, {"id": 355, "name": "Mistlands_Giant1", "category": "other", "x": 8569.0, "z": -1140.2, "px": 3510.4, "py": 1853.4, "has_dungeon": false, "has_important": true}, {"id": 356, "name": "Mistlands_Giant1", "category": "other", "x": -2882.5, "z": 6723.0, "px": 1556.1, "py": 3195.4, "has_dungeon": false, "has_important": true}, {"id": 357, "name": "Mistlands_Giant1", "category": "other", "x": 6286.3, "z": -1484.6, "px": 3120.9, "py": 1794.6, "has_dungeon": false, "has_important": true}, {"id": 358, "name": "Mistlands_Giant1", "category": "other", "x": 7746.4, "z": -2386.1, "px": 3370.1, "py": 1640.8, "has_dungeon": false, "has_important": true}, {"id": 359, "name": "Mistlands_Giant1", "category": "other", "x": -8821.9, "z": 1348.4, "px": 542.4, "py": 2278.1, "has_dungeon": false, "has_important": true}, {"id": 360, "name": "Mistlands_Giant1", "category": "other", "x": 3770.7, "z": -5742.2, "px": 2691.5, "py": 1068.0, "has_dungeon": false, "has_important": true}, {"id": 361, "name": "Mistlands_Giant1", "category": "other", "x": 8816.8, "z": -2160.4, "px": 3552.7, "py": 1679.3, "has_dungeon": false, "has_important": true}, {"id": 362, "name": "Mistlands_Giant1", "category": "other", "x": 1267.1, "z": 5948.8, "px": 2264.3, "py": 3063.3, "has_dungeon": false, "has_important": true}, {"id": 363, "name": "Mistlands_Giant1", "category": "other", "x": 3788.4, "z": 5751.6, "px": 2694.6, "py": 3029.6, "has_dungeon": false, "has_important": true}, {"id": 364, "name": "Mistlands_Giant1", "category": "other", "x": -7179.5, "z": 3955.2, "px": 822.7, "py": 2723.0, "has_dungeon": false, "has_important": true}, {"id": 365, "name": "Mistlands_Giant1", "category": "other", "x": 8305.1, "z": -1742.2, "px": 3465.4, "py": 1750.7, "has_dungeon": false, "has_important": true}, {"id": 366, "name": "Mistlands_Giant1", "category": "other", "x": 4225.9, "z": -5111.9, "px": 2769.2, "py": 1175.6, "has_dungeon": false, "has_important": true}, {"id": 367, "name": "Mistlands_Giant1", "category": "other", "x": 2132.2, "z": -6415.7, "px": 2411.9, "py": 953.1, "has_dungeon": false, "has_important": true}, {"id": 368, "name": "Mistlands_Giant1", "category": "other", "x": -1347.4, "z": 7098.5, "px": 1818.0, "py": 3259.5, "has_dungeon": false, "has_important": true}, {"id": 369, "name": "Mistlands_Giant1", "category": "other", "x": 444.2, "z": 7490.6, "px": 2123.8, "py": 3326.4, "has_dungeon": false, "has_important": true}, {"id": 370, "name": "Mistlands_Giant1", "category": "other", "x": 4851.4, "z": 4204.1, "px": 2876.0, "py": 2765.5, "has_dungeon": false, "has_important": true}, {"id": 371, "name": "Mistlands_Giant1", "category": "other", "x": -8774.3, "z": -1333.5, "px": 550.5, "py": 1820.4, "has_dungeon": false, "has_important": true}, {"id": 372, "name": "Mistlands_Giant1", "category": "other", "x": 4982.1, "z": -5903.7, "px": 2898.3, "py": 1040.4, "has_dungeon": false, "has_important": true}, {"id": 373, "name": "Mistlands_Giant1", "category": "other", "x": -5754.5, "z": 3271.3, "px": 1065.9, "py": 2606.3, "has_dungeon": false, "has_important": true}, {"id": 374, "name": "Mistlands_Giant1", "category": "other", "x": 2446.5, "z": -6512.6, "px": 2465.5, "py": 936.5, "has_dungeon": false, "has_important": true}, {"id": 375, "name": "Mistlands_Giant1", "category": "other", "x": -1595.6, "z": -5883.7, "px": 1775.7, "py": 1043.8, "has_dungeon": false, "has_important": true}, {"id": 376, "name": "Mistlands_Giant1", "category": "other", "x": 7230.8, "z": -4786.2, "px": 3282.1, "py": 1231.2, "has_dungeon": false, "has_important": true}, {"id": 377, "name": "Mistlands_Giant1", "category": "other", "x": -8340.1, "z": 13.2, "px": 624.6, "py": 2050.3, "has_dungeon": false, "has_important": true}, {"id": 378, "name": "Mistlands_Giant1", "category": "other", "x": 5945.1, "z": 6069.2, "px": 3062.6, "py": 3083.8, "has_dungeon": false, "has_important": true}, {"id": 379, "name": "Mistlands_Giant1", "category": "other", "x": 4027.2, "z": 6206.4, "px": 2735.3, "py": 3107.2, "has_dungeon": false, "has_important": true}, {"id": 380, "name": "Mistlands_Giant1", "category": "other", "x": -3019.8, "z": 6280.4, "px": 1532.6, "py": 3119.9, "has_dungeon": false, "has_important": true}, {"id": 381, "name": "Mistlands_Giant1", "category": "other", "x": -8264.8, "z": -332.2, "px": 637.5, "py": 1991.3, "has_dungeon": false, "has_important": true}, {"id": 382, "name": "Mistlands_Giant1", "category": "other", "x": 6413.0, "z": -4555.1, "px": 3142.5, "py": 1270.6, "has_dungeon": false, "has_important": true}, {"id": 383, "name": "Mistlands_Giant1", "category": "other", "x": 5821.6, "z": 5755.0, "px": 3041.6, "py": 3030.2, "has_dungeon": false, "has_important": true}, {"id": 384, "name": "Mistlands_Giant1", "category": "other", "x": 8397.8, "z": -949.9, "px": 3481.2, "py": 1885.9, "has_dungeon": false, "has_important": true}, {"id": 385, "name": "Mistlands_Giant1", "category": "other", "x": 7222.2, "z": 251.7, "px": 3280.6, "py": 2091.0, "has_dungeon": false, "has_important": true}, {"id": 386, "name": "Mistlands_Giant1", "category": "other", "x": 7859.0, "z": 3090.6, "px": 3389.3, "py": 2575.5, "has_dungeon": false, "has_important": true}, {"id": 387, "name": "Mistlands_Giant1", "category": "other", "x": 4734.4, "z": -4593.8, "px": 2856.0, "py": 1264.0, "has_dungeon": false, "has_important": true}, {"id": 388, "name": "Mistlands_Giant1", "category": "other", "x": -8720.7, "z": 386.2, "px": 559.7, "py": 2113.9, "has_dungeon": false, "has_important": true}, {"id": 389, "name": "Mistlands_Giant1", "category": "other", "x": -6471.1, "z": -567.9, "px": 943.6, "py": 1951.1, "has_dungeon": false, "has_important": true}, {"id": 390, "name": "Mistlands_Giant1", "category": "other", "x": -1741.0, "z": 7309.8, "px": 1750.9, "py": 3295.5, "has_dungeon": false, "has_important": true}, {"id": 391, "name": "Mistlands_Giant1", "category": "other", "x": -6393.5, "z": -4468.2, "px": 956.8, "py": 1285.4, "has_dungeon": false, "has_important": true}, {"id": 392, "name": "Mistlands_Giant1", "category": "other", "x": -4718.6, "z": -4168.8, "px": 1242.7, "py": 1336.5, "has_dungeon": false, "has_important": true}, {"id": 393, "name": "Mistlands_Giant1", "category": "other", "x": 2495.9, "z": 6395.1, "px": 2474.0, "py": 3139.4, "has_dungeon": false, "has_important": true}, {"id": 394, "name": "Mistlands_Giant1", "category": "other", "x": 3127.6, "z": 7186.4, "px": 2581.8, "py": 3274.5, "has_dungeon": false, "has_important": true}, {"id": 395, "name": "Mistlands_Giant1", "category": "other", "x": -7497.7, "z": -2694.8, "px": 768.4, "py": 1588.1, "has_dungeon": false, "has_important": true}, {"id": 396, "name": "Mistlands_Giant1", "category": "other", "x": -6593.5, "z": -3536.2, "px": 922.7, "py": 1444.5, "has_dungeon": false, "has_important": true}, {"id": 397, "name": "Mistlands_Giant1", "category": "other", "x": 6794.7, "z": -190.3, "px": 3207.6, "py": 2015.5, "has_dungeon": false, "has_important": true}, {"id": 398, "name": "Mistlands_Giant1", "category": "other", "x": -7996.7, "z": -4459.9, "px": 683.2, "py": 1286.8, "has_dungeon": false, "has_important": true}, {"id": 399, "name": "Mistlands_Giant1", "category": "other", "x": -326.3, "z": -6386.0, "px": 1992.3, "py": 958.1, "has_dungeon": false, "has_important": true}, {"id": 400, "name": "Mistlands_Giant1", "category": "other", "x": -6393.3, "z": -2357.5, "px": 956.9, "py": 1645.7, "has_dungeon": false, "has_important": true}, {"id": 401, "name": "Mistlands_Giant1", "category": "other", "x": 7311.9, "z": -3568.1, "px": 3295.9, "py": 1439.0, "has_dungeon": false, "has_important": true}, {"id": 402, "name": "Mistlands_Giant1", "category": "other", "x": 4982.3, "z": -5624.7, "px": 2898.3, "py": 1088.1, "has_dungeon": false, "has_important": true}, {"id": 403, "name": "Mistlands_Giant1", "category": "other", "x": 6673.7, "z": 5139.9, "px": 3187.0, "py": 2925.2, "has_dungeon": false, "has_important": true}, {"id": 404, "name": "Mistlands_Giant1", "category": "other", "x": -6918.9, "z": 1139.0, "px": 867.2, "py": 2242.4, "has_dungeon": false, "has_important": true}, {"id": 405, "name": "Mistlands_Giant1", "category": "other", "x": -7174.2, "z": 748.0, "px": 823.6, "py": 2175.7, "has_dungeon": false, "has_important": true}, {"id": 406, "name": "Mistlands_Giant1", "category": "other", "x": 7802.5, "z": 4113.6, "px": 3379.6, "py": 2750.1, "has_dungeon": false, "has_important": true}, {"id": 407, "name": "Mistlands_Giant1", "category": "other", "x": 3966.9, "z": -5419.1, "px": 2725.0, "py": 1123.1, "has_dungeon": false, "has_important": true}, {"id": 408, "name": "Mistlands_Giant1", "category": "other", "x": 4140.8, "z": -4616.0, "px": 2754.7, "py": 1260.2, "has_dungeon": false, "has_important": true}, {"id": 409, "name": "Mistlands_Giant1", "category": "other", "x": 5180.7, "z": 3401.7, "px": 2932.2, "py": 2628.6, "has_dungeon": false, "has_important": true}, {"id": 410, "name": "Mistlands_Giant1", "category": "other", "x": 1528.7, "z": -6801.9, "px": 2308.9, "py": 887.1, "has_dungeon": false, "has_important": true}, {"id": 411, "name": "Mistlands_Giant1", "category": "other", "x": 1139.3, "z": 7413.9, "px": 2242.4, "py": 3313.3, "has_dungeon": false, "has_important": true}, {"id": 412, "name": "Mistlands_Giant1", "category": "other", "x": 8043.0, "z": -1800.1, "px": 3420.7, "py": 1740.8, "has_dungeon": false, "has_important": true}, {"id": 413, "name": "Mistlands_Giant1", "category": "other", "x": 8887.7, "z": -1225.4, "px": 3564.8, "py": 1838.9, "has_dungeon": false, "has_important": true}, {"id": 414, "name": "Mistlands_Giant1", "category": "other", "x": -1424.3, "z": -6142.7, "px": 1804.9, "py": 999.6, "has_dungeon": false, "has_important": true}, {"id": 415, "name": "Mistlands_Giant1", "category": "other", "x": 5933.4, "z": 2000.4, "px": 3060.6, "py": 2389.4, "has_dungeon": false, "has_important": true}, {"id": 416, "name": "Mistlands_Giant1", "category": "other", "x": -8847.1, "z": 971.9, "px": 538.1, "py": 2213.9, "has_dungeon": false, "has_important": true}, {"id": 417, "name": "Mistlands_Giant1", "category": "other", "x": -2899.4, "z": -6525.9, "px": 1553.2, "py": 934.2, "has_dungeon": false, "has_important": true}, {"id": 418, "name": "Mistlands_Giant1", "category": "other", "x": -7734.2, "z": 1360.9, "px": 728.0, "py": 2280.3, "has_dungeon": false, "has_important": true}, {"id": 419, "name": "Mistlands_Giant1", "category": "other", "x": 7874.7, "z": 2764.6, "px": 3391.9, "py": 2519.8, "has_dungeon": false, "has_important": true}, {"id": 420, "name": "Mistlands_Giant1", "category": "other", "x": 6090.7, "z": 4982.5, "px": 3087.5, "py": 2898.3, "has_dungeon": false, "has_important": true}, {"id": 421, "name": "Mistlands_Giant1", "category": "other", "x": 9034.6, "z": -2990.9, "px": 3589.9, "py": 1537.6, "has_dungeon": false, "has_important": true}, {"id": 422, "name": "Mistlands_Giant1", "category": "other", "x": -1670.4, "z": -7473.6, "px": 1762.9, "py": 772.5, "has_dungeon": false, "has_important": true}, {"id": 423, "name": "Mistlands_Giant1", "category": "other", "x": -4076.2, "z": 4811.0, "px": 1352.3, "py": 2869.1, "has_dungeon": false, "has_important": true}, {"id": 424, "name": "Mistlands_Giant1", "category": "other", "x": -5877.6, "z": 3027.6, "px": 1044.9, "py": 2564.7, "has_dungeon": false, "has_important": true}, {"id": 425, "name": "Mistlands_Giant1", "category": "other", "x": 7883.7, "z": 2167.1, "px": 3393.5, "py": 2417.9, "has_dungeon": false, "has_important": true}, {"id": 426, "name": "Mistlands_Giant1", "category": "other", "x": 6011.2, "z": 2369.4, "px": 3073.9, "py": 2452.4, "has_dungeon": false, "has_important": true}, {"id": 427, "name": "Mistlands_Giant1", "category": "other", "x": -7787.8, "z": -4613.1, "px": 718.9, "py": 1260.7, "has_dungeon": false, "has_important": true}, {"id": 428, "name": "Mistlands_Giant1", "category": "other", "x": 2044.5, "z": -5908.3, "px": 2396.9, "py": 1039.7, "has_dungeon": false, "has_important": true}, {"id": 429, "name": "Mistlands_Giant1", "category": "other", "x": -6444.3, "z": 5697.7, "px": 948.2, "py": 3020.4, "has_dungeon": false, "has_important": true}, {"id": 430, "name": "Mistlands_Giant1", "category": "other", "x": -4780.3, "z": 4296.1, "px": 1232.2, "py": 2781.2, "has_dungeon": false, "has_important": true}, {"id": 431, "name": "Mistlands_Giant1", "category": "other", "x": -4980.5, "z": -3582.8, "px": 1198.0, "py": 1436.5, "has_dungeon": false, "has_important": true}, {"id": 432, "name": "Mistlands_Giant1", "category": "other", "x": 6253.9, "z": 5631.5, "px": 3115.3, "py": 3009.1, "has_dungeon": false, "has_important": true}, {"id": 433, "name": "Mistlands_Giant1", "category": "other", "x": -6091.9, "z": -5204.4, "px": 1008.3, "py": 1159.8, "has_dungeon": false, "has_important": true}, {"id": 434, "name": "Mistlands_Giant1", "category": "other", "x": 9171.6, "z": -2223.4, "px": 3613.3, "py": 1668.5, "has_dungeon": false, "has_important": true}, {"id": 435, "name": "Mistlands_Giant1", "category": "other", "x": -323.5, "z": -6652.1, "px": 1992.8, "py": 912.7, "has_dungeon": false, "has_important": true}, {"id": 436, "name": "Mistlands_Giant1", "category": "other", "x": 1410.7, "z": -7379.2, "px": 2288.8, "py": 788.6, "has_dungeon": false, "has_important": true}, {"id": 437, "name": "Mistlands_Giant1", "category": "other", "x": 8589.8, "z": 395.5, "px": 3514.0, "py": 2115.5, "has_dungeon": false, "has_important": true}, {"id": 438, "name": "Mistlands_Giant1", "category": "other", "x": 8783.7, "z": -3500.1, "px": 3547.1, "py": 1450.6, "has_dungeon": false, "has_important": true}, {"id": 439, "name": "Mistlands_Giant1", "category": "other", "x": 6956.4, "z": -3581.5, "px": 3235.2, "py": 1436.8, "has_dungeon": false, "has_important": true}, {"id": 440, "name": "Mistlands_Giant1", "category": "other", "x": 1021.2, "z": -7423.9, "px": 2222.3, "py": 781.0, "has_dungeon": false, "has_important": true}, {"id": 441, "name": "Mistlands_Giant1", "category": "other", "x": -6513.8, "z": 955.6, "px": 936.3, "py": 2211.1, "has_dungeon": false, "has_important": true}, {"id": 442, "name": "Mistlands_Giant1", "category": "other", "x": -2244.3, "z": 6932.6, "px": 1665.0, "py": 3231.2, "has_dungeon": false, "has_important": true}, {"id": 443, "name": "Mistlands_Giant1", "category": "other", "x": 5683.7, "z": 2446.1, "px": 3018.0, "py": 2465.5, "has_dungeon": false, "has_important": true}, {"id": 444, "name": "Mistlands_Giant1", "category": "other", "x": 8654.1, "z": 650.9, "px": 3525.0, "py": 2159.1, "has_dungeon": false, "has_important": true}, {"id": 445, "name": "Mistlands_Giant1", "category": "other", "x": 392.8, "z": 7232.1, "px": 2115.0, "py": 3282.3, "has_dungeon": false, "has_important": true}, {"id": 446, "name": "Mistlands_Giant1", "category": "other", "x": 7239.5, "z": -2284.7, "px": 3283.5, "py": 1658.1, "has_dungeon": false, "has_important": true}, {"id": 447, "name": "Mistlands_Giant1", "category": "other", "x": -8077.8, "z": 212.2, "px": 669.4, "py": 2084.2, "has_dungeon": false, "has_important": true}, {"id": 448, "name": "Mistlands_Giant1", "category": "other", "x": -9361.3, "z": -464.6, "px": 450.3, "py": 1968.7, "has_dungeon": false, "has_important": true}, {"id": 449, "name": "Mistlands_Giant1", "category": "other", "x": -5191.3, "z": 6273.8, "px": 1162.0, "py": 3118.7, "has_dungeon": false, "has_important": true}, {"id": 450, "name": "Mistlands_Giant1", "category": "other", "x": 5073.1, "z": -5299.3, "px": 2913.8, "py": 1143.6, "has_dungeon": false, "has_important": true}, {"id": 451, "name": "Mistlands_Giant1", "category": "other", "x": 271.5, "z": 6778.0, "px": 2094.3, "py": 3204.8, "has_dungeon": false, "has_important": true}, {"id": 452, "name": "Mistlands_Giant1", "category": "other", "x": 6659.3, "z": 5432.6, "px": 3184.5, "py": 2975.2, "has_dungeon": false, "has_important": true}, {"id": 453, "name": "Mistlands_Giant1", "category": "other", "x": -6475.5, "z": 3199.6, "px": 942.8, "py": 2594.1, "has_dungeon": false, "has_important": true}, {"id": 454, "name": "Mistlands_Giant1", "category": "other", "x": -5774.4, "z": -2044.3, "px": 1062.5, "py": 1699.1, "has_dungeon": false, "has_important": true}, {"id": 455, "name": "Mistlands_Giant1", "category": "other", "x": -7425.0, "z": 821.5, "px": 780.8, "py": 2188.2, "has_dungeon": false, "has_important": true}, {"id": 456, "name": "Mistlands_Giant1", "category": "other", "x": -706.7, "z": 6528.8, "px": 1927.4, "py": 3162.2, "has_dungeon": false, "has_important": true}, {"id": 457, "name": "Mistlands_Giant1", "category": "other", "x": -7596.6, "z": -1201.3, "px": 751.5, "py": 1843.0, "has_dungeon": false, "has_important": true}, {"id": 458, "name": "Mistlands_Giant1", "category": "other", "x": -7421.6, "z": 2685.8, "px": 781.4, "py": 2506.4, "has_dungeon": false, "has_important": true}, {"id": 459, "name": "Mistlands_Giant1", "category": "other", "x": 1480.5, "z": 7623.7, "px": 2300.7, "py": 3349.1, "has_dungeon": false, "has_important": true}, {"id": 460, "name": "Mistlands_Giant1", "category": "other", "x": -9136.9, "z": -193.0, "px": 488.6, "py": 2015.1, "has_dungeon": false, "has_important": true}, {"id": 461, "name": "Mistlands_Giant1", "category": "other", "x": -6588.1, "z": -3148.0, "px": 923.6, "py": 1510.7, "has_dungeon": false, "has_important": true}, {"id": 462, "name": "Mistlands_Giant1", "category": "other", "x": -3565.8, "z": 5056.9, "px": 1439.4, "py": 2911.0, "has_dungeon": false, "has_important": true}, {"id": 463, "name": "Mistlands_Giant1", "category": "other", "x": 2689.9, "z": -5772.2, "px": 2507.1, "py": 1062.9, "has_dungeon": false, "has_important": true}, {"id": 464, "name": "Mistlands_Giant1", "category": "other", "x": 1682.0, "z": 7184.9, "px": 2335.1, "py": 3274.2, "has_dungeon": false, "has_important": true}, {"id": 465, "name": "Mistlands_Giant1", "category": "other", "x": -8299.3, "z": -4175.4, "px": 631.6, "py": 1335.4, "has_dungeon": false, "has_important": true}, {"id": 466, "name": "Mistlands_Giant1", "category": "other", "x": 4871.7, "z": -5050.3, "px": 2879.4, "py": 1186.1, "has_dungeon": false, "has_important": true}, {"id": 467, "name": "Mistlands_Giant1", "category": "other", "x": -4168.8, "z": 5167.7, "px": 1336.5, "py": 2930.0, "has_dungeon": false, "has_important": true}, {"id": 468, "name": "Mistlands_Giant1", "category": "other", "x": 4608.7, "z": 6077.8, "px": 2834.6, "py": 3085.3, "has_dungeon": false, "has_important": true}, {"id": 469, "name": "Mistlands_Giant1", "category": "other", "x": -8398.4, "z": -3451.5, "px": 614.7, "py": 1458.9, "has_dungeon": false, "has_important": true}, {"id": 470, "name": "Mistlands_Giant1", "category": "other", "x": -9018.8, "z": 1740.7, "px": 508.8, "py": 2345.1, "has_dungeon": false, "has_important": true}, {"id": 471, "name": "Mistlands_Giant1", "category": "other", "x": 8978.5, "z": -3727.6, "px": 3580.3, "py": 1411.8, "has_dungeon": false, "has_important": true}, {"id": 472, "name": "Mistlands_Giant1", "category": "other", "x": 2101.6, "z": -7106.6, "px": 2406.7, "py": 835.1, "has_dungeon": false, "has_important": true}, {"id": 473, "name": "Mistlands_Giant1", "category": "other", "x": 8456.5, "z": 3012.4, "px": 3491.2, "py": 2562.1, "has_dungeon": false, "has_important": true}, {"id": 474, "name": "Mistlands_Giant1", "category": "other", "x": 6956.4, "z": 1724.0, "px": 3235.2, "py": 2342.2, "has_dungeon": false, "has_important": true}, {"id": 475, "name": "Mistlands_Giant1", "category": "other", "x": 9283.8, "z": -1983.5, "px": 3632.4, "py": 1709.5, "has_dungeon": false, "has_important": true}, {"id": 476, "name": "Mistlands_Giant1", "category": "other", "x": 787.4, "z": 6987.8, "px": 2182.4, "py": 3240.6, "has_dungeon": false, "has_important": true}, {"id": 477, "name": "Mistlands_Giant1", "category": "other", "x": 3143.4, "z": 6588.2, "px": 2584.5, "py": 3172.4, "has_dungeon": false, "has_important": true}, {"id": 478, "name": "Mistlands_Giant1", "category": "other", "x": -6268.7, "z": 3631.0, "px": 978.1, "py": 2667.7, "has_dungeon": false, "has_important": true}, {"id": 479, "name": "Mistlands_Giant1", "category": "other", "x": -7103.6, "z": -1485.3, "px": 835.7, "py": 1794.5, "has_dungeon": false, "has_important": true}, {"id": 480, "name": "Mistlands_Giant1", "category": "other", "x": 6210.2, "z": 4160.9, "px": 3107.9, "py": 2758.1, "has_dungeon": false, "has_important": true}, {"id": 481, "name": "Mistlands_Giant1", "category": "other", "x": 4085.2, "z": -4876.8, "px": 2745.2, "py": 1215.7, "has_dungeon": false, "has_important": true}, {"id": 482, "name": "Mistlands_Giant1", "category": "other", "x": 6460.1, "z": 4973.6, "px": 3150.5, "py": 2896.8, "has_dungeon": false, "has_important": true}, {"id": 483, "name": "Mistlands_Giant1", "category": "other", "x": 5382.9, "z": 3027.9, "px": 2966.7, "py": 2564.8, "has_dungeon": false, "has_important": true}, {"id": 484, "name": "Mistlands_Giant1", "category": "other", "x": 3699.2, "z": 6094.5, "px": 2679.3, "py": 3088.1, "has_dungeon": false, "has_important": true}, {"id": 485, "name": "Mistlands_Giant1", "category": "other", "x": -9791.8, "z": -971.7, "px": 376.9, "py": 1882.2, "has_dungeon": false, "has_important": true}, {"id": 486, "name": "Mistlands_Giant1", "category": "other", "x": -7283.7, "z": -820.5, "px": 804.9, "py": 1908.0, "has_dungeon": false, "has_important": true}, {"id": 487, "name": "Mistlands_Giant1", "category": "other", "x": 8059.3, "z": -3335.7, "px": 3423.5, "py": 1478.7, "has_dungeon": false, "has_important": true}, {"id": 488, "name": "Mistlands_Giant1", "category": "other", "x": 1222.1, "z": -6517.5, "px": 2256.6, "py": 935.7, "has_dungeon": false, "has_important": true}, {"id": 489, "name": "Mistlands_Giant1", "category": "other", "x": -2440.1, "z": 7172.6, "px": 1631.6, "py": 3272.1, "has_dungeon": false, "has_important": true}, {"id": 490, "name": "Mistlands_Giant1", "category": "other", "x": -9456.4, "z": -1727.5, "px": 434.1, "py": 1753.2, "has_dungeon": false, "has_important": true}, {"id": 491, "name": "Mistlands_Giant1", "category": "other", "x": -5312.9, "z": -3831.8, "px": 1141.3, "py": 1394.0, "has_dungeon": false, "has_important": true}, {"id": 492, "name": "Mistlands_Giant1", "category": "other", "x": 4223.2, "z": 4874.3, "px": 2768.8, "py": 2879.9, "has_dungeon": false, "has_important": true}, {"id": 493, "name": "Mistlands_Giant1", "category": "other", "x": -8529.5, "z": -367.3, "px": 592.3, "py": 1985.3, "has_dungeon": false, "has_important": true}, {"id": 494, "name": "Mistlands_Giant1", "category": "other", "x": 8315.0, "z": 1329.1, "px": 3467.1, "py": 2274.8, "has_dungeon": false, "has_important": true}, {"id": 495, "name": "Mistlands_Giant1", "category": "other", "x": 9163.1, "z": -1154.1, "px": 3611.8, "py": 1851.0, "has_dungeon": false, "has_important": true}, {"id": 496, "name": "Mistlands_Giant1", "category": "other", "x": 6096.5, "z": -4493.0, "px": 3088.5, "py": 1281.2, "has_dungeon": false, "has_important": true}, {"id": 497, "name": "Mistlands_Giant1", "category": "other", "x": -1968.0, "z": -6659.3, "px": 1712.1, "py": 911.5, "has_dungeon": false, "has_important": true}, {"id": 498, "name": "Mistlands_Giant1", "category": "other", "x": -8497.7, "z": -1396.8, "px": 597.7, "py": 1809.6, "has_dungeon": false, "has_important": true}, {"id": 499, "name": "Mistlands_Giant1", "category": "other", "x": -5548.1, "z": -2954.3, "px": 1101.1, "py": 1543.8, "has_dungeon": false, "has_important": true}, {"id": 500, "name": "Mistlands_Giant1", "category": "other", "x": 5746.7, "z": 3637.8, "px": 3028.8, "py": 2668.9, "has_dungeon": false, "has_important": true}, {"id": 501, "name": "Mistlands_Giant1", "category": "other", "x": 5813.7, "z": 5004.9, "px": 3040.2, "py": 2902.2, "has_dungeon": false, "has_important": true}, {"id": 502, "name": "Mistlands_Giant1", "category": "other", "x": -6958.0, "z": -2042.3, "px": 860.5, "py": 1699.4, "has_dungeon": false, "has_important": true}, {"id": 503, "name": "Mistlands_Giant1", "category": "other", "x": 7623.6, "z": -3591.0, "px": 3349.1, "py": 1435.1, "has_dungeon": false, "has_important": true}, {"id": 504, "name": "Mistlands_Giant1", "category": "other", "x": 7352.2, "z": -208.1, "px": 3302.8, "py": 2012.5, "has_dungeon": false, "has_important": true}, {"id": 505, "name": "Mistlands_Giant1", "category": "other", "x": -6197.8, "z": 3964.5, "px": 990.2, "py": 2724.6, "has_dungeon": false, "has_important": true}, {"id": 506, "name": "Mistlands_Giant1", "category": "other", "x": 4686.2, "z": 5776.4, "px": 2847.8, "py": 3033.8, "has_dungeon": false, "has_important": true}, {"id": 507, "name": "Mistlands_Giant1", "category": "other", "x": 3694.0, "z": -6024.5, "px": 2678.4, "py": 1019.8, "has_dungeon": false, "has_important": true}, {"id": 508, "name": "Mistlands_Giant1", "category": "other", "x": -8080.6, "z": -3966.8, "px": 668.9, "py": 1371.0, "has_dungeon": false, "has_important": true}, {"id": 509, "name": "Mistlands_Giant1", "category": "other", "x": 4146.7, "z": 5901.3, "px": 2755.7, "py": 3055.2, "has_dungeon": false, "has_important": true}, {"id": 510, "name": "Mistlands_Giant1", "category": "other", "x": 8634.7, "z": -3272.3, "px": 3521.7, "py": 1489.5, "has_dungeon": false, "has_important": true}, {"id": 511, "name": "Mistlands_Giant1", "category": "other", "x": 8114.3, "z": -912.7, "px": 3432.8, "py": 1892.2, "has_dungeon": false, "has_important": true}, {"id": 512, "name": "Mistlands_Giant1", "category": "other", "x": -8711.4, "z": 2098.1, "px": 561.3, "py": 2406.1, "has_dungeon": false, "has_important": true}, {"id": 513, "name": "Mistlands_Giant1", "category": "other", "x": -7104.2, "z": 5110.1, "px": 835.5, "py": 2920.1, "has_dungeon": false, "has_important": true}, {"id": 514, "name": "Mistlands_Giant1", "category": "other", "x": 1799.7, "z": -6584.8, "px": 2355.1, "py": 924.2, "has_dungeon": false, "has_important": true}, {"id": 515, "name": "Mistlands_Giant1", "category": "other", "x": -7124.8, "z": -2755.3, "px": 832.0, "py": 1577.8, "has_dungeon": false, "has_important": true}, {"id": 516, "name": "Mistlands_Giant1", "category": "other", "x": 109.3, "z": -6899.4, "px": 2066.7, "py": 870.5, "has_dungeon": false, "has_important": true}, {"id": 517, "name": "Mistlands_Giant1", "category": "other", "x": 3408.2, "z": 5967.2, "px": 2629.7, "py": 3066.4, "has_dungeon": false, "has_important": true}, {"id": 518, "name": "Mistlands_Giant1", "category": "other", "x": -9725.7, "z": -1799.7, "px": 388.1, "py": 1740.9, "has_dungeon": false, "has_important": true}, {"id": 519, "name": "Mistlands_Giant1", "category": "other", "x": 6256.5, "z": 2741.1, "px": 3115.8, "py": 2515.8, "has_dungeon": false, "has_important": true}, {"id": 520, "name": "Mistlands_Giant1", "category": "other", "x": -6471.9, "z": -4997.2, "px": 943.5, "py": 1195.1, "has_dungeon": false, "has_important": true}, {"id": 521, "name": "Mistlands_Giant1", "category": "other", "x": 6912.7, "z": -876.0, "px": 3227.8, "py": 1898.5, "has_dungeon": false, "has_important": true}, {"id": 522, "name": "Mistlands_Giant1", "category": "other", "x": 5889.3, "z": -1210.8, "px": 3053.1, "py": 1841.4, "has_dungeon": false, "has_important": true}, {"id": 523, "name": "Mistlands_Giant1", "category": "other", "x": 7601.7, "z": 2539.2, "px": 3345.4, "py": 2481.4, "has_dungeon": false, "has_important": true}, {"id": 524, "name": "Mistlands_Giant1", "category": "other", "x": 6976.3, "z": -5121.3, "px": 3238.6, "py": 1174.0, "has_dungeon": false, "has_important": true}, {"id": 525, "name": "Mistlands_Giant1", "category": "other", "x": -1997.7, "z": 7497.8, "px": 1707.1, "py": 3327.6, "has_dungeon": false, "has_important": true}, {"id": 526, "name": "Mistlands_Giant1", "category": "other", "x": -5057.7, "z": 4735.1, "px": 1184.8, "py": 2856.1, "has_dungeon": false, "has_important": true}, {"id": 527, "name": "Mistlands_Giant1", "category": "other", "x": -4557.4, "z": -6712.7, "px": 1270.2, "py": 902.4, "has_dungeon": false, "has_important": true}, {"id": 528, "name": "Mistlands_Giant1", "category": "other", "x": -7185.6, "z": 434.1, "px": 821.7, "py": 2122.1, "has_dungeon": false, "has_important": true}, {"id": 529, "name": "Mistlands_Giant1", "category": "other", "x": 4080.3, "z": 4660.3, "px": 2744.4, "py": 2843.4, "has_dungeon": false, "has_important": true}, {"id": 530, "name": "Mistlands_Giant1", "category": "other", "x": -894.5, "z": -7476.8, "px": 1895.3, "py": 772.0, "has_dungeon": false, "has_important": true}, {"id": 531, "name": "Mistlands_Giant1", "category": "other", "x": -5310.6, "z": 5741.7, "px": 1141.7, "py": 3027.9, "has_dungeon": false, "has_important": true}, {"id": 532, "name": "Mistlands_Giant1", "category": "other", "x": 8369.8, "z": 2544.9, "px": 3476.4, "py": 2482.3, "has_dungeon": false, "has_important": true}, {"id": 533, "name": "Mistlands_Giant1", "category": "other", "x": 9774.8, "z": -69.7, "px": 3716.2, "py": 2036.1, "has_dungeon": false, "has_important": true}, {"id": 534, "name": "Mistlands_Giant1", "category": "other", "x": -2639.3, "z": -6533.1, "px": 1597.6, "py": 933.0, "has_dungeon": false, "has_important": true}, {"id": 535, "name": "Mistlands_Giant1", "category": "other", "x": 7281.9, "z": 4180.3, "px": 3290.8, "py": 2761.4, "has_dungeon": false, "has_important": true}, {"id": 536, "name": "Mistlands_Giant1", "category": "other", "x": -7173.7, "z": -2306.5, "px": 823.7, "py": 1654.4, "has_dungeon": false, "has_important": true}, {"id": 537, "name": "Mistlands_Giant1", "category": "other", "x": 7598.3, "z": 2924.7, "px": 3344.8, "py": 2547.1, "has_dungeon": false, "has_important": true}, {"id": 538, "name": "Mistlands_Giant1", "category": "other", "x": -2896.5, "z": 5495.9, "px": 1553.7, "py": 2986.0, "has_dungeon": false, "has_important": true}, {"id": 539, "name": "Mistlands_Giant1", "category": "other", "x": -747.8, "z": 6829.4, "px": 1920.4, "py": 3213.6, "has_dungeon": false, "has_important": true}, {"id": 540, "name": "Mistlands_Giant1", "category": "other", "x": 7151.0, "z": 4417.2, "px": 3268.4, "py": 2801.9, "has_dungeon": false, "has_important": true}, {"id": 541, "name": "Mistlands_Giant1", "category": "other", "x": -8820.2, "z": 59.0, "px": 542.7, "py": 2058.1, "has_dungeon": false, "has_important": true}, {"id": 542, "name": "Mistlands_Giant1", "category": "other", "x": 876.5, "z": -7659.6, "px": 2197.6, "py": 740.8, "has_dungeon": false, "has_important": true}, {"id": 543, "name": "Mistlands_Giant1", "category": "other", "x": -1908.4, "z": -6987.0, "px": 1722.3, "py": 855.6, "has_dungeon": false, "has_important": true}, {"id": 544, "name": "Mistlands_Giant1", "category": "other", "x": -9160.3, "z": -1020.4, "px": 484.6, "py": 1873.9, "has_dungeon": false, "has_important": true}, {"id": 545, "name": "Mistlands_Giant1", "category": "other", "x": -6035.7, "z": -876.4, "px": 1017.9, "py": 1898.4, "has_dungeon": false, "has_important": true}, {"id": 546, "name": "Mistlands_Giant1", "category": "other", "x": -7504.9, "z": -3013.5, "px": 767.2, "py": 1533.7, "has_dungeon": false, "has_important": true}, {"id": 547, "name": "Mistlands_Giant1", "category": "other", "x": 7023.3, "z": 3786.3, "px": 3246.6, "py": 2694.2, "has_dungeon": false, "has_important": true}, {"id": 548, "name": "Mistlands_Giant1", "category": "other", "x": -9456.8, "z": 1490.6, "px": 434.0, "py": 2302.4, "has_dungeon": false, "has_important": true}, {"id": 549, "name": "Mistlands_Giant1", "category": "other", "x": 6016.0, "z": 2866.0, "px": 3074.7, "py": 2537.1, "has_dungeon": false, "has_important": true}, {"id": 550, "name": "Mistlands_Giant1", "category": "other", "x": -9263.9, "z": -717.3, "px": 467.0, "py": 1925.6, "has_dungeon": false, "has_important": true}, {"id": 551, "name": "Mistlands_Giant1", "category": "other", "x": -4277.9, "z": 4405.2, "px": 1317.9, "py": 2799.8, "has_dungeon": false, "has_important": true}, {"id": 552, "name": "Mistlands_Giant1", "category": "other", "x": 6582.4, "z": -388.7, "px": 3171.4, "py": 1981.7, "has_dungeon": false, "has_important": true}, {"id": 553, "name": "Mistlands_Giant1", "category": "other", "x": -9151.8, "z": 881.4, "px": 486.1, "py": 2198.4, "has_dungeon": false, "has_important": true}, {"id": 554, "name": "Mistlands_Giant1", "category": "other", "x": -1214.1, "z": -7553.5, "px": 1840.8, "py": 758.9, "has_dungeon": false, "has_important": true}, {"id": 555, "name": "Mistlands_Giant1", "category": "other", "x": 2667.8, "z": 5950.2, "px": 2503.3, "py": 3063.5, "has_dungeon": false, "has_important": true}, {"id": 556, "name": "Mistlands_Giant2", "category": "other", "x": -4996.6, "z": 4476.7, "px": 1195.2, "py": 2812.0, "has_dungeon": false, "has_important": false}, {"id": 557, "name": "Mistlands_Giant2", "category": "other", "x": 8838.8, "z": 313.9, "px": 3556.5, "py": 2101.6, "has_dungeon": false, "has_important": false}, {"id": 558, "name": "Mistlands_Giant2", "category": "other", "x": -2736.0, "z": -5642.5, "px": 1581.1, "py": 1085.0, "has_dungeon": false, "has_important": false}, {"id": 559, "name": "Mistlands_Giant2", "category": "other", "x": -8368.3, "z": 518.7, "px": 619.8, "py": 2136.5, "has_dungeon": false, "has_important": false}, {"id": 560, "name": "Mistlands_Giant2", "category": "other", "x": -3254.0, "z": 5365.4, "px": 1492.7, "py": 2963.7, "has_dungeon": false, "has_important": false}, {"id": 561, "name": "Mistlands_Giant2", "category": "other", "x": 6448.9, "z": 3509.3, "px": 3148.6, "py": 2646.9, "has_dungeon": false, "has_important": false}, {"id": 562, "name": "Mistlands_Giant2", "category": "other", "x": -6525.7, "z": -817.6, "px": 934.3, "py": 1908.5, "has_dungeon": false, "has_important": false}, {"id": 563, "name": "Mistlands_Giant2", "category": "other", "x": -8621.7, "z": -1744.1, "px": 576.6, "py": 1750.3, "has_dungeon": false, "has_important": false}, {"id": 564, "name": "Mistlands_Giant2", "category": "other", "x": -6160.8, "z": -1923.4, "px": 996.6, "py": 1719.7, "has_dungeon": false, "has_important": false}, {"id": 565, "name": "Mistlands_Giant2", "category": "other", "x": -1748.6, "z": 7044.2, "px": 1749.6, "py": 3250.2, "has_dungeon": false, "has_important": false}, {"id": 566, "name": "Mistlands_Giant2", "category": "other", "x": -4431.9, "z": -5422.6, "px": 1291.6, "py": 1122.5, "has_dungeon": false, "has_important": false}, {"id": 567, "name": "Mistlands_Giant2", "category": "other", "x": 6962.6, "z": 5311.0, "px": 3236.3, "py": 2954.4, "has_dungeon": false, "has_important": false}, {"id": 568, "name": "Mistlands_Giant2", "category": "other", "x": 6010.1, "z": 3283.4, "px": 3073.7, "py": 2608.4, "has_dungeon": false, "has_important": false}, {"id": 569, "name": "Mistlands_Giant2", "category": "other", "x": -6995.1, "z": -1163.8, "px": 854.2, "py": 1849.4, "has_dungeon": false, "has_important": false}, {"id": 570, "name": "Mistlands_Giant2", "category": "other", "x": -9655.4, "z": 1067.5, "px": 400.1, "py": 2230.2, "has_dungeon": false, "has_important": false}, {"id": 571, "name": "Mistlands_Giant2", "category": "other", "x": -5264.6, "z": -4565.9, "px": 1149.5, "py": 1268.8, "has_dungeon": false, "has_important": false}, {"id": 572, "name": "Mistlands_Giant2", "category": "other", "x": 8644.7, "z": -884.2, "px": 3523.4, "py": 1897.1, "has_dungeon": false, "has_important": false}, {"id": 573, "name": "Mistlands_Giant2", "category": "other", "x": -493.3, "z": -7664.4, "px": 1963.8, "py": 739.9, "has_dungeon": false, "has_important": false}, {"id": 574, "name": "Mistlands_Giant2", "category": "other", "x": 7499.8, "z": -4916.6, "px": 3328.0, "py": 1208.9, "has_dungeon": false, "has_important": false}, {"id": 575, "name": "Mistlands_Giant2", "category": "other", "x": 8304.2, "z": 4298.1, "px": 3465.3, "py": 2781.5, "has_dungeon": false, "has_important": false}, {"id": 576, "name": "Mistlands_Giant2", "category": "other", "x": 901.6, "z": 7753.7, "px": 2201.9, "py": 3371.3, "has_dungeon": false, "has_important": false}, {"id": 577, "name": "Mistlands_Giant2", "category": "other", "x": -1940.5, "z": -5891.0, "px": 1716.8, "py": 1042.6, "has_dungeon": false, "has_important": false}, {"id": 578, "name": "Mistlands_Giant2", "category": "other", "x": -8017.5, "z": 2374.9, "px": 679.7, "py": 2453.3, "has_dungeon": false, "has_important": false}, {"id": 579, "name": "Mistlands_Giant2", "category": "other", "x": 9409.4, "z": -639.9, "px": 3653.9, "py": 1938.8, "has_dungeon": false, "has_important": false}, {"id": 580, "name": "Mistlands_Giant2", "category": "other", "x": -6643.4, "z": 4049.5, "px": 914.2, "py": 2739.1, "has_dungeon": false, "has_important": false}, {"id": 581, "name": "Mistlands_Giant2", "category": "other", "x": -6586.6, "z": 4981.5, "px": 923.9, "py": 2898.2, "has_dungeon": false, "has_important": false}, {"id": 582, "name": "Mistlands_Giant2", "category": "other", "x": -5616.4, "z": 3564.7, "px": 1089.5, "py": 2656.4, "has_dungeon": false, "has_important": false}, {"id": 583, "name": "Mistlands_Giant2", "category": "other", "x": 5651.8, "z": 5952.5, "px": 3012.6, "py": 3063.9, "has_dungeon": false, "has_important": false}, {"id": 584, "name": "Mistlands_Giant2", "category": "other", "x": -5002.1, "z": 6461.8, "px": 1194.3, "py": 3150.8, "has_dungeon": false, "has_important": false}, {"id": 585, "name": "Mistlands_Giant2", "category": "other", "x": 2290.2, "z": 7358.2, "px": 2438.9, "py": 3303.8, "has_dungeon": false, "has_important": false}, {"id": 586, "name": "Mistlands_Giant2", "category": "other", "x": -6444.0, "z": 429.9, "px": 948.2, "py": 2121.4, "has_dungeon": false, "has_important": false}, {"id": 587, "name": "Mistlands_Giant2", "category": "other", "x": 1086.7, "z": 6993.9, "px": 2233.5, "py": 3241.6, "has_dungeon": false, "has_important": false}, {"id": 588, "name": "Mistlands_Giant2", "category": "other", "x": -6317.9, "z": 5099.6, "px": 969.7, "py": 2918.3, "has_dungeon": false, "has_important": false}, {"id": 589, "name": "Mistlands_Giant2", "category": "other", "x": 2385.2, "z": -7305.2, "px": 2455.1, "py": 801.2, "has_dungeon": false, "has_important": false}, {"id": 590, "name": "Mistlands_Giant2", "category": "other", "x": -5769.9, "z": -5746.6, "px": 1063.3, "py": 1067.2, "has_dungeon": false, "has_important": false}, {"id": 591, "name": "Mistlands_Giant2", "category": "other", "x": -1069.4, "z": -6965.2, "px": 1865.5, "py": 859.3, "has_dungeon": false, "has_important": false}, {"id": 592, "name": "Mistlands_Giant2", "category": "other", "x": 4289.4, "z": -5368.9, "px": 2780.1, "py": 1131.7, "has_dungeon": false, "has_important": false}, {"id": 593, "name": "Mistlands_Giant2", "category": "other", "x": 9809.3, "z": -632.8, "px": 3722.1, "py": 1940.0, "has_dungeon": false, "has_important": false}, {"id": 594, "name": "Mistlands_Giant2", "category": "other", "x": -7932.2, "z": -4209.9, "px": 694.2, "py": 1329.5, "has_dungeon": false, "has_important": false}, {"id": 595, "name": "Mistlands_Giant2", "category": "other", "x": -3704.3, "z": 5555.9, "px": 1415.8, "py": 2996.2, "has_dungeon": false, "has_important": false}, {"id": 596, "name": "Mistlands_Giant2", "category": "other", "x": 7187.8, "z": -3324.0, "px": 3274.7, "py": 1480.7, "has_dungeon": false, "has_important": false}, {"id": 597, "name": "Mistlands_Giant2", "category": "other", "x": -5485.1, "z": 5553.8, "px": 1111.9, "py": 2995.8, "has_dungeon": false, "has_important": false}, {"id": 598, "name": "Mistlands_Giant2", "category": "other", "x": 9602.9, "z": -2304.8, "px": 3686.9, "py": 1654.6, "has_dungeon": false, "has_important": false}, {"id": 599, "name": "Mistlands_Giant2", "category": "other", "x": -6344.1, "z": -5269.6, "px": 965.3, "py": 1148.7, "has_dungeon": false, "has_important": false}, {"id": 600, "name": "Mistlands_Giant2", "category": "other", "x": 4970.4, "z": 5566.2, "px": 2896.3, "py": 2998.0, "has_dungeon": false, "has_important": false}, {"id": 601, "name": "Mistlands_Giant2", "category": "other", "x": 3727.5, "z": -6652.7, "px": 2684.2, "py": 912.6, "has_dungeon": false, "has_important": false}, {"id": 602, "name": "Mistlands_Giant2", "category": "other", "x": 5612.8, "z": 4459.4, "px": 3005.9, "py": 2809.1, "has_dungeon": false, "has_important": false}, {"id": 603, "name": "Mistlands_Giant2", "category": "other", "x": 1394.6, "z": 7379.9, "px": 2286.0, "py": 3307.5, "has_dungeon": false, "has_important": false}, {"id": 604, "name": "Mistlands_Giant2", "category": "other", "x": -9525.7, "z": 764.4, "px": 422.3, "py": 2178.5, "has_dungeon": false, "has_important": false}, {"id": 605, "name": "Mistlands_Giant2", "category": "other", "x": -2992.4, "z": -7404.4, "px": 1537.3, "py": 784.3, "has_dungeon": false, "has_important": false}, {"id": 606, "name": "Mistlands_Giant2", "category": "other", "x": -8709.4, "z": -2732.0, "px": 561.6, "py": 1581.7, "has_dungeon": false, "has_important": false}, {"id": 607, "name": "Mistlands_Giant2", "category": "other", "x": 7873.6, "z": -4287.5, "px": 3391.8, "py": 1316.3, "has_dungeon": false, "has_important": false}, {"id": 608, "name": "Mistlands_Giant2", "category": "other", "x": 8014.2, "z": 1932.7, "px": 3415.8, "py": 2377.8, "has_dungeon": false, "has_important": false}, {"id": 609, "name": "Mistlands_Giant2", "category": "other", "x": 2880.8, "z": 5363.4, "px": 2539.7, "py": 2963.4, "has_dungeon": false, "has_important": false}, {"id": 610, "name": "Mistlands_Giant2", "category": "other", "x": -8265.8, "z": -2924.2, "px": 637.3, "py": 1548.9, "has_dungeon": false, "has_important": false}, {"id": 611, "name": "Mistlands_Giant2", "category": "other", "x": -7765.3, "z": -2670.7, "px": 722.7, "py": 1592.2, "has_dungeon": false, "has_important": false}, {"id": 612, "name": "Mistlands_Giant2", "category": "other", "x": 6804.3, "z": 3531.1, "px": 3209.3, "py": 2650.6, "has_dungeon": false, "has_important": false}, {"id": 613, "name": "Mistlands_Giant2", "category": "other", "x": -7617.0, "z": 1042.6, "px": 748.0, "py": 2225.9, "has_dungeon": false, "has_important": false}, {"id": 614, "name": "Mistlands_Giant2", "category": "other", "x": 3321.0, "z": -6977.9, "px": 2614.8, "py": 857.1, "has_dungeon": false, "has_important": false}, {"id": 615, "name": "Mistlands_Giant2", "category": "other", "x": -7160.2, "z": -3475.1, "px": 826.0, "py": 1454.9, "has_dungeon": false, "has_important": false}, {"id": 616, "name": "Mistlands_Giant2", "category": "other", "x": -8640.6, "z": -3002.6, "px": 573.3, "py": 1535.6, "has_dungeon": false, "has_important": false}, {"id": 617, "name": "Mistlands_Giant2", "category": "other", "x": -7189.7, "z": 2803.7, "px": 821.0, "py": 2526.5, "has_dungeon": false, "has_important": false}, {"id": 618, "name": "Mistlands_Giant2", "category": "other", "x": -9235.6, "z": 70.5, "px": 471.8, "py": 2060.0, "has_dungeon": false, "has_important": false}, {"id": 619, "name": "Mistlands_Giant2", "category": "other", "x": 6841.0, "z": 1232.7, "px": 3215.5, "py": 2258.4, "has_dungeon": false, "has_important": false}, {"id": 620, "name": "Mistlands_Giant2", "category": "other", "x": -7439.4, "z": 3973.8, "px": 778.3, "py": 2726.2, "has_dungeon": false, "has_important": false}, {"id": 621, "name": "Mistlands_Giant2", "category": "other", "x": -5456.4, "z": 6229.9, "px": 1116.8, "py": 3111.2, "has_dungeon": false, "has_important": false}, {"id": 622, "name": "Mistlands_Giant2", "category": "other", "x": 2890.8, "z": -6788.8, "px": 2541.4, "py": 889.4, "has_dungeon": false, "has_important": false}, {"id": 623, "name": "Mistlands_Giant2", "category": "other", "x": -5228.7, "z": 3005.0, "px": 1155.6, "py": 2560.9, "has_dungeon": false, "has_important": false}, {"id": 624, "name": "Mistlands_Giant2", "category": "other", "x": -7024.5, "z": 5376.0, "px": 849.2, "py": 2965.5, "has_dungeon": false, "has_important": false}, {"id": 625, "name": "Mistlands_Giant2", "category": "other", "x": -753.9, "z": -7916.4, "px": 1919.3, "py": 696.9, "has_dungeon": false, "has_important": false}, {"id": 626, "name": "Mistlands_Giant2", "category": "other", "x": 4948.0, "z": -3819.7, "px": 2892.5, "py": 1396.1, "has_dungeon": false, "has_important": false}, {"id": 627, "name": "Mistlands_Giant2", "category": "other", "x": 5772.5, "z": -4476.7, "px": 3033.2, "py": 1284.0, "has_dungeon": false, "has_important": false}, {"id": 628, "name": "Mistlands_Giant2", "category": "other", "x": 4625.5, "z": 6485.9, "px": 2837.4, "py": 3154.9, "has_dungeon": false, "has_important": false}, {"id": 629, "name": "Mistlands_Giant2", "category": "other", "x": -5175.2, "z": 5959.3, "px": 1164.8, "py": 3065.1, "has_dungeon": false, "has_important": false}, {"id": 630, "name": "Mistlands_Giant2", "category": "other", "x": -8852.2, "z": -298.1, "px": 537.2, "py": 1997.1, "has_dungeon": false, "has_important": false}, {"id": 631, "name": "Mistlands_Giant2", "category": "other", "x": 6186.4, "z": -1167.4, "px": 3103.8, "py": 1848.8, "has_dungeon": false, "has_important": false}, {"id": 632, "name": "Mistlands_Giant2", "category": "other", "x": -6548.7, "z": -3954.4, "px": 930.4, "py": 1373.1, "has_dungeon": false, "has_important": false}, {"id": 633, "name": "Mistlands_Giant2", "category": "other", "x": 1168.6, "z": -7165.6, "px": 2247.4, "py": 825.1, "has_dungeon": false, "has_important": false}, {"id": 634, "name": "Mistlands_Giant2", "category": "other", "x": 4849.9, "z": -6206.6, "px": 2875.7, "py": 988.7, "has_dungeon": false, "has_important": false}, {"id": 635, "name": "Mistlands_Giant2", "category": "other", "x": 4548.3, "z": -6588.0, "px": 2824.2, "py": 923.6, "has_dungeon": false, "has_important": false}, {"id": 636, "name": "Mistlands_Giant2", "category": "other", "x": 5072.1, "z": 4530.8, "px": 2913.6, "py": 2821.3, "has_dungeon": false, "has_important": false}, {"id": 637, "name": "Mistlands_Giant2", "category": "other", "x": -8018.8, "z": 4414.4, "px": 679.5, "py": 2801.4, "has_dungeon": false, "has_important": false}, {"id": 638, "name": "Mistlands_Giant2", "category": "other", "x": -9085.1, "z": 1294.8, "px": 497.5, "py": 2269.0, "has_dungeon": false, "has_important": false}, {"id": 639, "name": "Mistlands_Giant2", "category": "other", "x": 5932.9, "z": 2623.2, "px": 3060.5, "py": 2495.7, "has_dungeon": false, "has_important": false}, {"id": 640, "name": "Mistlands_Giant2", "category": "other", "x": 7341.9, "z": 3513.0, "px": 3301.0, "py": 2647.6, "has_dungeon": false, "has_important": false}, {"id": 641, "name": "Mistlands_Giant2", "category": "other", "x": 7159.1, "z": -780.9, "px": 3269.8, "py": 1914.7, "has_dungeon": false, "has_important": false}, {"id": 642, "name": "Mistlands_Giant2", "category": "other", "x": 9535.1, "z": -1088.7, "px": 3675.3, "py": 1862.2, "has_dungeon": false, "has_important": false}, {"id": 643, "name": "Mistlands_Giant2", "category": "other", "x": -3268.4, "z": -6415.9, "px": 1490.2, "py": 953.0, "has_dungeon": false, "has_important": false}, {"id": 644, "name": "Mistlands_Giant2", "category": "other", "x": 2449.1, "z": 6085.4, "px": 2466.0, "py": 3086.6, "has_dungeon": false, "has_important": false}, {"id": 645, "name": "Mistlands_Giant2", "category": "other", "x": 8511.6, "z": -1580.0, "px": 3500.6, "py": 1778.3, "has_dungeon": false, "has_important": false}, {"id": 646, "name": "Mistlands_Giant2", "category": "other", "x": 9027.7, "z": -1994.6, "px": 3588.7, "py": 1707.6, "has_dungeon": false, "has_important": false}, {"id": 647, "name": "Mistlands_Giant2", "category": "other", "x": -5622.9, "z": -5418.1, "px": 1088.4, "py": 1123.3, "has_dungeon": false, "has_important": false}, {"id": 648, "name": "Mistlands_Giant2", "category": "other", "x": -9456.0, "z": 2559.4, "px": 434.2, "py": 2484.8, "has_dungeon": false, "has_important": false}, {"id": 649, "name": "Mistlands_Giant2", "category": "other", "x": -7239.7, "z": 4207.9, "px": 812.4, "py": 2766.1, "has_dungeon": false, "has_important": false}, {"id": 650, "name": "Mistlands_Giant2", "category": "other", "x": -1711.7, "z": -6519.7, "px": 1755.9, "py": 935.3, "has_dungeon": false, "has_important": false}, {"id": 651, "name": "Mistlands_Giant2", "category": "other", "x": -7179.5, "z": 1089.2, "px": 822.7, "py": 2233.9, "has_dungeon": false, "has_important": false}, {"id": 652, "name": "Mistlands_Giant2", "category": "other", "x": -8715.5, "z": 2988.4, "px": 560.6, "py": 2558.0, "has_dungeon": false, "has_important": false}, {"id": 653, "name": "Mistlands_Giant2", "category": "other", "x": 7486.8, "z": 1653.0, "px": 3325.7, "py": 2330.1, "has_dungeon": false, "has_important": false}, {"id": 654, "name": "Mistlands_Giant2", "category": "other", "x": -3062.5, "z": -7030.0, "px": 1525.3, "py": 848.2, "has_dungeon": false, "has_important": false}, {"id": 655, "name": "Mistlands_Giant2", "category": "other", "x": -6137.7, "z": -5497.8, "px": 1000.5, "py": 1109.7, "has_dungeon": false, "has_important": false}, {"id": 8145, "name": "Mistlands_Harbour1", "category": "other", "x": -6337.6, "z": -4288.1, "px": 966.4, "py": 1316.2, "has_dungeon": false, "has_important": true}, {"id": 8146, "name": "Mistlands_Harbour1", "category": "other", "x": -7867.7, "z": 4669.4, "px": 705.2, "py": 2844.9, "has_dungeon": false, "has_important": true}, {"id": 8147, "name": "Mistlands_Harbour1", "category": "other", "x": 1672.6, "z": -7171.2, "px": 2333.5, "py": 824.1, "has_dungeon": false, "has_important": true}, {"id": 8148, "name": "Mistlands_Harbour1", "category": "other", "x": 9670.0, "z": -2373.1, "px": 3698.3, "py": 1643.0, "has_dungeon": false, "has_important": true}, {"id": 8149, "name": "Mistlands_Harbour1", "category": "other", "x": 7743.5, "z": 1989.0, "px": 3369.6, "py": 2387.5, "has_dungeon": false, "has_important": true}, {"id": 8150, "name": "Mistlands_Harbour1", "category": "other", "x": -8195.2, "z": -2882.8, "px": 649.4, "py": 1556.0, "has_dungeon": false, "has_important": true}, {"id": 8151, "name": "Mistlands_Harbour1", "category": "other", "x": -3974.9, "z": -5302.6, "px": 1369.6, "py": 1143.0, "has_dungeon": false, "has_important": true}, {"id": 8152, "name": "Mistlands_Harbour1", "category": "other", "x": -4856.9, "z": 4404.5, "px": 1219.1, "py": 2799.7, "has_dungeon": false, "has_important": true}, {"id": 8153, "name": "Mistlands_Harbour1", "category": "other", "x": 9800.8, "z": 1732.5, "px": 3720.7, "py": 2343.7, "has_dungeon": false, "has_important": true}, {"id": 8154, "name": "Mistlands_Harbour1", "category": "other", "x": 9024.6, "z": 393.7, "px": 3588.2, "py": 2115.2, "has_dungeon": false, "has_important": true}, {"id": 8155, "name": "Mistlands_Harbour1", "category": "other", "x": 7809.2, "z": 3847.7, "px": 3380.8, "py": 2704.7, "has_dungeon": false, "has_important": true}, {"id": 8156, "name": "Mistlands_Harbour1", "category": "other", "x": 9339.7, "z": -649.8, "px": 3642.0, "py": 1937.1, "has_dungeon": false, "has_important": true}, {"id": 8157, "name": "Mistlands_Harbour1", "category": "other", "x": -7490.5, "z": -312.7, "px": 769.6, "py": 1994.6, "has_dungeon": false, "has_important": true}, {"id": 8158, "name": "Mistlands_Harbour1", "category": "other", "x": 7171.9, "z": -3209.7, "px": 3272.0, "py": 1500.2, "has_dungeon": false, "has_important": true}, {"id": 8159, "name": "Mistlands_Harbour1", "category": "other", "x": 6982.2, "z": 4097.4, "px": 3239.6, "py": 2747.3, "has_dungeon": false, "has_important": true}, {"id": 8160, "name": "Mistlands_Harbour1", "category": "other", "x": 7865.5, "z": -3449.3, "px": 3390.4, "py": 1459.3, "has_dungeon": false, "has_important": true}, {"id": 8161, "name": "Mistlands_Harbour1", "category": "other", "x": -2946.1, "z": 6787.0, "px": 1545.2, "py": 3206.3, "has_dungeon": false, "has_important": true}, {"id": 8162, "name": "Mistlands_Harbour1", "category": "other", "x": -7286.5, "z": 4283.6, "px": 804.4, "py": 2779.1, "has_dungeon": false, "has_important": false}, {"id": 8163, "name": "Mistlands_Harbour1", "category": "other", "x": -2185.7, "z": -7299.6, "px": 1675.0, "py": 802.2, "has_dungeon": false, "has_important": true}, {"id": 8164, "name": "Mistlands_Harbour1", "category": "other", "x": 7492.2, "z": 3582.4, "px": 3326.7, "py": 2659.4, "has_dungeon": false, "has_important": true}, {"id": 8165, "name": "Mistlands_Harbour1", "category": "other", "x": 1530.2, "z": -7563.2, "px": 2309.2, "py": 757.2, "has_dungeon": false, "has_important": true}, {"id": 8166, "name": "Mistlands_Harbour1", "category": "other", "x": -5309.5, "z": 4541.6, "px": 1141.8, "py": 2823.1, "has_dungeon": false, "has_important": true}, {"id": 8167, "name": "Mistlands_Harbour1", "category": "other", "x": -6215.7, "z": -5625.0, "px": 987.2, "py": 1088.0, "has_dungeon": false, "has_important": true}, {"id": 8168, "name": "Mistlands_Harbour1", "category": "other", "x": 1594.7, "z": -7482.9, "px": 2320.2, "py": 770.9, "has_dungeon": false, "has_important": true}, {"id": 8169, "name": "Mistlands_Harbour1", "category": "other", "x": -6472.7, "z": -2421.1, "px": 943.3, "py": 1634.8, "has_dungeon": false, "has_important": true}, {"id": 8170, "name": "Mistlands_Harbour1", "category": "other", "x": -5688.3, "z": -4107.8, "px": 1077.2, "py": 1346.9, "has_dungeon": false, "has_important": true}, {"id": 8171, "name": "Mistlands_Harbour1", "category": "other", "x": 6083.6, "z": 1989.9, "px": 3086.3, "py": 2387.6, "has_dungeon": false, "has_important": true}, {"id": 8172, "name": "Mistlands_Harbour1", "category": "other", "x": 6404.1, "z": 3191.8, "px": 3141.0, "py": 2592.7, "has_dungeon": false, "has_important": true}, {"id": 8173, "name": "Mistlands_Harbour1", "category": "other", "x": -2505.0, "z": -5760.7, "px": 1620.5, "py": 1064.8, "has_dungeon": false, "has_important": true}, {"id": 8174, "name": "Mistlands_Harbour1", "category": "other", "x": -7107.6, "z": 2748.2, "px": 835.0, "py": 2517.0, "has_dungeon": false, "has_important": true}, {"id": 8175, "name": "Mistlands_Harbour1", "category": "other", "x": -2356.9, "z": 6655.2, "px": 1645.8, "py": 3183.8, "has_dungeon": false, "has_important": true}, {"id": 8176, "name": "Mistlands_Harbour1", "category": "other", "x": 318.7, "z": -6839.6, "px": 2102.4, "py": 880.7, "has_dungeon": false, "has_important": true}, {"id": 8177, "name": "Mistlands_Harbour1", "category": "other", "x": -7038.7, "z": 4157.0, "px": 846.7, "py": 2757.5, "has_dungeon": false, "has_important": true}, {"id": 8178, "name": "Mistlands_Harbour1", "category": "other", "x": 8001.9, "z": 3643.4, "px": 3413.7, "py": 2669.8, "has_dungeon": false, "has_important": true}, {"id": 8179, "name": "Mistlands_Harbour1", "category": "other", "x": -9918.0, "z": -1018.4, "px": 355.3, "py": 1874.2, "has_dungeon": false, "has_important": true}, {"id": 8180, "name": "Mistlands_Harbour1", "category": "other", "x": -6198.1, "z": 1349.6, "px": 990.2, "py": 2278.3, "has_dungeon": false, "has_important": true}, {"id": 8181, "name": "Mistlands_Harbour1", "category": "other", "x": 7938.8, "z": 4278.1, "px": 3402.9, "py": 2778.1, "has_dungeon": false, "has_important": true}, {"id": 8182, "name": "Mistlands_Harbour1", "category": "other", "x": 8903.8, "z": -3198.9, "px": 3567.6, "py": 1502.1, "has_dungeon": false, "has_important": true}, {"id": 8183, "name": "Mistlands_Harbour1", "category": "other", "x": -8116.6, "z": -951.9, "px": 662.8, "py": 1885.5, "has_dungeon": false, "has_important": true}, {"id": 8184, "name": "Mistlands_Harbour1", "category": "other", "x": -5440.5, "z": -5437.0, "px": 1119.5, "py": 1120.1, "has_dungeon": false, "has_important": true}, {"id": 8185, "name": "Mistlands_Harbour1", "category": "other", "x": 8769.2, "z": -2622.8, "px": 3544.6, "py": 1600.4, "has_dungeon": false, "has_important": true}, {"id": 8186, "name": "Mistlands_Harbour1", "category": "other", "x": -1600.6, "z": -6200.9, "px": 1774.8, "py": 989.7, "has_dungeon": false, "has_important": true}, {"id": 8187, "name": "Mistlands_Harbour1", "category": "other", "x": 9605.3, "z": -1727.6, "px": 3687.3, "py": 1753.2, "has_dungeon": false, "has_important": true}, {"id": 8188, "name": "Mistlands_Harbour1", "category": "other", "x": -8372.8, "z": -4228.5, "px": 619.0, "py": 1326.3, "has_dungeon": false, "has_important": true}, {"id": 8189, "name": "Mistlands_Harbour1", "category": "other", "x": -8309.3, "z": 584.9, "px": 629.9, "py": 2147.8, "has_dungeon": false, "has_important": true}, {"id": 8190, "name": "Mistlands_Harbour1", "category": "other", "x": 5571.9, "z": 2496.4, "px": 2998.9, "py": 2474.1, "has_dungeon": false, "has_important": true}, {"id": 8191, "name": "Mistlands_Harbour1", "category": "other", "x": 4421.5, "z": 6595.9, "px": 2802.6, "py": 3173.7, "has_dungeon": false, "has_important": true}, {"id": 8192, "name": "Mistlands_Harbour1", "category": "other", "x": 7612.2, "z": 2051.6, "px": 3347.1, "py": 2398.1, "has_dungeon": false, "has_important": true}, {"id": 8193, "name": "Mistlands_Harbour1", "category": "other", "x": 6584.2, "z": -2501.2, "px": 3171.7, "py": 1621.1, "has_dungeon": false, "has_important": true}, {"id": 8194, "name": "Mistlands_Harbour1", "category": "other", "x": -9652.5, "z": 2315.4, "px": 400.6, "py": 2443.2, "has_dungeon": false, "has_important": true}, {"id": 8195, "name": "Mistlands_Harbour1", "category": "other", "x": 6087.6, "z": -1082.8, "px": 3087.0, "py": 1863.2, "has_dungeon": false, "has_important": true}, {"id": 8196, "name": "Mistlands_Harbour1", "category": "other", "x": -6344.5, "z": 4294.5, "px": 965.2, "py": 2780.9, "has_dungeon": false, "has_important": false}, {"id": 8197, "name": "Mistlands_Harbour1", "category": "other", "x": 9401.2, "z": -1352.7, "px": 3652.5, "py": 1817.1, "has_dungeon": false, "has_important": true}, {"id": 8198, "name": "Mistlands_Harbour1", "category": "other", "x": 4410.4, "z": 5311.5, "px": 2800.7, "py": 2954.5, "has_dungeon": false, "has_important": true}, {"id": 8199, "name": "Mistlands_Harbour1", "category": "other", "x": 9659.8, "z": 2492.6, "px": 3696.6, "py": 2473.4, "has_dungeon": false, "has_important": true}, {"id": 8200, "name": "Mistlands_Harbour1", "category": "other", "x": 7995.7, "z": -3254.1, "px": 3412.6, "py": 1492.6, "has_dungeon": false, "has_important": true}, {"id": 8201, "name": "Mistlands_Harbour1", "category": "other", "x": 3007.4, "z": -7107.6, "px": 2561.3, "py": 835.0, "has_dungeon": false, "has_important": true}, {"id": 8202, "name": "Mistlands_Harbour1", "category": "other", "x": -3967.4, "z": 6155.8, "px": 1370.9, "py": 3098.6, "has_dungeon": false, "has_important": true}, {"id": 8203, "name": "Mistlands_Harbour1", "category": "other", "x": 5114.7, "z": 3529.4, "px": 2920.9, "py": 2650.4, "has_dungeon": false, "has_important": true}, {"id": 8204, "name": "Mistlands_Harbour1", "category": "other", "x": -5771.1, "z": 1269.4, "px": 1063.1, "py": 2264.6, "has_dungeon": false, "has_important": true}, {"id": 8205, "name": "Mistlands_Harbour1", "category": "other", "x": -5697.4, "z": -4289.6, "px": 1075.6, "py": 1315.9, "has_dungeon": false, "has_important": true}, {"id": 8206, "name": "Mistlands_Harbour1", "category": "other", "x": 5893.8, "z": 2741.3, "px": 3053.9, "py": 2515.8, "has_dungeon": false, "has_important": false}, {"id": 8207, "name": "Mistlands_Harbour1", "category": "other", "x": -5890.6, "z": 2685.9, "px": 1042.7, "py": 2506.4, "has_dungeon": false, "has_important": true}, {"id": 8208, "name": "Mistlands_Harbour1", "category": "other", "x": 7095.7, "z": -3083.4, "px": 3259.0, "py": 1521.8, "has_dungeon": false, "has_important": true}, {"id": 8209, "name": "Mistlands_Harbour1", "category": "other", "x": -6216.1, "z": 4165.2, "px": 987.1, "py": 2758.9, "has_dungeon": false, "has_important": true}, {"id": 8210, "name": "Mistlands_Harbour1", "category": "other", "x": 7033.0, "z": 5241.9, "px": 3248.3, "py": 2942.6, "has_dungeon": false, "has_important": true}, {"id": 8211, "name": "Mistlands_Harbour1", "category": "other", "x": 9157.9, "z": -3017.4, "px": 3610.9, "py": 1533.0, "has_dungeon": false, "has_important": true}, {"id": 8212, "name": "Mistlands_Harbour1", "category": "other", "x": -8308.6, "z": 516.4, "px": 630.0, "py": 2136.1, "has_dungeon": false, "has_important": true}, {"id": 8213, "name": "Mistlands_Harbour1", "category": "other", "x": 9211.5, "z": -3141.3, "px": 3620.1, "py": 1511.9, "has_dungeon": false, "has_important": false}, {"id": 8214, "name": "Mistlands_Harbour1", "category": "other", "x": -9154.2, "z": 182.3, "px": 485.7, "py": 2079.1, "has_dungeon": false, "has_important": true}, {"id": 8215, "name": "Mistlands_Harbour1", "category": "other", "x": -830.4, "z": 7110.2, "px": 1906.3, "py": 3261.5, "has_dungeon": false, "has_important": true}, {"id": 8216, "name": "Mistlands_Harbour1", "category": "other", "x": 1159.1, "z": 7805.0, "px": 2245.8, "py": 3380.1, "has_dungeon": false, "has_important": true}, {"id": 8217, "name": "Mistlands_Harbour1", "category": "other", "x": 1547.3, "z": 7625.6, "px": 2312.1, "py": 3349.4, "has_dungeon": false, "has_important": true}, {"id": 8218, "name": "Mistlands_Harbour1", "category": "other", "x": 1155.3, "z": 6528.3, "px": 2245.2, "py": 3162.2, "has_dungeon": false, "has_important": true}, {"id": 8219, "name": "Mistlands_Harbour1", "category": "other", "x": -8586.2, "z": -2750.8, "px": 582.6, "py": 1578.5, "has_dungeon": false, "has_important": true}, {"id": 8220, "name": "Mistlands_Harbour1", "category": "other", "x": -1269.3, "z": -7555.4, "px": 1831.4, "py": 758.5, "has_dungeon": false, "has_important": true}, {"id": 8221, "name": "Mistlands_Harbour1", "category": "other", "x": 8385.0, "z": 764.5, "px": 3479.0, "py": 2178.5, "has_dungeon": false, "has_important": false}, {"id": 8222, "name": "Mistlands_Harbour1", "category": "other", "x": -7365.2, "z": -705.8, "px": 791.0, "py": 1927.5, "has_dungeon": false, "has_important": true}, {"id": 8223, "name": "Mistlands_Harbour1", "category": "other", "x": 4860.6, "z": 6324.6, "px": 2877.5, "py": 3127.4, "has_dungeon": false, "has_important": true}, {"id": 8224, "name": "Mistlands_Harbour1", "category": "other", "x": 6974.6, "z": 5377.8, "px": 3238.3, "py": 2965.8, "has_dungeon": false, "has_important": true}, {"id": 8225, "name": "Mistlands_Harbour1", "category": "other", "x": -6197.7, "z": 4091.8, "px": 990.3, "py": 2746.3, "has_dungeon": false, "has_important": false}, {"id": 8226, "name": "Mistlands_Harbour1", "category": "other", "x": -3258.2, "z": 5442.2, "px": 1491.9, "py": 2976.8, "has_dungeon": false, "has_important": true}, {"id": 8227, "name": "Mistlands_Harbour1", "category": "other", "x": 969.9, "z": -7232.3, "px": 2213.5, "py": 813.7, "has_dungeon": false, "has_important": true}, {"id": 8228, "name": "Mistlands_Harbour1", "category": "other", "x": -8713.6, "z": -2946.4, "px": 560.9, "py": 1545.1, "has_dungeon": false, "has_important": true}, {"id": 8229, "name": "Mistlands_Harbour1", "category": "other", "x": -7686.5, "z": 965.5, "px": 736.2, "py": 2212.8, "has_dungeon": false, "has_important": true}, {"id": 8230, "name": "Mistlands_Harbour1", "category": "other", "x": 2304.2, "z": 7426.9, "px": 2441.3, "py": 3315.5, "has_dungeon": false, "has_important": true}, {"id": 8231, "name": "Mistlands_Harbour1", "category": "other", "x": -6390.3, "z": -2423.5, "px": 957.4, "py": 1634.4, "has_dungeon": false, "has_important": true}, {"id": 8232, "name": "Mistlands_Harbour1", "category": "other", "x": 5963.2, "z": -4617.2, "px": 3065.7, "py": 1260.0, "has_dungeon": false, "has_important": true}, {"id": 8233, "name": "Mistlands_Harbour1", "category": "other", "x": -5943.2, "z": -904.4, "px": 1033.7, "py": 1893.6, "has_dungeon": false, "has_important": true}, {"id": 8234, "name": "Mistlands_Harbour1", "category": "other", "x": 6399.8, "z": 886.1, "px": 3140.2, "py": 2199.2, "has_dungeon": false, "has_important": true}, {"id": 8235, "name": "Mistlands_Harbour1", "category": "other", "x": 1154.2, "z": -7691.7, "px": 2245.0, "py": 735.3, "has_dungeon": false, "has_important": true}, {"id": 8236, "name": "Mistlands_Harbour1", "category": "other", "x": -7412.7, "z": 3454.7, "px": 782.9, "py": 2637.6, "has_dungeon": false, "has_important": false}, {"id": 8237, "name": "Mistlands_Harbour1", "category": "other", "x": -8837.1, "z": 2870.9, "px": 539.8, "py": 2538.0, "has_dungeon": false, "has_important": true}, {"id": 8238, "name": "Mistlands_Harbour1", "category": "other", "x": 4356.9, "z": 4875.6, "px": 2791.6, "py": 2880.1, "has_dungeon": false, "has_important": true}, {"id": 8239, "name": "Mistlands_Harbour1", "category": "other", "x": 4661.4, "z": -4023.5, "px": 2843.5, "py": 1361.3, "has_dungeon": false, "has_important": true}, {"id": 8240, "name": "Mistlands_Harbour1", "category": "other", "x": 8322.5, "z": 2757.0, "px": 3468.4, "py": 2518.5, "has_dungeon": false, "has_important": true}, {"id": 8241, "name": "Mistlands_Harbour1", "category": "other", "x": 7548.1, "z": 3060.3, "px": 3336.2, "py": 2570.3, "has_dungeon": false, "has_important": true}, {"id": 8242, "name": "Mistlands_Harbour1", "category": "other", "x": -8898.8, "z": -251.5, "px": 529.3, "py": 2005.1, "has_dungeon": false, "has_important": true}, {"id": 8243, "name": "Mistlands_Harbour1", "category": "other", "x": 8321.7, "z": 2691.4, "px": 3468.2, "py": 2507.3, "has_dungeon": false, "has_important": true}, {"id": 8244, "name": "Mistlands_Harbour1", "category": "other", "x": -8702.1, "z": 1086.7, "px": 562.8, "py": 2233.5, "has_dungeon": false, "has_important": true}, {"id": 7925, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 4921.5, "z": -4345.8, "px": 2887.9, "py": 1306.3, "has_dungeon": false, "has_important": true}, {"id": 7926, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -7032.6, "z": 4983.8, "px": 847.8, "py": 2898.6, "has_dungeon": false, "has_important": true}, {"id": 7927, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -8194.9, "z": -3575.9, "px": 649.4, "py": 1437.7, "has_dungeon": false, "has_important": true}, {"id": 7928, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 6657.5, "z": -249.3, "px": 3184.2, "py": 2005.5, "has_dungeon": false, "has_important": true}, {"id": 7929, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -2240.2, "z": -6463.7, "px": 1665.7, "py": 944.9, "has_dungeon": false, "has_important": true}, {"id": 7930, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 5758.7, "z": 4035.2, "px": 3030.8, "py": 2736.7, "has_dungeon": false, "has_important": true}, {"id": 7931, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 6153.5, "z": -1154.9, "px": 3098.2, "py": 1850.9, "has_dungeon": false, "has_important": true}, {"id": 7932, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 4099.1, "z": -5370.7, "px": 2747.6, "py": 1131.4, "has_dungeon": false, "has_important": true}, {"id": 7933, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -7740.3, "z": -3261.6, "px": 727.0, "py": 1491.4, "has_dungeon": false, "has_important": true}, {"id": 7934, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -6462.5, "z": 5570.0, "px": 945.1, "py": 2998.6, "has_dungeon": false, "has_important": true}, {"id": 7935, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -5949.6, "z": -5620.3, "px": 1032.6, "py": 1088.8, "has_dungeon": false, "has_important": true}, {"id": 7936, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 8056.0, "z": 1141.6, "px": 3422.9, "py": 2242.8, "has_dungeon": false, "has_important": true}, {"id": 7937, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 3204.7, "z": 6842.7, "px": 2594.9, "py": 3215.8, "has_dungeon": false, "has_important": true}, {"id": 7938, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -7412.7, "z": -1348.6, "px": 782.9, "py": 1817.8, "has_dungeon": false, "has_important": true}, {"id": 7939, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -8516.0, "z": 1993.4, "px": 594.6, "py": 2388.2, "has_dungeon": false, "has_important": true}, {"id": 7940, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 7740.7, "z": 2677.2, "px": 3369.1, "py": 2504.9, "has_dungeon": false, "has_important": true}, {"id": 7941, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 383.9, "z": 6721.7, "px": 2113.5, "py": 3195.2, "has_dungeon": false, "has_important": true}, {"id": 7942, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 4927.2, "z": -5640.8, "px": 2888.9, "py": 1085.3, "has_dungeon": false, "has_important": true}, {"id": 7943, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -7425.2, "z": -3452.2, "px": 780.8, "py": 1458.8, "has_dungeon": false, "has_important": true}, {"id": 7944, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -7554.8, "z": 1477.4, "px": 758.6, "py": 2300.1, "has_dungeon": false, "has_important": true}, {"id": 7945, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 6154.2, "z": -1603.4, "px": 3098.3, "py": 1774.4, "has_dungeon": false, "has_important": true}, {"id": 7946, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 7235.2, "z": -2113.4, "px": 3282.8, "py": 1687.3, "has_dungeon": false, "has_important": true}, {"id": 7947, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -8948.8, "z": 1023.5, "px": 520.7, "py": 2222.7, "has_dungeon": false, "has_important": true}, {"id": 7948, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 6788.4, "z": 1290.5, "px": 3206.6, "py": 2268.2, "has_dungeon": false, "has_important": true}, {"id": 7949, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 136.6, "z": -6856.0, "px": 2071.3, "py": 877.9, "has_dungeon": false, "has_important": true}, {"id": 7950, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 2376.3, "z": -6920.7, "px": 2453.6, "py": 866.9, "has_dungeon": false, "has_important": true}, {"id": 7951, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 6079.8, "z": 2429.8, "px": 3085.6, "py": 2462.7, "has_dungeon": false, "has_important": true}, {"id": 7952, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -9341.6, "z": -583.4, "px": 453.7, "py": 1948.4, "has_dungeon": false, "has_important": true}, {"id": 7953, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -3769.0, "z": 5574.2, "px": 1404.8, "py": 2999.3, "has_dungeon": false, "has_important": true}, {"id": 7954, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 4726.9, "z": 6411.7, "px": 2854.7, "py": 3142.3, "has_dungeon": false, "has_important": true}, {"id": 7955, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -1605.7, "z": -7239.3, "px": 1774.0, "py": 812.5, "has_dungeon": false, "has_important": true}, {"id": 7956, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 1923.4, "z": -7229.2, "px": 2376.3, "py": 814.2, "has_dungeon": false, "has_important": true}, {"id": 7957, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -9658.2, "z": 2228.6, "px": 399.7, "py": 2428.3, "has_dungeon": false, "has_important": true}, {"id": 7958, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 8136.9, "z": -843.7, "px": 3436.7, "py": 1904.0, "has_dungeon": false, "has_important": true}, {"id": 7959, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -133.0, "z": 7233.9, "px": 2025.3, "py": 3282.6, "has_dungeon": false, "has_important": true}, {"id": 7960, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -5110.0, "z": 4553.5, "px": 1175.9, "py": 2825.1, "has_dungeon": false, "has_important": true}, {"id": 7961, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 6274.7, "z": 2692.6, "px": 3118.9, "py": 2507.5, "has_dungeon": false, "has_important": true}, {"id": 7962, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -9525.2, "z": -2486.1, "px": 422.4, "py": 1623.7, "has_dungeon": false, "has_important": true}, {"id": 7963, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 5886.8, "z": 5698.7, "px": 3052.7, "py": 3020.6, "has_dungeon": false, "has_important": true}, {"id": 7964, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -2628.0, "z": -6646.2, "px": 1599.5, "py": 913.7, "has_dungeon": false, "has_important": true}, {"id": 7965, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 7095.5, "z": -4788.4, "px": 3259.0, "py": 1230.8, "has_dungeon": false, "has_important": true}, {"id": 7966, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 2567.3, "z": 6402.0, "px": 2486.2, "py": 3140.6, "has_dungeon": false, "has_important": true}, {"id": 7967, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -6270.2, "z": 4107.7, "px": 977.9, "py": 2749.0, "has_dungeon": false, "has_important": true}, {"id": 7968, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -3074.7, "z": 5386.2, "px": 1523.3, "py": 2967.2, "has_dungeon": false, "has_important": true}, {"id": 7969, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -5945.1, "z": 2754.6, "px": 1033.4, "py": 2518.1, "has_dungeon": false, "has_important": true}, {"id": 7970, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -9220.9, "z": -380.2, "px": 474.3, "py": 1983.1, "has_dungeon": false, "has_important": true}, {"id": 7971, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 6581.4, "z": 5442.4, "px": 3171.2, "py": 2976.8, "has_dungeon": false, "has_important": true}, {"id": 7972, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -8826.2, "z": -1275.6, "px": 541.7, "py": 1830.3, "has_dungeon": false, "has_important": true}, {"id": 7973, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 5496.1, "z": 6260.6, "px": 2986.0, "py": 3116.5, "has_dungeon": false, "has_important": true}, {"id": 7974, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -6527.8, "z": 5685.1, "px": 933.9, "py": 3018.3, "has_dungeon": false, "has_important": true}, {"id": 7975, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -2878.1, "z": -5888.8, "px": 1556.8, "py": 1043.0, "has_dungeon": false, "has_important": true}, {"id": 7976, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 9156.5, "z": -1018.0, "px": 3610.7, "py": 1874.3, "has_dungeon": false, "has_important": true}, {"id": 7977, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -6458.6, "z": -5058.7, "px": 945.7, "py": 1184.6, "has_dungeon": false, "has_important": true}, {"id": 7978, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 6922.9, "z": 1524.1, "px": 3229.5, "py": 2308.1, "has_dungeon": false, "has_important": true}, {"id": 7979, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 6155.4, "z": 4995.2, "px": 3098.5, "py": 2900.5, "has_dungeon": false, "has_important": true}, {"id": 7980, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -9660.3, "z": 1145.3, "px": 399.3, "py": 2243.5, "has_dungeon": false, "has_important": true}, {"id": 7981, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -6658.2, "z": -3259.7, "px": 911.7, "py": 1491.7, "has_dungeon": false, "has_important": true}, {"id": 7982, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 7093.3, "z": 4102.9, "px": 3258.6, "py": 2748.2, "has_dungeon": false, "has_important": true}, {"id": 7983, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -6794.7, "z": 4982.3, "px": 888.4, "py": 2898.3, "has_dungeon": false, "has_important": true}, {"id": 7984, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 7689.0, "z": 2108.7, "px": 3360.3, "py": 2407.9, "has_dungeon": false, "has_important": true}, {"id": 7985, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 6590.3, "z": -69.4, "px": 3172.7, "py": 2036.2, "has_dungeon": false, "has_important": true}, {"id": 7986, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -707.2, "z": 6590.9, "px": 1927.3, "py": 3172.8, "has_dungeon": false, "has_important": true}, {"id": 7987, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -7228.2, "z": 2890.9, "px": 814.4, "py": 2541.4, "has_dungeon": false, "has_important": true}, {"id": 7988, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 2947.1, "z": 6922.2, "px": 2551.0, "py": 3229.4, "has_dungeon": false, "has_important": true}, {"id": 7989, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 4990.2, "z": 4408.6, "px": 2899.7, "py": 2800.4, "has_dungeon": false, "has_important": true}, {"id": 7990, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 7235.0, "z": -4731.6, "px": 3282.8, "py": 1240.5, "has_dungeon": false, "has_important": true}, {"id": 7991, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 5000.9, "z": -5515.9, "px": 2901.5, "py": 1106.6, "has_dungeon": false, "has_important": true}, {"id": 7992, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -4159.5, "z": 4920.8, "px": 1338.1, "py": 2887.8, "has_dungeon": false, "has_important": true}, {"id": 7993, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 9789.8, "z": -695.5, "px": 3718.8, "py": 1929.3, "has_dungeon": false, "has_important": true}, {"id": 7994, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -7613.4, "z": -1091.1, "px": 748.6, "py": 1861.8, "has_dungeon": false, "has_important": true}, {"id": 7995, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 1208.3, "z": -6472.7, "px": 2254.2, "py": 943.3, "has_dungeon": false, "has_important": true}, {"id": 7996, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -9404.7, "z": 387.6, "px": 442.9, "py": 2114.2, "has_dungeon": false, "has_important": true}, {"id": 7997, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -9350.6, "z": -713.8, "px": 452.2, "py": 1926.2, "has_dungeon": false, "has_important": true}, {"id": 7998, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -6517.2, "z": -640.3, "px": 935.7, "py": 1938.7, "has_dungeon": false, "has_important": true}, {"id": 7999, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 1091.9, "z": 7488.8, "px": 2234.4, "py": 3326.1, "has_dungeon": false, "has_important": true}, {"id": 8000, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 8522.8, "z": 1332.2, "px": 3502.6, "py": 2275.4, "has_dungeon": false, "has_important": true}, {"id": 8001, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -9413.3, "z": 1286.4, "px": 441.5, "py": 2267.5, "has_dungeon": false, "has_important": true}, {"id": 8002, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 9663.5, "z": -449.5, "px": 3697.2, "py": 1971.3, "has_dungeon": false, "has_important": true}, {"id": 8003, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 8447.3, "z": -3071.9, "px": 3489.7, "py": 1523.7, "has_dungeon": false, "has_important": true}, {"id": 8004, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 8971.6, "z": 1847.6, "px": 3579.2, "py": 2363.3, "has_dungeon": false, "has_important": true}, {"id": 8005, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 7686.3, "z": -4294.3, "px": 3359.8, "py": 1315.1, "has_dungeon": false, "has_important": true}, {"id": 8006, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 3837.3, "z": -5770.4, "px": 2702.9, "py": 1063.2, "has_dungeon": false, "has_important": true}, {"id": 8007, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 4470.6, "z": 6138.3, "px": 2811.0, "py": 3095.6, "has_dungeon": false, "has_important": true}, {"id": 8008, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -3188.4, "z": -6456.8, "px": 1503.8, "py": 946.0, "has_dungeon": false, "has_important": true}, {"id": 8009, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -1212.0, "z": -5946.4, "px": 1841.2, "py": 1033.1, "has_dungeon": false, "has_important": true}, {"id": 8010, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 4922.6, "z": 4736.7, "px": 2888.1, "py": 2856.4, "has_dungeon": false, "has_important": true}, {"id": 8011, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -3338.1, "z": -6215.1, "px": 1478.3, "py": 987.3, "has_dungeon": false, "has_important": true}, {"id": 8012, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 7284.2, "z": 1912.2, "px": 3291.2, "py": 2374.3, "has_dungeon": false, "has_important": true}, {"id": 8013, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 7173.3, "z": -3384.0, "px": 3272.2, "py": 1470.5, "has_dungeon": false, "has_important": true}, {"id": 8014, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 3262.8, "z": 6525.2, "px": 2604.9, "py": 3161.6, "has_dungeon": false, "has_important": true}, {"id": 8015, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -9546.2, "z": -1668.2, "px": 418.8, "py": 1763.3, "has_dungeon": false, "has_important": true}, {"id": 8016, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 3903.2, "z": -6388.4, "px": 2714.1, "py": 957.7, "has_dungeon": false, "has_important": true}, {"id": 8017, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -2298.7, "z": -6710.6, "px": 1655.7, "py": 902.7, "has_dungeon": false, "has_important": true}, {"id": 8018, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 7032.2, "z": -4920.3, "px": 3248.2, "py": 1208.3, "has_dungeon": false, "has_important": true}, {"id": 8019, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 7284.4, "z": 57.1, "px": 3291.2, "py": 2057.7, "has_dungeon": false, "has_important": true}, {"id": 8020, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -4929.2, "z": 4341.8, "px": 1206.7, "py": 2789.0, "has_dungeon": false, "has_important": true}, {"id": 8021, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": -9736.1, "z": -1092.3, "px": 386.4, "py": 1861.6, "has_dungeon": false, "has_important": true}, {"id": 8022, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 7363.2, "z": -2109.5, "px": 3304.7, "py": 1688.0, "has_dungeon": false, "has_important": true}, {"id": 8023, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 8649.2, "z": 1224.7, "px": 3524.1, "py": 2257.0, "has_dungeon": false, "has_important": true}, {"id": 8024, "name": "Mistlands_Lighthouse1_new", "category": "other", "x": 6263.8, "z": -4683.6, "px": 3117.0, "py": 1248.7, "has_dungeon": false, "has_important": true}, {"id": 8695, "name": "Mistlands_RoadPost1", "category": "other", "x": -697.6, "z": -7353.7, "px": 1928.9, "py": 793.0, "has_dungeon": false, "has_important": true}, {"id": 8696, "name": "Mistlands_RoadPost1", "category": "other", "x": -5291.3, "z": 2856.0, "px": 1145.0, "py": 2535.4, "has_dungeon": false, "has_important": true}, {"id": 8697, "name": "Mistlands_RoadPost1", "category": "other", "x": -9466.1, "z": -1932.0, "px": 432.5, "py": 1718.3, "has_dungeon": false, "has_important": false}, {"id": 8698, "name": "Mistlands_RoadPost1", "category": "other", "x": -7059.3, "z": 4867.5, "px": 843.2, "py": 2878.7, "has_dungeon": false, "has_important": true}, {"id": 8699, "name": "Mistlands_RoadPost1", "category": "other", "x": -6119.6, "z": 1075.4, "px": 1003.6, "py": 2231.5, "has_dungeon": false, "has_important": true}, {"id": 8700, "name": "Mistlands_RoadPost1", "category": "other", "x": -1279.7, "z": 7483.7, "px": 1829.6, "py": 3325.2, "has_dungeon": false, "has_important": true}, {"id": 8701, "name": "Mistlands_RoadPost1", "category": "other", "x": 8496.6, "z": -3270.8, "px": 3498.1, "py": 1489.8, "has_dungeon": false, "has_important": true}, {"id": 8702, "name": "Mistlands_RoadPost1", "category": "other", "x": -7284.3, "z": 555.1, "px": 804.8, "py": 2142.7, "has_dungeon": false, "has_important": false}, {"id": 8703, "name": "Mistlands_RoadPost1", "category": "other", "x": -5892.6, "z": -5170.3, "px": 1042.3, "py": 1165.6, "has_dungeon": false, "has_important": false}, {"id": 8704, "name": "Mistlands_RoadPost1", "category": "other", "x": 7211.9, "z": 4758.4, "px": 3278.8, "py": 2860.1, "has_dungeon": false, "has_important": true}, {"id": 8705, "name": "Mistlands_RoadPost1", "category": "other", "x": 8824.8, "z": 1206.1, "px": 3554.1, "py": 2253.8, "has_dungeon": false, "has_important": true}, {"id": 8706, "name": "Mistlands_RoadPost1", "category": "other", "x": -7422.4, "z": -3213.9, "px": 781.2, "py": 1499.5, "has_dungeon": false, "has_important": true}, {"id": 8707, "name": "Mistlands_RoadPost1", "category": "other", "x": 6806.0, "z": -5140.6, "px": 3209.6, "py": 1170.7, "has_dungeon": false, "has_important": false}, {"id": 8708, "name": "Mistlands_RoadPost1", "category": "other", "x": 5765.9, "z": 5073.4, "px": 3032.0, "py": 2913.9, "has_dungeon": false, "has_important": true}, {"id": 8709, "name": "Mistlands_RoadPost1", "category": "other", "x": -9421.8, "z": 2516.6, "px": 440.0, "py": 2477.5, "has_dungeon": false, "has_important": false}, {"id": 8710, "name": "Mistlands_RoadPost1", "category": "other", "x": -1646.4, "z": 6468.3, "px": 1767.0, "py": 3151.9, "has_dungeon": false, "has_important": true}, {"id": 8711, "name": "Mistlands_RoadPost1", "category": "other", "x": 8148.1, "z": -3630.9, "px": 3438.6, "py": 1428.3, "has_dungeon": false, "has_important": true}, {"id": 8712, "name": "Mistlands_RoadPost1", "category": "other", "x": -7664.4, "z": -779.6, "px": 739.9, "py": 1914.9, "has_dungeon": false, "has_important": true}, {"id": 8713, "name": "Mistlands_RoadPost1", "category": "other", "x": 2034.3, "z": -6070.2, "px": 2395.2, "py": 1012.0, "has_dungeon": false, "has_important": true}, {"id": 8714, "name": "Mistlands_RoadPost1", "category": "other", "x": 5171.0, "z": 5627.4, "px": 2930.5, "py": 3008.4, "has_dungeon": false, "has_important": true}, {"id": 8715, "name": "Mistlands_RoadPost1", "category": "other", "x": -6377.5, "z": -3901.3, "px": 959.6, "py": 1382.2, "has_dungeon": false, "has_important": true}, {"id": 8716, "name": "Mistlands_RoadPost1", "category": "other", "x": 8039.9, "z": 3242.7, "px": 3420.1, "py": 2601.4, "has_dungeon": false, "has_important": true}, {"id": 8717, "name": "Mistlands_RoadPost1", "category": "other", "x": 6090.6, "z": -43.8, "px": 3087.5, "py": 2040.5, "has_dungeon": false, "has_important": true}, {"id": 8718, "name": "Mistlands_RoadPost1", "category": "other", "x": 5682.5, "z": 5318.2, "px": 3017.8, "py": 2955.6, "has_dungeon": false, "has_important": true}, {"id": 8719, "name": "Mistlands_RoadPost1", "category": "other", "x": 4548.8, "z": -4780.3, "px": 2824.3, "py": 1232.2, "has_dungeon": false, "has_important": true}, {"id": 8720, "name": "Mistlands_RoadPost1", "category": "other", "x": 7296.4, "z": -2217.6, "px": 3293.3, "py": 1669.5, "has_dungeon": false, "has_important": false}, {"id": 8721, "name": "Mistlands_RoadPost1", "category": "other", "x": 8849.0, "z": -1240.4, "px": 3558.2, "py": 1836.3, "has_dungeon": false, "has_important": false}, {"id": 8722, "name": "Mistlands_RoadPost1", "category": "other", "x": -7532.8, "z": 2840.5, "px": 762.4, "py": 2532.8, "has_dungeon": false, "has_important": true}, {"id": 8723, "name": "Mistlands_RoadPost1", "category": "other", "x": 9917.8, "z": -644.8, "px": 3740.6, "py": 1938.0, "has_dungeon": false, "has_important": true}, {"id": 8724, "name": "Mistlands_RoadPost1", "category": "other", "x": -6771.5, "z": -2967.2, "px": 892.3, "py": 1541.6, "has_dungeon": false, "has_important": true}, {"id": 8725, "name": "Mistlands_RoadPost1", "category": "other", "x": 8920.0, "z": -3087.7, "px": 3570.3, "py": 1521.0, "has_dungeon": false, "has_important": false}, {"id": 8726, "name": "Mistlands_RoadPost1", "category": "other", "x": -3047.0, "z": -5822.6, "px": 1528.0, "py": 1054.3, "has_dungeon": false, "has_important": true}, {"id": 8727, "name": "Mistlands_RoadPost1", "category": "other", "x": -8506.5, "z": 582.9, "px": 596.2, "py": 2147.5, "has_dungeon": false, "has_important": true}, {"id": 8728, "name": "Mistlands_RoadPost1", "category": "other", "x": 9577.6, "z": 333.6, "px": 3682.6, "py": 2104.9, "has_dungeon": false, "has_important": true}, {"id": 8729, "name": "Mistlands_RoadPost1", "category": "other", "x": -8269.1, "z": -64.4, "px": 636.7, "py": 2037.0, "has_dungeon": false, "has_important": true}, {"id": 8730, "name": "Mistlands_RoadPost1", "category": "other", "x": -6672.1, "z": -4972.8, "px": 909.3, "py": 1199.3, "has_dungeon": false, "has_important": false}, {"id": 8731, "name": "Mistlands_RoadPost1", "category": "other", "x": -5044.4, "z": -3736.3, "px": 1187.1, "py": 1410.3, "has_dungeon": false, "has_important": true}, {"id": 8732, "name": "Mistlands_RoadPost1", "category": "other", "x": 553.5, "z": 7472.3, "px": 2142.5, "py": 3323.3, "has_dungeon": false, "has_important": false}, {"id": 8733, "name": "Mistlands_RoadPost1", "category": "other", "x": -7746.9, "z": -4415.3, "px": 725.9, "py": 1294.5, "has_dungeon": false, "has_important": false}, {"id": 8734, "name": "Mistlands_RoadPost1", "category": "other", "x": 6029.4, "z": 1836.3, "px": 3077.0, "py": 2361.4, "has_dungeon": false, "has_important": true}, {"id": 8735, "name": "Mistlands_RoadPost1", "category": "other", "x": 5455.3, "z": 6475.3, "px": 2979.0, "py": 3153.1, "has_dungeon": false, "has_important": false}, {"id": 8736, "name": "Mistlands_RoadPost1", "category": "other", "x": 1092.6, "z": 6847.8, "px": 2234.5, "py": 3216.7, "has_dungeon": false, "has_important": true}, {"id": 8737, "name": "Mistlands_RoadPost1", "category": "other", "x": 7299.8, "z": -4934.9, "px": 3293.8, "py": 1205.8, "has_dungeon": false, "has_important": true}, {"id": 8738, "name": "Mistlands_RoadPost1", "category": "other", "x": 4785.7, "z": 6098.9, "px": 2864.8, "py": 3088.9, "has_dungeon": false, "has_important": false}, {"id": 8739, "name": "Mistlands_RoadPost1", "category": "other", "x": -5908.7, "z": 2887.8, "px": 1039.6, "py": 2540.9, "has_dungeon": false, "has_important": true}, {"id": 8740, "name": "Mistlands_RoadPost1", "category": "other", "x": 8767.5, "z": 145.9, "px": 3544.3, "py": 2072.9, "has_dungeon": false, "has_important": false}, {"id": 8741, "name": "Mistlands_RoadPost1", "category": "other", "x": 9165.8, "z": -2009.0, "px": 3612.3, "py": 1705.1, "has_dungeon": false, "has_important": true}, {"id": 8742, "name": "Mistlands_RoadPost1", "category": "other", "x": -5773.3, "z": -6165.1, "px": 1062.7, "py": 995.8, "has_dungeon": false, "has_important": true}, {"id": 8743, "name": "Mistlands_RoadPost1", "category": "other", "x": -8758.8, "z": 1211.3, "px": 553.2, "py": 2254.7, "has_dungeon": false, "has_important": true}, {"id": 8744, "name": "Mistlands_RoadPost1", "category": "other", "x": 7343.0, "z": -3573.2, "px": 3301.2, "py": 1438.2, "has_dungeon": false, "has_important": false}, {"id": 8745, "name": "Mistlands_RoadPost1", "category": "other", "x": 9712.5, "z": -61.3, "px": 3705.6, "py": 2037.5, "has_dungeon": false, "has_important": true}, {"id": 8746, "name": "Mistlands_RoadPost1", "category": "other", "x": -6537.2, "z": 5567.7, "px": 932.3, "py": 2998.2, "has_dungeon": false, "has_important": true}, {"id": 8747, "name": "Mistlands_RoadPost1", "category": "other", "x": -6410.5, "z": -4884.3, "px": 953.9, "py": 1214.4, "has_dungeon": false, "has_important": false}, {"id": 8748, "name": "Mistlands_RoadPost1", "category": "other", "x": -2158.2, "z": -7356.1, "px": 1679.7, "py": 792.6, "has_dungeon": false, "has_important": false}, {"id": 8749, "name": "Mistlands_RoadPost1", "category": "other", "x": 5933.8, "z": -4182.5, "px": 3060.7, "py": 1334.2, "has_dungeon": false, "has_important": true}, {"id": 8750, "name": "Mistlands_RoadPost1", "category": "other", "x": 3281.7, "z": 5510.2, "px": 2608.1, "py": 2988.4, "has_dungeon": false, "has_important": true}, {"id": 8751, "name": "Mistlands_RoadPost1", "category": "other", "x": -9389.8, "z": -2560.8, "px": 445.5, "py": 1611.0, "has_dungeon": false, "has_important": false}, {"id": 8752, "name": "Mistlands_RoadPost1", "category": "other", "x": 8902.1, "z": -3767.3, "px": 3567.3, "py": 1405.0, "has_dungeon": false, "has_important": false}, {"id": 8753, "name": "Mistlands_RoadPost1", "category": "other", "x": -7399.3, "z": -3567.6, "px": 785.2, "py": 1439.1, "has_dungeon": false, "has_important": false}, {"id": 8754, "name": "Mistlands_RoadPost1", "category": "other", "x": -1355.7, "z": -7433.7, "px": 1816.6, "py": 779.3, "has_dungeon": false, "has_important": true}, {"id": 8755, "name": "Mistlands_RoadPost1", "category": "other", "x": 4077.3, "z": -5202.9, "px": 2743.9, "py": 1160.0, "has_dungeon": false, "has_important": true}, {"id": 8756, "name": "Mistlands_RoadPost1", "category": "other", "x": 2761.8, "z": 6275.7, "px": 2519.3, "py": 3119.1, "has_dungeon": false, "has_important": true}, {"id": 8757, "name": "Mistlands_RoadPost1", "category": "other", "x": -8491.9, "z": 1723.3, "px": 598.7, "py": 2342.1, "has_dungeon": false, "has_important": true}, {"id": 8758, "name": "Mistlands_RoadPost1", "category": "other", "x": -2194.1, "z": 7217.9, "px": 1673.5, "py": 3279.9, "has_dungeon": false, "has_important": false}, {"id": 8759, "name": "Mistlands_RoadPost1", "category": "other", "x": 4227.7, "z": -7032.8, "px": 2769.5, "py": 847.7, "has_dungeon": false, "has_important": true}, {"id": 8760, "name": "Mistlands_RoadPost1", "category": "other", "x": 5300.4, "z": 2984.1, "px": 2952.6, "py": 2557.3, "has_dungeon": false, "has_important": true}, {"id": 8761, "name": "Mistlands_RoadPost1", "category": "other", "x": 8833.4, "z": -784.8, "px": 3555.6, "py": 1914.1, "has_dungeon": false, "has_important": false}, {"id": 8762, "name": "Mistlands_RoadPost1", "category": "other", "x": -6284.9, "z": 1297.1, "px": 975.4, "py": 2269.4, "has_dungeon": false, "has_important": true}, {"id": 8763, "name": "Mistlands_RoadPost1", "category": "other", "x": 7493.9, "z": -3430.5, "px": 3327.0, "py": 1462.5, "has_dungeon": false, "has_important": true}, {"id": 8764, "name": "Mistlands_RoadPost1", "category": "other", "x": -9329.6, "z": -2538.4, "px": 455.7, "py": 1614.8, "has_dungeon": false, "has_important": true}, {"id": 8765, "name": "Mistlands_RoadPost1", "category": "other", "x": -8934.3, "z": -2324.3, "px": 523.2, "py": 1651.3, "has_dungeon": false, "has_important": true}, {"id": 8766, "name": "Mistlands_RoadPost1", "category": "other", "x": 8246.4, "z": 2988.2, "px": 3455.4, "py": 2558.0, "has_dungeon": false, "has_important": true}, {"id": 8767, "name": "Mistlands_RoadPost1", "category": "other", "x": 8329.7, "z": 3076.8, "px": 3469.6, "py": 2573.1, "has_dungeon": false, "has_important": true}, {"id": 8768, "name": "Mistlands_RoadPost1", "category": "other", "x": 4778.6, "z": 6422.2, "px": 2863.5, "py": 3144.1, "has_dungeon": false, "has_important": false}, {"id": 8769, "name": "Mistlands_RoadPost1", "category": "other", "x": -8784.8, "z": -329.7, "px": 548.7, "py": 1991.7, "has_dungeon": false, "has_important": true}, {"id": 8770, "name": "Mistlands_RoadPost1", "category": "other", "x": 6034.7, "z": 2260.6, "px": 3077.9, "py": 2433.8, "has_dungeon": false, "has_important": true}, {"id": 8771, "name": "Mistlands_RoadPost1", "category": "other", "x": 7720.3, "z": -4171.4, "px": 3365.6, "py": 1336.1, "has_dungeon": false, "has_important": true}, {"id": 8772, "name": "Mistlands_RoadPost1", "category": "other", "x": 9325.5, "z": -1426.6, "px": 3639.6, "py": 1804.5, "has_dungeon": false, "has_important": true}, {"id": 8773, "name": "Mistlands_RoadPost1", "category": "other", "x": -5676.6, "z": -6190.5, "px": 1079.2, "py": 991.5, "has_dungeon": false, "has_important": true}, {"id": 8774, "name": "Mistlands_RoadPost1", "category": "other", "x": 5509.1, "z": 3516.2, "px": 2988.2, "py": 2648.1, "has_dungeon": false, "has_important": true}, {"id": 8775, "name": "Mistlands_RoadPost1", "category": "other", "x": 6545.9, "z": -1518.5, "px": 3165.2, "py": 1788.8, "has_dungeon": false, "has_important": true}, {"id": 8776, "name": "Mistlands_RoadPost1", "category": "other", "x": 8789.9, "z": -700.7, "px": 3548.1, "py": 1928.4, "has_dungeon": false, "has_important": true}, {"id": 8777, "name": "Mistlands_RoadPost1", "category": "other", "x": -8489.1, "z": -319.8, "px": 599.2, "py": 1993.4, "has_dungeon": false, "has_important": false}, {"id": 8778, "name": "Mistlands_RoadPost1", "category": "other", "x": -7301.6, "z": 2833.2, "px": 801.9, "py": 2531.5, "has_dungeon": false, "has_important": true}, {"id": 8779, "name": "Mistlands_RoadPost1", "category": "other", "x": -770.3, "z": -7851.9, "px": 1916.5, "py": 707.9, "has_dungeon": false, "has_important": true}, {"id": 8780, "name": "Mistlands_RoadPost1", "category": "other", "x": 4949.4, "z": -5495.9, "px": 2892.7, "py": 1110.0, "has_dungeon": false, "has_important": true}, {"id": 8781, "name": "Mistlands_RoadPost1", "category": "other", "x": 5875.6, "z": 1603.2, "px": 3050.8, "py": 2321.6, "has_dungeon": false, "has_important": false}, {"id": 8782, "name": "Mistlands_RoadPost1", "category": "other", "x": -1330.9, "z": -6140.0, "px": 1820.9, "py": 1000.1, "has_dungeon": false, "has_important": true}, {"id": 8783, "name": "Mistlands_RoadPost1", "category": "other", "x": 7631.9, "z": -209.5, "px": 3350.5, "py": 2012.2, "has_dungeon": false, "has_important": true}, {"id": 8784, "name": "Mistlands_RoadPost1", "category": "other", "x": -7669.1, "z": -974.5, "px": 739.1, "py": 1881.7, "has_dungeon": false, "has_important": true}, {"id": 8785, "name": "Mistlands_RoadPost1", "category": "other", "x": 9128.7, "z": 1229.2, "px": 3606.0, "py": 2257.8, "has_dungeon": false, "has_important": true}, {"id": 8786, "name": "Mistlands_RoadPost1", "category": "other", "x": -6120.7, "z": -5587.6, "px": 1003.4, "py": 1094.4, "has_dungeon": false, "has_important": false}, {"id": 8787, "name": "Mistlands_RoadPost1", "category": "other", "x": -4550.1, "z": -5174.2, "px": 1271.4, "py": 1164.9, "has_dungeon": false, "has_important": false}, {"id": 8788, "name": "Mistlands_RoadPost1", "category": "other", "x": 441.8, "z": -6974.3, "px": 2123.4, "py": 857.7, "has_dungeon": false, "has_important": false}, {"id": 8789, "name": "Mistlands_RoadPost1", "category": "other", "x": 8823.8, "z": -3541.4, "px": 3553.9, "py": 1443.6, "has_dungeon": false, "has_important": true}, {"id": 8790, "name": "Mistlands_RoadPost1", "category": "other", "x": -7539.7, "z": 2872.8, "px": 761.2, "py": 2538.3, "has_dungeon": false, "has_important": true}, {"id": 8791, "name": "Mistlands_RoadPost1", "category": "other", "x": 6527.8, "z": -4404.6, "px": 3162.1, "py": 1296.3, "has_dungeon": false, "has_important": true}, {"id": 8792, "name": "Mistlands_RoadPost1", "category": "other", "x": -3398.2, "z": 5352.8, "px": 1468.0, "py": 2961.5, "has_dungeon": false, "has_important": true}, {"id": 8793, "name": "Mistlands_RoadPost1", "category": "other", "x": -729.5, "z": -6887.2, "px": 1923.5, "py": 872.6, "has_dungeon": false, "has_important": true}, {"id": 8794, "name": "Mistlands_RoadPost1", "category": "other", "x": 4819.3, "z": -4094.4, "px": 2870.5, "py": 1349.2, "has_dungeon": false, "has_important": true}, {"id": 8795, "name": "Mistlands_RoadPost1", "category": "other", "x": -3985.6, "z": -5268.0, "px": 1367.8, "py": 1148.9, "has_dungeon": false, "has_important": false}, {"id": 8796, "name": "Mistlands_RoadPost1", "category": "other", "x": 6856.4, "z": -3734.6, "px": 3218.2, "py": 1410.6, "has_dungeon": false, "has_important": false}, {"id": 8797, "name": "Mistlands_RoadPost1", "category": "other", "x": -6294.4, "z": 5324.2, "px": 973.8, "py": 2956.7, "has_dungeon": false, "has_important": true}, {"id": 8798, "name": "Mistlands_RoadPost1", "category": "other", "x": -5415.8, "z": 4420.9, "px": 1123.7, "py": 2802.5, "has_dungeon": false, "has_important": true}, {"id": 8799, "name": "Mistlands_RoadPost1", "category": "other", "x": -5109.5, "z": 6320.9, "px": 1176.0, "py": 3126.8, "has_dungeon": false, "has_important": false}, {"id": 8800, "name": "Mistlands_RoadPost1", "category": "other", "x": 8001.2, "z": -1909.9, "px": 3413.5, "py": 1722.0, "has_dungeon": false, "has_important": true}, {"id": 8801, "name": "Mistlands_RoadPost1", "category": "other", "x": -6421.0, "z": 1019.3, "px": 952.1, "py": 2222.0, "has_dungeon": false, "has_important": true}, {"id": 8802, "name": "Mistlands_RoadPost1", "category": "other", "x": -3208.4, "z": -7280.0, "px": 1500.4, "py": 805.5, "has_dungeon": false, "has_important": true}, {"id": 8803, "name": "Mistlands_RoadPost1", "category": "other", "x": 1492.0, "z": -7466.2, "px": 2302.6, "py": 773.8, "has_dungeon": false, "has_important": true}, {"id": 8804, "name": "Mistlands_RoadPost1", "category": "other", "x": -7673.9, "z": -3073.1, "px": 738.3, "py": 1523.5, "has_dungeon": false, "has_important": true}, {"id": 8805, "name": "Mistlands_RoadPost1", "category": "other", "x": -6933.3, "z": -2167.5, "px": 864.7, "py": 1678.1, "has_dungeon": false, "has_important": true}, {"id": 8806, "name": "Mistlands_RoadPost1", "category": "other", "x": -6854.0, "z": -1597.4, "px": 878.3, "py": 1775.4, "has_dungeon": false, "has_important": false}, {"id": 8807, "name": "Mistlands_RoadPost1", "category": "other", "x": 3265.9, "z": 6461.6, "px": 2605.4, "py": 3150.8, "has_dungeon": false, "has_important": true}, {"id": 8808, "name": "Mistlands_RoadPost1", "category": "other", "x": 5447.3, "z": 5592.1, "px": 2977.7, "py": 3002.4, "has_dungeon": false, "has_important": true}, {"id": 8809, "name": "Mistlands_RoadPost1", "category": "other", "x": -4270.8, "z": 4237.7, "px": 1319.1, "py": 2771.2, "has_dungeon": false, "has_important": true}, {"id": 8810, "name": "Mistlands_RoadPost1", "category": "other", "x": -1458.3, "z": -6483.6, "px": 1799.1, "py": 941.5, "has_dungeon": false, "has_important": true}, {"id": 8811, "name": "Mistlands_RoadPost1", "category": "other", "x": -9322.6, "z": -2407.2, "px": 456.9, "py": 1637.2, "has_dungeon": false, "has_important": false}, {"id": 8812, "name": "Mistlands_RoadPost1", "category": "other", "x": 3686.1, "z": -5521.2, "px": 2677.1, "py": 1105.7, "has_dungeon": false, "has_important": true}, {"id": 8813, "name": "Mistlands_RoadPost1", "category": "other", "x": 3672.3, "z": -6505.7, "px": 2674.7, "py": 937.7, "has_dungeon": false, "has_important": false}, {"id": 8814, "name": "Mistlands_RoadPost1", "category": "other", "x": -3008.8, "z": -6385.9, "px": 1534.5, "py": 958.1, "has_dungeon": false, "has_important": false}, {"id": 8815, "name": "Mistlands_RoadPost1", "category": "other", "x": 4372.2, "z": 4547.3, "px": 2794.2, "py": 2824.1, "has_dungeon": false, "has_important": true}, {"id": 8816, "name": "Mistlands_RoadPost1", "category": "other", "x": 7895.7, "z": 1647.0, "px": 3395.5, "py": 2329.1, "has_dungeon": false, "has_important": true}, {"id": 8817, "name": "Mistlands_RoadPost1", "category": "other", "x": 7297.5, "z": -3854.8, "px": 3293.4, "py": 1390.1, "has_dungeon": false, "has_important": false}, {"id": 8818, "name": "Mistlands_RoadPost1", "category": "other", "x": -3586.3, "z": 5106.6, "px": 1435.9, "py": 2919.5, "has_dungeon": false, "has_important": true}, {"id": 8819, "name": "Mistlands_RoadPost1", "category": "other", "x": 9098.9, "z": -2125.8, "px": 3600.9, "py": 1685.2, "has_dungeon": false, "has_important": false}, {"id": 8820, "name": "Mistlands_RoadPost1", "category": "other", "x": 1713.1, "z": -6980.5, "px": 2340.4, "py": 856.7, "has_dungeon": false, "has_important": true}, {"id": 8821, "name": "Mistlands_RoadPost1", "category": "other", "x": 4988.5, "z": 5448.0, "px": 2899.4, "py": 2977.8, "has_dungeon": false, "has_important": true}, {"id": 8822, "name": "Mistlands_RoadPost1", "category": "other", "x": -6489.6, "z": 1556.8, "px": 940.4, "py": 2313.7, "has_dungeon": false, "has_important": false}, {"id": 8823, "name": "Mistlands_RoadPost1", "category": "other", "x": -4620.4, "z": -3733.7, "px": 1259.5, "py": 1410.8, "has_dungeon": false, "has_important": true}, {"id": 8824, "name": "Mistlands_RoadPost1", "category": "other", "x": 3327.5, "z": 6246.6, "px": 2615.9, "py": 3114.1, "has_dungeon": false, "has_important": true}, {"id": 8825, "name": "Mistlands_RoadPost1", "category": "other", "x": 8905.8, "z": -1592.2, "px": 3567.9, "py": 1776.3, "has_dungeon": false, "has_important": true}, {"id": 8826, "name": "Mistlands_RoadPost1", "category": "other", "x": -2941.6, "z": 6649.5, "px": 1546.0, "py": 3182.8, "has_dungeon": false, "has_important": false}, {"id": 8827, "name": "Mistlands_RoadPost1", "category": "other", "x": -60.9, "z": 7496.2, "px": 2037.6, "py": 3327.4, "has_dungeon": false, "has_important": false}, {"id": 8828, "name": "Mistlands_RoadPost1", "category": "other", "x": 4685.4, "z": 5911.9, "px": 2847.6, "py": 3057.0, "has_dungeon": false, "has_important": true}, {"id": 8829, "name": "Mistlands_RoadPost1", "category": "other", "x": 4073.1, "z": 4842.5, "px": 2743.1, "py": 2874.5, "has_dungeon": false, "has_important": false}, {"id": 8830, "name": "Mistlands_RoadPost1", "category": "other", "x": -6130.4, "z": 1349.4, "px": 1001.7, "py": 2278.3, "has_dungeon": false, "has_important": true}, {"id": 8831, "name": "Mistlands_RoadPost1", "category": "other", "x": 6951.4, "z": 3949.1, "px": 3234.4, "py": 2722.0, "has_dungeon": false, "has_important": true}, {"id": 8832, "name": "Mistlands_RoadPost1", "category": "other", "x": -6873.6, "z": 1177.0, "px": 874.9, "py": 2248.9, "has_dungeon": false, "has_important": true}, {"id": 8833, "name": "Mistlands_RoadPost1", "category": "other", "x": -9574.6, "z": 977.5, "px": 413.9, "py": 2214.8, "has_dungeon": false, "has_important": false}, {"id": 8834, "name": "Mistlands_RoadPost1", "category": "other", "x": -2470.2, "z": -6441.2, "px": 1626.4, "py": 948.7, "has_dungeon": false, "has_important": false}, {"id": 8835, "name": "Mistlands_RoadPost1", "category": "other", "x": -5864.2, "z": -2051.4, "px": 1047.2, "py": 1697.9, "has_dungeon": false, "has_important": false}, {"id": 8836, "name": "Mistlands_RoadPost1", "category": "other", "x": 6611.1, "z": 5118.4, "px": 3176.3, "py": 2921.5, "has_dungeon": false, "has_important": true}, {"id": 8837, "name": "Mistlands_RoadPost1", "category": "other", "x": 8052.3, "z": 2000.1, "px": 3422.3, "py": 2389.4, "has_dungeon": false, "has_important": true}, {"id": 8838, "name": "Mistlands_RoadPost1", "category": "other", "x": 2034.3, "z": -6926.4, "px": 2395.2, "py": 865.9, "has_dungeon": false, "has_important": true}, {"id": 8839, "name": "Mistlands_RoadPost1", "category": "other", "x": 4248.6, "z": -4378.0, "px": 2773.1, "py": 1300.8, "has_dungeon": false, "has_important": true}, {"id": 8840, "name": "Mistlands_RoadPost1", "category": "other", "x": -4629.5, "z": -6724.9, "px": 1257.9, "py": 900.3, "has_dungeon": false, "has_important": true}, {"id": 8841, "name": "Mistlands_RoadPost1", "category": "other", "x": -6286.8, "z": 3567.1, "px": 975.1, "py": 2656.8, "has_dungeon": false, "has_important": true}, {"id": 8842, "name": "Mistlands_RoadPost1", "category": "other", "x": 5883.4, "z": 1814.6, "px": 3052.1, "py": 2357.7, "has_dungeon": false, "has_important": true}, {"id": 8843, "name": "Mistlands_RoadPost1", "category": "other", "x": 6470.5, "z": -2496.9, "px": 3152.3, "py": 1621.9, "has_dungeon": false, "has_important": false}, {"id": 8844, "name": "Mistlands_RoadPost1", "category": "other", "x": -5768.5, "z": -5387.6, "px": 1063.5, "py": 1128.5, "has_dungeon": false, "has_important": true}, {"id": 8845, "name": "Mistlands_RoadPost1", "category": "other", "x": 7919.7, "z": 2769.4, "px": 3399.6, "py": 2520.6, "has_dungeon": false, "has_important": false}, {"id": 8846, "name": "Mistlands_RoadPost1", "category": "other", "x": -7753.2, "z": -960.8, "px": 724.8, "py": 1884.0, "has_dungeon": false, "has_important": true}, {"id": 8847, "name": "Mistlands_RoadPost1", "category": "other", "x": -745.7, "z": -6711.6, "px": 1920.7, "py": 902.6, "has_dungeon": false, "has_important": true}, {"id": 8848, "name": "Mistlands_RoadPost1", "category": "other", "x": -6257.9, "z": 650.6, "px": 980.0, "py": 2159.0, "has_dungeon": false, "has_important": false}, {"id": 8849, "name": "Mistlands_RoadPost1", "category": "other", "x": -4402.4, "z": -5208.4, "px": 1296.7, "py": 1159.1, "has_dungeon": false, "has_important": true}, {"id": 8850, "name": "Mistlands_RoadPost1", "category": "other", "x": 7874.4, "z": 128.7, "px": 3391.9, "py": 2070.0, "has_dungeon": false, "has_important": true}, {"id": 8851, "name": "Mistlands_RoadPost1", "category": "other", "x": -1275.2, "z": -6991.5, "px": 1830.4, "py": 854.8, "has_dungeon": false, "has_important": false}, {"id": 8852, "name": "Mistlands_RoadPost1", "category": "other", "x": -2327.4, "z": 5504.7, "px": 1650.8, "py": 2987.5, "has_dungeon": false, "has_important": true}, {"id": 8853, "name": "Mistlands_RoadPost1", "category": "other", "x": 8078.7, "z": 3849.6, "px": 3426.8, "py": 2705.0, "has_dungeon": false, "has_important": true}, {"id": 8854, "name": "Mistlands_RoadPost1", "category": "other", "x": 4481.8, "z": -5993.7, "px": 2812.9, "py": 1025.1, "has_dungeon": false, "has_important": true}, {"id": 8855, "name": "Mistlands_RoadPost1", "category": "other", "x": -7443.3, "z": 4417.5, "px": 777.7, "py": 2801.9, "has_dungeon": false, "has_important": false}, {"id": 8856, "name": "Mistlands_RoadPost1", "category": "other", "x": 6539.4, "z": 5365.8, "px": 3164.1, "py": 2963.8, "has_dungeon": false, "has_important": false}, {"id": 8857, "name": "Mistlands_RoadPost1", "category": "other", "x": 9390.1, "z": 1531.8, "px": 3650.6, "py": 2309.4, "has_dungeon": false, "has_important": true}, {"id": 8858, "name": "Mistlands_RoadPost1", "category": "other", "x": -9583.2, "z": -2506.1, "px": 412.5, "py": 1620.3, "has_dungeon": false, "has_important": false}, {"id": 8859, "name": "Mistlands_RoadPost1", "category": "other", "x": -7111.5, "z": 1400.5, "px": 834.3, "py": 2287.0, "has_dungeon": false, "has_important": true}, {"id": 8860, "name": "Mistlands_RoadPost1", "category": "other", "x": -5309.8, "z": -5646.3, "px": 1141.8, "py": 1084.4, "has_dungeon": false, "has_important": true}, {"id": 8861, "name": "Mistlands_RoadPost1", "category": "other", "x": -2772.0, "z": 6694.5, "px": 1574.9, "py": 3190.5, "has_dungeon": false, "has_important": true}, {"id": 8862, "name": "Mistlands_RoadPost1", "category": "other", "x": -7413.7, "z": -2534.9, "px": 782.7, "py": 1615.4, "has_dungeon": false, "has_important": true}, {"id": 8863, "name": "Mistlands_RoadPost1", "category": "other", "x": -8680.4, "z": 2233.0, "px": 566.5, "py": 2429.1, "has_dungeon": false, "has_important": true}, {"id": 8864, "name": "Mistlands_RoadPost1", "category": "other", "x": 9644.6, "z": -1294.2, "px": 3694.0, "py": 1827.1, "has_dungeon": false, "has_important": false}, {"id": 8865, "name": "Mistlands_RoadPost1", "category": "other", "x": -8880.1, "z": 1666.7, "px": 532.5, "py": 2332.5, "has_dungeon": false, "has_important": true}, {"id": 8866, "name": "Mistlands_RoadPost1", "category": "other", "x": 3061.5, "z": 5496.1, "px": 2570.5, "py": 2986.0, "has_dungeon": false, "has_important": false}, {"id": 8867, "name": "Mistlands_RoadPost1", "category": "other", "x": -7600.9, "z": -882.9, "px": 750.8, "py": 1897.3, "has_dungeon": false, "has_important": true}, {"id": 8868, "name": "Mistlands_RoadPost1", "category": "other", "x": 7001.3, "z": 1683.3, "px": 3242.9, "py": 2335.3, "has_dungeon": false, "has_important": true}, {"id": 8869, "name": "Mistlands_RoadPost1", "category": "other", "x": -1199.0, "z": -6184.0, "px": 1843.4, "py": 992.6, "has_dungeon": false, "has_important": false}, {"id": 8870, "name": "Mistlands_RoadPost1", "category": "other", "x": 4056.7, "z": -4883.5, "px": 2740.3, "py": 1214.5, "has_dungeon": false, "has_important": true}, {"id": 8871, "name": "Mistlands_RoadPost1", "category": "other", "x": 4862.5, "z": 5742.1, "px": 2877.9, "py": 3028.0, "has_dungeon": false, "has_important": true}, {"id": 8872, "name": "Mistlands_RoadPost1", "category": "other", "x": -5198.7, "z": -3922.1, "px": 1160.8, "py": 1378.6, "has_dungeon": false, "has_important": true}, {"id": 8873, "name": "Mistlands_RoadPost1", "category": "other", "x": -9350.8, "z": -2476.9, "px": 452.1, "py": 1625.3, "has_dungeon": false, "has_important": true}, {"id": 8874, "name": "Mistlands_RoadPost1", "category": "other", "x": 5180.9, "z": -3785.5, "px": 2932.2, "py": 1401.9, "has_dungeon": false, "has_important": false}, {"id": 8875, "name": "Mistlands_RoadPost1", "category": "other", "x": 3095.0, "z": 7235.2, "px": 2576.2, "py": 3282.8, "has_dungeon": false, "has_important": true}, {"id": 8876, "name": "Mistlands_RoadPost1", "category": "other", "x": -3881.7, "z": 6566.5, "px": 1385.5, "py": 3168.7, "has_dungeon": false, "has_important": true}, {"id": 8877, "name": "Mistlands_RoadPost1", "category": "other", "x": 9541.1, "z": 2484.9, "px": 3676.3, "py": 2472.1, "has_dungeon": false, "has_important": true}, {"id": 8878, "name": "Mistlands_RoadPost1", "category": "other", "x": 1470.7, "z": -7658.3, "px": 2299.0, "py": 741.0, "has_dungeon": false, "has_important": true}, {"id": 8879, "name": "Mistlands_RoadPost1", "category": "other", "x": -6256.2, "z": 401.1, "px": 980.3, "py": 2116.5, "has_dungeon": false, "has_important": false}, {"id": 8880, "name": "Mistlands_RoadPost1", "category": "other", "x": -6335.0, "z": -1141.4, "px": 966.8, "py": 1853.2, "has_dungeon": false, "has_important": true}, {"id": 8881, "name": "Mistlands_RoadPost1", "category": "other", "x": -5523.8, "z": -2607.9, "px": 1105.3, "py": 1602.9, "has_dungeon": false, "has_important": true}, {"id": 8882, "name": "Mistlands_RoadPost1", "category": "other", "x": 7478.2, "z": -4548.4, "px": 3324.3, "py": 1271.7, "has_dungeon": false, "has_important": false}, {"id": 8883, "name": "Mistlands_RoadPost1", "category": "other", "x": 4206.3, "z": -4799.9, "px": 2765.9, "py": 1228.8, "has_dungeon": false, "has_important": true}, {"id": 8884, "name": "Mistlands_RoadPost1", "category": "other", "x": 8177.8, "z": -1874.6, "px": 3443.7, "py": 1728.1, "has_dungeon": false, "has_important": true}, {"id": 8885, "name": "Mistlands_RoadPost1", "category": "other", "x": 5721.6, "z": -1872.5, "px": 3024.5, "py": 1728.4, "has_dungeon": false, "has_important": true}, {"id": 8886, "name": "Mistlands_RoadPost1", "category": "other", "x": -6715.2, "z": -2598.6, "px": 901.9, "py": 1604.5, "has_dungeon": false, "has_important": false}, {"id": 8887, "name": "Mistlands_RoadPost1", "category": "other", "x": -8498.6, "z": 3084.5, "px": 597.6, "py": 2574.4, "has_dungeon": false, "has_important": false}, {"id": 8888, "name": "Mistlands_RoadPost1", "category": "other", "x": -497.7, "z": -7044.3, "px": 1963.1, "py": 845.8, "has_dungeon": false, "has_important": false}, {"id": 8889, "name": "Mistlands_RoadPost1", "category": "other", "x": -4076.1, "z": 5239.9, "px": 1352.3, "py": 2942.3, "has_dungeon": false, "has_important": true}, {"id": 8890, "name": "Mistlands_RoadPost1", "category": "other", "x": 4469.6, "z": 5498.7, "px": 2810.8, "py": 2986.4, "has_dungeon": false, "has_important": true}, {"id": 8891, "name": "Mistlands_RoadPost1", "category": "other", "x": 2384.3, "z": 6205.4, "px": 2454.9, "py": 3107.1, "has_dungeon": false, "has_important": false}, {"id": 8892, "name": "Mistlands_RoadPost1", "category": "other", "x": 9848.2, "z": -560.6, "px": 3728.8, "py": 1952.3, "has_dungeon": false, "has_important": true}, {"id": 8893, "name": "Mistlands_RoadPost1", "category": "other", "x": 4246.4, "z": 4419.6, "px": 2772.7, "py": 2802.3, "has_dungeon": false, "has_important": true}, {"id": 8894, "name": "Mistlands_RoadPost1", "category": "other", "x": -6276.3, "z": -4529.2, "px": 976.8, "py": 1275.0, "has_dungeon": false, "has_important": true}, {"id": 8895, "name": "Mistlands_RoadPost1", "category": "other", "x": 7046.2, "z": -838.0, "px": 3250.6, "py": 1905.0, "has_dungeon": false, "has_important": true}, {"id": 8896, "name": "Mistlands_RoadPost1", "category": "other", "x": -7616.3, "z": 2345.1, "px": 748.2, "py": 2448.2, "has_dungeon": false, "has_important": true}, {"id": 8897, "name": "Mistlands_RoadPost1", "category": "other", "x": -6134.9, "z": -697.6, "px": 1001.0, "py": 1928.9, "has_dungeon": false, "has_important": false}, {"id": 8898, "name": "Mistlands_RoadPost1", "category": "other", "x": -7980.0, "z": -4620.0, "px": 686.1, "py": 1259.5, "has_dungeon": false, "has_important": true}, {"id": 8899, "name": "Mistlands_RoadPost1", "category": "other", "x": 4139.3, "z": -5123.3, "px": 2754.4, "py": 1173.6, "has_dungeon": false, "has_important": true}, {"id": 8900, "name": "Mistlands_RoadPost1", "category": "other", "x": -5289.6, "z": 4741.2, "px": 1145.2, "py": 2857.2, "has_dungeon": false, "has_important": true}, {"id": 8901, "name": "Mistlands_RoadPost1", "category": "other", "x": 7253.5, "z": -50.5, "px": 3285.9, "py": 2039.4, "has_dungeon": false, "has_important": true}, {"id": 8902, "name": "Mistlands_RoadPost1", "category": "other", "x": -5124.3, "z": 3074.2, "px": 1173.5, "py": 2572.7, "has_dungeon": false, "has_important": true}, {"id": 8903, "name": "Mistlands_RoadPost1", "category": "other", "x": -8142.4, "z": -3382.4, "px": 658.4, "py": 1470.7, "has_dungeon": false, "has_important": false}, {"id": 8904, "name": "Mistlands_RoadPost1", "category": "other", "x": -9423.1, "z": 516.9, "px": 439.8, "py": 2136.2, "has_dungeon": false, "has_important": true}, {"id": 8905, "name": "Mistlands_RoadPost1", "category": "other", "x": -8107.8, "z": -4430.6, "px": 664.3, "py": 1291.8, "has_dungeon": false, "has_important": true}, {"id": 8906, "name": "Mistlands_RoadPost1", "category": "other", "x": 9158.9, "z": -1736.8, "px": 3611.1, "py": 1751.6, "has_dungeon": false, "has_important": true}, {"id": 8907, "name": "Mistlands_RoadPost1", "category": "other", "x": -6249.9, "z": -971.0, "px": 981.4, "py": 1882.3, "has_dungeon": false, "has_important": false}, {"id": 8908, "name": "Mistlands_RoadPost1", "category": "other", "x": 8631.0, "z": 1447.3, "px": 3521.0, "py": 2295.0, "has_dungeon": false, "has_important": true}, {"id": 8909, "name": "Mistlands_RoadPost1", "category": "other", "x": -6327.9, "z": -4332.4, "px": 968.0, "py": 1308.6, "has_dungeon": false, "has_important": true}, {"id": 8910, "name": "Mistlands_RoadPost1", "category": "other", "x": 8329.6, "z": -1869.5, "px": 3469.6, "py": 1728.9, "has_dungeon": false, "has_important": true}, {"id": 8911, "name": "Mistlands_RoadPost1", "category": "other", "x": 1203.8, "z": -7206.2, "px": 2253.4, "py": 818.1, "has_dungeon": false, "has_important": false}, {"id": 8912, "name": "Mistlands_RoadPost1", "category": "other", "x": 6713.5, "z": -3535.4, "px": 3193.8, "py": 1444.6, "has_dungeon": false, "has_important": true}, {"id": 8913, "name": "Mistlands_RoadPost1", "category": "other", "x": 5803.7, "z": 2518.2, "px": 3038.5, "py": 2477.8, "has_dungeon": false, "has_important": true}, {"id": 8914, "name": "Mistlands_RoadPost1", "category": "other", "x": 7718.5, "z": -4660.7, "px": 3365.3, "py": 1252.6, "has_dungeon": false, "has_important": true}, {"id": 8915, "name": "Mistlands_RoadPost1", "category": "other", "x": 7215.0, "z": -3458.4, "px": 3279.4, "py": 1457.8, "has_dungeon": false, "has_important": false}, {"id": 8916, "name": "Mistlands_RoadPost1", "category": "other", "x": 4110.8, "z": 6038.7, "px": 2749.6, "py": 3078.6, "has_dungeon": false, "has_important": true}, {"id": 8917, "name": "Mistlands_RoadPost1", "category": "other", "x": 243.1, "z": -7098.2, "px": 2089.5, "py": 836.6, "has_dungeon": false, "has_important": true}, {"id": 8918, "name": "Mistlands_RoadPost1", "category": "other", "x": 8999.2, "z": -1166.8, "px": 3583.9, "py": 1848.9, "has_dungeon": false, "has_important": true}, {"id": 8919, "name": "Mistlands_RoadPost1", "category": "other", "x": -6325.8, "z": 5830.4, "px": 968.4, "py": 3043.1, "has_dungeon": false, "has_important": true}, {"id": 8920, "name": "Mistlands_RoadPost1", "category": "other", "x": 7306.9, "z": 394.0, "px": 3295.0, "py": 2115.2, "has_dungeon": false, "has_important": true}, {"id": 8921, "name": "Mistlands_RoadPost1", "category": "other", "x": 5821.5, "z": 5977.7, "px": 3041.5, "py": 3068.2, "has_dungeon": false, "has_important": true}, {"id": 8922, "name": "Mistlands_RoadPost1", "category": "other", "x": -839.0, "z": -7247.8, "px": 1904.8, "py": 811.0, "has_dungeon": false, "has_important": true}, {"id": 8923, "name": "Mistlands_RoadPost1", "category": "other", "x": 6206.4, "z": -1537.8, "px": 3107.2, "py": 1785.5, "has_dungeon": false, "has_important": false}, {"id": 8924, "name": "Mistlands_RoadPost1", "category": "other", "x": -6312.9, "z": 812.1, "px": 970.6, "py": 2186.6, "has_dungeon": false, "has_important": true}, {"id": 8925, "name": "Mistlands_RoadPost1", "category": "other", "x": 1644.6, "z": 7208.5, "px": 2328.7, "py": 3278.3, "has_dungeon": false, "has_important": false}, {"id": 8926, "name": "Mistlands_RoadPost1", "category": "other", "x": -4091.3, "z": 5194.3, "px": 1349.8, "py": 2934.5, "has_dungeon": false, "has_important": true}, {"id": 8927, "name": "Mistlands_RoadPost1", "category": "other", "x": -6417.7, "z": -2189.9, "px": 952.7, "py": 1674.3, "has_dungeon": false, "has_important": false}, {"id": 8928, "name": "Mistlands_RoadPost1", "category": "other", "x": -4630.8, "z": -3843.2, "px": 1257.7, "py": 1392.1, "has_dungeon": false, "has_important": true}, {"id": 8929, "name": "Mistlands_RoadPost1", "category": "other", "x": 6723.6, "z": -2608.0, "px": 3195.5, "py": 1602.9, "has_dungeon": false, "has_important": true}, {"id": 8930, "name": "Mistlands_RoadPost1", "category": "other", "x": -7999.4, "z": -426.8, "px": 682.8, "py": 1975.2, "has_dungeon": false, "has_important": true}, {"id": 8931, "name": "Mistlands_RoadPost1", "category": "other", "x": -2740.4, "z": -6423.4, "px": 1580.3, "py": 951.7, "has_dungeon": false, "has_important": true}, {"id": 8932, "name": "Mistlands_RoadPost1", "category": "other", "x": -2770.3, "z": -6210.2, "px": 1575.2, "py": 988.1, "has_dungeon": false, "has_important": true}, {"id": 8933, "name": "Mistlands_RoadPost1", "category": "other", "x": -7728.6, "z": -3128.9, "px": 729.0, "py": 1514.0, "has_dungeon": false, "has_important": true}, {"id": 8934, "name": "Mistlands_RoadPost1", "category": "other", "x": -7527.2, "z": -192.7, "px": 763.4, "py": 2015.1, "has_dungeon": false, "has_important": true}, {"id": 8935, "name": "Mistlands_RoadPost1", "category": "other", "x": 762.4, "z": -6324.8, "px": 2178.1, "py": 968.6, "has_dungeon": false, "has_important": false}, {"id": 8936, "name": "Mistlands_RoadPost1", "category": "other", "x": -8440.5, "z": -3321.5, "px": 607.5, "py": 1481.1, "has_dungeon": false, "has_important": true}, {"id": 8937, "name": "Mistlands_RoadPost1", "category": "other", "x": 8827.8, "z": -3185.4, "px": 3554.6, "py": 1504.4, "has_dungeon": false, "has_important": false}, {"id": 8938, "name": "Mistlands_RoadPost1", "category": "other", "x": 8721.7, "z": -3073.9, "px": 3536.5, "py": 1523.4, "has_dungeon": false, "has_important": true}, {"id": 8939, "name": "Mistlands_RoadPost1", "category": "other", "x": -1551.0, "z": -5864.7, "px": 1783.3, "py": 1047.1, "has_dungeon": false, "has_important": true}, {"id": 8940, "name": "Mistlands_RoadPost1", "category": "other", "x": 8843.1, "z": -3636.7, "px": 3557.2, "py": 1427.3, "has_dungeon": false, "has_important": true}, {"id": 8941, "name": "Mistlands_RoadPost1", "category": "other", "x": -621.8, "z": 6447.3, "px": 1941.9, "py": 3148.3, "has_dungeon": false, "has_important": false}, {"id": 8942, "name": "Mistlands_RoadPost1", "category": "other", "x": -2129.0, "z": 6920.5, "px": 1684.7, "py": 3229.1, "has_dungeon": false, "has_important": false}, {"id": 8943, "name": "Mistlands_RoadPost1", "category": "other", "x": 6405.9, "z": 4238.3, "px": 3141.3, "py": 2771.3, "has_dungeon": false, "has_important": true}, {"id": 8944, "name": "Mistlands_RoadPost1", "category": "other", "x": 1322.6, "z": -6356.2, "px": 2273.7, "py": 963.2, "has_dungeon": false, "has_important": false}, {"id": 8945, "name": "Mistlands_RoadPost1", "category": "other", "x": -9393.0, "z": -1194.4, "px": 444.9, "py": 1844.2, "has_dungeon": false, "has_important": false}, {"id": 8946, "name": "Mistlands_RoadPost1", "category": "other", "x": 9192.1, "z": 1671.1, "px": 3616.8, "py": 2333.2, "has_dungeon": false, "has_important": false}, {"id": 8947, "name": "Mistlands_RoadPost1", "category": "other", "x": -1848.2, "z": -6592.8, "px": 1732.6, "py": 922.8, "has_dungeon": false, "has_important": false}, {"id": 8948, "name": "Mistlands_RoadPost1", "category": "other", "x": -9220.7, "z": -251.4, "px": 474.3, "py": 2005.1, "has_dungeon": false, "has_important": true}, {"id": 8949, "name": "Mistlands_RoadPost1", "category": "other", "x": -8528.7, "z": 1414.9, "px": 592.4, "py": 2289.5, "has_dungeon": false, "has_important": false}, {"id": 8950, "name": "Mistlands_RoadPost1", "category": "other", "x": 7426.6, "z": -4870.6, "px": 3315.5, "py": 1216.8, "has_dungeon": false, "has_important": true}, {"id": 8951, "name": "Mistlands_RoadPost1", "category": "other", "x": -9296.7, "z": 455.3, "px": 461.4, "py": 2125.7, "has_dungeon": false, "has_important": true}, {"id": 8952, "name": "Mistlands_RoadPost1", "category": "other", "x": -6502.4, "z": 4939.9, "px": 938.3, "py": 2891.1, "has_dungeon": false, "has_important": true}, {"id": 8953, "name": "Mistlands_RoadPost1", "category": "other", "x": -7955.4, "z": 2255.3, "px": 690.3, "py": 2432.9, "has_dungeon": false, "has_important": true}, {"id": 8954, "name": "Mistlands_RoadPost1", "category": "other", "x": -9418.1, "z": -2491.0, "px": 440.6, "py": 1622.9, "has_dungeon": false, "has_important": true}, {"id": 8955, "name": "Mistlands_RoadPost1", "category": "other", "x": 9398.8, "z": 1930.3, "px": 3652.1, "py": 2377.4, "has_dungeon": false, "has_important": true}, {"id": 8956, "name": "Mistlands_RoadPost1", "category": "other", "x": 6742.9, "z": 1149.4, "px": 3198.8, "py": 2244.2, "has_dungeon": false, "has_important": true}, {"id": 8957, "name": "Mistlands_RoadPost1", "category": "other", "x": -7604.9, "z": 2608.1, "px": 750.1, "py": 2493.1, "has_dungeon": false, "has_important": true}, {"id": 8958, "name": "Mistlands_RoadPost1", "category": "other", "x": -3113.2, "z": -6449.0, "px": 1516.7, "py": 947.4, "has_dungeon": false, "has_important": true}, {"id": 8959, "name": "Mistlands_RoadPost1", "category": "other", "x": 147.6, "z": -6992.9, "px": 2073.2, "py": 854.5, "has_dungeon": false, "has_important": true}, {"id": 8960, "name": "Mistlands_RoadPost1", "category": "other", "x": -9020.8, "z": -760.4, "px": 508.5, "py": 1918.2, "has_dungeon": false, "has_important": true}, {"id": 8961, "name": "Mistlands_RoadPost1", "category": "other", "x": 7628.5, "z": -3461.0, "px": 3349.9, "py": 1457.3, "has_dungeon": false, "has_important": true}, {"id": 8962, "name": "Mistlands_RoadPost1", "category": "other", "x": 5740.4, "z": -2279.2, "px": 3027.7, "py": 1659.0, "has_dungeon": false, "has_important": true}, {"id": 8963, "name": "Mistlands_RoadPost1", "category": "other", "x": 5695.3, "z": 5584.1, "px": 3020.0, "py": 3001.0, "has_dungeon": false, "has_important": true}, {"id": 8964, "name": "Mistlands_RoadPost1", "category": "other", "x": 6001.4, "z": 5222.1, "px": 3072.2, "py": 2939.2, "has_dungeon": false, "has_important": false}, {"id": 8965, "name": "Mistlands_RoadPost1", "category": "other", "x": 8706.8, "z": 561.1, "px": 3534.0, "py": 2143.8, "has_dungeon": false, "has_important": true}, {"id": 8966, "name": "Mistlands_RoadPost1", "category": "other", "x": 2697.2, "z": 6758.1, "px": 2508.3, "py": 3201.4, "has_dungeon": false, "has_important": true}, {"id": 8967, "name": "Mistlands_RoadPost1", "category": "other", "x": -1833.8, "z": 7089.5, "px": 1735.0, "py": 3257.9, "has_dungeon": false, "has_important": true}, {"id": 8968, "name": "Mistlands_RoadPost1", "category": "other", "x": 2095.8, "z": -6520.4, "px": 2405.7, "py": 935.2, "has_dungeon": false, "has_important": true}, {"id": 8969, "name": "Mistlands_RoadPost1", "category": "other", "x": 9074.3, "z": -3144.3, "px": 3596.7, "py": 1511.4, "has_dungeon": false, "has_important": true}, {"id": 8970, "name": "Mistlands_RoadPost1", "category": "other", "x": -7190.4, "z": -2413.4, "px": 820.8, "py": 1636.1, "has_dungeon": false, "has_important": false}, {"id": 8971, "name": "Mistlands_RoadPost1", "category": "other", "x": 7291.5, "z": 4536.4, "px": 3292.4, "py": 2822.2, "has_dungeon": false, "has_important": false}, {"id": 8972, "name": "Mistlands_RoadPost1", "category": "other", "x": 4975.6, "z": -4274.2, "px": 2897.2, "py": 1318.5, "has_dungeon": false, "has_important": true}, {"id": 8973, "name": "Mistlands_RoadPost1", "category": "other", "x": 380.4, "z": -6872.3, "px": 2112.9, "py": 875.1, "has_dungeon": false, "has_important": true}, {"id": 8974, "name": "Mistlands_RoadPost1", "category": "other", "x": 7209.8, "z": -5040.9, "px": 3278.5, "py": 1187.7, "has_dungeon": false, "has_important": true}, {"id": 8975, "name": "Mistlands_RoadPost1", "category": "other", "x": 6997.6, "z": 4932.9, "px": 3242.3, "py": 2889.9, "has_dungeon": false, "has_important": false}, {"id": 8976, "name": "Mistlands_RoadPost1", "category": "other", "x": -3226.0, "z": -6414.6, "px": 1497.4, "py": 953.2, "has_dungeon": false, "has_important": true}, {"id": 8977, "name": "Mistlands_RoadPost1", "category": "other", "x": 5940.1, "z": -4225.6, "px": 3061.8, "py": 1326.8, "has_dungeon": false, "has_important": false}, {"id": 8978, "name": "Mistlands_RoadPost1", "category": "other", "x": -790.5, "z": 6631.7, "px": 1913.1, "py": 3179.8, "has_dungeon": false, "has_important": true}, {"id": 8979, "name": "Mistlands_RoadPost1", "category": "other", "x": -6659.6, "z": -4948.4, "px": 911.4, "py": 1203.5, "has_dungeon": false, "has_important": true}, {"id": 8980, "name": "Mistlands_RoadPost1", "category": "other", "x": 3696.1, "z": 6158.4, "px": 2678.8, "py": 3099.0, "has_dungeon": false, "has_important": true}, {"id": 8981, "name": "Mistlands_RoadPost1", "category": "other", "x": 4168.3, "z": -5820.2, "px": 2759.4, "py": 1054.7, "has_dungeon": false, "has_important": true}, {"id": 8982, "name": "Mistlands_RoadPost1", "category": "other", "x": -3241.3, "z": -7383.2, "px": 1494.8, "py": 787.9, "has_dungeon": false, "has_important": false}, {"id": 8983, "name": "Mistlands_RoadPost1", "category": "other", "x": -1010.1, "z": -5937.0, "px": 1875.6, "py": 1034.8, "has_dungeon": false, "has_important": true}, {"id": 8984, "name": "Mistlands_RoadPost1", "category": "other", "x": -5458.7, "z": -4348.5, "px": 1116.4, "py": 1305.9, "has_dungeon": false, "has_important": true}, {"id": 8985, "name": "Mistlands_RoadPost1", "category": "other", "x": 579.3, "z": -6266.8, "px": 2146.9, "py": 978.5, "has_dungeon": false, "has_important": false}, {"id": 8986, "name": "Mistlands_RoadPost1", "category": "other", "x": -1025.1, "z": -7042.4, "px": 1873.0, "py": 846.1, "has_dungeon": false, "has_important": true}, {"id": 8987, "name": "Mistlands_RoadPost1", "category": "other", "x": 9680.6, "z": 2413.5, "px": 3700.2, "py": 2459.9, "has_dungeon": false, "has_important": false}, {"id": 8988, "name": "Mistlands_RoadPost1", "category": "other", "x": -5616.2, "z": -4344.1, "px": 1089.5, "py": 1306.6, "has_dungeon": false, "has_important": true}, {"id": 8989, "name": "Mistlands_RoadPost1", "category": "other", "x": 2983.1, "z": 5326.3, "px": 2557.1, "py": 2957.0, "has_dungeon": false, "has_important": true}, {"id": 8990, "name": "Mistlands_RoadPost1", "category": "other", "x": 8600.9, "z": -1293.9, "px": 3515.9, "py": 1827.2, "has_dungeon": false, "has_important": true}, {"id": 8991, "name": "Mistlands_RoadPost1", "category": "other", "x": -3286.7, "z": -7108.7, "px": 1487.1, "py": 834.8, "has_dungeon": false, "has_important": false}, {"id": 8992, "name": "Mistlands_RoadPost1", "category": "other", "x": -3698.7, "z": 4859.0, "px": 1416.8, "py": 2877.3, "has_dungeon": false, "has_important": true}, {"id": 8993, "name": "Mistlands_RoadPost1", "category": "other", "x": 8559.9, "z": 1141.2, "px": 3508.9, "py": 2242.8, "has_dungeon": false, "has_important": true}, {"id": 8994, "name": "Mistlands_RoadPost1", "category": "other", "x": -1403.1, "z": -7443.7, "px": 1808.5, "py": 777.6, "has_dungeon": false, "has_important": false}, {"id": 8995, "name": "Mistlands_RoadPost1", "category": "other", "x": 134.4, "z": -7058.8, "px": 2070.9, "py": 843.3, "has_dungeon": false, "has_important": true}, {"id": 8996, "name": "Mistlands_RoadPost1", "category": "other", "x": 7763.9, "z": 386.3, "px": 3373.0, "py": 2113.9, "has_dungeon": false, "has_important": true}, {"id": 8997, "name": "Mistlands_RoadPost1", "category": "other", "x": -9151.6, "z": 757.9, "px": 486.1, "py": 2177.3, "has_dungeon": false, "has_important": true}, {"id": 8998, "name": "Mistlands_RoadPost1", "category": "other", "x": 9925.8, "z": -529.6, "px": 3742.0, "py": 1957.6, "has_dungeon": false, "has_important": true}, {"id": 8999, "name": "Mistlands_RoadPost1", "category": "other", "x": -2443.4, "z": -6676.1, "px": 1631.0, "py": 908.6, "has_dungeon": false, "has_important": true}, {"id": 9000, "name": "Mistlands_RoadPost1", "category": "other", "x": -8521.3, "z": 3388.9, "px": 593.7, "py": 2626.4, "has_dungeon": false, "has_important": true}, {"id": 9001, "name": "Mistlands_RoadPost1", "category": "other", "x": -5716.2, "z": 1532.9, "px": 1072.4, "py": 2309.6, "has_dungeon": false, "has_important": false}, {"id": 9002, "name": "Mistlands_RoadPost1", "category": "other", "x": 1662.6, "z": -6512.3, "px": 2331.8, "py": 936.6, "has_dungeon": false, "has_important": true}, {"id": 9003, "name": "Mistlands_RoadPost1", "category": "other", "x": -5520.1, "z": 6065.4, "px": 1105.9, "py": 3083.2, "has_dungeon": false, "has_important": true}, {"id": 9004, "name": "Mistlands_RoadPost1", "category": "other", "x": 5940.3, "z": -5817.0, "px": 3061.8, "py": 1055.2, "has_dungeon": false, "has_important": true}, {"id": 9005, "name": "Mistlands_RoadPost1", "category": "other", "x": -9397.8, "z": -1331.6, "px": 444.1, "py": 1820.7, "has_dungeon": false, "has_important": false}, {"id": 9006, "name": "Mistlands_RoadPost1", "category": "other", "x": 1032.3, "z": -7227.8, "px": 2224.2, "py": 814.5, "has_dungeon": false, "has_important": false}, {"id": 9007, "name": "Mistlands_RoadPost1", "category": "other", "x": 8430.3, "z": -432.9, "px": 3486.8, "py": 1974.1, "has_dungeon": false, "has_important": true}, {"id": 9008, "name": "Mistlands_RoadPost1", "category": "other", "x": 633.4, "z": 6717.7, "px": 2156.1, "py": 3194.5, "has_dungeon": false, "has_important": true}, {"id": 9009, "name": "Mistlands_RoadPost1", "category": "other", "x": 4940.5, "z": 5512.2, "px": 2891.2, "py": 2988.7, "has_dungeon": false, "has_important": true}, {"id": 9010, "name": "Mistlands_RoadPost1", "category": "other", "x": -9201.3, "z": -1192.2, "px": 477.6, "py": 1844.5, "has_dungeon": false, "has_important": true}, {"id": 9011, "name": "Mistlands_RoadPost1", "category": "other", "x": 8512.9, "z": -826.5, "px": 3500.9, "py": 1906.9, "has_dungeon": false, "has_important": true}, {"id": 9012, "name": "Mistlands_RoadPost1", "category": "other", "x": 7438.1, "z": 2284.4, "px": 3317.4, "py": 2437.9, "has_dungeon": false, "has_important": true}, {"id": 9013, "name": "Mistlands_RoadPost1", "category": "other", "x": -2621.4, "z": 6334.6, "px": 1600.6, "py": 3129.1, "has_dungeon": false, "has_important": true}, {"id": 9014, "name": "Mistlands_RoadPost1", "category": "other", "x": -4497.3, "z": -4288.5, "px": 1280.5, "py": 1316.1, "has_dungeon": false, "has_important": true}, {"id": 9015, "name": "Mistlands_RoadPost1", "category": "other", "x": -5112.2, "z": 4864.1, "px": 1175.5, "py": 2878.1, "has_dungeon": false, "has_important": true}, {"id": 9016, "name": "Mistlands_RoadPost1", "category": "other", "x": -7881.4, "z": -2821.4, "px": 702.9, "py": 1566.5, "has_dungeon": false, "has_important": false}, {"id": 9017, "name": "Mistlands_RoadPost1", "category": "other", "x": 6996.6, "z": 1335.9, "px": 3242.1, "py": 2276.0, "has_dungeon": false, "has_important": true}, {"id": 9018, "name": "Mistlands_RoadPost1", "category": "other", "x": 6333.9, "z": 4603.6, "px": 3129.0, "py": 2833.7, "has_dungeon": false, "has_important": true}, {"id": 9019, "name": "Mistlands_RoadPost1", "category": "other", "x": -5936.3, "z": -1648.3, "px": 1034.9, "py": 1766.7, "has_dungeon": false, "has_important": true}, {"id": 9020, "name": "Mistlands_RoadPost1", "category": "other", "x": 3856.7, "z": -5353.2, "px": 2706.2, "py": 1134.4, "has_dungeon": false, "has_important": false}, {"id": 9021, "name": "Mistlands_RoadPost1", "category": "other", "x": 5320.1, "z": 3072.6, "px": 2956.0, "py": 2572.4, "has_dungeon": false, "has_important": true}, {"id": 9022, "name": "Mistlands_RoadPost1", "category": "other", "x": -2305.9, "z": -6777.0, "px": 1654.5, "py": 891.4, "has_dungeon": false, "has_important": true}, {"id": 9023, "name": "Mistlands_RoadPost1", "category": "other", "x": 8959.3, "z": -828.8, "px": 3577.1, "py": 1906.6, "has_dungeon": false, "has_important": false}, {"id": 9024, "name": "Mistlands_RoadPost1", "category": "other", "x": -5612.7, "z": -5362.3, "px": 1090.1, "py": 1132.8, "has_dungeon": false, "has_important": true}, {"id": 9025, "name": "Mistlands_RoadPost1", "category": "other", "x": 3390.7, "z": 5616.1, "px": 2626.7, "py": 3006.5, "has_dungeon": false, "has_important": true}, {"id": 9026, "name": "Mistlands_RoadPost1", "category": "other", "x": -5178.3, "z": -4543.8, "px": 1164.2, "py": 1272.5, "has_dungeon": false, "has_important": true}, {"id": 9027, "name": "Mistlands_RoadPost1", "category": "other", "x": -1652.2, "z": -5711.9, "px": 1766.0, "py": 1073.2, "has_dungeon": false, "has_important": false}, {"id": 9028, "name": "Mistlands_RoadPost1", "category": "other", "x": -8617.8, "z": -1255.8, "px": 577.2, "py": 1833.7, "has_dungeon": false, "has_important": true}, {"id": 9029, "name": "Mistlands_RoadPost1", "category": "other", "x": 6040.0, "z": 4889.3, "px": 3078.8, "py": 2882.4, "has_dungeon": false, "has_important": false}, {"id": 9030, "name": "Mistlands_RoadPost1", "category": "other", "x": -6207.5, "z": 5717.0, "px": 988.6, "py": 3023.7, "has_dungeon": false, "has_important": true}, {"id": 9031, "name": "Mistlands_RoadPost1", "category": "other", "x": -6992.5, "z": -896.7, "px": 854.6, "py": 1895.0, "has_dungeon": false, "has_important": true}, {"id": 9032, "name": "Mistlands_RoadPost1", "category": "other", "x": -6696.9, "z": -2451.5, "px": 905.1, "py": 1629.6, "has_dungeon": false, "has_important": true}, {"id": 9033, "name": "Mistlands_RoadPost1", "category": "other", "x": -4470.3, "z": 6578.6, "px": 1285.1, "py": 3170.7, "has_dungeon": false, "has_important": true}, {"id": 9034, "name": "Mistlands_RoadPost1", "category": "other", "x": -1905.8, "z": 7412.7, "px": 1722.7, "py": 3313.1, "has_dungeon": false, "has_important": true}, {"id": 9035, "name": "Mistlands_RoadPost1", "category": "other", "x": 1355.0, "z": -6568.5, "px": 2279.3, "py": 927.0, "has_dungeon": false, "has_important": false}, {"id": 9036, "name": "Mistlands_RoadPost1", "category": "other", "x": 7996.1, "z": 1067.6, "px": 3412.7, "py": 2230.2, "has_dungeon": false, "has_important": true}, {"id": 9037, "name": "Mistlands_RoadPost1", "category": "other", "x": 0.5, "z": -7016.2, "px": 2048.1, "py": 850.6, "has_dungeon": false, "has_important": true}, {"id": 9038, "name": "Mistlands_RoadPost1", "category": "other", "x": 1464.6, "z": -6277.4, "px": 2298.0, "py": 976.7, "has_dungeon": false, "has_important": true}, {"id": 9039, "name": "Mistlands_RoadPost1", "category": "other", "x": 6127.5, "z": 5811.5, "px": 3093.8, "py": 3039.8, "has_dungeon": false, "has_important": true}, {"id": 9040, "name": "Mistlands_RoadPost1", "category": "other", "x": -3132.2, "z": 5423.9, "px": 1513.4, "py": 2973.7, "has_dungeon": false, "has_important": false}, {"id": 9041, "name": "Mistlands_RoadPost1", "category": "other", "x": -5965.3, "z": 961.0, "px": 1029.9, "py": 2212.0, "has_dungeon": false, "has_important": true}, {"id": 9042, "name": "Mistlands_RoadPost1", "category": "other", "x": -5676.8, "z": 3005.6, "px": 1079.2, "py": 2561.0, "has_dungeon": false, "has_important": true}, {"id": 9043, "name": "Mistlands_RoadPost1", "category": "other", "x": 8001.1, "z": 2437.8, "px": 3413.5, "py": 2464.1, "has_dungeon": false, "has_important": true}, {"id": 9044, "name": "Mistlands_RoadPost1", "category": "other", "x": -8189.2, "z": -458.8, "px": 650.4, "py": 1969.7, "has_dungeon": false, "has_important": true}, {"id": 9045, "name": "Mistlands_RoadPost1", "category": "other", "x": 3188.2, "z": 6900.6, "px": 2592.1, "py": 3225.7, "has_dungeon": false, "has_important": false}, {"id": 9046, "name": "Mistlands_RoadPost1", "category": "other", "x": 1145.2, "z": 5974.1, "px": 2243.4, "py": 3067.6, "has_dungeon": false, "has_important": true}, {"id": 9047, "name": "Mistlands_RoadPost1", "category": "other", "x": 2431.8, "z": -5843.0, "px": 2463.0, "py": 1050.8, "has_dungeon": false, "has_important": true}, {"id": 9048, "name": "Mistlands_RoadPost1", "category": "other", "x": -4.0, "z": 7357.1, "px": 2047.3, "py": 3303.6, "has_dungeon": false, "has_important": true}, {"id": 9049, "name": "Mistlands_RoadPost1", "category": "other", "x": -1290.5, "z": -5964.0, "px": 1827.8, "py": 1030.1, "has_dungeon": false, "has_important": true}, {"id": 9050, "name": "Mistlands_RoadPost1", "category": "other", "x": -8206.4, "z": 58.1, "px": 647.4, "py": 2057.9, "has_dungeon": false, "has_important": true}, {"id": 9051, "name": "Mistlands_RoadPost1", "category": "other", "x": 6658.0, "z": -2571.1, "px": 3184.3, "py": 1609.2, "has_dungeon": false, "has_important": true}, {"id": 9052, "name": "Mistlands_RoadPost1", "category": "other", "x": 6523.2, "z": 4428.7, "px": 3161.3, "py": 2803.8, "has_dungeon": false, "has_important": true}, {"id": 9053, "name": "Mistlands_RoadPost1", "category": "other", "x": 3151.4, "z": 5706.7, "px": 2585.8, "py": 3021.9, "has_dungeon": false, "has_important": false}, {"id": 9054, "name": "Mistlands_RoadPost1", "category": "other", "x": 121.4, "z": 7527.8, "px": 2068.7, "py": 3332.7, "has_dungeon": false, "has_important": true}, {"id": 9055, "name": "Mistlands_RoadPost1", "category": "other", "x": -9465.0, "z": -854.6, "px": 432.6, "py": 1902.1, "has_dungeon": false, "has_important": true}, {"id": 9056, "name": "Mistlands_RoadPost1", "category": "other", "x": -6014.5, "z": 875.4, "px": 1021.5, "py": 2197.4, "has_dungeon": false, "has_important": false}, {"id": 9057, "name": "Mistlands_RoadPost1", "category": "other", "x": 7612.9, "z": -4714.4, "px": 3347.3, "py": 1243.4, "has_dungeon": false, "has_important": true}, {"id": 9058, "name": "Mistlands_RoadPost1", "category": "other", "x": -711.5, "z": -7723.4, "px": 1926.6, "py": 729.9, "has_dungeon": false, "has_important": true}, {"id": 9059, "name": "Mistlands_RoadPost1", "category": "other", "x": 592.5, "z": 6860.0, "px": 2149.1, "py": 3218.8, "has_dungeon": false, "has_important": true}, {"id": 9060, "name": "Mistlands_RoadPost1", "category": "other", "x": -4527.0, "z": -4374.9, "px": 1275.4, "py": 1301.4, "has_dungeon": false, "has_important": true}, {"id": 9061, "name": "Mistlands_RoadPost1", "category": "other", "x": -7464.5, "z": -680.1, "px": 774.1, "py": 1931.9, "has_dungeon": false, "has_important": false}, {"id": 9062, "name": "Mistlands_RoadPost1", "category": "other", "x": 6734.7, "z": -3436.4, "px": 3197.4, "py": 1461.5, "has_dungeon": false, "has_important": true}, {"id": 9063, "name": "Mistlands_RoadPost1", "category": "other", "x": 470.1, "z": -7615.8, "px": 2128.2, "py": 748.2, "has_dungeon": false, "has_important": false}, {"id": 9064, "name": "Mistlands_RoadPost1", "category": "other", "x": 8957.8, "z": -2775.4, "px": 3576.8, "py": 1574.3, "has_dungeon": false, "has_important": true}, {"id": 9065, "name": "Mistlands_RoadPost1", "category": "other", "x": -9457.3, "z": 1064.2, "px": 434.0, "py": 2229.6, "has_dungeon": false, "has_important": false}, {"id": 9066, "name": "Mistlands_RoadPost1", "category": "other", "x": -8423.3, "z": -430.8, "px": 610.4, "py": 1974.5, "has_dungeon": false, "has_important": true}, {"id": 9067, "name": "Mistlands_RoadPost1", "category": "other", "x": -8713.8, "z": -1473.0, "px": 560.8, "py": 1796.6, "has_dungeon": false, "has_important": true}, {"id": 9068, "name": "Mistlands_RoadPost1", "category": "other", "x": 2552.3, "z": -5778.0, "px": 2483.6, "py": 1061.9, "has_dungeon": false, "has_important": true}, {"id": 9069, "name": "Mistlands_RoadPost1", "category": "other", "x": -5232.7, "z": 4888.6, "px": 1155.0, "py": 2882.3, "has_dungeon": false, "has_important": false}, {"id": 9070, "name": "Mistlands_RoadPost1", "category": "other", "x": 184.7, "z": 6732.1, "px": 2079.5, "py": 3196.9, "has_dungeon": false, "has_important": true}, {"id": 9071, "name": "Mistlands_RoadPost1", "category": "other", "x": 6972.2, "z": -664.8, "px": 3237.9, "py": 1934.5, "has_dungeon": false, "has_important": false}, {"id": 9072, "name": "Mistlands_RoadPost1", "category": "other", "x": -9164.8, "z": 1144.7, "px": 483.9, "py": 2243.4, "has_dungeon": false, "has_important": true}, {"id": 9073, "name": "Mistlands_RoadPost1", "category": "other", "x": -8278.8, "z": -3607.9, "px": 635.1, "py": 1432.3, "has_dungeon": false, "has_important": true}, {"id": 9074, "name": "Mistlands_RoadPost1", "category": "other", "x": 6807.8, "z": 3722.7, "px": 3209.9, "py": 2683.3, "has_dungeon": false, "has_important": true}, {"id": 9075, "name": "Mistlands_RoadPost1", "category": "other", "x": 5912.1, "z": -2107.3, "px": 3057.0, "py": 1688.4, "has_dungeon": false, "has_important": true}, {"id": 9076, "name": "Mistlands_RoadPost1", "category": "other", "x": 6024.4, "z": -1666.0, "px": 3076.2, "py": 1763.7, "has_dungeon": false, "has_important": false}, {"id": 9077, "name": "Mistlands_RoadPost1", "category": "other", "x": 514.0, "z": -6395.8, "px": 2135.7, "py": 956.5, "has_dungeon": false, "has_important": false}, {"id": 9078, "name": "Mistlands_RoadPost1", "category": "other", "x": 2439.9, "z": -6351.5, "px": 2464.4, "py": 964.0, "has_dungeon": false, "has_important": false}, {"id": 9079, "name": "Mistlands_RoadPost1", "category": "other", "x": -4228.0, "z": 7112.1, "px": 1326.4, "py": 3261.8, "has_dungeon": false, "has_important": true}, {"id": 9080, "name": "Mistlands_RoadPost1", "category": "other", "x": 3323.3, "z": 5909.9, "px": 2615.2, "py": 3056.6, "has_dungeon": false, "has_important": true}, {"id": 9081, "name": "Mistlands_RoadPost1", "category": "other", "x": -5713.1, "z": -5238.8, "px": 1073.0, "py": 1153.9, "has_dungeon": false, "has_important": true}, {"id": 9082, "name": "Mistlands_RoadPost1", "category": "other", "x": -4680.1, "z": -3814.4, "px": 1249.3, "py": 1397.0, "has_dungeon": false, "has_important": true}, {"id": 9083, "name": "Mistlands_RoadPost1", "category": "other", "x": 6221.9, "z": 4328.5, "px": 3109.9, "py": 2786.7, "has_dungeon": false, "has_important": true}, {"id": 9084, "name": "Mistlands_RoadPost1", "category": "other", "x": -5812.5, "z": -5313.6, "px": 1056.0, "py": 1141.1, "has_dungeon": false, "has_important": true}, {"id": 9085, "name": "Mistlands_RoadPost1", "category": "other", "x": -6601.2, "z": -832.6, "px": 921.4, "py": 1905.9, "has_dungeon": false, "has_important": false}, {"id": 9086, "name": "Mistlands_RoadPost1", "category": "other", "x": 8049.4, "z": 2680.5, "px": 3421.8, "py": 2505.5, "has_dungeon": false, "has_important": true}, {"id": 9087, "name": "Mistlands_RoadPost1", "category": "other", "x": 5811.9, "z": -5743.5, "px": 3039.9, "py": 1067.8, "has_dungeon": false, "has_important": true}, {"id": 9088, "name": "Mistlands_RoadPost1", "category": "other", "x": -7291.0, "z": 909.5, "px": 803.7, "py": 2203.2, "has_dungeon": false, "has_important": false}, {"id": 9089, "name": "Mistlands_RoadPost1", "category": "other", "x": 7098.4, "z": -5296.4, "px": 3259.5, "py": 1144.1, "has_dungeon": false, "has_important": true}, {"id": 9090, "name": "Mistlands_RoadPost1", "category": "other", "x": 6361.7, "z": 2807.6, "px": 3133.7, "py": 2527.2, "has_dungeon": false, "has_important": true}, {"id": 9091, "name": "Mistlands_RoadPost1", "category": "other", "x": -6077.9, "z": 3158.1, "px": 1010.7, "py": 2587.0, "has_dungeon": false, "has_important": false}, {"id": 9092, "name": "Mistlands_RoadPost1", "category": "other", "x": 3393.8, "z": -6420.0, "px": 2627.2, "py": 952.3, "has_dungeon": false, "has_important": false}, {"id": 9093, "name": "Mistlands_RoadPost1", "category": "other", "x": -7940.6, "z": 4491.6, "px": 692.8, "py": 2814.6, "has_dungeon": false, "has_important": true}, {"id": 9094, "name": "Mistlands_RoadPost1", "category": "other", "x": 5129.6, "z": 4558.2, "px": 2923.5, "py": 2825.9, "has_dungeon": false, "has_important": false}, {"id": 9095, "name": "Mistlands_RoadPost1", "category": "other", "x": 8133.6, "z": 3122.2, "px": 3436.1, "py": 2580.9, "has_dungeon": false, "has_important": false}, {"id": 9096, "name": "Mistlands_RoadPost1", "category": "other", "x": -6936.9, "z": 899.4, "px": 864.1, "py": 2201.5, "has_dungeon": false, "has_important": true}, {"id": 9097, "name": "Mistlands_RoadPost1", "category": "other", "x": -6356.5, "z": 882.3, "px": 963.2, "py": 2198.6, "has_dungeon": false, "has_important": true}, {"id": 9098, "name": "Mistlands_RoadPost1", "category": "other", "x": 9234.4, "z": -1449.3, "px": 3624.0, "py": 1800.7, "has_dungeon": false, "has_important": true}, {"id": 9099, "name": "Mistlands_RoadPost1", "category": "other", "x": -907.0, "z": -7024.5, "px": 1893.2, "py": 849.2, "has_dungeon": false, "has_important": true}, {"id": 9100, "name": "Mistlands_RoadPost1", "category": "other", "x": 7794.9, "z": 2121.7, "px": 3378.3, "py": 2410.1, "has_dungeon": false, "has_important": true}, {"id": 9101, "name": "Mistlands_RoadPost1", "category": "other", "x": -7728.4, "z": -3302.7, "px": 729.0, "py": 1484.3, "has_dungeon": false, "has_important": true}, {"id": 9102, "name": "Mistlands_RoadPost1", "category": "other", "x": 8137.8, "z": 2177.7, "px": 3436.9, "py": 2419.7, "has_dungeon": false, "has_important": true}, {"id": 9103, "name": "Mistlands_RoadPost1", "category": "other", "x": 5419.7, "z": 5766.2, "px": 2973.0, "py": 3032.1, "has_dungeon": false, "has_important": true}, {"id": 9104, "name": "Mistlands_RoadPost1", "category": "other", "x": -9617.2, "z": -2243.6, "px": 406.7, "py": 1665.1, "has_dungeon": false, "has_important": false}, {"id": 9105, "name": "Mistlands_RoadPost1", "category": "other", "x": 5036.7, "z": 4746.5, "px": 2907.6, "py": 2858.1, "has_dungeon": false, "has_important": true}, {"id": 9106, "name": "Mistlands_RoadPost1", "category": "other", "x": -360.6, "z": -6607.8, "px": 1986.5, "py": 920.3, "has_dungeon": false, "has_important": true}, {"id": 9107, "name": "Mistlands_RoadPost1", "category": "other", "x": 5163.3, "z": -3726.7, "px": 2929.2, "py": 1412.0, "has_dungeon": false, "has_important": true}, {"id": 9108, "name": "Mistlands_RoadPost1", "category": "other", "x": -5966.6, "z": -5135.7, "px": 1029.7, "py": 1171.5, "has_dungeon": false, "has_important": false}, {"id": 9109, "name": "Mistlands_RoadPost1", "category": "other", "x": 6013.0, "z": 3318.7, "px": 3074.2, "py": 2614.4, "has_dungeon": false, "has_important": true}, {"id": 9110, "name": "Mistlands_RoadPost1", "category": "other", "x": -5844.6, "z": -5720.5, "px": 1050.5, "py": 1071.7, "has_dungeon": false, "has_important": true}, {"id": 9111, "name": "Mistlands_RoadPost1", "category": "other", "x": 2816.5, "z": 5592.4, "px": 2528.7, "py": 3002.4, "has_dungeon": false, "has_important": true}, {"id": 9112, "name": "Mistlands_RoadPost1", "category": "other", "x": 8464.0, "z": 1399.9, "px": 3492.5, "py": 2286.9, "has_dungeon": false, "has_important": false}, {"id": 9113, "name": "Mistlands_RoadPost1", "category": "other", "x": -5105.2, "z": -3605.4, "px": 1176.7, "py": 1432.7, "has_dungeon": false, "has_important": true}, {"id": 9114, "name": "Mistlands_RoadPost1", "category": "other", "x": 9619.6, "z": 2473.4, "px": 3689.7, "py": 2470.1, "has_dungeon": false, "has_important": true}, {"id": 9115, "name": "Mistlands_RoadPost1", "category": "other", "x": -5141.1, "z": 5933.3, "px": 1170.6, "py": 3060.6, "has_dungeon": false, "has_important": true}, {"id": 9116, "name": "Mistlands_RoadPost1", "category": "other", "x": -1660.7, "z": -7303.1, "px": 1764.6, "py": 801.6, "has_dungeon": false, "has_important": true}, {"id": 9117, "name": "Mistlands_RoadPost1", "category": "other", "x": -5961.1, "z": 3400.4, "px": 1030.6, "py": 2628.3, "has_dungeon": false, "has_important": true}, {"id": 9118, "name": "Mistlands_RoadPost1", "category": "other", "x": 6896.8, "z": 5200.0, "px": 3225.1, "py": 2935.5, "has_dungeon": false, "has_important": true}, {"id": 9119, "name": "Mistlands_RoadPost1", "category": "other", "x": 5561.1, "z": 3656.0, "px": 2997.1, "py": 2672.0, "has_dungeon": false, "has_important": true}, {"id": 9120, "name": "Mistlands_RoadPost1", "category": "other", "x": 4265.2, "z": -6779.1, "px": 2775.9, "py": 891.0, "has_dungeon": false, "has_important": false}, {"id": 9121, "name": "Mistlands_RoadPost1", "category": "other", "x": 6694.2, "z": -184.1, "px": 3190.5, "py": 2016.6, "has_dungeon": false, "has_important": true}, {"id": 9122, "name": "Mistlands_RoadPost1", "category": "other", "x": -8308.2, "z": 1911.0, "px": 630.1, "py": 2374.1, "has_dungeon": false, "has_important": false}, {"id": 9123, "name": "Mistlands_RoadPost1", "category": "other", "x": 2129.5, "z": -6666.8, "px": 2411.4, "py": 910.2, "has_dungeon": false, "has_important": true}, {"id": 9124, "name": "Mistlands_RoadPost1", "category": "other", "x": 4019.0, "z": -5313.7, "px": 2733.9, "py": 1141.1, "has_dungeon": false, "has_important": true}, {"id": 9125, "name": "Mistlands_RoadPost1", "category": "other", "x": 2682.5, "z": 6591.2, "px": 2505.8, "py": 3172.9, "has_dungeon": false, "has_important": true}, {"id": 9126, "name": "Mistlands_RoadPost1", "category": "other", "x": -1496.5, "z": -7338.3, "px": 1792.6, "py": 795.6, "has_dungeon": false, "has_important": true}, {"id": 9127, "name": "Mistlands_RoadPost1", "category": "other", "x": 8427.1, "z": 747.0, "px": 3486.2, "py": 2175.5, "has_dungeon": false, "has_important": true}, {"id": 9128, "name": "Mistlands_RoadPost1", "category": "other", "x": -1971.0, "z": -6773.0, "px": 1711.6, "py": 892.1, "has_dungeon": false, "has_important": true}, {"id": 9129, "name": "Mistlands_RoadPost1", "category": "other", "x": -6129.2, "z": -957.3, "px": 1001.9, "py": 1884.6, "has_dungeon": false, "has_important": true}, {"id": 9130, "name": "Mistlands_RoadPost1", "category": "other", "x": 4377.2, "z": 4726.7, "px": 2795.0, "py": 2854.7, "has_dungeon": false, "has_important": true}, {"id": 9131, "name": "Mistlands_RoadPost1", "category": "other", "x": -841.0, "z": -7367.1, "px": 1904.5, "py": 790.7, "has_dungeon": false, "has_important": true}, {"id": 9132, "name": "Mistlands_RoadPost1", "category": "other", "x": -9141.8, "z": -1663.2, "px": 487.8, "py": 1764.1, "has_dungeon": false, "has_important": true}, {"id": 9133, "name": "Mistlands_RoadPost1", "category": "other", "x": -8806.8, "z": 294.9, "px": 545.0, "py": 2098.3, "has_dungeon": false, "has_important": true}, {"id": 9134, "name": "Mistlands_RoadPost1", "category": "other", "x": 1934.3, "z": 5766.3, "px": 2378.1, "py": 3032.1, "has_dungeon": false, "has_important": false}, {"id": 9135, "name": "Mistlands_RoadPost1", "category": "other", "x": -5900.3, "z": -5463.0, "px": 1041.0, "py": 1115.6, "has_dungeon": false, "has_important": false}, {"id": 9136, "name": "Mistlands_RoadPost1", "category": "other", "x": 1300.3, "z": -6475.1, "px": 2269.9, "py": 942.9, "has_dungeon": false, "has_important": true}, {"id": 9137, "name": "Mistlands_RoadPost1", "category": "other", "x": -5525.7, "z": 4658.6, "px": 1104.9, "py": 2843.1, "has_dungeon": false, "has_important": true}, {"id": 9138, "name": "Mistlands_RoadPost1", "category": "other", "x": 6251.4, "z": 4085.2, "px": 3114.9, "py": 2745.2, "has_dungeon": false, "has_important": true}, {"id": 9139, "name": "Mistlands_RoadPost1", "category": "other", "x": -7180.5, "z": 2991.0, "px": 822.5, "py": 2558.5, "has_dungeon": false, "has_important": true}, {"id": 9140, "name": "Mistlands_RoadPost1", "category": "other", "x": -7246.0, "z": -2798.1, "px": 811.3, "py": 1570.5, "has_dungeon": false, "has_important": false}, {"id": 9141, "name": "Mistlands_RoadPost1", "category": "other", "x": 9544.4, "z": 766.8, "px": 3676.9, "py": 2178.9, "has_dungeon": false, "has_important": false}, {"id": 9142, "name": "Mistlands_RoadPost1", "category": "other", "x": -8840.6, "z": 217.6, "px": 539.2, "py": 2085.1, "has_dungeon": false, "has_important": true}, {"id": 9143, "name": "Mistlands_RoadPost1", "category": "other", "x": 1223.8, "z": 6505.8, "px": 2256.9, "py": 3158.3, "has_dungeon": false, "has_important": true}, {"id": 9144, "name": "Mistlands_RoadPost1", "category": "other", "x": -1639.3, "z": 7276.1, "px": 1768.2, "py": 3289.8, "has_dungeon": false, "has_important": false}, {"id": 9145, "name": "Mistlands_RoadPost1", "category": "other", "x": 7541.2, "z": 4980.4, "px": 3335.0, "py": 2898.0, "has_dungeon": false, "has_important": true}, {"id": 9146, "name": "Mistlands_RoadPost1", "category": "other", "x": 3904.5, "z": 5607.2, "px": 2714.4, "py": 3005.0, "has_dungeon": false, "has_important": true}, {"id": 9147, "name": "Mistlands_RoadPost1", "category": "other", "x": 6166.4, "z": 5514.5, "px": 3100.4, "py": 2989.1, "has_dungeon": false, "has_important": true}, {"id": 9148, "name": "Mistlands_RoadPost1", "category": "other", "x": 4712.0, "z": -4649.2, "px": 2852.2, "py": 1254.5, "has_dungeon": false, "has_important": false}, {"id": 9149, "name": "Mistlands_RoadPost1", "category": "other", "x": 8581.2, "z": -1065.9, "px": 3512.5, "py": 1866.1, "has_dungeon": false, "has_important": true}, {"id": 9150, "name": "Mistlands_RoadPost1", "category": "other", "x": -5993.4, "z": -5655.7, "px": 1025.1, "py": 1082.8, "has_dungeon": false, "has_important": false}, {"id": 9151, "name": "Mistlands_RoadPost1", "category": "other", "x": -7665.2, "z": -3010.2, "px": 739.8, "py": 1534.3, "has_dungeon": false, "has_important": true}, {"id": 9152, "name": "Mistlands_RoadPost1", "category": "other", "x": -6357.2, "z": 4235.9, "px": 963.0, "py": 2770.9, "has_dungeon": false, "has_important": true}, {"id": 9153, "name": "Mistlands_RoadPost1", "category": "other", "x": -8779.7, "z": -1741.3, "px": 549.6, "py": 1750.8, "has_dungeon": false, "has_important": true}, {"id": 9154, "name": "Mistlands_RoadPost1", "category": "other", "x": 9240.8, "z": -2229.9, "px": 3625.1, "py": 1667.4, "has_dungeon": false, "has_important": true}, {"id": 9155, "name": "Mistlands_RoadPost1", "category": "other", "x": 2580.7, "z": 5620.8, "px": 2488.4, "py": 3007.3, "has_dungeon": false, "has_important": true}, {"id": 9156, "name": "Mistlands_RoadPost1", "category": "other", "x": -8136.7, "z": -3189.0, "px": 659.3, "py": 1503.7, "has_dungeon": false, "has_important": true}, {"id": 9157, "name": "Mistlands_RoadPost1", "category": "other", "x": -2099.7, "z": -7318.7, "px": 1689.7, "py": 798.9, "has_dungeon": false, "has_important": true}, {"id": 9158, "name": "Mistlands_RoadPost1", "category": "other", "x": 2565.9, "z": 6457.1, "px": 2485.9, "py": 3150.0, "has_dungeon": false, "has_important": true}, {"id": 9159, "name": "Mistlands_RoadPost1", "category": "other", "x": -4326.7, "z": -4658.2, "px": 1309.6, "py": 1253.0, "has_dungeon": false, "has_important": true}, {"id": 9160, "name": "Mistlands_RoadPost1", "category": "other", "x": 8056.9, "z": -3377.5, "px": 3423.0, "py": 1471.6, "has_dungeon": false, "has_important": true}, {"id": 9161, "name": "Mistlands_RoadPost1", "category": "other", "x": -9162.2, "z": -2384.6, "px": 484.3, "py": 1641.0, "has_dungeon": false, "has_important": true}, {"id": 9162, "name": "Mistlands_RoadPost1", "category": "other", "x": 6657.7, "z": 1197.3, "px": 3184.2, "py": 2252.3, "has_dungeon": false, "has_important": true}, {"id": 9163, "name": "Mistlands_RoadPost1", "category": "other", "x": -7099.9, "z": 697.6, "px": 836.3, "py": 2167.1, "has_dungeon": false, "has_important": true}, {"id": 9164, "name": "Mistlands_RoadPost1", "category": "other", "x": -1809.7, "z": 6963.7, "px": 1739.1, "py": 3236.5, "has_dungeon": false, "has_important": true}, {"id": 9165, "name": "Mistlands_RoadPost1", "category": "other", "x": 9657.1, "z": -1934.8, "px": 3696.1, "py": 1717.8, "has_dungeon": false, "has_important": false}, {"id": 9166, "name": "Mistlands_RoadPost1", "category": "other", "x": -6212.7, "z": 3530.4, "px": 987.7, "py": 2650.5, "has_dungeon": false, "has_important": true}, {"id": 9167, "name": "Mistlands_RoadPost1", "category": "other", "x": -6777.1, "z": -2662.5, "px": 891.4, "py": 1593.6, "has_dungeon": false, "has_important": true}, {"id": 9168, "name": "Mistlands_RoadPost1", "category": "other", "x": -6320.2, "z": 3949.3, "px": 969.4, "py": 2722.0, "has_dungeon": false, "has_important": true}, {"id": 9169, "name": "Mistlands_RoadPost1", "category": "other", "x": 1360.8, "z": -7443.6, "px": 2280.2, "py": 777.6, "has_dungeon": false, "has_important": true}, {"id": 9170, "name": "Mistlands_RoadPost1", "category": "other", "x": -8018.3, "z": -142.9, "px": 679.5, "py": 2023.6, "has_dungeon": false, "has_important": true}, {"id": 9171, "name": "Mistlands_RoadPost1", "category": "other", "x": -7663.3, "z": 1002.5, "px": 740.1, "py": 2219.1, "has_dungeon": false, "has_important": true}, {"id": 9172, "name": "Mistlands_RoadPost1", "category": "other", "x": -8124.7, "z": 110.1, "px": 661.4, "py": 2066.8, "has_dungeon": false, "has_important": true}, {"id": 9173, "name": "Mistlands_RoadPost1", "category": "other", "x": -7215.5, "z": -2951.5, "px": 816.6, "py": 1544.3, "has_dungeon": false, "has_important": false}, {"id": 9174, "name": "Mistlands_RoadPost1", "category": "other", "x": 771.3, "z": 6322.2, "px": 2179.6, "py": 3127.0, "has_dungeon": false, "has_important": true}, {"id": 9175, "name": "Mistlands_RoadPost1", "category": "other", "x": 4437.0, "z": 5991.9, "px": 2805.2, "py": 3070.6, "has_dungeon": false, "has_important": true}, {"id": 9176, "name": "Mistlands_RoadPost1", "category": "other", "x": -4006.3, "z": 6488.0, "px": 1364.3, "py": 3155.3, "has_dungeon": false, "has_important": true}, {"id": 9177, "name": "Mistlands_RoadPost1", "category": "other", "x": 8422.0, "z": 1108.6, "px": 3485.4, "py": 2237.2, "has_dungeon": false, "has_important": true}, {"id": 9178, "name": "Mistlands_RoadPost1", "category": "other", "x": 5699.9, "z": -4096.0, "px": 3020.8, "py": 1348.9, "has_dungeon": false, "has_important": true}, {"id": 9179, "name": "Mistlands_RoadPost1", "category": "other", "x": 428.3, "z": 6801.3, "px": 2121.1, "py": 3208.8, "has_dungeon": false, "has_important": true}, {"id": 9180, "name": "Mistlands_RoadPost1", "category": "other", "x": 6854.5, "z": 1106.1, "px": 3217.8, "py": 2236.8, "has_dungeon": false, "has_important": false}, {"id": 9181, "name": "Mistlands_RoadPost1", "category": "other", "x": -9107.9, "z": 2491.6, "px": 493.6, "py": 2473.2, "has_dungeon": false, "has_important": true}, {"id": 9182, "name": "Mistlands_RoadPost1", "category": "other", "x": -9478.4, "z": -2283.0, "px": 430.4, "py": 1658.4, "has_dungeon": false, "has_important": true}, {"id": 9183, "name": "Mistlands_RoadPost1", "category": "other", "x": 8500.9, "z": 920.5, "px": 3498.8, "py": 2205.1, "has_dungeon": false, "has_important": true}, {"id": 9184, "name": "Mistlands_RoadPost1", "category": "other", "x": 2544.0, "z": -6412.2, "px": 2482.2, "py": 953.7, "has_dungeon": false, "has_important": true}, {"id": 9185, "name": "Mistlands_RoadPost1", "category": "other", "x": -9367.6, "z": -2298.5, "px": 449.3, "py": 1655.7, "has_dungeon": false, "has_important": true}, {"id": 9186, "name": "Mistlands_RoadPost1", "category": "other", "x": -8449.3, "z": 1462.7, "px": 606.0, "py": 2297.6, "has_dungeon": false, "has_important": false}, {"id": 9187, "name": "Mistlands_RoadPost1", "category": "other", "x": 5720.4, "z": 3603.7, "px": 3024.3, "py": 2663.0, "has_dungeon": false, "has_important": true}, {"id": 9188, "name": "Mistlands_RoadPost1", "category": "other", "x": -702.1, "z": -6726.8, "px": 1928.2, "py": 900.0, "has_dungeon": false, "has_important": true}, {"id": 9189, "name": "Mistlands_RoadPost1", "category": "other", "x": -7158.6, "z": -846.8, "px": 826.3, "py": 1903.5, "has_dungeon": false, "has_important": true}, {"id": 9190, "name": "Mistlands_RoadPost1", "category": "other", "x": 8121.9, "z": -3371.5, "px": 3434.1, "py": 1472.6, "has_dungeon": false, "has_important": true}, {"id": 9191, "name": "Mistlands_RoadPost1", "category": "other", "x": -6489.0, "z": -1133.2, "px": 940.5, "py": 1854.6, "has_dungeon": false, "has_important": true}, {"id": 9192, "name": "Mistlands_RoadPost1", "category": "other", "x": -6055.6, "z": 1166.7, "px": 1014.5, "py": 2247.1, "has_dungeon": false, "has_important": false}, {"id": 9193, "name": "Mistlands_RoadPost1", "category": "other", "x": 5400.6, "z": 5588.3, "px": 2969.7, "py": 3001.7, "has_dungeon": false, "has_important": true}, {"id": 9194, "name": "Mistlands_RoadPost1", "category": "other", "x": -949.8, "z": 6406.4, "px": 1885.9, "py": 3141.4, "has_dungeon": false, "has_important": true}, {"id": 8495, "name": "Mistlands_RockSpire1", "category": "other", "x": -6632.1, "z": 3196.1, "px": 916.1, "py": 2593.5, "has_dungeon": false, "has_important": false}, {"id": 8496, "name": "Mistlands_RockSpire1", "category": "other", "x": -6180.7, "z": -5555.7, "px": 993.2, "py": 1099.8, "has_dungeon": false, "has_important": false}, {"id": 8497, "name": "Mistlands_RockSpire1", "category": "other", "x": -9669.2, "z": -1647.7, "px": 397.8, "py": 1766.8, "has_dungeon": false, "has_important": false}, {"id": 8498, "name": "Mistlands_RockSpire1", "category": "other", "x": 7938.4, "z": -4542.0, "px": 3402.8, "py": 1272.8, "has_dungeon": false, "has_important": false}, {"id": 8499, "name": "Mistlands_RockSpire1", "category": "other", "x": 2871.8, "z": 6336.9, "px": 2538.1, "py": 3129.5, "has_dungeon": false, "has_important": false}, {"id": 8500, "name": "Mistlands_RockSpire1", "category": "other", "x": 3621.6, "z": -7151.8, "px": 2666.1, "py": 827.4, "has_dungeon": false, "has_important": false}, {"id": 8501, "name": "Mistlands_RockSpire1", "category": "other", "x": -7126.8, "z": 1130.7, "px": 831.7, "py": 2241.0, "has_dungeon": false, "has_important": false}, {"id": 8502, "name": "Mistlands_RockSpire1", "category": "other", "x": -5586.2, "z": 3097.2, "px": 1094.6, "py": 2576.6, "has_dungeon": false, "has_important": false}, {"id": 8503, "name": "Mistlands_RockSpire1", "category": "other", "x": -7399.2, "z": -1260.8, "px": 785.2, "py": 1832.8, "has_dungeon": false, "has_important": false}, {"id": 8504, "name": "Mistlands_RockSpire1", "category": "other", "x": 5591.3, "z": 6412.3, "px": 3002.2, "py": 3142.4, "has_dungeon": false, "has_important": false}, {"id": 8505, "name": "Mistlands_RockSpire1", "category": "other", "x": 7541.8, "z": -2311.0, "px": 3335.1, "py": 1653.6, "has_dungeon": false, "has_important": false}, {"id": 8506, "name": "Mistlands_RockSpire1", "category": "other", "x": -7363.2, "z": 4490.6, "px": 791.3, "py": 2814.4, "has_dungeon": false, "has_important": false}, {"id": 8507, "name": "Mistlands_RockSpire1", "category": "other", "x": -7506.1, "z": 2811.0, "px": 767.0, "py": 2527.7, "has_dungeon": false, "has_important": false}, {"id": 8508, "name": "Mistlands_RockSpire1", "category": "other", "x": 5955.8, "z": 2743.3, "px": 3064.5, "py": 2516.2, "has_dungeon": false, "has_important": false}, {"id": 8509, "name": "Mistlands_RockSpire1", "category": "other", "x": -2995.5, "z": -6009.9, "px": 1536.8, "py": 1022.3, "has_dungeon": false, "has_important": false}, {"id": 8510, "name": "Mistlands_RockSpire1", "category": "other", "x": 9816.6, "z": -20.0, "px": 3723.4, "py": 2044.6, "has_dungeon": false, "has_important": false}, {"id": 8511, "name": "Mistlands_RockSpire1", "category": "other", "x": 2318.7, "z": -6486.4, "px": 2443.7, "py": 941.0, "has_dungeon": false, "has_important": false}, {"id": 8512, "name": "Mistlands_RockSpire1", "category": "other", "x": 335.7, "z": 7030.8, "px": 2105.3, "py": 3247.9, "has_dungeon": false, "has_important": false}, {"id": 8513, "name": "Mistlands_RockSpire1", "category": "other", "x": 3412.0, "z": 5459.5, "px": 2630.3, "py": 2979.8, "has_dungeon": false, "has_important": false}, {"id": 8514, "name": "Mistlands_RockSpire1", "category": "other", "x": 7908.6, "z": 3867.6, "px": 3397.7, "py": 2708.1, "has_dungeon": false, "has_important": false}, {"id": 8515, "name": "Mistlands_RockSpire1", "category": "other", "x": -6839.1, "z": 3971.8, "px": 880.8, "py": 2725.9, "has_dungeon": false, "has_important": false}, {"id": 8516, "name": "Mistlands_RockSpire1", "category": "other", "x": 8819.7, "z": 246.8, "px": 3553.2, "py": 2090.1, "has_dungeon": false, "has_important": false}, {"id": 8517, "name": "Mistlands_RockSpire1", "category": "other", "x": 2938.4, "z": 5390.4, "px": 2549.5, "py": 2968.0, "has_dungeon": false, "has_important": false}, {"id": 8518, "name": "Mistlands_RockSpire1", "category": "other", "x": -2026.9, "z": -7220.7, "px": 1702.1, "py": 815.7, "has_dungeon": false, "has_important": false}, {"id": 8519, "name": "Mistlands_RockSpire1", "category": "other", "x": -5444.5, "z": -4263.0, "px": 1118.8, "py": 1320.4, "has_dungeon": false, "has_important": false}, {"id": 8520, "name": "Mistlands_RockSpire1", "category": "other", "x": 2519.4, "z": -5757.9, "px": 2478.0, "py": 1065.3, "has_dungeon": false, "has_important": false}, {"id": 8521, "name": "Mistlands_RockSpire1", "category": "other", "x": 5866.5, "z": 3005.4, "px": 3049.2, "py": 2560.9, "has_dungeon": false, "has_important": false}, {"id": 8522, "name": "Mistlands_RockSpire1", "category": "other", "x": 4376.6, "z": 5640.6, "px": 2794.9, "py": 3010.7, "has_dungeon": false, "has_important": false}, {"id": 8523, "name": "Mistlands_RockSpire1", "category": "other", "x": 3654.7, "z": 6059.9, "px": 2671.7, "py": 3082.2, "has_dungeon": false, "has_important": false}, {"id": 8524, "name": "Mistlands_RockSpire1", "category": "other", "x": 4222.0, "z": -4999.9, "px": 2768.6, "py": 1194.7, "has_dungeon": false, "has_important": false}, {"id": 8525, "name": "Mistlands_RockSpire1", "category": "other", "x": 8723.0, "z": -855.5, "px": 3536.7, "py": 1902.0, "has_dungeon": false, "has_important": false}, {"id": 8526, "name": "Mistlands_RockSpire1", "category": "other", "x": 8133.4, "z": 2572.3, "px": 3436.1, "py": 2487.0, "has_dungeon": false, "has_important": false}, {"id": 8527, "name": "Mistlands_RockSpire1", "category": "other", "x": 5964.4, "z": 1931.2, "px": 3065.9, "py": 2377.6, "has_dungeon": false, "has_important": false}, {"id": 8528, "name": "Mistlands_RockSpire1", "category": "other", "x": 6671.4, "z": -117.1, "px": 3186.6, "py": 2028.0, "has_dungeon": false, "has_important": false}, {"id": 8529, "name": "Mistlands_RockSpire1", "category": "other", "x": 9219.8, "z": 1529.8, "px": 3621.5, "py": 2309.1, "has_dungeon": false, "has_important": false}, {"id": 8530, "name": "Mistlands_RockSpire1", "category": "other", "x": -3581.2, "z": 5395.3, "px": 1436.8, "py": 2968.8, "has_dungeon": false, "has_important": false}, {"id": 8531, "name": "Mistlands_RockSpire1", "category": "other", "x": 8020.5, "z": 2000.9, "px": 3416.8, "py": 2389.5, "has_dungeon": false, "has_important": false}, {"id": 8532, "name": "Mistlands_RockSpire1", "category": "other", "x": 2489.2, "z": -5901.2, "px": 2472.8, "py": 1040.9, "has_dungeon": false, "has_important": false}, {"id": 8533, "name": "Mistlands_RockSpire1", "category": "other", "x": 4314.9, "z": -5325.8, "px": 2784.4, "py": 1139.1, "has_dungeon": false, "has_important": false}, {"id": 8534, "name": "Mistlands_RockSpire1", "category": "other", "x": -1732.7, "z": -6973.8, "px": 1752.3, "py": 857.8, "has_dungeon": false, "has_important": false}, {"id": 8535, "name": "Mistlands_RockSpire1", "category": "other", "x": 1198.4, "z": -7086.7, "px": 2252.5, "py": 838.5, "has_dungeon": false, "has_important": false}, {"id": 8536, "name": "Mistlands_RockSpire1", "category": "other", "x": 5676.9, "z": 4228.7, "px": 3016.9, "py": 2769.7, "has_dungeon": false, "has_important": false}, {"id": 8537, "name": "Mistlands_RockSpire1", "category": "other", "x": -1808.3, "z": -6518.4, "px": 1739.4, "py": 935.5, "has_dungeon": false, "has_important": false}, {"id": 8538, "name": "Mistlands_RockSpire1", "category": "other", "x": 7451.0, "z": 73.9, "px": 3319.6, "py": 2060.6, "has_dungeon": false, "has_important": false}, {"id": 8539, "name": "Mistlands_RockSpire1", "category": "other", "x": -9303.3, "z": -2503.8, "px": 460.2, "py": 1620.7, "has_dungeon": false, "has_important": false}, {"id": 8540, "name": "Mistlands_RockSpire1", "category": "other", "x": -5744.5, "z": 3076.1, "px": 1067.6, "py": 2573.0, "has_dungeon": false, "has_important": false}, {"id": 8541, "name": "Mistlands_RockSpire1", "category": "other", "x": 4868.3, "z": -4018.4, "px": 2878.9, "py": 1362.2, "has_dungeon": false, "has_important": false}, {"id": 8542, "name": "Mistlands_RockSpire1", "category": "other", "x": 8111.4, "z": -3051.4, "px": 3432.3, "py": 1527.2, "has_dungeon": false, "has_important": false}, {"id": 8543, "name": "Mistlands_RockSpire1", "category": "other", "x": 788.0, "z": 6466.7, "px": 2182.5, "py": 3151.7, "has_dungeon": false, "has_important": false}, {"id": 8544, "name": "Mistlands_RockSpire1", "category": "other", "x": -5783.4, "z": 3577.4, "px": 1061.0, "py": 2658.5, "has_dungeon": false, "has_important": false}, {"id": 8545, "name": "Mistlands_RockSpire1", "category": "other", "x": 8900.5, "z": -1150.9, "px": 3567.0, "py": 1851.6, "has_dungeon": false, "has_important": false}, {"id": 8546, "name": "Mistlands_RockSpire1", "category": "other", "x": 8728.6, "z": -2669.5, "px": 3537.7, "py": 1592.4, "has_dungeon": false, "has_important": false}, {"id": 8547, "name": "Mistlands_RockSpire1", "category": "other", "x": 8598.1, "z": -1027.7, "px": 3515.4, "py": 1872.6, "has_dungeon": false, "has_important": false}, {"id": 8548, "name": "Mistlands_RockSpire1", "category": "other", "x": 3461.8, "z": -6524.4, "px": 2638.8, "py": 934.5, "has_dungeon": false, "has_important": false}, {"id": 8549, "name": "Mistlands_RockSpire1", "category": "other", "x": 2115.2, "z": -6608.8, "px": 2409.0, "py": 920.1, "has_dungeon": false, "has_important": false}, {"id": 8550, "name": "Mistlands_RockSpire1", "category": "other", "x": 2740.1, "z": 5750.0, "px": 2515.6, "py": 3029.3, "has_dungeon": false, "has_important": false}, {"id": 8551, "name": "Mistlands_RockSpire1", "category": "other", "x": -6506.7, "z": 2985.7, "px": 937.5, "py": 2557.6, "has_dungeon": false, "has_important": false}, {"id": 8552, "name": "Mistlands_RockSpire1", "category": "other", "x": -8467.8, "z": 1859.0, "px": 602.8, "py": 2365.3, "has_dungeon": false, "has_important": false}, {"id": 8553, "name": "Mistlands_RockSpire1", "category": "other", "x": -6583.0, "z": 850.9, "px": 924.5, "py": 2193.2, "has_dungeon": false, "has_important": false}, {"id": 8554, "name": "Mistlands_RockSpire1", "category": "other", "x": -4496.9, "z": -5463.8, "px": 1280.5, "py": 1115.5, "has_dungeon": false, "has_important": false}, {"id": 8555, "name": "Mistlands_RockSpire1", "category": "other", "x": -6331.6, "z": 3769.5, "px": 967.4, "py": 2691.3, "has_dungeon": false, "has_important": false}, {"id": 8556, "name": "Mistlands_RockSpire1", "category": "other", "x": -5362.6, "z": -4149.5, "px": 1132.8, "py": 1339.8, "has_dungeon": false, "has_important": false}, {"id": 8557, "name": "Mistlands_RockSpire1", "category": "other", "x": 9032.0, "z": 1914.5, "px": 3589.5, "py": 2374.7, "has_dungeon": false, "has_important": false}, {"id": 8558, "name": "Mistlands_RockSpire1", "category": "other", "x": -6310.7, "z": -3063.7, "px": 971.0, "py": 1525.1, "has_dungeon": false, "has_important": false}, {"id": 8559, "name": "Mistlands_RockSpire1", "category": "other", "x": 5781.7, "z": 4994.1, "px": 3034.7, "py": 2900.3, "has_dungeon": false, "has_important": false}, {"id": 8560, "name": "Mistlands_RockSpire1", "category": "other", "x": -5989.9, "z": -1526.8, "px": 1025.7, "py": 1787.4, "has_dungeon": false, "has_important": false}, {"id": 8561, "name": "Mistlands_RockSpire1", "category": "other", "x": -275.4, "z": -6520.0, "px": 2001.0, "py": 935.3, "has_dungeon": false, "has_important": false}, {"id": 8562, "name": "Mistlands_RockSpire1", "category": "other", "x": -7297.3, "z": -2858.2, "px": 802.6, "py": 1560.2, "has_dungeon": false, "has_important": false}, {"id": 8563, "name": "Mistlands_RockSpire1", "category": "other", "x": -2112.2, "z": -6730.2, "px": 1687.5, "py": 899.4, "has_dungeon": false, "has_important": false}, {"id": 8564, "name": "Mistlands_RockSpire1", "category": "other", "x": -6087.0, "z": 3004.5, "px": 1009.2, "py": 2560.8, "has_dungeon": false, "has_important": false}, {"id": 8565, "name": "Mistlands_RockSpire1", "category": "other", "x": -6255.6, "z": 5837.9, "px": 980.4, "py": 3044.3, "has_dungeon": false, "has_important": false}, {"id": 8566, "name": "Mistlands_RockSpire1", "category": "other", "x": -8752.4, "z": 1552.3, "px": 554.3, "py": 2312.9, "has_dungeon": false, "has_important": false}, {"id": 8567, "name": "Mistlands_RockSpire1", "category": "other", "x": -6446.5, "z": -3032.9, "px": 947.8, "py": 1530.4, "has_dungeon": false, "has_important": false}, {"id": 8568, "name": "Mistlands_RockSpire1", "category": "other", "x": 9614.6, "z": 432.1, "px": 3688.9, "py": 2121.7, "has_dungeon": false, "has_important": false}, {"id": 8569, "name": "Mistlands_RockSpire1", "category": "other", "x": 1255.4, "z": 6293.8, "px": 2262.3, "py": 3122.1, "has_dungeon": false, "has_important": false}, {"id": 8570, "name": "Mistlands_RockSpire1", "category": "other", "x": -8424.2, "z": 1554.0, "px": 610.3, "py": 2313.2, "has_dungeon": false, "has_important": false}, {"id": 8571, "name": "Mistlands_RockSpire1", "category": "other", "x": 4265.7, "z": -7095.6, "px": 2776.0, "py": 837.0, "has_dungeon": false, "has_important": false}, {"id": 8572, "name": "Mistlands_RockSpire1", "category": "other", "x": -2971.8, "z": -6123.3, "px": 1540.8, "py": 1003.0, "has_dungeon": false, "has_important": false}, {"id": 8573, "name": "Mistlands_RockSpire1", "category": "other", "x": -7620.2, "z": 2902.4, "px": 747.5, "py": 2543.3, "has_dungeon": false, "has_important": false}, {"id": 8574, "name": "Mistlands_RockSpire1", "category": "other", "x": 9203.4, "z": 1603.8, "px": 3618.7, "py": 2321.7, "has_dungeon": false, "has_important": false}, {"id": 8575, "name": "Mistlands_RockSpire1", "category": "other", "x": 4352.0, "z": -4325.0, "px": 2790.7, "py": 1309.9, "has_dungeon": false, "has_important": false}, {"id": 8576, "name": "Mistlands_RockSpire1", "category": "other", "x": -6130.6, "z": 3710.3, "px": 1001.7, "py": 2681.2, "has_dungeon": false, "has_important": false}, {"id": 8577, "name": "Mistlands_RockSpire1", "category": "other", "x": -7174.1, "z": -2947.0, "px": 823.6, "py": 1545.0, "has_dungeon": false, "has_important": false}, {"id": 8578, "name": "Mistlands_RockSpire1", "category": "other", "x": 4932.3, "z": 4370.9, "px": 2889.8, "py": 2794.0, "has_dungeon": false, "has_important": false}, {"id": 8579, "name": "Mistlands_RockSpire1", "category": "other", "x": 8054.3, "z": 1356.9, "px": 3422.6, "py": 2279.6, "has_dungeon": false, "has_important": false}, {"id": 8580, "name": "Mistlands_RockSpire1", "category": "other", "x": -6375.0, "z": 492.3, "px": 960.0, "py": 2132.0, "has_dungeon": false, "has_important": false}, {"id": 8581, "name": "Mistlands_RockSpire1", "category": "other", "x": 9774.9, "z": -571.9, "px": 3716.2, "py": 1950.4, "has_dungeon": false, "has_important": false}, {"id": 8582, "name": "Mistlands_RockSpire1", "category": "other", "x": 6134.2, "z": 2459.8, "px": 3094.9, "py": 2467.8, "has_dungeon": false, "has_important": false}, {"id": 8583, "name": "Mistlands_RockSpire1", "category": "other", "x": 7235.0, "z": 4269.5, "px": 3282.8, "py": 2776.7, "has_dungeon": false, "has_important": false}, {"id": 8584, "name": "Mistlands_RockSpire1", "category": "other", "x": 6148.7, "z": -1080.1, "px": 3097.4, "py": 1863.7, "has_dungeon": false, "has_important": false}, {"id": 8585, "name": "Mistlands_RockSpire1", "category": "other", "x": -1563.4, "z": -7292.6, "px": 1781.2, "py": 803.4, "has_dungeon": false, "has_important": false}, {"id": 8586, "name": "Mistlands_RockSpire1", "category": "other", "x": -842.8, "z": 6409.1, "px": 1904.2, "py": 3141.8, "has_dungeon": false, "has_important": false}, {"id": 8587, "name": "Mistlands_RockSpire1", "category": "other", "x": -5514.7, "z": -5607.9, "px": 1106.8, "py": 1090.9, "has_dungeon": false, "has_important": false}, {"id": 8588, "name": "Mistlands_RockSpire1", "category": "other", "x": 7726.5, "z": 2452.9, "px": 3366.7, "py": 2466.6, "has_dungeon": false, "has_important": false}, {"id": 8589, "name": "Mistlands_RockSpire1", "category": "other", "x": -6118.6, "z": -1170.2, "px": 1003.8, "py": 1848.3, "has_dungeon": false, "has_important": false}, {"id": 8590, "name": "Mistlands_RockSpire1", "category": "other", "x": -9297.1, "z": -848.4, "px": 461.3, "py": 1903.2, "has_dungeon": false, "has_important": false}, {"id": 8591, "name": "Mistlands_RockSpire1", "category": "other", "x": 7727.7, "z": -4290.8, "px": 3366.9, "py": 1315.7, "has_dungeon": false, "has_important": false}, {"id": 8592, "name": "Mistlands_RockSpire1", "category": "other", "x": 6993.7, "z": -5159.1, "px": 3241.6, "py": 1167.5, "has_dungeon": false, "has_important": false}, {"id": 8593, "name": "Mistlands_RockSpire1", "category": "other", "x": 2262.5, "z": -7013.2, "px": 2434.1, "py": 851.1, "has_dungeon": false, "has_important": false}, {"id": 8594, "name": "Mistlands_RockSpire1", "category": "other", "x": 7193.5, "z": 3592.3, "px": 3275.7, "py": 2661.1, "has_dungeon": false, "has_important": false}, {"id": 8595, "name": "Mistlands_RockSpire1", "category": "other", "x": 4870.3, "z": -3917.4, "px": 2879.2, "py": 1379.4, "has_dungeon": false, "has_important": false}, {"id": 8596, "name": "Mistlands_RockSpire1", "category": "other", "x": 7366.3, "z": 1945.8, "px": 3305.2, "py": 2380.1, "has_dungeon": false, "has_important": false}, {"id": 8597, "name": "Mistlands_RockSpire1", "category": "other", "x": 6712.2, "z": 1195.5, "px": 3193.5, "py": 2252.0, "has_dungeon": false, "has_important": false}, {"id": 8598, "name": "Mistlands_RockSpire1", "category": "other", "x": 358.4, "z": -7568.0, "px": 2109.2, "py": 756.4, "has_dungeon": false, "has_important": false}, {"id": 8599, "name": "Mistlands_RockSpire1", "category": "other", "x": 7595.9, "z": -4842.5, "px": 3344.4, "py": 1221.5, "has_dungeon": false, "has_important": false}, {"id": 8600, "name": "Mistlands_RockSpire1", "category": "other", "x": -9383.0, "z": 1175.6, "px": 446.6, "py": 2248.6, "has_dungeon": false, "has_important": false}, {"id": 8601, "name": "Mistlands_RockSpire1", "category": "other", "x": 6412.0, "z": 5136.7, "px": 3142.3, "py": 2924.7, "has_dungeon": false, "has_important": false}, {"id": 8602, "name": "Mistlands_RockSpire1", "category": "other", "x": 8966.5, "z": 584.3, "px": 3578.3, "py": 2147.7, "has_dungeon": false, "has_important": false}, {"id": 8603, "name": "Mistlands_RockSpire1", "category": "other", "x": -6034.8, "z": 3431.7, "px": 1018.1, "py": 2633.7, "has_dungeon": false, "has_important": false}, {"id": 8604, "name": "Mistlands_RockSpire1", "category": "other", "x": 7338.2, "z": -1994.4, "px": 3300.4, "py": 1707.6, "has_dungeon": false, "has_important": false}, {"id": 8605, "name": "Mistlands_RockSpire1", "category": "other", "x": -7177.0, "z": -1400.8, "px": 823.1, "py": 1808.9, "has_dungeon": false, "has_important": false}, {"id": 8606, "name": "Mistlands_RockSpire1", "category": "other", "x": -5899.8, "z": 2805.2, "px": 1041.1, "py": 2526.8, "has_dungeon": false, "has_important": false}, {"id": 8607, "name": "Mistlands_RockSpire1", "category": "other", "x": 3246.2, "z": 5617.2, "px": 2602.0, "py": 3006.7, "has_dungeon": false, "has_important": false}, {"id": 8608, "name": "Mistlands_RockSpire1", "category": "other", "x": 4281.5, "z": -4751.5, "px": 2778.7, "py": 1237.1, "has_dungeon": false, "has_important": false}, {"id": 8609, "name": "Mistlands_RockSpire1", "category": "other", "x": -7023.7, "z": -1917.7, "px": 849.3, "py": 1720.7, "has_dungeon": false, "has_important": false}, {"id": 8610, "name": "Mistlands_RockSpire1", "category": "other", "x": 520.3, "z": 6659.2, "px": 2136.8, "py": 3184.5, "has_dungeon": false, "has_important": false}, {"id": 8611, "name": "Mistlands_RockSpire1", "category": "other", "x": -5771.7, "z": 3226.9, "px": 1063.0, "py": 2598.7, "has_dungeon": false, "has_important": false}, {"id": 8612, "name": "Mistlands_RockSpire1", "category": "other", "x": 7515.4, "z": 129.1, "px": 3330.6, "py": 2070.0, "has_dungeon": false, "has_important": false}, {"id": 8613, "name": "Mistlands_RockSpire1", "category": "other", "x": -2982.9, "z": 6411.8, "px": 1538.9, "py": 3142.3, "has_dungeon": false, "has_important": false}, {"id": 8614, "name": "Mistlands_RockSpire1", "category": "other", "x": -7300.4, "z": 1225.6, "px": 802.1, "py": 2257.2, "has_dungeon": false, "has_important": false}, {"id": 8615, "name": "Mistlands_RockSpire1", "category": "other", "x": -6315.4, "z": 5233.9, "px": 970.2, "py": 2941.3, "has_dungeon": false, "has_important": false}, {"id": 8616, "name": "Mistlands_RockSpire1", "category": "other", "x": 4623.1, "z": -6636.3, "px": 2837.0, "py": 915.4, "has_dungeon": false, "has_important": false}, {"id": 8617, "name": "Mistlands_RockSpire1", "category": "other", "x": 7095.4, "z": 49.4, "px": 3258.9, "py": 2056.4, "has_dungeon": false, "has_important": false}, {"id": 8618, "name": "Mistlands_RockSpire1", "category": "other", "x": 6681.6, "z": 3544.2, "px": 3188.3, "py": 2652.9, "has_dungeon": false, "has_important": false}, {"id": 8619, "name": "Mistlands_RockSpire1", "category": "other", "x": -9511.0, "z": 1205.3, "px": 424.8, "py": 2253.7, "has_dungeon": false, "has_important": false}, {"id": 8620, "name": "Mistlands_RockSpire1", "category": "other", "x": 6132.9, "z": 2863.1, "px": 3094.7, "py": 2536.6, "has_dungeon": false, "has_important": false}, {"id": 8621, "name": "Mistlands_RockSpire1", "category": "other", "x": 7864.1, "z": 2237.6, "px": 3390.1, "py": 2429.9, "has_dungeon": false, "has_important": false}, {"id": 8622, "name": "Mistlands_RockSpire1", "category": "other", "x": 5924.6, "z": -4464.4, "px": 3059.1, "py": 1286.1, "has_dungeon": false, "has_important": false}, {"id": 8623, "name": "Mistlands_RockSpire1", "category": "other", "x": 3290.6, "z": 6628.0, "px": 2609.6, "py": 3179.2, "has_dungeon": false, "has_important": false}, {"id": 8624, "name": "Mistlands_RockSpire1", "category": "other", "x": -7064.9, "z": -957.8, "px": 842.3, "py": 1884.5, "has_dungeon": false, "has_important": false}, {"id": 8625, "name": "Mistlands_RockSpire1", "category": "other", "x": 4425.9, "z": 4394.2, "px": 2803.4, "py": 2797.9, "has_dungeon": false, "has_important": false}, {"id": 8626, "name": "Mistlands_RockSpire1", "category": "other", "x": -7158.8, "z": 2955.9, "px": 826.2, "py": 2552.5, "has_dungeon": false, "has_important": false}, {"id": 8627, "name": "Mistlands_RockSpire1", "category": "other", "x": -6279.5, "z": 492.2, "px": 976.3, "py": 2132.0, "has_dungeon": false, "has_important": false}, {"id": 8628, "name": "Mistlands_RockSpire1", "category": "other", "x": -2433.6, "z": -6733.3, "px": 1632.7, "py": 898.9, "has_dungeon": false, "has_important": false}, {"id": 8629, "name": "Mistlands_RockSpire1", "category": "other", "x": 120.5, "z": 6906.9, "px": 2068.6, "py": 3226.8, "has_dungeon": false, "has_important": false}, {"id": 8630, "name": "Mistlands_RockSpire1", "category": "other", "x": 4360.2, "z": -6888.9, "px": 2792.1, "py": 872.3, "has_dungeon": false, "has_important": false}, {"id": 8631, "name": "Mistlands_RockSpire1", "category": "other", "x": 6592.4, "z": -129.1, "px": 3173.1, "py": 2026.0, "has_dungeon": false, "has_important": false}, {"id": 8632, "name": "Mistlands_RockSpire1", "category": "other", "x": 8905.7, "z": -2996.9, "px": 3567.9, "py": 1536.5, "has_dungeon": false, "has_important": false}, {"id": 8633, "name": "Mistlands_RockSpire1", "category": "other", "x": 5254.7, "z": 3379.3, "px": 2944.8, "py": 2624.7, "has_dungeon": false, "has_important": false}, {"id": 8634, "name": "Mistlands_RockSpire1", "category": "other", "x": -9228.8, "z": -523.5, "px": 473.0, "py": 1958.7, "has_dungeon": false, "has_important": false}, {"id": 8635, "name": "Mistlands_RockSpire1", "category": "other", "x": -8018.7, "z": 4356.0, "px": 679.5, "py": 2791.4, "has_dungeon": false, "has_important": false}, {"id": 8636, "name": "Mistlands_RockSpire1", "category": "other", "x": 4566.8, "z": -6977.4, "px": 2827.4, "py": 857.2, "has_dungeon": false, "has_important": false}, {"id": 8637, "name": "Mistlands_RockSpire1", "category": "other", "x": 1470.8, "z": 5913.1, "px": 2299.0, "py": 3057.2, "has_dungeon": false, "has_important": false}, {"id": 8638, "name": "Mistlands_RockSpire1", "category": "other", "x": 7146.2, "z": 4169.9, "px": 3267.6, "py": 2759.7, "has_dungeon": false, "has_important": false}, {"id": 8639, "name": "Mistlands_RockSpire1", "category": "other", "x": -2026.3, "z": 7273.0, "px": 1702.2, "py": 3289.3, "has_dungeon": false, "has_important": false}, {"id": 8640, "name": "Mistlands_RockSpire1", "category": "other", "x": 8381.7, "z": -2938.3, "px": 3478.5, "py": 1546.5, "has_dungeon": false, "has_important": false}, {"id": 8641, "name": "Mistlands_RockSpire1", "category": "other", "x": -6897.0, "z": -1774.5, "px": 870.9, "py": 1745.2, "has_dungeon": false, "has_important": false}, {"id": 8642, "name": "Mistlands_RockSpire1", "category": "other", "x": -9513.8, "z": 2538.9, "px": 424.3, "py": 2481.3, "has_dungeon": false, "has_important": false}, {"id": 8643, "name": "Mistlands_RockSpire1", "category": "other", "x": 3571.4, "z": -6607.2, "px": 2657.5, "py": 920.4, "has_dungeon": false, "has_important": false}, {"id": 8644, "name": "Mistlands_RockSpire1", "category": "other", "x": -7515.7, "z": -3251.1, "px": 765.3, "py": 1493.1, "has_dungeon": false, "has_important": false}, {"id": 8645, "name": "Mistlands_RockSpire1", "category": "other", "x": -280.9, "z": -7865.9, "px": 2000.1, "py": 705.6, "has_dungeon": false, "has_important": false}, {"id": 8646, "name": "Mistlands_RockSpire1", "category": "other", "x": 2190.9, "z": -5832.0, "px": 2421.9, "py": 1052.7, "has_dungeon": false, "has_important": false}, {"id": 8647, "name": "Mistlands_RockSpire1", "category": "other", "x": 575.3, "z": 6726.8, "px": 2146.2, "py": 3196.0, "has_dungeon": false, "has_important": false}, {"id": 8648, "name": "Mistlands_RockSpire1", "category": "other", "x": 9413.8, "z": -2444.0, "px": 3654.6, "py": 1630.9, "has_dungeon": false, "has_important": false}, {"id": 8649, "name": "Mistlands_RockSpire1", "category": "other", "x": -9279.6, "z": 396.9, "px": 464.3, "py": 2115.7, "has_dungeon": false, "has_important": false}, {"id": 8650, "name": "Mistlands_RockSpire1", "category": "other", "x": 8294.9, "z": 1175.0, "px": 3463.7, "py": 2248.5, "has_dungeon": false, "has_important": false}, {"id": 8651, "name": "Mistlands_RockSpire1", "category": "other", "x": -8177.2, "z": -43.2, "px": 652.4, "py": 2040.6, "has_dungeon": false, "has_important": false}, {"id": 8652, "name": "Mistlands_RockSpire1", "category": "other", "x": 4744.4, "z": -4426.4, "px": 2857.7, "py": 1292.6, "has_dungeon": false, "has_important": false}, {"id": 8653, "name": "Mistlands_RockSpire1", "category": "other", "x": -6201.2, "z": 5745.2, "px": 989.7, "py": 3028.5, "has_dungeon": false, "has_important": false}, {"id": 8654, "name": "Mistlands_RockSpire1", "category": "other", "x": 3950.4, "z": -6410.2, "px": 2722.2, "py": 954.0, "has_dungeon": false, "has_important": false}, {"id": 8655, "name": "Mistlands_RockSpire1", "category": "other", "x": 8999.8, "z": -2089.4, "px": 3584.0, "py": 1691.4, "has_dungeon": false, "has_important": false}, {"id": 8656, "name": "Mistlands_RockSpire1", "category": "other", "x": 3705.8, "z": -6885.7, "px": 2680.5, "py": 872.8, "has_dungeon": false, "has_important": false}, {"id": 8657, "name": "Mistlands_RockSpire1", "category": "other", "x": -6184.9, "z": -5097.8, "px": 992.4, "py": 1178.0, "has_dungeon": false, "has_important": false}, {"id": 8658, "name": "Mistlands_RockSpire1", "category": "other", "x": -7443.4, "z": 900.0, "px": 777.7, "py": 2201.6, "has_dungeon": false, "has_important": false}, {"id": 8659, "name": "Mistlands_RockSpire1", "category": "other", "x": 5925.8, "z": 2868.1, "px": 3059.3, "py": 2537.5, "has_dungeon": false, "has_important": false}, {"id": 8660, "name": "Mistlands_RockSpire1", "category": "other", "x": -5460.7, "z": 5654.3, "px": 1116.0, "py": 3013.0, "has_dungeon": false, "has_important": false}, {"id": 8661, "name": "Mistlands_RockSpire1", "category": "other", "x": -8721.2, "z": -1389.0, "px": 559.6, "py": 1810.9, "has_dungeon": false, "has_important": false}, {"id": 8662, "name": "Mistlands_RockSpire1", "category": "other", "x": 4260.5, "z": 4852.2, "px": 2775.1, "py": 2876.1, "has_dungeon": false, "has_important": false}, {"id": 8663, "name": "Mistlands_RockSpire1", "category": "other", "x": -9608.6, "z": -872.4, "px": 408.1, "py": 1899.1, "has_dungeon": false, "has_important": false}, {"id": 8664, "name": "Mistlands_RockSpire1", "category": "other", "x": 8577.6, "z": -817.7, "px": 3511.9, "py": 1908.4, "has_dungeon": false, "has_important": false}, {"id": 8665, "name": "Mistlands_RockSpire1", "category": "other", "x": 3150.6, "z": 6845.5, "px": 2585.7, "py": 3216.3, "has_dungeon": false, "has_important": false}, {"id": 8666, "name": "Mistlands_RockSpire1", "category": "other", "x": 8059.4, "z": -1689.5, "px": 3423.5, "py": 1759.7, "has_dungeon": false, "has_important": false}, {"id": 8667, "name": "Mistlands_RockSpire1", "category": "other", "x": -7363.1, "z": 1359.5, "px": 791.4, "py": 2280.0, "has_dungeon": false, "has_important": false}, {"id": 8668, "name": "Mistlands_RockSpire1", "category": "other", "x": 7433.0, "z": -4980.1, "px": 3316.6, "py": 1198.1, "has_dungeon": false, "has_important": false}, {"id": 8669, "name": "Mistlands_RockSpire1", "category": "other", "x": 7657.0, "z": -4334.4, "px": 3354.8, "py": 1308.3, "has_dungeon": false, "has_important": false}, {"id": 8670, "name": "Mistlands_RockSpire1", "category": "other", "x": 3632.2, "z": -5695.2, "px": 2667.9, "py": 1076.0, "has_dungeon": false, "has_important": false}, {"id": 8671, "name": "Mistlands_RockSpire1", "category": "other", "x": -7381.1, "z": 2820.4, "px": 788.3, "py": 2529.3, "has_dungeon": false, "has_important": false}, {"id": 8672, "name": "Mistlands_RockSpire1", "category": "other", "x": -7428.2, "z": 1338.4, "px": 780.3, "py": 2276.4, "has_dungeon": false, "has_important": false}, {"id": 8673, "name": "Mistlands_RockSpire1", "category": "other", "x": -4427.6, "z": -6708.2, "px": 1292.4, "py": 903.1, "has_dungeon": false, "has_important": false}, {"id": 8674, "name": "Mistlands_RockSpire1", "category": "other", "x": -6287.1, "z": 4047.3, "px": 975.0, "py": 2738.7, "has_dungeon": false, "has_important": false}, {"id": 8675, "name": "Mistlands_RockSpire1", "category": "other", "x": 7816.4, "z": 3133.7, "px": 3382.0, "py": 2582.8, "has_dungeon": false, "has_important": false}, {"id": 8676, "name": "Mistlands_RockSpire1", "category": "other", "x": -6521.9, "z": 4840.1, "px": 934.9, "py": 2874.0, "has_dungeon": false, "has_important": false}, {"id": 8677, "name": "Mistlands_RockSpire1", "category": "other", "x": 9104.1, "z": -935.6, "px": 3601.8, "py": 1888.3, "has_dungeon": false, "has_important": false}, {"id": 8678, "name": "Mistlands_RockSpire1", "category": "other", "x": 1353.1, "z": 6195.2, "px": 2278.9, "py": 3105.3, "has_dungeon": false, "has_important": false}, {"id": 8679, "name": "Mistlands_RockSpire1", "category": "other", "x": 2382.0, "z": -6520.8, "px": 2454.5, "py": 935.1, "has_dungeon": false, "has_important": false}, {"id": 8680, "name": "Mistlands_RockSpire1", "category": "other", "x": -2166.0, "z": 6992.1, "px": 1678.3, "py": 3241.3, "has_dungeon": false, "has_important": false}, {"id": 8681, "name": "Mistlands_RockSpire1", "category": "other", "x": -5178.8, "z": 3156.0, "px": 1164.2, "py": 2586.6, "has_dungeon": false, "has_important": false}, {"id": 8682, "name": "Mistlands_RockSpire1", "category": "other", "x": -1321.5, "z": 7500.6, "px": 1822.5, "py": 3328.1, "has_dungeon": false, "has_important": false}, {"id": 8683, "name": "Mistlands_RockSpire1", "category": "other", "x": 2668.4, "z": 6517.7, "px": 2503.4, "py": 3160.4, "has_dungeon": false, "has_important": false}, {"id": 8684, "name": "Mistlands_RockSpire1", "category": "other", "x": -2873.3, "z": 6525.5, "px": 1557.6, "py": 3161.7, "has_dungeon": false, "has_important": false}, {"id": 8685, "name": "Mistlands_RockSpire1", "category": "other", "x": 9078.6, "z": -1582.7, "px": 3597.4, "py": 1777.9, "has_dungeon": false, "has_important": false}, {"id": 8686, "name": "Mistlands_RockSpire1", "category": "other", "x": -6318.1, "z": -1077.1, "px": 969.7, "py": 1864.2, "has_dungeon": false, "has_important": false}, {"id": 8687, "name": "Mistlands_RockSpire1", "category": "other", "x": -1909.7, "z": 6972.8, "px": 1722.1, "py": 3238.0, "has_dungeon": false, "has_important": false}, {"id": 8688, "name": "Mistlands_RockSpire1", "category": "other", "x": -8642.5, "z": 456.2, "px": 573.0, "py": 2125.9, "has_dungeon": false, "has_important": false}, {"id": 8689, "name": "Mistlands_RockSpire1", "category": "other", "x": -682.9, "z": -7570.5, "px": 1931.5, "py": 756.0, "has_dungeon": false, "has_important": false}, {"id": 8690, "name": "Mistlands_RockSpire1", "category": "other", "x": 6539.7, "z": 5338.8, "px": 3164.1, "py": 2959.2, "has_dungeon": false, "has_important": false}, {"id": 8691, "name": "Mistlands_RockSpire1", "category": "other", "x": -9448.8, "z": -1681.9, "px": 435.4, "py": 1761.0, "has_dungeon": false, "has_important": false}, {"id": 8692, "name": "Mistlands_RockSpire1", "category": "other", "x": -6839.3, "z": 4844.7, "px": 880.8, "py": 2874.8, "has_dungeon": false, "has_important": false}, {"id": 8693, "name": "Mistlands_RockSpire1", "category": "other", "x": -5171.9, "z": -3731.8, "px": 1165.3, "py": 1411.1, "has_dungeon": false, "has_important": false}, {"id": 8694, "name": "Mistlands_RockSpire1", "category": "other", "x": 5495.9, "z": 6389.8, "px": 2986.0, "py": 3138.5, "has_dungeon": false, "has_important": false}, {"id": 9395, "name": "Mistlands_Statue1", "category": "other", "x": 1660.4, "z": -6675.8, "px": 2331.4, "py": 908.7, "has_dungeon": false, "has_important": false}, {"id": 9396, "name": "Mistlands_Statue1", "category": "other", "x": -2218.8, "z": 5566.5, "px": 1669.3, "py": 2998.0, "has_dungeon": false, "has_important": false}, {"id": 9397, "name": "Mistlands_Statue1", "category": "other", "x": 7624.5, "z": 2898.6, "px": 3349.2, "py": 2542.7, "has_dungeon": false, "has_important": false}, {"id": 9398, "name": "Mistlands_Statue1", "category": "other", "x": 5717.2, "z": 6031.5, "px": 3023.7, "py": 3077.4, "has_dungeon": false, "has_important": false}, {"id": 9399, "name": "Mistlands_Statue1", "category": "other", "x": 8138.0, "z": 1992.5, "px": 3436.9, "py": 2388.1, "has_dungeon": false, "has_important": false}, {"id": 9400, "name": "Mistlands_Statue1", "category": "other", "x": 8393.4, "z": 2874.8, "px": 3480.5, "py": 2538.6, "has_dungeon": false, "has_important": false}, {"id": 9401, "name": "Mistlands_Statue1", "category": "other", "x": 5754.7, "z": -4337.2, "px": 3030.1, "py": 1307.8, "has_dungeon": false, "has_important": false}, {"id": 9402, "name": "Mistlands_Statue1", "category": "other", "x": -6129.1, "z": -1075.3, "px": 1002.0, "py": 1864.5, "has_dungeon": false, "has_important": false}, {"id": 9403, "name": "Mistlands_Statue1", "category": "other", "x": -82.4, "z": -7527.7, "px": 2033.9, "py": 763.3, "has_dungeon": false, "has_important": false}, {"id": 9404, "name": "Mistlands_Statue1", "category": "other", "x": 5498.4, "z": 5713.6, "px": 2986.4, "py": 3023.1, "has_dungeon": false, "has_important": false}, {"id": 9405, "name": "Mistlands_Statue1", "category": "other", "x": -7890.4, "z": -4669.3, "px": 701.4, "py": 1251.1, "has_dungeon": false, "has_important": false}, {"id": 9406, "name": "Mistlands_Statue1", "category": "other", "x": 7534.4, "z": -3563.2, "px": 3333.9, "py": 1439.9, "has_dungeon": false, "has_important": false}, {"id": 9407, "name": "Mistlands_Statue1", "category": "other", "x": -8550.9, "z": -444.1, "px": 588.6, "py": 1972.2, "has_dungeon": false, "has_important": false}, {"id": 9408, "name": "Mistlands_Statue1", "category": "other", "x": 4287.5, "z": -6923.8, "px": 2779.7, "py": 866.3, "has_dungeon": false, "has_important": false}, {"id": 9409, "name": "Mistlands_Statue1", "category": "other", "x": -6593.0, "z": -2874.1, "px": 922.8, "py": 1557.5, "has_dungeon": false, "has_important": false}, {"id": 9410, "name": "Mistlands_Statue1", "category": "other", "x": -9675.5, "z": 888.1, "px": 396.7, "py": 2199.6, "has_dungeon": false, "has_important": false}, {"id": 9411, "name": "Mistlands_Statue1", "category": "other", "x": -7546.4, "z": -452.7, "px": 760.1, "py": 1970.7, "has_dungeon": false, "has_important": false}, {"id": 9412, "name": "Mistlands_Statue1", "category": "other", "x": -8614.1, "z": -1593.0, "px": 577.9, "py": 1776.1, "has_dungeon": false, "has_important": false}, {"id": 9413, "name": "Mistlands_Statue1", "category": "other", "x": -2666.1, "z": -6633.1, "px": 1593.0, "py": 916.0, "has_dungeon": false, "has_important": false}, {"id": 9414, "name": "Mistlands_Statue1", "category": "other", "x": 7636.8, "z": 2161.1, "px": 3351.3, "py": 2416.8, "has_dungeon": false, "has_important": false}, {"id": 9415, "name": "Mistlands_Statue1", "category": "other", "x": 7563.2, "z": 1475.4, "px": 3338.8, "py": 2299.8, "has_dungeon": false, "has_important": false}, {"id": 9416, "name": "Mistlands_Statue1", "category": "other", "x": -7768.4, "z": 1472.8, "px": 722.2, "py": 2299.4, "has_dungeon": false, "has_important": false}, {"id": 9417, "name": "Mistlands_Statue1", "category": "other", "x": -7608.1, "z": 4490.0, "px": 749.6, "py": 2814.3, "has_dungeon": false, "has_important": false}, {"id": 9418, "name": "Mistlands_Statue1", "category": "other", "x": -1012.5, "z": -7804.8, "px": 1875.2, "py": 716.0, "has_dungeon": false, "has_important": false}, {"id": 9419, "name": "Mistlands_Statue1", "category": "other", "x": 6781.9, "z": -3564.2, "px": 3205.4, "py": 1439.7, "has_dungeon": false, "has_important": false}, {"id": 9420, "name": "Mistlands_Statue1", "category": "other", "x": -9331.6, "z": -624.3, "px": 455.4, "py": 1941.5, "has_dungeon": false, "has_important": false}, {"id": 9421, "name": "Mistlands_Statue1", "category": "other", "x": 9556.9, "z": 1682.6, "px": 3679.0, "py": 2335.2, "has_dungeon": false, "has_important": false}, {"id": 9422, "name": "Mistlands_Statue1", "category": "other", "x": 1467.5, "z": -6659.9, "px": 2298.5, "py": 911.4, "has_dungeon": false, "has_important": false}, {"id": 9423, "name": "Mistlands_Statue1", "category": "other", "x": 7254.6, "z": -5110.9, "px": 3286.1, "py": 1175.7, "has_dungeon": false, "has_important": false}, {"id": 9424, "name": "Mistlands_Statue1", "category": "other", "x": -109.7, "z": -6664.7, "px": 2029.3, "py": 910.6, "has_dungeon": false, "has_important": false}, {"id": 9425, "name": "Mistlands_Statue1", "category": "other", "x": 3987.3, "z": 6101.6, "px": 2728.5, "py": 3089.3, "has_dungeon": false, "has_important": false}, {"id": 9426, "name": "Mistlands_Statue1", "category": "other", "x": 9232.9, "z": 1931.3, "px": 3623.7, "py": 2377.6, "has_dungeon": false, "has_important": false}, {"id": 9427, "name": "Mistlands_Statue1", "category": "other", "x": -6518.6, "z": 1009.0, "px": 935.5, "py": 2220.2, "has_dungeon": false, "has_important": false}, {"id": 9428, "name": "Mistlands_Statue1", "category": "other", "x": 8840.1, "z": -1098.8, "px": 3556.7, "py": 1860.5, "has_dungeon": false, "has_important": false}, {"id": 9429, "name": "Mistlands_Statue1", "category": "other", "x": -8388.2, "z": 1983.3, "px": 616.4, "py": 2386.5, "has_dungeon": false, "has_important": false}, {"id": 9430, "name": "Mistlands_Statue1", "category": "other", "x": -8658.2, "z": 3584.1, "px": 570.3, "py": 2659.7, "has_dungeon": false, "has_important": false}, {"id": 9431, "name": "Mistlands_Statue1", "category": "other", "x": 8960.6, "z": 1537.5, "px": 3577.3, "py": 2310.4, "has_dungeon": false, "has_important": false}, {"id": 9432, "name": "Mistlands_Statue1", "category": "other", "x": -2158.5, "z": 7498.2, "px": 1679.6, "py": 3327.7, "has_dungeon": false, "has_important": false}, {"id": 9433, "name": "Mistlands_Statue1", "category": "other", "x": -6253.2, "z": -3149.8, "px": 980.8, "py": 1510.4, "has_dungeon": false, "has_important": false}, {"id": 9434, "name": "Mistlands_Statue1", "category": "other", "x": 2090.6, "z": -6084.8, "px": 2404.8, "py": 1009.5, "has_dungeon": false, "has_important": false}, {"id": 9435, "name": "Mistlands_Statue1", "category": "other", "x": 2477.4, "z": 7256.4, "px": 2470.8, "py": 3286.4, "has_dungeon": false, "has_important": false}, {"id": 9436, "name": "Mistlands_Statue1", "category": "other", "x": 4342.2, "z": 5708.8, "px": 2789.1, "py": 3022.3, "has_dungeon": false, "has_important": false}, {"id": 9437, "name": "Mistlands_Statue1", "category": "other", "x": -5223.2, "z": -4646.2, "px": 1156.6, "py": 1255.0, "has_dungeon": false, "has_important": false}, {"id": 9438, "name": "Mistlands_Statue1", "category": "other", "x": -2055.8, "z": 7117.4, "px": 1697.1, "py": 3262.7, "has_dungeon": false, "has_important": false}, {"id": 9439, "name": "Mistlands_Statue1", "category": "other", "x": 1032.1, "z": 6894.3, "px": 2224.1, "py": 3224.6, "has_dungeon": false, "has_important": false}, {"id": 9440, "name": "Mistlands_Statue1", "category": "other", "x": -8948.6, "z": 1420.3, "px": 520.8, "py": 2290.4, "has_dungeon": false, "has_important": false}, {"id": 9441, "name": "Mistlands_Statue1", "category": "other", "x": -380.9, "z": -7887.4, "px": 1983.0, "py": 701.9, "has_dungeon": false, "has_important": false}, {"id": 9442, "name": "Mistlands_Statue1", "category": "other", "x": 4728.4, "z": 4075.2, "px": 2855.0, "py": 2743.5, "has_dungeon": false, "has_important": false}, {"id": 9443, "name": "Mistlands_Statue1", "category": "other", "x": 4207.8, "z": 4972.9, "px": 2766.1, "py": 2896.7, "has_dungeon": false, "has_important": false}, {"id": 9444, "name": "Mistlands_Statue1", "category": "other", "x": 1999.8, "z": -7028.8, "px": 2389.3, "py": 848.4, "has_dungeon": false, "has_important": false}, {"id": 9445, "name": "Mistlands_Statue1", "category": "other", "x": 7298.7, "z": -3456.8, "px": 3293.6, "py": 1458.0, "has_dungeon": false, "has_important": false}, {"id": 9446, "name": "Mistlands_Statue1", "category": "other", "x": -778.3, "z": -7607.0, "px": 1915.2, "py": 749.7, "has_dungeon": false, "has_important": false}, {"id": 9447, "name": "Mistlands_Statue1", "category": "other", "x": 7187.0, "z": 375.6, "px": 3274.6, "py": 2112.1, "has_dungeon": false, "has_important": false}, {"id": 9448, "name": "Mistlands_Statue1", "category": "other", "x": 6669.2, "z": 2958.6, "px": 3186.2, "py": 2552.9, "has_dungeon": false, "has_important": false}, {"id": 9449, "name": "Mistlands_Statue1", "category": "other", "x": 7626.1, "z": -2483.1, "px": 3349.5, "py": 1624.2, "has_dungeon": false, "has_important": false}, {"id": 9450, "name": "Mistlands_Statue1", "category": "other", "x": -5267.5, "z": -4215.0, "px": 1149.0, "py": 1328.6, "has_dungeon": false, "has_important": false}, {"id": 9451, "name": "Mistlands_Statue1", "category": "other", "x": 6984.9, "z": -3140.0, "px": 3240.1, "py": 1512.1, "has_dungeon": false, "has_important": false}, {"id": 9452, "name": "Mistlands_Statue1", "category": "other", "x": 4751.5, "z": 4721.3, "px": 2858.9, "py": 2853.8, "has_dungeon": false, "has_important": false}, {"id": 9453, "name": "Mistlands_Statue1", "category": "other", "x": -6932.9, "z": 4082.1, "px": 864.8, "py": 2744.7, "has_dungeon": false, "has_important": false}, {"id": 9454, "name": "Mistlands_Statue1", "category": "other", "x": 3722.5, "z": 5885.2, "px": 2683.3, "py": 3052.4, "has_dungeon": false, "has_important": false}, {"id": 9455, "name": "Mistlands_Statue1", "category": "other", "x": -7104.8, "z": 3924.8, "px": 835.4, "py": 2717.8, "has_dungeon": false, "has_important": false}, {"id": 9456, "name": "Mistlands_Statue1", "category": "other", "x": -7726.1, "z": -1177.3, "px": 729.4, "py": 1847.1, "has_dungeon": false, "has_important": false}, {"id": 9457, "name": "Mistlands_Statue1", "category": "other", "x": 8461.2, "z": -1780.5, "px": 3492.0, "py": 1744.1, "has_dungeon": false, "has_important": false}, {"id": 9458, "name": "Mistlands_Statue1", "category": "other", "x": -8305.3, "z": -3565.3, "px": 630.6, "py": 1439.5, "has_dungeon": false, "has_important": false}, {"id": 9459, "name": "Mistlands_Statue1", "category": "other", "x": 7100.8, "z": -4696.9, "px": 3259.9, "py": 1246.4, "has_dungeon": false, "has_important": false}, {"id": 9460, "name": "Mistlands_Statue1", "category": "other", "x": -7337.8, "z": -3245.7, "px": 795.7, "py": 1494.1, "has_dungeon": false, "has_important": false}, {"id": 9461, "name": "Mistlands_Statue1", "category": "other", "x": 8269.6, "z": -961.9, "px": 3459.3, "py": 1883.8, "has_dungeon": false, "has_important": false}, {"id": 9462, "name": "Mistlands_Statue1", "category": "other", "x": 8451.9, "z": 443.8, "px": 3490.5, "py": 2123.7, "has_dungeon": false, "has_important": false}, {"id": 9463, "name": "Mistlands_Statue1", "category": "other", "x": 7663.0, "z": -4677.2, "px": 3355.8, "py": 1249.8, "has_dungeon": false, "has_important": false}, {"id": 9464, "name": "Mistlands_Statue1", "category": "other", "x": 6127.9, "z": 1918.2, "px": 3093.8, "py": 2375.4, "has_dungeon": false, "has_important": false}, {"id": 9465, "name": "Mistlands_Statue1", "category": "other", "x": -5493.5, "z": -6441.3, "px": 1110.4, "py": 948.7, "has_dungeon": false, "has_important": false}, {"id": 9466, "name": "Mistlands_Statue1", "category": "other", "x": -3761.7, "z": 6332.2, "px": 1406.0, "py": 3128.7, "has_dungeon": false, "has_important": false}, {"id": 9467, "name": "Mistlands_Statue1", "category": "other", "x": 9597.7, "z": -1135.7, "px": 3686.0, "py": 1854.2, "has_dungeon": false, "has_important": false}, {"id": 9468, "name": "Mistlands_Statue1", "category": "other", "x": 2743.8, "z": -5645.8, "px": 2516.3, "py": 1084.5, "has_dungeon": false, "has_important": false}, {"id": 9469, "name": "Mistlands_Statue1", "category": "other", "x": -7279.2, "z": 441.4, "px": 805.7, "py": 2123.3, "has_dungeon": false, "has_important": false}, {"id": 9470, "name": "Mistlands_Statue1", "category": "other", "x": -6980.6, "z": 1066.6, "px": 856.6, "py": 2230.0, "has_dungeon": false, "has_important": false}, {"id": 9471, "name": "Mistlands_Statue1", "category": "other", "x": 7803.1, "z": 366.2, "px": 3379.7, "py": 2110.5, "has_dungeon": false, "has_important": false}, {"id": 9472, "name": "Mistlands_Statue1", "category": "other", "x": -3219.7, "z": 6094.7, "px": 1498.5, "py": 3088.2, "has_dungeon": false, "has_important": false}, {"id": 9473, "name": "Mistlands_Statue1", "category": "other", "x": -8380.2, "z": 144.4, "px": 617.8, "py": 2072.6, "has_dungeon": false, "has_important": false}, {"id": 9474, "name": "Mistlands_Statue1", "category": "other", "x": 6791.9, "z": 5289.1, "px": 3207.2, "py": 2950.7, "has_dungeon": false, "has_important": false}, {"id": 9475, "name": "Mistlands_Statue1", "category": "other", "x": -7748.1, "z": -4691.3, "px": 725.7, "py": 1247.4, "has_dungeon": false, "has_important": false}, {"id": 9476, "name": "Mistlands_Statue1", "category": "other", "x": 6919.1, "z": 1702.5, "px": 3228.9, "py": 2338.6, "has_dungeon": false, "has_important": false}, {"id": 9477, "name": "Mistlands_Statue1", "category": "other", "x": -2381.8, "z": 7252.3, "px": 1641.5, "py": 3285.7, "has_dungeon": false, "has_important": false}, {"id": 9478, "name": "Mistlands_Statue1", "category": "other", "x": -2218.8, "z": 7442.7, "px": 1669.3, "py": 3318.2, "has_dungeon": false, "has_important": false}, {"id": 9479, "name": "Mistlands_Statue1", "category": "other", "x": 8508.0, "z": 770.0, "px": 3500.0, "py": 2179.4, "has_dungeon": false, "has_important": false}, {"id": 9480, "name": "Mistlands_Statue1", "category": "other", "x": 9560.2, "z": -1015.6, "px": 3679.6, "py": 1874.7, "has_dungeon": false, "has_important": false}, {"id": 9481, "name": "Mistlands_Statue1", "category": "other", "x": 8124.7, "z": -2892.6, "px": 3434.6, "py": 1554.3, "has_dungeon": false, "has_important": false}, {"id": 9482, "name": "Mistlands_Statue1", "category": "other", "x": -7380.8, "z": 3245.3, "px": 788.3, "py": 2601.9, "has_dungeon": false, "has_important": false}, {"id": 9483, "name": "Mistlands_Statue1", "category": "other", "x": -7299.5, "z": 1077.9, "px": 802.2, "py": 2232.0, "has_dungeon": false, "has_important": false}, {"id": 9484, "name": "Mistlands_Statue1", "category": "other", "x": -536.8, "z": -7098.3, "px": 1956.4, "py": 836.6, "has_dungeon": false, "has_important": false}, {"id": 9485, "name": "Mistlands_Statue1", "category": "other", "x": 9404.5, "z": -1913.6, "px": 3653.0, "py": 1721.4, "has_dungeon": false, "has_important": false}, {"id": 9486, "name": "Mistlands_Statue1", "category": "other", "x": 7334.3, "z": 2073.8, "px": 3299.7, "py": 2401.9, "has_dungeon": false, "has_important": false}, {"id": 9487, "name": "Mistlands_Statue1", "category": "other", "x": -9224.1, "z": -2285.3, "px": 473.8, "py": 1658.0, "has_dungeon": false, "has_important": false}, {"id": 9488, "name": "Mistlands_Statue1", "category": "other", "x": 9290.4, "z": 1917.1, "px": 3633.6, "py": 2375.2, "has_dungeon": false, "has_important": false}, {"id": 9489, "name": "Mistlands_Statue1", "category": "other", "x": 7179.1, "z": 3841.9, "px": 3273.2, "py": 2703.7, "has_dungeon": false, "has_important": false}, {"id": 9490, "name": "Mistlands_Statue1", "category": "other", "x": 2292.3, "z": -6340.5, "px": 2439.2, "py": 965.9, "has_dungeon": false, "has_important": false}, {"id": 9491, "name": "Mistlands_Statue1", "category": "other", "x": -493.0, "z": -6409.1, "px": 1963.9, "py": 954.2, "has_dungeon": false, "has_important": false}, {"id": 9492, "name": "Mistlands_Statue1", "category": "other", "x": 7310.0, "z": 4689.7, "px": 3295.6, "py": 2848.4, "has_dungeon": false, "has_important": false}, {"id": 9493, "name": "Mistlands_Statue1", "category": "other", "x": -9265.1, "z": -1287.0, "px": 466.8, "py": 1828.4, "has_dungeon": false, "has_important": false}, {"id": 9494, "name": "Mistlands_Statue1", "category": "other", "x": 3817.5, "z": -7055.8, "px": 2699.5, "py": 843.8, "has_dungeon": false, "has_important": false}, {"id": 9495, "name": "Mistlands_Statue1", "category": "other", "x": -4301.7, "z": 4270.3, "px": 1313.8, "py": 2776.8, "has_dungeon": false, "has_important": false}, {"id": 9496, "name": "Mistlands_Statue1", "category": "other", "x": 3789.7, "z": -5678.5, "px": 2694.8, "py": 1078.9, "has_dungeon": false, "has_important": false}, {"id": 9497, "name": "Mistlands_Statue1", "category": "other", "x": 5890.5, "z": 2375.4, "px": 3053.3, "py": 2453.4, "has_dungeon": false, "has_important": false}, {"id": 9498, "name": "Mistlands_Statue1", "category": "other", "x": -8210.8, "z": -3952.8, "px": 646.7, "py": 1373.4, "has_dungeon": false, "has_important": false}, {"id": 9499, "name": "Mistlands_Statue1", "category": "other", "x": 1321.7, "z": 7177.4, "px": 2273.6, "py": 3272.9, "has_dungeon": false, "has_important": false}, {"id": 9500, "name": "Mistlands_Statue1", "category": "other", "x": -8047.5, "z": -2.3, "px": 674.6, "py": 2047.6, "has_dungeon": false, "has_important": false}, {"id": 9501, "name": "Mistlands_Statue1", "category": "other", "x": 6845.5, "z": 1705.4, "px": 3216.3, "py": 2339.1, "has_dungeon": false, "has_important": false}, {"id": 9502, "name": "Mistlands_Statue1", "category": "other", "x": 1702.3, "z": -6696.2, "px": 2338.5, "py": 905.2, "has_dungeon": false, "has_important": false}, {"id": 9503, "name": "Mistlands_Statue1", "category": "other", "x": 8083.5, "z": 2951.8, "px": 3427.6, "py": 2551.8, "has_dungeon": false, "has_important": false}, {"id": 9504, "name": "Mistlands_Statue1", "category": "other", "x": -9521.7, "z": -726.0, "px": 423.0, "py": 1924.1, "has_dungeon": false, "has_important": false}, {"id": 9505, "name": "Mistlands_Statue1", "category": "other", "x": -1869.1, "z": 7527.7, "px": 1729.0, "py": 3332.7, "has_dungeon": false, "has_important": false}, {"id": 9506, "name": "Mistlands_Statue1", "category": "other", "x": 6120.7, "z": 5586.8, "px": 3092.6, "py": 3001.5, "has_dungeon": false, "has_important": false}, {"id": 9507, "name": "Mistlands_Statue1", "category": "other", "x": -816.6, "z": -7682.1, "px": 1908.6, "py": 736.9, "has_dungeon": false, "has_important": false}, {"id": 9508, "name": "Mistlands_Statue1", "category": "other", "x": 9134.5, "z": -2695.2, "px": 3607.0, "py": 1588.0, "has_dungeon": false, "has_important": false}, {"id": 9509, "name": "Mistlands_Statue1", "category": "other", "x": -7320.3, "z": 1446.0, "px": 798.7, "py": 2294.8, "has_dungeon": false, "has_important": false}, {"id": 9510, "name": "Mistlands_Statue1", "category": "other", "x": 2519.0, "z": 7376.4, "px": 2477.9, "py": 3306.9, "has_dungeon": false, "has_important": false}, {"id": 9511, "name": "Mistlands_Statue1", "category": "other", "x": -6919.2, "z": -1279.1, "px": 867.1, "py": 1829.7, "has_dungeon": false, "has_important": false}, {"id": 9512, "name": "Mistlands_Statue1", "category": "other", "x": 6674.1, "z": -5570.5, "px": 3187.0, "py": 1097.3, "has_dungeon": false, "has_important": false}, {"id": 9513, "name": "Mistlands_Statue1", "category": "other", "x": -7060.1, "z": -1875.9, "px": 843.1, "py": 1727.8, "has_dungeon": false, "has_important": false}, {"id": 9514, "name": "Mistlands_Statue1", "category": "other", "x": 5780.8, "z": -2110.3, "px": 3034.6, "py": 1687.8, "has_dungeon": false, "has_important": false}, {"id": 9515, "name": "Mistlands_Statue1", "category": "other", "x": -8655.5, "z": 614.2, "px": 570.8, "py": 2152.8, "has_dungeon": false, "has_important": false}, {"id": 9516, "name": "Mistlands_Statue1", "category": "other", "x": 6825.0, "z": 3519.9, "px": 3212.8, "py": 2648.7, "has_dungeon": false, "has_important": false}, {"id": 9517, "name": "Mistlands_Statue1", "category": "other", "x": 5828.7, "z": 2453.9, "px": 3042.8, "py": 2466.8, "has_dungeon": false, "has_important": false}, {"id": 9518, "name": "Mistlands_Statue1", "category": "other", "x": 6906.8, "z": -1106.0, "px": 3226.8, "py": 1859.2, "has_dungeon": false, "has_important": false}, {"id": 9519, "name": "Mistlands_Statue1", "category": "other", "x": -910.7, "z": -7439.2, "px": 1892.6, "py": 778.4, "has_dungeon": false, "has_important": false}, {"id": 9520, "name": "Mistlands_Statue1", "category": "other", "x": 2437.0, "z": -6984.6, "px": 2463.9, "py": 856.0, "has_dungeon": false, "has_important": false}, {"id": 9521, "name": "Mistlands_Statue1", "category": "other", "x": -7123.7, "z": -2904.8, "px": 832.2, "py": 1552.2, "has_dungeon": false, "has_important": false}, {"id": 9522, "name": "Mistlands_Statue1", "category": "other", "x": 9205.6, "z": 1295.1, "px": 3619.1, "py": 2269.0, "has_dungeon": false, "has_important": false}, {"id": 9523, "name": "Mistlands_Statue1", "category": "other", "x": -373.6, "z": -6253.4, "px": 1984.2, "py": 980.8, "has_dungeon": false, "has_important": false}, {"id": 9524, "name": "Mistlands_Statue1", "category": "other", "x": 2854.7, "z": 6660.3, "px": 2535.2, "py": 3184.7, "has_dungeon": false, "has_important": false}, {"id": 9525, "name": "Mistlands_Statue1", "category": "other", "x": 2501.7, "z": -6004.6, "px": 2475.0, "py": 1023.2, "has_dungeon": false, "has_important": false}, {"id": 9526, "name": "Mistlands_Statue1", "category": "other", "x": -428.4, "z": -6232.1, "px": 1974.9, "py": 984.4, "has_dungeon": false, "has_important": false}, {"id": 9527, "name": "Mistlands_Statue1", "category": "other", "x": -5032.6, "z": 4596.8, "px": 1189.1, "py": 2832.5, "has_dungeon": false, "has_important": false}, {"id": 9528, "name": "Mistlands_Statue1", "category": "other", "x": -6200.0, "z": -854.0, "px": 989.9, "py": 1902.3, "has_dungeon": false, "has_important": false}, {"id": 9529, "name": "Mistlands_Statue1", "category": "other", "x": 4279.9, "z": -4977.0, "px": 2778.4, "py": 1198.6, "has_dungeon": false, "has_important": false}, {"id": 9530, "name": "Mistlands_Statue1", "category": "other", "x": -8903.9, "z": 1772.4, "px": 528.4, "py": 2350.5, "has_dungeon": false, "has_important": false}, {"id": 9531, "name": "Mistlands_Statue1", "category": "other", "x": -4351.6, "z": -5649.5, "px": 1305.3, "py": 1083.8, "has_dungeon": false, "has_important": false}, {"id": 9532, "name": "Mistlands_Statue1", "category": "other", "x": 8768.6, "z": -3314.4, "px": 3544.5, "py": 1482.3, "has_dungeon": false, "has_important": false}, {"id": 9533, "name": "Mistlands_Statue1", "category": "other", "x": -7554.7, "z": -3287.5, "px": 758.7, "py": 1486.9, "has_dungeon": false, "has_important": false}, {"id": 9534, "name": "Mistlands_Statue1", "category": "other", "x": 9528.9, "z": -2392.0, "px": 3674.3, "py": 1639.8, "has_dungeon": false, "has_important": false}, {"id": 9535, "name": "Mistlands_Statue1", "category": "other", "x": -9155.1, "z": -81.6, "px": 485.5, "py": 2034.1, "has_dungeon": false, "has_important": false}, {"id": 9536, "name": "Mistlands_Statue1", "category": "other", "x": 3793.4, "z": -6122.6, "px": 2695.4, "py": 1003.1, "has_dungeon": false, "has_important": false}, {"id": 9537, "name": "Mistlands_Statue1", "category": "other", "x": -6451.3, "z": -3476.5, "px": 947.0, "py": 1454.7, "has_dungeon": false, "has_important": false}, {"id": 9538, "name": "Mistlands_Statue1", "category": "other", "x": -9137.6, "z": -702.7, "px": 488.5, "py": 1928.1, "has_dungeon": false, "has_important": false}, {"id": 9539, "name": "Mistlands_Statue1", "category": "other", "x": -8537.1, "z": 2223.8, "px": 591.0, "py": 2427.5, "has_dungeon": false, "has_important": false}, {"id": 9540, "name": "Mistlands_Statue1", "category": "other", "x": -7321.8, "z": 4564.9, "px": 798.4, "py": 2827.1, "has_dungeon": false, "has_important": false}, {"id": 9541, "name": "Mistlands_Statue1", "category": "other", "x": 1874.9, "z": -7029.6, "px": 2368.0, "py": 848.3, "has_dungeon": false, "has_important": false}, {"id": 9542, "name": "Mistlands_Statue1", "category": "other", "x": -8517.4, "z": 1211.7, "px": 594.4, "py": 2254.8, "has_dungeon": false, "has_important": false}, {"id": 9543, "name": "Mistlands_Statue1", "category": "other", "x": 4051.6, "z": -6317.0, "px": 2739.5, "py": 969.9, "has_dungeon": false, "has_important": false}, {"id": 9544, "name": "Mistlands_Statue1", "category": "other", "x": 8430.4, "z": 1164.1, "px": 3486.8, "py": 2246.7, "has_dungeon": false, "has_important": false}, {"id": 9545, "name": "Mistlands_Statue1", "category": "other", "x": 1929.5, "z": -5933.1, "px": 2377.3, "py": 1035.4, "has_dungeon": false, "has_important": false}, {"id": 9546, "name": "Mistlands_Statue1", "category": "other", "x": -9369.5, "z": -1876.3, "px": 448.9, "py": 1727.8, "has_dungeon": false, "has_important": false}, {"id": 9547, "name": "Mistlands_Statue1", "category": "other", "x": -5762.0, "z": -1913.3, "px": 1064.6, "py": 1721.5, "has_dungeon": false, "has_important": false}, {"id": 9548, "name": "Mistlands_Statue1", "category": "other", "x": -7566.8, "z": -3022.5, "px": 756.6, "py": 1532.2, "has_dungeon": false, "has_important": false}, {"id": 9549, "name": "Mistlands_Statue1", "category": "other", "x": 4082.8, "z": -5829.4, "px": 2744.8, "py": 1053.1, "has_dungeon": false, "has_important": false}, {"id": 9550, "name": "Mistlands_Statue1", "category": "other", "x": 7669.1, "z": -147.3, "px": 3356.9, "py": 2022.9, "has_dungeon": false, "has_important": false}, {"id": 9551, "name": "Mistlands_Statue1", "category": "other", "x": 9704.2, "z": -2008.4, "px": 3704.2, "py": 1705.2, "has_dungeon": false, "has_important": false}, {"id": 9552, "name": "Mistlands_Statue1", "category": "other", "x": -4334.2, "z": 4471.1, "px": 1308.3, "py": 2811.1, "has_dungeon": false, "has_important": false}, {"id": 9553, "name": "Mistlands_Statue1", "category": "other", "x": 9401.9, "z": -1525.7, "px": 3652.6, "py": 1787.6, "has_dungeon": false, "has_important": false}, {"id": 9554, "name": "Mistlands_Statue1", "category": "other", "x": 4743.7, "z": 6205.0, "px": 2857.6, "py": 3107.0, "has_dungeon": false, "has_important": false}, {"id": 9555, "name": "Mistlands_Statue1", "category": "other", "x": 8945.7, "z": -3517.6, "px": 3574.7, "py": 1447.7, "has_dungeon": false, "has_important": false}, {"id": 9556, "name": "Mistlands_Statue1", "category": "other", "x": 7145.9, "z": -3769.8, "px": 3267.6, "py": 1404.6, "has_dungeon": false, "has_important": false}, {"id": 9557, "name": "Mistlands_Statue1", "category": "other", "x": 3915.3, "z": -6606.4, "px": 2716.2, "py": 920.5, "has_dungeon": false, "has_important": false}, {"id": 9558, "name": "Mistlands_Statue1", "category": "other", "x": -8170.3, "z": 2345.0, "px": 653.6, "py": 2448.2, "has_dungeon": false, "has_important": false}, {"id": 9559, "name": "Mistlands_Statue1", "category": "other", "x": -5624.8, "z": -3126.7, "px": 1088.0, "py": 1514.4, "has_dungeon": false, "has_important": false}, {"id": 9560, "name": "Mistlands_Statue1", "category": "other", "x": -2744.6, "z": 7048.3, "px": 1579.6, "py": 3250.9, "has_dungeon": false, "has_important": false}, {"id": 9561, "name": "Mistlands_Statue1", "category": "other", "x": 6613.2, "z": 2672.5, "px": 3176.7, "py": 2504.1, "has_dungeon": false, "has_important": false}, {"id": 9562, "name": "Mistlands_Statue1", "category": "other", "x": 9284.5, "z": -1541.7, "px": 3632.6, "py": 1784.9, "has_dungeon": false, "has_important": false}, {"id": 9563, "name": "Mistlands_Statue1", "category": "other", "x": 7955.7, "z": -1671.8, "px": 3405.8, "py": 1762.7, "has_dungeon": false, "has_important": false}, {"id": 9564, "name": "Mistlands_Statue1", "category": "other", "x": -1781.5, "z": -5752.4, "px": 1744.0, "py": 1066.3, "has_dungeon": false, "has_important": false}, {"id": 9565, "name": "Mistlands_Statue1", "category": "other", "x": -7503.1, "z": -3197.7, "px": 767.5, "py": 1502.3, "has_dungeon": false, "has_important": false}, {"id": 9566, "name": "Mistlands_Statue1", "category": "other", "x": 6082.7, "z": 3032.2, "px": 3086.1, "py": 2565.5, "has_dungeon": false, "has_important": false}, {"id": 9567, "name": "Mistlands_Statue1", "category": "other", "x": 8263.0, "z": -567.1, "px": 3458.2, "py": 1951.2, "has_dungeon": false, "has_important": false}, {"id": 9568, "name": "Mistlands_Statue1", "category": "other", "x": -3921.4, "z": -5456.4, "px": 1378.7, "py": 1116.8, "has_dungeon": false, "has_important": false}, {"id": 9569, "name": "Mistlands_Statue1", "category": "other", "x": 1044.5, "z": -5975.3, "px": 2226.3, "py": 1028.2, "has_dungeon": false, "has_important": false}, {"id": 9570, "name": "Mistlands_Statue1", "category": "other", "x": -9108.8, "z": -1040.6, "px": 493.4, "py": 1870.4, "has_dungeon": false, "has_important": false}, {"id": 9571, "name": "Mistlands_Statue1", "category": "other", "x": -7367.5, "z": -2800.3, "px": 790.6, "py": 1570.1, "has_dungeon": false, "has_important": false}, {"id": 9572, "name": "Mistlands_Statue1", "category": "other", "x": 1088.6, "z": -7601.7, "px": 2233.8, "py": 750.6, "has_dungeon": false, "has_important": false}, {"id": 9573, "name": "Mistlands_Statue1", "category": "other", "x": 8711.0, "z": 1157.3, "px": 3534.7, "py": 2245.5, "has_dungeon": false, "has_important": false}, {"id": 9574, "name": "Mistlands_Statue1", "category": "other", "x": -9657.3, "z": -1786.9, "px": 399.8, "py": 1743.0, "has_dungeon": false, "has_important": false}, {"id": 9575, "name": "Mistlands_Statue1", "category": "other", "x": -7275.4, "z": -1528.1, "px": 806.3, "py": 1787.2, "has_dungeon": false, "has_important": false}, {"id": 9576, "name": "Mistlands_Statue1", "category": "other", "x": -5427.7, "z": 4505.8, "px": 1121.7, "py": 2817.0, "has_dungeon": false, "has_important": false}, {"id": 9577, "name": "Mistlands_Statue1", "category": "other", "x": 4351.6, "z": 5814.1, "px": 2790.7, "py": 3040.3, "has_dungeon": false, "has_important": false}, {"id": 9578, "name": "Mistlands_Statue1", "category": "other", "x": -7916.2, "z": -2891.6, "px": 697.0, "py": 1554.5, "has_dungeon": false, "has_important": false}, {"id": 9579, "name": "Mistlands_Statue1", "category": "other", "x": -7052.0, "z": -1133.2, "px": 844.5, "py": 1854.6, "has_dungeon": false, "has_important": false}, {"id": 9580, "name": "Mistlands_Statue1", "category": "other", "x": -5071.8, "z": -3597.3, "px": 1182.4, "py": 1434.1, "has_dungeon": false, "has_important": false}, {"id": 9581, "name": "Mistlands_Statue1", "category": "other", "x": 4077.8, "z": -5445.0, "px": 2743.9, "py": 1118.7, "has_dungeon": false, "has_important": false}, {"id": 9582, "name": "Mistlands_Statue1", "category": "other", "x": 8889.7, "z": -3124.6, "px": 3565.2, "py": 1514.7, "has_dungeon": false, "has_important": false}, {"id": 9583, "name": "Mistlands_Statue1", "category": "other", "x": 196.1, "z": -7240.0, "px": 2081.5, "py": 812.4, "has_dungeon": false, "has_important": false}, {"id": 9584, "name": "Mistlands_Statue1", "category": "other", "x": 2695.9, "z": 6009.7, "px": 2508.1, "py": 3073.7, "has_dungeon": false, "has_important": false}, {"id": 9585, "name": "Mistlands_Statue1", "category": "other", "x": -9066.7, "z": 1362.6, "px": 500.6, "py": 2280.6, "has_dungeon": false, "has_important": false}, {"id": 9586, "name": "Mistlands_Statue1", "category": "other", "x": 1350.6, "z": 5800.8, "px": 2278.5, "py": 3038.0, "has_dungeon": false, "has_important": false}, {"id": 9587, "name": "Mistlands_Statue1", "category": "other", "x": 6159.3, "z": 3266.7, "px": 3099.2, "py": 2605.5, "has_dungeon": false, "has_important": false}, {"id": 9588, "name": "Mistlands_Statue1", "category": "other", "x": 6321.2, "z": 5032.2, "px": 3126.8, "py": 2906.8, "has_dungeon": false, "has_important": false}, {"id": 9589, "name": "Mistlands_Statue1", "category": "other", "x": -1920.2, "z": -5706.8, "px": 1720.3, "py": 1074.0, "has_dungeon": false, "has_important": false}, {"id": 9590, "name": "Mistlands_Statue1", "category": "other", "x": 5672.3, "z": -5518.1, "px": 3016.1, "py": 1106.2, "has_dungeon": false, "has_important": false}, {"id": 9591, "name": "Mistlands_Statue1", "category": "other", "x": 7793.1, "z": -2061.5, "px": 3378.0, "py": 1696.2, "has_dungeon": false, "has_important": false}, {"id": 9592, "name": "Mistlands_Statue1", "category": "other", "x": -7078.6, "z": 1474.8, "px": 839.9, "py": 2299.7, "has_dungeon": false, "has_important": false}, {"id": 9593, "name": "Mistlands_Statue1", "category": "other", "x": -7404.2, "z": 2868.2, "px": 784.3, "py": 2537.5, "has_dungeon": false, "has_important": false}, {"id": 9594, "name": "Mistlands_Statue1", "category": "other", "x": -9284.3, "z": -133.8, "px": 463.5, "py": 2025.2, "has_dungeon": false, "has_important": false}, {"id": 9595, "name": "Mistlands_Statue2", "category": "other", "x": 7811.5, "z": 473.7, "px": 3381.2, "py": 2128.8, "has_dungeon": false, "has_important": false}, {"id": 9596, "name": "Mistlands_Statue2", "category": "other", "x": -5870.1, "z": 3146.7, "px": 1046.2, "py": 2585.0, "has_dungeon": false, "has_important": false}, {"id": 9597, "name": "Mistlands_Statue2", "category": "other", "x": 8950.7, "z": 532.3, "px": 3575.6, "py": 2138.8, "has_dungeon": false, "has_important": false}, {"id": 9598, "name": "Mistlands_Statue2", "category": "other", "x": 3328.0, "z": -6894.7, "px": 2616.0, "py": 871.3, "has_dungeon": false, "has_important": false}, {"id": 9599, "name": "Mistlands_Statue2", "category": "other", "x": 4139.1, "z": -5359.5, "px": 2754.4, "py": 1133.3, "has_dungeon": false, "has_important": false}, {"id": 9600, "name": "Mistlands_Statue2", "category": "other", "x": -6040.2, "z": -5735.8, "px": 1017.1, "py": 1069.1, "has_dungeon": false, "has_important": false}, {"id": 9601, "name": "Mistlands_Statue2", "category": "other", "x": 5957.2, "z": 5232.7, "px": 3064.7, "py": 2941.0, "has_dungeon": false, "has_important": false}, {"id": 9602, "name": "Mistlands_Statue2", "category": "other", "x": -8623.1, "z": -1517.2, "px": 576.3, "py": 1789.1, "has_dungeon": false, "has_important": false}, {"id": 9603, "name": "Mistlands_Statue2", "category": "other", "x": 9545.1, "z": -2292.9, "px": 3677.0, "py": 1656.7, "has_dungeon": false, "has_important": false}, {"id": 9604, "name": "Mistlands_Statue2", "category": "other", "x": 5842.1, "z": -1255.6, "px": 3045.1, "py": 1833.7, "has_dungeon": false, "has_important": false}, {"id": 9605, "name": "Mistlands_Statue2", "category": "other", "x": -873.6, "z": 6411.5, "px": 1898.9, "py": 3142.2, "has_dungeon": false, "has_important": false}, {"id": 9606, "name": "Mistlands_Statue2", "category": "other", "x": -1733.3, "z": 6538.3, "px": 1752.2, "py": 3163.9, "has_dungeon": false, "has_important": false}, {"id": 9607, "name": "Mistlands_Statue2", "category": "other", "x": -2737.9, "z": -6760.7, "px": 1580.7, "py": 894.2, "has_dungeon": false, "has_important": false}, {"id": 9608, "name": "Mistlands_Statue2", "category": "other", "x": -7411.6, "z": -1450.9, "px": 783.1, "py": 1800.4, "has_dungeon": false, "has_important": false}, {"id": 9609, "name": "Mistlands_Statue2", "category": "other", "x": -5245.9, "z": 2891.4, "px": 1152.7, "py": 2541.5, "has_dungeon": false, "has_important": false}, {"id": 9610, "name": "Mistlands_Statue2", "category": "other", "x": 8694.4, "z": -468.9, "px": 3531.8, "py": 1968.0, "has_dungeon": false, "has_important": false}, {"id": 9611, "name": "Mistlands_Statue2", "category": "other", "x": -6332.4, "z": 2500.5, "px": 967.3, "py": 2474.8, "has_dungeon": false, "has_important": false}, {"id": 9612, "name": "Mistlands_Statue2", "category": "other", "x": 8058.9, "z": 2489.6, "px": 3423.4, "py": 2472.9, "has_dungeon": false, "has_important": false}, {"id": 9613, "name": "Mistlands_Statue2", "category": "other", "x": -7633.9, "z": 4418.0, "px": 745.1, "py": 2802.0, "has_dungeon": false, "has_important": false}, {"id": 9614, "name": "Mistlands_Statue2", "category": "other", "x": -2426.4, "z": -5957.0, "px": 1633.9, "py": 1031.3, "has_dungeon": false, "has_important": false}, {"id": 9615, "name": "Mistlands_Statue2", "category": "other", "x": 3920.4, "z": 6219.6, "px": 2717.1, "py": 3109.5, "has_dungeon": false, "has_important": false}, {"id": 9616, "name": "Mistlands_Statue2", "category": "other", "x": 3605.1, "z": -5764.4, "px": 2663.3, "py": 1064.2, "has_dungeon": false, "has_important": false}, {"id": 9617, "name": "Mistlands_Statue2", "category": "other", "x": 2877.6, "z": 6977.7, "px": 2539.1, "py": 3238.9, "has_dungeon": false, "has_important": false}, {"id": 9618, "name": "Mistlands_Statue2", "category": "other", "x": 6040.8, "z": -1201.3, "px": 3079.0, "py": 1843.0, "has_dungeon": false, "has_important": false}, {"id": 9619, "name": "Mistlands_Statue2", "category": "other", "x": 1233.6, "z": 7351.2, "px": 2258.5, "py": 3302.6, "has_dungeon": false, "has_important": false}, {"id": 9620, "name": "Mistlands_Statue2", "category": "other", "x": -7535.1, "z": 4618.8, "px": 762.0, "py": 2836.3, "has_dungeon": false, "has_important": false}, {"id": 9621, "name": "Mistlands_Statue2", "category": "other", "x": 8956.6, "z": -3049.5, "px": 3576.6, "py": 1527.6, "has_dungeon": false, "has_important": false}, {"id": 9622, "name": "Mistlands_Statue2", "category": "other", "x": -8703.3, "z": -1678.4, "px": 562.6, "py": 1761.6, "has_dungeon": false, "has_important": false}, {"id": 9623, "name": "Mistlands_Statue2", "category": "other", "x": -1768.4, "z": -6012.5, "px": 1746.2, "py": 1021.9, "has_dungeon": false, "has_important": false}, {"id": 9624, "name": "Mistlands_Statue2", "category": "other", "x": -2834.1, "z": 6449.3, "px": 1564.3, "py": 3148.7, "has_dungeon": false, "has_important": false}, {"id": 9625, "name": "Mistlands_Statue2", "category": "other", "x": 5932.6, "z": 3688.2, "px": 3060.5, "py": 2677.5, "has_dungeon": false, "has_important": false}, {"id": 9626, "name": "Mistlands_Statue2", "category": "other", "x": 5849.4, "z": 1647.9, "px": 3046.3, "py": 2329.2, "has_dungeon": false, "has_important": false}, {"id": 9627, "name": "Mistlands_Statue2", "category": "other", "x": -9715.1, "z": -832.8, "px": 390.0, "py": 1905.9, "has_dungeon": false, "has_important": false}, {"id": 9628, "name": "Mistlands_Statue2", "category": "other", "x": -5910.3, "z": 1390.4, "px": 1039.3, "py": 2285.3, "has_dungeon": false, "has_important": false}, {"id": 9629, "name": "Mistlands_Statue2", "category": "other", "x": -8956.0, "z": 1521.4, "px": 519.5, "py": 2307.7, "has_dungeon": false, "has_important": false}, {"id": 9630, "name": "Mistlands_Statue2", "category": "other", "x": 8139.4, "z": 1231.4, "px": 3437.1, "py": 2258.2, "has_dungeon": false, "has_important": false}, {"id": 9631, "name": "Mistlands_Statue2", "category": "other", "x": -5074.5, "z": -3630.0, "px": 1182.0, "py": 1428.5, "has_dungeon": false, "has_important": false}, {"id": 9632, "name": "Mistlands_Statue2", "category": "other", "x": -6312.3, "z": 5542.1, "px": 970.7, "py": 2993.9, "has_dungeon": false, "has_important": false}, {"id": 9633, "name": "Mistlands_Statue2", "category": "other", "x": 8209.1, "z": -1810.5, "px": 3449.0, "py": 1739.0, "has_dungeon": false, "has_important": false}, {"id": 9634, "name": "Mistlands_Statue2", "category": "other", "x": -5350.1, "z": -5631.5, "px": 1134.9, "py": 1086.9, "has_dungeon": false, "has_important": false}, {"id": 9635, "name": "Mistlands_Statue2", "category": "other", "x": 5750.8, "z": -2380.1, "px": 3029.5, "py": 1641.8, "has_dungeon": false, "has_important": false}, {"id": 9636, "name": "Mistlands_Statue2", "category": "other", "x": -8657.2, "z": 1466.6, "px": 570.5, "py": 2298.3, "has_dungeon": false, "has_important": false}, {"id": 9637, "name": "Mistlands_Statue2", "category": "other", "x": -249.8, "z": -7532.2, "px": 2005.4, "py": 762.5, "has_dungeon": false, "has_important": false}, {"id": 9638, "name": "Mistlands_Statue2", "category": "other", "x": 4789.3, "z": 4242.2, "px": 2865.4, "py": 2772.0, "has_dungeon": false, "has_important": false}, {"id": 9639, "name": "Mistlands_Statue2", "category": "other", "x": -6544.9, "z": 512.3, "px": 931.0, "py": 2135.4, "has_dungeon": false, "has_important": false}, {"id": 9640, "name": "Mistlands_Statue2", "category": "other", "x": -973.0, "z": 6543.3, "px": 1881.9, "py": 3164.7, "has_dungeon": false, "has_important": false}, {"id": 9641, "name": "Mistlands_Statue2", "category": "other", "x": 1487.3, "z": 6120.6, "px": 2301.8, "py": 3092.6, "has_dungeon": false, "has_important": false}, {"id": 9642, "name": "Mistlands_Statue2", "category": "other", "x": -7654.6, "z": -891.8, "px": 741.6, "py": 1895.8, "has_dungeon": false, "has_important": false}, {"id": 9643, "name": "Mistlands_Statue2", "category": "other", "x": 1324.5, "z": 7655.7, "px": 2274.0, "py": 3354.6, "has_dungeon": false, "has_important": false}, {"id": 9644, "name": "Mistlands_Statue2", "category": "other", "x": 9145.4, "z": 1357.0, "px": 3608.8, "py": 2279.6, "has_dungeon": false, "has_important": false}, {"id": 9645, "name": "Mistlands_Statue2", "category": "other", "x": -3827.2, "z": 5958.3, "px": 1394.8, "py": 3064.9, "has_dungeon": false, "has_important": false}, {"id": 9646, "name": "Mistlands_Statue2", "category": "other", "x": 7149.5, "z": 314.2, "px": 3268.2, "py": 2101.6, "has_dungeon": false, "has_important": false}, {"id": 9647, "name": "Mistlands_Statue2", "category": "other", "x": -9364.8, "z": 712.8, "px": 449.7, "py": 2169.7, "has_dungeon": false, "has_important": false}, {"id": 9648, "name": "Mistlands_Statue2", "category": "other", "x": -8661.2, "z": 2288.8, "px": 569.8, "py": 2438.6, "has_dungeon": false, "has_important": false}, {"id": 9649, "name": "Mistlands_Statue2", "category": "other", "x": 8001.1, "z": 2614.2, "px": 3413.5, "py": 2494.2, "has_dungeon": false, "has_important": false}, {"id": 9650, "name": "Mistlands_Statue2", "category": "other", "x": -6380.6, "z": 3952.5, "px": 959.0, "py": 2722.6, "has_dungeon": false, "has_important": false}, {"id": 9651, "name": "Mistlands_Statue2", "category": "other", "x": -7285.6, "z": 825.9, "px": 804.6, "py": 2189.0, "has_dungeon": false, "has_important": false}, {"id": 9652, "name": "Mistlands_Statue2", "category": "other", "x": 6912.0, "z": -3094.7, "px": 3227.6, "py": 1519.8, "has_dungeon": false, "has_important": false}, {"id": 9653, "name": "Mistlands_Statue2", "category": "other", "x": 7758.4, "z": 3189.1, "px": 3372.1, "py": 2592.3, "has_dungeon": false, "has_important": false}, {"id": 9654, "name": "Mistlands_Statue2", "category": "other", "x": -8341.0, "z": 2377.7, "px": 624.5, "py": 2453.8, "has_dungeon": false, "has_important": false}, {"id": 9655, "name": "Mistlands_Statue2", "category": "other", "x": -1612.8, "z": -6963.1, "px": 1772.7, "py": 859.6, "has_dungeon": false, "has_important": false}, {"id": 9656, "name": "Mistlands_Statue2", "category": "other", "x": 3414.9, "z": 5871.1, "px": 2630.8, "py": 3050.0, "has_dungeon": false, "has_important": false}, {"id": 9657, "name": "Mistlands_Statue2", "category": "other", "x": -3990.3, "z": 5306.7, "px": 1367.0, "py": 2953.7, "has_dungeon": false, "has_important": false}, {"id": 9658, "name": "Mistlands_Statue2", "category": "other", "x": -7539.0, "z": -408.5, "px": 761.3, "py": 1978.3, "has_dungeon": false, "has_important": false}, {"id": 9659, "name": "Mistlands_Statue2", "category": "other", "x": -7849.7, "z": -3081.9, "px": 708.3, "py": 1522.0, "has_dungeon": false, "has_important": false}, {"id": 9660, "name": "Mistlands_Statue2", "category": "other", "x": -7288.1, "z": -1321.0, "px": 804.2, "py": 1822.5, "has_dungeon": false, "has_important": false}, {"id": 9661, "name": "Mistlands_Statue2", "category": "other", "x": 3446.5, "z": -6844.2, "px": 2636.2, "py": 879.9, "has_dungeon": false, "has_important": false}, {"id": 9662, "name": "Mistlands_Statue2", "category": "other", "x": 7279.3, "z": -830.4, "px": 3290.3, "py": 1906.3, "has_dungeon": false, "has_important": false}, {"id": 9663, "name": "Mistlands_Statue2", "category": "other", "x": 8836.9, "z": 892.8, "px": 3556.2, "py": 2200.4, "has_dungeon": false, "has_important": false}, {"id": 9664, "name": "Mistlands_Statue2", "category": "other", "x": -6659.5, "z": 5715.9, "px": 911.4, "py": 3023.5, "has_dungeon": false, "has_important": false}, {"id": 9665, "name": "Mistlands_Statue2", "category": "other", "x": 5672.6, "z": -2325.8, "px": 3016.1, "py": 1651.1, "has_dungeon": false, "has_important": false}, {"id": 9666, "name": "Mistlands_Statue2", "category": "other", "x": -4981.1, "z": 4853.3, "px": 1197.9, "py": 2876.3, "has_dungeon": false, "has_important": false}, {"id": 9667, "name": "Mistlands_Statue2", "category": "other", "x": -7019.8, "z": 4950.1, "px": 850.0, "py": 2892.8, "has_dungeon": false, "has_important": false}, {"id": 9668, "name": "Mistlands_Statue2", "category": "other", "x": -3736.3, "z": 6212.6, "px": 1410.3, "py": 3108.3, "has_dungeon": false, "has_important": false}, {"id": 9669, "name": "Mistlands_Statue2", "category": "other", "x": -1077.2, "z": -6154.2, "px": 1864.2, "py": 997.7, "has_dungeon": false, "has_important": false}, {"id": 9670, "name": "Mistlands_Statue2", "category": "other", "x": 6707.4, "z": 5426.0, "px": 3192.7, "py": 2974.0, "has_dungeon": false, "has_important": false}, {"id": 9671, "name": "Mistlands_Statue2", "category": "other", "x": 7886.2, "z": -2325.3, "px": 3393.9, "py": 1651.1, "has_dungeon": false, "has_important": false}, {"id": 9672, "name": "Mistlands_Statue2", "category": "other", "x": 3449.6, "z": -6980.7, "px": 2636.7, "py": 856.6, "has_dungeon": false, "has_important": false}, {"id": 9673, "name": "Mistlands_Statue2", "category": "other", "x": -8816.6, "z": 276.1, "px": 543.3, "py": 2095.1, "has_dungeon": false, "has_important": false}, {"id": 9674, "name": "Mistlands_Statue2", "category": "other", "x": 3545.3, "z": -7015.2, "px": 2653.1, "py": 850.7, "has_dungeon": false, "has_important": false}, {"id": 9675, "name": "Mistlands_Statue2", "category": "other", "x": -5812.8, "z": 1299.1, "px": 1055.9, "py": 2269.7, "has_dungeon": false, "has_important": false}, {"id": 9676, "name": "Mistlands_Statue2", "category": "other", "x": -4454.9, "z": -5178.9, "px": 1287.7, "py": 1164.1, "has_dungeon": false, "has_important": false}, {"id": 9677, "name": "Mistlands_Statue2", "category": "other", "x": -8124.1, "z": 2454.5, "px": 661.5, "py": 2466.9, "has_dungeon": false, "has_important": false}, {"id": 9678, "name": "Mistlands_Statue2", "category": "other", "x": 8646.9, "z": 1126.3, "px": 3523.7, "py": 2240.2, "has_dungeon": false, "has_important": false}, {"id": 9679, "name": "Mistlands_Statue2", "category": "other", "x": 8938.9, "z": 631.6, "px": 3573.6, "py": 2155.8, "has_dungeon": false, "has_important": false}, {"id": 9680, "name": "Mistlands_Statue2", "category": "other", "x": -7277.1, "z": -914.4, "px": 806.0, "py": 1891.9, "has_dungeon": false, "has_important": false}, {"id": 9681, "name": "Mistlands_Statue2", "category": "other", "x": 4219.4, "z": -5581.6, "px": 2768.1, "py": 1095.4, "has_dungeon": false, "has_important": false}, {"id": 9682, "name": "Mistlands_Statue2", "category": "other", "x": -6772.0, "z": -1845.1, "px": 892.2, "py": 1733.1, "has_dungeon": false, "has_important": false}, {"id": 9683, "name": "Mistlands_Statue2", "category": "other", "x": 8246.9, "z": -2639.7, "px": 3455.5, "py": 1597.5, "has_dungeon": false, "has_important": false}, {"id": 9684, "name": "Mistlands_Statue2", "category": "other", "x": 8473.5, "z": 512.6, "px": 3494.1, "py": 2135.5, "has_dungeon": false, "has_important": false}, {"id": 9685, "name": "Mistlands_Statue2", "category": "other", "x": -6827.7, "z": 620.0, "px": 882.7, "py": 2153.8, "has_dungeon": false, "has_important": false}, {"id": 9686, "name": "Mistlands_Statue2", "category": "other", "x": 8325.5, "z": -469.5, "px": 3468.9, "py": 1967.9, "has_dungeon": false, "has_important": false}, {"id": 9687, "name": "Mistlands_Statue2", "category": "other", "x": -7098.7, "z": 3792.9, "px": 836.5, "py": 2695.3, "has_dungeon": false, "has_important": false}, {"id": 9688, "name": "Mistlands_Statue2", "category": "other", "x": -1914.4, "z": -6906.2, "px": 1721.3, "py": 869.3, "has_dungeon": false, "has_important": false}, {"id": 9689, "name": "Mistlands_Statue2", "category": "other", "x": -9516.1, "z": 382.9, "px": 423.9, "py": 2113.3, "has_dungeon": false, "has_important": false}, {"id": 9690, "name": "Mistlands_Statue2", "category": "other", "x": 729.0, "z": 6902.1, "px": 2172.4, "py": 3226.0, "has_dungeon": false, "has_important": false}, {"id": 9691, "name": "Mistlands_Statue2", "category": "other", "x": 8853.4, "z": 1658.4, "px": 3559.0, "py": 2331.0, "has_dungeon": false, "has_important": false}, {"id": 9692, "name": "Mistlands_Statue2", "category": "other", "x": 2890.7, "z": 5327.1, "px": 2541.3, "py": 2957.2, "has_dungeon": false, "has_important": false}, {"id": 9693, "name": "Mistlands_Statue2", "category": "other", "x": 3790.7, "z": 6994.5, "px": 2694.9, "py": 3241.7, "has_dungeon": false, "has_important": false}, {"id": 9694, "name": "Mistlands_Statue2", "category": "other", "x": 3060.0, "z": 5295.0, "px": 2570.2, "py": 2951.7, "has_dungeon": false, "has_important": false}, {"id": 9695, "name": "Mistlands_Statue2", "category": "other", "x": -9109.7, "z": -1320.1, "px": 493.3, "py": 1822.7, "has_dungeon": false, "has_important": false}, {"id": 9696, "name": "Mistlands_Statue2", "category": "other", "x": -8409.5, "z": 2392.8, "px": 612.8, "py": 2456.4, "has_dungeon": false, "has_important": false}, {"id": 9697, "name": "Mistlands_Statue2", "category": "other", "x": -6197.8, "z": -1010.7, "px": 990.2, "py": 1875.5, "has_dungeon": false, "has_important": false}, {"id": 9698, "name": "Mistlands_Statue2", "category": "other", "x": -2107.7, "z": 7551.2, "px": 1688.3, "py": 3336.7, "has_dungeon": false, "has_important": false}, {"id": 9699, "name": "Mistlands_Statue2", "category": "other", "x": 5867.8, "z": -1266.5, "px": 3049.4, "py": 1831.9, "has_dungeon": false, "has_important": false}, {"id": 9700, "name": "Mistlands_Statue2", "category": "other", "x": 9267.5, "z": -2040.0, "px": 3629.7, "py": 1699.8, "has_dungeon": false, "has_important": false}, {"id": 9701, "name": "Mistlands_Statue2", "category": "other", "x": -9591.2, "z": 1142.9, "px": 411.1, "py": 2243.1, "has_dungeon": false, "has_important": false}, {"id": 9702, "name": "Mistlands_Statue2", "category": "other", "x": -7407.2, "z": -2740.6, "px": 783.8, "py": 1580.3, "has_dungeon": false, "has_important": false}, {"id": 9703, "name": "Mistlands_Statue2", "category": "other", "x": -2925.3, "z": -7000.4, "px": 1548.7, "py": 853.3, "has_dungeon": false, "has_important": false}, {"id": 9704, "name": "Mistlands_Statue2", "category": "other", "x": 6329.0, "z": -1531.7, "px": 3128.1, "py": 1786.6, "has_dungeon": false, "has_important": false}, {"id": 9705, "name": "Mistlands_Statue2", "category": "other", "x": -3252.0, "z": 6064.0, "px": 1493.0, "py": 3082.9, "has_dungeon": false, "has_important": false}, {"id": 9706, "name": "Mistlands_Statue2", "category": "other", "x": 7437.4, "z": -3904.6, "px": 3317.3, "py": 1381.6, "has_dungeon": false, "has_important": false}, {"id": 9707, "name": "Mistlands_Statue2", "category": "other", "x": 9611.9, "z": 1459.3, "px": 3688.4, "py": 2297.1, "has_dungeon": false, "has_important": false}, {"id": 9708, "name": "Mistlands_Statue2", "category": "other", "x": -3629.0, "z": 4755.4, "px": 1428.7, "py": 2859.6, "has_dungeon": false, "has_important": false}, {"id": 9709, "name": "Mistlands_Statue2", "category": "other", "x": 4346.2, "z": -5976.9, "px": 2789.8, "py": 1027.9, "has_dungeon": false, "has_important": false}, {"id": 9710, "name": "Mistlands_Statue2", "category": "other", "x": -2951.5, "z": 6344.5, "px": 1544.3, "py": 3130.8, "has_dungeon": false, "has_important": false}, {"id": 9711, "name": "Mistlands_Statue2", "category": "other", "x": 6724.4, "z": 2795.8, "px": 3195.6, "py": 2525.1, "has_dungeon": false, "has_important": false}, {"id": 9712, "name": "Mistlands_Statue2", "category": "other", "x": 4076.8, "z": 5966.5, "px": 2743.8, "py": 3066.3, "has_dungeon": false, "has_important": false}, {"id": 9713, "name": "Mistlands_Statue2", "category": "other", "x": 5446.5, "z": 5526.0, "px": 2977.5, "py": 2991.1, "has_dungeon": false, "has_important": false}, {"id": 9714, "name": "Mistlands_Statue2", "category": "other", "x": 9881.8, "z": -1396.4, "px": 3734.5, "py": 1809.7, "has_dungeon": false, "has_important": false}, {"id": 9715, "name": "Mistlands_Statue2", "category": "other", "x": 5967.9, "z": 5757.4, "px": 3066.5, "py": 3030.6, "has_dungeon": false, "has_important": false}, {"id": 9716, "name": "Mistlands_Statue2", "category": "other", "x": 8139.4, "z": 1908.6, "px": 3437.1, "py": 2373.7, "has_dungeon": false, "has_important": false}, {"id": 9717, "name": "Mistlands_Statue2", "category": "other", "x": 8495.3, "z": 654.3, "px": 3497.9, "py": 2159.7, "has_dungeon": false, "has_important": false}, {"id": 9718, "name": "Mistlands_Statue2", "category": "other", "x": 5965.2, "z": -4674.4, "px": 3066.1, "py": 1250.2, "has_dungeon": false, "has_important": false}, {"id": 9719, "name": "Mistlands_Statue2", "category": "other", "x": -973.9, "z": 6577.2, "px": 1881.8, "py": 3170.5, "has_dungeon": false, "has_important": false}, {"id": 9720, "name": "Mistlands_Statue2", "category": "other", "x": -3069.8, "z": 6068.3, "px": 1524.1, "py": 3083.7, "has_dungeon": false, "has_important": false}, {"id": 9721, "name": "Mistlands_Statue2", "category": "other", "x": 6055.3, "z": -4662.3, "px": 3081.4, "py": 1252.3, "has_dungeon": false, "has_important": false}, {"id": 9722, "name": "Mistlands_Statue2", "category": "other", "x": -3700.1, "z": 6520.1, "px": 1416.5, "py": 3160.8, "has_dungeon": false, "has_important": false}, {"id": 9723, "name": "Mistlands_Statue2", "category": "other", "x": 2050.6, "z": -7050.6, "px": 2398.0, "py": 844.7, "has_dungeon": false, "has_important": false}, {"id": 9724, "name": "Mistlands_Statue2", "category": "other", "x": -5681.2, "z": -6381.4, "px": 1078.4, "py": 958.9, "has_dungeon": false, "has_important": false}, {"id": 9725, "name": "Mistlands_Statue2", "category": "other", "x": -2894.7, "z": 7284.2, "px": 1554.0, "py": 3291.2, "has_dungeon": false, "has_important": false}, {"id": 9726, "name": "Mistlands_Statue2", "category": "other", "x": -183.3, "z": -6589.6, "px": 2016.7, "py": 923.4, "has_dungeon": false, "has_important": false}, {"id": 9727, "name": "Mistlands_Statue2", "category": "other", "x": 5233.0, "z": 5991.3, "px": 2941.1, "py": 3070.5, "has_dungeon": false, "has_important": false}, {"id": 9728, "name": "Mistlands_Statue2", "category": "other", "x": 1994.7, "z": -6999.4, "px": 2388.4, "py": 853.4, "has_dungeon": false, "has_important": false}, {"id": 9729, "name": "Mistlands_Statue2", "category": "other", "x": -2159.1, "z": -6341.7, "px": 1679.5, "py": 965.7, "has_dungeon": false, "has_important": false}, {"id": 9730, "name": "Mistlands_Statue2", "category": "other", "x": 6644.5, "z": 2770.6, "px": 3182.0, "py": 2520.8, "has_dungeon": false, "has_important": false}, {"id": 9731, "name": "Mistlands_Statue2", "category": "other", "x": -9396.8, "z": -815.2, "px": 444.3, "py": 1908.9, "has_dungeon": false, "has_important": false}, {"id": 9732, "name": "Mistlands_Statue2", "category": "other", "x": 1582.4, "z": 7605.0, "px": 2318.1, "py": 3345.9, "has_dungeon": false, "has_important": false}, {"id": 9733, "name": "Mistlands_Statue2", "category": "other", "x": 9219.7, "z": -2354.8, "px": 3621.5, "py": 1646.1, "has_dungeon": false, "has_important": false}, {"id": 9734, "name": "Mistlands_Statue2", "category": "other", "x": -6839.1, "z": 589.7, "px": 880.8, "py": 2148.6, "has_dungeon": false, "has_important": false}, {"id": 9735, "name": "Mistlands_Statue2", "category": "other", "x": 1164.5, "z": 6568.0, "px": 2246.7, "py": 3168.9, "has_dungeon": false, "has_important": false}, {"id": 9736, "name": "Mistlands_Statue2", "category": "other", "x": -6510.4, "z": -4021.3, "px": 936.9, "py": 1361.7, "has_dungeon": false, "has_important": false}, {"id": 9737, "name": "Mistlands_Statue2", "category": "other", "x": 8742.3, "z": -3471.4, "px": 3540.0, "py": 1455.5, "has_dungeon": false, "has_important": false}, {"id": 9738, "name": "Mistlands_Statue2", "category": "other", "x": 6023.8, "z": -2025.9, "px": 3076.1, "py": 1702.2, "has_dungeon": false, "has_important": false}, {"id": 9739, "name": "Mistlands_Statue2", "category": "other", "x": 4690.7, "z": -4978.6, "px": 2848.5, "py": 1198.3, "has_dungeon": false, "has_important": false}, {"id": 9740, "name": "Mistlands_Statue2", "category": "other", "x": -6295.3, "z": 2865.6, "px": 973.6, "py": 2537.1, "has_dungeon": false, "has_important": false}, {"id": 9741, "name": "Mistlands_Statue2", "category": "other", "x": 8361.2, "z": -838.9, "px": 3475.0, "py": 1904.8, "has_dungeon": false, "has_important": false}, {"id": 9742, "name": "Mistlands_Statue2", "category": "other", "x": 9589.0, "z": 2546.6, "px": 3684.5, "py": 2482.6, "has_dungeon": false, "has_important": false}, {"id": 9743, "name": "Mistlands_Statue2", "category": "other", "x": -1671.1, "z": 7038.9, "px": 1762.8, "py": 3249.3, "has_dungeon": false, "has_important": false}, {"id": 9744, "name": "Mistlands_Statue2", "category": "other", "x": 6226.9, "z": 4949.9, "px": 3110.7, "py": 2892.8, "has_dungeon": false, "has_important": false}, {"id": 9745, "name": "Mistlands_Statue2", "category": "other", "x": -422.3, "z": -6544.3, "px": 1975.9, "py": 931.1, "has_dungeon": false, "has_important": false}, {"id": 9746, "name": "Mistlands_Statue2", "category": "other", "x": -7595.7, "z": 1580.8, "px": 751.7, "py": 2317.8, "has_dungeon": false, "has_important": false}, {"id": 9747, "name": "Mistlands_Statue2", "category": "other", "x": 4868.2, "z": 4343.5, "px": 2878.8, "py": 2789.3, "has_dungeon": false, "has_important": false}, {"id": 9748, "name": "Mistlands_Statue2", "category": "other", "x": -6329.5, "z": 770.7, "px": 967.8, "py": 2179.5, "has_dungeon": false, "has_important": false}, {"id": 9749, "name": "Mistlands_Statue2", "category": "other", "x": -6465.1, "z": 3141.4, "px": 944.6, "py": 2584.1, "has_dungeon": false, "has_important": false}, {"id": 9750, "name": "Mistlands_Statue2", "category": "other", "x": -6210.6, "z": -921.8, "px": 988.1, "py": 1890.7, "has_dungeon": false, "has_important": false}, {"id": 9751, "name": "Mistlands_Statue2", "category": "other", "x": 9746.9, "z": -534.0, "px": 3711.5, "py": 1956.9, "has_dungeon": false, "has_important": false}, {"id": 9752, "name": "Mistlands_Statue2", "category": "other", "x": 4592.4, "z": -6872.0, "px": 2831.8, "py": 875.2, "has_dungeon": false, "has_important": false}, {"id": 9753, "name": "Mistlands_Statue2", "category": "other", "x": 9160.9, "z": -2748.0, "px": 3611.5, "py": 1579.0, "has_dungeon": false, "has_important": false}, {"id": 9754, "name": "Mistlands_Statue2", "category": "other", "x": 4796.4, "z": -3992.0, "px": 2866.6, "py": 1366.7, "has_dungeon": false, "has_important": false}, {"id": 9755, "name": "Mistlands_Statue2", "category": "other", "x": -7218.7, "z": -3410.6, "px": 816.0, "py": 1465.9, "has_dungeon": false, "has_important": false}, {"id": 9756, "name": "Mistlands_Statue2", "category": "other", "x": -6770.4, "z": -3573.7, "px": 892.5, "py": 1438.1, "has_dungeon": false, "has_important": false}, {"id": 9757, "name": "Mistlands_Statue2", "category": "other", "x": -7870.9, "z": 4284.1, "px": 704.7, "py": 2779.2, "has_dungeon": false, "has_important": false}, {"id": 9758, "name": "Mistlands_Statue2", "category": "other", "x": -8264.6, "z": 2422.2, "px": 637.5, "py": 2461.4, "has_dungeon": false, "has_important": false}, {"id": 9759, "name": "Mistlands_Statue2", "category": "other", "x": 8426.3, "z": -3537.4, "px": 3486.1, "py": 1444.3, "has_dungeon": false, "has_important": false}, {"id": 9760, "name": "Mistlands_Statue2", "category": "other", "x": 2548.6, "z": -6025.2, "px": 2483.0, "py": 1019.7, "has_dungeon": false, "has_important": false}, {"id": 9761, "name": "Mistlands_Statue2", "category": "other", "x": -7675.1, "z": -2710.7, "px": 738.1, "py": 1585.4, "has_dungeon": false, "has_important": false}, {"id": 9762, "name": "Mistlands_Statue2", "category": "other", "x": -6375.3, "z": 5401.4, "px": 959.9, "py": 2969.8, "has_dungeon": false, "has_important": false}, {"id": 9763, "name": "Mistlands_Statue2", "category": "other", "x": -2854.2, "z": 6578.3, "px": 1560.9, "py": 3170.7, "has_dungeon": false, "has_important": false}, {"id": 9764, "name": "Mistlands_Statue2", "category": "other", "x": -9614.7, "z": 2351.3, "px": 407.1, "py": 2449.3, "has_dungeon": false, "has_important": false}, {"id": 9765, "name": "Mistlands_Statue2", "category": "other", "x": -1359.9, "z": -7567.0, "px": 1815.9, "py": 756.6, "has_dungeon": false, "has_important": false}, {"id": 9766, "name": "Mistlands_Statue2", "category": "other", "x": -6867.5, "z": 748.0, "px": 875.9, "py": 2175.7, "has_dungeon": false, "has_important": false}, {"id": 9767, "name": "Mistlands_Statue2", "category": "other", "x": -8422.6, "z": -109.0, "px": 610.5, "py": 2029.4, "has_dungeon": false, "has_important": false}, {"id": 9768, "name": "Mistlands_Statue2", "category": "other", "x": 8759.4, "z": 532.9, "px": 3542.9, "py": 2138.9, "has_dungeon": false, "has_important": false}, {"id": 9769, "name": "Mistlands_Statue2", "category": "other", "x": -5775.1, "z": -2874.7, "px": 1062.4, "py": 1557.4, "has_dungeon": false, "has_important": false}, {"id": 9770, "name": "Mistlands_Statue2", "category": "other", "x": 5587.3, "z": 4356.4, "px": 3001.6, "py": 2791.5, "has_dungeon": false, "has_important": false}, {"id": 9771, "name": "Mistlands_Statue2", "category": "other", "x": -8840.4, "z": 1860.6, "px": 539.2, "py": 2365.5, "has_dungeon": false, "has_important": false}, {"id": 9772, "name": "Mistlands_Statue2", "category": "other", "x": -5876.1, "z": 3280.9, "px": 1045.1, "py": 2607.9, "has_dungeon": false, "has_important": false}, {"id": 9773, "name": "Mistlands_Statue2", "category": "other", "x": -8781.7, "z": -2728.1, "px": 549.3, "py": 1582.4, "has_dungeon": false, "has_important": false}, {"id": 9774, "name": "Mistlands_Statue2", "category": "other", "x": 3387.8, "z": 5386.9, "px": 2626.2, "py": 2967.4, "has_dungeon": false, "has_important": false}, {"id": 9775, "name": "Mistlands_Statue2", "category": "other", "x": -7364.2, "z": 336.1, "px": 791.2, "py": 2105.4, "has_dungeon": false, "has_important": false}, {"id": 9776, "name": "Mistlands_Statue2", "category": "other", "x": 6068.8, "z": 5581.0, "px": 3083.7, "py": 3000.5, "has_dungeon": false, "has_important": false}, {"id": 9777, "name": "Mistlands_Statue2", "category": "other", "x": -9175.0, "z": -1075.1, "px": 482.1, "py": 1864.5, "has_dungeon": false, "has_important": false}, {"id": 9778, "name": "Mistlands_Statue2", "category": "other", "x": -3729.6, "z": 5267.8, "px": 1411.5, "py": 2947.0, "has_dungeon": false, "has_important": false}, {"id": 9779, "name": "Mistlands_Statue2", "category": "other", "x": 4908.9, "z": -4558.3, "px": 2885.8, "py": 1270.1, "has_dungeon": false, "has_important": false}, {"id": 9780, "name": "Mistlands_Statue2", "category": "other", "x": 4227.9, "z": -5362.4, "px": 2769.6, "py": 1132.8, "has_dungeon": false, "has_important": false}, {"id": 9781, "name": "Mistlands_Statue2", "category": "other", "x": 8138.7, "z": -2956.1, "px": 3437.0, "py": 1543.5, "has_dungeon": false, "has_important": false}, {"id": 9782, "name": "Mistlands_Statue2", "category": "other", "x": 4239.7, "z": 6257.6, "px": 2771.6, "py": 3116.0, "has_dungeon": false, "has_important": false}, {"id": 9783, "name": "Mistlands_Statue2", "category": "other", "x": 8147.5, "z": 4423.5, "px": 3438.5, "py": 2802.9, "has_dungeon": false, "has_important": false}, {"id": 9784, "name": "Mistlands_Statue2", "category": "other", "x": -7897.7, "z": -4222.4, "px": 700.1, "py": 1327.4, "has_dungeon": false, "has_important": false}, {"id": 9785, "name": "Mistlands_Statue2", "category": "other", "x": 4106.1, "z": 4753.8, "px": 2748.8, "py": 2859.3, "has_dungeon": false, "has_important": false}, {"id": 9786, "name": "Mistlands_Statue2", "category": "other", "x": 9397.3, "z": -2313.3, "px": 3651.8, "py": 1653.2, "has_dungeon": false, "has_important": false}, {"id": 9787, "name": "Mistlands_Statue2", "category": "other", "x": 9395.3, "z": -1746.4, "px": 3651.5, "py": 1749.9, "has_dungeon": false, "has_important": false}, {"id": 9788, "name": "Mistlands_Statue2", "category": "other", "x": 5875.0, "z": -5647.3, "px": 3050.7, "py": 1084.2, "has_dungeon": false, "has_important": false}, {"id": 9789, "name": "Mistlands_Statue2", "category": "other", "x": -2281.8, "z": -6872.3, "px": 1658.6, "py": 875.1, "has_dungeon": false, "has_important": false}, {"id": 9790, "name": "Mistlands_Statue2", "category": "other", "x": 7172.9, "z": 193.6, "px": 3272.2, "py": 2081.0, "has_dungeon": false, "has_important": false}, {"id": 9791, "name": "Mistlands_Statue2", "category": "other", "x": -652.6, "z": 6932.4, "px": 1936.6, "py": 3231.1, "has_dungeon": false, "has_important": false}, {"id": 9792, "name": "Mistlands_Statue2", "category": "other", "x": 1354.1, "z": -6649.1, "px": 2279.1, "py": 913.2, "has_dungeon": false, "has_important": false}, {"id": 9793, "name": "Mistlands_Statue2", "category": "other", "x": -6997.8, "z": 3773.4, "px": 853.7, "py": 2692.0, "has_dungeon": false, "has_important": false}, {"id": 9794, "name": "Mistlands_Statue2", "category": "other", "x": 6592.1, "z": 5335.4, "px": 3173.1, "py": 2958.6, "has_dungeon": false, "has_important": false}, {"id": 9195, "name": "Mistlands_StatueGroup1", "category": "other", "x": -9743.0, "z": -886.8, "px": 385.2, "py": 1896.7, "has_dungeon": false, "has_important": false}, {"id": 9196, "name": "Mistlands_StatueGroup1", "category": "other", "x": 9469.1, "z": -1929.2, "px": 3664.1, "py": 1718.7, "has_dungeon": false, "has_important": false}, {"id": 9197, "name": "Mistlands_StatueGroup1", "category": "other", "x": -8630.1, "z": 308.8, "px": 575.1, "py": 2100.7, "has_dungeon": false, "has_important": false}, {"id": 9198, "name": "Mistlands_StatueGroup1", "category": "other", "x": 1671.6, "z": 6922.6, "px": 2333.3, "py": 3229.5, "has_dungeon": false, "has_important": false}, {"id": 9199, "name": "Mistlands_StatueGroup1", "category": "other", "x": -6069.0, "z": -14.4, "px": 1012.2, "py": 2045.5, "has_dungeon": false, "has_important": false}, {"id": 9200, "name": "Mistlands_StatueGroup1", "category": "other", "x": -8501.0, "z": 369.8, "px": 597.2, "py": 2111.1, "has_dungeon": false, "has_important": false}, {"id": 9201, "name": "Mistlands_StatueGroup1", "category": "other", "x": -7744.1, "z": -2936.7, "px": 726.3, "py": 1546.8, "has_dungeon": false, "has_important": false}, {"id": 9202, "name": "Mistlands_StatueGroup1", "category": "other", "x": -2952.1, "z": -5948.4, "px": 1544.2, "py": 1032.8, "has_dungeon": false, "has_important": false}, {"id": 9203, "name": "Mistlands_StatueGroup1", "category": "other", "x": -7557.0, "z": 2932.6, "px": 758.3, "py": 2548.5, "has_dungeon": false, "has_important": false}, {"id": 9204, "name": "Mistlands_StatueGroup1", "category": "other", "x": 3963.9, "z": -5260.3, "px": 2724.5, "py": 1150.2, "has_dungeon": false, "has_important": false}, {"id": 9205, "name": "Mistlands_StatueGroup1", "category": "other", "x": 9727.1, "z": -948.4, "px": 3708.1, "py": 1886.1, "has_dungeon": false, "has_important": false}, {"id": 9206, "name": "Mistlands_StatueGroup1", "category": "other", "x": 2356.6, "z": 6018.5, "px": 2450.2, "py": 3075.2, "has_dungeon": false, "has_important": false}, {"id": 9207, "name": "Mistlands_StatueGroup1", "category": "other", "x": 435.7, "z": 7552.1, "px": 2122.4, "py": 3336.9, "has_dungeon": false, "has_important": false}, {"id": 9208, "name": "Mistlands_StatueGroup1", "category": "other", "x": -8435.1, "z": -3262.4, "px": 608.4, "py": 1491.2, "has_dungeon": false, "has_important": false}, {"id": 9209, "name": "Mistlands_StatueGroup1", "category": "other", "x": 7171.7, "z": 3650.1, "px": 3272.0, "py": 2671.0, "has_dungeon": false, "has_important": false}, {"id": 9210, "name": "Mistlands_StatueGroup1", "category": "other", "x": -2743.7, "z": 6089.1, "px": 1579.7, "py": 3087.2, "has_dungeon": false, "has_important": false}, {"id": 9211, "name": "Mistlands_StatueGroup1", "category": "other", "x": -5958.5, "z": -1026.3, "px": 1031.1, "py": 1872.8, "has_dungeon": false, "has_important": false}, {"id": 9212, "name": "Mistlands_StatueGroup1", "category": "other", "x": 6021.9, "z": 5902.1, "px": 3075.7, "py": 3055.3, "has_dungeon": false, "has_important": false}, {"id": 9213, "name": "Mistlands_StatueGroup1", "category": "other", "x": -6591.1, "z": 5744.5, "px": 923.1, "py": 3028.4, "has_dungeon": false, "has_important": false}, {"id": 9214, "name": "Mistlands_StatueGroup1", "category": "other", "x": 8317.9, "z": -767.9, "px": 3467.6, "py": 1916.9, "has_dungeon": false, "has_important": false}, {"id": 9215, "name": "Mistlands_StatueGroup1", "category": "other", "x": -1551.3, "z": 7119.9, "px": 1783.2, "py": 3263.1, "has_dungeon": false, "has_important": false}, {"id": 9216, "name": "Mistlands_StatueGroup1", "category": "other", "x": -6280.1, "z": 4226.2, "px": 976.2, "py": 2769.3, "has_dungeon": false, "has_important": false}, {"id": 9217, "name": "Mistlands_StatueGroup1", "category": "other", "x": 8323.3, "z": -583.5, "px": 3468.5, "py": 1948.4, "has_dungeon": false, "has_important": false}, {"id": 9218, "name": "Mistlands_StatueGroup1", "category": "other", "x": 7222.9, "z": -4666.1, "px": 3280.7, "py": 1251.7, "has_dungeon": false, "has_important": false}, {"id": 9219, "name": "Mistlands_StatueGroup1", "category": "other", "x": -7856.1, "z": -4469.8, "px": 707.2, "py": 1285.2, "has_dungeon": false, "has_important": false}, {"id": 9220, "name": "Mistlands_StatueGroup1", "category": "other", "x": -5751.8, "z": -5440.6, "px": 1066.4, "py": 1119.5, "has_dungeon": false, "has_important": false}, {"id": 9221, "name": "Mistlands_StatueGroup1", "category": "other", "x": -6210.0, "z": -1805.0, "px": 988.2, "py": 1739.9, "has_dungeon": false, "has_important": false}, {"id": 9222, "name": "Mistlands_StatueGroup1", "category": "other", "x": 7491.4, "z": -4726.4, "px": 3326.5, "py": 1241.4, "has_dungeon": false, "has_important": false}, {"id": 9223, "name": "Mistlands_StatueGroup1", "category": "other", "x": 9456.6, "z": -2253.9, "px": 3661.9, "py": 1663.3, "has_dungeon": false, "has_important": false}, {"id": 9224, "name": "Mistlands_StatueGroup1", "category": "other", "x": 3784.8, "z": 5628.9, "px": 2693.9, "py": 3008.7, "has_dungeon": false, "has_important": false}, {"id": 9225, "name": "Mistlands_StatueGroup1", "category": "other", "x": 6069.7, "z": 5881.6, "px": 3083.9, "py": 3051.8, "has_dungeon": false, "has_important": false}, {"id": 9226, "name": "Mistlands_StatueGroup1", "category": "other", "x": -1986.6, "z": 7106.0, "px": 1709.0, "py": 3260.8, "has_dungeon": false, "has_important": false}, {"id": 9227, "name": "Mistlands_StatueGroup1", "category": "other", "x": -8630.5, "z": -1358.4, "px": 575.1, "py": 1816.2, "has_dungeon": false, "has_important": false}, {"id": 9228, "name": "Mistlands_StatueGroup1", "category": "other", "x": -8847.7, "z": 3071.7, "px": 538.0, "py": 2572.2, "has_dungeon": false, "has_important": false}, {"id": 9229, "name": "Mistlands_StatueGroup1", "category": "other", "x": -3078.0, "z": 5621.1, "px": 1522.7, "py": 3007.3, "has_dungeon": false, "has_important": false}, {"id": 9230, "name": "Mistlands_StatueGroup1", "category": "other", "x": 9154.5, "z": -1419.6, "px": 3610.4, "py": 1805.7, "has_dungeon": false, "has_important": false}, {"id": 9231, "name": "Mistlands_StatueGroup1", "category": "other", "x": 6513.1, "z": 2823.4, "px": 3159.6, "py": 2529.9, "has_dungeon": false, "has_important": false}, {"id": 9232, "name": "Mistlands_StatueGroup1", "category": "other", "x": -452.3, "z": -6399.4, "px": 1970.8, "py": 955.8, "has_dungeon": false, "has_important": false}, {"id": 9233, "name": "Mistlands_StatueGroup1", "category": "other", "x": 9467.9, "z": -1712.6, "px": 3663.9, "py": 1755.7, "has_dungeon": false, "has_important": false}, {"id": 9234, "name": "Mistlands_StatueGroup1", "category": "other", "x": -1782.1, "z": -6075.5, "px": 1743.9, "py": 1011.1, "has_dungeon": false, "has_important": false}, {"id": 9235, "name": "Mistlands_StatueGroup1", "category": "other", "x": -8122.4, "z": -3329.9, "px": 661.8, "py": 1479.7, "has_dungeon": false, "has_important": false}, {"id": 9236, "name": "Mistlands_StatueGroup1", "category": "other", "x": -8434.0, "z": -3574.8, "px": 608.6, "py": 1437.9, "has_dungeon": false, "has_important": false}, {"id": 9237, "name": "Mistlands_StatueGroup1", "category": "other", "x": -5954.2, "z": 3535.2, "px": 1031.8, "py": 2651.3, "has_dungeon": false, "has_important": false}, {"id": 9238, "name": "Mistlands_StatueGroup1", "category": "other", "x": 4723.9, "z": -4493.1, "px": 2854.2, "py": 1281.2, "has_dungeon": false, "has_important": false}, {"id": 9239, "name": "Mistlands_StatueGroup1", "category": "other", "x": -9272.4, "z": -268.7, "px": 465.5, "py": 2002.1, "has_dungeon": false, "has_important": false}, {"id": 9240, "name": "Mistlands_StatueGroup1", "category": "other", "x": 9009.9, "z": 1472.3, "px": 3585.7, "py": 2299.3, "has_dungeon": false, "has_important": false}, {"id": 9241, "name": "Mistlands_StatueGroup1", "category": "other", "x": 1139.0, "z": 6451.8, "px": 2242.4, "py": 3149.1, "has_dungeon": false, "has_important": false}, {"id": 9242, "name": "Mistlands_StatueGroup1", "category": "other", "x": 7153.6, "z": -2234.1, "px": 3268.9, "py": 1666.7, "has_dungeon": false, "has_important": false}, {"id": 9243, "name": "Mistlands_StatueGroup1", "category": "other", "x": 5827.1, "z": 2041.3, "px": 3042.5, "py": 2396.4, "has_dungeon": false, "has_important": false}, {"id": 9244, "name": "Mistlands_StatueGroup1", "category": "other", "x": 6908.4, "z": -3326.9, "px": 3227.0, "py": 1480.2, "has_dungeon": false, "has_important": false}, {"id": 9245, "name": "Mistlands_StatueGroup1", "category": "other", "x": 8187.0, "z": 2703.9, "px": 3445.2, "py": 2509.5, "has_dungeon": false, "has_important": false}, {"id": 9246, "name": "Mistlands_StatueGroup1", "category": "other", "x": -2162.8, "z": 7415.8, "px": 1678.9, "py": 3313.6, "has_dungeon": false, "has_important": false}, {"id": 9247, "name": "Mistlands_StatueGroup1", "category": "other", "x": -7092.2, "z": 757.3, "px": 837.6, "py": 2177.2, "has_dungeon": false, "has_important": false}, {"id": 9248, "name": "Mistlands_StatueGroup1", "category": "other", "x": -2254.2, "z": -6344.0, "px": 1663.3, "py": 965.3, "has_dungeon": false, "has_important": false}, {"id": 9249, "name": "Mistlands_StatueGroup1", "category": "other", "x": -5307.2, "z": 4595.1, "px": 1142.2, "py": 2832.2, "has_dungeon": false, "has_important": false}, {"id": 9250, "name": "Mistlands_StatueGroup1", "category": "other", "x": -6016.2, "z": -5428.1, "px": 1021.2, "py": 1121.6, "has_dungeon": false, "has_important": false}, {"id": 9251, "name": "Mistlands_StatueGroup1", "category": "other", "x": 2637.8, "z": 6522.9, "px": 2498.2, "py": 3161.2, "has_dungeon": false, "has_important": false}, {"id": 9252, "name": "Mistlands_StatueGroup1", "category": "other", "x": 3341.5, "z": 5499.1, "px": 2618.3, "py": 2986.5, "has_dungeon": false, "has_important": false}, {"id": 9253, "name": "Mistlands_StatueGroup1", "category": "other", "x": 6340.5, "z": 3464.2, "px": 3130.1, "py": 2639.2, "has_dungeon": false, "has_important": false}, {"id": 9254, "name": "Mistlands_StatueGroup1", "category": "other", "x": -8443.2, "z": 1781.3, "px": 607.0, "py": 2352.0, "has_dungeon": false, "has_important": false}, {"id": 9255, "name": "Mistlands_StatueGroup1", "category": "other", "x": 3274.4, "z": 6400.7, "px": 2606.8, "py": 3140.4, "has_dungeon": false, "has_important": false}, {"id": 9256, "name": "Mistlands_StatueGroup1", "category": "other", "x": 715.4, "z": 7028.0, "px": 2170.1, "py": 3247.4, "has_dungeon": false, "has_important": false}, {"id": 9257, "name": "Mistlands_StatueGroup1", "category": "other", "x": -6140.5, "z": -757.2, "px": 1000.0, "py": 1918.8, "has_dungeon": false, "has_important": false}, {"id": 9258, "name": "Mistlands_StatueGroup1", "category": "other", "x": 8066.9, "z": -1926.3, "px": 3424.8, "py": 1719.2, "has_dungeon": false, "has_important": false}, {"id": 9259, "name": "Mistlands_StatueGroup1", "category": "other", "x": -2753.0, "z": 6468.9, "px": 1578.2, "py": 3152.0, "has_dungeon": false, "has_important": false}, {"id": 9260, "name": "Mistlands_StatueGroup1", "category": "other", "x": 3969.1, "z": 5879.0, "px": 2725.4, "py": 3051.3, "has_dungeon": false, "has_important": false}, {"id": 9261, "name": "Mistlands_StatueGroup1", "category": "other", "x": -4551.2, "z": -6842.1, "px": 1271.3, "py": 880.3, "has_dungeon": false, "has_important": false}, {"id": 9262, "name": "Mistlands_StatueGroup1", "category": "other", "x": -6091.4, "z": -1466.6, "px": 1008.4, "py": 1797.7, "has_dungeon": false, "has_important": false}, {"id": 9263, "name": "Mistlands_StatueGroup1", "category": "other", "x": -9083.4, "z": -2679.8, "px": 497.8, "py": 1590.6, "has_dungeon": false, "has_important": false}, {"id": 9264, "name": "Mistlands_StatueGroup1", "category": "other", "x": -3769.6, "z": 5388.4, "px": 1404.7, "py": 2967.6, "has_dungeon": false, "has_important": false}, {"id": 9265, "name": "Mistlands_StatueGroup1", "category": "other", "x": -6001.0, "z": -5126.0, "px": 1023.8, "py": 1173.2, "has_dungeon": false, "has_important": false}, {"id": 9266, "name": "Mistlands_StatueGroup1", "category": "other", "x": 6857.4, "z": -649.6, "px": 3218.3, "py": 1937.1, "has_dungeon": false, "has_important": false}, {"id": 9267, "name": "Mistlands_StatueGroup1", "category": "other", "x": -3577.9, "z": 5502.3, "px": 1437.4, "py": 2987.1, "has_dungeon": false, "has_important": false}, {"id": 9268, "name": "Mistlands_StatueGroup1", "category": "other", "x": 9484.6, "z": 1465.9, "px": 3666.7, "py": 2298.2, "has_dungeon": false, "has_important": false}, {"id": 9269, "name": "Mistlands_StatueGroup1", "category": "other", "x": -823.6, "z": -7438.8, "px": 1907.4, "py": 778.4, "has_dungeon": false, "has_important": false}, {"id": 9270, "name": "Mistlands_StatueGroup1", "category": "other", "x": -6661.2, "z": -2956.9, "px": 911.2, "py": 1543.4, "has_dungeon": false, "has_important": false}, {"id": 9271, "name": "Mistlands_StatueGroup1", "category": "other", "x": 1224.9, "z": 7048.6, "px": 2257.0, "py": 3251.0, "has_dungeon": false, "has_important": false}, {"id": 9272, "name": "Mistlands_StatueGroup1", "category": "other", "x": 7433.4, "z": -2377.4, "px": 3316.6, "py": 1642.3, "has_dungeon": false, "has_important": false}, {"id": 9273, "name": "Mistlands_StatueGroup1", "category": "other", "x": 7290.9, "z": -3719.6, "px": 3292.3, "py": 1413.2, "has_dungeon": false, "has_important": false}, {"id": 9274, "name": "Mistlands_StatueGroup1", "category": "other", "x": 1098.4, "z": -7280.5, "px": 2235.5, "py": 805.5, "has_dungeon": false, "has_important": false}, {"id": 9275, "name": "Mistlands_StatueGroup1", "category": "other", "x": -2931.5, "z": -6031.1, "px": 1547.7, "py": 1018.7, "has_dungeon": false, "has_important": false}, {"id": 9276, "name": "Mistlands_StatueGroup1", "category": "other", "x": 8388.1, "z": -1548.1, "px": 3479.6, "py": 1783.8, "has_dungeon": false, "has_important": false}, {"id": 9277, "name": "Mistlands_StatueGroup1", "category": "other", "x": 8511.1, "z": -3313.2, "px": 3500.6, "py": 1482.5, "has_dungeon": false, "has_important": false}, {"id": 9278, "name": "Mistlands_StatueGroup1", "category": "other", "x": 7931.7, "z": 2574.4, "px": 3401.7, "py": 2487.4, "has_dungeon": false, "has_important": false}, {"id": 9279, "name": "Mistlands_StatueGroup1", "category": "other", "x": -6467.9, "z": -4478.8, "px": 944.1, "py": 1283.6, "has_dungeon": false, "has_important": false}, {"id": 9280, "name": "Mistlands_StatueGroup1", "category": "other", "x": -3955.5, "z": 5710.7, "px": 1372.9, "py": 3022.6, "has_dungeon": false, "has_important": false}, {"id": 9281, "name": "Mistlands_StatueGroup1", "category": "other", "x": 7679.9, "z": -2098.5, "px": 3358.7, "py": 1689.9, "has_dungeon": false, "has_important": false}, {"id": 9282, "name": "Mistlands_StatueGroup1", "category": "other", "x": -9868.0, "z": -844.8, "px": 363.9, "py": 1903.8, "has_dungeon": false, "has_important": false}, {"id": 9283, "name": "Mistlands_StatueGroup1", "category": "other", "x": -6918.0, "z": 3842.4, "px": 867.3, "py": 2703.8, "has_dungeon": false, "has_important": false}, {"id": 9284, "name": "Mistlands_StatueGroup1", "category": "other", "x": 8390.8, "z": 2236.6, "px": 3480.0, "py": 2429.7, "has_dungeon": false, "has_important": false}, {"id": 9285, "name": "Mistlands_StatueGroup1", "category": "other", "x": -9221.4, "z": -133.1, "px": 474.2, "py": 2025.3, "has_dungeon": false, "has_important": false}, {"id": 9286, "name": "Mistlands_StatueGroup1", "category": "other", "x": -503.2, "z": -6451.9, "px": 1962.1, "py": 946.9, "has_dungeon": false, "has_important": false}, {"id": 9287, "name": "Mistlands_StatueGroup1", "category": "other", "x": -6064.9, "z": -646.5, "px": 1012.9, "py": 1937.7, "has_dungeon": false, "has_important": false}, {"id": 9288, "name": "Mistlands_StatueGroup1", "category": "other", "x": -1613.4, "z": 7283.7, "px": 1772.6, "py": 3291.1, "has_dungeon": false, "has_important": false}, {"id": 9289, "name": "Mistlands_StatueGroup1", "category": "other", "x": 7729.5, "z": 2103.7, "px": 3367.2, "py": 2407.0, "has_dungeon": false, "has_important": false}, {"id": 9290, "name": "Mistlands_StatueGroup1", "category": "other", "x": -7295.0, "z": 4146.8, "px": 803.0, "py": 2755.7, "has_dungeon": false, "has_important": false}, {"id": 9291, "name": "Mistlands_StatueGroup1", "category": "other", "x": 6349.8, "z": -1352.1, "px": 3131.7, "py": 1817.2, "has_dungeon": false, "has_important": false}, {"id": 9292, "name": "Mistlands_StatueGroup1", "category": "other", "x": -8507.5, "z": 1587.1, "px": 596.1, "py": 2318.9, "has_dungeon": false, "has_important": false}, {"id": 9293, "name": "Mistlands_StatueGroup1", "category": "other", "x": -6476.7, "z": -4024.9, "px": 942.6, "py": 1361.1, "has_dungeon": false, "has_important": false}, {"id": 9294, "name": "Mistlands_StatueGroup1", "category": "other", "x": 5879.5, "z": 2250.8, "px": 3051.4, "py": 2432.1, "has_dungeon": false, "has_important": false}, {"id": 9295, "name": "Mistlands_StatueGroup1", "category": "other", "x": 4084.0, "z": 6212.5, "px": 2745.0, "py": 3108.3, "has_dungeon": false, "has_important": false}, {"id": 9296, "name": "Mistlands_StatueGroup1", "category": "other", "x": 8180.0, "z": 1010.6, "px": 3444.1, "py": 2220.5, "has_dungeon": false, "has_important": false}, {"id": 9297, "name": "Mistlands_StatueGroup1", "category": "other", "x": 1075.8, "z": 7628.9, "px": 2231.6, "py": 3350.0, "has_dungeon": false, "has_important": false}, {"id": 9298, "name": "Mistlands_StatueGroup1", "category": "other", "x": -2289.0, "z": -6092.0, "px": 1657.3, "py": 1008.3, "has_dungeon": false, "has_important": false}, {"id": 9299, "name": "Mistlands_StatueGroup1", "category": "other", "x": -7282.2, "z": -2438.5, "px": 805.2, "py": 1631.8, "has_dungeon": false, "has_important": false}, {"id": 9300, "name": "Mistlands_StatueGroup1", "category": "other", "x": 4927.1, "z": -5564.4, "px": 2888.9, "py": 1098.3, "has_dungeon": false, "has_important": false}, {"id": 9301, "name": "Mistlands_StatueGroup1", "category": "other", "x": -7052.3, "z": -2682.1, "px": 844.4, "py": 1590.3, "has_dungeon": false, "has_important": false}, {"id": 9302, "name": "Mistlands_StatueGroup1", "category": "other", "x": 3780.5, "z": -5429.4, "px": 2693.2, "py": 1121.4, "has_dungeon": false, "has_important": false}, {"id": 9303, "name": "Mistlands_StatueGroup1", "category": "other", "x": 447.8, "z": -7220.4, "px": 2124.4, "py": 815.7, "has_dungeon": false, "has_important": false}, {"id": 9304, "name": "Mistlands_StatueGroup1", "category": "other", "x": 6017.8, "z": -1584.6, "px": 3075.0, "py": 1777.6, "has_dungeon": false, "has_important": false}, {"id": 9305, "name": "Mistlands_StatueGroup1", "category": "other", "x": 4609.8, "z": 6130.0, "px": 2834.7, "py": 3094.2, "has_dungeon": false, "has_important": false}, {"id": 9306, "name": "Mistlands_StatueGroup1", "category": "other", "x": 3269.0, "z": 5369.2, "px": 2605.9, "py": 2964.3, "has_dungeon": false, "has_important": false}, {"id": 9307, "name": "Mistlands_StatueGroup1", "category": "other", "x": 9676.7, "z": 181.3, "px": 3699.5, "py": 2078.9, "has_dungeon": false, "has_important": false}, {"id": 9308, "name": "Mistlands_StatueGroup1", "category": "other", "x": -2096.2, "z": 7481.3, "px": 1690.2, "py": 3324.8, "has_dungeon": false, "has_important": false}, {"id": 9309, "name": "Mistlands_StatueGroup1", "category": "other", "x": 7431.1, "z": -3662.4, "px": 3316.2, "py": 1423.0, "has_dungeon": false, "has_important": false}, {"id": 9310, "name": "Mistlands_StatueGroup1", "category": "other", "x": -951.1, "z": -7169.6, "px": 1885.7, "py": 824.4, "has_dungeon": false, "has_important": false}, {"id": 9311, "name": "Mistlands_StatueGroup1", "category": "other", "x": 2813.3, "z": 6970.4, "px": 2528.1, "py": 3237.6, "has_dungeon": false, "has_important": false}, {"id": 9312, "name": "Mistlands_StatueGroup1", "category": "other", "x": -4233.1, "z": -4413.4, "px": 1325.6, "py": 1294.8, "has_dungeon": false, "has_important": false}, {"id": 9313, "name": "Mistlands_StatueGroup1", "category": "other", "x": 1604.2, "z": 7417.7, "px": 2321.8, "py": 3314.0, "has_dungeon": false, "has_important": false}, {"id": 9314, "name": "Mistlands_StatueGroup1", "category": "other", "x": -2885.8, "z": -6021.1, "px": 1555.5, "py": 1020.4, "has_dungeon": false, "has_important": false}, {"id": 9315, "name": "Mistlands_StatueGroup1", "category": "other", "x": 5827.1, "z": -4297.2, "px": 3042.5, "py": 1314.6, "has_dungeon": false, "has_important": false}, {"id": 9316, "name": "Mistlands_StatueGroup1", "category": "other", "x": -2057.7, "z": -7348.7, "px": 1696.8, "py": 793.8, "has_dungeon": false, "has_important": false}, {"id": 9317, "name": "Mistlands_StatueGroup1", "category": "other", "x": 9594.8, "z": -2228.6, "px": 3685.5, "py": 1667.7, "has_dungeon": false, "has_important": false}, {"id": 9318, "name": "Mistlands_StatueGroup1", "category": "other", "x": -5376.9, "z": -2893.2, "px": 1130.3, "py": 1554.2, "has_dungeon": false, "has_important": false}, {"id": 9319, "name": "Mistlands_StatueGroup1", "category": "other", "x": -1597.9, "z": -7051.7, "px": 1775.3, "py": 844.5, "has_dungeon": false, "has_important": false}, {"id": 9320, "name": "Mistlands_StatueGroup1", "category": "other", "x": 4230.1, "z": 5901.7, "px": 2769.9, "py": 3055.2, "has_dungeon": false, "has_important": false}, {"id": 9321, "name": "Mistlands_StatueGroup1", "category": "other", "x": 245.1, "z": -6842.6, "px": 2089.8, "py": 880.2, "has_dungeon": false, "has_important": false}, {"id": 9322, "name": "Mistlands_StatueGroup1", "category": "other", "x": 7561.1, "z": 245.4, "px": 3338.4, "py": 2089.9, "has_dungeon": false, "has_important": false}, {"id": 9323, "name": "Mistlands_StatueGroup1", "category": "other", "x": -7627.4, "z": -2620.6, "px": 746.3, "py": 1600.8, "has_dungeon": false, "has_important": false}, {"id": 9324, "name": "Mistlands_StatueGroup1", "category": "other", "x": 8326.4, "z": -1592.8, "px": 3469.0, "py": 1776.2, "has_dungeon": false, "has_important": false}, {"id": 9325, "name": "Mistlands_StatueGroup1", "category": "other", "x": -5519.8, "z": -4234.2, "px": 1106.0, "py": 1325.4, "has_dungeon": false, "has_important": false}, {"id": 9326, "name": "Mistlands_StatueGroup1", "category": "other", "x": 9077.6, "z": -1854.3, "px": 3597.2, "py": 1731.5, "has_dungeon": false, "has_important": false}, {"id": 9327, "name": "Mistlands_StatueGroup1", "category": "other", "x": -5630.6, "z": -5305.9, "px": 1087.0, "py": 1142.5, "has_dungeon": false, "has_important": false}, {"id": 9328, "name": "Mistlands_StatueGroup1", "category": "other", "x": -7030.1, "z": -1230.3, "px": 848.2, "py": 1838.0, "has_dungeon": false, "has_important": false}, {"id": 9329, "name": "Mistlands_StatueGroup1", "category": "other", "x": -2882.3, "z": -6580.2, "px": 1556.1, "py": 925.0, "has_dungeon": false, "has_important": false}, {"id": 9330, "name": "Mistlands_StatueGroup1", "category": "other", "x": 4916.0, "z": -5390.2, "px": 2887.0, "py": 1128.1, "has_dungeon": false, "has_important": false}, {"id": 9331, "name": "Mistlands_StatueGroup1", "category": "other", "x": -496.3, "z": -6920.4, "px": 1963.3, "py": 866.9, "has_dungeon": false, "has_important": false}, {"id": 9332, "name": "Mistlands_StatueGroup1", "category": "other", "x": 5511.5, "z": -5498.2, "px": 2988.6, "py": 1109.6, "has_dungeon": false, "has_important": false}, {"id": 9333, "name": "Mistlands_StatueGroup1", "category": "other", "x": -6287.1, "z": 3506.7, "px": 975.0, "py": 2646.5, "has_dungeon": false, "has_important": false}, {"id": 9334, "name": "Mistlands_StatueGroup1", "category": "other", "x": -4675.6, "z": -4082.4, "px": 1250.0, "py": 1351.3, "has_dungeon": false, "has_important": false}, {"id": 9335, "name": "Mistlands_StatueGroup1", "category": "other", "x": -2104.7, "z": -5761.0, "px": 1688.8, "py": 1064.8, "has_dungeon": false, "has_important": false}, {"id": 9336, "name": "Mistlands_StatueGroup1", "category": "other", "x": -7562.6, "z": 1146.6, "px": 757.3, "py": 2243.7, "has_dungeon": false, "has_important": false}, {"id": 9337, "name": "Mistlands_StatueGroup1", "category": "other", "x": -6089.4, "z": -1228.6, "px": 1008.7, "py": 1838.3, "has_dungeon": false, "has_important": false}, {"id": 9338, "name": "Mistlands_StatueGroup1", "category": "other", "x": -5041.5, "z": 4914.0, "px": 1187.6, "py": 2886.7, "has_dungeon": false, "has_important": false}, {"id": 9339, "name": "Mistlands_StatueGroup1", "category": "other", "x": 3335.4, "z": 6000.3, "px": 2617.2, "py": 3072.1, "has_dungeon": false, "has_important": false}, {"id": 9340, "name": "Mistlands_StatueGroup1", "category": "other", "x": -7284.1, "z": -2299.9, "px": 804.8, "py": 1655.5, "has_dungeon": false, "has_important": false}, {"id": 9341, "name": "Mistlands_StatueGroup1", "category": "other", "x": -2165.8, "z": -6663.8, "px": 1678.4, "py": 910.7, "has_dungeon": false, "has_important": false}, {"id": 9342, "name": "Mistlands_StatueGroup1", "category": "other", "x": 8435.6, "z": -3336.9, "px": 3487.7, "py": 1478.5, "has_dungeon": false, "has_important": false}, {"id": 9343, "name": "Mistlands_StatueGroup1", "category": "other", "x": 7858.1, "z": 2999.4, "px": 3389.1, "py": 2559.9, "has_dungeon": false, "has_important": false}, {"id": 9344, "name": "Mistlands_StatueGroup1", "category": "other", "x": 7546.4, "z": 3573.7, "px": 3335.9, "py": 2657.9, "has_dungeon": false, "has_important": false}, {"id": 9345, "name": "Mistlands_StatueGroup1", "category": "other", "x": 8250.9, "z": -1871.2, "px": 3456.2, "py": 1728.6, "has_dungeon": false, "has_important": false}, {"id": 9346, "name": "Mistlands_StatueGroup1", "category": "other", "x": 2818.6, "z": 6448.7, "px": 2529.0, "py": 3148.6, "has_dungeon": false, "has_important": false}, {"id": 9347, "name": "Mistlands_StatueGroup1", "category": "other", "x": 6155.2, "z": -4356.4, "px": 3098.5, "py": 1304.5, "has_dungeon": false, "has_important": false}, {"id": 9348, "name": "Mistlands_StatueGroup1", "category": "other", "x": -5442.1, "z": 5810.5, "px": 1119.2, "py": 3039.7, "has_dungeon": false, "has_important": false}, {"id": 9349, "name": "Mistlands_StatueGroup1", "category": "other", "x": -1290.0, "z": -7044.3, "px": 1827.8, "py": 845.8, "has_dungeon": false, "has_important": false}, {"id": 9350, "name": "Mistlands_StatueGroup1", "category": "other", "x": -3121.1, "z": 6087.7, "px": 1515.3, "py": 3087.0, "has_dungeon": false, "has_important": false}, {"id": 9351, "name": "Mistlands_StatueGroup1", "category": "other", "x": -2043.7, "z": 7229.5, "px": 1699.2, "py": 3281.8, "has_dungeon": false, "has_important": false}, {"id": 9352, "name": "Mistlands_StatueGroup1", "category": "other", "x": -8575.8, "z": 2170.1, "px": 584.4, "py": 2418.4, "has_dungeon": false, "has_important": false}, {"id": 9353, "name": "Mistlands_StatueGroup1", "category": "other", "x": -7989.1, "z": -4227.6, "px": 684.5, "py": 1326.5, "has_dungeon": false, "has_important": false}, {"id": 9354, "name": "Mistlands_StatueGroup1", "category": "other", "x": -7095.6, "z": -1712.2, "px": 837.0, "py": 1755.8, "has_dungeon": false, "has_important": false}, {"id": 9355, "name": "Mistlands_StatueGroup1", "category": "other", "x": -8560.9, "z": -1482.4, "px": 586.9, "py": 1795.0, "has_dungeon": false, "has_important": false}, {"id": 9356, "name": "Mistlands_StatueGroup1", "category": "other", "x": -7665.6, "z": -3381.4, "px": 739.7, "py": 1470.9, "has_dungeon": false, "has_important": false}, {"id": 9357, "name": "Mistlands_StatueGroup1", "category": "other", "x": 8836.5, "z": -2227.1, "px": 3556.1, "py": 1667.9, "has_dungeon": false, "has_important": false}, {"id": 9358, "name": "Mistlands_StatueGroup1", "category": "other", "x": -2364.5, "z": 6792.0, "px": 1644.5, "py": 3207.2, "has_dungeon": false, "has_important": false}, {"id": 9359, "name": "Mistlands_StatueGroup1", "category": "other", "x": -6218.9, "z": 3847.2, "px": 986.6, "py": 2704.6, "has_dungeon": false, "has_important": false}, {"id": 9360, "name": "Mistlands_StatueGroup1", "category": "other", "x": -1025.1, "z": -6084.4, "px": 1873.0, "py": 1009.6, "has_dungeon": false, "has_important": false}, {"id": 9361, "name": "Mistlands_StatueGroup1", "category": "other", "x": 4236.4, "z": -4490.3, "px": 2771.0, "py": 1281.7, "has_dungeon": false, "has_important": false}, {"id": 9362, "name": "Mistlands_StatueGroup1", "category": "other", "x": 4345.1, "z": 5324.2, "px": 2789.6, "py": 2956.7, "has_dungeon": false, "has_important": false}, {"id": 9363, "name": "Mistlands_StatueGroup1", "category": "other", "x": 634.7, "z": 6654.7, "px": 2156.3, "py": 3183.7, "has_dungeon": false, "has_important": false}, {"id": 9364, "name": "Mistlands_StatueGroup1", "category": "other", "x": 1787.7, "z": -7155.7, "px": 2353.1, "py": 826.8, "has_dungeon": false, "has_important": false}, {"id": 9365, "name": "Mistlands_StatueGroup1", "category": "other", "x": 8700.8, "z": -3515.1, "px": 3532.9, "py": 1448.1, "has_dungeon": false, "has_important": false}, {"id": 9366, "name": "Mistlands_StatueGroup1", "category": "other", "x": 7931.3, "z": 2445.5, "px": 3401.6, "py": 2465.4, "has_dungeon": false, "has_important": false}, {"id": 9367, "name": "Mistlands_StatueGroup1", "category": "other", "x": 1164.0, "z": -7617.2, "px": 2246.7, "py": 748.0, "has_dungeon": false, "has_important": false}, {"id": 9368, "name": "Mistlands_StatueGroup1", "category": "other", "x": 7427.1, "z": -4682.1, "px": 3315.6, "py": 1248.9, "has_dungeon": false, "has_important": false}, {"id": 9369, "name": "Mistlands_StatueGroup1", "category": "other", "x": 7484.6, "z": -311.1, "px": 3325.4, "py": 1994.9, "has_dungeon": false, "has_important": false}, {"id": 9370, "name": "Mistlands_StatueGroup1", "category": "other", "x": 3122.1, "z": 6223.7, "px": 2580.8, "py": 3110.2, "has_dungeon": false, "has_important": false}, {"id": 9371, "name": "Mistlands_StatueGroup1", "category": "other", "x": 6791.9, "z": 5176.9, "px": 3207.2, "py": 2931.5, "has_dungeon": false, "has_important": false}, {"id": 9372, "name": "Mistlands_StatueGroup1", "category": "other", "x": 53.7, "z": -6862.2, "px": 2057.2, "py": 876.9, "has_dungeon": false, "has_important": false}, {"id": 9373, "name": "Mistlands_StatueGroup1", "category": "other", "x": 5838.3, "z": 5832.6, "px": 3044.4, "py": 3043.4, "has_dungeon": false, "has_important": false}, {"id": 9374, "name": "Mistlands_StatueGroup1", "category": "other", "x": -1722.8, "z": -5746.4, "px": 1754.0, "py": 1067.3, "has_dungeon": false, "has_important": false}, {"id": 9375, "name": "Mistlands_StatueGroup1", "category": "other", "x": -5839.0, "z": -1780.0, "px": 1051.5, "py": 1744.2, "has_dungeon": false, "has_important": false}, {"id": 9376, "name": "Mistlands_StatueGroup1", "category": "other", "x": -5691.1, "z": -5489.4, "px": 1076.7, "py": 1111.1, "has_dungeon": false, "has_important": false}, {"id": 9377, "name": "Mistlands_StatueGroup1", "category": "other", "x": -709.7, "z": 6726.1, "px": 1926.9, "py": 3195.9, "has_dungeon": false, "has_important": false}, {"id": 9378, "name": "Mistlands_StatueGroup1", "category": "other", "x": 6979.7, "z": -947.6, "px": 3239.2, "py": 1886.3, "has_dungeon": false, "has_important": false}, {"id": 9379, "name": "Mistlands_StatueGroup1", "category": "other", "x": 7486.9, "z": -703.4, "px": 3325.8, "py": 1928.0, "has_dungeon": false, "has_important": false}, {"id": 9380, "name": "Mistlands_StatueGroup1", "category": "other", "x": -9654.3, "z": 822.9, "px": 400.3, "py": 2188.4, "has_dungeon": false, "has_important": false}, {"id": 9381, "name": "Mistlands_StatueGroup1", "category": "other", "x": -6475.0, "z": -1804.3, "px": 942.9, "py": 1740.1, "has_dungeon": false, "has_important": false}, {"id": 9382, "name": "Mistlands_StatueGroup1", "category": "other", "x": 7495.5, "z": -124.1, "px": 3327.2, "py": 2026.8, "has_dungeon": false, "has_important": false}, {"id": 9383, "name": "Mistlands_StatueGroup1", "category": "other", "x": -7496.8, "z": -2563.7, "px": 768.5, "py": 1610.5, "has_dungeon": false, "has_important": false}, {"id": 9384, "name": "Mistlands_StatueGroup1", "category": "other", "x": 5057.2, "z": -5361.7, "px": 2911.1, "py": 1132.9, "has_dungeon": false, "has_important": false}, {"id": 9385, "name": "Mistlands_StatueGroup1", "category": "other", "x": 2947.6, "z": 6196.6, "px": 2551.1, "py": 3105.6, "has_dungeon": false, "has_important": false}, {"id": 9386, "name": "Mistlands_StatueGroup1", "category": "other", "x": 7857.9, "z": 2418.7, "px": 3389.1, "py": 2460.8, "has_dungeon": false, "has_important": false}, {"id": 9387, "name": "Mistlands_StatueGroup1", "category": "other", "x": 7998.3, "z": 1843.3, "px": 3413.0, "py": 2362.6, "has_dungeon": false, "has_important": false}, {"id": 9388, "name": "Mistlands_StatueGroup1", "category": "other", "x": -7565.9, "z": -4600.0, "px": 756.8, "py": 1262.9, "has_dungeon": false, "has_important": false}, {"id": 9389, "name": "Mistlands_StatueGroup1", "category": "other", "x": 2568.0, "z": 6344.6, "px": 2486.3, "py": 3130.8, "has_dungeon": false, "has_important": false}, {"id": 9390, "name": "Mistlands_StatueGroup1", "category": "other", "x": 5746.3, "z": 1842.9, "px": 3028.7, "py": 2362.5, "has_dungeon": false, "has_important": false}, {"id": 9391, "name": "Mistlands_StatueGroup1", "category": "other", "x": 7543.3, "z": -2062.1, "px": 3335.4, "py": 1696.1, "has_dungeon": false, "has_important": false}, {"id": 9392, "name": "Mistlands_StatueGroup1", "category": "other", "x": 9209.7, "z": -2180.6, "px": 3619.8, "py": 1675.8, "has_dungeon": false, "has_important": false}, {"id": 9393, "name": "Mistlands_StatueGroup1", "category": "other", "x": 2675.1, "z": 5624.3, "px": 2504.6, "py": 3007.9, "has_dungeon": false, "has_important": false}, {"id": 9394, "name": "Mistlands_StatueGroup1", "category": "other", "x": -2992.4, "z": -7171.5, "px": 1537.3, "py": 824.1, "has_dungeon": false, "has_important": false}, {"id": 9795, "name": "Mistlands_Swords1", "category": "other", "x": -5950.0, "z": 3572.0, "px": 1032.5, "py": 2657.6, "has_dungeon": false, "has_important": false}, {"id": 9796, "name": "Mistlands_Swords1", "category": "other", "x": -6321.7, "z": 3450.0, "px": 969.1, "py": 2636.8, "has_dungeon": false, "has_important": false}, {"id": 9797, "name": "Mistlands_Swords1", "category": "other", "x": 2189.2, "z": -5947.2, "px": 2421.6, "py": 1033.0, "has_dungeon": false, "has_important": false}, {"id": 9798, "name": "Mistlands_Swords1", "category": "other", "x": 8574.1, "z": -703.8, "px": 3511.3, "py": 1927.9, "has_dungeon": false, "has_important": false}, {"id": 9799, "name": "Mistlands_Swords1", "category": "other", "x": -9286.1, "z": 591.7, "px": 463.2, "py": 2149.0, "has_dungeon": false, "has_important": false}, {"id": 9800, "name": "Mistlands_Swords1", "category": "other", "x": 7827.5, "z": 2872.1, "px": 3383.9, "py": 2538.2, "has_dungeon": false, "has_important": false}, {"id": 9801, "name": "Mistlands_Swords1", "category": "other", "x": 1225.3, "z": 6449.1, "px": 2257.1, "py": 3148.6, "has_dungeon": false, "has_important": false}, {"id": 9802, "name": "Mistlands_Swords1", "category": "other", "x": -3074.9, "z": -6381.1, "px": 1523.2, "py": 959.0, "has_dungeon": false, "has_important": false}, {"id": 9803, "name": "Mistlands_Swords1", "category": "other", "x": 11.8, "z": 6987.4, "px": 2050.0, "py": 3240.5, "has_dungeon": false, "has_important": false}, {"id": 9804, "name": "Mistlands_Swords1", "category": "other", "x": 7633.9, "z": -2441.1, "px": 3350.9, "py": 1631.4, "has_dungeon": false, "has_important": false}, {"id": 9805, "name": "Mistlands_Swords1", "category": "other", "x": -6469.8, "z": 748.8, "px": 943.8, "py": 2175.8, "has_dungeon": false, "has_important": false}, {"id": 9806, "name": "Mistlands_Swords1", "category": "other", "x": 8821.0, "z": -960.9, "px": 3553.5, "py": 1884.0, "has_dungeon": false, "has_important": false}, {"id": 9807, "name": "Mistlands_Swords1", "category": "other", "x": -2221.1, "z": -7090.9, "px": 1668.9, "py": 837.8, "has_dungeon": false, "has_important": false}, {"id": 9808, "name": "Mistlands_Swords1", "category": "other", "x": 1151.0, "z": -7417.5, "px": 2244.4, "py": 782.1, "has_dungeon": false, "has_important": false}, {"id": 9809, "name": "Mistlands_Swords1", "category": "other", "x": -2796.3, "z": -6381.0, "px": 1570.8, "py": 959.0, "has_dungeon": false, "has_important": false}, {"id": 9810, "name": "Mistlands_Swords1", "category": "other", "x": 9679.9, "z": -579.0, "px": 3700.0, "py": 1949.2, "has_dungeon": false, "has_important": false}, {"id": 9811, "name": "Mistlands_Swords1", "category": "other", "x": -7350.3, "z": -1459.1, "px": 793.5, "py": 1799.0, "has_dungeon": false, "has_important": false}, {"id": 9812, "name": "Mistlands_Swords1", "category": "other", "x": 2734.2, "z": 6526.7, "px": 2514.6, "py": 3161.9, "has_dungeon": false, "has_important": false}, {"id": 9813, "name": "Mistlands_Swords1", "category": "other", "x": -13.5, "z": 7291.6, "px": 2045.7, "py": 3292.4, "has_dungeon": false, "has_important": false}, {"id": 9814, "name": "Mistlands_Swords1", "category": "other", "x": 7279.9, "z": 4621.0, "px": 3290.4, "py": 2836.7, "has_dungeon": false, "has_important": false}, {"id": 9815, "name": "Mistlands_Swords1", "category": "other", "x": 255.3, "z": 7538.9, "px": 2091.6, "py": 3334.6, "has_dungeon": false, "has_important": false}, {"id": 9816, "name": "Mistlands_Swords1", "category": "other", "x": 1544.6, "z": -6737.9, "px": 2311.6, "py": 898.1, "has_dungeon": false, "has_important": false}, {"id": 9817, "name": "Mistlands_Swords1", "category": "other", "x": 7477.2, "z": -3850.3, "px": 3324.1, "py": 1390.9, "has_dungeon": false, "has_important": false}, {"id": 9818, "name": "Mistlands_Swords1", "category": "other", "x": -6350.8, "z": 4044.1, "px": 964.1, "py": 2738.2, "has_dungeon": false, "has_important": false}, {"id": 9819, "name": "Mistlands_Swords1", "category": "other", "x": -4342.1, "z": -5486.6, "px": 1306.9, "py": 1111.6, "has_dungeon": false, "has_important": false}, {"id": 9820, "name": "Mistlands_Swords1", "category": "other", "x": -8248.0, "z": -3263.5, "px": 640.3, "py": 1491.0, "has_dungeon": false, "has_important": false}, {"id": 9821, "name": "Mistlands_Swords1", "category": "other", "x": -8374.5, "z": -390.3, "px": 618.8, "py": 1981.4, "has_dungeon": false, "has_important": false}, {"id": 9822, "name": "Mistlands_Swords1", "category": "other", "x": 4482.2, "z": 6078.7, "px": 2813.0, "py": 3085.4, "has_dungeon": false, "has_important": false}, {"id": 9823, "name": "Mistlands_Swords1", "category": "other", "x": 8176.8, "z": 1150.1, "px": 3443.5, "py": 2244.3, "has_dungeon": false, "has_important": false}, {"id": 9824, "name": "Mistlands_Swords1", "category": "other", "x": -8463.4, "z": 2047.1, "px": 603.6, "py": 2397.4, "has_dungeon": false, "has_important": false}, {"id": 9825, "name": "Mistlands_Swords1", "category": "other", "x": -6412.2, "z": 3181.6, "px": 953.7, "py": 2591.0, "has_dungeon": false, "has_important": false}, {"id": 9826, "name": "Mistlands_Swords1", "category": "other", "x": 5805.0, "z": -4432.0, "px": 3038.7, "py": 1291.6, "has_dungeon": false, "has_important": false}, {"id": 9827, "name": "Mistlands_Swords1", "category": "other", "x": 7730.2, "z": -4344.5, "px": 3367.3, "py": 1306.5, "has_dungeon": false, "has_important": false}, {"id": 9828, "name": "Mistlands_Swords2", "category": "other", "x": 8130.8, "z": 3011.4, "px": 3435.7, "py": 2561.9, "has_dungeon": false, "has_important": false}, {"id": 9829, "name": "Mistlands_Swords2", "category": "other", "x": 9871.2, "z": -76.4, "px": 3732.7, "py": 2035.0, "has_dungeon": false, "has_important": false}, {"id": 9830, "name": "Mistlands_Swords2", "category": "other", "x": 8783.3, "z": -3376.9, "px": 3547.0, "py": 1471.7, "has_dungeon": false, "has_important": false}, {"id": 9831, "name": "Mistlands_Swords2", "category": "other", "x": -9602.7, "z": 2297.2, "px": 409.1, "py": 2440.1, "has_dungeon": false, "has_important": false}, {"id": 9832, "name": "Mistlands_Swords2", "category": "other", "x": 7993.8, "z": 2677.1, "px": 3412.3, "py": 2504.9, "has_dungeon": false, "has_important": false}, {"id": 9833, "name": "Mistlands_Swords2", "category": "other", "x": 5761.4, "z": 5831.5, "px": 3031.3, "py": 3043.2, "has_dungeon": false, "has_important": false}, {"id": 9834, "name": "Mistlands_Swords2", "category": "other", "x": 1477.7, "z": -7424.3, "px": 2300.2, "py": 780.9, "has_dungeon": false, "has_important": false}, {"id": 9835, "name": "Mistlands_Swords2", "category": "other", "x": 4470.1, "z": 6414.8, "px": 2810.9, "py": 3142.8, "has_dungeon": false, "has_important": false}, {"id": 9836, "name": "Mistlands_Swords2", "category": "other", "x": 5885.9, "z": 1842.9, "px": 3052.5, "py": 2362.5, "has_dungeon": false, "has_important": false}, {"id": 9837, "name": "Mistlands_Swords2", "category": "other", "x": -7613.4, "z": -3394.7, "px": 748.6, "py": 1468.6, "has_dungeon": false, "has_important": false}, {"id": 9838, "name": "Mistlands_Swords2", "category": "other", "x": 9140.2, "z": 1738.3, "px": 3607.9, "py": 2344.7, "has_dungeon": false, "has_important": false}, {"id": 9839, "name": "Mistlands_Swords2", "category": "other", "x": -7856.0, "z": -264.0, "px": 707.2, "py": 2002.9, "has_dungeon": false, "has_important": false}, {"id": 9840, "name": "Mistlands_Swords2", "category": "other", "x": 9086.7, "z": -1520.5, "px": 3598.8, "py": 1788.5, "has_dungeon": false, "has_important": false}, {"id": 9841, "name": "Mistlands_Swords2", "category": "other", "x": 1139.9, "z": 7670.2, "px": 2242.5, "py": 3357.0, "has_dungeon": false, "has_important": false}, {"id": 9842, "name": "Mistlands_Swords2", "category": "other", "x": -6607.9, "z": 3410.6, "px": 920.3, "py": 2630.1, "has_dungeon": false, "has_important": false}, {"id": 9843, "name": "Mistlands_Swords2", "category": "other", "x": -8814.0, "z": -1339.5, "px": 543.7, "py": 1819.4, "has_dungeon": false, "has_important": false}, {"id": 9844, "name": "Mistlands_Swords2", "category": "other", "x": 6896.7, "z": -851.2, "px": 3225.0, "py": 1902.7, "has_dungeon": false, "has_important": false}, {"id": 9845, "name": "Mistlands_Swords2", "category": "other", "x": 3186.6, "z": 6457.0, "px": 2591.8, "py": 3150.0, "has_dungeon": false, "has_important": false}, {"id": 9846, "name": "Mistlands_Swords2", "category": "other", "x": -3712.3, "z": 5448.3, "px": 1414.4, "py": 2977.8, "has_dungeon": false, "has_important": false}, {"id": 9847, "name": "Mistlands_Swords2", "category": "other", "x": -9033.9, "z": 786.8, "px": 506.2, "py": 2182.3, "has_dungeon": false, "has_important": false}, {"id": 9848, "name": "Mistlands_Swords2", "category": "other", "x": 8339.8, "z": 4230.4, "px": 3471.3, "py": 2770.0, "has_dungeon": false, "has_important": false}, {"id": 9849, "name": "Mistlands_Swords2", "category": "other", "x": -8270.3, "z": -3630.0, "px": 636.5, "py": 1428.5, "has_dungeon": false, "has_important": false}, {"id": 9850, "name": "Mistlands_Swords2", "category": "other", "x": 6780.7, "z": -320.1, "px": 3205.2, "py": 1993.4, "has_dungeon": false, "has_important": false}, {"id": 9851, "name": "Mistlands_Swords2", "category": "other", "x": 5046.4, "z": 5619.9, "px": 2909.3, "py": 3007.1, "has_dungeon": false, "has_important": false}, {"id": 9852, "name": "Mistlands_Swords2", "category": "other", "x": -8580.8, "z": -1670.5, "px": 583.5, "py": 1762.9, "has_dungeon": false, "has_important": false}, {"id": 9853, "name": "Mistlands_Swords2", "category": "other", "x": 6289.9, "z": -4614.8, "px": 3121.5, "py": 1260.4, "has_dungeon": false, "has_important": false}, {"id": 9854, "name": "Mistlands_Swords2", "category": "other", "x": -7314.3, "z": 500.2, "px": 799.7, "py": 2133.4, "has_dungeon": false, "has_important": false}, {"id": 9855, "name": "Mistlands_Swords2", "category": "other", "x": 3456.4, "z": -7166.8, "px": 2637.9, "py": 824.9, "has_dungeon": false, "has_important": false}, {"id": 9856, "name": "Mistlands_Swords2", "category": "other", "x": 2817.6, "z": 5434.5, "px": 2528.9, "py": 2975.5, "has_dungeon": false, "has_important": false}, {"id": 9857, "name": "Mistlands_Swords2", "category": "other", "x": 762.7, "z": 6768.1, "px": 2178.2, "py": 3203.1, "has_dungeon": false, "has_important": false}, {"id": 9858, "name": "Mistlands_Swords2", "category": "other", "x": -7724.6, "z": -3076.0, "px": 729.7, "py": 1523.0, "has_dungeon": false, "has_important": false}, {"id": 9859, "name": "Mistlands_Swords2", "category": "other", "x": 8583.9, "z": 1266.1, "px": 3513.0, "py": 2264.1, "has_dungeon": false, "has_important": false}, {"id": 9860, "name": "Mistlands_Swords2", "category": "other", "x": 378.9, "z": 6789.2, "px": 2112.7, "py": 3206.7, "has_dungeon": false, "has_important": false}, {"id": 9861, "name": "Mistlands_Swords3", "category": "other", "x": -9096.5, "z": -2259.0, "px": 495.5, "py": 1662.5, "has_dungeon": false, "has_important": false}, {"id": 9862, "name": "Mistlands_Swords3", "category": "other", "x": 9272.4, "z": -1773.1, "px": 3630.5, "py": 1745.4, "has_dungeon": false, "has_important": false}, {"id": 9863, "name": "Mistlands_Swords3", "category": "other", "x": 6920.3, "z": 5103.9, "px": 3229.1, "py": 2919.1, "has_dungeon": false, "has_important": false}, {"id": 9864, "name": "Mistlands_Swords3", "category": "other", "x": -5427.2, "z": 6037.9, "px": 1121.8, "py": 3078.5, "has_dungeon": false, "has_important": false}, {"id": 9865, "name": "Mistlands_Swords3", "category": "other", "x": -6952.5, "z": -1492.0, "px": 861.4, "py": 1793.4, "has_dungeon": false, "has_important": false}, {"id": 9866, "name": "Mistlands_Swords3", "category": "other", "x": -5510.4, "z": -4110.3, "px": 1107.6, "py": 1346.5, "has_dungeon": false, "has_important": false}, {"id": 9867, "name": "Mistlands_Swords3", "category": "other", "x": 7024.5, "z": -3600.8, "px": 3246.8, "py": 1433.5, "has_dungeon": false, "has_important": false}, {"id": 9868, "name": "Mistlands_Swords3", "category": "other", "x": -5395.8, "z": 3158.2, "px": 1127.1, "py": 2587.0, "has_dungeon": false, "has_important": false}, {"id": 9869, "name": "Mistlands_Swords3", "category": "other", "x": -1385.7, "z": 7433.2, "px": 1811.5, "py": 3316.6, "has_dungeon": false, "has_important": false}, {"id": 9870, "name": "Mistlands_Swords3", "category": "other", "x": 7560.2, "z": 4932.7, "px": 3338.3, "py": 2889.8, "has_dungeon": false, "has_important": false}, {"id": 9871, "name": "Mistlands_Swords3", "category": "other", "x": 4115.5, "z": -5622.0, "px": 2750.4, "py": 1088.5, "has_dungeon": false, "has_important": false}, {"id": 9872, "name": "Mistlands_Swords3", "category": "other", "x": -8700.4, "z": 3318.8, "px": 563.1, "py": 2614.4, "has_dungeon": false, "has_important": false}, {"id": 9873, "name": "Mistlands_Swords3", "category": "other", "x": 8490.3, "z": 451.8, "px": 3497.0, "py": 2125.1, "has_dungeon": false, "has_important": false}, {"id": 9874, "name": "Mistlands_Swords3", "category": "other", "x": 8316.2, "z": -3328.6, "px": 3467.3, "py": 1479.9, "has_dungeon": false, "has_important": false}, {"id": 9875, "name": "Mistlands_Swords3", "category": "other", "x": -7305.5, "z": 787.3, "px": 801.2, "py": 2182.4, "has_dungeon": false, "has_important": false}, {"id": 9876, "name": "Mistlands_Swords3", "category": "other", "x": -9582.4, "z": 1036.3, "px": 412.6, "py": 2224.9, "has_dungeon": false, "has_important": false}, {"id": 9877, "name": "Mistlands_Swords3", "category": "other", "x": 6521.1, "z": 2897.6, "px": 3160.9, "py": 2542.5, "has_dungeon": false, "has_important": false}, {"id": 9878, "name": "Mistlands_Swords3", "category": "other", "x": -3456.6, "z": 5329.3, "px": 1458.1, "py": 2957.5, "has_dungeon": false, "has_important": false}, {"id": 9879, "name": "Mistlands_Swords3", "category": "other", "x": 1687.8, "z": -6998.5, "px": 2336.1, "py": 853.6, "has_dungeon": false, "has_important": false}, {"id": 9880, "name": "Mistlands_Swords3", "category": "other", "x": 3825.6, "z": -6124.2, "px": 2700.9, "py": 1002.8, "has_dungeon": false, "has_important": false}, {"id": 9881, "name": "Mistlands_Swords3", "category": "other", "x": -122.0, "z": -6461.8, "px": 2027.2, "py": 945.2, "has_dungeon": false, "has_important": false}, {"id": 9882, "name": "Mistlands_Swords3", "category": "other", "x": -2578.0, "z": -6614.5, "px": 1608.0, "py": 919.1, "has_dungeon": false, "has_important": false}, {"id": 9883, "name": "Mistlands_Swords3", "category": "other", "x": 7318.5, "z": -2056.9, "px": 3297.0, "py": 1697.0, "has_dungeon": false, "has_important": false}, {"id": 9884, "name": "Mistlands_Swords3", "category": "other", "x": -9211.7, "z": -773.6, "px": 475.9, "py": 1916.0, "has_dungeon": false, "has_important": false}, {"id": 9885, "name": "Mistlands_Swords3", "category": "other", "x": 7984.0, "z": 1538.6, "px": 3410.6, "py": 2310.6, "has_dungeon": false, "has_important": false}, {"id": 9886, "name": "Mistlands_Swords3", "category": "other", "x": -5200.0, "z": 4632.0, "px": 1160.5, "py": 2838.5, "has_dungeon": false, "has_important": false}, {"id": 9887, "name": "Mistlands_Swords3", "category": "other", "x": -6450.6, "z": -951.6, "px": 947.1, "py": 1885.6, "has_dungeon": false, "has_important": false}, {"id": 9888, "name": "Mistlands_Swords3", "category": "other", "x": 2288.7, "z": -6733.6, "px": 2438.6, "py": 898.8, "has_dungeon": false, "has_important": false}, {"id": 9889, "name": "Mistlands_Swords3", "category": "other", "x": 3441.8, "z": -6470.8, "px": 2635.4, "py": 943.7, "has_dungeon": false, "has_important": false}, {"id": 9890, "name": "Mistlands_Swords3", "category": "other", "x": 8766.5, "z": -2348.4, "px": 3544.1, "py": 1647.2, "has_dungeon": false, "has_important": false}, {"id": 9891, "name": "Mistlands_Swords3", "category": "other", "x": 1344.4, "z": 5995.1, "px": 2277.4, "py": 3071.2, "has_dungeon": false, "has_important": false}, {"id": 9892, "name": "Mistlands_Swords3", "category": "other", "x": -7570.3, "z": -1085.7, "px": 756.0, "py": 1862.7, "has_dungeon": false, "has_important": false}, {"id": 9893, "name": "Mistlands_Swords3", "category": "other", "x": 5830.5, "z": 2988.0, "px": 3043.1, "py": 2558.0, "has_dungeon": false, "has_important": false}, {"id": 8245, "name": "Mistlands_Viaduct1", "category": "other", "x": -2172.4, "z": 6783.1, "px": 1677.2, "py": 3205.6, "has_dungeon": false, "has_important": false}, {"id": 8246, "name": "Mistlands_Viaduct1", "category": "other", "x": 7676.3, "z": 2179.9, "px": 3358.1, "py": 2420.0, "has_dungeon": false, "has_important": false}, {"id": 8247, "name": "Mistlands_Viaduct1", "category": "other", "x": 7109.9, "z": -3655.4, "px": 3261.4, "py": 1424.1, "has_dungeon": false, "has_important": false}, {"id": 8248, "name": "Mistlands_Viaduct1", "category": "other", "x": 4545.9, "z": 6466.8, "px": 2823.8, "py": 3151.7, "has_dungeon": false, "has_important": false}, {"id": 8249, "name": "Mistlands_Viaduct1", "category": "other", "x": -7110.3, "z": -893.1, "px": 834.5, "py": 1895.6, "has_dungeon": false, "has_important": false}, {"id": 8250, "name": "Mistlands_Viaduct1", "category": "other", "x": 4025.8, "z": -5378.5, "px": 2735.1, "py": 1130.1, "has_dungeon": false, "has_important": false}, {"id": 8251, "name": "Mistlands_Viaduct1", "category": "other", "x": 3064.8, "z": 5696.6, "px": 2571.1, "py": 3020.2, "has_dungeon": false, "has_important": false}, {"id": 8252, "name": "Mistlands_Viaduct1", "category": "other", "x": 6204.6, "z": 2488.3, "px": 3106.9, "py": 2472.7, "has_dungeon": false, "has_important": false}, {"id": 8253, "name": "Mistlands_Viaduct1", "category": "other", "x": -1212.9, "z": -6271.4, "px": 1841.0, "py": 977.7, "has_dungeon": false, "has_important": false}, {"id": 8254, "name": "Mistlands_Viaduct1", "category": "other", "x": -1219.7, "z": -6969.1, "px": 1839.8, "py": 858.6, "has_dungeon": false, "has_important": false}, {"id": 8255, "name": "Mistlands_Viaduct1", "category": "other", "x": -9540.1, "z": 1022.2, "px": 419.8, "py": 2222.5, "has_dungeon": false, "has_important": false}, {"id": 8256, "name": "Mistlands_Viaduct1", "category": "other", "x": -3844.0, "z": 5754.1, "px": 1392.0, "py": 3030.0, "has_dungeon": false, "has_important": false}, {"id": 8257, "name": "Mistlands_Viaduct1", "category": "other", "x": -699.1, "z": -6843.7, "px": 1928.7, "py": 880.0, "has_dungeon": false, "has_important": false}, {"id": 8258, "name": "Mistlands_Viaduct1", "category": "other", "x": -5944.8, "z": -2619.3, "px": 1033.4, "py": 1601.0, "has_dungeon": false, "has_important": false}, {"id": 8259, "name": "Mistlands_Viaduct1", "category": "other", "x": -4550.5, "z": -6530.4, "px": 1271.4, "py": 933.5, "has_dungeon": false, "has_important": false}, {"id": 8260, "name": "Mistlands_Viaduct1", "category": "other", "x": -2947.6, "z": 5439.4, "px": 1544.9, "py": 2976.3, "has_dungeon": false, "has_important": false}, {"id": 8261, "name": "Mistlands_Viaduct1", "category": "other", "x": 6717.5, "z": 5112.6, "px": 3194.5, "py": 2920.6, "has_dungeon": false, "has_important": false}, {"id": 8262, "name": "Mistlands_Viaduct1", "category": "other", "x": 8966.6, "z": -1977.0, "px": 3578.3, "py": 1710.6, "has_dungeon": false, "has_important": false}, {"id": 8263, "name": "Mistlands_Viaduct1", "category": "other", "x": 4992.2, "z": -5952.1, "px": 2900.0, "py": 1032.2, "has_dungeon": false, "has_important": false}, {"id": 8264, "name": "Mistlands_Viaduct1", "category": "other", "x": 3199.6, "z": 6980.9, "px": 2594.1, "py": 3239.4, "has_dungeon": false, "has_important": false}, {"id": 8265, "name": "Mistlands_Viaduct1", "category": "other", "x": 5624.6, "z": 3577.3, "px": 3007.9, "py": 2658.5, "has_dungeon": false, "has_important": false}, {"id": 8266, "name": "Mistlands_Viaduct1", "category": "other", "x": 2683.9, "z": 6272.7, "px": 2506.1, "py": 3118.5, "has_dungeon": false, "has_important": false}, {"id": 8267, "name": "Mistlands_Viaduct1", "category": "other", "x": -6904.0, "z": 4994.9, "px": 869.7, "py": 2900.5, "has_dungeon": false, "has_important": false}, {"id": 8268, "name": "Mistlands_Viaduct1", "category": "other", "x": -6713.3, "z": -1595.1, "px": 902.3, "py": 1775.8, "has_dungeon": false, "has_important": false}, {"id": 8269, "name": "Mistlands_Viaduct1", "category": "other", "x": -4167.6, "z": 4666.8, "px": 1336.7, "py": 2844.5, "has_dungeon": false, "has_important": false}, {"id": 8270, "name": "Mistlands_Viaduct1", "category": "other", "x": -9026.2, "z": 1208.0, "px": 507.5, "py": 2254.2, "has_dungeon": false, "has_important": false}, {"id": 8271, "name": "Mistlands_Viaduct1", "category": "other", "x": -6595.8, "z": 4935.2, "px": 922.3, "py": 2890.3, "has_dungeon": false, "has_important": false}, {"id": 8272, "name": "Mistlands_Viaduct1", "category": "other", "x": 8447.5, "z": 4029.5, "px": 3489.7, "py": 2735.7, "has_dungeon": false, "has_important": false}, {"id": 8273, "name": "Mistlands_Viaduct1", "category": "other", "x": -8963.2, "z": -2179.3, "px": 518.3, "py": 1676.1, "has_dungeon": false, "has_important": false}, {"id": 8274, "name": "Mistlands_Viaduct1", "category": "other", "x": 8577.7, "z": -3262.6, "px": 3511.9, "py": 1491.2, "has_dungeon": false, "has_important": false}, {"id": 8275, "name": "Mistlands_Viaduct1", "category": "other", "x": 7237.3, "z": 3579.1, "px": 3283.2, "py": 2658.8, "has_dungeon": false, "has_important": false}, {"id": 8276, "name": "Mistlands_Viaduct1", "category": "other", "x": -7039.1, "z": 699.4, "px": 846.7, "py": 2167.4, "has_dungeon": false, "has_important": false}, {"id": 8277, "name": "Mistlands_Viaduct1", "category": "other", "x": 7873.8, "z": -4477.7, "px": 3391.8, "py": 1283.8, "has_dungeon": false, "has_important": false}, {"id": 8278, "name": "Mistlands_Viaduct1", "category": "other", "x": 6205.8, "z": 5636.4, "px": 3107.1, "py": 3009.9, "has_dungeon": false, "has_important": false}, {"id": 8279, "name": "Mistlands_Viaduct1", "category": "other", "x": 2488.1, "z": -6651.3, "px": 2472.6, "py": 912.8, "has_dungeon": false, "has_important": false}, {"id": 8280, "name": "Mistlands_Viaduct1", "category": "other", "x": 8454.0, "z": -1466.6, "px": 3490.8, "py": 1797.7, "has_dungeon": false, "has_important": false}, {"id": 8281, "name": "Mistlands_Viaduct1", "category": "other", "x": 6215.2, "z": -1286.8, "px": 3108.7, "py": 1828.4, "has_dungeon": false, "has_important": false}, {"id": 8282, "name": "Mistlands_Viaduct1", "category": "other", "x": 9082.3, "z": -3646.4, "px": 3598.0, "py": 1425.7, "has_dungeon": false, "has_important": false}, {"id": 8283, "name": "Mistlands_Viaduct1", "category": "other", "x": 6200.0, "z": 3198.0, "px": 3106.1, "py": 2593.8, "has_dungeon": false, "has_important": false}, {"id": 8284, "name": "Mistlands_Viaduct1", "category": "other", "x": 1159.5, "z": 7364.3, "px": 2245.9, "py": 3304.8, "has_dungeon": false, "has_important": false}, {"id": 8285, "name": "Mistlands_Viaduct1", "category": "other", "x": 5885.0, "z": 5122.0, "px": 3052.4, "py": 2922.2, "has_dungeon": false, "has_important": false}, {"id": 8286, "name": "Mistlands_Viaduct1", "category": "other", "x": 8258.7, "z": 1159.3, "px": 3457.5, "py": 2245.9, "has_dungeon": false, "has_important": false}, {"id": 8287, "name": "Mistlands_Viaduct1", "category": "other", "x": 8900.3, "z": 894.7, "px": 3567.0, "py": 2200.7, "has_dungeon": false, "has_important": false}, {"id": 8288, "name": "Mistlands_Viaduct1", "category": "other", "x": -6402.0, "z": 3322.5, "px": 955.4, "py": 2615.0, "has_dungeon": false, "has_important": false}, {"id": 8289, "name": "Mistlands_Viaduct1", "category": "other", "x": -7481.7, "z": -3449.9, "px": 771.1, "py": 1459.2, "has_dungeon": false, "has_important": false}, {"id": 8290, "name": "Mistlands_Viaduct1", "category": "other", "x": -5702.2, "z": -2050.6, "px": 1074.8, "py": 1698.0, "has_dungeon": false, "has_important": false}, {"id": 8291, "name": "Mistlands_Viaduct1", "category": "other", "x": 7546.9, "z": 4549.7, "px": 3336.0, "py": 2824.5, "has_dungeon": false, "has_important": false}, {"id": 8292, "name": "Mistlands_Viaduct1", "category": "other", "x": -9221.6, "z": -441.3, "px": 474.2, "py": 1972.7, "has_dungeon": false, "has_important": false}, {"id": 8293, "name": "Mistlands_Viaduct1", "category": "other", "x": -5307.0, "z": 6397.1, "px": 1142.3, "py": 3139.8, "has_dungeon": false, "has_important": false}, {"id": 8294, "name": "Mistlands_Viaduct1", "category": "other", "x": -6147.7, "z": 3841.7, "px": 998.8, "py": 2703.7, "has_dungeon": false, "has_important": false}, {"id": 8295, "name": "Mistlands_Viaduct1", "category": "other", "x": -2247.0, "z": -6917.9, "px": 1664.5, "py": 867.3, "has_dungeon": false, "has_important": false}, {"id": 8296, "name": "Mistlands_Viaduct1", "category": "other", "x": 3905.0, "z": -6787.2, "px": 2714.5, "py": 889.7, "has_dungeon": false, "has_important": false}, {"id": 8297, "name": "Mistlands_Viaduct1", "category": "other", "x": 7616.5, "z": -2179.0, "px": 3347.9, "py": 1676.1, "has_dungeon": false, "has_important": false}, {"id": 8298, "name": "Mistlands_Viaduct1", "category": "other", "x": -6776.5, "z": 762.1, "px": 891.5, "py": 2178.1, "has_dungeon": false, "has_important": false}, {"id": 8299, "name": "Mistlands_Viaduct1", "category": "other", "x": -1411.1, "z": -6215.5, "px": 1807.2, "py": 987.2, "has_dungeon": false, "has_important": false}, {"id": 8300, "name": "Mistlands_Viaduct1", "category": "other", "x": 6086.1, "z": 5176.3, "px": 3086.7, "py": 2931.4, "has_dungeon": false, "has_important": false}, {"id": 8301, "name": "Mistlands_Viaduct1", "category": "other", "x": 4344.8, "z": -7098.1, "px": 2789.5, "py": 836.6, "has_dungeon": false, "has_important": false}, {"id": 8302, "name": "Mistlands_Viaduct1", "category": "other", "x": -8454.5, "z": -3387.8, "px": 605.1, "py": 1469.8, "has_dungeon": false, "has_important": false}, {"id": 8303, "name": "Mistlands_Viaduct1", "category": "other", "x": 7416.0, "z": -2045.1, "px": 3313.7, "py": 1699.0, "has_dungeon": false, "has_important": false}, {"id": 8304, "name": "Mistlands_Viaduct1", "category": "other", "x": 1982.2, "z": -7366.6, "px": 2386.3, "py": 790.8, "has_dungeon": false, "has_important": false}, {"id": 8305, "name": "Mistlands_Viaduct1", "category": "other", "x": 5700.5, "z": 4165.7, "px": 3020.9, "py": 2758.9, "has_dungeon": false, "has_important": false}, {"id": 8306, "name": "Mistlands_Viaduct1", "category": "other", "x": 8575.0, "z": -516.1, "px": 3511.5, "py": 1959.9, "has_dungeon": false, "has_important": false}, {"id": 8307, "name": "Mistlands_Viaduct1", "category": "other", "x": -9471.9, "z": 451.1, "px": 431.5, "py": 2125.0, "has_dungeon": false, "has_important": false}, {"id": 8308, "name": "Mistlands_Viaduct1", "category": "other", "x": -8251.3, "z": -3328.6, "px": 639.8, "py": 1479.9, "has_dungeon": false, "has_important": false}, {"id": 8309, "name": "Mistlands_Viaduct1", "category": "other", "x": 3071.3, "z": 6981.7, "px": 2572.2, "py": 3239.5, "has_dungeon": false, "has_important": false}, {"id": 8310, "name": "Mistlands_Viaduct1", "category": "other", "x": 7998.3, "z": 1671.9, "px": 3413.0, "py": 2333.3, "has_dungeon": false, "has_important": false}, {"id": 8311, "name": "Mistlands_Viaduct1", "category": "other", "x": -5115.0, "z": -3716.7, "px": 1175.0, "py": 1413.7, "has_dungeon": false, "has_important": false}, {"id": 8312, "name": "Mistlands_Viaduct1", "category": "other", "x": -9533.5, "z": -2432.8, "px": 420.9, "py": 1632.8, "has_dungeon": false, "has_important": false}, {"id": 8313, "name": "Mistlands_Viaduct1", "category": "other", "x": -7042.2, "z": -1593.2, "px": 846.1, "py": 1776.1, "has_dungeon": false, "has_important": false}, {"id": 8314, "name": "Mistlands_Viaduct1", "category": "other", "x": 8389.6, "z": -3012.1, "px": 3479.8, "py": 1533.9, "has_dungeon": false, "has_important": false}, {"id": 8315, "name": "Mistlands_Viaduct1", "category": "other", "x": -5179.7, "z": 5895.1, "px": 1164.0, "py": 3054.1, "has_dungeon": false, "has_important": false}, {"id": 8316, "name": "Mistlands_Viaduct1", "category": "other", "x": 4282.4, "z": -4538.1, "px": 2778.9, "py": 1273.5, "has_dungeon": false, "has_important": false}, {"id": 8317, "name": "Mistlands_Viaduct1", "category": "other", "x": 8829.6, "z": -3453.0, "px": 3554.9, "py": 1458.7, "has_dungeon": false, "has_important": false}, {"id": 8318, "name": "Mistlands_Viaduct1", "category": "other", "x": -9023.9, "z": 1785.5, "px": 507.9, "py": 2352.7, "has_dungeon": false, "has_important": false}, {"id": 8319, "name": "Mistlands_Viaduct1", "category": "other", "x": 8258.2, "z": 4281.6, "px": 3457.4, "py": 2778.7, "has_dungeon": false, "has_important": false}, {"id": 8320, "name": "Mistlands_Viaduct1", "category": "other", "x": -448.1, "z": -6785.9, "px": 1971.5, "py": 889.9, "has_dungeon": false, "has_important": false}, {"id": 8321, "name": "Mistlands_Viaduct1", "category": "other", "x": -9340.7, "z": 902.5, "px": 453.9, "py": 2202.0, "has_dungeon": false, "has_important": false}, {"id": 8322, "name": "Mistlands_Viaduct1", "category": "other", "x": -8251.6, "z": -3526.3, "px": 639.7, "py": 1446.2, "has_dungeon": false, "has_important": false}, {"id": 8323, "name": "Mistlands_Viaduct1", "category": "other", "x": -8391.4, "z": -2876.3, "px": 615.9, "py": 1557.1, "has_dungeon": false, "has_important": false}, {"id": 8324, "name": "Mistlands_Viaduct1", "category": "other", "x": -8249.1, "z": 2375.7, "px": 640.2, "py": 2453.5, "has_dungeon": false, "has_important": false}, {"id": 8325, "name": "Mistlands_Viaduct1", "category": "other", "x": -9413.7, "z": -966.2, "px": 441.4, "py": 1883.1, "has_dungeon": false, "has_important": false}, {"id": 8326, "name": "Mistlands_Viaduct1", "category": "other", "x": -637.1, "z": 6662.8, "px": 1939.3, "py": 3185.1, "has_dungeon": false, "has_important": false}, {"id": 8327, "name": "Mistlands_Viaduct1", "category": "other", "x": 8314.0, "z": -1785.4, "px": 3466.9, "py": 1743.3, "has_dungeon": false, "has_important": false}, {"id": 8328, "name": "Mistlands_Viaduct1", "category": "other", "x": 4996.6, "z": 4483.5, "px": 2900.8, "py": 2813.2, "has_dungeon": false, "has_important": false}, {"id": 8329, "name": "Mistlands_Viaduct1", "category": "other", "x": -4474.8, "z": 5564.6, "px": 1284.3, "py": 2997.7, "has_dungeon": false, "has_important": false}, {"id": 8330, "name": "Mistlands_Viaduct1", "category": "other", "x": 1348.8, "z": -6717.7, "px": 2278.2, "py": 901.5, "has_dungeon": false, "has_important": false}, {"id": 8331, "name": "Mistlands_Viaduct1", "category": "other", "x": -1539.7, "z": -7228.0, "px": 1785.2, "py": 814.4, "has_dungeon": false, "has_important": false}, {"id": 8332, "name": "Mistlands_Viaduct1", "category": "other", "x": -5447.9, "z": 3321.1, "px": 1118.2, "py": 2614.8, "has_dungeon": false, "has_important": false}, {"id": 8333, "name": "Mistlands_Viaduct1", "category": "other", "x": -5372.1, "z": -3969.3, "px": 1131.2, "py": 1370.6, "has_dungeon": false, "has_important": false}, {"id": 8334, "name": "Mistlands_Viaduct1", "category": "other", "x": 4800.7, "z": -4154.4, "px": 2867.3, "py": 1339.0, "has_dungeon": false, "has_important": false}, {"id": 8335, "name": "Mistlands_Viaduct1", "category": "other", "x": -3079.6, "z": -7302.6, "px": 1522.4, "py": 801.7, "has_dungeon": false, "has_important": false}, {"id": 8336, "name": "Mistlands_Viaduct1", "category": "other", "x": -6402.5, "z": 5754.6, "px": 955.3, "py": 3030.1, "has_dungeon": false, "has_important": false}, {"id": 8337, "name": "Mistlands_Viaduct1", "category": "other", "x": -4026.8, "z": 5437.1, "px": 1360.8, "py": 2975.9, "has_dungeon": false, "has_important": false}, {"id": 8338, "name": "Mistlands_Viaduct1", "category": "other", "x": 5379.2, "z": 3128.5, "px": 2966.1, "py": 2581.9, "has_dungeon": false, "has_important": false}, {"id": 8339, "name": "Mistlands_Viaduct1", "category": "other", "x": 4665.1, "z": -4546.0, "px": 2844.2, "py": 1272.1, "has_dungeon": false, "has_important": false}, {"id": 8340, "name": "Mistlands_Viaduct1", "category": "other", "x": 5505.9, "z": 3386.0, "px": 2987.7, "py": 2625.9, "has_dungeon": false, "has_important": false}, {"id": 8341, "name": "Mistlands_Viaduct1", "category": "other", "x": -9089.1, "z": 1091.6, "px": 496.8, "py": 2234.3, "has_dungeon": false, "has_important": false}, {"id": 8342, "name": "Mistlands_Viaduct1", "category": "other", "x": 7481.0, "z": -4869.0, "px": 3324.8, "py": 1217.0, "has_dungeon": false, "has_important": false}, {"id": 8343, "name": "Mistlands_Viaduct1", "category": "other", "x": 6914.5, "z": -5188.1, "px": 3228.1, "py": 1162.6, "has_dungeon": false, "has_important": false}, {"id": 8344, "name": "Mistlands_Viaduct1", "category": "other", "x": 5629.0, "z": 6338.5, "px": 3008.7, "py": 3129.8, "has_dungeon": false, "has_important": false}, {"id": 8345, "name": "Mistlands_Viaduct2", "category": "other", "x": 3313.2, "z": 5702.6, "px": 2613.5, "py": 3021.2, "has_dungeon": false, "has_important": false}, {"id": 8346, "name": "Mistlands_Viaduct2", "category": "other", "x": 9260.8, "z": -3307.0, "px": 3628.5, "py": 1483.6, "has_dungeon": false, "has_important": false}, {"id": 8347, "name": "Mistlands_Viaduct2", "category": "other", "x": 7682.1, "z": -4226.3, "px": 3359.1, "py": 1326.7, "has_dungeon": false, "has_important": false}, {"id": 8348, "name": "Mistlands_Viaduct2", "category": "other", "x": 8211.0, "z": 2127.6, "px": 3449.3, "py": 2411.1, "has_dungeon": false, "has_important": false}, {"id": 8349, "name": "Mistlands_Viaduct2", "category": "other", "x": -3926.8, "z": 5630.9, "px": 1377.8, "py": 3009.0, "has_dungeon": false, "has_important": false}, {"id": 8350, "name": "Mistlands_Viaduct2", "category": "other", "x": -7091.4, "z": -1551.2, "px": 837.7, "py": 1783.3, "has_dungeon": false, "has_important": false}, {"id": 8351, "name": "Mistlands_Viaduct2", "category": "other", "x": -6334.7, "z": 298.5, "px": 966.9, "py": 2098.9, "has_dungeon": false, "has_important": false}, {"id": 8352, "name": "Mistlands_Viaduct2", "category": "other", "x": -7405.9, "z": 560.9, "px": 784.1, "py": 2143.7, "has_dungeon": false, "has_important": false}, {"id": 8353, "name": "Mistlands_Viaduct2", "category": "other", "x": 8597.1, "z": 1207.0, "px": 3515.2, "py": 2254.0, "has_dungeon": false, "has_important": false}, {"id": 8354, "name": "Mistlands_Viaduct2", "category": "other", "x": 4306.4, "z": -4459.7, "px": 2783.0, "py": 1286.9, "has_dungeon": false, "has_important": false}, {"id": 8355, "name": "Mistlands_Viaduct2", "category": "other", "x": -6639.8, "z": -4340.2, "px": 914.8, "py": 1307.3, "has_dungeon": false, "has_important": false}, {"id": 8356, "name": "Mistlands_Viaduct2", "category": "other", "x": -367.0, "z": -6858.4, "px": 1985.4, "py": 877.5, "has_dungeon": false, "has_important": false}, {"id": 8357, "name": "Mistlands_Viaduct2", "category": "other", "x": 7677.0, "z": 2638.4, "px": 3358.2, "py": 2498.3, "has_dungeon": false, "has_important": false}, {"id": 8358, "name": "Mistlands_Viaduct2", "category": "other", "x": 8194.9, "z": -1609.0, "px": 3446.6, "py": 1773.4, "has_dungeon": false, "has_important": false}, {"id": 8359, "name": "Mistlands_Viaduct2", "category": "other", "x": 9815.2, "z": -745.9, "px": 3723.1, "py": 1920.7, "has_dungeon": false, "has_important": false}, {"id": 8360, "name": "Mistlands_Viaduct2", "category": "other", "x": 8876.7, "z": -2792.3, "px": 3563.0, "py": 1571.4, "has_dungeon": false, "has_important": false}, {"id": 8361, "name": "Mistlands_Viaduct2", "category": "other", "x": 4931.0, "z": -4105.8, "px": 2889.6, "py": 1347.3, "has_dungeon": false, "has_important": false}, {"id": 8362, "name": "Mistlands_Viaduct2", "category": "other", "x": -6569.9, "z": 1022.3, "px": 926.7, "py": 2222.5, "has_dungeon": false, "has_important": false}, {"id": 8363, "name": "Mistlands_Viaduct2", "category": "other", "x": 8496.2, "z": -1549.9, "px": 3498.0, "py": 1783.5, "has_dungeon": false, "has_important": false}, {"id": 8364, "name": "Mistlands_Viaduct2", "category": "other", "x": -1516.0, "z": -7494.4, "px": 1789.3, "py": 769.0, "has_dungeon": false, "has_important": false}, {"id": 8365, "name": "Mistlands_Viaduct2", "category": "other", "x": 6162.9, "z": 3349.1, "px": 3099.8, "py": 2619.6, "has_dungeon": false, "has_important": false}, {"id": 8366, "name": "Mistlands_Viaduct2", "category": "other", "x": -6275.8, "z": 5705.2, "px": 976.9, "py": 3021.7, "has_dungeon": false, "has_important": false}, {"id": 8367, "name": "Mistlands_Viaduct2", "category": "other", "x": -5294.0, "z": -3640.2, "px": 1144.5, "py": 1426.7, "has_dungeon": false, "has_important": false}, {"id": 8368, "name": "Mistlands_Viaduct2", "category": "other", "x": -6024.2, "z": -787.2, "px": 1019.9, "py": 1913.7, "has_dungeon": false, "has_important": false}, {"id": 8369, "name": "Mistlands_Viaduct2", "category": "other", "x": -621.4, "z": -6844.7, "px": 1941.9, "py": 879.8, "has_dungeon": false, "has_important": false}, {"id": 8370, "name": "Mistlands_Viaduct2", "category": "other", "x": 3836.1, "z": -5846.7, "px": 2702.7, "py": 1050.2, "has_dungeon": false, "has_important": false}, {"id": 8371, "name": "Mistlands_Viaduct2", "category": "other", "x": -4470.8, "z": 5498.7, "px": 1285.0, "py": 2986.4, "has_dungeon": false, "has_important": false}, {"id": 8372, "name": "Mistlands_Viaduct2", "category": "other", "x": 8255.5, "z": -1745.8, "px": 3456.9, "py": 1750.1, "has_dungeon": false, "has_important": false}, {"id": 8373, "name": "Mistlands_Viaduct2", "category": "other", "x": -8459.3, "z": -3079.9, "px": 604.3, "py": 1522.4, "has_dungeon": false, "has_important": false}, {"id": 8374, "name": "Mistlands_Viaduct2", "category": "other", "x": 387.8, "z": 6852.0, "px": 2114.2, "py": 3217.4, "has_dungeon": false, "has_important": false}, {"id": 8375, "name": "Mistlands_Viaduct2", "category": "other", "x": 644.5, "z": 6775.2, "px": 2158.0, "py": 3204.3, "has_dungeon": false, "has_important": false}, {"id": 8376, "name": "Mistlands_Viaduct2", "category": "other", "x": -8240.1, "z": -3444.6, "px": 641.7, "py": 1460.1, "has_dungeon": false, "has_important": false}, {"id": 8377, "name": "Mistlands_Viaduct2", "category": "other", "x": 4079.0, "z": -4692.0, "px": 2744.1, "py": 1247.2, "has_dungeon": false, "has_important": false}, {"id": 8378, "name": "Mistlands_Viaduct2", "category": "other", "x": -143.7, "z": -6504.7, "px": 2023.5, "py": 937.9, "has_dungeon": false, "has_important": false}, {"id": 8379, "name": "Mistlands_Viaduct2", "category": "other", "x": 3970.4, "z": -5779.4, "px": 2725.6, "py": 1061.6, "has_dungeon": false, "has_important": false}, {"id": 8380, "name": "Mistlands_Viaduct2", "category": "other", "x": 9607.5, "z": 1650.6, "px": 3687.7, "py": 2329.7, "has_dungeon": false, "has_important": false}, {"id": 8381, "name": "Mistlands_Viaduct2", "category": "other", "x": 5642.6, "z": 5583.2, "px": 3011.0, "py": 3000.9, "has_dungeon": false, "has_important": false}, {"id": 8382, "name": "Mistlands_Viaduct2", "category": "other", "x": 4112.4, "z": -5568.5, "px": 2749.8, "py": 1097.6, "has_dungeon": false, "has_important": false}, {"id": 8383, "name": "Mistlands_Viaduct2", "category": "other", "x": 6071.4, "z": 5680.0, "px": 3084.2, "py": 3017.4, "has_dungeon": false, "has_important": false}, {"id": 8384, "name": "Mistlands_Viaduct2", "category": "other", "x": 9655.1, "z": 1704.5, "px": 3695.8, "py": 2338.9, "has_dungeon": false, "has_important": false}, {"id": 8385, "name": "Mistlands_Viaduct2", "category": "other", "x": 8891.9, "z": 774.1, "px": 3565.6, "py": 2180.1, "has_dungeon": false, "has_important": false}, {"id": 8386, "name": "Mistlands_Viaduct2", "category": "other", "x": -7752.6, "z": -3211.2, "px": 724.9, "py": 1500.0, "has_dungeon": false, "has_important": false}, {"id": 8387, "name": "Mistlands_Viaduct2", "category": "other", "x": -6551.2, "z": -2420.4, "px": 929.9, "py": 1634.9, "has_dungeon": false, "has_important": false}, {"id": 8388, "name": "Mistlands_Viaduct2", "category": "other", "x": 3013.7, "z": 5572.6, "px": 2562.3, "py": 2999.1, "has_dungeon": false, "has_important": false}, {"id": 8389, "name": "Mistlands_Viaduct2", "category": "other", "x": 8377.6, "z": 2421.6, "px": 3477.8, "py": 2461.3, "has_dungeon": false, "has_important": false}, {"id": 8390, "name": "Mistlands_Viaduct2", "category": "other", "x": -5934.8, "z": 1264.7, "px": 1035.1, "py": 2263.8, "has_dungeon": false, "has_important": false}, {"id": 8391, "name": "Mistlands_Viaduct2", "category": "other", "x": 2355.6, "z": -6721.5, "px": 2450.0, "py": 900.9, "has_dungeon": false, "has_important": false}, {"id": 8392, "name": "Mistlands_Viaduct2", "category": "other", "x": -8434.9, "z": 2124.9, "px": 608.4, "py": 2410.6, "has_dungeon": false, "has_important": false}, {"id": 8393, "name": "Mistlands_Viaduct2", "category": "other", "x": -2889.2, "z": -5936.2, "px": 1554.9, "py": 1034.9, "has_dungeon": false, "has_important": false}, {"id": 8394, "name": "Mistlands_Viaduct2", "category": "other", "x": -1539.6, "z": 7156.5, "px": 1785.2, "py": 3269.4, "has_dungeon": false, "has_important": false}, {"id": 8395, "name": "Mistlands_Viaduct2", "category": "other", "x": -9548.5, "z": 1337.9, "px": 418.4, "py": 2276.3, "has_dungeon": false, "has_important": false}, {"id": 8396, "name": "Mistlands_Viaduct2", "category": "other", "x": 4297.5, "z": 5424.3, "px": 2781.4, "py": 2973.7, "has_dungeon": false, "has_important": false}, {"id": 8397, "name": "Mistlands_Viaduct2", "category": "other", "x": -7239.7, "z": -841.7, "px": 812.4, "py": 1904.3, "has_dungeon": false, "has_important": false}, {"id": 8398, "name": "Mistlands_Viaduct2", "category": "other", "x": 4207.2, "z": -6253.6, "px": 2766.0, "py": 980.7, "has_dungeon": false, "has_important": false}, {"id": 8399, "name": "Mistlands_Viaduct2", "category": "other", "x": -7917.8, "z": 4628.1, "px": 696.7, "py": 2837.9, "has_dungeon": false, "has_important": false}, {"id": 8400, "name": "Mistlands_Viaduct2", "category": "other", "x": -1868.1, "z": 6967.3, "px": 1729.2, "py": 3237.1, "has_dungeon": false, "has_important": false}, {"id": 8401, "name": "Mistlands_Viaduct2", "category": "other", "x": -8751.3, "z": 270.6, "px": 554.4, "py": 2094.2, "has_dungeon": false, "has_important": false}, {"id": 8402, "name": "Mistlands_Viaduct2", "category": "other", "x": -5742.3, "z": -3002.7, "px": 1068.0, "py": 1535.5, "has_dungeon": false, "has_important": false}, {"id": 8403, "name": "Mistlands_Viaduct2", "category": "other", "x": -7417.3, "z": 775.4, "px": 782.1, "py": 2180.3, "has_dungeon": false, "has_important": false}, {"id": 8404, "name": "Mistlands_Viaduct2", "category": "other", "x": -9069.2, "z": 782.1, "px": 500.2, "py": 2181.5, "has_dungeon": false, "has_important": false}, {"id": 8405, "name": "Mistlands_Viaduct2", "category": "other", "x": 6530.9, "z": -139.3, "px": 3162.6, "py": 2024.2, "has_dungeon": false, "has_important": false}, {"id": 8406, "name": "Mistlands_Viaduct2", "category": "other", "x": 3772.9, "z": -6909.0, "px": 2691.9, "py": 868.9, "has_dungeon": false, "has_important": false}, {"id": 8407, "name": "Mistlands_Viaduct2", "category": "other", "x": -8332.2, "z": -4008.8, "px": 626.0, "py": 1363.8, "has_dungeon": false, "has_important": false}, {"id": 8408, "name": "Mistlands_Viaduct2", "category": "other", "x": -7444.4, "z": -3520.9, "px": 777.5, "py": 1447.1, "has_dungeon": false, "has_important": false}, {"id": 8409, "name": "Mistlands_Viaduct2", "category": "other", "x": -5928.8, "z": 3129.0, "px": 1036.2, "py": 2582.0, "has_dungeon": false, "has_important": false}, {"id": 8410, "name": "Mistlands_Viaduct2", "category": "other", "x": 4281.0, "z": -5420.1, "px": 2778.6, "py": 1123.0, "has_dungeon": false, "has_important": false}, {"id": 8411, "name": "Mistlands_Viaduct2", "category": "other", "x": -5364.2, "z": -4212.9, "px": 1132.5, "py": 1329.0, "has_dungeon": false, "has_important": false}, {"id": 8412, "name": "Mistlands_Viaduct2", "category": "other", "x": 9725.0, "z": -300.4, "px": 3707.7, "py": 1996.7, "has_dungeon": false, "has_important": false}, {"id": 8413, "name": "Mistlands_Viaduct2", "category": "other", "x": -7106.8, "z": 944.4, "px": 835.1, "py": 2209.2, "has_dungeon": false, "has_important": false}, {"id": 8414, "name": "Mistlands_Viaduct2", "category": "other", "x": 4727.2, "z": -4561.2, "px": 2854.8, "py": 1269.6, "has_dungeon": false, "has_important": false}, {"id": 8415, "name": "Mistlands_Viaduct2", "category": "other", "x": 470.6, "z": -7017.7, "px": 2128.3, "py": 850.3, "has_dungeon": false, "has_important": false}, {"id": 8416, "name": "Mistlands_Viaduct2", "category": "other", "x": 6064.6, "z": 2884.7, "px": 3083.0, "py": 2540.3, "has_dungeon": false, "has_important": false}, {"id": 8417, "name": "Mistlands_Viaduct2", "category": "other", "x": -6421.4, "z": 4037.2, "px": 952.1, "py": 2737.0, "has_dungeon": false, "has_important": false}, {"id": 8418, "name": "Mistlands_Viaduct2", "category": "other", "x": 8371.6, "z": 4226.1, "px": 3476.8, "py": 2769.3, "has_dungeon": false, "has_important": false}, {"id": 8419, "name": "Mistlands_Viaduct2", "category": "other", "x": 6218.4, "z": 2734.8, "px": 3109.3, "py": 2514.7, "has_dungeon": false, "has_important": false}, {"id": 8420, "name": "Mistlands_Viaduct2", "category": "other", "x": -5482.4, "z": -4144.5, "px": 1112.3, "py": 1340.7, "has_dungeon": false, "has_important": false}, {"id": 8421, "name": "Mistlands_Viaduct2", "category": "other", "x": -8373.7, "z": 368.7, "px": 618.9, "py": 2110.9, "has_dungeon": false, "has_important": false}, {"id": 8422, "name": "Mistlands_Viaduct2", "category": "other", "x": -5560.4, "z": -5443.6, "px": 1099.0, "py": 1119.0, "has_dungeon": false, "has_important": false}, {"id": 8423, "name": "Mistlands_Viaduct2", "category": "other", "x": 4840.0, "z": -4653.1, "px": 2874.0, "py": 1253.9, "has_dungeon": false, "has_important": false}, {"id": 8424, "name": "Mistlands_Viaduct2", "category": "other", "x": 1340.7, "z": -7231.9, "px": 2276.8, "py": 813.8, "has_dungeon": false, "has_important": false}, {"id": 8425, "name": "Mistlands_Viaduct2", "category": "other", "x": -6486.8, "z": 3072.1, "px": 940.9, "py": 2572.3, "has_dungeon": false, "has_important": false}, {"id": 8426, "name": "Mistlands_Viaduct2", "category": "other", "x": -4244.4, "z": 4370.0, "px": 1323.6, "py": 2793.8, "has_dungeon": false, "has_important": false}, {"id": 8427, "name": "Mistlands_Viaduct2", "category": "other", "x": -9202.9, "z": -887.2, "px": 477.4, "py": 1896.6, "has_dungeon": false, "has_important": false}, {"id": 8428, "name": "Mistlands_Viaduct2", "category": "other", "x": 6848.1, "z": 5363.9, "px": 3216.7, "py": 2963.4, "has_dungeon": false, "has_important": false}, {"id": 8429, "name": "Mistlands_Viaduct2", "category": "other", "x": 5330.4, "z": 3383.2, "px": 2957.7, "py": 2625.4, "has_dungeon": false, "has_important": false}, {"id": 8430, "name": "Mistlands_Viaduct2", "category": "other", "x": 8893.3, "z": 385.9, "px": 3565.8, "py": 2113.9, "has_dungeon": false, "has_important": false}, {"id": 8431, "name": "Mistlands_Viaduct2", "category": "other", "x": -8886.3, "z": 1913.6, "px": 531.4, "py": 2374.6, "has_dungeon": false, "has_important": false}, {"id": 8432, "name": "Mistlands_Viaduct2", "category": "other", "x": -8301.3, "z": 397.0, "px": 631.2, "py": 2115.8, "has_dungeon": false, "has_important": false}, {"id": 8433, "name": "Mistlands_Viaduct2", "category": "other", "x": 6313.0, "z": 3535.6, "px": 3125.4, "py": 2651.4, "has_dungeon": false, "has_important": false}, {"id": 8434, "name": "Mistlands_Viaduct2", "category": "other", "x": 7477.9, "z": -3754.2, "px": 3324.2, "py": 1407.3, "has_dungeon": false, "has_important": false}, {"id": 8435, "name": "Mistlands_Viaduct2", "category": "other", "x": 4920.0, "z": 6022.6, "px": 2887.7, "py": 3075.9, "has_dungeon": false, "has_important": false}, {"id": 8436, "name": "Mistlands_Viaduct2", "category": "other", "x": 1687.2, "z": -6706.8, "px": 2335.9, "py": 903.4, "has_dungeon": false, "has_important": false}, {"id": 8437, "name": "Mistlands_Viaduct2", "category": "other", "x": -3152.9, "z": -5864.2, "px": 1509.9, "py": 1047.2, "has_dungeon": false, "has_important": false}, {"id": 8438, "name": "Mistlands_Viaduct2", "category": "other", "x": 3470.3, "z": 5758.3, "px": 2640.3, "py": 3030.7, "has_dungeon": false, "has_important": false}, {"id": 8439, "name": "Mistlands_Viaduct2", "category": "other", "x": -3113.0, "z": -6154.5, "px": 1516.7, "py": 997.6, "has_dungeon": false, "has_important": false}, {"id": 8440, "name": "Mistlands_Viaduct2", "category": "other", "x": 1652.4, "z": -6591.4, "px": 2330.0, "py": 923.1, "has_dungeon": false, "has_important": false}, {"id": 8441, "name": "Mistlands_Viaduct2", "category": "other", "x": 396.4, "z": 7336.5, "px": 2115.7, "py": 3300.1, "has_dungeon": false, "has_important": false}, {"id": 8442, "name": "Mistlands_Viaduct2", "category": "other", "x": 7796.7, "z": -4417.1, "px": 3378.6, "py": 1294.1, "has_dungeon": false, "has_important": false}, {"id": 8443, "name": "Mistlands_Viaduct2", "category": "other", "x": 780.8, "z": 6711.0, "px": 2181.3, "py": 3193.3, "has_dungeon": false, "has_important": false}, {"id": 8444, "name": "Mistlands_Viaduct2", "category": "other", "x": -6463.8, "z": 2480.9, "px": 944.8, "py": 2471.4, "has_dungeon": false, "has_important": false}, {"id": 8445, "name": "Mistlands_Viaduct2", "category": "other", "x": -9612.7, "z": -1788.1, "px": 407.4, "py": 1742.8, "has_dungeon": false, "has_important": false}, {"id": 8446, "name": "Mistlands_Viaduct2", "category": "other", "x": 4334.8, "z": 4360.8, "px": 2787.8, "py": 2792.2, "has_dungeon": false, "has_important": false}, {"id": 8447, "name": "Mistlands_Viaduct2", "category": "other", "x": -6271.0, "z": 3089.6, "px": 977.7, "py": 2575.3, "has_dungeon": false, "has_important": false}, {"id": 8448, "name": "Mistlands_Viaduct2", "category": "other", "x": 2704.9, "z": 6340.3, "px": 2509.6, "py": 3130.1, "has_dungeon": false, "has_important": false}, {"id": 8449, "name": "Mistlands_Viaduct2", "category": "other", "x": -8006.5, "z": 2435.3, "px": 681.6, "py": 2463.6, "has_dungeon": false, "has_important": false}, {"id": 8450, "name": "Mistlands_Viaduct2", "category": "other", "x": -6799.1, "z": -3279.6, "px": 887.6, "py": 1488.3, "has_dungeon": false, "has_important": false}, {"id": 8451, "name": "Mistlands_Viaduct2", "category": "other", "x": -1284.2, "z": -7124.9, "px": 1828.8, "py": 832.0, "has_dungeon": false, "has_important": false}, {"id": 8452, "name": "Mistlands_Viaduct2", "category": "other", "x": -8460.2, "z": 524.3, "px": 604.1, "py": 2137.5, "has_dungeon": false, "has_important": false}, {"id": 8453, "name": "Mistlands_Viaduct2", "category": "other", "x": 6848.5, "z": -3502.4, "px": 3216.8, "py": 1450.3, "has_dungeon": false, "has_important": false}, {"id": 8454, "name": "Mistlands_Viaduct2", "category": "other", "x": -8394.8, "z": 2284.3, "px": 615.3, "py": 2437.9, "has_dungeon": false, "has_important": false}, {"id": 8455, "name": "Mistlands_Viaduct2", "category": "other", "x": 8048.4, "z": 1928.3, "px": 3421.6, "py": 2377.1, "has_dungeon": false, "has_important": false}, {"id": 8456, "name": "Mistlands_Viaduct2", "category": "other", "x": 2646.2, "z": 6466.3, "px": 2499.6, "py": 3151.6, "has_dungeon": false, "has_important": false}, {"id": 8457, "name": "Mistlands_Viaduct2", "category": "other", "x": 6333.0, "z": 5135.5, "px": 3128.8, "py": 2924.5, "has_dungeon": false, "has_important": false}, {"id": 8458, "name": "Mistlands_Viaduct2", "category": "other", "x": -5910.4, "z": -2833.1, "px": 1039.3, "py": 1564.5, "has_dungeon": false, "has_important": false}, {"id": 8459, "name": "Mistlands_Viaduct2", "category": "other", "x": 1984.3, "z": -7236.0, "px": 2386.7, "py": 813.1, "has_dungeon": false, "has_important": false}, {"id": 8460, "name": "Mistlands_Viaduct2", "category": "other", "x": -1173.7, "z": -7556.3, "px": 1847.7, "py": 758.4, "has_dungeon": false, "has_important": false}, {"id": 8461, "name": "Mistlands_Viaduct2", "category": "other", "x": 8680.8, "z": -649.0, "px": 3529.5, "py": 1937.2, "has_dungeon": false, "has_important": false}, {"id": 8462, "name": "Mistlands_Viaduct2", "category": "other", "x": 2988.1, "z": 6314.8, "px": 2558.0, "py": 3125.7, "has_dungeon": false, "has_important": false}, {"id": 8463, "name": "Mistlands_Viaduct2", "category": "other", "x": 8468.3, "z": 1343.0, "px": 3493.3, "py": 2277.2, "has_dungeon": false, "has_important": false}, {"id": 8464, "name": "Mistlands_Viaduct2", "category": "other", "x": -6154.0, "z": 2874.7, "px": 997.7, "py": 2538.6, "has_dungeon": false, "has_important": false}, {"id": 8465, "name": "Mistlands_Viaduct2", "category": "other", "x": 7828.3, "z": -4346.7, "px": 3384.0, "py": 1306.2, "has_dungeon": false, "has_important": false}, {"id": 8466, "name": "Mistlands_Viaduct2", "category": "other", "x": 4466.5, "z": 6477.4, "px": 2810.3, "py": 3153.5, "has_dungeon": false, "has_important": false}, {"id": 8467, "name": "Mistlands_Viaduct2", "category": "other", "x": -2821.0, "z": -5959.8, "px": 1566.5, "py": 1030.9, "has_dungeon": false, "has_important": false}, {"id": 8468, "name": "Mistlands_Viaduct2", "category": "other", "x": -6476.7, "z": -3066.6, "px": 942.6, "py": 1524.6, "has_dungeon": false, "has_important": false}, {"id": 8469, "name": "Mistlands_Viaduct2", "category": "other", "x": -7674.9, "z": -1149.6, "px": 738.2, "py": 1851.8, "has_dungeon": false, "has_important": false}, {"id": 8470, "name": "Mistlands_Viaduct2", "category": "other", "x": 6866.6, "z": -779.3, "px": 3219.9, "py": 1915.0, "has_dungeon": false, "has_important": false}, {"id": 8471, "name": "Mistlands_Viaduct2", "category": "other", "x": 5324.5, "z": 3242.3, "px": 2956.7, "py": 2601.4, "has_dungeon": false, "has_important": false}, {"id": 8472, "name": "Mistlands_Viaduct2", "category": "other", "x": 4822.4, "z": -4048.5, "px": 2871.0, "py": 1357.1, "has_dungeon": false, "has_important": false}, {"id": 8473, "name": "Mistlands_Viaduct2", "category": "other", "x": 8386.9, "z": 1202.1, "px": 3479.4, "py": 2253.2, "has_dungeon": false, "has_important": false}, {"id": 8474, "name": "Mistlands_Viaduct2", "category": "other", "x": 8646.8, "z": -507.2, "px": 3523.7, "py": 1961.4, "has_dungeon": false, "has_important": false}, {"id": 8475, "name": "Mistlands_Viaduct2", "category": "other", "x": -3956.7, "z": 6222.2, "px": 1372.7, "py": 3109.9, "has_dungeon": false, "has_important": false}, {"id": 8476, "name": "Mistlands_Viaduct2", "category": "other", "x": -8493.5, "z": 2028.2, "px": 598.4, "py": 2394.1, "has_dungeon": false, "has_important": false}, {"id": 8477, "name": "Mistlands_Viaduct2", "category": "other", "x": -7281.5, "z": 1397.9, "px": 805.3, "py": 2286.6, "has_dungeon": false, "has_important": false}, {"id": 8478, "name": "Mistlands_Viaduct2", "category": "other", "x": -7750.1, "z": 1292.9, "px": 725.3, "py": 2268.7, "has_dungeon": false, "has_important": false}, {"id": 8479, "name": "Mistlands_Viaduct2", "category": "other", "x": -8528.1, "z": -3075.7, "px": 592.5, "py": 1523.1, "has_dungeon": false, "has_important": false}, {"id": 8480, "name": "Mistlands_Viaduct2", "category": "other", "x": -3858.6, "z": 6139.3, "px": 1389.5, "py": 3095.8, "has_dungeon": false, "has_important": false}, {"id": 8481, "name": "Mistlands_Viaduct2", "category": "other", "x": 3789.7, "z": -5645.4, "px": 2694.8, "py": 1084.5, "has_dungeon": false, "has_important": false}, {"id": 8482, "name": "Mistlands_Viaduct2", "category": "other", "x": -2729.5, "z": 6283.4, "px": 1582.2, "py": 3120.4, "has_dungeon": false, "has_important": false}, {"id": 8483, "name": "Mistlands_Viaduct2", "category": "other", "x": -1417.5, "z": -7472.2, "px": 1806.1, "py": 772.7, "has_dungeon": false, "has_important": false}, {"id": 8484, "name": "Mistlands_Viaduct2", "category": "other", "x": 2387.7, "z": -6399.0, "px": 2455.5, "py": 955.9, "has_dungeon": false, "has_important": false}, {"id": 8485, "name": "Mistlands_Viaduct2", "category": "other", "x": 7599.1, "z": 2315.2, "px": 3344.9, "py": 2443.1, "has_dungeon": false, "has_important": false}, {"id": 8486, "name": "Mistlands_Viaduct2", "category": "other", "x": -5365.5, "z": 6098.2, "px": 1132.3, "py": 3088.8, "has_dungeon": false, "has_important": false}, {"id": 8487, "name": "Mistlands_Viaduct2", "category": "other", "x": 6398.9, "z": 4524.6, "px": 3140.1, "py": 2820.2, "has_dungeon": false, "has_important": false}, {"id": 8488, "name": "Mistlands_Viaduct2", "category": "other", "x": -1649.3, "z": -6004.2, "px": 1766.5, "py": 1023.3, "has_dungeon": false, "has_important": false}, {"id": 8489, "name": "Mistlands_Viaduct2", "category": "other", "x": 7800.2, "z": -4670.7, "px": 3379.2, "py": 1250.9, "has_dungeon": false, "has_important": false}, {"id": 8490, "name": "Mistlands_Viaduct2", "category": "other", "x": 8749.3, "z": -3051.0, "px": 3541.2, "py": 1527.3, "has_dungeon": false, "has_important": false}, {"id": 8491, "name": "Mistlands_Viaduct2", "category": "other", "x": -6338.3, "z": 5052.2, "px": 966.3, "py": 2910.2, "has_dungeon": false, "has_important": false}, {"id": 8492, "name": "Mistlands_Viaduct2", "category": "other", "x": 5003.9, "z": -5840.6, "px": 2902.0, "py": 1051.2, "has_dungeon": false, "has_important": false}, {"id": 8493, "name": "Mistlands_Viaduct2", "category": "other", "x": 328.6, "z": 7486.3, "px": 2104.1, "py": 3325.7, "has_dungeon": false, "has_important": false}, {"id": 8494, "name": "Mistlands_Viaduct2", "category": "other", "x": 9594.8, "z": -581.0, "px": 3685.5, "py": 1948.8, "has_dungeon": false, "has_important": false}, {"id": 10911, "name": "MorgenHole1", "category": "other", "x": -2629.8, "z": -8634.4, "px": 1599.2, "py": 574.4, "has_dungeon": false, "has_important": true}, {"id": 10912, "name": "MorgenHole1", "category": "other", "x": 1852.2, "z": -8443.0, "px": 2364.1, "py": 607.1, "has_dungeon": false, "has_important": true}, {"id": 10913, "name": "MorgenHole1", "category": "other", "x": -697.6, "z": -8707.2, "px": 1928.9, "py": 562.0, "has_dungeon": false, "has_important": true}, {"id": 10914, "name": "MorgenHole1", "category": "other", "x": -71.1, "z": -9667.8, "px": 2035.9, "py": 398.0, "has_dungeon": false, "has_important": true}, {"id": 10915, "name": "MorgenHole1", "category": "other", "x": -2108.9, "z": -9082.8, "px": 1688.1, "py": 497.9, "has_dungeon": false, "has_important": true}, {"id": 10916, "name": "MorgenHole1", "category": "other", "x": 193.0, "z": -8829.0, "px": 2080.9, "py": 541.2, "has_dungeon": false, "has_important": true}, {"id": 10917, "name": "MorgenHole1", "category": "other", "x": -3975.7, "z": -8892.9, "px": 1369.5, "py": 530.3, "has_dungeon": false, "has_important": true}, {"id": 10918, "name": "MorgenHole1", "category": "other", "x": 70.1, "z": -8519.3, "px": 2060.0, "py": 594.0, "has_dungeon": false, "has_important": true}, {"id": 10919, "name": "MorgenHole1", "category": "other", "x": -3718.4, "z": -8452.7, "px": 1413.4, "py": 605.4, "has_dungeon": false, "has_important": true}, {"id": 10920, "name": "MorgenHole1", "category": "other", "x": -519.3, "z": -9667.0, "px": 1959.4, "py": 398.2, "has_dungeon": false, "has_important": true}, {"id": 10921, "name": "MorgenHole1", "category": "other", "x": 1343.9, "z": -9028.9, "px": 2277.4, "py": 507.1, "has_dungeon": false, "has_important": true}, {"id": 10922, "name": "MorgenHole1", "category": "other", "x": -1787.0, "z": -8892.5, "px": 1743.0, "py": 530.3, "has_dungeon": false, "has_important": true}, {"id": 10923, "name": "MorgenHole1", "category": "other", "x": 634.1, "z": -8700.2, "px": 2156.2, "py": 563.2, "has_dungeon": false, "has_important": true}, {"id": 10924, "name": "MorgenHole1", "category": "other", "x": 2427.9, "z": -8894.9, "px": 2462.4, "py": 529.9, "has_dungeon": false, "has_important": true}, {"id": 10925, "name": "MorgenHole1", "category": "other", "x": -2303.9, "z": -8710.0, "px": 1654.8, "py": 561.5, "has_dungeon": false, "has_important": true}, {"id": 10926, "name": "MorgenHole1", "category": "other", "x": -4355.3, "z": -8380.1, "px": 1304.7, "py": 617.8, "has_dungeon": false, "has_important": true}, {"id": 10927, "name": "MorgenHole1", "category": "other", "x": 518.9, "z": -9599.7, "px": 2136.6, "py": 409.7, "has_dungeon": false, "has_important": true}, {"id": 10928, "name": "MorgenHole1", "category": "other", "x": -1281.5, "z": -9734.6, "px": 1829.3, "py": 386.6, "has_dungeon": false, "has_important": true}, {"id": 10929, "name": "MorgenHole1", "category": "other", "x": -251.2, "z": -8961.5, "px": 2005.1, "py": 518.6, "has_dungeon": false, "has_important": true}, {"id": 10930, "name": "MorgenHole1", "category": "other", "x": -2938.4, "z": -8390.5, "px": 1546.5, "py": 616.0, "has_dungeon": false, "has_important": true}, {"id": 10931, "name": "MorgenHole1", "category": "other", "x": 1272.8, "z": -9535.5, "px": 2265.2, "py": 420.6, "has_dungeon": false, "has_important": true}, {"id": 10932, "name": "MorgenHole1", "category": "other", "x": 2237.4, "z": -8442.5, "px": 2429.8, "py": 607.1, "has_dungeon": false, "has_important": true}, {"id": 10933, "name": "MorgenHole1", "category": "other", "x": -1017.7, "z": -9534.6, "px": 1874.3, "py": 420.8, "has_dungeon": false, "has_important": true}, {"id": 10934, "name": "MorgenHole1", "category": "other", "x": 1990.6, "z": -9534.1, "px": 2387.7, "py": 420.8, "has_dungeon": false, "has_important": true}, {"id": 10935, "name": "MorgenHole1", "category": "other", "x": 3525.7, "z": -8574.7, "px": 2649.7, "py": 584.6, "has_dungeon": false, "has_important": true}, {"id": 10936, "name": "MorgenHole1", "category": "other", "x": -5382.2, "z": -7490.6, "px": 1129.4, "py": 769.6, "has_dungeon": false, "has_important": true}, {"id": 10937, "name": "MorgenHole1", "category": "other", "x": -1339.3, "z": -9094.4, "px": 1819.4, "py": 495.9, "has_dungeon": false, "has_important": true}, {"id": 10938, "name": "MorgenHole1", "category": "other", "x": 2301.9, "z": -9218.0, "px": 2440.9, "py": 474.8, "has_dungeon": false, "has_important": true}, {"id": 10939, "name": "MorgenHole1", "category": "other", "x": -1671.4, "z": -9473.9, "px": 1762.7, "py": 431.1, "has_dungeon": false, "has_important": true}, {"id": 10940, "name": "MorgenHole1", "category": "other", "x": 199.0, "z": -9403.6, "px": 2082.0, "py": 443.1, "has_dungeon": false, "has_important": true}, {"id": 10941, "name": "MorgenHole1", "category": "other", "x": 2628.6, "z": -9406.3, "px": 2496.6, "py": 442.7, "has_dungeon": false, "has_important": true}, {"id": 10942, "name": "MorgenHole1", "category": "other", "x": 1026.0, "z": -8888.6, "px": 2223.1, "py": 531.0, "has_dungeon": false, "has_important": true}, {"id": 10943, "name": "MorgenHole1", "category": "other", "x": 1656.2, "z": -9411.2, "px": 2330.7, "py": 441.8, "has_dungeon": false, "has_important": true}, {"id": 10944, "name": "MorgenHole1", "category": "other", "x": 3591.4, "z": -8261.3, "px": 2660.9, "py": 638.1, "has_dungeon": false, "has_important": true}, {"id": 10945, "name": "MorgenHole1", "category": "other", "x": 1594.6, "z": -9732.9, "px": 2320.1, "py": 386.9, "has_dungeon": false, "has_important": true}, {"id": 10946, "name": "MorgenHole1", "category": "other", "x": 5438.2, "z": -8059.0, "px": 2976.1, "py": 672.6, "has_dungeon": false, "has_important": true}, {"id": 10947, "name": "MorgenHole1", "category": "other", "x": 4092.9, "z": -8702.1, "px": 2746.5, "py": 562.8, "has_dungeon": false, "has_important": true}, {"id": 10948, "name": "MorgenHole1", "category": "other", "x": -576.9, "z": -9017.7, "px": 1949.5, "py": 509.0, "has_dungeon": false, "has_important": true}, {"id": 10949, "name": "MorgenHole1", "category": "other", "x": -382.7, "z": -8637.2, "px": 1982.7, "py": 573.9, "has_dungeon": false, "has_important": true}, {"id": 10950, "name": "MorgenHole1", "category": "other", "x": -3711.2, "z": -9150.7, "px": 1414.6, "py": 486.3, "has_dungeon": false, "has_important": true}, {"id": 10951, "name": "MorgenHole2", "category": "other", "x": -4803.1, "z": -8384.7, "px": 1228.3, "py": 617.0, "has_dungeon": false, "has_important": true}, {"id": 10952, "name": "MorgenHole2", "category": "other", "x": -3396.9, "z": -8454.9, "px": 1468.3, "py": 605.0, "has_dungeon": false, "has_important": true}, {"id": 10953, "name": "MorgenHole2", "category": "other", "x": -510.3, "z": -9340.6, "px": 1960.9, "py": 453.9, "has_dungeon": false, "has_important": true}, {"id": 10954, "name": "MorgenHole2", "category": "other", "x": 2045.3, "z": -8382.3, "px": 2397.1, "py": 617.4, "has_dungeon": false, "has_important": true}, {"id": 10955, "name": "MorgenHole2", "category": "other", "x": -4090.0, "z": -9090.5, "px": 1350.0, "py": 496.6, "has_dungeon": false, "has_important": true}, {"id": 10956, "name": "MorgenHole2", "category": "other", "x": 835.7, "z": -8775.2, "px": 2190.6, "py": 550.4, "has_dungeon": false, "has_important": true}, {"id": 10957, "name": "MorgenHole2", "category": "other", "x": -903.9, "z": -9784.0, "px": 1893.7, "py": 378.2, "has_dungeon": false, "has_important": true}, {"id": 10958, "name": "MorgenHole2", "category": "other", "x": -1280.7, "z": -9470.9, "px": 1829.4, "py": 431.6, "has_dungeon": false, "has_important": true}, {"id": 10959, "name": "MorgenHole2", "category": "other", "x": -2373.6, "z": -8955.5, "px": 1642.9, "py": 519.6, "has_dungeon": false, "has_important": true}, {"id": 10960, "name": "MorgenHole2", "category": "other", "x": -2426.2, "z": -8512.5, "px": 1633.9, "py": 595.2, "has_dungeon": false, "has_important": true}, {"id": 10961, "name": "MorgenHole2", "category": "other", "x": -2115.5, "z": -8827.0, "px": 1687.0, "py": 541.5, "has_dungeon": false, "has_important": true}, {"id": 10962, "name": "MorgenHole2", "category": "other", "x": 1854.2, "z": -8647.3, "px": 2364.5, "py": 572.2, "has_dungeon": false, "has_important": true}, {"id": 10963, "name": "MorgenHole2", "category": "other", "x": 3898.4, "z": -8765.0, "px": 2713.3, "py": 552.1, "has_dungeon": false, "has_important": true}, {"id": 10964, "name": "MorgenHole2", "category": "other", "x": -4993.3, "z": -8254.4, "px": 1195.8, "py": 639.2, "has_dungeon": false, "has_important": true}, {"id": 10965, "name": "MorgenHole2", "category": "other", "x": -4356.9, "z": -7998.9, "px": 1304.4, "py": 682.9, "has_dungeon": false, "has_important": true}, {"id": 10966, "name": "MorgenHole2", "category": "other", "x": 575.1, "z": -9915.4, "px": 2146.2, "py": 355.8, "has_dungeon": false, "has_important": true}, {"id": 10967, "name": "MorgenHole2", "category": "other", "x": -2684.9, "z": -8378.4, "px": 1589.8, "py": 618.1, "has_dungeon": false, "has_important": true}, {"id": 10968, "name": "MorgenHole2", "category": "other", "x": 441.9, "z": -8902.7, "px": 2123.4, "py": 528.6, "has_dungeon": false, "has_important": true}, {"id": 10969, "name": "MorgenHole2", "category": "other", "x": 3201.0, "z": -9283.9, "px": 2594.3, "py": 463.5, "has_dungeon": false, "has_important": true}, {"id": 10970, "name": "MorgenHole2", "category": "other", "x": -1022.6, "z": -9272.9, "px": 1873.5, "py": 465.4, "has_dungeon": false, "has_important": true}, {"id": 10971, "name": "MorgenHole2", "category": "other", "x": -4740.1, "z": -8063.2, "px": 1239.0, "py": 671.9, "has_dungeon": false, "has_important": true}, {"id": 10972, "name": "MorgenHole2", "category": "other", "x": 2820.4, "z": -9349.6, "px": 2529.3, "py": 452.3, "has_dungeon": false, "has_important": true}, {"id": 10973, "name": "MorgenHole2", "category": "other", "x": 3143.3, "z": -8516.3, "px": 2584.5, "py": 594.6, "has_dungeon": false, "has_important": true}, {"id": 10974, "name": "MorgenHole2", "category": "other", "x": -701.5, "z": -9923.4, "px": 1928.3, "py": 354.4, "has_dungeon": false, "has_important": true}, {"id": 10975, "name": "MorgenHole2", "category": "other", "x": -4990.4, "z": -7620.3, "px": 1196.3, "py": 747.5, "has_dungeon": false, "has_important": true}, {"id": 10976, "name": "MorgenHole2", "category": "other", "x": -6278.6, "z": -7619.5, "px": 976.5, "py": 747.6, "has_dungeon": false, "has_important": true}, {"id": 10977, "name": "MorgenHole2", "category": "other", "x": -3779.8, "z": -8195.9, "px": 1402.9, "py": 649.2, "has_dungeon": false, "has_important": true}, {"id": 10978, "name": "MorgenHole2", "category": "other", "x": 2881.7, "z": -9082.6, "px": 2539.8, "py": 497.9, "has_dungeon": false, "has_important": true}, {"id": 10979, "name": "MorgenHole2", "category": "other", "x": -5434.2, "z": -7745.7, "px": 1120.6, "py": 726.1, "has_dungeon": false, "has_important": true}, {"id": 10980, "name": "MorgenHole2", "category": "other", "x": -3591.8, "z": -8891.7, "px": 1435.0, "py": 530.5, "has_dungeon": false, "has_important": true}, {"id": 10981, "name": "MorgenHole2", "category": "other", "x": 323.5, "z": -8637.8, "px": 2103.2, "py": 573.8, "has_dungeon": false, "has_important": true}, {"id": 10982, "name": "MorgenHole2", "category": "other", "x": -2567.5, "z": -8896.6, "px": 1609.8, "py": 529.6, "has_dungeon": false, "has_important": true}, {"id": 10983, "name": "MorgenHole2", "category": "other", "x": -313.5, "z": -9592.6, "px": 1994.5, "py": 410.9, "has_dungeon": false, "has_important": true}, {"id": 10984, "name": "MorgenHole2", "category": "other", "x": -2045.0, "z": -8636.6, "px": 1699.0, "py": 574.0, "has_dungeon": false, "has_important": true}, {"id": 10985, "name": "MorgenHole2", "category": "other", "x": -3776.8, "z": -8707.2, "px": 1403.4, "py": 562.0, "has_dungeon": false, "has_important": true}, {"id": 10986, "name": "MorgenHole2", "category": "other", "x": 253.9, "z": -9596.2, "px": 2091.3, "py": 410.2, "has_dungeon": false, "has_important": true}, {"id": 10987, "name": "MorgenHole2", "category": "other", "x": 3001.0, "z": -8838.1, "px": 2560.2, "py": 539.6, "has_dungeon": false, "has_important": true}, {"id": 10988, "name": "MorgenHole2", "category": "other", "x": -5241.2, "z": -7808.0, "px": 1153.5, "py": 715.4, "has_dungeon": false, "has_important": true}, {"id": 10989, "name": "MorgenHole2", "category": "other", "x": -2112.8, "z": -8443.5, "px": 1687.4, "py": 607.0, "has_dungeon": false, "has_important": true}, {"id": 10990, "name": "MorgenHole2", "category": "other", "x": 2054.7, "z": -9336.5, "px": 2398.7, "py": 454.6, "has_dungeon": false, "has_important": true}, {"id": 10991, "name": "MorgenHole3", "category": "other", "x": 2237.7, "z": -9472.3, "px": 2429.9, "py": 431.4, "has_dungeon": false, "has_important": true}, {"id": 10992, "name": "MorgenHole3", "category": "other", "x": -3324.4, "z": -8834.4, "px": 1480.6, "py": 540.3, "has_dungeon": false, "has_important": true}, {"id": 10993, "name": "MorgenHole3", "category": "other", "x": -5191.9, "z": -7610.9, "px": 1161.9, "py": 749.1, "has_dungeon": false, "has_important": true}, {"id": 10994, "name": "MorgenHole3", "category": "other", "x": 376.8, "z": -9274.9, "px": 2112.3, "py": 465.1, "has_dungeon": false, "has_important": true}, {"id": 10995, "name": "MorgenHole3", "category": "other", "x": 891.8, "z": -9279.3, "px": 2200.2, "py": 464.3, "has_dungeon": false, "has_important": true}, {"id": 10996, "name": "MorgenHole3", "category": "other", "x": -2438.3, "z": -8313.0, "px": 1631.9, "py": 629.2, "has_dungeon": false, "has_important": true}, {"id": 10997, "name": "MorgenHole3", "category": "other", "x": -1978.8, "z": -9283.9, "px": 1710.3, "py": 463.5, "has_dungeon": false, "has_important": true}, {"id": 10998, "name": "MorgenHole3", "category": "other", "x": -1477.1, "z": -9534.7, "px": 1795.9, "py": 420.7, "has_dungeon": false, "has_important": true}, {"id": 10999, "name": "MorgenHole3", "category": "other", "x": -134.7, "z": -8764.2, "px": 2025.0, "py": 552.2, "has_dungeon": false, "has_important": true}, {"id": 11000, "name": "MorgenHole3", "category": "other", "x": 1852.3, "z": -9215.7, "px": 2364.1, "py": 475.2, "has_dungeon": false, "has_important": true}, {"id": 11001, "name": "MorgenHole3", "category": "other", "x": 128.1, "z": -9215.8, "px": 2069.9, "py": 475.2, "has_dungeon": false, "has_important": true}, {"id": 11002, "name": "MorgenHole3", "category": "other", "x": 5380.1, "z": -7867.4, "px": 2966.2, "py": 705.3, "has_dungeon": false, "has_important": true}, {"id": 11003, "name": "MorgenHole3", "category": "other", "x": -3580.8, "z": -8260.6, "px": 1436.9, "py": 638.2, "has_dungeon": false, "has_important": true}, {"id": 11004, "name": "MorgenHole3", "category": "other", "x": 3770.8, "z": -8507.0, "px": 2691.5, "py": 596.1, "has_dungeon": false, "has_important": true}, {"id": 11005, "name": "MorgenHole3", "category": "other", "x": -957.4, "z": -9082.8, "px": 1884.6, "py": 497.9, "has_dungeon": false, "has_important": true}, {"id": 11006, "name": "MorgenHole3", "category": "other", "x": -4609.4, "z": -8324.6, "px": 1261.3, "py": 627.3, "has_dungeon": false, "has_important": true}, {"id": 11007, "name": "MorgenHole3", "category": "other", "x": -5181.1, "z": -8002.8, "px": 1163.8, "py": 682.2, "has_dungeon": false, "has_important": true}, {"id": 11008, "name": "MorgenHole3", "category": "other", "x": -2823.0, "z": -8575.7, "px": 1566.2, "py": 584.4, "has_dungeon": false, "has_important": true}, {"id": 11009, "name": "MorgenHole3", "category": "other", "x": 1084.2, "z": -9407.6, "px": 2233.0, "py": 442.4, "has_dungeon": false, "has_important": true}, {"id": 6474, "name": "MountainGrave01", "category": "other", "x": 5669.8, "z": -488.6, "px": 3015.6, "py": 1964.6, "has_dungeon": false, "has_important": false}, {"id": 6475, "name": "MountainGrave01", "category": "other", "x": -6772.3, "z": 6765.4, "px": 892.2, "py": 3202.6, "has_dungeon": false, "has_important": true}, {"id": 6476, "name": "MountainGrave01", "category": "other", "x": 2364.6, "z": 819.8, "px": 2451.6, "py": 2187.9, "has_dungeon": false, "has_important": false}, {"id": 6477, "name": "MountainGrave01", "category": "other", "x": 5799.1, "z": -345.6, "px": 3037.7, "py": 1989.0, "has_dungeon": false, "has_important": false}, {"id": 6478, "name": "MountainGrave01", "category": "other", "x": 3317.9, "z": 358.1, "px": 2614.3, "py": 2109.1, "has_dungeon": false, "has_important": false}, {"id": 6479, "name": "MountainGrave01", "category": "other", "x": -4078.1, "z": 4454.5, "px": 1352.0, "py": 2808.2, "has_dungeon": false, "has_important": true}, {"id": 6480, "name": "MountainGrave01", "category": "other", "x": -6611.9, "z": -2184.5, "px": 919.6, "py": 1675.2, "has_dungeon": false, "has_important": true}, {"id": 6481, "name": "MountainGrave01", "category": "other", "x": -4489.8, "z": -1258.0, "px": 1281.7, "py": 1833.3, "has_dungeon": false, "has_important": false}, {"id": 6482, "name": "MountainGrave01", "category": "other", "x": -7258.1, "z": -1159.5, "px": 809.3, "py": 1850.1, "has_dungeon": false, "has_important": true}, {"id": 6483, "name": "MountainGrave01", "category": "other", "x": 6507.2, "z": 6822.6, "px": 3158.6, "py": 3212.4, "has_dungeon": false, "has_important": true}, {"id": 6484, "name": "MountainGrave01", "category": "other", "x": 1237.6, "z": -5107.2, "px": 2259.2, "py": 1176.4, "has_dungeon": false, "has_important": true}, {"id": 6485, "name": "MountainGrave01", "category": "other", "x": 1976.1, "z": 4712.5, "px": 2385.3, "py": 2852.3, "has_dungeon": false, "has_important": true}, {"id": 6486, "name": "MountainGrave01", "category": "other", "x": -4402.4, "z": -3912.7, "px": 1296.7, "py": 1380.2, "has_dungeon": false, "has_important": false}, {"id": 6487, "name": "MountainGrave01", "category": "other", "x": -4389.4, "z": -1272.5, "px": 1298.9, "py": 1830.8, "has_dungeon": false, "has_important": false}, {"id": 6488, "name": "MountainGrave01", "category": "other", "x": -9916.2, "z": -388.0, "px": 355.6, "py": 1981.8, "has_dungeon": false, "has_important": true}, {"id": 6489, "name": "MountainGrave01", "category": "other", "x": 6632.6, "z": 7061.9, "px": 3180.0, "py": 3253.2, "has_dungeon": false, "has_important": false}, {"id": 6490, "name": "MountainGrave01", "category": "other", "x": 570.7, "z": 4360.4, "px": 2145.4, "py": 2792.2, "has_dungeon": false, "has_important": true}, {"id": 6491, "name": "MountainGrave01", "category": "other", "x": -3446.0, "z": 6372.4, "px": 1459.9, "py": 3135.6, "has_dungeon": false, "has_important": false}, {"id": 6492, "name": "MountainGrave01", "category": "other", "x": 984.0, "z": 218.2, "px": 2215.9, "py": 2085.2, "has_dungeon": false, "has_important": false}, {"id": 6493, "name": "MountainGrave01", "category": "other", "x": 6117.9, "z": 4823.7, "px": 3092.1, "py": 2871.2, "has_dungeon": false, "has_important": false}, {"id": 6494, "name": "MountainGrave01", "category": "other", "x": -3539.4, "z": 6343.7, "px": 1443.9, "py": 3130.7, "has_dungeon": false, "has_important": false}, {"id": 6495, "name": "MountainGrave01", "category": "other", "x": -2164.6, "z": -155.7, "px": 1678.6, "py": 2021.4, "has_dungeon": false, "has_important": false}, {"id": 6496, "name": "MountainGrave01", "category": "other", "x": 2197.6, "z": -3531.0, "px": 2423.1, "py": 1445.4, "has_dungeon": false, "has_important": false}, {"id": 6497, "name": "MountainGrave01", "category": "other", "x": -3928.3, "z": 5224.6, "px": 1377.6, "py": 2939.7, "has_dungeon": false, "has_important": true}, {"id": 6498, "name": "MountainGrave01", "category": "other", "x": 6450.4, "z": 7125.5, "px": 3148.9, "py": 3264.1, "has_dungeon": false, "has_important": true}, {"id": 6499, "name": "MountainGrave01", "category": "other", "x": 7100.4, "z": -618.4, "px": 3259.8, "py": 1942.5, "has_dungeon": false, "has_important": false}, {"id": 6500, "name": "MountainGrave01", "category": "other", "x": -4371.3, "z": -4137.8, "px": 1302.0, "py": 1341.8, "has_dungeon": false, "has_important": false}, {"id": 6501, "name": "MountainGrave01", "category": "other", "x": 1317.4, "z": 8692.9, "px": 2272.8, "py": 3531.6, "has_dungeon": false, "has_important": true}, {"id": 6502, "name": "MountainGrave01", "category": "other", "x": 3516.8, "z": 9128.1, "px": 2648.2, "py": 3605.9, "has_dungeon": false, "has_important": false}, {"id": 6503, "name": "MountainGrave01", "category": "other", "x": 1384.3, "z": 6727.4, "px": 2284.3, "py": 3196.1, "has_dungeon": false, "has_important": false}, {"id": 6504, "name": "MountainGrave01", "category": "other", "x": 1072.3, "z": -2628.5, "px": 2231.0, "py": 1599.4, "has_dungeon": false, "has_important": false}, {"id": 6505, "name": "MountainGrave01", "category": "other", "x": 3197.6, "z": -1907.5, "px": 2593.7, "py": 1722.5, "has_dungeon": false, "has_important": false}, {"id": 6506, "name": "MountainGrave01", "category": "other", "x": -4416.4, "z": -1159.3, "px": 1294.3, "py": 1850.1, "has_dungeon": false, "has_important": true}, {"id": 6507, "name": "MountainGrave01", "category": "other", "x": -3815.1, "z": 4527.8, "px": 1396.9, "py": 2820.7, "has_dungeon": false, "has_important": false}, {"id": 6508, "name": "MountainGrave01", "category": "other", "x": 4229.3, "z": -1968.5, "px": 2769.8, "py": 1712.0, "has_dungeon": false, "has_important": true}, {"id": 6509, "name": "MountainGrave01", "category": "other", "x": -6898.8, "z": -2245.2, "px": 870.6, "py": 1664.8, "has_dungeon": false, "has_important": false}, {"id": 6510, "name": "MountainGrave01", "category": "other", "x": 8430.5, "z": -4007.9, "px": 3486.8, "py": 1364.0, "has_dungeon": false, "has_important": false}, {"id": 6511, "name": "MountainGrave01", "category": "other", "x": -6660.6, "z": -2134.3, "px": 911.3, "py": 1683.7, "has_dungeon": false, "has_important": true}, {"id": 6512, "name": "MountainGrave01", "category": "other", "x": -3571.3, "z": 1413.1, "px": 1438.5, "py": 2289.2, "has_dungeon": false, "has_important": true}, {"id": 6513, "name": "MountainGrave01", "category": "other", "x": 7096.0, "z": -525.3, "px": 3259.1, "py": 1958.3, "has_dungeon": false, "has_important": false}, {"id": 6514, "name": "MountainGrave01", "category": "other", "x": -3975.8, "z": 1511.6, "px": 1369.5, "py": 2306.0, "has_dungeon": false, "has_important": true}, {"id": 6515, "name": "MountainGrave01", "category": "other", "x": 2008.1, "z": -6822.9, "px": 2390.7, "py": 883.6, "has_dungeon": false, "has_important": false}, {"id": 6516, "name": "MountainGrave01", "category": "other", "x": -2177.1, "z": -522.8, "px": 1676.4, "py": 1958.8, "has_dungeon": false, "has_important": false}, {"id": 6517, "name": "MountainGrave01", "category": "other", "x": 6799.9, "z": 6679.8, "px": 3208.5, "py": 3188.0, "has_dungeon": false, "has_important": false}, {"id": 6518, "name": "MountainGrave01", "category": "other", "x": 2088.3, "z": -1536.5, "px": 2404.4, "py": 1785.8, "has_dungeon": false, "has_important": false}, {"id": 6519, "name": "MountainGrave01", "category": "other", "x": 3419.3, "z": 9256.1, "px": 2631.6, "py": 3627.7, "has_dungeon": false, "has_important": true}, {"id": 6520, "name": "MountainGrave01", "category": "other", "x": 2344.5, "z": -2738.9, "px": 2448.1, "py": 1580.6, "has_dungeon": false, "has_important": false}, {"id": 6521, "name": "MountainGrave01", "category": "other", "x": 2607.7, "z": -4884.7, "px": 2493.0, "py": 1214.3, "has_dungeon": false, "has_important": true}, {"id": 6522, "name": "MountainGrave01", "category": "other", "x": -1971.7, "z": -653.1, "px": 1711.5, "py": 1936.5, "has_dungeon": false, "has_important": false}, {"id": 6523, "name": "MountainGrave01", "category": "other", "x": 1407.0, "z": 8377.1, "px": 2288.1, "py": 3477.7, "has_dungeon": false, "has_important": false}, {"id": 6524, "name": "MountainGrave01", "category": "other", "x": 2666.9, "z": 820.0, "px": 2503.2, "py": 2187.9, "has_dungeon": false, "has_important": true}, {"id": 6525, "name": "MountainGrave01", "category": "other", "x": 3185.7, "z": -1818.6, "px": 2591.7, "py": 1737.6, "has_dungeon": false, "has_important": false}, {"id": 6526, "name": "MountainGrave01", "category": "other", "x": 6279.0, "z": 4726.1, "px": 3119.6, "py": 2854.6, "has_dungeon": false, "has_important": true}, {"id": 6527, "name": "MountainGrave01", "category": "other", "x": -3905.8, "z": 5092.0, "px": 1381.4, "py": 2917.0, "has_dungeon": false, "has_important": true}, {"id": 6528, "name": "MountainGrave01", "category": "other", "x": 8388.6, "z": -3858.5, "px": 3479.7, "py": 1389.5, "has_dungeon": false, "has_important": true}, {"id": 6529, "name": "MountainGrave01", "category": "other", "x": -4872.1, "z": 2693.5, "px": 1216.5, "py": 2507.7, "has_dungeon": false, "has_important": true}, {"id": 6530, "name": "MountainGrave01", "category": "other", "x": 6673.6, "z": 6533.9, "px": 3187.0, "py": 3163.1, "has_dungeon": false, "has_important": false}, {"id": 6531, "name": "MountainGrave01", "category": "other", "x": -1946.6, "z": -509.8, "px": 1715.8, "py": 1961.0, "has_dungeon": false, "has_important": false}, {"id": 6532, "name": "MountainGrave01", "category": "other", "x": -4028.5, "z": 1707.2, "px": 1360.5, "py": 2339.4, "has_dungeon": false, "has_important": false}, {"id": 6533, "name": "MountainGrave01", "category": "other", "x": -9702.8, "z": -751.4, "px": 392.1, "py": 1919.8, "has_dungeon": false, "has_important": true}, {"id": 6534, "name": "MountainGrave01", "category": "other", "x": 2874.5, "z": 679.7, "px": 2538.6, "py": 2164.0, "has_dungeon": false, "has_important": false}, {"id": 6535, "name": "MountainGrave01", "category": "other", "x": 2703.8, "z": 567.5, "px": 2509.4, "py": 2144.9, "has_dungeon": false, "has_important": true}, {"id": 6536, "name": "MountainGrave01", "category": "other", "x": 7601.3, "z": -548.4, "px": 3345.3, "py": 1954.4, "has_dungeon": false, "has_important": false}, {"id": 6537, "name": "MountainGrave01", "category": "other", "x": 7160.3, "z": -327.0, "px": 3270.0, "py": 1992.2, "has_dungeon": false, "has_important": true}, {"id": 6538, "name": "MountainGrave01", "category": "other", "x": 3061.3, "z": 622.6, "px": 2570.5, "py": 2154.3, "has_dungeon": false, "has_important": false}, {"id": 6539, "name": "MountainGrave01", "category": "other", "x": 1097.6, "z": 256.3, "px": 2235.3, "py": 2091.7, "has_dungeon": false, "has_important": true}, {"id": 6540, "name": "MountainGrave01", "category": "other", "x": 3263.9, "z": 9294.4, "px": 2605.0, "py": 3634.2, "has_dungeon": false, "has_important": true}, {"id": 6541, "name": "MountainGrave01", "category": "other", "x": 3402.4, "z": 296.7, "px": 2628.7, "py": 2098.6, "has_dungeon": false, "has_important": true}, {"id": 6542, "name": "MountainGrave01", "category": "other", "x": 7206.9, "z": -495.6, "px": 3278.0, "py": 1963.4, "has_dungeon": false, "has_important": true}, {"id": 6543, "name": "MountainGrave01", "category": "other", "x": -2724.9, "z": 7355.7, "px": 1583.0, "py": 3303.4, "has_dungeon": false, "has_important": false}, {"id": 6544, "name": "MountainGrave01", "category": "other", "x": -5691.8, "z": -2774.3, "px": 1076.6, "py": 1574.5, "has_dungeon": false, "has_important": true}, {"id": 6545, "name": "MountainGrave01", "category": "other", "x": 5655.4, "z": 19.8, "px": 3013.2, "py": 2051.4, "has_dungeon": false, "has_important": true}, {"id": 6546, "name": "MountainGrave01", "category": "other", "x": 2538.8, "z": -2971.0, "px": 2481.3, "py": 1540.9, "has_dungeon": false, "has_important": false}, {"id": 6547, "name": "MountainGrave01", "category": "other", "x": -9910.4, "z": -771.3, "px": 356.6, "py": 1916.4, "has_dungeon": false, "has_important": false}, {"id": 6548, "name": "MountainGrave01", "category": "other", "x": 7161.9, "z": -514.4, "px": 3270.3, "py": 1960.2, "has_dungeon": false, "has_important": false}, {"id": 6549, "name": "MountainGrave01", "category": "other", "x": 7079.5, "z": -391.3, "px": 3256.2, "py": 1981.2, "has_dungeon": false, "has_important": false}, {"id": 6550, "name": "MountainGrave01", "category": "other", "x": 2329.8, "z": -2573.6, "px": 2445.6, "py": 1608.8, "has_dungeon": false, "has_important": true}, {"id": 6551, "name": "MountainGrave01", "category": "other", "x": -5284.6, "z": 5258.3, "px": 1146.1, "py": 2945.4, "has_dungeon": false, "has_important": false}, {"id": 6552, "name": "MountainGrave01", "category": "other", "x": 1371.7, "z": 8445.7, "px": 2282.1, "py": 3489.4, "has_dungeon": false, "has_important": true}, {"id": 6553, "name": "MountainGrave01", "category": "other", "x": 6783.1, "z": 6605.2, "px": 3205.6, "py": 3175.3, "has_dungeon": false, "has_important": true}, {"id": 6554, "name": "MountainGrave01", "category": "other", "x": 6531.8, "z": 6599.2, "px": 3162.8, "py": 3174.3, "has_dungeon": false, "has_important": true}, {"id": 6555, "name": "MountainGrave01", "category": "other", "x": 2521.5, "z": 775.5, "px": 2478.3, "py": 2180.4, "has_dungeon": false, "has_important": true}, {"id": 6556, "name": "MountainGrave01", "category": "other", "x": -3974.7, "z": 5175.2, "px": 1369.7, "py": 2931.2, "has_dungeon": false, "has_important": false}, {"id": 6557, "name": "MountainGrave01", "category": "other", "x": 7003.0, "z": -335.2, "px": 3243.2, "py": 1990.8, "has_dungeon": false, "has_important": false}, {"id": 6558, "name": "MountainGrave01", "category": "other", "x": -9652.6, "z": -711.0, "px": 400.6, "py": 1926.7, "has_dungeon": false, "has_important": false}, {"id": 6559, "name": "MountainGrave01", "category": "other", "x": 1172.5, "z": 318.6, "px": 2248.1, "py": 2102.4, "has_dungeon": false, "has_important": false}, {"id": 6560, "name": "MountainGrave01", "category": "other", "x": 1236.9, "z": 182.6, "px": 2259.1, "py": 2079.2, "has_dungeon": false, "has_important": false}, {"id": 6561, "name": "MountainGrave01", "category": "other", "x": 3637.4, "z": 9225.5, "px": 2668.8, "py": 3622.5, "has_dungeon": false, "has_important": false}, {"id": 6562, "name": "MountainGrave01", "category": "other", "x": 2695.8, "z": -2802.8, "px": 2508.1, "py": 1569.7, "has_dungeon": false, "has_important": true}, {"id": 6563, "name": "MountainGrave01", "category": "other", "x": -112.9, "z": -1510.9, "px": 2028.7, "py": 1790.1, "has_dungeon": false, "has_important": true}, {"id": 6564, "name": "MountainGrave01", "category": "other", "x": -2238.8, "z": -335.8, "px": 1665.9, "py": 1990.7, "has_dungeon": false, "has_important": true}, {"id": 6565, "name": "MountainGrave01", "category": "other", "x": 7686.2, "z": -582.2, "px": 3359.8, "py": 1948.6, "has_dungeon": false, "has_important": false}, {"id": 6566, "name": "MountainGrave01", "category": "other", "x": 6544.3, "z": 6993.6, "px": 3164.9, "py": 3241.6, "has_dungeon": false, "has_important": true}, {"id": 6567, "name": "MountainGrave01", "category": "other", "x": 5851.5, "z": 4625.9, "px": 3046.7, "py": 2837.5, "has_dungeon": false, "has_important": true}, {"id": 6568, "name": "MountainGrave01", "category": "other", "x": 5883.9, "z": 4676.8, "px": 3052.2, "py": 2846.2, "has_dungeon": false, "has_important": false}, {"id": 6569, "name": "MountainGrave01", "category": "other", "x": 6456.2, "z": 6774.3, "px": 3149.9, "py": 3204.1, "has_dungeon": false, "has_important": true}, {"id": 6570, "name": "MountainGrave01", "category": "other", "x": 5956.5, "z": 4756.6, "px": 3064.6, "py": 2859.8, "has_dungeon": false, "has_important": false}, {"id": 6571, "name": "MountainGrave01", "category": "other", "x": 3825.1, "z": -73.6, "px": 2700.8, "py": 2035.4, "has_dungeon": false, "has_important": true}, {"id": 6572, "name": "MountainGrave01", "category": "other", "x": 2564.3, "z": -2630.8, "px": 2485.6, "py": 1599.0, "has_dungeon": false, "has_important": false}, {"id": 6573, "name": "MountainGrave01", "category": "other", "x": -3202.2, "z": 2795.5, "px": 1501.5, "py": 2525.1, "has_dungeon": false, "has_important": true}, {"id": 6624, "name": "MountainWell1", "category": "other", "x": 5711.3, "z": -439.9, "px": 3022.7, "py": 1972.9, "has_dungeon": false, "has_important": true}, {"id": 6625, "name": "MountainWell1", "category": "other", "x": -3453.7, "z": 6144.4, "px": 1458.6, "py": 3096.6, "has_dungeon": false, "has_important": true}, {"id": 6626, "name": "MountainWell1", "category": "other", "x": 4365.6, "z": -1969.1, "px": 2793.1, "py": 1711.9, "has_dungeon": false, "has_important": true}, {"id": 6627, "name": "MountainWell1", "category": "other", "x": -5059.8, "z": 2576.8, "px": 1184.5, "py": 2487.8, "has_dungeon": false, "has_important": true}, {"id": 6628, "name": "MountainWell1", "category": "other", "x": -3975.5, "z": 4467.1, "px": 1369.5, "py": 2810.4, "has_dungeon": false, "has_important": true}, {"id": 6629, "name": "MountainWell1", "category": "other", "x": 6576.6, "z": 6706.8, "px": 3170.4, "py": 3192.6, "has_dungeon": false, "has_important": true}, {"id": 6630, "name": "MountainWell1", "category": "other", "x": 9663.7, "z": -1147.5, "px": 3697.3, "py": 1852.2, "has_dungeon": false, "has_important": true}, {"id": 6631, "name": "MountainWell1", "category": "other", "x": 448.8, "z": 3662.6, "px": 2124.6, "py": 2673.1, "has_dungeon": false, "has_important": true}, {"id": 6632, "name": "MountainWell1", "category": "other", "x": -8526.6, "z": -1152.7, "px": 592.8, "py": 1851.3, "has_dungeon": false, "has_important": true}, {"id": 6633, "name": "MountainWell1", "category": "other", "x": -4424.1, "z": -1218.1, "px": 1293.0, "py": 1840.1, "has_dungeon": false, "has_important": true}, {"id": 6634, "name": "MountainWell1", "category": "other", "x": 5840.2, "z": 4659.1, "px": 3044.7, "py": 2843.2, "has_dungeon": false, "has_important": false}, {"id": 6635, "name": "MountainWell1", "category": "other", "x": 7053.7, "z": -438.9, "px": 3251.8, "py": 1973.1, "has_dungeon": false, "has_important": false}, {"id": 6636, "name": "MountainWell1", "category": "other", "x": -9974.1, "z": -440.6, "px": 345.8, "py": 1972.8, "has_dungeon": false, "has_important": true}, {"id": 6637, "name": "MountainWell1", "category": "other", "x": -6708.8, "z": -2302.0, "px": 903.0, "py": 1655.1, "has_dungeon": false, "has_important": true}, {"id": 6638, "name": "MountainWell1", "category": "other", "x": -7109.1, "z": -2491.1, "px": 834.7, "py": 1622.9, "has_dungeon": false, "has_important": true}, {"id": 6639, "name": "MountainWell1", "category": "other", "x": -4465.2, "z": -3954.4, "px": 1285.9, "py": 1373.1, "has_dungeon": false, "has_important": false}, {"id": 6640, "name": "MountainWell1", "category": "other", "x": 3145.4, "z": -2051.8, "px": 2584.8, "py": 1697.8, "has_dungeon": false, "has_important": true}, {"id": 6641, "name": "MountainWell1", "category": "other", "x": 943.7, "z": -2423.8, "px": 2209.1, "py": 1634.3, "has_dungeon": false, "has_important": true}, {"id": 6642, "name": "MountainWell1", "category": "other", "x": 1663.6, "z": 6647.6, "px": 2331.9, "py": 3182.5, "has_dungeon": false, "has_important": true}, {"id": 6643, "name": "MountainWell1", "category": "other", "x": 2449.5, "z": 8890.9, "px": 2466.0, "py": 3565.4, "has_dungeon": false, "has_important": true}, {"id": 6644, "name": "MountainWell1", "category": "other", "x": -2440.9, "z": 1868.5, "px": 1631.4, "py": 2366.9, "has_dungeon": false, "has_important": true}, {"id": 6645, "name": "MountainWell1", "category": "other", "x": 4688.7, "z": -5511.8, "px": 2848.2, "py": 1107.3, "has_dungeon": false, "has_important": true}, {"id": 6646, "name": "MountainWell1", "category": "other", "x": -7104.4, "z": 2231.3, "px": 835.5, "py": 2428.8, "has_dungeon": false, "has_important": true}, {"id": 6647, "name": "MountainWell1", "category": "other", "x": 9921.0, "z": -1145.7, "px": 3741.2, "py": 1852.5, "has_dungeon": false, "has_important": false}, {"id": 6648, "name": "MountainWell1", "category": "other", "x": -1987.1, "z": -205.6, "px": 1708.9, "py": 2012.9, "has_dungeon": false, "has_important": true}, {"id": 925, "name": "PlaceofMystery1", "category": "other", "x": -2755.7, "z": -8383.2, "px": 1577.7, "py": 617.3, "has_dungeon": false, "has_important": true}, {"id": 926, "name": "PlaceofMystery2", "category": "other", "x": 2681.1, "z": -9350.3, "px": 2505.6, "py": 452.2, "has_dungeon": false, "has_important": true}, {"id": 927, "name": "PlaceofMystery3", "category": "other", "x": -258.7, "z": -9018.0, "px": 2003.8, "py": 508.9, "has_dungeon": false, "has_important": true}, {"id": 6649, "name": "ShipWreck01", "category": "other", "x": -8454.7, "z": -717.9, "px": 605.1, "py": 1925.5, "has_dungeon": false, "has_important": true}, {"id": 6650, "name": "ShipWreck01", "category": "other", "x": -7367.4, "z": -4626.9, "px": 790.6, "py": 1258.3, "has_dungeon": false, "has_important": true}, {"id": 6651, "name": "ShipWreck01", "category": "other", "x": 16.2, "z": -5741.4, "px": 2050.8, "py": 1068.1, "has_dungeon": false, "has_important": true}, {"id": 6652, "name": "ShipWreck01", "category": "other", "x": -6004.9, "z": 1972.7, "px": 1023.2, "py": 2384.7, "has_dungeon": false, "has_important": true}, {"id": 6653, "name": "ShipWreck01", "category": "other", "x": 2548.7, "z": -2352.5, "px": 2483.0, "py": 1646.5, "has_dungeon": false, "has_important": true}, {"id": 6654, "name": "ShipWreck01", "category": "other", "x": -2822.1, "z": -5256.9, "px": 1566.4, "py": 1150.8, "has_dungeon": false, "has_important": true}, {"id": 6655, "name": "ShipWreck01", "category": "other", "x": -7234.8, "z": 195.9, "px": 813.3, "py": 2081.4, "has_dungeon": false, "has_important": false}, {"id": 6656, "name": "ShipWreck01", "category": "other", "x": -1231.2, "z": -3444.4, "px": 1837.9, "py": 1460.2, "has_dungeon": false, "has_important": false}, {"id": 6657, "name": "ShipWreck01", "category": "other", "x": -4295.1, "z": 3763.9, "px": 1315.0, "py": 2690.4, "has_dungeon": false, "has_important": true}, {"id": 6658, "name": "ShipWreck01", "category": "other", "x": -4809.2, "z": -850.0, "px": 1227.2, "py": 1902.9, "has_dungeon": false, "has_important": true}, {"id": 6659, "name": "ShipWreck01", "category": "other", "x": 7953.2, "z": -2999.0, "px": 3405.3, "py": 1536.2, "has_dungeon": false, "has_important": true}, {"id": 6660, "name": "ShipWreck01", "category": "other", "x": -4088.7, "z": -6212.6, "px": 1350.2, "py": 987.7, "has_dungeon": false, "has_important": true}, {"id": 6661, "name": "ShipWreck01", "category": "other", "x": -4785.0, "z": -5243.9, "px": 1231.4, "py": 1153.0, "has_dungeon": false, "has_important": true}, {"id": 6662, "name": "ShipWreck01", "category": "other", "x": 4804.0, "z": 1132.1, "px": 2867.9, "py": 2241.2, "has_dungeon": false, "has_important": true}, {"id": 6663, "name": "ShipWreck01", "category": "other", "x": 6485.2, "z": 4347.9, "px": 3154.8, "py": 2790.0, "has_dungeon": false, "has_important": false}, {"id": 6664, "name": "ShipWreck01", "category": "other", "x": -7423.7, "z": 4174.9, "px": 781.0, "py": 2760.5, "has_dungeon": false, "has_important": true}, {"id": 6665, "name": "ShipWreck01", "category": "other", "x": 2230.5, "z": 5908.5, "px": 2428.7, "py": 3056.4, "has_dungeon": false, "has_important": true}, {"id": 6666, "name": "ShipWreck01", "category": "other", "x": 4149.4, "z": 3981.6, "px": 2756.2, "py": 2727.5, "has_dungeon": false, "has_important": true}, {"id": 6667, "name": "ShipWreck01", "category": "other", "x": -9520.7, "z": 2182.8, "px": 423.1, "py": 2420.5, "has_dungeon": false, "has_important": true}, {"id": 6668, "name": "ShipWreck01", "category": "other", "x": 2949.2, "z": 1010.7, "px": 2551.3, "py": 2220.5, "has_dungeon": false, "has_important": true}, {"id": 6669, "name": "ShipWreck01", "category": "other", "x": 1855.8, "z": -4308.1, "px": 2364.7, "py": 1312.8, "has_dungeon": false, "has_important": true}, {"id": 6670, "name": "ShipWreck01", "category": "other", "x": 3402.7, "z": -1491.8, "px": 2628.7, "py": 1793.4, "has_dungeon": false, "has_important": true}, {"id": 6671, "name": "ShipWreck01", "category": "other", "x": 5753.0, "z": -4589.1, "px": 3029.8, "py": 1264.8, "has_dungeon": false, "has_important": false}, {"id": 6672, "name": "ShipWreck01", "category": "other", "x": 4397.6, "z": -747.4, "px": 2798.5, "py": 1920.4, "has_dungeon": false, "has_important": false}, {"id": 6673, "name": "ShipWreck01", "category": "other", "x": 2126.6, "z": -705.1, "px": 2410.9, "py": 1927.7, "has_dungeon": false, "has_important": true}, {"id": 6674, "name": "ShipWreck02", "category": "other", "x": -6699.9, "z": 5250.2, "px": 904.6, "py": 2944.0, "has_dungeon": false, "has_important": true}, {"id": 6675, "name": "ShipWreck02", "category": "other", "x": -2755.8, "z": -3516.5, "px": 1577.7, "py": 1447.9, "has_dungeon": false, "has_important": true}, {"id": 6676, "name": "ShipWreck02", "category": "other", "x": -1934.7, "z": -4235.3, "px": 1717.8, "py": 1325.2, "has_dungeon": false, "has_important": true}, {"id": 6677, "name": "ShipWreck02", "category": "other", "x": 885.5, "z": 578.0, "px": 2199.1, "py": 2146.6, "has_dungeon": false, "has_important": false}, {"id": 6678, "name": "ShipWreck02", "category": "other", "x": 2825.9, "z": 7349.0, "px": 2530.3, "py": 3302.2, "has_dungeon": false, "has_important": true}, {"id": 6679, "name": "ShipWreck02", "category": "other", "x": -3453.2, "z": 4943.1, "px": 1458.7, "py": 2891.6, "has_dungeon": false, "has_important": true}, {"id": 6680, "name": "ShipWreck02", "category": "other", "x": -974.7, "z": 4230.6, "px": 1881.7, "py": 2770.0, "has_dungeon": false, "has_important": true}, {"id": 6681, "name": "ShipWreck02", "category": "other", "x": -1360.9, "z": -6602.1, "px": 1815.7, "py": 921.2, "has_dungeon": false, "has_important": true}, {"id": 6682, "name": "ShipWreck02", "category": "other", "x": 7312.2, "z": 1233.7, "px": 3295.9, "py": 2258.6, "has_dungeon": false, "has_important": false}, {"id": 6683, "name": "ShipWreck02", "category": "other", "x": -1603.3, "z": -7600.2, "px": 1774.4, "py": 750.9, "has_dungeon": false, "has_important": true}, {"id": 6684, "name": "ShipWreck02", "category": "other", "x": -2573.6, "z": -531.1, "px": 1608.8, "py": 1957.4, "has_dungeon": false, "has_important": false}, {"id": 6685, "name": "ShipWreck02", "category": "other", "x": -1874.7, "z": 2761.9, "px": 1728.1, "py": 2519.4, "has_dungeon": false, "has_important": true}, {"id": 6686, "name": "ShipWreck02", "category": "other", "x": 20.3, "z": 5435.9, "px": 2051.5, "py": 2975.7, "has_dungeon": false, "has_important": true}, {"id": 6687, "name": "ShipWreck02", "category": "other", "x": 7691.9, "z": 4480.2, "px": 3360.8, "py": 2812.6, "has_dungeon": false, "has_important": true}, {"id": 6688, "name": "ShipWreck02", "category": "other", "x": -9195.4, "z": -1681.3, "px": 478.7, "py": 1761.1, "has_dungeon": false, "has_important": false}, {"id": 6689, "name": "ShipWreck02", "category": "other", "x": -4971.3, "z": -3130.0, "px": 1199.6, "py": 1513.8, "has_dungeon": false, "has_important": true}, {"id": 6690, "name": "ShipWreck02", "category": "other", "x": 3454.6, "z": -4225.3, "px": 2637.6, "py": 1326.9, "has_dungeon": false, "has_important": true}, {"id": 6691, "name": "ShipWreck02", "category": "other", "x": -8211.6, "z": 564.6, "px": 646.6, "py": 2144.4, "has_dungeon": false, "has_important": false}, {"id": 6692, "name": "ShipWreck02", "category": "other", "x": 2489.7, "z": -7280.0, "px": 2472.9, "py": 805.5, "has_dungeon": false, "has_important": false}, {"id": 6693, "name": "ShipWreck02", "category": "other", "x": -4105.1, "z": 913.5, "px": 1347.4, "py": 2203.9, "has_dungeon": false, "has_important": true}, {"id": 6694, "name": "ShipWreck02", "category": "other", "x": -2443.8, "z": 5944.6, "px": 1630.9, "py": 3062.5, "has_dungeon": false, "has_important": true}, {"id": 6695, "name": "ShipWreck02", "category": "other", "x": -5903.7, "z": 4411.5, "px": 1040.4, "py": 2800.9, "has_dungeon": false, "has_important": true}, {"id": 6696, "name": "ShipWreck02", "category": "other", "x": -3692.4, "z": 2639.0, "px": 1417.8, "py": 2498.4, "has_dungeon": false, "has_important": true}, {"id": 6697, "name": "ShipWreck02", "category": "other", "x": -11.6, "z": -7249.5, "px": 2046.0, "py": 810.8, "has_dungeon": false, "has_important": true}, {"id": 6698, "name": "ShipWreck02", "category": "other", "x": 1093.2, "z": 3630.4, "px": 2234.6, "py": 2667.6, "has_dungeon": false, "has_important": true}, {"id": 6699, "name": "ShipWreck03", "category": "other", "x": 500.2, "z": 7276.2, "px": 2133.4, "py": 3289.8, "has_dungeon": false, "has_important": true}, {"id": 6700, "name": "ShipWreck03", "category": "other", "x": -1419.7, "z": -2175.6, "px": 1805.7, "py": 1676.7, "has_dungeon": false, "has_important": true}, {"id": 6701, "name": "ShipWreck03", "category": "other", "x": 1677.1, "z": -6481.2, "px": 2334.2, "py": 941.9, "has_dungeon": false, "has_important": true}, {"id": 6702, "name": "ShipWreck03", "category": "other", "x": -5356.2, "z": 713.1, "px": 1133.9, "py": 2169.7, "has_dungeon": false, "has_important": true}, {"id": 6703, "name": "ShipWreck03", "category": "other", "x": 4658.8, "z": -3186.3, "px": 2843.1, "py": 1504.2, "has_dungeon": false, "has_important": false}, {"id": 6704, "name": "ShipWreck03", "category": "other", "x": -2515.3, "z": 3584.5, "px": 1618.7, "py": 2659.8, "has_dungeon": false, "has_important": true}, {"id": 6705, "name": "ShipWreck03", "category": "other", "x": 8324.2, "z": -370.1, "px": 3468.7, "py": 1984.8, "has_dungeon": false, "has_important": true}, {"id": 6706, "name": "ShipWreck03", "category": "other", "x": -6379.9, "z": -3762.8, "px": 959.2, "py": 1405.8, "has_dungeon": false, "has_important": true}, {"id": 6707, "name": "ShipWreck03", "category": "other", "x": 769.9, "z": -2227.3, "px": 2179.4, "py": 1667.9, "has_dungeon": false, "has_important": true}, {"id": 6708, "name": "ShipWreck03", "category": "other", "x": 2739.3, "z": -5520.9, "px": 2515.5, "py": 1105.8, "has_dungeon": false, "has_important": true}, {"id": 6709, "name": "ShipWreck03", "category": "other", "x": 3475.2, "z": 3184.8, "px": 2641.1, "py": 2591.5, "has_dungeon": false, "has_important": true}, {"id": 6710, "name": "ShipWreck03", "category": "other", "x": -1596.3, "z": -5546.3, "px": 1775.6, "py": 1101.4, "has_dungeon": false, "has_important": true}, {"id": 6711, "name": "ShipWreck03", "category": "other", "x": 5430.7, "z": -1771.8, "px": 2974.8, "py": 1745.6, "has_dungeon": false, "has_important": false}, {"id": 6712, "name": "ShipWreck03", "category": "other", "x": 4032.0, "z": 6803.0, "px": 2736.1, "py": 3209.0, "has_dungeon": false, "has_important": true}, {"id": 6713, "name": "ShipWreck03", "category": "other", "x": -2476.8, "z": 1457.6, "px": 1625.3, "py": 2296.8, "has_dungeon": false, "has_important": true}, {"id": 6714, "name": "ShipWreck03", "category": "other", "x": -140.2, "z": -527.7, "px": 2024.1, "py": 1957.9, "has_dungeon": false, "has_important": true}, {"id": 6715, "name": "ShipWreck03", "category": "other", "x": -3667.4, "z": -4035.5, "px": 1422.1, "py": 1359.3, "has_dungeon": false, "has_important": true}, {"id": 6716, "name": "ShipWreck03", "category": "other", "x": 4284.1, "z": 2103.6, "px": 2779.2, "py": 2407.0, "has_dungeon": false, "has_important": true}, {"id": 6717, "name": "ShipWreck03", "category": "other", "x": 706.9, "z": 2450.7, "px": 2168.6, "py": 2466.3, "has_dungeon": false, "has_important": true}, {"id": 6718, "name": "ShipWreck03", "category": "other", "x": -6002.9, "z": -4980.9, "px": 1023.5, "py": 1197.9, "has_dungeon": false, "has_important": true}, {"id": 6719, "name": "ShipWreck03", "category": "other", "x": -1905.9, "z": 4727.7, "px": 1722.7, "py": 2854.9, "has_dungeon": false, "has_important": true}, {"id": 6720, "name": "ShipWreck03", "category": "other", "x": 5312.4, "z": 3636.7, "px": 2954.6, "py": 2668.7, "has_dungeon": false, "has_important": true}, {"id": 6721, "name": "ShipWreck03", "category": "other", "x": 1487.3, "z": -5387.7, "px": 2301.8, "py": 1128.5, "has_dungeon": false, "has_important": false}, {"id": 6722, "name": "ShipWreck03", "category": "other", "x": 253.8, "z": -4270.1, "px": 2091.3, "py": 1319.2, "has_dungeon": false, "has_important": false}, {"id": 6723, "name": "ShipWreck03", "category": "other", "x": 2895.4, "z": 4337.7, "px": 2542.1, "py": 2788.3, "has_dungeon": false, "has_important": true}, {"id": 6724, "name": "ShipWreck04", "category": "other", "x": -5122.9, "z": -1847.6, "px": 1173.7, "py": 1732.7, "has_dungeon": false, "has_important": false}, {"id": 6725, "name": "ShipWreck04", "category": "other", "x": 8323.4, "z": 692.2, "px": 3468.5, "py": 2166.1, "has_dungeon": false, "has_important": true}, {"id": 6726, "name": "ShipWreck04", "category": "other", "x": -3316.8, "z": -2489.2, "px": 1481.9, "py": 1623.2, "has_dungeon": false, "has_important": true}, {"id": 6727, "name": "ShipWreck04", "category": "other", "x": 3578.2, "z": 5315.2, "px": 2658.7, "py": 2955.1, "has_dungeon": false, "has_important": false}, {"id": 6728, "name": "ShipWreck04", "category": "other", "x": -7053.5, "z": 1862.4, "px": 844.2, "py": 2365.8, "has_dungeon": false, "has_important": false}, {"id": 6729, "name": "ShipWreck04", "category": "other", "x": 8779.4, "z": -1657.5, "px": 3546.4, "py": 1765.1, "has_dungeon": false, "has_important": true}, {"id": 6730, "name": "ShipWreck04", "category": "other", "x": 5938.6, "z": 60.7, "px": 3061.5, "py": 2058.4, "has_dungeon": false, "has_important": false}, {"id": 6731, "name": "ShipWreck04", "category": "other", "x": 1715.9, "z": 1408.0, "px": 2340.8, "py": 2288.3, "has_dungeon": false, "has_important": true}, {"id": 6732, "name": "ShipWreck04", "category": "other", "x": 9807.8, "z": 1264.6, "px": 3721.9, "py": 2263.8, "has_dungeon": false, "has_important": false}, {"id": 6733, "name": "ShipWreck04", "category": "other", "x": -7174.4, "z": -2100.9, "px": 823.6, "py": 1689.4, "has_dungeon": false, "has_important": false}, {"id": 6734, "name": "ShipWreck04", "category": "other", "x": 5166.8, "z": 4656.0, "px": 2929.8, "py": 2842.6, "has_dungeon": false, "has_important": true}, {"id": 6735, "name": "ShipWreck04", "category": "other", "x": -2641.3, "z": -7305.5, "px": 1597.2, "py": 801.2, "has_dungeon": false, "has_important": true}, {"id": 6736, "name": "ShipWreck04", "category": "other", "x": 7057.6, "z": -4405.9, "px": 3252.5, "py": 1296.1, "has_dungeon": false, "has_important": false}, {"id": 6737, "name": "ShipWreck04", "category": "other", "x": -9724.8, "z": 756.4, "px": 388.3, "py": 2177.1, "has_dungeon": false, "has_important": true}, {"id": 6738, "name": "ShipWreck04", "category": "other", "x": 6609.4, "z": 2295.2, "px": 3176.0, "py": 2439.7, "has_dungeon": false, "has_important": false}, {"id": 6739, "name": "ShipWreck04", "category": "other", "x": 4079.6, "z": 323.9, "px": 2744.3, "py": 2103.3, "has_dungeon": false, "has_important": true}, {"id": 6740, "name": "ShipWreck04", "category": "other", "x": 51.4, "z": 3658.3, "px": 2056.8, "py": 2672.3, "has_dungeon": false, "has_important": true}, {"id": 6741, "name": "ShipWreck04", "category": "other", "x": 263.9, "z": -3151.1, "px": 2093.0, "py": 1510.2, "has_dungeon": false, "has_important": true}, {"id": 6742, "name": "ShipWreck04", "category": "other", "x": 6072.9, "z": -5776.7, "px": 3084.4, "py": 1062.1, "has_dungeon": false, "has_important": true}, {"id": 6743, "name": "ShipWreck04", "category": "other", "x": -3250.0, "z": 6729.4, "px": 1493.3, "py": 3196.5, "has_dungeon": false, "has_important": true}, {"id": 6744, "name": "ShipWreck04", "category": "other", "x": 8383.9, "z": 2819.4, "px": 3478.9, "py": 2529.2, "has_dungeon": false, "has_important": true}, {"id": 6745, "name": "ShipWreck04", "category": "other", "x": -2501.0, "z": -1674.2, "px": 1621.2, "py": 1762.3, "has_dungeon": false, "has_important": true}, {"id": 6746, "name": "ShipWreck04", "category": "other", "x": 1649.0, "z": 4655.6, "px": 2329.4, "py": 2842.6, "has_dungeon": false, "has_important": false}, {"id": 6747, "name": "ShipWreck04", "category": "other", "x": -4472.9, "z": 6264.5, "px": 1284.6, "py": 3117.1, "has_dungeon": false, "has_important": true}, {"id": 6748, "name": "ShipWreck04", "category": "other", "x": -1541.8, "z": 7662.9, "px": 1784.9, "py": 3355.8, "has_dungeon": false, "has_important": false}, {"id": 1308, "name": "StoneCircle", "category": "other", "x": 562.6, "z": 316.4, "px": 2144.0, "py": 2102.0, "has_dungeon": false, "has_important": false}, {"id": 1309, "name": "StoneCircle", "category": "other", "x": -3976.4, "z": -2179.9, "px": 1369.4, "py": 1676.0, "has_dungeon": false, "has_important": false}, {"id": 1310, "name": "StoneCircle", "category": "other", "x": 183.1, "z": -195.5, "px": 2079.2, "py": 2014.6, "has_dungeon": false, "has_important": false}, {"id": 1311, "name": "StoneCircle", "category": "other", "x": 77.2, "z": -1615.1, "px": 2061.2, "py": 1772.4, "has_dungeon": false, "has_important": false}, {"id": 1312, "name": "StoneCircle", "category": "other", "x": -2444.6, "z": -1594.9, "px": 1630.8, "py": 1775.8, "has_dungeon": false, "has_important": false}, {"id": 1313, "name": "StoneCircle", "category": "other", "x": -1013.9, "z": -820.3, "px": 1875.0, "py": 1908.0, "has_dungeon": false, "has_important": false}, {"id": 1314, "name": "StoneCircle", "category": "other", "x": -190.7, "z": -770.6, "px": 2015.5, "py": 1916.5, "has_dungeon": false, "has_important": false}, {"id": 1315, "name": "StoneCircle", "category": "other", "x": 2318.6, "z": -701.6, "px": 2443.7, "py": 1928.3, "has_dungeon": false, "has_important": false}, {"id": 1316, "name": "StoneCircle", "category": "other", "x": -5005.3, "z": 636.5, "px": 1193.8, "py": 2156.6, "has_dungeon": false, "has_important": false}, {"id": 1317, "name": "StoneCircle", "category": "other", "x": -1722.6, "z": -1142.5, "px": 1754.0, "py": 1853.0, "has_dungeon": false, "has_important": false}, {"id": 1318, "name": "StoneCircle", "category": "other", "x": -3251.8, "z": 1461.3, "px": 1493.0, "py": 2297.4, "has_dungeon": false, "has_important": false}, {"id": 1319, "name": "StoneCircle", "category": "other", "x": -3569.9, "z": 2763.7, "px": 1438.7, "py": 2519.7, "has_dungeon": false, "has_important": false}, {"id": 1320, "name": "StoneCircle", "category": "other", "x": 2672.5, "z": -3957.3, "px": 2504.1, "py": 1372.6, "has_dungeon": false, "has_important": false}, {"id": 1321, "name": "StoneCircle", "category": "other", "x": -3591.8, "z": 1158.7, "px": 1435.0, "py": 2245.8, "has_dungeon": false, "has_important": false}, {"id": 1322, "name": "StoneCircle", "category": "other", "x": -1741.3, "z": -459.5, "px": 1750.8, "py": 1969.6, "has_dungeon": false, "has_important": false}, {"id": 1323, "name": "StoneCircle", "category": "other", "x": -2630.3, "z": 1783.6, "px": 1599.1, "py": 2352.4, "has_dungeon": false, "has_important": false}, {"id": 1324, "name": "StoneCircle", "category": "other", "x": 2957.4, "z": -2942.0, "px": 2552.7, "py": 1545.9, "has_dungeon": false, "has_important": false}, {"id": 1325, "name": "StoneCircle", "category": "other", "x": -2183.3, "z": -1609.1, "px": 1675.4, "py": 1773.4, "has_dungeon": false, "has_important": false}, {"id": 1326, "name": "StoneCircle", "category": "other", "x": 3392.2, "z": -200.5, "px": 2626.9, "py": 2013.8, "has_dungeon": false, "has_important": false}, {"id": 1327, "name": "StoneCircle", "category": "other", "x": -5064.7, "z": 435.0, "px": 1183.6, "py": 2122.2, "has_dungeon": false, "has_important": false}, {"id": 1328, "name": "StoneCircle", "category": "other", "x": -313.7, "z": 126.2, "px": 1994.5, "py": 2069.5, "has_dungeon": false, "has_important": false}, {"id": 1329, "name": "StoneCircle", "category": "other", "x": -73.9, "z": 457.1, "px": 2035.4, "py": 2126.0, "has_dungeon": false, "has_important": false}, {"id": 1330, "name": "StoneCircle", "category": "other", "x": 4276.0, "z": -1400.1, "px": 2777.8, "py": 1809.0, "has_dungeon": false, "has_important": false}, {"id": 1331, "name": "StoneCircle", "category": "other", "x": -333.1, "z": 331.0, "px": 1991.2, "py": 2104.5, "has_dungeon": false, "has_important": false}, {"id": 1332, "name": "StoneCircle", "category": "other", "x": 60.4, "z": 259.5, "px": 2058.3, "py": 2092.3, "has_dungeon": false, "has_important": false}, {"id": 2585, "name": "StoneHouse3", "category": "other", "x": -3927.3, "z": -2407.8, "px": 1377.7, "py": 1637.1, "has_dungeon": false, "has_important": true}, {"id": 2586, "name": "StoneHouse3", "category": "other", "x": 6025.5, "z": -4841.6, "px": 3076.4, "py": 1221.7, "has_dungeon": false, "has_important": true}, {"id": 2587, "name": "StoneHouse3", "category": "other", "x": 632.9, "z": -2485.7, "px": 2156.0, "py": 1623.8, "has_dungeon": false, "has_important": true}, {"id": 2588, "name": "StoneHouse3", "category": "other", "x": 832.5, "z": -2328.4, "px": 2190.1, "py": 1650.6, "has_dungeon": false, "has_important": true}, {"id": 2589, "name": "StoneHouse3", "category": "other", "x": 5008.9, "z": 311.2, "px": 2902.9, "py": 2101.1, "has_dungeon": false, "has_important": true}, {"id": 2590, "name": "StoneHouse3", "category": "other", "x": -4171.9, "z": -6293.9, "px": 1336.0, "py": 973.8, "has_dungeon": false, "has_important": true}, {"id": 2591, "name": "StoneHouse3", "category": "other", "x": -3581.9, "z": 6729.6, "px": 1436.7, "py": 3196.5, "has_dungeon": false, "has_important": true}, {"id": 2592, "name": "StoneHouse3", "category": "other", "x": -5432.2, "z": -1846.5, "px": 1120.9, "py": 1732.9, "has_dungeon": false, "has_important": true}, {"id": 2593, "name": "StoneHouse3", "category": "other", "x": 22.2, "z": -4601.8, "px": 2051.8, "py": 1262.6, "has_dungeon": false, "has_important": true}, {"id": 2594, "name": "StoneHouse3", "category": "other", "x": 6566.7, "z": 4689.6, "px": 3168.7, "py": 2848.4, "has_dungeon": false, "has_important": true}, {"id": 2595, "name": "StoneHouse3", "category": "other", "x": -1258.3, "z": 2600.5, "px": 1833.3, "py": 2491.8, "has_dungeon": false, "has_important": true}, {"id": 2596, "name": "StoneHouse3", "category": "other", "x": 6741.3, "z": 4586.1, "px": 3198.5, "py": 2830.7, "has_dungeon": false, "has_important": true}, {"id": 2597, "name": "StoneHouse3", "category": "other", "x": 3157.2, "z": 241.2, "px": 2586.8, "py": 2089.2, "has_dungeon": false, "has_important": true}, {"id": 2598, "name": "StoneHouse3", "category": "other", "x": -5190.5, "z": 270.5, "px": 1162.2, "py": 2094.2, "has_dungeon": false, "has_important": true}, {"id": 2599, "name": "StoneHouse3", "category": "other", "x": 2051.3, "z": 1428.1, "px": 2398.1, "py": 2291.7, "has_dungeon": false, "has_important": true}, {"id": 2600, "name": "StoneHouse3", "category": "other", "x": -7421.8, "z": -1807.1, "px": 781.3, "py": 1739.6, "has_dungeon": false, "has_important": true}, {"id": 2601, "name": "StoneHouse3", "category": "other", "x": -1233.6, "z": -5318.4, "px": 1837.5, "py": 1140.3, "has_dungeon": false, "has_important": true}, {"id": 2602, "name": "StoneHouse3", "category": "other", "x": 465.0, "z": 5300.4, "px": 2127.4, "py": 2952.6, "has_dungeon": false, "has_important": true}, {"id": 2603, "name": "StoneHouse3", "category": "other", "x": -2363.8, "z": -204.2, "px": 1644.6, "py": 2013.1, "has_dungeon": false, "has_important": true}, {"id": 2604, "name": "StoneHouse3", "category": "other", "x": -6088.3, "z": 4056.0, "px": 1008.9, "py": 2740.2, "has_dungeon": false, "has_important": true}, {"id": 2605, "name": "StoneHouse3", "category": "other", "x": 254.3, "z": -1174.3, "px": 2091.4, "py": 1847.6, "has_dungeon": false, "has_important": true}, {"id": 2606, "name": "StoneHouse3", "category": "other", "x": -9167.9, "z": 3470.7, "px": 483.3, "py": 2640.3, "has_dungeon": false, "has_important": true}, {"id": 2607, "name": "StoneHouse3", "category": "other", "x": -844.0, "z": 175.2, "px": 1904.0, "py": 2077.9, "has_dungeon": false, "has_important": true}, {"id": 2608, "name": "StoneHouse3", "category": "other", "x": 9874.6, "z": 1604.7, "px": 3733.3, "py": 2321.9, "has_dungeon": false, "has_important": true}, {"id": 2609, "name": "StoneHouse3", "category": "other", "x": -9715.4, "z": 839.2, "px": 389.9, "py": 2191.2, "has_dungeon": false, "has_important": true}, {"id": 2610, "name": "StoneHouse3", "category": "other", "x": -5364.3, "z": 496.8, "px": 1132.5, "py": 2132.8, "has_dungeon": false, "has_important": true}, {"id": 2611, "name": "StoneHouse3", "category": "other", "x": 3353.7, "z": -2104.0, "px": 2620.4, "py": 1688.9, "has_dungeon": false, "has_important": true}, {"id": 2612, "name": "StoneHouse3", "category": "other", "x": -5434.8, "z": -1996.6, "px": 1120.5, "py": 1707.2, "has_dungeon": false, "has_important": true}, {"id": 2613, "name": "StoneHouse3", "category": "other", "x": -8979.2, "z": 3402.7, "px": 515.5, "py": 2628.7, "has_dungeon": false, "has_important": true}, {"id": 2614, "name": "StoneHouse3", "category": "other", "x": -8058.4, "z": 2693.7, "px": 672.7, "py": 2507.7, "has_dungeon": false, "has_important": true}, {"id": 2615, "name": "StoneHouse3", "category": "other", "x": 76.2, "z": -4563.5, "px": 2061.0, "py": 1269.2, "has_dungeon": false, "has_important": true}, {"id": 2616, "name": "StoneHouse3", "category": "other", "x": 2638.2, "z": 5417.0, "px": 2498.3, "py": 2972.5, "has_dungeon": false, "has_important": true}, {"id": 2617, "name": "StoneHouse3", "category": "other", "x": 1134.7, "z": -5695.0, "px": 2241.7, "py": 1076.1, "has_dungeon": false, "has_important": true}, {"id": 2618, "name": "StoneHouse3", "category": "other", "x": -6769.7, "z": 619.6, "px": 892.6, "py": 2153.7, "has_dungeon": false, "has_important": true}, {"id": 2619, "name": "StoneHouse3", "category": "other", "x": -3385.3, "z": 6777.8, "px": 1470.2, "py": 3204.7, "has_dungeon": false, "has_important": true}, {"id": 2620, "name": "StoneHouse3", "category": "other", "x": 8177.0, "z": -2614.4, "px": 3443.5, "py": 1601.8, "has_dungeon": false, "has_important": true}, {"id": 2621, "name": "StoneHouse3", "category": "other", "x": -658.4, "z": -25.4, "px": 1935.6, "py": 2043.7, "has_dungeon": false, "has_important": true}, {"id": 2622, "name": "StoneHouse3", "category": "other", "x": 3071.1, "z": -4850.8, "px": 2572.1, "py": 1220.1, "has_dungeon": false, "has_important": true}, {"id": 2623, "name": "StoneHouse3", "category": "other", "x": 7505.9, "z": -2863.6, "px": 3329.0, "py": 1559.3, "has_dungeon": false, "has_important": true}, {"id": 2624, "name": "StoneHouse3", "category": "other", "x": 2022.9, "z": -6268.2, "px": 2393.2, "py": 978.2, "has_dungeon": false, "has_important": true}, {"id": 2625, "name": "StoneHouse3", "category": "other", "x": 3057.3, "z": 381.0, "px": 2569.8, "py": 2113.0, "has_dungeon": false, "has_important": true}, {"id": 2626, "name": "StoneHouse3", "category": "other", "x": -6076.2, "z": 4112.3, "px": 1011.0, "py": 2749.8, "has_dungeon": false, "has_important": true}, {"id": 2627, "name": "StoneHouse3", "category": "other", "x": 8046.1, "z": -2578.1, "px": 3421.2, "py": 1608.0, "has_dungeon": false, "has_important": true}, {"id": 2628, "name": "StoneHouse3", "category": "other", "x": -9318.5, "z": 3203.6, "px": 457.6, "py": 2594.7, "has_dungeon": false, "has_important": true}, {"id": 2629, "name": "StoneHouse3", "category": "other", "x": -6758.3, "z": 3856.2, "px": 894.6, "py": 2706.1, "has_dungeon": false, "has_important": true}, {"id": 2630, "name": "StoneHouse3", "category": "other", "x": 8102.2, "z": 327.7, "px": 3430.8, "py": 2103.9, "has_dungeon": false, "has_important": true}, {"id": 2631, "name": "StoneHouse3", "category": "other", "x": 7896.7, "z": -562.6, "px": 3395.7, "py": 1952.0, "has_dungeon": false, "has_important": true}, {"id": 2632, "name": "StoneHouse3", "category": "other", "x": -9301.6, "z": 2905.6, "px": 460.5, "py": 2543.9, "has_dungeon": false, "has_important": true}, {"id": 2633, "name": "StoneHouse3", "category": "other", "x": -7413.9, "z": 311.7, "px": 782.7, "py": 2101.2, "has_dungeon": false, "has_important": true}, {"id": 2634, "name": "StoneHouse3", "category": "other", "x": 1447.8, "z": -2199.4, "px": 2295.1, "py": 1672.6, "has_dungeon": false, "has_important": true}, {"id": 2635, "name": "StoneHouse3", "category": "other", "x": 1288.7, "z": -5786.0, "px": 2267.9, "py": 1060.5, "has_dungeon": false, "has_important": true}, {"id": 2636, "name": "StoneHouse3", "category": "other", "x": 3577.7, "z": 305.9, "px": 2658.6, "py": 2100.2, "has_dungeon": false, "has_important": true}, {"id": 2637, "name": "StoneHouse3", "category": "other", "x": 7720.3, "z": -748.3, "px": 3365.6, "py": 1920.3, "has_dungeon": false, "has_important": true}, {"id": 2638, "name": "StoneHouse3", "category": "other", "x": -5888.2, "z": 4711.2, "px": 1043.1, "py": 2852.0, "has_dungeon": false, "has_important": true}, {"id": 2639, "name": "StoneHouse3", "category": "other", "x": 2218.1, "z": -985.1, "px": 2426.6, "py": 1879.9, "has_dungeon": false, "has_important": true}, {"id": 2640, "name": "StoneHouse3", "category": "other", "x": -9387.5, "z": 2921.4, "px": 445.9, "py": 2546.6, "has_dungeon": false, "has_important": true}, {"id": 2641, "name": "StoneHouse3", "category": "other", "x": -8046.8, "z": 341.3, "px": 674.7, "py": 2106.2, "has_dungeon": false, "has_important": true}, {"id": 2642, "name": "StoneHouse3", "category": "other", "x": -7799.2, "z": 64.1, "px": 716.9, "py": 2058.9, "has_dungeon": false, "has_important": true}, {"id": 2643, "name": "StoneHouse3", "category": "other", "x": 4221.4, "z": -1075.1, "px": 2768.5, "py": 1864.5, "has_dungeon": false, "has_important": true}, {"id": 2644, "name": "StoneHouse3", "category": "other", "x": -1091.6, "z": -1262.0, "px": 1861.7, "py": 1832.6, "has_dungeon": false, "has_important": true}, {"id": 2645, "name": "StoneHouse3", "category": "other", "x": -3015.0, "z": 1900.8, "px": 1533.4, "py": 2372.4, "has_dungeon": false, "has_important": true}, {"id": 2646, "name": "StoneHouse3", "category": "other", "x": 1392.2, "z": -4949.9, "px": 2285.6, "py": 1203.2, "has_dungeon": false, "has_important": true}, {"id": 2647, "name": "StoneHouse3", "category": "other", "x": 877.3, "z": -5357.1, "px": 2197.7, "py": 1133.7, "has_dungeon": false, "has_important": true}, {"id": 2648, "name": "StoneHouse3", "category": "other", "x": -4134.9, "z": -6090.0, "px": 1342.3, "py": 1008.6, "has_dungeon": false, "has_important": true}, {"id": 2649, "name": "StoneHouse3", "category": "other", "x": -2371.2, "z": -6208.1, "px": 1643.3, "py": 988.5, "has_dungeon": false, "has_important": true}, {"id": 2650, "name": "StoneHouse3", "category": "other", "x": 1256.0, "z": -5807.5, "px": 2262.4, "py": 1056.9, "has_dungeon": false, "has_important": true}, {"id": 2651, "name": "StoneHouse3", "category": "other", "x": 1835.0, "z": -1145.6, "px": 2361.2, "py": 1852.5, "has_dungeon": false, "has_important": true}, {"id": 2652, "name": "StoneHouse3", "category": "other", "x": -1944.8, "z": -4539.8, "px": 1716.1, "py": 1273.2, "has_dungeon": false, "has_important": true}, {"id": 2653, "name": "StoneHouse3", "category": "other", "x": -7103.0, "z": 269.5, "px": 835.8, "py": 2094.0, "has_dungeon": false, "has_important": true}, {"id": 2654, "name": "StoneHouse3", "category": "other", "x": -6772.1, "z": 5301.9, "px": 892.2, "py": 2952.9, "has_dungeon": false, "has_important": true}, {"id": 2655, "name": "StoneHouse3", "category": "other", "x": 8659.0, "z": -2175.6, "px": 3525.8, "py": 1676.7, "has_dungeon": false, "has_important": true}, {"id": 2656, "name": "StoneHouse3", "category": "other", "x": 5870.5, "z": -242.2, "px": 3049.9, "py": 2006.7, "has_dungeon": false, "has_important": true}, {"id": 2657, "name": "StoneHouse3", "category": "other", "x": 5943.3, "z": -522.0, "px": 3062.3, "py": 1958.9, "has_dungeon": false, "has_important": true}, {"id": 2658, "name": "StoneHouse3", "category": "other", "x": 7759.7, "z": -273.8, "px": 3372.3, "py": 2001.3, "has_dungeon": false, "has_important": true}, {"id": 2659, "name": "StoneHouse3", "category": "other", "x": 1786.2, "z": -6250.5, "px": 2352.8, "py": 981.2, "has_dungeon": false, "has_important": true}, {"id": 2660, "name": "StoneHouse3", "category": "other", "x": -343.1, "z": -4531.2, "px": 1989.4, "py": 1274.7, "has_dungeon": false, "has_important": true}, {"id": 2661, "name": "StoneHouse3", "category": "other", "x": 6673.8, "z": 4425.1, "px": 3187.0, "py": 2803.2, "has_dungeon": false, "has_important": true}, {"id": 2662, "name": "StoneHouse3", "category": "other", "x": 8520.6, "z": 233.3, "px": 3502.2, "py": 2087.8, "has_dungeon": false, "has_important": true}, {"id": 2663, "name": "StoneHouse3", "category": "other", "x": 3854.5, "z": 1145.9, "px": 2705.8, "py": 2243.6, "has_dungeon": false, "has_important": true}, {"id": 2664, "name": "StoneHouse3", "category": "other", "x": 8492.2, "z": -1791.9, "px": 3497.3, "py": 1742.2, "has_dungeon": false, "has_important": true}, {"id": 2665, "name": "StoneHouse3", "category": "other", "x": -4205.2, "z": -6143.4, "px": 1330.3, "py": 999.5, "has_dungeon": false, "has_important": true}, {"id": 2666, "name": "StoneHouse3", "category": "other", "x": 5558.3, "z": -788.2, "px": 2996.6, "py": 1913.5, "has_dungeon": false, "has_important": true}, {"id": 2667, "name": "StoneHouse3", "category": "other", "x": -5145.6, "z": -1531.3, "px": 1169.8, "py": 1786.7, "has_dungeon": false, "has_important": true}, {"id": 2668, "name": "StoneHouse3", "category": "other", "x": 5754.8, "z": 62.8, "px": 3030.2, "py": 2058.7, "has_dungeon": false, "has_important": true}, {"id": 2669, "name": "StoneHouse3", "category": "other", "x": 383.9, "z": 5126.3, "px": 2113.5, "py": 2922.9, "has_dungeon": false, "has_important": true}, {"id": 2670, "name": "StoneHouse3", "category": "other", "x": -7669.8, "z": -1792.2, "px": 739.0, "py": 1742.1, "has_dungeon": false, "has_important": true}, {"id": 2671, "name": "StoneHouse3", "category": "other", "x": -4093.6, "z": -2449.5, "px": 1349.4, "py": 1630.0, "has_dungeon": false, "has_important": true}, {"id": 2672, "name": "StoneHouse3", "category": "other", "x": -5234.9, "z": -1877.4, "px": 1154.6, "py": 1727.6, "has_dungeon": false, "has_important": true}, {"id": 2673, "name": "StoneHouse3", "category": "other", "x": -2448.9, "z": 4304.9, "px": 1630.1, "py": 2782.7, "has_dungeon": false, "has_important": true}, {"id": 2674, "name": "StoneHouse3", "category": "other", "x": 665.7, "z": 5268.7, "px": 2161.6, "py": 2947.2, "has_dungeon": false, "has_important": true}, {"id": 2675, "name": "StoneHouse3", "category": "other", "x": 8367.9, "z": -383.7, "px": 3476.1, "py": 1982.5, "has_dungeon": false, "has_important": true}, {"id": 2676, "name": "StoneHouse3", "category": "other", "x": -9331.5, "z": -174.4, "px": 455.4, "py": 2018.2, "has_dungeon": false, "has_important": true}, {"id": 2677, "name": "StoneHouse3", "category": "other", "x": 3444.5, "z": -2384.4, "px": 2635.9, "py": 1641.1, "has_dungeon": false, "has_important": true}, {"id": 2678, "name": "StoneHouse3", "category": "other", "x": 5234.3, "z": -2287.4, "px": 2941.3, "py": 1657.6, "has_dungeon": false, "has_important": true}, {"id": 2679, "name": "StoneHouse3", "category": "other", "x": 2167.6, "z": -1778.5, "px": 2417.9, "py": 1744.5, "has_dungeon": false, "has_important": true}, {"id": 2680, "name": "StoneHouse3", "category": "other", "x": -3663.9, "z": 6999.5, "px": 1422.7, "py": 3242.6, "has_dungeon": false, "has_important": true}, {"id": 2681, "name": "StoneHouse3", "category": "other", "x": 5572.0, "z": -1070.9, "px": 2999.0, "py": 1865.2, "has_dungeon": false, "has_important": true}, {"id": 2682, "name": "StoneHouse3", "category": "other", "x": -9362.8, "z": -2625.1, "px": 450.1, "py": 1600.0, "has_dungeon": false, "has_important": true}, {"id": 2683, "name": "StoneHouse3", "category": "other", "x": -6890.1, "z": 5426.6, "px": 872.1, "py": 2974.1, "has_dungeon": false, "has_important": true}, {"id": 2684, "name": "StoneHouse3", "category": "other", "x": 3639.4, "z": 3861.6, "px": 2669.1, "py": 2707.0, "has_dungeon": false, "has_important": true}, {"id": 2685, "name": "StoneHouse3", "category": "other", "x": -8758.5, "z": -1028.7, "px": 553.2, "py": 1872.4, "has_dungeon": false, "has_important": true}, {"id": 2686, "name": "StoneHouse3", "category": "other", "x": 7462.0, "z": 1301.2, "px": 3321.5, "py": 2270.1, "has_dungeon": false, "has_important": true}, {"id": 2687, "name": "StoneHouse3", "category": "other", "x": 4410.7, "z": -371.1, "px": 2800.8, "py": 1984.7, "has_dungeon": false, "has_important": true}, {"id": 2688, "name": "StoneHouse3", "category": "other", "x": -7572.0, "z": -1860.3, "px": 755.7, "py": 1730.5, "has_dungeon": false, "has_important": true}, {"id": 2689, "name": "StoneHouse3", "category": "other", "x": -9803.8, "z": -1994.1, "px": 374.8, "py": 1707.7, "has_dungeon": false, "has_important": true}, {"id": 2690, "name": "StoneHouse3", "category": "other", "x": -2564.5, "z": 6160.5, "px": 1610.3, "py": 3099.4, "has_dungeon": false, "has_important": true}, {"id": 2691, "name": "StoneHouse3", "category": "other", "x": 5642.6, "z": 1670.0, "px": 3011.0, "py": 2333.0, "has_dungeon": false, "has_important": true}, {"id": 2692, "name": "StoneHouse3", "category": "other", "x": 7437.8, "z": -4281.9, "px": 3317.4, "py": 1317.2, "has_dungeon": false, "has_important": true}, {"id": 2693, "name": "StoneHouse3", "category": "other", "x": 1414.3, "z": -2232.3, "px": 2289.4, "py": 1667.0, "has_dungeon": false, "has_important": true}, {"id": 2694, "name": "StoneHouse3", "category": "other", "x": 2768.7, "z": 5186.4, "px": 2520.5, "py": 2933.1, "has_dungeon": false, "has_important": true}, {"id": 2695, "name": "StoneHouse3", "category": "other", "x": 3772.5, "z": -1349.6, "px": 2691.8, "py": 1817.7, "has_dungeon": false, "has_important": true}, {"id": 2696, "name": "StoneHouse3", "category": "other", "x": -9332.6, "z": -1526.2, "px": 455.2, "py": 1787.5, "has_dungeon": false, "has_important": true}, {"id": 2697, "name": "StoneHouse3", "category": "other", "x": -5881.7, "z": -5014.9, "px": 1044.2, "py": 1192.1, "has_dungeon": false, "has_important": true}, {"id": 2698, "name": "StoneHouse3", "category": "other", "x": 936.6, "z": 5643.0, "px": 2207.8, "py": 3011.1, "has_dungeon": false, "has_important": true}, {"id": 2699, "name": "StoneHouse3", "category": "other", "x": -3543.7, "z": 6956.6, "px": 1443.2, "py": 3235.3, "has_dungeon": false, "has_important": true}, {"id": 2700, "name": "StoneHouse3", "category": "other", "x": 2617.9, "z": 389.5, "px": 2494.8, "py": 2114.5, "has_dungeon": false, "has_important": true}, {"id": 2701, "name": "StoneHouse3", "category": "other", "x": 8127.2, "z": -139.6, "px": 3435.0, "py": 2024.2, "has_dungeon": false, "has_important": true}, {"id": 2702, "name": "StoneHouse3", "category": "other", "x": -3752.1, "z": -3943.7, "px": 1407.6, "py": 1374.9, "has_dungeon": false, "has_important": true}, {"id": 2703, "name": "StoneHouse3", "category": "other", "x": 771.1, "z": 4602.4, "px": 2179.6, "py": 2833.5, "has_dungeon": false, "has_important": true}, {"id": 2704, "name": "StoneHouse3", "category": "other", "x": 8768.7, "z": -1299.5, "px": 3544.5, "py": 1826.2, "has_dungeon": false, "has_important": true}, {"id": 2705, "name": "StoneHouse3", "category": "other", "x": 8704.9, "z": -1773.9, "px": 3533.6, "py": 1745.3, "has_dungeon": false, "has_important": true}, {"id": 2706, "name": "StoneHouse3", "category": "other", "x": -7207.1, "z": 2482.7, "px": 818.0, "py": 2471.7, "has_dungeon": false, "has_important": true}, {"id": 2707, "name": "StoneHouse3", "category": "other", "x": -3067.9, "z": 6599.0, "px": 1524.4, "py": 3174.2, "has_dungeon": false, "has_important": true}, {"id": 2708, "name": "StoneHouse3", "category": "other", "x": -3822.4, "z": -3858.9, "px": 1395.6, "py": 1389.4, "has_dungeon": false, "has_important": true}, {"id": 2709, "name": "StoneHouse3", "category": "other", "x": -7256.4, "z": -4845.0, "px": 809.6, "py": 1221.1, "has_dungeon": false, "has_important": true}, {"id": 2710, "name": "StoneHouse3", "category": "other", "x": -1239.0, "z": -1031.6, "px": 1836.5, "py": 1871.9, "has_dungeon": false, "has_important": true}, {"id": 2711, "name": "StoneHouse3", "category": "other", "x": 2067.8, "z": -204.5, "px": 2400.9, "py": 2013.1, "has_dungeon": false, "has_important": true}, {"id": 2712, "name": "StoneHouse3", "category": "other", "x": 7147.5, "z": -3960.4, "px": 3267.8, "py": 1372.1, "has_dungeon": false, "has_important": true}, {"id": 2713, "name": "StoneHouse3", "category": "other", "x": 884.2, "z": 5194.5, "px": 2198.9, "py": 2934.5, "has_dungeon": false, "has_important": true}, {"id": 2714, "name": "StoneHouse3", "category": "other", "x": -5997.1, "z": 1591.1, "px": 1024.5, "py": 2319.5, "has_dungeon": false, "has_important": true}, {"id": 2715, "name": "StoneHouse3", "category": "other", "x": -2095.6, "z": 622.3, "px": 1690.4, "py": 2154.2, "has_dungeon": false, "has_important": true}, {"id": 2716, "name": "StoneHouse3", "category": "other", "x": -9548.0, "z": -2582.6, "px": 418.5, "py": 1607.2, "has_dungeon": false, "has_important": true}, {"id": 2717, "name": "StoneHouse3", "category": "other", "x": -7609.9, "z": -4905.3, "px": 749.2, "py": 1210.8, "has_dungeon": false, "has_important": true}, {"id": 2718, "name": "StoneHouse3", "category": "other", "x": -4803.7, "z": -3070.1, "px": 1228.2, "py": 1524.0, "has_dungeon": false, "has_important": true}, {"id": 2719, "name": "StoneHouse3", "category": "other", "x": 7482.2, "z": -4236.1, "px": 3325.0, "py": 1325.0, "has_dungeon": false, "has_important": true}, {"id": 2720, "name": "StoneHouse3", "category": "other", "x": 2118.2, "z": -1661.6, "px": 2409.5, "py": 1764.4, "has_dungeon": false, "has_important": true}, {"id": 2721, "name": "StoneHouse3", "category": "other", "x": 6095.8, "z": -5894.9, "px": 3088.3, "py": 1041.9, "has_dungeon": false, "has_important": true}, {"id": 2722, "name": "StoneHouse3", "category": "other", "x": 9721.1, "z": -1520.4, "px": 3707.1, "py": 1788.5, "has_dungeon": false, "has_important": true}, {"id": 2723, "name": "StoneHouse3", "category": "other", "x": -175.5, "z": -1005.6, "px": 2018.0, "py": 1876.4, "has_dungeon": false, "has_important": true}, {"id": 2724, "name": "StoneHouse3", "category": "other", "x": -1832.2, "z": -4276.0, "px": 1735.3, "py": 1318.2, "has_dungeon": false, "has_important": true}, {"id": 2725, "name": "StoneHouse3", "category": "other", "x": -8114.6, "z": 471.0, "px": 663.1, "py": 2128.4, "has_dungeon": false, "has_important": true}, {"id": 2726, "name": "StoneHouse3", "category": "other", "x": -7756.6, "z": -1838.5, "px": 724.2, "py": 1734.2, "has_dungeon": false, "has_important": true}, {"id": 2727, "name": "StoneHouse3", "category": "other", "x": -9473.2, "z": -2585.2, "px": 431.2, "py": 1606.8, "has_dungeon": false, "has_important": true}, {"id": 2728, "name": "StoneHouse3", "category": "other", "x": 3567.4, "z": 3753.3, "px": 2656.8, "py": 2688.6, "has_dungeon": false, "has_important": true}, {"id": 2729, "name": "StoneHouse3", "category": "other", "x": -3980.3, "z": -3757.1, "px": 1368.7, "py": 1406.8, "has_dungeon": false, "has_important": true}, {"id": 2730, "name": "StoneHouse3", "category": "other", "x": -7493.9, "z": -1925.9, "px": 769.0, "py": 1719.3, "has_dungeon": false, "has_important": true}, {"id": 2731, "name": "StoneHouse3", "category": "other", "x": -1335.9, "z": -1792.8, "px": 1820.0, "py": 1742.0, "has_dungeon": false, "has_important": true}, {"id": 2732, "name": "StoneHouse3", "category": "other", "x": -6148.4, "z": -153.2, "px": 998.7, "py": 2021.9, "has_dungeon": false, "has_important": true}, {"id": 2733, "name": "StoneHouse3", "category": "other", "x": -5703.5, "z": 4798.1, "px": 1074.6, "py": 2866.9, "has_dungeon": false, "has_important": true}, {"id": 2734, "name": "StoneHouse3", "category": "other", "x": -8388.3, "z": -1733.6, "px": 616.4, "py": 1752.1, "has_dungeon": false, "has_important": true}, {"id": 2735, "name": "StoneHouse3", "category": "other", "x": -6674.0, "z": 651.1, "px": 909.0, "py": 2159.1, "has_dungeon": false, "has_important": true}, {"id": 2736, "name": "StoneHouse3", "category": "other", "x": 240.7, "z": -1322.4, "px": 2089.1, "py": 1822.3, "has_dungeon": false, "has_important": true}, {"id": 2737, "name": "StoneHouse3", "category": "other", "x": -5303.1, "z": 659.6, "px": 1142.9, "py": 2160.6, "has_dungeon": false, "has_important": true}, {"id": 2738, "name": "StoneHouse3", "category": "other", "x": 8534.1, "z": -3672.4, "px": 3504.5, "py": 1421.2, "has_dungeon": false, "has_important": true}, {"id": 2739, "name": "StoneHouse3", "category": "other", "x": 597.7, "z": 4552.0, "px": 2150.0, "py": 2824.9, "has_dungeon": false, "has_important": true}, {"id": 2740, "name": "StoneHouse3", "category": "other", "x": -599.8, "z": 342.2, "px": 1945.6, "py": 2106.4, "has_dungeon": false, "has_important": true}, {"id": 2741, "name": "StoneHouse3", "category": "other", "x": -3928.7, "z": 4163.7, "px": 1377.5, "py": 2758.6, "has_dungeon": false, "has_important": true}, {"id": 2742, "name": "StoneHouse3", "category": "other", "x": -598.2, "z": -15.7, "px": 1945.9, "py": 2045.3, "has_dungeon": false, "has_important": true}, {"id": 2743, "name": "StoneHouse3", "category": "other", "x": 1768.3, "z": -902.7, "px": 2349.8, "py": 1893.9, "has_dungeon": false, "has_important": true}, {"id": 2744, "name": "StoneHouse3", "category": "other", "x": -9105.5, "z": 2690.9, "px": 494.0, "py": 2507.2, "has_dungeon": false, "has_important": true}, {"id": 2745, "name": "StoneHouse3", "category": "other", "x": -6719.8, "z": 3828.9, "px": 901.2, "py": 2701.5, "has_dungeon": false, "has_important": true}, {"id": 2746, "name": "StoneHouse3", "category": "other", "x": -9089.5, "z": 2865.8, "px": 496.7, "py": 2537.1, "has_dungeon": false, "has_important": true}, {"id": 2747, "name": "StoneHouse3", "category": "other", "x": -5555.3, "z": -1937.2, "px": 1099.9, "py": 1717.4, "has_dungeon": false, "has_important": true}, {"id": 2748, "name": "StoneHouse3", "category": "other", "x": 1808.5, "z": 7246.8, "px": 2356.7, "py": 3284.8, "has_dungeon": false, "has_important": true}, {"id": 2749, "name": "StoneHouse3", "category": "other", "x": 6004.3, "z": -441.1, "px": 3072.7, "py": 1972.7, "has_dungeon": false, "has_important": true}, {"id": 2750, "name": "StoneHouse3", "category": "other", "x": 5350.1, "z": 6332.8, "px": 2961.1, "py": 3128.8, "has_dungeon": false, "has_important": true}, {"id": 2751, "name": "StoneHouse3", "category": "other", "x": -6120.5, "z": 1403.1, "px": 1003.4, "py": 2287.5, "has_dungeon": false, "has_important": true}, {"id": 2752, "name": "StoneHouse3", "category": "other", "x": -9396.3, "z": 3024.5, "px": 444.4, "py": 2564.2, "has_dungeon": false, "has_important": true}, {"id": 2753, "name": "StoneHouse3", "category": "other", "x": -5075.2, "z": 181.1, "px": 1181.8, "py": 2078.9, "has_dungeon": false, "has_important": true}, {"id": 2754, "name": "StoneHouse3", "category": "other", "x": 3057.1, "z": -126.7, "px": 2569.7, "py": 2026.4, "has_dungeon": false, "has_important": true}, {"id": 2755, "name": "StoneHouse3", "category": "other", "x": -7278.9, "z": -4966.0, "px": 805.7, "py": 1200.5, "has_dungeon": false, "has_important": true}, {"id": 2756, "name": "StoneHouse3", "category": "other", "x": 5399.8, "z": 6443.1, "px": 2969.6, "py": 3147.6, "has_dungeon": false, "has_important": true}, {"id": 2757, "name": "StoneHouse3", "category": "other", "x": -3906.9, "z": 1899.4, "px": 1381.2, "py": 2372.2, "has_dungeon": false, "has_important": true}, {"id": 2758, "name": "StoneHouse3", "category": "other", "x": 1038.5, "z": 5237.3, "px": 2225.2, "py": 2941.8, "has_dungeon": false, "has_important": true}, {"id": 2759, "name": "StoneHouse3", "category": "other", "x": -6671.2, "z": 408.0, "px": 909.4, "py": 2117.6, "has_dungeon": false, "has_important": true}, {"id": 2760, "name": "StoneHouse3", "category": "other", "x": -118.6, "z": -4466.5, "px": 2027.8, "py": 1285.7, "has_dungeon": false, "has_important": true}, {"id": 2761, "name": "StoneHouse3", "category": "other", "x": -5330.5, "z": 392.1, "px": 1138.3, "py": 2114.9, "has_dungeon": false, "has_important": true}, {"id": 2762, "name": "StoneHouse3", "category": "other", "x": 812.4, "z": -2806.0, "px": 2186.6, "py": 1569.1, "has_dungeon": false, "has_important": true}, {"id": 2763, "name": "StoneHouse3", "category": "other", "x": 5844.2, "z": 69.6, "px": 3045.4, "py": 2059.9, "has_dungeon": false, "has_important": true}, {"id": 2764, "name": "StoneHouse3", "category": "other", "x": 240.7, "z": -1191.2, "px": 2089.1, "py": 1844.7, "has_dungeon": false, "has_important": true}, {"id": 2765, "name": "StoneHouse3", "category": "other", "x": -1624.7, "z": -4298.3, "px": 1770.7, "py": 1314.4, "has_dungeon": false, "has_important": true}, {"id": 2766, "name": "StoneHouse3", "category": "other", "x": -3087.0, "z": 1846.2, "px": 1521.2, "py": 2363.1, "has_dungeon": false, "has_important": true}, {"id": 2767, "name": "StoneHouse3", "category": "other", "x": -5311.5, "z": 526.4, "px": 1141.5, "py": 2137.8, "has_dungeon": false, "has_important": true}, {"id": 2768, "name": "StoneHouse3", "category": "other", "x": 2234.2, "z": -368.5, "px": 2429.3, "py": 1985.1, "has_dungeon": false, "has_important": true}, {"id": 2769, "name": "StoneHouse3", "category": "other", "x": -2604.6, "z": 1493.0, "px": 1603.5, "py": 2302.8, "has_dungeon": false, "has_important": true}, {"id": 2770, "name": "StoneHouse3", "category": "other", "x": 1939.0, "z": 1399.9, "px": 2378.9, "py": 2286.9, "has_dungeon": false, "has_important": true}, {"id": 2771, "name": "StoneHouse3", "category": "other", "x": -3414.4, "z": -1805.4, "px": 1465.3, "py": 1739.9, "has_dungeon": false, "has_important": true}, {"id": 2772, "name": "StoneHouse3", "category": "other", "x": 1076.6, "z": -2199.7, "px": 2231.7, "py": 1672.6, "has_dungeon": false, "has_important": true}, {"id": 2773, "name": "StoneHouse3", "category": "other", "x": -3645.8, "z": 6742.4, "px": 1425.8, "py": 3198.7, "has_dungeon": false, "has_important": true}, {"id": 2774, "name": "StoneHouse3", "category": "other", "x": -6632.3, "z": 3923.3, "px": 916.1, "py": 2717.6, "has_dungeon": false, "has_important": true}, {"id": 2775, "name": "StoneHouse3", "category": "other", "x": -1847.2, "z": -4083.3, "px": 1732.7, "py": 1351.1, "has_dungeon": false, "has_important": true}, {"id": 2776, "name": "StoneHouse3", "category": "other", "x": 7348.6, "z": -3993.2, "px": 3302.2, "py": 1366.5, "has_dungeon": false, "has_important": true}, {"id": 2777, "name": "StoneHouse3", "category": "other", "x": 5098.0, "z": -2073.6, "px": 2918.1, "py": 1694.1, "has_dungeon": false, "has_important": true}, {"id": 2778, "name": "StoneHouse3", "category": "other", "x": 7728.5, "z": -337.3, "px": 3367.0, "py": 1990.4, "has_dungeon": false, "has_important": true}, {"id": 2779, "name": "StoneHouse3", "category": "other", "x": -9514.0, "z": 3015.3, "px": 424.3, "py": 2562.6, "has_dungeon": false, "has_important": true}, {"id": 2780, "name": "StoneHouse3", "category": "other", "x": 3827.2, "z": 855.3, "px": 2701.2, "py": 2194.0, "has_dungeon": false, "has_important": true}, {"id": 2781, "name": "StoneHouse3", "category": "other", "x": -1202.0, "z": -1073.6, "px": 1842.9, "py": 1864.8, "has_dungeon": false, "has_important": true}, {"id": 2782, "name": "StoneHouse3", "category": "other", "x": -5528.7, "z": -5201.5, "px": 1104.4, "py": 1160.3, "has_dungeon": false, "has_important": true}, {"id": 2783, "name": "StoneHouse3", "category": "other", "x": 8189.0, "z": -2358.9, "px": 3445.6, "py": 1645.4, "has_dungeon": false, "has_important": true}, {"id": 2784, "name": "StoneHouse3", "category": "other", "x": -2452.2, "z": -295.1, "px": 1629.5, "py": 1997.6, "has_dungeon": false, "has_important": true}, {"id": 2785, "name": "StoneHouse4", "category": "other", "x": -9036.0, "z": 3088.7, "px": 505.9, "py": 2575.1, "has_dungeon": false, "has_important": true}, {"id": 2786, "name": "StoneHouse4", "category": "other", "x": 5900.5, "z": -559.0, "px": 3055.0, "py": 1952.6, "has_dungeon": false, "has_important": true}, {"id": 2787, "name": "StoneHouse4", "category": "other", "x": -2169.1, "z": 1202.7, "px": 1677.8, "py": 2253.3, "has_dungeon": false, "has_important": true}, {"id": 2788, "name": "StoneHouse4", "category": "other", "x": -2229.8, "z": 763.4, "px": 1667.4, "py": 2178.3, "has_dungeon": false, "has_important": true}, {"id": 2789, "name": "StoneHouse4", "category": "other", "x": 5691.5, "z": -745.5, "px": 3019.3, "py": 1920.8, "has_dungeon": false, "has_important": true}, {"id": 2790, "name": "StoneHouse4", "category": "other", "x": 2200.5, "z": 4904.3, "px": 2423.6, "py": 2885.0, "has_dungeon": false, "has_important": true}, {"id": 2791, "name": "StoneHouse4", "category": "other", "x": -3842.3, "z": -2514.8, "px": 1392.2, "py": 1618.8, "has_dungeon": false, "has_important": true}, {"id": 2792, "name": "StoneHouse4", "category": "other", "x": -9470.2, "z": -2599.9, "px": 431.8, "py": 1604.3, "has_dungeon": false, "has_important": true}, {"id": 2793, "name": "StoneHouse4", "category": "other", "x": 4203.5, "z": 6852.3, "px": 2765.4, "py": 3217.5, "has_dungeon": false, "has_important": true}, {"id": 2794, "name": "StoneHouse4", "category": "other", "x": 8004.0, "z": -12.0, "px": 3414.0, "py": 2046.0, "has_dungeon": false, "has_important": true}, {"id": 2795, "name": "StoneHouse4", "category": "other", "x": -5831.0, "z": 4821.7, "px": 1052.8, "py": 2870.9, "has_dungeon": false, "has_important": true}, {"id": 2796, "name": "StoneHouse4", "category": "other", "x": -6404.3, "z": -370.9, "px": 955.0, "py": 1984.7, "has_dungeon": false, "has_important": true}, {"id": 2797, "name": "StoneHouse4", "category": "other", "x": 4919.5, "z": 112.9, "px": 2887.6, "py": 2067.3, "has_dungeon": false, "has_important": true}, {"id": 2798, "name": "StoneHouse4", "category": "other", "x": -9232.0, "z": 2963.7, "px": 472.4, "py": 2553.8, "has_dungeon": false, "has_important": false}, {"id": 2799, "name": "StoneHouse4", "category": "other", "x": 7529.8, "z": -4331.4, "px": 3333.1, "py": 1308.8, "has_dungeon": false, "has_important": true}, {"id": 2800, "name": "StoneHouse4", "category": "other", "x": 3210.1, "z": -4553.9, "px": 2595.9, "py": 1270.8, "has_dungeon": false, "has_important": true}, {"id": 2801, "name": "StoneHouse4", "category": "other", "x": -7357.7, "z": -1621.8, "px": 792.3, "py": 1771.2, "has_dungeon": false, "has_important": true}, {"id": 2802, "name": "StoneHouse4", "category": "other", "x": 2262.8, "z": 6187.7, "px": 2434.2, "py": 3104.0, "has_dungeon": false, "has_important": true}, {"id": 2803, "name": "StoneHouse4", "category": "other", "x": 937.3, "z": -2737.0, "px": 2208.0, "py": 1580.9, "has_dungeon": false, "has_important": true}, {"id": 2804, "name": "StoneHouse4", "category": "other", "x": 5910.8, "z": 108.3, "px": 3056.8, "py": 2066.5, "has_dungeon": false, "has_important": true}, {"id": 2805, "name": "StoneHouse4", "category": "other", "x": 555.2, "z": 5059.8, "px": 2142.8, "py": 2911.5, "has_dungeon": false, "has_important": true}, {"id": 2806, "name": "StoneHouse4", "category": "other", "x": 3388.3, "z": -2361.4, "px": 2626.3, "py": 1645.0, "has_dungeon": false, "has_important": false}, {"id": 2807, "name": "StoneHouse4", "category": "other", "x": 2476.2, "z": -2372.3, "px": 2470.6, "py": 1643.1, "has_dungeon": false, "has_important": true}, {"id": 2808, "name": "StoneHouse4", "category": "other", "x": 2965.1, "z": -4855.7, "px": 2554.0, "py": 1219.3, "has_dungeon": false, "has_important": true}, {"id": 2809, "name": "StoneHouse4", "category": "other", "x": 8261.4, "z": -3800.8, "px": 3457.9, "py": 1399.3, "has_dungeon": false, "has_important": true}, {"id": 2810, "name": "StoneHouse4", "category": "other", "x": 498.8, "z": 207.2, "px": 2133.1, "py": 2083.4, "has_dungeon": false, "has_important": true}, {"id": 2811, "name": "StoneHouse4", "category": "other", "x": -7222.9, "z": -1734.1, "px": 815.3, "py": 1752.0, "has_dungeon": false, "has_important": false}, {"id": 2812, "name": "StoneHouse4", "category": "other", "x": 8067.3, "z": -2328.7, "px": 3424.8, "py": 1650.6, "has_dungeon": false, "has_important": true}, {"id": 2813, "name": "StoneHouse4", "category": "other", "x": -2190.2, "z": -4056.6, "px": 1674.2, "py": 1355.7, "has_dungeon": false, "has_important": false}, {"id": 2814, "name": "StoneHouse4", "category": "other", "x": 8693.8, "z": -3832.3, "px": 3531.7, "py": 1394.0, "has_dungeon": false, "has_important": false}, {"id": 2815, "name": "StoneHouse4", "category": "other", "x": 3837.3, "z": -443.0, "px": 2702.9, "py": 1972.4, "has_dungeon": false, "has_important": true}, {"id": 2816, "name": "StoneHouse4", "category": "other", "x": -8584.3, "z": -561.5, "px": 582.9, "py": 1952.2, "has_dungeon": false, "has_important": false}, {"id": 2817, "name": "StoneHouse4", "category": "other", "x": 1940.3, "z": -4465.4, "px": 2379.1, "py": 1285.9, "has_dungeon": false, "has_important": true}, {"id": 2818, "name": "StoneHouse4", "category": "other", "x": 375.8, "z": 5462.9, "px": 2112.1, "py": 2980.3, "has_dungeon": false, "has_important": true}, {"id": 2819, "name": "StoneHouse4", "category": "other", "x": 3896.4, "z": 1212.5, "px": 2713.0, "py": 2254.9, "has_dungeon": false, "has_important": true}, {"id": 2820, "name": "StoneHouse4", "category": "other", "x": 1269.3, "z": -5614.6, "px": 2264.6, "py": 1089.8, "has_dungeon": false, "has_important": true}, {"id": 2821, "name": "StoneHouse4", "category": "other", "x": 3192.7, "z": -21.2, "px": 2592.9, "py": 2044.4, "has_dungeon": false, "has_important": false}, {"id": 2822, "name": "StoneHouse4", "category": "other", "x": 1712.9, "z": -6318.5, "px": 2340.3, "py": 969.6, "has_dungeon": false, "has_important": true}, {"id": 2823, "name": "StoneHouse4", "category": "other", "x": 1090.9, "z": 5380.5, "px": 2234.2, "py": 2966.3, "has_dungeon": false, "has_important": false}, {"id": 2824, "name": "StoneHouse4", "category": "other", "x": 3879.5, "z": -1323.6, "px": 2710.1, "py": 1822.1, "has_dungeon": false, "has_important": true}, {"id": 2825, "name": "StoneHouse4", "category": "other", "x": 3146.8, "z": -2472.0, "px": 2585.1, "py": 1626.1, "has_dungeon": false, "has_important": true}, {"id": 2826, "name": "StoneHouse4", "category": "other", "x": -3589.7, "z": 7159.0, "px": 1435.4, "py": 3269.8, "has_dungeon": false, "has_important": true}, {"id": 2827, "name": "StoneHouse4", "category": "other", "x": 3416.5, "z": 3646.5, "px": 2631.1, "py": 2670.3, "has_dungeon": false, "has_important": true}, {"id": 2828, "name": "StoneHouse4", "category": "other", "x": 3831.3, "z": 3863.1, "px": 2701.9, "py": 2707.3, "has_dungeon": false, "has_important": true}, {"id": 2829, "name": "StoneHouse4", "category": "other", "x": 5383.6, "z": 6421.8, "px": 2966.8, "py": 3144.0, "has_dungeon": false, "has_important": true}, {"id": 2830, "name": "StoneHouse4", "category": "other", "x": 758.7, "z": 5233.7, "px": 2177.5, "py": 2941.2, "has_dungeon": false, "has_important": true}, {"id": 2831, "name": "StoneHouse4", "category": "other", "x": -7894.6, "z": -2518.3, "px": 700.7, "py": 1618.2, "has_dungeon": false, "has_important": true}, {"id": 2832, "name": "StoneHouse4", "category": "other", "x": -9212.9, "z": -1299.5, "px": 475.7, "py": 1826.2, "has_dungeon": false, "has_important": true}, {"id": 2833, "name": "StoneHouse4", "category": "other", "x": -5700.9, "z": -1751.7, "px": 1075.0, "py": 1749.0, "has_dungeon": false, "has_important": true}, {"id": 2834, "name": "StoneHouse4", "category": "other", "x": 2216.8, "z": 4919.0, "px": 2426.3, "py": 2887.5, "has_dungeon": false, "has_important": false}, {"id": 2835, "name": "StoneHouse4", "category": "other", "x": -133.0, "z": -4691.8, "px": 2025.3, "py": 1247.3, "has_dungeon": false, "has_important": true}, {"id": 2836, "name": "StoneHouse4", "category": "other", "x": 2608.5, "z": -4552.6, "px": 2493.2, "py": 1271.0, "has_dungeon": false, "has_important": true}, {"id": 2837, "name": "StoneHouse4", "category": "other", "x": 3368.2, "z": -4.8, "px": 2622.8, "py": 2047.2, "has_dungeon": false, "has_important": true}, {"id": 2838, "name": "StoneHouse4", "category": "other", "x": 7409.6, "z": 3725.5, "px": 3312.6, "py": 2683.8, "has_dungeon": false, "has_important": true}, {"id": 2839, "name": "StoneHouse4", "category": "other", "x": -5102.9, "z": 825.5, "px": 1177.1, "py": 2188.9, "has_dungeon": false, "has_important": true}, {"id": 2840, "name": "StoneHouse4", "category": "other", "x": -2535.4, "z": 4526.1, "px": 1615.3, "py": 2820.5, "has_dungeon": false, "has_important": false}, {"id": 2841, "name": "StoneHouse4", "category": "other", "x": -4106.9, "z": -6123.7, "px": 1347.1, "py": 1002.9, "has_dungeon": false, "has_important": true}, {"id": 2842, "name": "StoneHouse4", "category": "other", "x": -8362.9, "z": -2044.6, "px": 620.7, "py": 1699.1, "has_dungeon": false, "has_important": true}, {"id": 2843, "name": "StoneHouse4", "category": "other", "x": 1926.1, "z": -710.5, "px": 2376.7, "py": 1926.7, "has_dungeon": false, "has_important": true}, {"id": 2844, "name": "StoneHouse4", "category": "other", "x": 3345.5, "z": -2487.4, "px": 2619.0, "py": 1623.5, "has_dungeon": false, "has_important": true}, {"id": 2845, "name": "StoneHouse4", "category": "other", "x": -2252.2, "z": 649.7, "px": 1663.6, "py": 2158.9, "has_dungeon": false, "has_important": false}, {"id": 2846, "name": "StoneHouse4", "category": "other", "x": 2870.3, "z": 387.6, "px": 2537.9, "py": 2114.2, "has_dungeon": false, "has_important": false}, {"id": 2847, "name": "StoneHouse4", "category": "other", "x": -9658.6, "z": -430.9, "px": 399.6, "py": 1974.5, "has_dungeon": false, "has_important": false}, {"id": 2848, "name": "StoneHouse4", "category": "other", "x": 2695.6, "z": -3477.2, "px": 2508.0, "py": 1454.6, "has_dungeon": false, "has_important": true}, {"id": 2849, "name": "StoneHouse4", "category": "other", "x": 947.7, "z": 5040.2, "px": 2209.7, "py": 2908.2, "has_dungeon": false, "has_important": true}, {"id": 2850, "name": "StoneHouse4", "category": "other", "x": 2381.4, "z": -4477.2, "px": 2454.4, "py": 1283.9, "has_dungeon": false, "has_important": true}, {"id": 2851, "name": "StoneHouse4", "category": "other", "x": 2307.3, "z": -53.6, "px": 2441.8, "py": 2038.9, "has_dungeon": false, "has_important": true}, {"id": 2852, "name": "StoneHouse4", "category": "other", "x": 8492.8, "z": 88.6, "px": 3497.4, "py": 2063.1, "has_dungeon": false, "has_important": false}, {"id": 2853, "name": "StoneHouse4", "category": "other", "x": 6028.9, "z": -338.5, "px": 3076.9, "py": 1990.2, "has_dungeon": false, "has_important": true}, {"id": 2854, "name": "StoneHouse4", "category": "other", "x": 5567.0, "z": -269.4, "px": 2998.1, "py": 2002.0, "has_dungeon": false, "has_important": true}, {"id": 2855, "name": "StoneHouse4", "category": "other", "x": 1666.6, "z": -941.2, "px": 2332.4, "py": 1887.4, "has_dungeon": false, "has_important": false}, {"id": 2856, "name": "StoneHouse4", "category": "other", "x": 5272.9, "z": 6346.3, "px": 2947.9, "py": 3131.1, "has_dungeon": false, "has_important": false}, {"id": 2857, "name": "StoneHouse4", "category": "other", "x": -8505.0, "z": -1801.3, "px": 596.5, "py": 1740.6, "has_dungeon": false, "has_important": true}, {"id": 2858, "name": "StoneHouse4", "category": "other", "x": -45.5, "z": -1081.9, "px": 2040.2, "py": 1863.4, "has_dungeon": false, "has_important": false}, {"id": 2859, "name": "StoneHouse4", "category": "other", "x": -5584.6, "z": -5125.2, "px": 1094.9, "py": 1173.3, "has_dungeon": false, "has_important": true}, {"id": 2860, "name": "StoneHouse4", "category": "other", "x": 919.7, "z": -2200.1, "px": 2205.0, "py": 1672.5, "has_dungeon": false, "has_important": true}, {"id": 2861, "name": "StoneHouse4", "category": "other", "x": 896.5, "z": -5627.0, "px": 2201.0, "py": 1087.7, "has_dungeon": false, "has_important": false}, {"id": 2862, "name": "StoneHouse4", "category": "other", "x": -5623.3, "z": -1912.4, "px": 1088.3, "py": 1721.6, "has_dungeon": false, "has_important": true}, {"id": 2863, "name": "StoneHouse4", "category": "other", "x": -5710.0, "z": -5006.1, "px": 1073.5, "py": 1193.6, "has_dungeon": false, "has_important": true}, {"id": 2864, "name": "StoneHouse4", "category": "other", "x": -8080.8, "z": 2599.7, "px": 668.9, "py": 2491.7, "has_dungeon": false, "has_important": false}, {"id": 2865, "name": "StoneHouse4", "category": "other", "x": 1023.1, "z": -5072.8, "px": 2222.6, "py": 1182.2, "has_dungeon": false, "has_important": true}, {"id": 2866, "name": "StoneHouse4", "category": "other", "x": 6121.6, "z": -5929.1, "px": 3092.8, "py": 1036.1, "has_dungeon": false, "has_important": false}, {"id": 2867, "name": "StoneHouse4", "category": "other", "x": 2454.8, "z": -1294.1, "px": 2467.0, "py": 1827.1, "has_dungeon": false, "has_important": true}, {"id": 2868, "name": "StoneHouse4", "category": "other", "x": 5185.6, "z": 3196.7, "px": 2933.0, "py": 2593.6, "has_dungeon": false, "has_important": false}, {"id": 2869, "name": "StoneHouse4", "category": "other", "x": -3689.1, "z": 4309.1, "px": 1418.4, "py": 2783.4, "has_dungeon": false, "has_important": true}, {"id": 2870, "name": "StoneHouse4", "category": "other", "x": 2560.9, "z": 1341.3, "px": 2485.1, "py": 2276.9, "has_dungeon": false, "has_important": false}, {"id": 2871, "name": "StoneHouse4", "category": "other", "x": -7759.7, "z": -2599.4, "px": 723.7, "py": 1604.4, "has_dungeon": false, "has_important": true}, {"id": 2872, "name": "StoneHouse4", "category": "other", "x": 3715.0, "z": -344.3, "px": 2682.0, "py": 1989.2, "has_dungeon": false, "has_important": true}, {"id": 2873, "name": "StoneHouse4", "category": "other", "x": 7191.4, "z": -4623.2, "px": 3275.3, "py": 1259.0, "has_dungeon": false, "has_important": true}, {"id": 2874, "name": "StoneHouse4", "category": "other", "x": 3514.7, "z": -2551.2, "px": 2647.8, "py": 1612.6, "has_dungeon": false, "has_important": true}, {"id": 2875, "name": "StoneHouse4", "category": "other", "x": 9421.1, "z": 402.8, "px": 3655.9, "py": 2116.7, "has_dungeon": false, "has_important": false}, {"id": 2876, "name": "StoneHouse4", "category": "other", "x": -8720.3, "z": -697.3, "px": 559.7, "py": 1929.0, "has_dungeon": false, "has_important": false}, {"id": 2877, "name": "StoneHouse4", "category": "other", "x": -3198.7, "z": 4166.8, "px": 1502.1, "py": 2759.1, "has_dungeon": false, "has_important": true}, {"id": 2878, "name": "StoneHouse4", "category": "other", "x": -3022.2, "z": 4347.9, "px": 1532.2, "py": 2790.0, "has_dungeon": false, "has_important": true}, {"id": 2879, "name": "StoneHouse4", "category": "other", "x": -9303.7, "z": 2644.5, "px": 460.2, "py": 2499.3, "has_dungeon": false, "has_important": false}, {"id": 2880, "name": "StoneHouse4", "category": "other", "x": 8018.3, "z": 137.3, "px": 3416.5, "py": 2071.4, "has_dungeon": false, "has_important": true}, {"id": 2881, "name": "StoneHouse4", "category": "other", "x": 5752.4, "z": -940.0, "px": 3029.7, "py": 1887.6, "has_dungeon": false, "has_important": true}, {"id": 2882, "name": "StoneHouse4", "category": "other", "x": 2550.6, "z": 1261.0, "px": 2483.3, "py": 2263.2, "has_dungeon": false, "has_important": true}, {"id": 2883, "name": "StoneHouse4", "category": "other", "x": 2221.4, "z": 3909.7, "px": 2427.1, "py": 2715.3, "has_dungeon": false, "has_important": true}, {"id": 2884, "name": "StoneHouse4", "category": "other", "x": -7109.4, "z": -4903.1, "px": 834.7, "py": 1211.2, "has_dungeon": false, "has_important": true}, {"id": 2885, "name": "StoneHouse4", "category": "other", "x": 4021.4, "z": -399.2, "px": 2734.3, "py": 1979.9, "has_dungeon": false, "has_important": true}, {"id": 2886, "name": "StoneHouse4", "category": "other", "x": -1924.4, "z": -906.4, "px": 1719.6, "py": 1893.3, "has_dungeon": false, "has_important": true}, {"id": 2887, "name": "StoneHouse4", "category": "other", "x": 1071.0, "z": 3342.1, "px": 2230.8, "py": 2618.4, "has_dungeon": false, "has_important": true}, {"id": 2888, "name": "StoneHouse4", "category": "other", "x": -9164.5, "z": 2888.3, "px": 483.9, "py": 2540.9, "has_dungeon": false, "has_important": true}, {"id": 2889, "name": "StoneHouse4", "category": "other", "x": -2347.6, "z": 4431.8, "px": 1647.3, "py": 2804.4, "has_dungeon": false, "has_important": true}, {"id": 2890, "name": "StoneHouse4", "category": "other", "x": 9725.1, "z": 1319.8, "px": 3707.8, "py": 2273.2, "has_dungeon": false, "has_important": true}, {"id": 2891, "name": "StoneHouse4", "category": "other", "x": 819.2, "z": 3527.5, "px": 2187.8, "py": 2650.0, "has_dungeon": false, "has_important": true}, {"id": 2892, "name": "StoneHouse4", "category": "other", "x": 2576.6, "z": -3495.8, "px": 2487.7, "py": 1451.4, "has_dungeon": false, "has_important": true}, {"id": 2893, "name": "StoneHouse4", "category": "other", "x": 7120.9, "z": 1171.4, "px": 3263.3, "py": 2247.9, "has_dungeon": false, "has_important": true}, {"id": 2894, "name": "StoneHouse4", "category": "other", "x": 2927.8, "z": -4403.2, "px": 2547.7, "py": 1296.5, "has_dungeon": false, "has_important": false}, {"id": 2895, "name": "StoneHouse4", "category": "other", "x": -8243.2, "z": -1104.1, "px": 641.2, "py": 1859.6, "has_dungeon": false, "has_important": false}, {"id": 2896, "name": "StoneHouse4", "category": "other", "x": -8913.1, "z": 2893.3, "px": 526.8, "py": 2541.8, "has_dungeon": false, "has_important": true}, {"id": 2897, "name": "StoneHouse4", "category": "other", "x": 2967.2, "z": -4792.6, "px": 2554.4, "py": 1230.1, "has_dungeon": false, "has_important": true}, {"id": 2898, "name": "StoneHouse4", "category": "other", "x": -1337.4, "z": -1960.6, "px": 1819.8, "py": 1713.4, "has_dungeon": false, "has_important": true}, {"id": 2899, "name": "StoneHouse4", "category": "other", "x": 7356.3, "z": -4101.5, "px": 3303.5, "py": 1348.0, "has_dungeon": false, "has_important": true}, {"id": 2900, "name": "StoneHouse4", "category": "other", "x": 8566.3, "z": 180.5, "px": 3510.0, "py": 2078.8, "has_dungeon": false, "has_important": false}, {"id": 2901, "name": "StoneHouse4", "category": "other", "x": -8724.3, "z": -519.4, "px": 559.1, "py": 1959.4, "has_dungeon": false, "has_important": true}, {"id": 2902, "name": "StoneHouse4", "category": "other", "x": -2194.3, "z": 594.7, "px": 1673.5, "py": 2149.5, "has_dungeon": false, "has_important": true}, {"id": 2903, "name": "StoneHouse4", "category": "other", "x": 5996.5, "z": -6029.9, "px": 3071.4, "py": 1018.9, "has_dungeon": false, "has_important": true}, {"id": 2904, "name": "StoneHouse4", "category": "other", "x": -4985.1, "z": 5289.8, "px": 1197.2, "py": 2950.8, "has_dungeon": false, "has_important": true}, {"id": 2905, "name": "StoneHouse4", "category": "other", "x": 3946.8, "z": 5064.5, "px": 2721.6, "py": 2912.3, "has_dungeon": false, "has_important": true}, {"id": 2906, "name": "StoneHouse4", "category": "other", "x": 9875.7, "z": -1529.8, "px": 3733.5, "py": 1786.9, "has_dungeon": false, "has_important": true}, {"id": 2907, "name": "StoneHouse4", "category": "other", "x": -3312.2, "z": 4522.4, "px": 1482.7, "py": 2819.8, "has_dungeon": false, "has_important": false}, {"id": 2908, "name": "StoneHouse4", "category": "other", "x": 2088.4, "z": 773.8, "px": 2404.4, "py": 2180.1, "has_dungeon": false, "has_important": true}, {"id": 2909, "name": "StoneHouse4", "category": "other", "x": 7663.3, "z": 3906.8, "px": 3355.9, "py": 2714.8, "has_dungeon": false, "has_important": true}, {"id": 2910, "name": "StoneHouse4", "category": "other", "x": -5754.1, "z": -169.0, "px": 1066.0, "py": 2019.2, "has_dungeon": false, "has_important": true}, {"id": 2911, "name": "StoneHouse4", "category": "other", "x": 2313.1, "z": -4409.9, "px": 2442.8, "py": 1295.4, "has_dungeon": false, "has_important": true}, {"id": 2912, "name": "StoneHouse4", "category": "other", "x": -8893.7, "z": 2964.1, "px": 530.1, "py": 2553.9, "has_dungeon": false, "has_important": true}, {"id": 2913, "name": "StoneHouse4", "category": "other", "x": 2686.1, "z": -4425.0, "px": 2506.4, "py": 1292.8, "has_dungeon": false, "has_important": true}, {"id": 2914, "name": "StoneHouse4", "category": "other", "x": 7688.0, "z": -2832.3, "px": 3360.1, "py": 1564.6, "has_dungeon": false, "has_important": false}, {"id": 2915, "name": "StoneHouse4", "category": "other", "x": -4779.7, "z": 5487.5, "px": 1232.3, "py": 2984.5, "has_dungeon": false, "has_important": true}, {"id": 2916, "name": "StoneHouse4", "category": "other", "x": 9496.6, "z": 1302.1, "px": 3668.8, "py": 2270.2, "has_dungeon": false, "has_important": true}, {"id": 2917, "name": "StoneHouse4", "category": "other", "x": 622.3, "z": 106.7, "px": 2154.2, "py": 2066.2, "has_dungeon": false, "has_important": true}, {"id": 2918, "name": "StoneHouse4", "category": "other", "x": 1913.5, "z": -6202.2, "px": 2374.6, "py": 989.5, "has_dungeon": false, "has_important": true}, {"id": 2919, "name": "StoneHouse4", "category": "other", "x": -3730.1, "z": 1176.7, "px": 1411.4, "py": 2248.8, "has_dungeon": false, "has_important": false}, {"id": 2920, "name": "StoneHouse4", "category": "other", "x": 7308.3, "z": -3316.3, "px": 3295.3, "py": 1482.0, "has_dungeon": false, "has_important": false}, {"id": 2921, "name": "StoneHouse4", "category": "other", "x": -3703.6, "z": 1256.7, "px": 1415.9, "py": 2262.5, "has_dungeon": false, "has_important": false}, {"id": 2922, "name": "StoneHouse4", "category": "other", "x": -8554.0, "z": -1919.0, "px": 588.1, "py": 1720.5, "has_dungeon": false, "has_important": true}, {"id": 2923, "name": "StoneHouse4", "category": "other", "x": 3197.9, "z": 172.2, "px": 2593.8, "py": 2077.4, "has_dungeon": false, "has_important": true}, {"id": 2924, "name": "StoneHouse4", "category": "other", "x": 8560.6, "z": -1796.6, "px": 3509.0, "py": 1741.4, "has_dungeon": false, "has_important": true}, {"id": 2925, "name": "StoneHouse4", "category": "other", "x": -5609.7, "z": -6322.3, "px": 1090.6, "py": 969.0, "has_dungeon": false, "has_important": true}, {"id": 2926, "name": "StoneHouse4", "category": "other", "x": -2311.3, "z": -12.9, "px": 1653.5, "py": 2045.8, "has_dungeon": false, "has_important": true}, {"id": 2927, "name": "StoneHouse4", "category": "other", "x": 5393.5, "z": 1680.5, "px": 2968.5, "py": 2334.8, "has_dungeon": false, "has_important": true}, {"id": 2928, "name": "StoneHouse4", "category": "other", "x": -2414.8, "z": 4199.4, "px": 1635.9, "py": 2764.7, "has_dungeon": false, "has_important": true}, {"id": 2929, "name": "StoneHouse4", "category": "other", "x": -3111.3, "z": 1843.9, "px": 1517.0, "py": 2362.7, "has_dungeon": false, "has_important": true}, {"id": 2930, "name": "StoneHouse4", "category": "other", "x": -75.2, "z": -984.2, "px": 2035.2, "py": 1880.0, "has_dungeon": false, "has_important": true}, {"id": 2931, "name": "StoneHouse4", "category": "other", "x": 2297.2, "z": -644.4, "px": 2440.1, "py": 1938.0, "has_dungeon": false, "has_important": false}, {"id": 2932, "name": "StoneHouse4", "category": "other", "x": 752.1, "z": -2764.4, "px": 2176.4, "py": 1576.2, "has_dungeon": false, "has_important": false}, {"id": 2933, "name": "StoneHouse4", "category": "other", "x": 2319.3, "z": 1403.5, "px": 2443.8, "py": 2287.5, "has_dungeon": false, "has_important": true}, {"id": 2934, "name": "StoneHouse4", "category": "other", "x": 7382.2, "z": 1275.1, "px": 3307.9, "py": 2265.6, "has_dungeon": false, "has_important": false}, {"id": 2935, "name": "StoneHouse4", "category": "other", "x": -3051.5, "z": 4270.6, "px": 1527.2, "py": 2776.8, "has_dungeon": false, "has_important": false}, {"id": 2936, "name": "StoneHouse4", "category": "other", "x": 389.0, "z": 342.0, "px": 2114.4, "py": 2106.4, "has_dungeon": false, "has_important": false}, {"id": 2937, "name": "StoneHouse4", "category": "other", "x": -7744.2, "z": 4312.7, "px": 726.3, "py": 2784.0, "has_dungeon": false, "has_important": true}, {"id": 2938, "name": "StoneHouse4", "category": "other", "x": -3257.8, "z": -2415.7, "px": 1492.0, "py": 1635.7, "has_dungeon": false, "has_important": false}, {"id": 2939, "name": "StoneHouse4", "category": "other", "x": -2368.3, "z": -511.1, "px": 1643.8, "py": 1960.8, "has_dungeon": false, "has_important": true}, {"id": 2940, "name": "StoneHouse4", "category": "other", "x": 790.6, "z": 5515.4, "px": 2182.9, "py": 2989.3, "has_dungeon": false, "has_important": true}, {"id": 2941, "name": "StoneHouse4", "category": "other", "x": -5676.6, "z": 4695.6, "px": 1079.2, "py": 2849.4, "has_dungeon": false, "has_important": false}, {"id": 2942, "name": "StoneHouse4", "category": "other", "x": -4583.4, "z": 5706.0, "px": 1265.8, "py": 3021.8, "has_dungeon": false, "has_important": true}, {"id": 2943, "name": "StoneHouse4", "category": "other", "x": 2261.4, "z": -4376.4, "px": 2433.9, "py": 1301.1, "has_dungeon": false, "has_important": true}, {"id": 2944, "name": "StoneHouse4", "category": "other", "x": 11.2, "z": -4815.1, "px": 2049.9, "py": 1226.2, "has_dungeon": false, "has_important": true}, {"id": 2945, "name": "StoneHouse4", "category": "other", "x": 3246.4, "z": -1263.2, "px": 2602.1, "py": 1832.4, "has_dungeon": false, "has_important": false}, {"id": 2946, "name": "StoneHouse4", "category": "other", "x": 2193.4, "z": 5058.6, "px": 2422.3, "py": 2911.3, "has_dungeon": false, "has_important": true}, {"id": 2947, "name": "StoneHouse4", "category": "other", "x": 984.1, "z": -5194.7, "px": 2216.0, "py": 1161.4, "has_dungeon": false, "has_important": false}, {"id": 2948, "name": "StoneHouse4", "category": "other", "x": 9747.5, "z": -1486.3, "px": 3711.6, "py": 1794.3, "has_dungeon": false, "has_important": true}, {"id": 2949, "name": "StoneHouse4", "category": "other", "x": -3241.9, "z": -2258.5, "px": 1494.7, "py": 1662.5, "has_dungeon": false, "has_important": true}, {"id": 2950, "name": "StoneHouse4", "category": "other", "x": 1533.1, "z": 6411.1, "px": 2309.6, "py": 3142.2, "has_dungeon": false, "has_important": false}, {"id": 2951, "name": "StoneHouse4", "category": "other", "x": 637.8, "z": -2554.3, "px": 2156.9, "py": 1612.1, "has_dungeon": false, "has_important": true}, {"id": 2952, "name": "StoneHouse4", "category": "other", "x": 5057.2, "z": 2889.7, "px": 2911.1, "py": 2541.2, "has_dungeon": false, "has_important": true}, {"id": 2953, "name": "StoneHouse4", "category": "other", "x": -7571.9, "z": -1900.0, "px": 755.7, "py": 1723.7, "has_dungeon": false, "has_important": true}, {"id": 2954, "name": "StoneHouse4", "category": "other", "x": 201.8, "z": -1256.7, "px": 2082.4, "py": 1833.5, "has_dungeon": false, "has_important": false}, {"id": 2955, "name": "StoneHouse4", "category": "other", "x": -3472.5, "z": 4244.0, "px": 1455.4, "py": 2772.3, "has_dungeon": false, "has_important": true}, {"id": 2956, "name": "StoneHouse4", "category": "other", "x": 174.4, "z": -1456.3, "px": 2077.8, "py": 1799.5, "has_dungeon": false, "has_important": true}, {"id": 2957, "name": "StoneHouse4", "category": "other", "x": -8514.7, "z": 628.3, "px": 594.8, "py": 2155.2, "has_dungeon": false, "has_important": false}, {"id": 2958, "name": "StoneHouse4", "category": "other", "x": -7107.7, "z": -4884.5, "px": 835.0, "py": 1214.4, "has_dungeon": false, "has_important": true}, {"id": 2959, "name": "StoneHouse4", "category": "other", "x": 3005.5, "z": 3822.0, "px": 2560.9, "py": 2700.3, "has_dungeon": false, "has_important": true}, {"id": 2960, "name": "StoneHouse4", "category": "other", "x": -1863.6, "z": -980.4, "px": 1729.9, "py": 1880.7, "has_dungeon": false, "has_important": true}, {"id": 2961, "name": "StoneHouse4", "category": "other", "x": 5185.1, "z": 3157.4, "px": 2932.9, "py": 2586.9, "has_dungeon": false, "has_important": false}, {"id": 2962, "name": "StoneHouse4", "category": "other", "x": 1023.3, "z": 5353.4, "px": 2222.6, "py": 2961.6, "has_dungeon": false, "has_important": true}, {"id": 2963, "name": "StoneHouse4", "category": "other", "x": 3479.6, "z": 5355.9, "px": 2641.9, "py": 2962.1, "has_dungeon": false, "has_important": true}, {"id": 2964, "name": "StoneHouse4", "category": "other", "x": 2296.5, "z": -3463.0, "px": 2439.9, "py": 1457.0, "has_dungeon": false, "has_important": true}, {"id": 2965, "name": "StoneHouse4", "category": "other", "x": 760.1, "z": 4522.1, "px": 2177.7, "py": 2819.8, "has_dungeon": false, "has_important": true}, {"id": 2966, "name": "StoneHouse4", "category": "other", "x": 2166.1, "z": 1141.8, "px": 2417.7, "py": 2242.9, "has_dungeon": false, "has_important": true}, {"id": 2967, "name": "StoneHouse4", "category": "other", "x": 2007.8, "z": -807.5, "px": 2390.7, "py": 1910.2, "has_dungeon": false, "has_important": false}, {"id": 2968, "name": "StoneHouse4", "category": "other", "x": 1384.9, "z": -2379.3, "px": 2284.4, "py": 1641.9, "has_dungeon": false, "has_important": true}, {"id": 2969, "name": "StoneHouse4", "category": "other", "x": 2251.8, "z": 3790.2, "px": 2432.3, "py": 2694.9, "has_dungeon": false, "has_important": true}, {"id": 2970, "name": "StoneHouse4", "category": "other", "x": -7759.7, "z": -4721.8, "px": 723.7, "py": 1242.1, "has_dungeon": false, "has_important": true}, {"id": 2971, "name": "StoneHouse4", "category": "other", "x": 1960.2, "z": -1033.0, "px": 2382.5, "py": 1871.7, "has_dungeon": false, "has_important": true}, {"id": 2972, "name": "StoneHouse4", "category": "other", "x": -9618.6, "z": -380.4, "px": 406.4, "py": 1983.1, "has_dungeon": false, "has_important": true}, {"id": 2973, "name": "StoneHouse4", "category": "other", "x": 2983.5, "z": -49.9, "px": 2557.2, "py": 2039.5, "has_dungeon": false, "has_important": true}, {"id": 2974, "name": "StoneHouse4", "category": "other", "x": -2632.3, "z": -6130.7, "px": 1598.8, "py": 1001.7, "has_dungeon": false, "has_important": true}, {"id": 2975, "name": "StoneHouse4", "category": "other", "x": -4694.3, "z": 5636.3, "px": 1246.8, "py": 3009.9, "has_dungeon": false, "has_important": true}, {"id": 2976, "name": "StoneHouse4", "category": "other", "x": 8139.7, "z": -565.4, "px": 3437.2, "py": 1951.5, "has_dungeon": false, "has_important": true}, {"id": 2977, "name": "StoneHouse4", "category": "other", "x": -1789.0, "z": 4713.6, "px": 1742.7, "py": 2852.5, "has_dungeon": false, "has_important": true}, {"id": 2978, "name": "StoneHouse4", "category": "other", "x": 4016.8, "z": 3793.5, "px": 2733.5, "py": 2695.4, "has_dungeon": false, "has_important": true}, {"id": 2979, "name": "StoneHouse4", "category": "other", "x": -40.1, "z": -4734.4, "px": 2041.2, "py": 1240.0, "has_dungeon": false, "has_important": true}, {"id": 2980, "name": "StoneHouse4", "category": "other", "x": -4352.7, "z": 1580.2, "px": 1305.1, "py": 2317.7, "has_dungeon": false, "has_important": true}, {"id": 2981, "name": "StoneHouse4", "category": "other", "x": 4410.0, "z": -1027.4, "px": 2800.6, "py": 1872.7, "has_dungeon": false, "has_important": true}, {"id": 2982, "name": "StoneHouse4", "category": "other", "x": -5524.6, "z": 1493.1, "px": 1105.1, "py": 2302.8, "has_dungeon": false, "has_important": true}, {"id": 2983, "name": "StoneHouse4", "category": "other", "x": 8396.3, "z": -1900.9, "px": 3481.0, "py": 1723.6, "has_dungeon": false, "has_important": true}, {"id": 2984, "name": "StoneHouse4", "category": "other", "x": -4819.2, "z": -3131.3, "px": 1225.5, "py": 1513.6, "has_dungeon": false, "has_important": true}, {"id": 10263, "name": "SulfurArch", "category": "other", "x": -4608.2, "z": -8127.0, "px": 1261.5, "py": 661.0, "has_dungeon": false, "has_important": true}, {"id": 10264, "name": "SulfurArch", "category": "other", "x": -1089.5, "z": -9024.6, "px": 1862.1, "py": 507.8, "has_dungeon": false, "has_important": true}, {"id": 10265, "name": "SulfurArch", "category": "other", "x": -449.7, "z": -8961.3, "px": 1971.3, "py": 518.6, "has_dungeon": false, "has_important": true}, {"id": 10266, "name": "SulfurArch", "category": "other", "x": 128.7, "z": -8766.8, "px": 2070.0, "py": 551.8, "has_dungeon": false, "has_important": true}, {"id": 10267, "name": "SulfurArch", "category": "other", "x": -4542.9, "z": -8257.5, "px": 1272.7, "py": 638.7, "has_dungeon": false, "has_important": true}, {"id": 10268, "name": "SulfurArch", "category": "other", "x": 1665.4, "z": -9664.2, "px": 2332.2, "py": 398.6, "has_dungeon": false, "has_important": true}, {"id": 10269, "name": "SulfurArch", "category": "other", "x": 3326.5, "z": -8382.5, "px": 2615.7, "py": 617.4, "has_dungeon": false, "has_important": true}, {"id": 10270, "name": "SulfurArch", "category": "other", "x": -2561.0, "z": -8574.4, "px": 1610.9, "py": 584.6, "has_dungeon": false, "has_important": true}, {"id": 10271, "name": "SulfurArch", "category": "other", "x": 2433.7, "z": -9023.3, "px": 2463.4, "py": 508.0, "has_dungeon": false, "has_important": true}, {"id": 10272, "name": "SulfurArch", "category": "other", "x": 769.0, "z": -8766.0, "px": 2179.2, "py": 551.9, "has_dungeon": false, "has_important": true}, {"id": 10273, "name": "SulfurArch", "category": "other", "x": -3968.0, "z": -9087.8, "px": 1370.8, "py": 497.0, "has_dungeon": false, "has_important": true}, {"id": 10274, "name": "SulfurArch", "category": "other", "x": 65.9, "z": -8960.9, "px": 2059.2, "py": 518.7, "has_dungeon": false, "has_important": true}, {"id": 10275, "name": "SulfurArch", "category": "other", "x": 192.0, "z": -8640.9, "px": 2080.8, "py": 573.3, "has_dungeon": false, "has_important": true}, {"id": 10276, "name": "SulfurArch", "category": "other", "x": 1793.8, "z": -9344.9, "px": 2354.1, "py": 453.1, "has_dungeon": false, "has_important": true}, {"id": 10277, "name": "SulfurArch", "category": "other", "x": -577.4, "z": -9470.8, "px": 1949.5, "py": 431.7, "has_dungeon": false, "has_important": true}, {"id": 10278, "name": "SulfurArch", "category": "other", "x": -3841.8, "z": -9150.1, "px": 1392.3, "py": 486.4, "has_dungeon": false, "has_important": true}, {"id": 10279, "name": "SulfurArch", "category": "other", "x": 1281.2, "z": -9150.9, "px": 2266.7, "py": 486.2, "has_dungeon": false, "has_important": true}, {"id": 10280, "name": "SulfurArch", "category": "other", "x": -4415.1, "z": -8190.3, "px": 1294.5, "py": 650.2, "has_dungeon": false, "has_important": true}, {"id": 10281, "name": "SulfurArch", "category": "other", "x": -3903.8, "z": -9087.4, "px": 1381.8, "py": 497.1, "has_dungeon": false, "has_important": true}, {"id": 10282, "name": "SulfurArch", "category": "other", "x": 1214.7, "z": -9217.2, "px": 2255.3, "py": 474.9, "has_dungeon": false, "has_important": true}, {"id": 10283, "name": "SulfurArch", "category": "other", "x": 1662.8, "z": -9217.4, "px": 2331.8, "py": 474.9, "has_dungeon": false, "has_important": true}, {"id": 10284, "name": "SulfurArch", "category": "other", "x": 446.2, "z": -8769.6, "px": 2124.2, "py": 551.3, "has_dungeon": false, "has_important": true}, {"id": 10285, "name": "SulfurArch", "category": "other", "x": -1918.6, "z": -9152.1, "px": 1720.6, "py": 486.0, "has_dungeon": false, "has_important": true}, {"id": 10286, "name": "SulfurArch", "category": "other", "x": -2559.7, "z": -8640.7, "px": 1611.1, "py": 573.3, "has_dungeon": false, "has_important": true}, {"id": 10287, "name": "SulfurArch", "category": "other", "x": -2046.5, "z": -9088.1, "px": 1698.7, "py": 497.0, "has_dungeon": false, "has_important": true}, {"id": 10288, "name": "SulfurArch", "category": "other", "x": -2049.1, "z": -9150.7, "px": 1698.3, "py": 486.3, "has_dungeon": false, "has_important": true}, {"id": 10289, "name": "SulfurArch", "category": "other", "x": -449.6, "z": -9024.5, "px": 1971.3, "py": 507.8, "has_dungeon": false, "has_important": true}, {"id": 10290, "name": "SulfurArch", "category": "other", "x": 1601.4, "z": -9537.5, "px": 2321.3, "py": 420.3, "has_dungeon": false, "has_important": true}, {"id": 10291, "name": "SulfurArch", "category": "other", "x": -1214.4, "z": -9663.7, "px": 1840.7, "py": 398.7, "has_dungeon": false, "has_important": true}, {"id": 10292, "name": "SulfurArch", "category": "other", "x": -1025.5, "z": -9664.1, "px": 1873.0, "py": 398.7, "has_dungeon": false, "has_important": true}, {"id": 10293, "name": "SulfurArch", "category": "other", "x": -766.7, "z": -9790.9, "px": 1917.1, "py": 377.0, "has_dungeon": false, "has_important": true}, {"id": 10294, "name": "SulfurArch", "category": "other", "x": -2431.1, "z": -8831.4, "px": 1633.1, "py": 540.8, "has_dungeon": false, "has_important": true}, {"id": 10295, "name": "SulfurArch", "category": "other", "x": 1472.7, "z": -9279.2, "px": 2299.3, "py": 464.3, "has_dungeon": false, "has_important": true}, {"id": 10296, "name": "SulfurArch", "category": "other", "x": -1342.8, "z": -9727.3, "px": 1818.8, "py": 387.9, "has_dungeon": false, "has_important": true}, {"id": 10297, "name": "SulfurArch", "category": "other", "x": -641.9, "z": -9086.8, "px": 1938.4, "py": 497.2, "has_dungeon": false, "has_important": true}, {"id": 10298, "name": "SulfurArch", "category": "other", "x": 3712.0, "z": -8448.8, "px": 2681.5, "py": 606.1, "has_dungeon": false, "has_important": true}, {"id": 10299, "name": "SulfurArch", "category": "other", "x": -4673.3, "z": -8191.6, "px": 1250.4, "py": 650.0, "has_dungeon": false, "has_important": true}, {"id": 10300, "name": "SulfurArch", "category": "other", "x": -447.6, "z": -8703.8, "px": 1971.6, "py": 562.6, "has_dungeon": false, "has_important": true}, {"id": 10301, "name": "SulfurArch", "category": "other", "x": 768.9, "z": -8895.9, "px": 2179.2, "py": 529.8, "has_dungeon": false, "has_important": true}, {"id": 10302, "name": "SulfurArch", "category": "other", "x": 1086.7, "z": -8894.1, "px": 2233.5, "py": 530.1, "has_dungeon": false, "has_important": true}, {"id": 10303, "name": "SulfurArch", "category": "other", "x": -3838.9, "z": -9214.5, "px": 1392.8, "py": 475.4, "has_dungeon": false, "has_important": true}, {"id": 10304, "name": "SulfurArch", "category": "other", "x": -704.7, "z": -9664.7, "px": 1927.7, "py": 398.6, "has_dungeon": false, "has_important": true}, {"id": 10305, "name": "SulfurArch", "category": "other", "x": 129.0, "z": -9025.4, "px": 2070.0, "py": 507.7, "has_dungeon": false, "has_important": true}, {"id": 10306, "name": "SulfurArch", "category": "other", "x": 1664.0, "z": -9280.0, "px": 2332.0, "py": 464.2, "has_dungeon": false, "has_important": true}, {"id": 10307, "name": "SulfurArch", "category": "other", "x": 192.5, "z": -9152.3, "px": 2080.9, "py": 486.0, "has_dungeon": false, "has_important": true}, {"id": 10308, "name": "SulfurArch", "category": "other", "x": 2944.4, "z": -9218.0, "px": 2550.5, "py": 474.8, "has_dungeon": false, "has_important": true}, {"id": 10309, "name": "SulfurArch", "category": "other", "x": -191.4, "z": -8897.6, "px": 2015.3, "py": 529.5, "has_dungeon": false, "has_important": true}, {"id": 10310, "name": "SulfurArch", "category": "other", "x": 384.0, "z": -9151.3, "px": 2113.5, "py": 486.2, "has_dungeon": false, "has_important": true}, {"id": 10311, "name": "SulfurArch", "category": "other", "x": 1025.8, "z": -9216.3, "px": 2223.1, "py": 475.1, "has_dungeon": false, "has_important": true}, {"id": 10312, "name": "SulfurArch", "category": "other", "x": -767.5, "z": -9534.6, "px": 1917.0, "py": 420.8, "has_dungeon": false, "has_important": true}, {"id": 10313, "name": "SulfurArch", "category": "other", "x": 449.0, "z": -9087.3, "px": 2124.6, "py": 497.1, "has_dungeon": false, "has_important": true}, {"id": 10314, "name": "SulfurArch", "category": "other", "x": 831.0, "z": -8897.8, "px": 2189.8, "py": 529.4, "has_dungeon": false, "has_important": true}, {"id": 10315, "name": "SulfurArch", "category": "other", "x": 1344.5, "z": -9536.7, "px": 2277.5, "py": 420.4, "has_dungeon": false, "has_important": true}, {"id": 10316, "name": "SulfurArch", "category": "other", "x": 638.9, "z": -9023.4, "px": 2157.0, "py": 508.0, "has_dungeon": false, "has_important": true}, {"id": 10317, "name": "SulfurArch", "category": "other", "x": 1088.3, "z": -9152.3, "px": 2233.7, "py": 486.0, "has_dungeon": false, "has_important": true}, {"id": 10318, "name": "SulfurArch", "category": "other", "x": 1471.1, "z": -9534.2, "px": 2299.1, "py": 420.8, "has_dungeon": false, "has_important": true}, {"id": 10319, "name": "SulfurArch", "category": "other", "x": 384.5, "z": -9537.1, "px": 2113.6, "py": 420.3, "has_dungeon": false, "has_important": true}, {"id": 10320, "name": "SulfurArch", "category": "other", "x": -3775.3, "z": -9150.6, "px": 1403.7, "py": 486.3, "has_dungeon": false, "has_important": true}, {"id": 10321, "name": "SulfurArch", "category": "other", "x": -3393.7, "z": -8830.1, "px": 1468.8, "py": 541.0, "has_dungeon": false, "has_important": true}, {"id": 10322, "name": "SulfurArch", "category": "other", "x": 3711.4, "z": -8318.9, "px": 2681.4, "py": 628.2, "has_dungeon": false, "has_important": true}, {"id": 10323, "name": "SulfurArch", "category": "other", "x": -3904.8, "z": -8831.1, "px": 1381.6, "py": 540.8, "has_dungeon": false, "has_important": true}, {"id": 10324, "name": "SulfurArch", "category": "other", "x": -319.8, "z": -9023.4, "px": 1993.4, "py": 508.0, "has_dungeon": false, "has_important": true}, {"id": 10325, "name": "SulfurArch", "category": "other", "x": 704.2, "z": -8831.1, "px": 2168.2, "py": 540.8, "has_dungeon": false, "has_important": true}, {"id": 10326, "name": "SulfurArch", "category": "other", "x": 2750.6, "z": -9280.9, "px": 2517.4, "py": 464.1, "has_dungeon": false, "has_important": true}, {"id": 10327, "name": "SulfurArch", "category": "other", "x": 3390.5, "z": -8447.7, "px": 2626.6, "py": 606.3, "has_dungeon": false, "has_important": true}, {"id": 10328, "name": "SulfurArch", "category": "other", "x": -1087.1, "z": -9343.5, "px": 1862.5, "py": 453.4, "has_dungeon": false, "has_important": true}, {"id": 10329, "name": "SulfurArch", "category": "other", "x": -1154.0, "z": -9215.1, "px": 1851.1, "py": 475.3, "has_dungeon": false, "has_important": true}, {"id": 10330, "name": "SulfurArch", "category": "other", "x": -2175.2, "z": -8511.7, "px": 1676.8, "py": 595.3, "has_dungeon": false, "has_important": true}, {"id": 10331, "name": "SulfurArch", "category": "other", "x": 1407.2, "z": -9214.8, "px": 2288.2, "py": 475.3, "has_dungeon": false, "has_important": true}, {"id": 10332, "name": "SulfurArch", "category": "other", "x": -703.1, "z": -9215.8, "px": 1928.0, "py": 475.2, "has_dungeon": false, "has_important": true}, {"id": 10333, "name": "SulfurArch", "category": "other", "x": 1471.0, "z": -9216.5, "px": 2299.1, "py": 475.1, "has_dungeon": false, "has_important": true}, {"id": 10334, "name": "SulfurArch", "category": "other", "x": -1984.0, "z": -8958.7, "px": 1709.4, "py": 519.0, "has_dungeon": false, "has_important": true}, {"id": 10335, "name": "SulfurArch", "category": "other", "x": -383.3, "z": -8704.5, "px": 1982.6, "py": 562.4, "has_dungeon": false, "has_important": true}, {"id": 10336, "name": "SulfurArch", "category": "other", "x": 513.8, "z": -8961.7, "px": 2135.7, "py": 518.5, "has_dungeon": false, "has_important": true}, {"id": 10337, "name": "SulfurArch", "category": "other", "x": -513.1, "z": -8832.4, "px": 1960.4, "py": 540.6, "has_dungeon": false, "has_important": true}, {"id": 10338, "name": "SulfurArch", "category": "other", "x": -769.1, "z": -9151.9, "px": 1916.7, "py": 486.1, "has_dungeon": false, "has_important": true}, {"id": 10339, "name": "SulfurArch", "category": "other", "x": -1089.6, "z": -9473.9, "px": 1862.0, "py": 431.1, "has_dungeon": false, "has_important": true}, {"id": 10340, "name": "SulfurArch", "category": "other", "x": -2112.1, "z": -8640.7, "px": 1687.5, "py": 573.3, "has_dungeon": false, "has_important": true}, {"id": 10341, "name": "SulfurArch", "category": "other", "x": -640.3, "z": -9601.3, "px": 1938.7, "py": 409.4, "has_dungeon": false, "has_important": true}, {"id": 10342, "name": "SulfurArch", "category": "other", "x": 895.7, "z": -9087.5, "px": 2200.9, "py": 497.1, "has_dungeon": false, "has_important": true}, {"id": 10343, "name": "SulfurArch", "category": "other", "x": -1982.5, "z": -8897.5, "px": 1709.7, "py": 529.5, "has_dungeon": false, "has_important": true}, {"id": 10344, "name": "SulfurArch", "category": "other", "x": 3966.5, "z": -8830.6, "px": 2724.9, "py": 540.9, "has_dungeon": false, "has_important": true}, {"id": 10345, "name": "SulfurArch", "category": "other", "x": -2111.5, "z": -8894.8, "px": 1687.6, "py": 530.0, "has_dungeon": false, "has_important": true}, {"id": 10346, "name": "SulfurArch", "category": "other", "x": -830.7, "z": -9857.1, "px": 1906.2, "py": 365.7, "has_dungeon": false, "has_important": true}, {"id": 10347, "name": "SulfurArch", "category": "other", "x": 511.5, "z": -8830.6, "px": 2135.3, "py": 540.9, "has_dungeon": false, "has_important": true}, {"id": 10348, "name": "SulfurArch", "category": "other", "x": 320.7, "z": -9534.2, "px": 2102.7, "py": 420.8, "has_dungeon": false, "has_important": true}, {"id": 10349, "name": "SulfurArch", "category": "other", "x": -64.1, "z": -8834.0, "px": 2037.1, "py": 540.3, "has_dungeon": false, "has_important": true}, {"id": 10350, "name": "SulfurArch", "category": "other", "x": 3199.7, "z": -8512.4, "px": 2594.1, "py": 595.2, "has_dungeon": false, "has_important": true}, {"id": 10351, "name": "SulfurArch", "category": "other", "x": -1089.8, "z": -9151.3, "px": 1862.0, "py": 486.2, "has_dungeon": false, "has_important": true}, {"id": 10352, "name": "SulfurArch", "category": "other", "x": 3455.5, "z": -8513.9, "px": 2637.7, "py": 595.0, "has_dungeon": false, "has_important": true}, {"id": 10353, "name": "SulfurArch", "category": "other", "x": 64.2, "z": -9022.9, "px": 2059.0, "py": 508.1, "has_dungeon": false, "has_important": true}, {"id": 10354, "name": "SulfurArch", "category": "other", "x": -1022.4, "z": -9214.4, "px": 1873.5, "py": 475.4, "has_dungeon": false, "has_important": true}, {"id": 10355, "name": "SulfurArch", "category": "other", "x": -2366.3, "z": -8448.3, "px": 1644.2, "py": 606.2, "has_dungeon": false, "has_important": true}, {"id": 10356, "name": "SulfurArch", "category": "other", "x": 1022.2, "z": -9022.6, "px": 2222.5, "py": 508.1, "has_dungeon": false, "has_important": true}, {"id": 10357, "name": "SulfurArch", "category": "other", "x": 2688.7, "z": -9152.5, "px": 2506.9, "py": 486.0, "has_dungeon": false, "has_important": true}, {"id": 10358, "name": "SulfurArch", "category": "other", "x": -2046.5, "z": -8961.3, "px": 1698.7, "py": 518.6, "has_dungeon": false, "has_important": true}, {"id": 10359, "name": "SulfurArch", "category": "other", "x": 321.1, "z": -9214.1, "px": 2102.8, "py": 475.5, "has_dungeon": false, "has_important": true}, {"id": 10360, "name": "SulfurArch", "category": "other", "x": -2368.2, "z": -8831.2, "px": 1643.8, "py": 540.8, "has_dungeon": false, "has_important": true}, {"id": 10361, "name": "SulfurArch", "category": "other", "x": -2047.9, "z": -8831.3, "px": 1698.5, "py": 540.8, "has_dungeon": false, "has_important": true}, {"id": 10362, "name": "SulfurArch", "category": "other", "x": 3522.0, "z": -8384.8, "px": 2649.1, "py": 617.0, "has_dungeon": false, "has_important": true}, {"id": 5208, "name": "SwampHut1", "category": "other", "x": -3818.9, "z": 3195.0, "px": 1396.2, "py": 2593.3, "has_dungeon": false, "has_important": true}, {"id": 5209, "name": "SwampHut1", "category": "other", "x": -4469.5, "z": -574.8, "px": 1285.2, "py": 1949.9, "has_dungeon": false, "has_important": false}, {"id": 5210, "name": "SwampHut1", "category": "other", "x": 4093.1, "z": 567.1, "px": 2746.6, "py": 2144.8, "has_dungeon": false, "has_important": true}, {"id": 5211, "name": "SwampHut1", "category": "other", "x": -5163.2, "z": -1809.5, "px": 1166.8, "py": 1739.2, "has_dungeon": false, "has_important": false}, {"id": 5212, "name": "SwampHut1", "category": "other", "x": 744.6, "z": 2494.3, "px": 2175.1, "py": 2473.7, "has_dungeon": false, "has_important": false}, {"id": 5213, "name": "SwampHut1", "category": "other", "x": -1268.2, "z": -5625.8, "px": 1831.6, "py": 1087.9, "has_dungeon": false, "has_important": false}, {"id": 5214, "name": "SwampHut1", "category": "other", "x": -1986.1, "z": 4407.1, "px": 1709.0, "py": 2800.1, "has_dungeon": false, "has_important": false}, {"id": 5215, "name": "SwampHut1", "category": "other", "x": -2359.7, "z": 4752.8, "px": 1645.3, "py": 2859.1, "has_dungeon": false, "has_important": false}, {"id": 5216, "name": "SwampHut1", "category": "other", "x": -1394.5, "z": -5682.6, "px": 1810.0, "py": 1078.2, "has_dungeon": false, "has_important": true}, {"id": 5217, "name": "SwampHut1", "category": "other", "x": 3692.8, "z": 4627.0, "px": 2678.2, "py": 2837.7, "has_dungeon": false, "has_important": true}, {"id": 5218, "name": "SwampHut1", "category": "other", "x": 2485.0, "z": -770.9, "px": 2472.1, "py": 1916.4, "has_dungeon": false, "has_important": false}, {"id": 5219, "name": "SwampHut1", "category": "other", "x": -4366.9, "z": -744.6, "px": 1302.7, "py": 1920.9, "has_dungeon": false, "has_important": false}, {"id": 5220, "name": "SwampHut1", "category": "other", "x": -2059.1, "z": 4609.8, "px": 1696.6, "py": 2834.7, "has_dungeon": false, "has_important": false}, {"id": 5221, "name": "SwampHut1", "category": "other", "x": -3990.7, "z": 3695.2, "px": 1366.9, "py": 2678.6, "has_dungeon": false, "has_important": false}, {"id": 5222, "name": "SwampHut1", "category": "other", "x": -831.2, "z": -3968.1, "px": 1906.1, "py": 1370.8, "has_dungeon": false, "has_important": false}, {"id": 5223, "name": "SwampHut1", "category": "other", "x": -5138.7, "z": 1657.6, "px": 1171.0, "py": 2330.9, "has_dungeon": false, "has_important": false}, {"id": 5224, "name": "SwampHut1", "category": "other", "x": -2931.2, "z": 705.4, "px": 1547.7, "py": 2168.4, "has_dungeon": false, "has_important": false}, {"id": 5225, "name": "SwampHut1", "category": "other", "x": 1548.5, "z": -5368.2, "px": 2312.3, "py": 1131.8, "has_dungeon": false, "has_important": false}, {"id": 5226, "name": "SwampHut1", "category": "other", "x": -2370.6, "z": -1195.4, "px": 1643.4, "py": 1844.0, "has_dungeon": false, "has_important": false}, {"id": 5227, "name": "SwampHut1", "category": "other", "x": 1552.6, "z": 4371.3, "px": 2313.0, "py": 2794.0, "has_dungeon": false, "has_important": false}, {"id": 5228, "name": "SwampHut1", "category": "other", "x": -2866.9, "z": -5190.8, "px": 1558.7, "py": 1162.1, "has_dungeon": false, "has_important": false}, {"id": 5229, "name": "SwampHut1", "category": "other", "x": -3986.3, "z": 210.5, "px": 1367.7, "py": 2083.9, "has_dungeon": false, "has_important": false}, {"id": 5230, "name": "SwampHut1", "category": "other", "x": -262.3, "z": 2866.2, "px": 2003.2, "py": 2537.2, "has_dungeon": false, "has_important": false}, {"id": 5231, "name": "SwampHut1", "category": "other", "x": 852.9, "z": 4338.5, "px": 2193.6, "py": 2788.4, "has_dungeon": false, "has_important": false}, {"id": 5232, "name": "SwampHut1", "category": "other", "x": -377.3, "z": 2730.9, "px": 1983.6, "py": 2514.1, "has_dungeon": false, "has_important": false}, {"id": 5233, "name": "SwampHut1", "category": "other", "x": -4485.5, "z": 3408.2, "px": 1282.5, "py": 2629.7, "has_dungeon": false, "has_important": false}, {"id": 5234, "name": "SwampHut1", "category": "other", "x": 1616.0, "z": 2175.0, "px": 2323.8, "py": 2419.2, "has_dungeon": false, "has_important": false}, {"id": 5235, "name": "SwampHut1", "category": "other", "x": -2989.2, "z": 5192.3, "px": 1537.8, "py": 2934.2, "has_dungeon": false, "has_important": true}, {"id": 5236, "name": "SwampHut1", "category": "other", "x": -4335.3, "z": 1357.6, "px": 1308.1, "py": 2279.7, "has_dungeon": false, "has_important": false}, {"id": 5237, "name": "SwampHut1", "category": "other", "x": -4119.8, "z": 3728.9, "px": 1344.9, "py": 2684.4, "has_dungeon": false, "has_important": false}, {"id": 5238, "name": "SwampHut1", "category": "other", "x": 2349.2, "z": -4329.0, "px": 2448.9, "py": 1309.2, "has_dungeon": false, "has_important": false}, {"id": 5239, "name": "SwampHut1", "category": "other", "x": -2412.2, "z": -631.4, "px": 1636.3, "py": 1940.2, "has_dungeon": false, "has_important": false}, {"id": 5240, "name": "SwampHut1", "category": "other", "x": 4975.4, "z": -709.0, "px": 2897.1, "py": 1927.0, "has_dungeon": false, "has_important": false}, {"id": 5241, "name": "SwampHut1", "category": "other", "x": 2612.1, "z": -2344.9, "px": 2493.8, "py": 1647.8, "has_dungeon": false, "has_important": false}, {"id": 5242, "name": "SwampHut1", "category": "other", "x": -2236.5, "z": 1606.1, "px": 1666.3, "py": 2322.1, "has_dungeon": false, "has_important": false}, {"id": 5243, "name": "SwampHut1", "category": "other", "x": -2689.1, "z": 2170.0, "px": 1589.1, "py": 2418.3, "has_dungeon": false, "has_important": false}, {"id": 5244, "name": "SwampHut1", "category": "other", "x": -4433.2, "z": 1554.7, "px": 1291.4, "py": 2313.3, "has_dungeon": false, "has_important": false}, {"id": 5245, "name": "SwampHut1", "category": "other", "x": 1291.2, "z": -4816.0, "px": 2268.4, "py": 1226.1, "has_dungeon": false, "has_important": false}, {"id": 5246, "name": "SwampHut1", "category": "other", "x": -3272.7, "z": 195.9, "px": 1489.5, "py": 2081.4, "has_dungeon": false, "has_important": false}, {"id": 5247, "name": "SwampHut1", "category": "other", "x": 2541.1, "z": -896.3, "px": 2481.7, "py": 1895.0, "has_dungeon": false, "has_important": false}, {"id": 5248, "name": "SwampHut1", "category": "other", "x": 1673.2, "z": 1939.8, "px": 2333.6, "py": 2379.1, "has_dungeon": false, "has_important": false}, {"id": 5249, "name": "SwampHut1", "category": "other", "x": 940.3, "z": 4225.3, "px": 2208.5, "py": 2769.1, "has_dungeon": false, "has_important": false}, {"id": 5250, "name": "SwampHut1", "category": "other", "x": -2188.8, "z": 1751.4, "px": 1674.4, "py": 2346.9, "has_dungeon": false, "has_important": false}, {"id": 5251, "name": "SwampHut1", "category": "other", "x": -3596.0, "z": 3012.6, "px": 1434.3, "py": 2562.2, "has_dungeon": false, "has_important": true}, {"id": 5252, "name": "SwampHut1", "category": "other", "x": 3223.0, "z": 4713.7, "px": 2598.1, "py": 2852.5, "has_dungeon": false, "has_important": true}, {"id": 5253, "name": "SwampHut1", "category": "other", "x": 3669.5, "z": 1098.4, "px": 2674.3, "py": 2235.5, "has_dungeon": false, "has_important": false}, {"id": 5254, "name": "SwampHut1", "category": "other", "x": -2859.5, "z": 1616.6, "px": 1560.0, "py": 2323.9, "has_dungeon": false, "has_important": false}, {"id": 5255, "name": "SwampHut1", "category": "other", "x": -4911.8, "z": -3395.0, "px": 1209.7, "py": 1468.6, "has_dungeon": false, "has_important": false}, {"id": 5256, "name": "SwampHut1", "category": "other", "x": -3511.7, "z": 3503.3, "px": 1448.7, "py": 2645.9, "has_dungeon": false, "has_important": false}, {"id": 5257, "name": "SwampHut1", "category": "other", "x": -5491.3, "z": 2049.1, "px": 1110.8, "py": 2397.7, "has_dungeon": false, "has_important": false}, {"id": 5258, "name": "SwampHut2", "category": "other", "x": 4543.6, "z": -2834.8, "px": 2823.4, "py": 1564.2, "has_dungeon": false, "has_important": false}, {"id": 5259, "name": "SwampHut2", "category": "other", "x": 1986.8, "z": 1545.2, "px": 2387.1, "py": 2311.7, "has_dungeon": false, "has_important": false}, {"id": 5260, "name": "SwampHut2", "category": "other", "x": -5681.2, "z": -360.5, "px": 1078.4, "py": 1986.5, "has_dungeon": false, "has_important": false}, {"id": 5261, "name": "SwampHut2", "category": "other", "x": 243.1, "z": 2625.4, "px": 2089.5, "py": 2496.1, "has_dungeon": false, "has_important": false}, {"id": 5262, "name": "SwampHut2", "category": "other", "x": 306.8, "z": -3197.0, "px": 2100.4, "py": 1502.4, "has_dungeon": false, "has_important": false}, {"id": 5263, "name": "SwampHut2", "category": "other", "x": 2772.7, "z": -3218.0, "px": 2521.2, "py": 1498.8, "has_dungeon": false, "has_important": false}, {"id": 5264, "name": "SwampHut2", "category": "other", "x": -4434.8, "z": 1005.0, "px": 1291.1, "py": 2219.5, "has_dungeon": false, "has_important": false}, {"id": 5265, "name": "SwampHut2", "category": "other", "x": 1849.0, "z": 1518.5, "px": 2363.6, "py": 2307.2, "has_dungeon": false, "has_important": false}, {"id": 5266, "name": "SwampHut2", "category": "other", "x": -4145.0, "z": 3588.7, "px": 1340.6, "py": 2660.5, "has_dungeon": false, "has_important": false}, {"id": 5267, "name": "SwampHut2", "category": "other", "x": 171.3, "z": 2513.0, "px": 2077.2, "py": 2476.9, "has_dungeon": false, "has_important": false}, {"id": 5268, "name": "SwampHut2", "category": "other", "x": 2500.3, "z": -492.3, "px": 2474.7, "py": 1964.0, "has_dungeon": false, "has_important": false}, {"id": 5269, "name": "SwampHut2", "category": "other", "x": 1165.8, "z": 2127.2, "px": 2247.0, "py": 2411.0, "has_dungeon": false, "has_important": true}, {"id": 5270, "name": "SwampHut2", "category": "other", "x": -4166.0, "z": 433.8, "px": 1337.0, "py": 2122.0, "has_dungeon": false, "has_important": false}, {"id": 5271, "name": "SwampHut2", "category": "other", "x": -191.9, "z": 2413.2, "px": 2015.2, "py": 2459.9, "has_dungeon": false, "has_important": false}, {"id": 5272, "name": "SwampHut2", "category": "other", "x": 1774.2, "z": 4456.0, "px": 2350.8, "py": 2808.5, "has_dungeon": false, "has_important": false}, {"id": 5273, "name": "SwampHut2", "category": "other", "x": -4355.7, "z": 885.3, "px": 1304.6, "py": 2199.1, "has_dungeon": false, "has_important": false}, {"id": 5274, "name": "SwampHut2", "category": "other", "x": -5395.2, "z": 1879.8, "px": 1127.2, "py": 2368.8, "has_dungeon": false, "has_important": false}, {"id": 5275, "name": "SwampHut2", "category": "other", "x": 1668.0, "z": 4563.7, "px": 2332.7, "py": 2826.9, "has_dungeon": false, "has_important": false}, {"id": 5276, "name": "SwampHut2", "category": "other", "x": -3282.8, "z": 383.4, "px": 1487.7, "py": 2113.4, "has_dungeon": false, "has_important": false}, {"id": 5277, "name": "SwampHut2", "category": "other", "x": -1806.2, "z": 4435.9, "px": 1739.7, "py": 2805.1, "has_dungeon": false, "has_important": false}, {"id": 5278, "name": "SwampHut2", "category": "other", "x": 2993.0, "z": -459.6, "px": 2558.8, "py": 1969.6, "has_dungeon": false, "has_important": false}, {"id": 5279, "name": "SwampHut2", "category": "other", "x": -2739.9, "z": -5295.5, "px": 1580.4, "py": 1144.2, "has_dungeon": false, "has_important": false}, {"id": 5280, "name": "SwampHut2", "category": "other", "x": 4657.1, "z": -822.9, "px": 2842.8, "py": 1907.6, "has_dungeon": false, "has_important": false}, {"id": 5281, "name": "SwampHut2", "category": "other", "x": -4813.6, "z": -429.3, "px": 1226.5, "py": 1974.7, "has_dungeon": false, "has_important": false}, {"id": 5282, "name": "SwampHut2", "category": "other", "x": -1583.4, "z": -5746.8, "px": 1777.8, "py": 1067.2, "has_dungeon": false, "has_important": false}, {"id": 5283, "name": "SwampHut2", "category": "other", "x": 2103.7, "z": 517.1, "px": 2407.0, "py": 2136.3, "has_dungeon": false, "has_important": false}, {"id": 5284, "name": "SwampHut2", "category": "other", "x": -5119.6, "z": -558.6, "px": 1174.3, "py": 1952.7, "has_dungeon": false, "has_important": false}, {"id": 5285, "name": "SwampHut2", "category": "other", "x": 5620.5, "z": 957.1, "px": 3007.2, "py": 2211.3, "has_dungeon": false, "has_important": false}, {"id": 5286, "name": "SwampHut2", "category": "other", "x": 464.8, "z": 2516.3, "px": 2127.3, "py": 2477.4, "has_dungeon": false, "has_important": false}, {"id": 5287, "name": "SwampHut2", "category": "other", "x": -5055.6, "z": -840.1, "px": 1185.2, "py": 1904.6, "has_dungeon": false, "has_important": false}, {"id": 5288, "name": "SwampHut2", "category": "other", "x": 1294.5, "z": 1941.5, "px": 2268.9, "py": 2379.3, "has_dungeon": false, "has_important": false}, {"id": 5289, "name": "SwampHut2", "category": "other", "x": -494.5, "z": -2062.3, "px": 1963.6, "py": 1696.0, "has_dungeon": false, "has_important": false}, {"id": 5290, "name": "SwampHut2", "category": "other", "x": -2488.4, "z": 4717.5, "px": 1623.3, "py": 2853.1, "has_dungeon": false, "has_important": false}, {"id": 5291, "name": "SwampHut2", "category": "other", "x": -2642.5, "z": 5065.4, "px": 1597.0, "py": 2912.5, "has_dungeon": false, "has_important": false}, {"id": 5292, "name": "SwampHut2", "category": "other", "x": -4865.8, "z": -239.9, "px": 1217.6, "py": 2007.1, "has_dungeon": false, "has_important": true}, {"id": 5293, "name": "SwampHut2", "category": "other", "x": 2240.4, "z": 455.3, "px": 2430.4, "py": 2125.7, "has_dungeon": false, "has_important": false}, {"id": 5294, "name": "SwampHut2", "category": "other", "x": 4715.3, "z": -3013.4, "px": 2852.7, "py": 1533.7, "has_dungeon": false, "has_important": false}, {"id": 5295, "name": "SwampHut2", "category": "other", "x": 4627.7, "z": -3207.2, "px": 2837.8, "py": 1500.6, "has_dungeon": false, "has_important": false}, {"id": 5296, "name": "SwampHut2", "category": "other", "x": 2901.9, "z": -692.6, "px": 2543.3, "py": 1929.8, "has_dungeon": false, "has_important": false}, {"id": 5297, "name": "SwampHut2", "category": "other", "x": -644.3, "z": -3650.0, "px": 1938.0, "py": 1425.1, "has_dungeon": false, "has_important": false}, {"id": 5298, "name": "SwampHut2", "category": "other", "x": -2233.4, "z": 4912.7, "px": 1666.8, "py": 2886.4, "has_dungeon": false, "has_important": false}, {"id": 5299, "name": "SwampHut2", "category": "other", "x": 3709.4, "z": 506.7, "px": 2681.1, "py": 2134.5, "has_dungeon": false, "has_important": false}, {"id": 5300, "name": "SwampHut2", "category": "other", "x": 2743.6, "z": -5260.8, "px": 2516.2, "py": 1150.2, "has_dungeon": false, "has_important": false}, {"id": 5301, "name": "SwampHut2", "category": "other", "x": 3534.3, "z": 1027.0, "px": 2651.2, "py": 2223.3, "has_dungeon": false, "has_important": false}, {"id": 5302, "name": "SwampHut2", "category": "other", "x": -5359.1, "z": -892.8, "px": 1133.4, "py": 1895.6, "has_dungeon": false, "has_important": false}, {"id": 5303, "name": "SwampHut2", "category": "other", "x": -2486.4, "z": -883.1, "px": 1623.7, "py": 1897.3, "has_dungeon": false, "has_important": false}, {"id": 5304, "name": "SwampHut2", "category": "other", "x": -1857.1, "z": -2878.8, "px": 1731.1, "py": 1556.7, "has_dungeon": false, "has_important": false}, {"id": 5305, "name": "SwampHut2", "category": "other", "x": -5618.5, "z": 1982.3, "px": 1089.1, "py": 2386.3, "has_dungeon": false, "has_important": false}, {"id": 5306, "name": "SwampHut2", "category": "other", "x": 376.1, "z": 2681.0, "px": 2112.2, "py": 2505.6, "has_dungeon": false, "has_important": false}, {"id": 5307, "name": "SwampHut2", "category": "other", "x": 1462.9, "z": -4882.8, "px": 2297.7, "py": 1214.7, "has_dungeon": false, "has_important": false}, {"id": 5308, "name": "SwampHut3", "category": "other", "x": -2228.4, "z": -1004.7, "px": 1667.7, "py": 1876.5, "has_dungeon": false, "has_important": false}, {"id": 5309, "name": "SwampHut3", "category": "other", "x": 2690.8, "z": -168.1, "px": 2507.2, "py": 2019.3, "has_dungeon": false, "has_important": false}, {"id": 5310, "name": "SwampHut3", "category": "other", "x": 5138.1, "z": -509.0, "px": 2924.9, "py": 1961.1, "has_dungeon": false, "has_important": false}, {"id": 5311, "name": "SwampHut3", "category": "other", "x": -2614.2, "z": 5195.0, "px": 1601.8, "py": 2934.6, "has_dungeon": false, "has_important": false}, {"id": 5312, "name": "SwampHut3", "category": "other", "x": 1268.2, "z": 2288.3, "px": 2264.4, "py": 2438.5, "has_dungeon": false, "has_important": false}, {"id": 5313, "name": "SwampHut3", "category": "other", "x": -2223.5, "z": 4184.0, "px": 1668.5, "py": 2762.1, "has_dungeon": false, "has_important": false}, {"id": 5314, "name": "SwampHut3", "category": "other", "x": 2793.8, "z": -361.8, "px": 2524.8, "py": 1986.3, "has_dungeon": false, "has_important": false}, {"id": 5315, "name": "SwampHut3", "category": "other", "x": 3511.7, "z": -2344.4, "px": 2647.3, "py": 1647.9, "has_dungeon": false, "has_important": false}, {"id": 5316, "name": "SwampHut3", "category": "other", "x": 2109.2, "z": -3194.0, "px": 2408.0, "py": 1502.9, "has_dungeon": false, "has_important": false}, {"id": 5317, "name": "SwampHut3", "category": "other", "x": -2606.4, "z": -4092.0, "px": 1603.2, "py": 1349.6, "has_dungeon": false, "has_important": true}, {"id": 5318, "name": "SwampHut3", "category": "other", "x": -2515.0, "z": -508.0, "px": 1618.8, "py": 1961.3, "has_dungeon": false, "has_important": false}, {"id": 5319, "name": "SwampHut3", "category": "other", "x": 2755.3, "z": -49.2, "px": 2518.2, "py": 2039.6, "has_dungeon": false, "has_important": false}, {"id": 5320, "name": "SwampHut3", "category": "other", "x": 2488.4, "z": 3756.4, "px": 2472.7, "py": 2689.1, "has_dungeon": false, "has_important": false}, {"id": 5321, "name": "SwampHut3", "category": "other", "x": 1539.9, "z": 2344.2, "px": 2310.8, "py": 2448.1, "has_dungeon": false, "has_important": false}, {"id": 5322, "name": "SwampHut3", "category": "other", "x": 5362.8, "z": 1607.6, "px": 2963.3, "py": 2322.4, "has_dungeon": false, "has_important": false}, {"id": 5323, "name": "SwampHut3", "category": "other", "x": -2496.9, "z": 2255.4, "px": 1621.9, "py": 2432.9, "has_dungeon": false, "has_important": false}, {"id": 5324, "name": "SwampHut3", "category": "other", "x": -2884.9, "z": 527.7, "px": 1555.6, "py": 2138.1, "has_dungeon": false, "has_important": true}, {"id": 5325, "name": "SwampHut3", "category": "other", "x": 2446.3, "z": 3919.4, "px": 2465.5, "py": 2716.9, "has_dungeon": false, "has_important": false}, {"id": 5326, "name": "SwampHut3", "category": "other", "x": 5834.0, "z": 1297.1, "px": 3043.7, "py": 2269.4, "has_dungeon": false, "has_important": false}, {"id": 5327, "name": "SwampHut3", "category": "other", "x": -2224.4, "z": -4333.8, "px": 1668.4, "py": 1308.4, "has_dungeon": false, "has_important": false}, {"id": 5328, "name": "SwampHut3", "category": "other", "x": -3395.5, "z": 3333.4, "px": 1468.5, "py": 2616.9, "has_dungeon": false, "has_important": false}, {"id": 5329, "name": "SwampHut3", "category": "other", "x": 1105.6, "z": -3786.6, "px": 2236.7, "py": 1401.8, "has_dungeon": false, "has_important": false}, {"id": 5330, "name": "SwampHut3", "category": "other", "x": 1686.7, "z": 4784.6, "px": 2335.9, "py": 2864.6, "has_dungeon": false, "has_important": false}, {"id": 5331, "name": "SwampHut3", "category": "other", "x": 3830.0, "z": 617.1, "px": 2701.7, "py": 2153.3, "has_dungeon": false, "has_important": false}, {"id": 5332, "name": "SwampHut3", "category": "other", "x": -3661.1, "z": 2619.0, "px": 1423.2, "py": 2495.0, "has_dungeon": false, "has_important": false}, {"id": 5333, "name": "SwampHut3", "category": "other", "x": 4520.3, "z": -681.2, "px": 2819.5, "py": 1931.7, "has_dungeon": false, "has_important": false}, {"id": 5334, "name": "SwampHut3", "category": "other", "x": 1468.8, "z": 1936.0, "px": 2298.7, "py": 2378.4, "has_dungeon": false, "has_important": false}, {"id": 5335, "name": "SwampHut3", "category": "other", "x": 3880.2, "z": 755.5, "px": 2710.2, "py": 2176.9, "has_dungeon": false, "has_important": false}, {"id": 5336, "name": "SwampHut3", "category": "other", "x": -4841.4, "z": -3272.9, "px": 1221.7, "py": 1489.4, "has_dungeon": false, "has_important": false}, {"id": 5337, "name": "SwampHut3", "category": "other", "x": 5244.4, "z": 1234.7, "px": 2943.0, "py": 2258.7, "has_dungeon": false, "has_important": true}, {"id": 5338, "name": "SwampHut3", "category": "other", "x": 3195.8, "z": -4240.2, "px": 2593.4, "py": 1324.3, "has_dungeon": false, "has_important": false}, {"id": 5339, "name": "SwampHut3", "category": "other", "x": 2440.1, "z": -5435.3, "px": 2464.4, "py": 1120.4, "has_dungeon": false, "has_important": false}, {"id": 5340, "name": "SwampHut3", "category": "other", "x": 1555.0, "z": -5003.5, "px": 2313.4, "py": 1194.1, "has_dungeon": false, "has_important": true}, {"id": 5341, "name": "SwampHut3", "category": "other", "x": 5385.3, "z": 1079.8, "px": 2967.1, "py": 2232.3, "has_dungeon": false, "has_important": false}, {"id": 5342, "name": "SwampHut3", "category": "other", "x": 3888.5, "z": 4491.7, "px": 2711.6, "py": 2814.6, "has_dungeon": false, "has_important": false}, {"id": 5343, "name": "SwampHut3", "category": "other", "x": -4306.8, "z": 1083.6, "px": 1313.0, "py": 2232.9, "has_dungeon": false, "has_important": false}, {"id": 5344, "name": "SwampHut3", "category": "other", "x": -2494.3, "z": -1042.0, "px": 1622.3, "py": 1870.2, "has_dungeon": false, "has_important": false}, {"id": 5345, "name": "SwampHut3", "category": "other", "x": -3714.6, "z": -4356.1, "px": 1414.0, "py": 1304.6, "has_dungeon": false, "has_important": false}, {"id": 5346, "name": "SwampHut3", "category": "other", "x": 3403.7, "z": -4586.4, "px": 2628.9, "py": 1265.3, "has_dungeon": false, "has_important": false}, {"id": 5347, "name": "SwampHut3", "category": "other", "x": -4486.5, "z": 1285.2, "px": 1282.3, "py": 2267.3, "has_dungeon": false, "has_important": false}, {"id": 5348, "name": "SwampHut3", "category": "other", "x": -2581.6, "z": -5374.0, "px": 1607.4, "py": 1130.8, "has_dungeon": false, "has_important": false}, {"id": 5349, "name": "SwampHut3", "category": "other", "x": -2858.7, "z": -877.7, "px": 1560.1, "py": 1898.2, "has_dungeon": false, "has_important": false}, {"id": 5350, "name": "SwampHut3", "category": "other", "x": -4356.3, "z": 3589.8, "px": 1304.5, "py": 2660.7, "has_dungeon": false, "has_important": false}, {"id": 5351, "name": "SwampHut3", "category": "other", "x": -1071.2, "z": -5508.9, "px": 1865.2, "py": 1107.8, "has_dungeon": false, "has_important": false}, {"id": 5352, "name": "SwampHut3", "category": "other", "x": -2168.9, "z": 4685.2, "px": 1677.8, "py": 2847.6, "has_dungeon": false, "has_important": false}, {"id": 5353, "name": "SwampHut3", "category": "other", "x": 631.4, "z": 2708.9, "px": 2155.8, "py": 2510.3, "has_dungeon": false, "has_important": false}, {"id": 5354, "name": "SwampHut3", "category": "other", "x": 3564.0, "z": 1206.5, "px": 2656.3, "py": 2253.9, "has_dungeon": false, "has_important": false}, {"id": 5355, "name": "SwampHut3", "category": "other", "x": 3516.3, "z": -4359.4, "px": 2648.1, "py": 1304.0, "has_dungeon": false, "has_important": false}, {"id": 5356, "name": "SwampHut3", "category": "other", "x": -2345.7, "z": -4015.6, "px": 1647.7, "py": 1362.7, "has_dungeon": false, "has_important": false}, {"id": 5357, "name": "SwampHut3", "category": "other", "x": 2666.5, "z": -505.2, "px": 2503.1, "py": 1961.8, "has_dungeon": false, "has_important": false}, {"id": 5358, "name": "SwampHut4", "category": "other", "x": -2442.6, "z": -1398.0, "px": 1631.1, "py": 1809.4, "has_dungeon": false, "has_important": true}, {"id": 5359, "name": "SwampHut4", "category": "other", "x": 0.4, "z": 2508.9, "px": 2048.1, "py": 2476.2, "has_dungeon": false, "has_important": true}, {"id": 5360, "name": "SwampHut4", "category": "other", "x": 5574.9, "z": 1473.8, "px": 2999.4, "py": 2299.5, "has_dungeon": false, "has_important": true}, {"id": 5361, "name": "SwampHut4", "category": "other", "x": 1988.4, "z": 4288.1, "px": 2387.4, "py": 2779.8, "has_dungeon": false, "has_important": true}, {"id": 5362, "name": "SwampHut4", "category": "other", "x": -2550.4, "z": 4925.3, "px": 1612.7, "py": 2888.6, "has_dungeon": false, "has_important": true}, {"id": 5363, "name": "SwampHut4", "category": "other", "x": -3479.7, "z": 3119.6, "px": 1454.1, "py": 2580.4, "has_dungeon": false, "has_important": true}, {"id": 5364, "name": "SwampHut4", "category": "other", "x": 2261.3, "z": -5297.6, "px": 2433.9, "py": 1143.9, "has_dungeon": false, "has_important": true}, {"id": 5365, "name": "SwampHut4", "category": "other", "x": -4244.2, "z": 1209.3, "px": 1323.7, "py": 2254.4, "has_dungeon": false, "has_important": false}, {"id": 5366, "name": "SwampHut4", "category": "other", "x": 3374.9, "z": 554.7, "px": 2624.0, "py": 2142.7, "has_dungeon": false, "has_important": true}, {"id": 5367, "name": "SwampHut4", "category": "other", "x": -4552.4, "z": 1478.9, "px": 1271.1, "py": 2300.4, "has_dungeon": false, "has_important": true}, {"id": 5368, "name": "SwampHut4", "category": "other", "x": -5013.9, "z": 1521.4, "px": 1192.3, "py": 2307.7, "has_dungeon": false, "has_important": true}, {"id": 5369, "name": "SwampHut4", "category": "other", "x": 5736.7, "z": 1712.4, "px": 3027.1, "py": 2340.2, "has_dungeon": false, "has_important": true}, {"id": 5370, "name": "SwampHut4", "category": "other", "x": -5772.1, "z": -628.9, "px": 1062.9, "py": 1940.7, "has_dungeon": false, "has_important": true}, {"id": 5371, "name": "SwampHut4", "category": "other", "x": -2555.7, "z": -1723.5, "px": 1611.8, "py": 1753.9, "has_dungeon": false, "has_important": true}, {"id": 5372, "name": "SwampHut4", "category": "other", "x": 2447.9, "z": 238.8, "px": 2465.8, "py": 2088.8, "has_dungeon": false, "has_important": true}, {"id": 5373, "name": "SwampHut4", "category": "other", "x": -961.5, "z": -3884.1, "px": 1883.9, "py": 1385.1, "has_dungeon": false, "has_important": true}, {"id": 5374, "name": "SwampHut4", "category": "other", "x": -5827.8, "z": -506.9, "px": 1053.4, "py": 1961.5, "has_dungeon": false, "has_important": true}, {"id": 5375, "name": "SwampHut4", "category": "other", "x": -2689.3, "z": 1585.5, "px": 1589.0, "py": 2318.6, "has_dungeon": false, "has_important": false}, {"id": 5376, "name": "SwampHut4", "category": "other", "x": 2965.2, "z": 3665.6, "px": 2554.1, "py": 2673.6, "has_dungeon": false, "has_important": true}, {"id": 5377, "name": "SwampHut4", "category": "other", "x": -3140.2, "z": 645.7, "px": 1512.1, "py": 2158.2, "has_dungeon": false, "has_important": false}, {"id": 5378, "name": "SwampHut4", "category": "other", "x": 2307.5, "z": -4204.9, "px": 2441.8, "py": 1330.4, "has_dungeon": false, "has_important": false}, {"id": 5379, "name": "SwampHut4", "category": "other", "x": 2485.7, "z": -3389.8, "px": 2472.2, "py": 1469.5, "has_dungeon": false, "has_important": true}, {"id": 5380, "name": "SwampHut4", "category": "other", "x": 643.5, "z": -2185.1, "px": 2157.8, "py": 1675.1, "has_dungeon": false, "has_important": true}, {"id": 5381, "name": "SwampHut4", "category": "other", "x": -619.7, "z": -4157.1, "px": 1942.2, "py": 1338.5, "has_dungeon": false, "has_important": false}, {"id": 5382, "name": "SwampHut4", "category": "other", "x": -3654.3, "z": -4207.8, "px": 1424.3, "py": 1329.9, "has_dungeon": false, "has_important": true}, {"id": 5383, "name": "SwampHut4", "category": "other", "x": -5329.9, "z": -1901.2, "px": 1138.4, "py": 1723.5, "has_dungeon": false, "has_important": true}, {"id": 5384, "name": "SwampHut4", "category": "other", "x": 2286.4, "z": -5428.1, "px": 2438.2, "py": 1121.6, "has_dungeon": false, "has_important": true}, {"id": 5385, "name": "SwampHut4", "category": "other", "x": 2364.9, "z": 4500.7, "px": 2451.6, "py": 2816.1, "has_dungeon": false, "has_important": true}, {"id": 5386, "name": "SwampHut4", "category": "other", "x": -2448.9, "z": -5062.4, "px": 1630.1, "py": 1184.0, "has_dungeon": false, "has_important": true}, {"id": 5387, "name": "SwampHut4", "category": "other", "x": 2193.0, "z": -1034.9, "px": 2422.3, "py": 1871.4, "has_dungeon": false, "has_important": true}, {"id": 5388, "name": "SwampHut4", "category": "other", "x": -3520.9, "z": 2635.1, "px": 1447.1, "py": 2497.7, "has_dungeon": false, "has_important": true}, {"id": 5389, "name": "SwampHut4", "category": "other", "x": 4668.1, "z": -531.8, "px": 2844.7, "py": 1957.2, "has_dungeon": false, "has_important": true}, {"id": 5390, "name": "SwampHut4", "category": "other", "x": 2381.3, "z": -848.2, "px": 2454.4, "py": 1903.2, "has_dungeon": false, "has_important": true}, {"id": 5391, "name": "SwampHut4", "category": "other", "x": 2505.8, "z": -5227.1, "px": 2475.7, "py": 1155.9, "has_dungeon": false, "has_important": true}, {"id": 5392, "name": "SwampHut4", "category": "other", "x": 4500.8, "z": -3269.3, "px": 2816.1, "py": 1490.0, "has_dungeon": false, "has_important": true}, {"id": 5393, "name": "SwampHut4", "category": "other", "x": 2769.9, "z": 3782.5, "px": 2520.7, "py": 2693.5, "has_dungeon": false, "has_important": true}, {"id": 5394, "name": "SwampHut4", "category": "other", "x": -2134.6, "z": 4310.1, "px": 1683.7, "py": 2783.6, "has_dungeon": false, "has_important": true}, {"id": 5395, "name": "SwampHut4", "category": "other", "x": -3516.6, "z": 3270.8, "px": 1447.8, "py": 2606.2, "has_dungeon": false, "has_important": true}, {"id": 5396, "name": "SwampHut4", "category": "other", "x": 3221.7, "z": -4463.7, "px": 2597.8, "py": 1286.2, "has_dungeon": false, "has_important": true}, {"id": 5397, "name": "SwampHut4", "category": "other", "x": 2685.3, "z": 3972.2, "px": 2506.3, "py": 2725.9, "has_dungeon": false, "has_important": true}, {"id": 5398, "name": "SwampHut4", "category": "other", "x": 3343.6, "z": 4880.5, "px": 2618.6, "py": 2880.9, "has_dungeon": false, "has_important": true}, {"id": 5399, "name": "SwampHut4", "category": "other", "x": 2558.4, "z": 3591.3, "px": 2484.6, "py": 2660.9, "has_dungeon": false, "has_important": true}, {"id": 5400, "name": "SwampHut4", "category": "other", "x": -3710.2, "z": -3977.7, "px": 1414.8, "py": 1369.1, "has_dungeon": false, "has_important": true}, {"id": 5401, "name": "SwampHut4", "category": "other", "x": -4345.2, "z": 3771.6, "px": 1306.4, "py": 2691.7, "has_dungeon": false, "has_important": true}, {"id": 5402, "name": "SwampHut4", "category": "other", "x": 2216.4, "z": 623.7, "px": 2426.3, "py": 2154.4, "has_dungeon": false, "has_important": true}, {"id": 5403, "name": "SwampHut4", "category": "other", "x": -2431.8, "z": -4225.3, "px": 1633.0, "py": 1326.9, "has_dungeon": false, "has_important": false}, {"id": 5404, "name": "SwampHut4", "category": "other", "x": -5416.1, "z": -1787.9, "px": 1123.7, "py": 1742.9, "has_dungeon": false, "has_important": true}, {"id": 5405, "name": "SwampHut4", "category": "other", "x": -2623.9, "z": -829.4, "px": 1600.2, "py": 1906.4, "has_dungeon": false, "has_important": true}, {"id": 5406, "name": "SwampHut4", "category": "other", "x": -134.1, "z": 2865.5, "px": 2025.1, "py": 2537.0, "has_dungeon": false, "has_important": true}, {"id": 5407, "name": "SwampHut4", "category": "other", "x": 2485.3, "z": -186.9, "px": 2472.2, "py": 2016.1, "has_dungeon": false, "has_important": true}, {"id": 5408, "name": "SwampHut5", "category": "other", "x": -4611.2, "z": 1003.2, "px": 1261.0, "py": 2219.2, "has_dungeon": false, "has_important": false}, {"id": 5409, "name": "SwampHut5", "category": "other", "x": -5803.6, "z": -1092.4, "px": 1057.5, "py": 1861.6, "has_dungeon": false, "has_important": false}, {"id": 5410, "name": "SwampHut5", "category": "other", "x": 2812.1, "z": 3510.8, "px": 2527.9, "py": 2647.2, "has_dungeon": false, "has_important": false}, {"id": 5411, "name": "SwampHut5", "category": "other", "x": 4169.0, "z": 2193.7, "px": 2759.5, "py": 2422.4, "has_dungeon": false, "has_important": false}, {"id": 5412, "name": "SwampHut5", "category": "other", "x": -5235.7, "z": 1285.8, "px": 1154.4, "py": 2267.4, "has_dungeon": false, "has_important": false}, {"id": 5413, "name": "SwampHut5", "category": "other", "x": 2301.3, "z": -1216.1, "px": 2440.8, "py": 1840.5, "has_dungeon": false, "has_important": false}, {"id": 5414, "name": "SwampHut5", "category": "other", "x": 4783.9, "z": -912.4, "px": 2864.5, "py": 1892.3, "has_dungeon": false, "has_important": false}, {"id": 5415, "name": "SwampHut5", "category": "other", "x": 973.2, "z": -3631.8, "px": 2214.1, "py": 1428.2, "has_dungeon": false, "has_important": false}, {"id": 5416, "name": "SwampHut5", "category": "other", "x": -3773.0, "z": 2740.5, "px": 1404.1, "py": 2515.7, "has_dungeon": false, "has_important": false}, {"id": 5417, "name": "SwampHut5", "category": "other", "x": 1619.8, "z": 4232.4, "px": 2324.4, "py": 2770.3, "has_dungeon": false, "has_important": false}, {"id": 5418, "name": "SwampHut5", "category": "other", "x": -2162.2, "z": -4216.4, "px": 1679.0, "py": 1328.4, "has_dungeon": false, "has_important": true}, {"id": 5419, "name": "SwampHut5", "category": "other", "x": 2311.8, "z": 4080.9, "px": 2442.5, "py": 2744.5, "has_dungeon": false, "has_important": false}, {"id": 5420, "name": "SwampHut5", "category": "other", "x": 178.6, "z": 4350.7, "px": 2078.5, "py": 2790.5, "has_dungeon": false, "has_important": false}, {"id": 5421, "name": "SwampHut5", "category": "other", "x": 2419.8, "z": 374.8, "px": 2461.0, "py": 2112.0, "has_dungeon": false, "has_important": false}, {"id": 5422, "name": "SwampHut5", "category": "other", "x": -1106.2, "z": -3454.5, "px": 1859.2, "py": 1458.4, "has_dungeon": false, "has_important": false}, {"id": 5423, "name": "SwampHut5", "category": "other", "x": 5111.1, "z": -323.9, "px": 2920.3, "py": 1992.7, "has_dungeon": false, "has_important": false}, {"id": 5424, "name": "SwampHut5", "category": "other", "x": -5511.6, "z": 1801.7, "px": 1107.4, "py": 2355.5, "has_dungeon": false, "has_important": false}, {"id": 5425, "name": "SwampHut5", "category": "other", "x": 1548.6, "z": -5179.0, "px": 2312.3, "py": 1164.1, "has_dungeon": false, "has_important": false}, {"id": 5426, "name": "SwampHut5", "category": "other", "x": 1267.3, "z": 4371.2, "px": 2264.3, "py": 2794.0, "has_dungeon": false, "has_important": false}, {"id": 5427, "name": "SwampHut5", "category": "other", "x": -4880.3, "z": -597.6, "px": 1215.1, "py": 1946.0, "has_dungeon": false, "has_important": false}, {"id": 5428, "name": "SwampHut5", "category": "other", "x": 971.9, "z": -3797.9, "px": 2213.9, "py": 1399.8, "has_dungeon": false, "has_important": false}, {"id": 5429, "name": "SwampHut5", "category": "other", "x": 1134.7, "z": -3539.3, "px": 2241.7, "py": 1444.0, "has_dungeon": false, "has_important": false}, {"id": 5430, "name": "SwampHut5", "category": "other", "x": 2556.7, "z": -5371.4, "px": 2484.3, "py": 1131.3, "has_dungeon": false, "has_important": false}, {"id": 5431, "name": "SwampHut5", "category": "other", "x": 3602.5, "z": 814.4, "px": 2662.8, "py": 2187.0, "has_dungeon": false, "has_important": false}, {"id": 5432, "name": "SwampHut5", "category": "other", "x": -458.5, "z": -3593.0, "px": 1969.7, "py": 1434.8, "has_dungeon": false, "has_important": false}, {"id": 5433, "name": "SwampWell1", "category": "other", "x": 2549.9, "z": -939.1, "px": 2483.2, "py": 1887.7, "has_dungeon": false, "has_important": true}, {"id": 5434, "name": "SwampWell1", "category": "other", "x": -1101.7, "z": 5232.4, "px": 1860.0, "py": 2941.0, "has_dungeon": false, "has_important": false}, {"id": 5435, "name": "SwampWell1", "category": "other", "x": -819.8, "z": -3916.0, "px": 1908.1, "py": 1379.7, "has_dungeon": false, "has_important": true}, {"id": 5436, "name": "SwampWell1", "category": "other", "x": -5248.0, "z": 1840.3, "px": 1152.3, "py": 2362.1, "has_dungeon": false, "has_important": true}, {"id": 5437, "name": "SwampWell1", "category": "other", "x": 1546.8, "z": 4492.8, "px": 2312.0, "py": 2814.8, "has_dungeon": false, "has_important": false}, {"id": 5438, "name": "SwampWell1", "category": "other", "x": 5117.2, "z": -111.9, "px": 2921.3, "py": 2028.9, "has_dungeon": false, "has_important": true}, {"id": 5439, "name": "SwampWell1", "category": "other", "x": 3582.0, "z": 949.2, "px": 2659.3, "py": 2210.0, "has_dungeon": false, "has_important": false}, {"id": 5440, "name": "SwampWell1", "category": "other", "x": -3591.1, "z": -4021.6, "px": 1435.1, "py": 1361.6, "has_dungeon": false, "has_important": true}, {"id": 5441, "name": "SwampWell1", "category": "other", "x": -5316.4, "z": -724.2, "px": 1140.7, "py": 1924.4, "has_dungeon": false, "has_important": true}, {"id": 5442, "name": "SwampWell1", "category": "other", "x": 3515.1, "z": -2240.8, "px": 2647.9, "py": 1665.6, "has_dungeon": false, "has_important": true}, {"id": 5443, "name": "SwampWell1", "category": "other", "x": -2859.1, "z": -1002.4, "px": 1560.0, "py": 1876.9, "has_dungeon": false, "has_important": false}, {"id": 5444, "name": "SwampWell1", "category": "other", "x": 1777.7, "z": 1409.3, "px": 2351.4, "py": 2288.5, "has_dungeon": false, "has_important": true}, {"id": 5445, "name": "SwampWell1", "category": "other", "x": -368.3, "z": 2697.2, "px": 1985.1, "py": 2508.3, "has_dungeon": false, "has_important": true}, {"id": 5446, "name": "SwampWell1", "category": "other", "x": 1089.5, "z": 2357.5, "px": 2233.9, "py": 2450.3, "has_dungeon": false, "has_important": true}, {"id": 5447, "name": "SwampWell1", "category": "other", "x": -4164.5, "z": 1264.1, "px": 1337.3, "py": 2263.7, "has_dungeon": false, "has_important": false}, {"id": 5448, "name": "SwampWell1", "category": "other", "x": -2564.5, "z": -5292.3, "px": 1610.3, "py": 1144.8, "has_dungeon": false, "has_important": false}, {"id": 5449, "name": "SwampWell1", "category": "other", "x": 3860.5, "z": 4277.4, "px": 2706.9, "py": 2778.0, "has_dungeon": false, "has_important": true}, {"id": 5450, "name": "SwampWell1", "category": "other", "x": -5263.0, "z": -1774.4, "px": 1149.8, "py": 1745.2, "has_dungeon": false, "has_important": true}, {"id": 5451, "name": "SwampWell1", "category": "other", "x": -3601.9, "z": 2643.7, "px": 1433.3, "py": 2499.2, "has_dungeon": false, "has_important": true}, {"id": 5452, "name": "SwampWell1", "category": "other", "x": -4117.8, "z": 3646.4, "px": 1345.2, "py": 2670.3, "has_dungeon": false, "has_important": false}, {"id": 5453, "name": "SwampWell1", "category": "other", "x": -2228.5, "z": -4272.4, "px": 1667.7, "py": 1318.8, "has_dungeon": false, "has_important": false}, {"id": 5454, "name": "SwampWell1", "category": "other", "x": 5488.6, "z": 1088.0, "px": 2984.7, "py": 2233.7, "has_dungeon": false, "has_important": true}, {"id": 5455, "name": "SwampWell1", "category": "other", "x": 3437.2, "z": -4661.0, "px": 2634.6, "py": 1252.5, "has_dungeon": false, "has_important": true}, {"id": 5456, "name": "SwampWell1", "category": "other", "x": 2612.8, "z": -5303.0, "px": 2493.9, "py": 1143.0, "has_dungeon": false, "has_important": false}, {"id": 5457, "name": "SwampWell1", "category": "other", "x": -4044.0, "z": 198.1, "px": 1357.8, "py": 2081.8, "has_dungeon": false, "has_important": true}, {"id": 10363, "name": "VoltureNest", "category": "other", "x": -178.8, "z": -9678.8, "px": 2017.5, "py": 396.2, "has_dungeon": false, "has_important": true}, {"id": 10364, "name": "VoltureNest", "category": "other", "x": -3726.4, "z": -8563.2, "px": 1412.0, "py": 586.5, "has_dungeon": false, "has_important": true}, {"id": 10365, "name": "VoltureNest", "category": "other", "x": -2063.5, "z": -8460.3, "px": 1695.8, "py": 604.1, "has_dungeon": false, "has_important": true}, {"id": 10366, "name": "VoltureNest", "category": "other", "x": -331.5, "z": -8945.6, "px": 1991.4, "py": 521.3, "has_dungeon": false, "has_important": true}, {"id": 10367, "name": "VoltureNest", "category": "other", "x": 572.8, "z": -9657.4, "px": 2145.8, "py": 399.8, "has_dungeon": false, "has_important": true}, {"id": 10368, "name": "VoltureNest", "category": "other", "x": -5427.0, "z": -7869.7, "px": 1121.8, "py": 704.9, "has_dungeon": false, "has_important": true}, {"id": 10369, "name": "VoltureNest", "category": "other", "x": -264.5, "z": -9614.6, "px": 2002.9, "py": 407.1, "has_dungeon": false, "has_important": true}, {"id": 10370, "name": "VoltureNest", "category": "other", "x": -5363.1, "z": -7603.3, "px": 1132.7, "py": 750.4, "has_dungeon": false, "has_important": true}, {"id": 10371, "name": "VoltureNest", "category": "other", "x": 962.4, "z": -9403.4, "px": 2212.2, "py": 443.2, "has_dungeon": false, "has_important": true}, {"id": 10372, "name": "VoltureNest", "category": "other", "x": -1151.4, "z": -9010.3, "px": 1851.5, "py": 510.2, "has_dungeon": false, "has_important": true}, {"id": 10373, "name": "VoltureNest", "category": "other", "x": -4978.9, "z": -8394.5, "px": 1198.3, "py": 615.3, "has_dungeon": false, "has_important": true}, {"id": 10374, "name": "VoltureNest", "category": "other", "x": -3765.5, "z": -9097.9, "px": 1405.4, "py": 495.3, "has_dungeon": false, "has_important": true}, {"id": 10375, "name": "VoltureNest", "category": "other", "x": -3715.5, "z": -8186.1, "px": 1413.9, "py": 650.9, "has_dungeon": false, "has_important": true}, {"id": 10376, "name": "VoltureNest", "category": "other", "x": 312.0, "z": -9487.9, "px": 2101.2, "py": 428.7, "has_dungeon": false, "has_important": true}, {"id": 10377, "name": "VoltureNest", "category": "other", "x": -4428.4, "z": -8077.1, "px": 1292.2, "py": 669.5, "has_dungeon": false, "has_important": true}, {"id": 10378, "name": "VoltureNest", "category": "other", "x": 2038.7, "z": -9394.2, "px": 2395.9, "py": 444.7, "has_dungeon": false, "has_important": true}, {"id": 10379, "name": "VoltureNest", "category": "other", "x": -15.0, "z": -9035.2, "px": 2045.4, "py": 506.0, "has_dungeon": false, "has_important": true}, {"id": 10380, "name": "VoltureNest", "category": "other", "x": -1932.3, "z": -9010.9, "px": 1718.2, "py": 510.1, "has_dungeon": false, "has_important": true}, {"id": 10381, "name": "VoltureNest", "category": "other", "x": -896.0, "z": -9331.5, "px": 1895.1, "py": 455.4, "has_dungeon": false, "has_important": true}, {"id": 10382, "name": "VoltureNest", "category": "other", "x": 3701.1, "z": -8573.0, "px": 2679.7, "py": 584.9, "has_dungeon": false, "has_important": true}, {"id": 10383, "name": "VoltureNest", "category": "other", "x": -4239.0, "z": -8143.4, "px": 1324.5, "py": 658.2, "has_dungeon": false, "has_important": true}, {"id": 10384, "name": "VoltureNest", "category": "other", "x": 137.7, "z": -8588.7, "px": 2071.5, "py": 582.2, "has_dungeon": false, "has_important": true}, {"id": 10385, "name": "VoltureNest", "category": "other", "x": 2689.8, "z": -9009.8, "px": 2507.1, "py": 510.3, "has_dungeon": false, "has_important": true}, {"id": 10386, "name": "VoltureNest", "category": "other", "x": -390.4, "z": -9539.1, "px": 1981.4, "py": 420.0, "has_dungeon": false, "has_important": true}, {"id": 10387, "name": "VoltureNest", "category": "other", "x": 399.7, "z": -9723.1, "px": 2116.2, "py": 388.6, "has_dungeon": false, "has_important": true}, {"id": 10388, "name": "VoltureNest", "category": "other", "x": -1227.5, "z": -9805.4, "px": 1838.5, "py": 374.5, "has_dungeon": false, "has_important": true}, {"id": 10389, "name": "VoltureNest", "category": "other", "x": -2312.8, "z": -8500.5, "px": 1653.3, "py": 597.2, "has_dungeon": false, "has_important": true}, {"id": 10390, "name": "VoltureNest", "category": "other", "x": -4866.9, "z": -8375.3, "px": 1217.4, "py": 618.6, "has_dungeon": false, "has_important": true}, {"id": 10391, "name": "VoltureNest", "category": "other", "x": 2182.1, "z": -9409.7, "px": 2420.4, "py": 442.1, "has_dungeon": false, "has_important": true}, {"id": 10392, "name": "VoltureNest", "category": "other", "x": -3720.1, "z": -8753.1, "px": 1413.1, "py": 554.1, "has_dungeon": false, "has_important": true}, {"id": 10393, "name": "VoltureNest", "category": "other", "x": -5235.7, "z": -7989.9, "px": 1154.4, "py": 684.4, "has_dungeon": false, "has_important": true}, {"id": 10394, "name": "VoltureNest", "category": "other", "x": 2487.7, "z": -8949.6, "px": 2472.6, "py": 520.6, "has_dungeon": false, "has_important": true}, {"id": 10395, "name": "VoltureNest", "category": "other", "x": 3189.0, "z": -9417.1, "px": 2592.3, "py": 440.8, "has_dungeon": false, "has_important": true}, {"id": 10396, "name": "VoltureNest", "category": "other", "x": -2992.7, "z": -9088.6, "px": 1537.2, "py": 496.9, "has_dungeon": false, "has_important": true}, {"id": 10397, "name": "VoltureNest", "category": "other", "x": -714.9, "z": -8821.4, "px": 1926.0, "py": 542.5, "has_dungeon": false, "has_important": true}, {"id": 10398, "name": "VoltureNest", "category": "other", "x": 576.9, "z": -9851.4, "px": 2146.5, "py": 366.7, "has_dungeon": false, "has_important": true}, {"id": 10399, "name": "VoltureNest", "category": "other", "x": 1664.3, "z": -9478.6, "px": 2332.0, "py": 430.3, "has_dungeon": false, "has_important": true}, {"id": 10400, "name": "VoltureNest", "category": "other", "x": 1676.6, "z": -9329.5, "px": 2334.1, "py": 455.8, "has_dungeon": false, "has_important": true}, {"id": 10401, "name": "VoltureNest", "category": "other", "x": 2306.0, "z": -8389.1, "px": 2441.6, "py": 616.3, "has_dungeon": false, "has_important": true}, {"id": 10402, "name": "VoltureNest", "category": "other", "x": 1088.3, "z": -9472.8, "px": 2233.7, "py": 431.3, "has_dungeon": false, "has_important": true}, {"id": 10403, "name": "VoltureNest", "category": "other", "x": 189.0, "z": -9527.4, "px": 2080.3, "py": 422.0, "has_dungeon": false, "has_important": true}, {"id": 10404, "name": "VoltureNest", "category": "other", "x": -3454.3, "z": -8498.3, "px": 1458.5, "py": 597.6, "has_dungeon": false, "has_important": true}, {"id": 10405, "name": "VoltureNest", "category": "other", "x": 249.8, "z": -8571.0, "px": 2090.6, "py": 585.2, "has_dungeon": false, "has_important": true}, {"id": 10406, "name": "VoltureNest", "category": "other", "x": 3595.5, "z": -8307.0, "px": 2661.6, "py": 630.3, "has_dungeon": false, "has_important": true}, {"id": 10407, "name": "VoltureNest", "category": "other", "x": -2227.1, "z": -8975.8, "px": 1667.9, "py": 516.1, "has_dungeon": false, "has_important": true}, {"id": 10408, "name": "VoltureNest", "category": "other", "x": 3260.2, "z": -8566.6, "px": 2604.4, "py": 586.0, "has_dungeon": false, "has_important": true}, {"id": 10409, "name": "VoltureNest", "category": "other", "x": -1861.2, "z": -9164.1, "px": 1730.4, "py": 484.0, "has_dungeon": false, "has_important": true}, {"id": 10410, "name": "VoltureNest", "category": "other", "x": -3518.8, "z": -8713.9, "px": 1447.5, "py": 560.8, "has_dungeon": false, "has_important": true}, {"id": 10411, "name": "VoltureNest", "category": "other", "x": 887.4, "z": -8764.2, "px": 2199.4, "py": 552.2, "has_dungeon": false, "has_important": true}, {"id": 10412, "name": "VoltureNest", "category": "other", "x": 1017.0, "z": -8768.9, "px": 2221.6, "py": 551.4, "has_dungeon": false, "has_important": true}, {"id": 10413, "name": "VoltureNest", "category": "other", "x": -1486.2, "z": -9662.4, "px": 1794.4, "py": 399.0, "has_dungeon": false, "has_important": true}, {"id": 10414, "name": "VoltureNest", "category": "other", "x": 2765.4, "z": -9397.3, "px": 2520.0, "py": 444.2, "has_dungeon": false, "has_important": true}, {"id": 10415, "name": "VoltureNest", "category": "other", "x": -4303.0, "z": -8258.8, "px": 1313.6, "py": 638.5, "has_dungeon": false, "has_important": true}, {"id": 10416, "name": "VoltureNest", "category": "other", "x": 3462.5, "z": -8376.2, "px": 2638.9, "py": 618.5, "has_dungeon": false, "has_important": true}, {"id": 10417, "name": "VoltureNest", "category": "other", "x": -2802.5, "z": -8379.1, "px": 1569.7, "py": 618.0, "has_dungeon": false, "has_important": true}, {"id": 10418, "name": "VoltureNest", "category": "other", "x": 5321.0, "z": -7875.7, "px": 2956.1, "py": 703.9, "has_dungeon": false, "has_important": true}, {"id": 10419, "name": "VoltureNest", "category": "other", "x": -3782.3, "z": -9217.5, "px": 1402.5, "py": 474.9, "has_dungeon": false, "has_important": true}, {"id": 10420, "name": "VoltureNest", "category": "other", "x": -70.1, "z": -8700.7, "px": 2036.0, "py": 563.1, "has_dungeon": false, "has_important": true}, {"id": 10421, "name": "VoltureNest", "category": "other", "x": 2039.7, "z": -9656.1, "px": 2396.1, "py": 400.0, "has_dungeon": false, "has_important": true}, {"id": 10422, "name": "VoltureNest", "category": "other", "x": -885.8, "z": -9905.3, "px": 1896.8, "py": 357.5, "has_dungeon": false, "has_important": true}, {"id": 10423, "name": "VoltureNest", "category": "other", "x": 563.6, "z": -8575.6, "px": 2144.2, "py": 584.4, "has_dungeon": false, "has_important": true}, {"id": 10424, "name": "VoltureNest", "category": "other", "x": 1987.6, "z": -9480.5, "px": 2387.2, "py": 430.0, "has_dungeon": false, "has_important": true}, {"id": 10425, "name": "VoltureNest", "category": "other", "x": -5061.7, "z": -7682.4, "px": 1184.1, "py": 736.9, "has_dungeon": false, "has_important": true}, {"id": 10426, "name": "VoltureNest", "category": "other", "x": -432.9, "z": -8636.1, "px": 1974.1, "py": 574.1, "has_dungeon": false, "has_important": true}, {"id": 10427, "name": "VoltureNest", "category": "other", "x": -3975.9, "z": -8756.2, "px": 1369.4, "py": 553.6, "has_dungeon": false, "has_important": true}, {"id": 10428, "name": "VoltureNest", "category": "other", "x": -1932.8, "z": -8893.4, "px": 1718.1, "py": 530.2, "has_dungeon": false, "has_important": true}, {"id": 10429, "name": "VoltureNest", "category": "other", "x": -2437.7, "z": -8388.7, "px": 1632.0, "py": 616.3, "has_dungeon": false, "has_important": true}, {"id": 10430, "name": "VoltureNest", "category": "other", "x": -4019.5, "z": -8881.7, "px": 1362.0, "py": 532.2, "has_dungeon": false, "has_important": true}, {"id": 10431, "name": "VoltureNest", "category": "other", "x": -6335.5, "z": -7628.0, "px": 966.7, "py": 746.2, "has_dungeon": false, "has_important": true}, {"id": 10432, "name": "VoltureNest", "category": "other", "x": -3774.0, "z": -8316.7, "px": 1403.9, "py": 628.6, "has_dungeon": false, "has_important": true}, {"id": 10433, "name": "VoltureNest", "category": "other", "x": -3760.1, "z": -8901.8, "px": 1406.3, "py": 528.8, "has_dungeon": false, "has_important": true}, {"id": 10434, "name": "VoltureNest", "category": "other", "x": -191.7, "z": -9855.6, "px": 2015.3, "py": 366.0, "has_dungeon": false, "has_important": true}, {"id": 10435, "name": "VoltureNest", "category": "other", "x": -2245.3, "z": -9082.9, "px": 1664.8, "py": 497.9, "has_dungeon": false, "has_important": true}, {"id": 10436, "name": "VoltureNest", "category": "other", "x": -3636.7, "z": -9165.9, "px": 1427.3, "py": 483.7, "has_dungeon": false, "has_important": true}, {"id": 10437, "name": "VoltureNest", "category": "other", "x": 143.4, "z": -9335.6, "px": 2072.5, "py": 454.7, "has_dungeon": false, "has_important": true}, {"id": 10438, "name": "VoltureNest", "category": "other", "x": -2370.6, "z": -8899.1, "px": 1643.4, "py": 529.2, "has_dungeon": false, "has_important": true}, {"id": 10439, "name": "VoltureNest", "category": "other", "x": -3913.0, "z": -8241.8, "px": 1380.2, "py": 641.4, "has_dungeon": false, "has_important": true}, {"id": 10440, "name": "VoltureNest", "category": "other", "x": 2575.3, "z": -9358.6, "px": 2487.5, "py": 450.8, "has_dungeon": false, "has_important": true}, {"id": 10441, "name": "VoltureNest", "category": "other", "x": 3318.3, "z": -8311.0, "px": 2614.3, "py": 629.6, "has_dungeon": false, "has_important": true}, {"id": 10442, "name": "VoltureNest", "category": "other", "x": 1329.5, "z": -9103.8, "px": 2274.9, "py": 494.3, "has_dungeon": false, "has_important": true}, {"id": 10443, "name": "VoltureNest", "category": "other", "x": 2166.8, "z": -8451.4, "px": 2417.8, "py": 605.6, "has_dungeon": false, "has_important": true}, {"id": 10444, "name": "VoltureNest", "category": "other", "x": 3446.6, "z": -8053.2, "px": 2636.2, "py": 673.6, "has_dungeon": false, "has_important": true}, {"id": 10445, "name": "VoltureNest", "category": "other", "x": 3342.8, "z": -8636.9, "px": 2618.5, "py": 574.0, "has_dungeon": false, "has_important": true}, {"id": 10446, "name": "VoltureNest", "category": "other", "x": -2371.4, "z": -8716.1, "px": 1643.3, "py": 560.5, "has_dungeon": false, "has_important": true}, {"id": 10447, "name": "VoltureNest", "category": "other", "x": -4429.8, "z": -7933.1, "px": 1292.0, "py": 694.1, "has_dungeon": false, "has_important": true}, {"id": 10448, "name": "VoltureNest", "category": "other", "x": -635.2, "z": -8646.3, "px": 1939.6, "py": 572.4, "has_dungeon": false, "has_important": true}, {"id": 10449, "name": "VoltureNest", "category": "other", "x": 4083.4, "z": -8968.4, "px": 2744.9, "py": 517.4, "has_dungeon": false, "has_important": true}, {"id": 10450, "name": "VoltureNest", "category": "other", "x": -2251.6, "z": -8376.6, "px": 1663.7, "py": 618.4, "has_dungeon": false, "has_important": true}, {"id": 10451, "name": "VoltureNest", "category": "other", "x": -4750.0, "z": -8517.1, "px": 1237.3, "py": 594.4, "has_dungeon": false, "has_important": true}, {"id": 10452, "name": "VoltureNest", "category": "other", "x": 3204.7, "z": -8389.1, "px": 2594.9, "py": 616.3, "has_dungeon": false, "has_important": true}, {"id": 10453, "name": "VoltureNest", "category": "other", "x": -5133.1, "z": -7602.2, "px": 1172.0, "py": 750.6, "has_dungeon": false, "has_important": true}, {"id": 10454, "name": "VoltureNest", "category": "other", "x": -5374.5, "z": -7741.8, "px": 1130.8, "py": 726.7, "has_dungeon": false, "has_important": true}, {"id": 10455, "name": "VoltureNest", "category": "other", "x": 2247.5, "z": -9332.5, "px": 2431.6, "py": 455.3, "has_dungeon": false, "has_important": true}, {"id": 10456, "name": "VoltureNest", "category": "other", "x": -316.3, "z": -9088.7, "px": 1994.0, "py": 496.9, "has_dungeon": false, "has_important": true}, {"id": 10457, "name": "VoltureNest", "category": "other", "x": 3577.1, "z": -8120.9, "px": 2658.5, "py": 662.0, "has_dungeon": false, "has_important": true}, {"id": 10458, "name": "VoltureNest", "category": "other", "x": 3982.6, "z": -8766.4, "px": 2727.7, "py": 551.9, "has_dungeon": false, "has_important": true}, {"id": 10459, "name": "VoltureNest", "category": "other", "x": -3466.1, "z": -8944.4, "px": 1456.5, "py": 521.5, "has_dungeon": false, "has_important": true}, {"id": 10460, "name": "VoltureNest", "category": "other", "x": -1410.6, "z": -9741.7, "px": 1807.3, "py": 385.4, "has_dungeon": false, "has_important": true}, {"id": 10461, "name": "VoltureNest", "category": "other", "x": 973.3, "z": -9139.2, "px": 2214.1, "py": 488.2, "has_dungeon": false, "has_important": true}, {"id": 10462, "name": "VoltureNest", "category": "other", "x": 2300.9, "z": -9147.2, "px": 2440.7, "py": 486.9, "has_dungeon": false, "has_important": true}, {"id": 10463, "name": "VoltureNest", "category": "other", "x": -588.6, "z": -9796.0, "px": 1947.5, "py": 376.1, "has_dungeon": false, "has_important": true}, {"id": 10464, "name": "VoltureNest", "category": "other", "x": 435.4, "z": -9531.2, "px": 2122.3, "py": 421.3, "has_dungeon": false, "has_important": true}, {"id": 10465, "name": "VoltureNest", "category": "other", "x": -1796.4, "z": -9359.1, "px": 1741.4, "py": 450.7, "has_dungeon": false, "has_important": true}, {"id": 10466, "name": "VoltureNest", "category": "other", "x": 2305.7, "z": -8838.6, "px": 2441.5, "py": 539.5, "has_dungeon": false, "has_important": true}, {"id": 10467, "name": "VoltureNest", "category": "other", "x": 68.9, "z": -9150.3, "px": 2059.8, "py": 486.3, "has_dungeon": false, "has_important": true}, {"id": 10468, "name": "VoltureNest", "category": "other", "x": 1792.7, "z": -8449.5, "px": 2354.0, "py": 606.0, "has_dungeon": false, "has_important": true}, {"id": 10469, "name": "VoltureNest", "category": "other", "x": -4539.5, "z": -7938.6, "px": 1273.3, "py": 693.1, "has_dungeon": false, "has_important": true}, {"id": 10470, "name": "VoltureNest", "category": "other", "x": 779.4, "z": -8628.8, "px": 2181.0, "py": 575.4, "has_dungeon": false, "has_important": true}, {"id": 10471, "name": "VoltureNest", "category": "other", "x": -3904.3, "z": -8896.6, "px": 1381.7, "py": 529.6, "has_dungeon": false, "has_important": true}, {"id": 10472, "name": "VoltureNest", "category": "other", "x": -1274.0, "z": -9136.2, "px": 1830.6, "py": 488.8, "has_dungeon": false, "has_important": true}, {"id": 10473, "name": "VoltureNest", "category": "other", "x": -5119.9, "z": -8140.3, "px": 1174.2, "py": 658.7, "has_dungeon": false, "has_important": true}, {"id": 10474, "name": "VoltureNest", "category": "other", "x": 4150.6, "z": -8881.0, "px": 2756.4, "py": 532.3, "has_dungeon": false, "has_important": true}, {"id": 10475, "name": "VoltureNest", "category": "other", "x": 1653.6, "z": -9778.2, "px": 2330.2, "py": 379.2, "has_dungeon": false, "has_important": true}, {"id": 10476, "name": "VoltureNest", "category": "other", "x": 3314.8, "z": -9329.4, "px": 2613.7, "py": 455.8, "has_dungeon": false, "has_important": true}, {"id": 10477, "name": "VoltureNest", "category": "other", "x": 3378.8, "z": -8186.8, "px": 2624.6, "py": 650.8, "has_dungeon": false, "has_important": true}, {"id": 10478, "name": "VoltureNest", "category": "other", "x": 3716.0, "z": -8177.8, "px": 2682.2, "py": 652.3, "has_dungeon": false, "has_important": true}, {"id": 10479, "name": "VoltureNest", "category": "other", "x": -4302.5, "z": -8050.2, "px": 1313.7, "py": 674.1, "has_dungeon": false, "has_important": true}, {"id": 10480, "name": "VoltureNest", "category": "other", "x": -1353.9, "z": -9356.6, "px": 1816.9, "py": 451.1, "has_dungeon": false, "has_important": true}, {"id": 10481, "name": "VoltureNest", "category": "other", "x": 650.4, "z": -9777.0, "px": 2159.0, "py": 379.4, "has_dungeon": false, "has_important": true}, {"id": 10482, "name": "VoltureNest", "category": "other", "x": -3981.8, "z": -9012.1, "px": 1368.4, "py": 509.9, "has_dungeon": false, "has_important": true}, {"id": 10483, "name": "VoltureNest", "category": "other", "x": 2431.7, "z": -9288.8, "px": 2463.0, "py": 462.7, "has_dungeon": false, "has_important": true}, {"id": 10484, "name": "VoltureNest", "category": "other", "x": 5071.4, "z": -7743.2, "px": 2913.5, "py": 726.5, "has_dungeon": false, "has_important": true}, {"id": 10485, "name": "VoltureNest", "category": "other", "x": -263.9, "z": -8782.0, "px": 2003.0, "py": 549.2, "has_dungeon": false, "has_important": true}, {"id": 10486, "name": "VoltureNest", "category": "other", "x": 186.5, "z": -8778.8, "px": 2079.8, "py": 549.8, "has_dungeon": false, "has_important": true}, {"id": 10487, "name": "VoltureNest", "category": "other", "x": -57.9, "z": -9807.8, "px": 2038.1, "py": 374.1, "has_dungeon": false, "has_important": true}, {"id": 10488, "name": "VoltureNest", "category": "other", "x": 1984.7, "z": -8456.9, "px": 2386.7, "py": 604.7, "has_dungeon": false, "has_important": true}, {"id": 10489, "name": "VoltureNest", "category": "other", "x": -4429.7, "z": -8268.4, "px": 1292.0, "py": 636.9, "has_dungeon": false, "has_important": true}, {"id": 10490, "name": "VoltureNest", "category": "other", "x": 2163.2, "z": -8269.5, "px": 2417.2, "py": 636.7, "has_dungeon": false, "has_important": true}, {"id": 10491, "name": "VoltureNest", "category": "other", "x": 1869.9, "z": -9333.4, "px": 2367.1, "py": 455.1, "has_dungeon": false, "has_important": true}, {"id": 10492, "name": "VoltureNest", "category": "other", "x": -586.9, "z": -8967.8, "px": 1947.8, "py": 517.5, "has_dungeon": false, "has_important": true}, {"id": 10493, "name": "VoltureNest", "category": "other", "x": 3.2, "z": -8630.2, "px": 2048.5, "py": 575.1, "has_dungeon": false, "has_important": true}, {"id": 10494, "name": "VoltureNest", "category": "other", "x": -2551.4, "z": -8817.7, "px": 1612.6, "py": 543.1, "has_dungeon": false, "has_important": true}, {"id": 10495, "name": "VoltureNest", "category": "other", "x": 972.8, "z": -8649.6, "px": 2214.0, "py": 571.8, "has_dungeon": false, "has_important": true}, {"id": 10496, "name": "VoltureNest", "category": "other", "x": 4237.2, "z": -8704.7, "px": 2771.1, "py": 562.4, "has_dungeon": false, "has_important": true}, {"id": 10497, "name": "VoltureNest", "category": "other", "x": 2871.7, "z": -9209.4, "px": 2538.1, "py": 476.3, "has_dungeon": false, "has_important": true}, {"id": 10498, "name": "VoltureNest", "category": "other", "x": -1414.6, "z": -9533.3, "px": 1806.6, "py": 421.0, "has_dungeon": false, "has_important": true}, {"id": 10499, "name": "VoltureNest", "category": "other", "x": -5006.4, "z": -8143.9, "px": 1193.6, "py": 658.1, "has_dungeon": false, "has_important": true}, {"id": 10500, "name": "VoltureNest", "category": "other", "x": -4813.7, "z": -8133.6, "px": 1226.5, "py": 659.9, "has_dungeon": false, "has_important": true}, {"id": 10501, "name": "VoltureNest", "category": "other", "x": 1408.0, "z": -9008.4, "px": 2288.3, "py": 510.6, "has_dungeon": false, "has_important": true}, {"id": 10502, "name": "VoltureNest", "category": "other", "x": -5184.6, "z": -7871.5, "px": 1163.2, "py": 704.6, "has_dungeon": false, "has_important": true}, {"id": 10503, "name": "VoltureNest", "category": "other", "x": -3312.5, "z": -8910.4, "px": 1482.7, "py": 527.3, "has_dungeon": false, "has_important": true}, {"id": 10504, "name": "VoltureNest", "category": "other", "x": 1220.4, "z": -8846.8, "px": 2256.3, "py": 538.1, "has_dungeon": false, "has_important": true}, {"id": 10505, "name": "VoltureNest", "category": "other", "x": -2684.1, "z": -8588.1, "px": 1589.9, "py": 582.3, "has_dungeon": false, "has_important": true}, {"id": 10506, "name": "VoltureNest", "category": "other", "x": 3.1, "z": -8880.6, "px": 2048.5, "py": 532.4, "has_dungeon": false, "has_important": true}, {"id": 10507, "name": "VoltureNest", "category": "other", "x": -1609.6, "z": -9616.0, "px": 1773.3, "py": 406.9, "has_dungeon": false, "has_important": true}, {"id": 10508, "name": "VoltureNest", "category": "other", "x": 2802.4, "z": -9291.9, "px": 2526.3, "py": 462.2, "has_dungeon": false, "has_important": true}, {"id": 10509, "name": "VoltureNest", "category": "other", "x": 2800.2, "z": -8947.2, "px": 2525.9, "py": 521.0, "has_dungeon": false, "has_important": true}, {"id": 10510, "name": "VoltureNest", "category": "other", "x": -3830.2, "z": -8179.8, "px": 1394.3, "py": 652.0, "has_dungeon": false, "has_important": true}, {"id": 10511, "name": "VoltureNest", "category": "other", "x": 5565.6, "z": -8050.7, "px": 2997.9, "py": 674.0, "has_dungeon": false, "has_important": true}, {"id": 10512, "name": "VoltureNest", "category": "other", "x": -5617.0, "z": -7558.3, "px": 1089.4, "py": 758.1, "has_dungeon": false, "has_important": true}, {"id": 10513, "name": "VoltureNest", "category": "other", "x": 2037.7, "z": -8333.8, "px": 2395.8, "py": 625.7, "has_dungeon": false, "has_important": true}, {"id": 10514, "name": "VoltureNest", "category": "other", "x": -3464.7, "z": -8396.4, "px": 1456.7, "py": 615.0, "has_dungeon": false, "has_important": true}, {"id": 10515, "name": "VoltureNest", "category": "other", "x": -1405.3, "z": -9269.4, "px": 1808.2, "py": 466.0, "has_dungeon": false, "has_important": true}, {"id": 10516, "name": "VoltureNest", "category": "other", "x": 1468.9, "z": -9473.7, "px": 2298.7, "py": 431.2, "has_dungeon": false, "has_important": true}, {"id": 10517, "name": "VoltureNest", "category": "other", "x": 3517.3, "z": -8521.8, "px": 2648.3, "py": 593.6, "has_dungeon": false, "has_important": true}, {"id": 10518, "name": "VoltureNest", "category": "other", "x": -5109.5, "z": -7802.5, "px": 1176.0, "py": 716.4, "has_dungeon": false, "has_important": true}, {"id": 10519, "name": "VoltureNest", "category": "other", "x": 1799.7, "z": -8644.5, "px": 2355.1, "py": 572.7, "has_dungeon": false, "has_important": true}, {"id": 10520, "name": "VoltureNest", "category": "other", "x": -4730.1, "z": -8206.1, "px": 1240.7, "py": 647.5, "has_dungeon": false, "has_important": true}, {"id": 10521, "name": "VoltureNest", "category": "other", "x": 2041.5, "z": -8564.6, "px": 2396.4, "py": 586.3, "has_dungeon": false, "has_important": true}, {"id": 10522, "name": "VoltureNest", "category": "other", "x": -6223.4, "z": -7619.9, "px": 985.9, "py": 747.5, "has_dungeon": false, "has_important": true}, {"id": 10523, "name": "VoltureNest", "category": "other", "x": -199.0, "z": -9038.8, "px": 2014.0, "py": 505.4, "has_dungeon": false, "has_important": true}, {"id": 10524, "name": "VoltureNest", "category": "other", "x": 5324.2, "z": -8112.6, "px": 2956.7, "py": 663.4, "has_dungeon": false, "has_important": true}, {"id": 10525, "name": "VoltureNest", "category": "other", "x": 1224.4, "z": -9404.4, "px": 2257.0, "py": 443.0, "has_dungeon": false, "has_important": true}, {"id": 10526, "name": "VoltureNest", "category": "other", "x": 711.2, "z": -8782.8, "px": 2169.4, "py": 549.1, "has_dungeon": false, "has_important": true}, {"id": 10527, "name": "VoltureNest", "category": "other", "x": -8.7, "z": -9587.8, "px": 2046.5, "py": 411.7, "has_dungeon": false, "has_important": true}, {"id": 10528, "name": "VoltureNest", "category": "other", "x": -891.9, "z": -8756.7, "px": 1895.8, "py": 553.5, "has_dungeon": false, "has_important": true}, {"id": 10529, "name": "VoltureNest", "category": "other", "x": 768.5, "z": -9209.6, "px": 2179.2, "py": 476.2, "has_dungeon": false, "has_important": true}, {"id": 10530, "name": "VoltureNest", "category": "other", "x": 64.7, "z": -9738.0, "px": 2059.0, "py": 386.0, "has_dungeon": false, "has_important": true}, {"id": 10531, "name": "VoltureNest", "category": "other", "x": -2098.1, "z": -9275.6, "px": 1689.9, "py": 465.0, "has_dungeon": false, "has_important": true}, {"id": 10532, "name": "VoltureNest", "category": "other", "x": 179.4, "z": -9094.2, "px": 2078.6, "py": 495.9, "has_dungeon": false, "has_important": true}, {"id": 10533, "name": "VoltureNest", "category": "other", "x": 583.5, "z": -8716.6, "px": 2147.6, "py": 560.4, "has_dungeon": false, "has_important": true}, {"id": 10534, "name": "VoltureNest", "category": "other", "x": -770.8, "z": -8646.5, "px": 1916.5, "py": 572.3, "has_dungeon": false, "has_important": true}, {"id": 10535, "name": "VoltureNest", "category": "other", "x": 5684.0, "z": -8113.0, "px": 3018.1, "py": 663.4, "has_dungeon": false, "has_important": true}, {"id": 10536, "name": "VoltureNest", "category": "other", "x": -3594.9, "z": -9074.3, "px": 1434.5, "py": 499.3, "has_dungeon": false, "has_important": true}, {"id": 10537, "name": "VoltureNest", "category": "other", "x": -3636.5, "z": -8688.3, "px": 1427.4, "py": 565.2, "has_dungeon": false, "has_important": true}, {"id": 10538, "name": "VoltureNest", "category": "other", "x": 1543.3, "z": -9784.6, "px": 2311.4, "py": 378.1, "has_dungeon": false, "has_important": true}, {"id": 10539, "name": "VoltureNest", "category": "other", "x": -3580.2, "z": -8837.7, "px": 1437.0, "py": 539.7, "has_dungeon": false, "has_important": true}, {"id": 10540, "name": "VoltureNest", "category": "other", "x": 1794.0, "z": -8328.2, "px": 2354.2, "py": 626.7, "has_dungeon": false, "has_important": true}, {"id": 10541, "name": "VoltureNest", "category": "other", "x": -635.8, "z": -9913.0, "px": 1939.5, "py": 356.2, "has_dungeon": false, "has_important": true}, {"id": 10542, "name": "VoltureNest", "category": "other", "x": -3280.0, "z": -8774.4, "px": 1488.2, "py": 550.5, "has_dungeon": false, "has_important": true}, {"id": 10543, "name": "VoltureNest", "category": "other", "x": 502.8, "z": -9732.7, "px": 2133.8, "py": 387.0, "has_dungeon": false, "has_important": true}, {"id": 10544, "name": "VoltureNest", "category": "other", "x": -5512.6, "z": -7488.9, "px": 1107.2, "py": 769.9, "has_dungeon": false, "has_important": true}, {"id": 10545, "name": "VoltureNest", "category": "other", "x": 1396.7, "z": -9342.9, "px": 2286.4, "py": 453.5, "has_dungeon": false, "has_important": true}, {"id": 10546, "name": "VoltureNest", "category": "other", "x": -1100.1, "z": -9656.8, "px": 1860.2, "py": 399.9, "has_dungeon": false, "has_important": true}, {"id": 10547, "name": "VoltureNest", "category": "other", "x": 72.9, "z": -8757.4, "px": 2060.4, "py": 553.4, "has_dungeon": false, "has_important": true}, {"id": 10548, "name": "VoltureNest", "category": "other", "x": 2998.2, "z": -9335.5, "px": 2559.7, "py": 454.7, "has_dungeon": false, "has_important": true}, {"id": 10549, "name": "VoltureNest", "category": "other", "x": 270.1, "z": -9038.6, "px": 2094.1, "py": 505.4, "has_dungeon": false, "has_important": true}, {"id": 10550, "name": "VoltureNest", "category": "other", "x": -2173.8, "z": -8458.9, "px": 1677.0, "py": 604.3, "has_dungeon": false, "has_important": true}, {"id": 10551, "name": "VoltureNest", "category": "other", "x": 1784.3, "z": -9594.8, "px": 2352.5, "py": 410.5, "has_dungeon": false, "has_important": true}, {"id": 10552, "name": "VoltureNest", "category": "other", "x": 457.5, "z": -8648.0, "px": 2126.1, "py": 572.1, "has_dungeon": false, "has_important": true}, {"id": 10553, "name": "VoltureNest", "category": "other", "x": -713.5, "z": -9800.2, "px": 1926.2, "py": 375.4, "has_dungeon": false, "has_important": true}, {"id": 10554, "name": "VoltureNest", "category": "other", "x": 2563.8, "z": -9016.6, "px": 2485.6, "py": 509.2, "has_dungeon": false, "has_important": true}, {"id": 10555, "name": "VoltureNest", "category": "other", "x": 3196.9, "z": -9226.9, "px": 2593.6, "py": 473.3, "has_dungeon": false, "has_important": true}, {"id": 10556, "name": "VoltureNest", "category": "other", "x": 654.7, "z": -9933.5, "px": 2159.7, "py": 352.7, "has_dungeon": false, "has_important": true}, {"id": 10557, "name": "VoltureNest", "category": "other", "x": -2674.5, "z": -8432.1, "px": 1591.6, "py": 608.9, "has_dungeon": false, "has_important": true}, {"id": 10558, "name": "VoltureNest", "category": "other", "x": 1348.5, "z": -8911.4, "px": 2278.1, "py": 527.1, "has_dungeon": false, "has_important": true}, {"id": 10559, "name": "VoltureNest", "category": "other", "x": 590.4, "z": -8960.3, "px": 2148.8, "py": 518.8, "has_dungeon": false, "has_important": true}, {"id": 10560, "name": "VoltureNest", "category": "other", "x": -4422.9, "z": -8390.6, "px": 1293.2, "py": 616.0, "has_dungeon": false, "has_important": true}, {"id": 10561, "name": "VoltureNest", "category": "other", "x": 5242.1, "z": -7996.3, "px": 2942.7, "py": 683.3, "has_dungeon": false, "has_important": true}, {"id": 10562, "name": "VoltureNest", "category": "other", "x": 972.4, "z": -8910.6, "px": 2214.0, "py": 527.3, "has_dungeon": false, "has_important": true}, {"id": 10563, "name": "VoltureNest", "category": "other", "x": 397.2, "z": -9231.7, "px": 2115.8, "py": 472.5, "has_dungeon": false, "has_important": true}, {"id": 10564, "name": "VoltureNest", "category": "other", "x": -2370.9, "z": -9029.4, "px": 1643.4, "py": 507.0, "has_dungeon": false, "has_important": true}, {"id": 10565, "name": "VoltureNest", "category": "other", "x": -2509.3, "z": -8318.0, "px": 1619.7, "py": 628.4, "has_dungeon": false, "has_important": true}, {"id": 10566, "name": "VoltureNest", "category": "other", "x": 3136.7, "z": -9143.1, "px": 2583.3, "py": 487.6, "has_dungeon": false, "has_important": true}, {"id": 10567, "name": "VoltureNest", "category": "other", "x": 1801.0, "z": -9717.5, "px": 2355.4, "py": 389.5, "has_dungeon": false, "has_important": true}, {"id": 10568, "name": "VoltureNest", "category": "other", "x": -1805.4, "z": -9076.3, "px": 1739.9, "py": 499.0, "has_dungeon": false, "has_important": true}, {"id": 10569, "name": "VoltureNest", "category": "other", "x": -4618.6, "z": -8001.5, "px": 1259.8, "py": 682.4, "has_dungeon": false, "has_important": true}, {"id": 10570, "name": "VoltureNest", "category": "other", "x": -461.8, "z": -9334.4, "px": 1969.2, "py": 454.9, "has_dungeon": false, "has_important": true}, {"id": 10571, "name": "VoltureNest", "category": "other", "x": -2055.8, "z": -8718.5, "px": 1697.1, "py": 560.0, "has_dungeon": false, "has_important": true}, {"id": 10572, "name": "VoltureNest", "category": "other", "x": -1200.2, "z": -9608.9, "px": 1843.2, "py": 408.1, "has_dungeon": false, "has_important": true}, {"id": 10573, "name": "VoltureNest", "category": "other", "x": -2891.6, "z": -8332.5, "px": 1554.5, "py": 625.9, "has_dungeon": false, "has_important": true}, {"id": 10574, "name": "VoltureNest", "category": "other", "x": 1481.8, "z": -9096.9, "px": 2300.9, "py": 495.5, "has_dungeon": false, "has_important": true}, {"id": 10575, "name": "VoltureNest", "category": "other", "x": 585.9, "z": -9144.1, "px": 2148.0, "py": 487.4, "has_dungeon": false, "has_important": true}, {"id": 10576, "name": "VoltureNest", "category": "other", "x": 3767.6, "z": -8460.4, "px": 2691.0, "py": 604.1, "has_dungeon": false, "has_important": true}, {"id": 10577, "name": "VoltureNest", "category": "other", "x": 755.6, "z": -8949.4, "px": 2177.0, "py": 520.6, "has_dungeon": false, "has_important": true}, {"id": 10578, "name": "VoltureNest", "category": "other", "x": 569.0, "z": -8822.9, "px": 2145.1, "py": 542.2, "has_dungeon": false, "has_important": true}, {"id": 10579, "name": "VoltureNest", "category": "other", "x": 118.0, "z": -9611.0, "px": 2068.1, "py": 407.7, "has_dungeon": false, "has_important": true}, {"id": 10580, "name": "VoltureNest", "category": "other", "x": 2877.0, "z": -8846.3, "px": 2539.0, "py": 538.2, "has_dungeon": false, "has_important": true}, {"id": 10581, "name": "VoltureNest", "category": "other", "x": 2550.0, "z": -9165.5, "px": 2483.2, "py": 483.8, "has_dungeon": false, "has_important": true}, {"id": 10582, "name": "VoltureNest", "category": "other", "x": -506.5, "z": -8710.1, "px": 1961.6, "py": 561.5, "has_dungeon": false, "has_important": true}, {"id": 10583, "name": "VoltureNest", "category": "other", "x": -5519.8, "z": -7810.9, "px": 1106.0, "py": 714.9, "has_dungeon": false, "has_important": true}, {"id": 10584, "name": "VoltureNest", "category": "other", "x": 3661.7, "z": -8388.0, "px": 2672.9, "py": 616.4, "has_dungeon": false, "has_important": true}, {"id": 10585, "name": "VoltureNest", "category": "other", "x": -3656.3, "z": -8904.9, "px": 1424.0, "py": 528.2, "has_dungeon": false, "has_important": true}, {"id": 10586, "name": "VoltureNest", "category": "other", "x": 2182.3, "z": -9223.5, "px": 2420.4, "py": 473.9, "has_dungeon": false, "has_important": true}, {"id": 10587, "name": "VoltureNest", "category": "other", "x": 1911.6, "z": -8375.5, "px": 2374.2, "py": 618.6, "has_dungeon": false, "has_important": true}, {"id": 10588, "name": "VoltureNest", "category": "other", "x": 883.4, "z": -8967.0, "px": 2198.8, "py": 517.6, "has_dungeon": false, "has_important": true}, {"id": 10589, "name": "VoltureNest", "category": "other", "x": -1861.7, "z": -8780.2, "px": 1730.3, "py": 549.5, "has_dungeon": false, "has_important": true}, {"id": 10590, "name": "VoltureNest", "category": "other", "x": 2314.5, "z": -9023.1, "px": 2443.0, "py": 508.1, "has_dungeon": false, "has_important": true}, {"id": 10591, "name": "VoltureNest", "category": "other", "x": 5242.9, "z": -7796.2, "px": 2942.8, "py": 717.4, "has_dungeon": false, "has_important": true}, {"id": 10592, "name": "VoltureNest", "category": "other", "x": -4657.1, "z": -8326.4, "px": 1253.2, "py": 627.0, "has_dungeon": false, "has_important": true}, {"id": 10593, "name": "VoltureNest", "category": "other", "x": -4747.3, "z": -8382.0, "px": 1237.8, "py": 617.5, "has_dungeon": false, "has_important": true}, {"id": 10594, "name": "VoltureNest", "category": "other", "x": 2232.4, "z": -8947.4, "px": 2429.0, "py": 521.0, "has_dungeon": false, "has_important": true}, {"id": 10595, "name": "VoltureNest", "category": "other", "x": 1423.6, "z": -9672.2, "px": 2291.0, "py": 397.3, "has_dungeon": false, "has_important": true}, {"id": 10596, "name": "VoltureNest", "category": "other", "x": 3134.8, "z": -8560.2, "px": 2583.0, "py": 587.1, "has_dungeon": false, "has_important": true}, {"id": 10597, "name": "VoltureNest", "category": "other", "x": 3891.8, "z": -8385.7, "px": 2712.2, "py": 616.8, "has_dungeon": false, "has_important": true}, {"id": 10598, "name": "VoltureNest", "category": "other", "x": -4539.0, "z": -8129.2, "px": 1273.3, "py": 660.6, "has_dungeon": false, "has_important": true}, {"id": 10599, "name": "VoltureNest", "category": "other", "x": -3593.4, "z": -8335.3, "px": 1434.7, "py": 625.4, "has_dungeon": false, "has_important": true}, {"id": 10600, "name": "VoltureNest", "category": "other", "x": 332.0, "z": -9603.1, "px": 2104.7, "py": 409.1, "has_dungeon": false, "has_important": true}, {"id": 10601, "name": "VoltureNest", "category": "other", "x": -448.5, "z": -9796.0, "px": 1971.5, "py": 376.1, "has_dungeon": false, "has_important": true}, {"id": 10602, "name": "VoltureNest", "category": "other", "x": 4144.6, "z": -8780.7, "px": 2755.3, "py": 549.4, "has_dungeon": false, "has_important": true}, {"id": 10603, "name": "VoltureNest", "category": "other", "x": 653.9, "z": -9482.6, "px": 2159.6, "py": 429.6, "has_dungeon": false, "has_important": true}, {"id": 10604, "name": "VoltureNest", "category": "other", "x": -625.3, "z": -9140.9, "px": 1941.3, "py": 488.0, "has_dungeon": false, "has_important": true}, {"id": 10605, "name": "VoltureNest", "category": "other", "x": 2432.3, "z": -9137.9, "px": 2463.1, "py": 488.5, "has_dungeon": false, "has_important": true}, {"id": 10606, "name": "VoltureNest", "category": "other", "x": 5491.3, "z": -7931.8, "px": 2985.2, "py": 694.3, "has_dungeon": false, "has_important": true}, {"id": 10607, "name": "VoltureNest", "category": "other", "x": 3978.1, "z": -8630.0, "px": 2726.9, "py": 575.1, "has_dungeon": false, "has_important": true}, {"id": 10608, "name": "VoltureNest", "category": "other", "x": 1784.3, "z": -9101.6, "px": 2352.5, "py": 494.7, "has_dungeon": false, "has_important": true}, {"id": 10609, "name": "VoltureNest", "category": "other", "x": -889.6, "z": -9023.0, "px": 1896.2, "py": 508.1, "has_dungeon": false, "has_important": true}, {"id": 10610, "name": "VoltureNest", "category": "other", "x": 2188.7, "z": -9530.3, "px": 2421.5, "py": 421.5, "has_dungeon": false, "has_important": true}, {"id": 10611, "name": "VoltureNest", "category": "other", "x": -463.2, "z": -9457.2, "px": 1968.9, "py": 434.0, "has_dungeon": false, "has_important": true}, {"id": 10612, "name": "VoltureNest", "category": "other", "x": -4096.3, "z": -8197.3, "px": 1348.9, "py": 649.0, "has_dungeon": false, "has_important": true}, {"id": 10613, "name": "VoltureNest", "category": "other", "x": -391.6, "z": -9652.7, "px": 1981.2, "py": 400.6, "has_dungeon": false, "has_important": true}, {"id": 10614, "name": "VoltureNest", "category": "other", "x": -4081.9, "z": -8960.4, "px": 1351.4, "py": 518.8, "has_dungeon": false, "has_important": true}, {"id": 10615, "name": "VoltureNest", "category": "other", "x": -1229.5, "z": -9393.0, "px": 1838.2, "py": 444.9, "has_dungeon": false, "has_important": true}, {"id": 10616, "name": "VoltureNest", "category": "other", "x": -5324.7, "z": -7860.7, "px": 1139.3, "py": 706.4, "has_dungeon": false, "has_important": true}, {"id": 10617, "name": "VoltureNest", "category": "other", "x": -904.2, "z": -9727.6, "px": 1893.7, "py": 387.8, "has_dungeon": false, "has_important": true}, {"id": 10618, "name": "VoltureNest", "category": "other", "x": -4943.7, "z": -8252.5, "px": 1204.3, "py": 639.6, "has_dungeon": false, "has_important": true}, {"id": 10619, "name": "VoltureNest", "category": "other", "x": 5432.5, "z": -7808.3, "px": 2975.1, "py": 715.4, "has_dungeon": false, "has_important": true}, {"id": 10620, "name": "VoltureNest", "category": "other", "x": -3596.4, "z": -9273.5, "px": 1434.2, "py": 465.3, "has_dungeon": false, "has_important": true}, {"id": 10621, "name": "VoltureNest", "category": "other", "x": 5436.6, "z": -8015.5, "px": 2975.8, "py": 680.0, "has_dungeon": false, "has_important": true}, {"id": 10622, "name": "VoltureNest", "category": "other", "x": -3711.3, "z": -9289.5, "px": 1414.6, "py": 462.6, "has_dungeon": false, "has_important": true}, {"id": 10623, "name": "VoltureNest", "category": "other", "x": 3062.3, "z": -9218.5, "px": 2570.6, "py": 474.7, "has_dungeon": false, "has_important": true}, {"id": 10624, "name": "VoltureNest", "category": "other", "x": -138.3, "z": -9586.1, "px": 2024.4, "py": 412.0, "has_dungeon": false, "has_important": true}, {"id": 10625, "name": "VoltureNest", "category": "other", "x": -2892.6, "z": -8450.4, "px": 1554.3, "py": 605.8, "has_dungeon": false, "has_important": true}, {"id": 10626, "name": "VoltureNest", "category": "other", "x": 3982.0, "z": -9024.0, "px": 2727.6, "py": 507.9, "has_dungeon": false, "has_important": true}, {"id": 10627, "name": "VoltureNest", "category": "other", "x": 1779.4, "z": -9229.9, "px": 2351.7, "py": 472.8, "has_dungeon": false, "has_important": true}, {"id": 10628, "name": "VoltureNest", "category": "other", "x": -2890.9, "z": -9028.5, "px": 1554.6, "py": 507.1, "has_dungeon": false, "has_important": true}, {"id": 10629, "name": "VoltureNest", "category": "other", "x": -271.3, "z": -8655.9, "px": 2001.7, "py": 570.7, "has_dungeon": false, "has_important": true}, {"id": 10630, "name": "VoltureNest", "category": "other", "x": -1022.9, "z": -9805.5, "px": 1873.4, "py": 374.5, "has_dungeon": false, "has_important": true}, {"id": 10631, "name": "VoltureNest", "category": "other", "x": -3706.9, "z": -8398.7, "px": 1415.4, "py": 614.6, "has_dungeon": false, "has_important": true}, {"id": 10632, "name": "VoltureNest", "category": "other", "x": 3894.9, "z": -8951.0, "px": 2712.7, "py": 520.4, "has_dungeon": false, "has_important": true}, {"id": 10633, "name": "VoltureNest", "category": "other", "x": -2672.6, "z": -8755.6, "px": 1591.9, "py": 553.7, "has_dungeon": false, "has_important": true}, {"id": 10634, "name": "VoltureNest", "category": "other", "x": -177.2, "z": -8832.3, "px": 2017.8, "py": 540.6, "has_dungeon": false, "has_important": true}, {"id": 10635, "name": "VoltureNest", "category": "other", "x": 755.1, "z": -9920.4, "px": 2176.9, "py": 354.9, "has_dungeon": false, "has_important": true}, {"id": 10636, "name": "VoltureNest", "category": "other", "x": -626.3, "z": -8752.7, "px": 1941.1, "py": 554.2, "has_dungeon": false, "has_important": true}, {"id": 10637, "name": "VoltureNest", "category": "other", "x": -5259.6, "z": -7602.7, "px": 1150.4, "py": 750.5, "has_dungeon": false, "has_important": true}, {"id": 10638, "name": "VoltureNest", "category": "other", "x": -331.7, "z": -9807.9, "px": 1991.4, "py": 374.1, "has_dungeon": false, "has_important": true}, {"id": 10639, "name": "VoltureNest", "category": "other", "x": -5185.6, "z": -7735.3, "px": 1163.0, "py": 727.8, "has_dungeon": false, "has_important": true}, {"id": 10640, "name": "VoltureNest", "category": "other", "x": 3120.3, "z": -8322.5, "px": 2580.5, "py": 627.6, "has_dungeon": false, "has_important": true}, {"id": 10641, "name": "VoltureNest", "category": "other", "x": 3122.1, "z": -9332.3, "px": 2580.8, "py": 455.3, "has_dungeon": false, "has_important": true}, {"id": 10642, "name": "VoltureNest", "category": "other", "x": -3843.8, "z": -8767.9, "px": 1392.0, "py": 551.6, "has_dungeon": false, "has_important": true}, {"id": 10643, "name": "VoltureNest", "category": "other", "x": 206.5, "z": -9675.7, "px": 2083.2, "py": 396.7, "has_dungeon": false, "has_important": true}, {"id": 10644, "name": "VoltureNest", "category": "other", "x": -5513.7, "z": -7628.2, "px": 1107.0, "py": 746.1, "has_dungeon": false, "has_important": true}, {"id": 10645, "name": "VoltureNest", "category": "other", "x": -1853.1, "z": -9267.8, "px": 1731.7, "py": 466.3, "has_dungeon": false, "has_important": true}, {"id": 10646, "name": "VoltureNest", "category": "other", "x": 3889.7, "z": -8828.8, "px": 2711.8, "py": 541.2, "has_dungeon": false, "has_important": true}, {"id": 10647, "name": "VoltureNest", "category": "other", "x": -2041.0, "z": -9358.9, "px": 1699.7, "py": 450.7, "has_dungeon": false, "has_important": true}, {"id": 10648, "name": "VoltureNest", "category": "other", "x": 5319.7, "z": -7731.1, "px": 2955.9, "py": 728.6, "has_dungeon": false, "has_important": true}, {"id": 10649, "name": "VoltureNest", "category": "other", "x": -1920.0, "z": -8695.0, "px": 1720.3, "py": 564.1, "has_dungeon": false, "has_important": true}, {"id": 10650, "name": "VoltureNest", "category": "other", "x": -2767.3, "z": -8514.5, "px": 1575.7, "py": 594.9, "has_dungeon": false, "has_important": true}, {"id": 10651, "name": "VoltureNest", "category": "other", "x": -2254.9, "z": -8628.9, "px": 1663.2, "py": 575.3, "has_dungeon": false, "has_important": true}, {"id": 10652, "name": "VoltureNest", "category": "other", "x": 2812.3, "z": -9076.4, "px": 2528.0, "py": 499.0, "has_dungeon": false, "has_important": true}, {"id": 10653, "name": "VoltureNest", "category": "other", "x": -1020.9, "z": -8907.0, "px": 1873.8, "py": 527.9, "has_dungeon": false, "has_important": true}, {"id": 10654, "name": "VoltureNest", "category": "other", "x": 3062.2, "z": -9020.9, "px": 2570.6, "py": 508.4, "has_dungeon": false, "has_important": true}, {"id": 10655, "name": "VoltureNest", "category": "other", "x": 1590.0, "z": -9672.2, "px": 2319.4, "py": 397.3, "has_dungeon": false, "has_important": true}, {"id": 10656, "name": "VoltureNest", "category": "other", "x": -1014.1, "z": -9469.7, "px": 1874.9, "py": 431.8, "has_dungeon": false, "has_important": true}, {"id": 10657, "name": "VoltureNest", "category": "other", "x": 1520.0, "z": -9585.6, "px": 2307.4, "py": 412.1, "has_dungeon": false, "has_important": true}, {"id": 10658, "name": "VoltureNest", "category": "other", "x": -369.5, "z": -9423.9, "px": 1984.9, "py": 439.7, "has_dungeon": false, "has_important": true}, {"id": 10659, "name": "VoltureNest", "category": "other", "x": -712.2, "z": -9282.4, "px": 1926.5, "py": 463.8, "has_dungeon": false, "has_important": true}, {"id": 10660, "name": "VoltureNest", "category": "other", "x": -4859.9, "z": -8510.3, "px": 1218.6, "py": 595.6, "has_dungeon": false, "has_important": true}, {"id": 10661, "name": "VoltureNest", "category": "other", "x": 1915.3, "z": -8562.4, "px": 2374.9, "py": 586.7, "has_dungeon": false, "has_important": true}, {"id": 10662, "name": "VoltureNest", "category": "other", "x": -2817.5, "z": -8251.2, "px": 1567.1, "py": 639.8, "has_dungeon": false, "has_important": true}, {"id": 10663, "name": "VoltureNest", "category": "other", "x": 2992.0, "z": -9103.1, "px": 2558.6, "py": 494.4, "has_dungeon": false, "has_important": true}, {"id": 10664, "name": "VoltureNest", "category": "other", "x": -397.4, "z": -9207.0, "px": 1980.2, "py": 476.7, "has_dungeon": false, "has_important": true}, {"id": 10665, "name": "VoltureNest", "category": "other", "x": 1285.9, "z": -9584.4, "px": 2267.5, "py": 412.3, "has_dungeon": false, "has_important": true}, {"id": 10666, "name": "VoltureNest", "category": "other", "x": -887.5, "z": -9162.4, "px": 1896.5, "py": 484.3, "has_dungeon": false, "has_important": true}, {"id": 10667, "name": "VoltureNest", "category": "other", "x": -2561.6, "z": -9027.6, "px": 1610.8, "py": 507.3, "has_dungeon": false, "has_important": true}, {"id": 10668, "name": "VoltureNest", "category": "other", "x": 653.1, "z": -8882.0, "px": 2159.5, "py": 532.1, "has_dungeon": false, "has_important": true}, {"id": 10669, "name": "VoltureNest", "category": "other", "x": 525.1, "z": -9347.0, "px": 2137.6, "py": 452.8, "has_dungeon": false, "has_important": true}, {"id": 10670, "name": "VoltureNest", "category": "other", "x": -3701.1, "z": -9012.7, "px": 1416.3, "py": 509.8, "has_dungeon": false, "has_important": true}, {"id": 10671, "name": "VoltureNest", "category": "other", "x": -1972.3, "z": -8561.0, "px": 1711.4, "py": 586.9, "has_dungeon": false, "has_important": true}, {"id": 10672, "name": "VoltureNest", "category": "other", "x": -5118.2, "z": -7991.2, "px": 1174.5, "py": 684.2, "has_dungeon": false, "has_important": true}, {"id": 10673, "name": "VoltureNest", "category": "other", "x": 1358.8, "z": -9461.1, "px": 2279.9, "py": 433.3, "has_dungeon": false, "has_important": true}, {"id": 10674, "name": "VoltureNest", "category": "other", "x": 310.6, "z": -9287.8, "px": 2101.0, "py": 462.9, "has_dungeon": false, "has_important": true}, {"id": 10675, "name": "VoltureNest", "category": "other", "x": -501.1, "z": -9999.7, "px": 1962.5, "py": 341.4, "has_dungeon": false, "has_important": true}, {"id": 10676, "name": "VoltureNest", "category": "other", "x": -3784.2, "z": -8646.7, "px": 1402.2, "py": 572.3, "has_dungeon": false, "has_important": true}, {"id": 10677, "name": "VoltureNest", "category": "other", "x": 2999.9, "z": -8905.4, "px": 2560.0, "py": 528.1, "has_dungeon": false, "has_important": true}, {"id": 6258, "name": "Waymarker01", "category": "other", "x": 1323.9, "z": -5156.6, "px": 2273.9, "py": 1167.9, "has_dungeon": false, "has_important": false}, {"id": 6259, "name": "Waymarker01", "category": "other", "x": -7105.7, "z": -2553.7, "px": 835.3, "py": 1612.2, "has_dungeon": false, "has_important": false}, {"id": 6260, "name": "Waymarker01", "category": "other", "x": 2727.5, "z": 567.9, "px": 2513.5, "py": 2144.9, "has_dungeon": false, "has_important": false}, {"id": 6261, "name": "Waymarker01", "category": "other", "x": 5783.6, "z": -90.2, "px": 3035.1, "py": 2032.6, "has_dungeon": false, "has_important": false}, {"id": 6262, "name": "Waymarker01", "category": "other", "x": 4581.6, "z": -5609.1, "px": 2829.9, "py": 1090.7, "has_dungeon": false, "has_important": false}, {"id": 6263, "name": "Waymarker01", "category": "other", "x": -5419.6, "z": 5091.7, "px": 1123.1, "py": 2917.0, "has_dungeon": false, "has_important": false}, {"id": 6264, "name": "Waymarker01", "category": "other", "x": -3867.9, "z": 5102.1, "px": 1387.9, "py": 2918.8, "has_dungeon": false, "has_important": false}, {"id": 6265, "name": "Waymarker01", "category": "other", "x": -4152.0, "z": -4136.9, "px": 1339.4, "py": 1342.0, "has_dungeon": false, "has_important": false}, {"id": 6266, "name": "Waymarker01", "category": "other", "x": -5634.7, "z": -2711.6, "px": 1086.3, "py": 1585.2, "has_dungeon": false, "has_important": false}, {"id": 6267, "name": "Waymarker01", "category": "other", "x": 5442.4, "z": 118.7, "px": 2976.8, "py": 2068.3, "has_dungeon": false, "has_important": false}, {"id": 6268, "name": "Waymarker01", "category": "other", "x": -1372.9, "z": -4915.3, "px": 1813.7, "py": 1209.1, "has_dungeon": false, "has_important": false}, {"id": 6269, "name": "Waymarker01", "category": "other", "x": 3201.1, "z": 442.3, "px": 2594.3, "py": 2123.5, "has_dungeon": false, "has_important": false}, {"id": 6270, "name": "Waymarker01", "category": "other", "x": 6053.5, "z": 4364.7, "px": 3081.1, "py": 2792.9, "has_dungeon": false, "has_important": false}, {"id": 6271, "name": "Waymarker01", "category": "other", "x": 7422.8, "z": 3906.5, "px": 3314.8, "py": 2714.7, "has_dungeon": false, "has_important": false}, {"id": 6272, "name": "Waymarker01", "category": "other", "x": -2028.3, "z": -87.1, "px": 1701.8, "py": 2033.1, "has_dungeon": false, "has_important": false}, {"id": 6273, "name": "Waymarker01", "category": "other", "x": 6739.3, "z": 6859.8, "px": 3198.2, "py": 3218.7, "has_dungeon": false, "has_important": false}, {"id": 6274, "name": "Waymarker01", "category": "other", "x": 1041.6, "z": -2405.0, "px": 2225.8, "py": 1637.5, "has_dungeon": false, "has_important": false}, {"id": 6275, "name": "Waymarker01", "category": "other", "x": 426.0, "z": 3555.9, "px": 2120.7, "py": 2654.9, "has_dungeon": false, "has_important": false}, {"id": 6276, "name": "Waymarker01", "category": "other", "x": -3483.5, "z": -2204.2, "px": 1453.5, "py": 1671.8, "has_dungeon": false, "has_important": false}, {"id": 6277, "name": "Waymarker01", "category": "other", "x": 2431.5, "z": -2632.9, "px": 2463.0, "py": 1598.7, "has_dungeon": false, "has_important": false}, {"id": 6278, "name": "Waymarker01", "category": "other", "x": -6156.2, "z": -325.8, "px": 997.3, "py": 1992.4, "has_dungeon": false, "has_important": false}, {"id": 6279, "name": "Waymarker01", "category": "other", "x": -8660.0, "z": -83.4, "px": 570.0, "py": 2033.8, "has_dungeon": false, "has_important": false}, {"id": 6280, "name": "Waymarker01", "category": "other", "x": -79.2, "z": -1223.2, "px": 2034.5, "py": 1839.2, "has_dungeon": false, "has_important": false}, {"id": 6281, "name": "Waymarker01", "category": "other", "x": 3894.7, "z": -141.5, "px": 2712.7, "py": 2023.9, "has_dungeon": false, "has_important": false}, {"id": 6282, "name": "Waymarker01", "category": "other", "x": 2944.1, "z": 583.9, "px": 2550.5, "py": 2147.7, "has_dungeon": false, "has_important": false}, {"id": 6283, "name": "Waymarker01", "category": "other", "x": 2498.5, "z": 8894.0, "px": 2474.4, "py": 3565.9, "has_dungeon": false, "has_important": false}, {"id": 6284, "name": "Waymarker01", "category": "other", "x": 6258.8, "z": 4791.6, "px": 3116.2, "py": 2865.8, "has_dungeon": false, "has_important": false}, {"id": 6285, "name": "Waymarker01", "category": "other", "x": 3120.5, "z": -1842.9, "px": 2580.6, "py": 1733.5, "has_dungeon": false, "has_important": false}, {"id": 6286, "name": "Waymarker01", "category": "other", "x": 3514.7, "z": 9352.5, "px": 2647.8, "py": 3644.2, "has_dungeon": false, "has_important": false}, {"id": 6287, "name": "Waymarker01", "category": "other", "x": -15.9, "z": -1387.9, "px": 2045.3, "py": 1811.1, "has_dungeon": false, "has_important": false}, {"id": 6288, "name": "Waymarker01", "category": "other", "x": 1116.1, "z": -2506.2, "px": 2238.5, "py": 1620.3, "has_dungeon": false, "has_important": false}, {"id": 6289, "name": "Waymarker01", "category": "other", "x": -4569.8, "z": -84.6, "px": 1268.1, "py": 2033.6, "has_dungeon": false, "has_important": false}, {"id": 6290, "name": "Waymarker01", "category": "other", "x": 2550.5, "z": -4875.9, "px": 2483.3, "py": 1215.8, "has_dungeon": false, "has_important": false}, {"id": 6291, "name": "Waymarker01", "category": "other", "x": -2565.7, "z": 7478.1, "px": 1610.1, "py": 3324.3, "has_dungeon": false, "has_important": false}, {"id": 6292, "name": "Waymarker01", "category": "other", "x": 5924.5, "z": 4519.9, "px": 3059.1, "py": 2819.4, "has_dungeon": false, "has_important": false}, {"id": 6293, "name": "Waymarker01", "category": "other", "x": -7654.6, "z": -2449.6, "px": 741.6, "py": 1629.9, "has_dungeon": false, "has_important": false}, {"id": 6294, "name": "Waymarker01", "category": "other", "x": -3243.4, "z": 2690.1, "px": 1494.5, "py": 2507.1, "has_dungeon": false, "has_important": false}, {"id": 6295, "name": "Waymarker01", "category": "other", "x": 5882.3, "z": 4837.5, "px": 3051.9, "py": 2873.6, "has_dungeon": false, "has_important": false}, {"id": 6296, "name": "Waymarker01", "category": "other", "x": -5125.8, "z": 2705.2, "px": 1173.2, "py": 2509.7, "has_dungeon": false, "has_important": false}, {"id": 6297, "name": "Waymarker01", "category": "other", "x": 7300.8, "z": -431.1, "px": 3294.0, "py": 1974.4, "has_dungeon": false, "has_important": false}, {"id": 6298, "name": "Waymarker01", "category": "other", "x": 1511.2, "z": 7011.8, "px": 2305.9, "py": 3244.7, "has_dungeon": false, "has_important": false}, {"id": 6299, "name": "Waymarker01", "category": "other", "x": -2102.0, "z": -228.4, "px": 1689.3, "py": 2009.0, "has_dungeon": false, "has_important": false}, {"id": 6300, "name": "Waymarker01", "category": "other", "x": -2147.0, "z": -651.0, "px": 1681.6, "py": 1936.9, "has_dungeon": false, "has_important": false}, {"id": 6301, "name": "Waymarker01", "category": "other", "x": 4465.2, "z": -5494.7, "px": 2810.1, "py": 1110.2, "has_dungeon": false, "has_important": false}, {"id": 6302, "name": "Waymarker01", "category": "other", "x": 1255.6, "z": 8571.2, "px": 2262.3, "py": 3510.8, "has_dungeon": false, "has_important": false}, {"id": 6303, "name": "Waymarker01", "category": "other", "x": 2932.9, "z": 804.7, "px": 2548.5, "py": 2185.3, "has_dungeon": false, "has_important": false}, {"id": 6304, "name": "Waymarker01", "category": "other", "x": 7386.0, "z": 4024.5, "px": 3308.5, "py": 2734.8, "has_dungeon": false, "has_important": false}, {"id": 6305, "name": "Waymarker01", "category": "other", "x": -8599.9, "z": -1084.8, "px": 580.3, "py": 1862.9, "has_dungeon": false, "has_important": false}, {"id": 6306, "name": "Waymarker01", "category": "other", "x": -3323.8, "z": 6515.1, "px": 1480.7, "py": 3159.9, "has_dungeon": false, "has_important": false}, {"id": 6307, "name": "Waymarker01", "category": "other", "x": -3931.9, "z": 5040.7, "px": 1377.0, "py": 2908.3, "has_dungeon": false, "has_important": false}, {"id": 6308, "name": "Waymarker02", "category": "other", "x": 6058.5, "z": 4554.8, "px": 3082.0, "py": 2825.4, "has_dungeon": false, "has_important": false}, {"id": 6309, "name": "Waymarker02", "category": "other", "x": 2132.3, "z": -3474.9, "px": 2411.9, "py": 1455.0, "has_dungeon": false, "has_important": false}, {"id": 6310, "name": "Waymarker02", "category": "other", "x": -2070.8, "z": -447.9, "px": 1694.6, "py": 1971.6, "has_dungeon": false, "has_important": false}, {"id": 6311, "name": "Waymarker02", "category": "other", "x": 5750.5, "z": 2177.2, "px": 3029.4, "py": 2419.6, "has_dungeon": false, "has_important": false}, {"id": 6312, "name": "Waymarker02", "category": "other", "x": 6441.8, "z": 6847.1, "px": 3147.4, "py": 3216.6, "has_dungeon": false, "has_important": false}, {"id": 6313, "name": "Waymarker02", "category": "other", "x": 6630.2, "z": 6635.9, "px": 3179.6, "py": 3180.5, "has_dungeon": false, "has_important": false}, {"id": 6314, "name": "Waymarker02", "category": "other", "x": 5312.9, "z": 155.1, "px": 2954.7, "py": 2074.5, "has_dungeon": false, "has_important": false}, {"id": 6315, "name": "Waymarker02", "category": "other", "x": 2834.9, "z": 585.7, "px": 2531.8, "py": 2148.0, "has_dungeon": false, "has_important": false}, {"id": 6316, "name": "Waymarker02", "category": "other", "x": 5697.6, "z": 4676.3, "px": 3020.4, "py": 2846.1, "has_dungeon": false, "has_important": false}, {"id": 6317, "name": "Waymarker02", "category": "other", "x": 6317.7, "z": 6739.5, "px": 3126.2, "py": 3198.2, "has_dungeon": false, "has_important": false}, {"id": 6318, "name": "Waymarker02", "category": "other", "x": 5820.6, "z": 4330.9, "px": 3041.4, "py": 2787.1, "has_dungeon": false, "has_important": false}, {"id": 6319, "name": "Waymarker02", "category": "other", "x": -185.7, "z": -1303.6, "px": 2016.3, "py": 1825.5, "has_dungeon": false, "has_important": false}, {"id": 6320, "name": "Waymarker02", "category": "other", "x": -4606.8, "z": -99.8, "px": 1261.8, "py": 2031.0, "has_dungeon": false, "has_important": false}, {"id": 6321, "name": "Waymarker02", "category": "other", "x": 4811.4, "z": -5453.5, "px": 2869.1, "py": 1117.3, "has_dungeon": false, "has_important": false}, {"id": 6322, "name": "Waymarker02", "category": "other", "x": 3634.5, "z": -167.9, "px": 2668.3, "py": 2019.3, "has_dungeon": false, "has_important": false}, {"id": 6323, "name": "Waymarker02", "category": "other", "x": -19.0, "z": -1230.9, "px": 2044.8, "py": 1837.9, "has_dungeon": false, "has_important": false}, {"id": 6324, "name": "Waymarker02", "category": "other", "x": 5684.6, "z": -20.0, "px": 3018.2, "py": 2044.6, "has_dungeon": false, "has_important": false}, {"id": 6325, "name": "Waymarker02", "category": "other", "x": 6736.5, "z": 6808.0, "px": 3197.7, "py": 3209.9, "has_dungeon": false, "has_important": false}, {"id": 6326, "name": "Waymarker02", "category": "other", "x": -2058.6, "z": -676.5, "px": 1696.7, "py": 1932.5, "has_dungeon": false, "has_important": false}, {"id": 6327, "name": "Waymarker02", "category": "other", "x": 2492.1, "z": 8854.1, "px": 2473.3, "py": 3559.1, "has_dungeon": false, "has_important": false}, {"id": 6328, "name": "Waymarker02", "category": "other", "x": -276.0, "z": 9188.4, "px": 2000.9, "py": 3616.2, "has_dungeon": false, "has_important": false}, {"id": 6329, "name": "Waymarker02", "category": "other", "x": 5540.2, "z": 2155.9, "px": 2993.5, "py": 2415.9, "has_dungeon": false, "has_important": false}, {"id": 6330, "name": "Waymarker02", "category": "other", "x": -2602.4, "z": 7430.3, "px": 1603.9, "py": 3316.1, "has_dungeon": false, "has_important": false}, {"id": 6331, "name": "Waymarker02", "category": "other", "x": 4357.7, "z": -1787.3, "px": 2791.7, "py": 1743.0, "has_dungeon": false, "has_important": false}, {"id": 6332, "name": "Waymarker02", "category": "other", "x": -4231.8, "z": -4017.4, "px": 1325.8, "py": 1362.4, "has_dungeon": false, "has_important": false}, {"id": 6333, "name": "Waymarker02", "category": "other", "x": 616.6, "z": 3650.2, "px": 2153.2, "py": 2671.0, "has_dungeon": false, "has_important": false}, {"id": 6334, "name": "Waymarker02", "category": "other", "x": -370.7, "z": -1316.4, "px": 1984.7, "py": 1823.3, "has_dungeon": false, "has_important": false}, {"id": 6335, "name": "Waymarker02", "category": "other", "x": -136.4, "z": -1140.7, "px": 2024.7, "py": 1853.3, "has_dungeon": false, "has_important": false}, {"id": 6336, "name": "Waymarker02", "category": "other", "x": -2285.9, "z": -517.8, "px": 1657.9, "py": 1959.6, "has_dungeon": false, "has_important": false}, {"id": 6337, "name": "Waymarker02", "category": "other", "x": 3173.3, "z": -2198.2, "px": 2589.6, "py": 1672.8, "has_dungeon": false, "has_important": false}, {"id": 6338, "name": "Waymarker02", "category": "other", "x": 5763.5, "z": -501.5, "px": 3031.6, "py": 1962.4, "has_dungeon": false, "has_important": false}, {"id": 6339, "name": "Waymarker02", "category": "other", "x": 6096.9, "z": 4417.1, "px": 3088.5, "py": 2801.9, "has_dungeon": false, "has_important": false}, {"id": 6340, "name": "Waymarker02", "category": "other", "x": 3380.2, "z": 134.4, "px": 2624.9, "py": 2070.9, "has_dungeon": false, "has_important": false}, {"id": 6341, "name": "Waymarker02", "category": "other", "x": 983.1, "z": 236.2, "px": 2215.8, "py": 2088.3, "has_dungeon": false, "has_important": false}, {"id": 6342, "name": "Waymarker02", "category": "other", "x": -4323.1, "z": -4044.8, "px": 1310.2, "py": 1357.7, "has_dungeon": false, "has_important": false}, {"id": 6343, "name": "Waymarker02", "category": "other", "x": -3789.4, "z": 4620.2, "px": 1401.3, "py": 2836.5, "has_dungeon": false, "has_important": false}, {"id": 6344, "name": "Waymarker02", "category": "other", "x": 1203.2, "z": 113.7, "px": 2253.3, "py": 2067.4, "has_dungeon": false, "has_important": false}, {"id": 6345, "name": "Waymarker02", "category": "other", "x": 2419.6, "z": 8704.6, "px": 2460.9, "py": 3533.6, "has_dungeon": false, "has_important": false}, {"id": 6346, "name": "Waymarker02", "category": "other", "x": 1850.5, "z": -6871.8, "px": 2363.8, "py": 875.2, "has_dungeon": false, "has_important": false}, {"id": 6347, "name": "Waymarker02", "category": "other", "x": -7590.0, "z": -2427.7, "px": 752.6, "py": 1633.7, "has_dungeon": false, "has_important": false}, {"id": 6348, "name": "Waymarker02", "category": "other", "x": -3648.5, "z": 1397.1, "px": 1425.3, "py": 2286.4, "has_dungeon": false, "has_important": false}, {"id": 6349, "name": "Waymarker02", "category": "other", "x": 1241.0, "z": 258.6, "px": 2259.8, "py": 2092.1, "has_dungeon": false, "has_important": false}, {"id": 6350, "name": "Waymarker02", "category": "other", "x": 8345.9, "z": -3913.8, "px": 3472.4, "py": 1380.0, "has_dungeon": false, "has_important": false}, {"id": 6351, "name": "Waymarker02", "category": "other", "x": -2095.7, "z": -447.0, "px": 1690.3, "py": 1971.7, "has_dungeon": false, "has_important": false}, {"id": 6352, "name": "Waymarker02", "category": "other", "x": -1302.0, "z": -4906.6, "px": 1825.8, "py": 1210.6, "has_dungeon": false, "has_important": false}, {"id": 6353, "name": "Waymarker02", "category": "other", "x": -6947.7, "z": -2359.6, "px": 862.3, "py": 1645.3, "has_dungeon": false, "has_important": false}, {"id": 6354, "name": "Waymarker02", "category": "other", "x": 2000.6, "z": -1533.2, "px": 2389.4, "py": 1786.3, "has_dungeon": false, "has_important": false}, {"id": 6355, "name": "Waymarker02", "category": "other", "x": -3962.4, "z": 4440.4, "px": 1371.8, "py": 2805.8, "has_dungeon": false, "has_important": false}, {"id": 6356, "name": "Waymarker02", "category": "other", "x": -3347.3, "z": 6450.4, "px": 1476.7, "py": 3148.9, "has_dungeon": false, "has_important": false}, {"id": 6357, "name": "Waymarker02", "category": "other", "x": 5518.4, "z": 5822.0, "px": 2989.8, "py": 3041.6, "has_dungeon": false, "has_important": false}, {"id": 3655, "name": "WoodFarm1", "category": "other", "x": -1408.0, "z": -1152.0, "px": 1807.7, "py": 1851.4, "has_dungeon": true, "has_important": true}, {"id": 3656, "name": "WoodFarm1", "category": "other", "x": 512.0, "z": 128.0, "px": 2135.4, "py": 2069.8, "has_dungeon": true, "has_important": true}, {"id": 3657, "name": "WoodFarm1", "category": "other", "x": 1088.0, "z": 768.0, "px": 2233.7, "py": 2179.1, "has_dungeon": true, "has_important": true}, {"id": 3658, "name": "WoodFarm1", "category": "other", "x": -1536.0, "z": -832.0, "px": 1785.9, "py": 1906.0, "has_dungeon": true, "has_important": true}, {"id": 3659, "name": "WoodFarm1", "category": "other", "x": 1792.0, "z": 0.0, "px": 2353.8, "py": 2048.0, "has_dungeon": true, "has_important": true}, {"id": 3660, "name": "WoodFarm1", "category": "other", "x": -1472.0, "z": -1344.0, "px": 1796.8, "py": 1818.6, "has_dungeon": true, "has_important": true}, {"id": 3661, "name": "WoodFarm1", "category": "other", "x": 1792.0, "z": -128.0, "px": 2353.8, "py": 2026.2, "has_dungeon": true, "has_important": true}, {"id": 3662, "name": "WoodFarm1", "category": "other", "x": 448.0, "z": 256.0, "px": 2124.5, "py": 2091.7, "has_dungeon": true, "has_important": true}, {"id": 3663, "name": "WoodFarm1", "category": "other", "x": 1024.0, "z": 896.0, "px": 2222.8, "py": 2200.9, "has_dungeon": true, "has_important": true}, {"id": 3664, "name": "WoodFarm1", "category": "other", "x": -1344.0, "z": -768.0, "px": 1818.6, "py": 1916.9, "has_dungeon": true, "has_important": true}, {"id": 3395, "name": "WoodHouse1", "category": "other", "x": 2609.8, "z": -3088.8, "px": 2493.4, "py": 1520.8, "has_dungeon": false, "has_important": true}, {"id": 3396, "name": "WoodHouse1", "category": "other", "x": 235.9, "z": 503.1, "px": 2088.3, "py": 2133.9, "has_dungeon": false, "has_important": false}, {"id": 3397, "name": "WoodHouse1", "category": "other", "x": -1512.3, "z": -1359.8, "px": 1789.9, "py": 1815.9, "has_dungeon": false, "has_important": false}, {"id": 3398, "name": "WoodHouse1", "category": "other", "x": -4887.6, "z": 511.2, "px": 1213.8, "py": 2135.2, "has_dungeon": false, "has_important": true}, {"id": 3399, "name": "WoodHouse1", "category": "other", "x": 390.3, "z": 432.6, "px": 2114.6, "py": 2121.8, "has_dungeon": false, "has_important": false}, {"id": 3400, "name": "WoodHouse1", "category": "other", "x": -3330.3, "z": 3131.7, "px": 1479.6, "py": 2582.5, "has_dungeon": false, "has_important": false}, {"id": 3401, "name": "WoodHouse1", "category": "other", "x": 4105.5, "z": -1489.7, "px": 2748.7, "py": 1793.8, "has_dungeon": false, "has_important": true}, {"id": 3402, "name": "WoodHouse1", "category": "other", "x": 3511.8, "z": -232.1, "px": 2647.3, "py": 2008.4, "has_dungeon": false, "has_important": false}, {"id": 3403, "name": "WoodHouse1", "category": "other", "x": 2768.6, "z": -3013.3, "px": 2520.5, "py": 1533.7, "has_dungeon": false, "has_important": true}, {"id": 3404, "name": "WoodHouse1", "category": "other", "x": 1148.3, "z": -2122.4, "px": 2244.0, "py": 1685.8, "has_dungeon": false, "has_important": true}, {"id": 3405, "name": "WoodHouse1", "category": "other", "x": -4746.9, "z": 593.4, "px": 1237.9, "py": 2149.3, "has_dungeon": false, "has_important": false}, {"id": 3406, "name": "WoodHouse1", "category": "other", "x": 2376.4, "z": 1024.9, "px": 2453.6, "py": 2222.9, "has_dungeon": false, "has_important": true}, {"id": 3407, "name": "WoodHouse1", "category": "other", "x": 3447.0, "z": -1934.2, "px": 2636.3, "py": 1717.9, "has_dungeon": false, "has_important": true}, {"id": 3408, "name": "WoodHouse1", "category": "other", "x": -1656.1, "z": -684.3, "px": 1765.4, "py": 1931.2, "has_dungeon": false, "has_important": true}, {"id": 3409, "name": "WoodHouse1", "category": "other", "x": -115.7, "z": -1933.2, "px": 2028.3, "py": 1718.1, "has_dungeon": false, "has_important": true}, {"id": 3410, "name": "WoodHouse1", "category": "other", "x": 947.7, "z": 3210.1, "px": 2209.7, "py": 2595.9, "has_dungeon": false, "has_important": true}, {"id": 3411, "name": "WoodHouse1", "category": "other", "x": -439.3, "z": 105.7, "px": 1973.0, "py": 2066.0, "has_dungeon": false, "has_important": true}, {"id": 3412, "name": "WoodHouse1", "category": "other", "x": 3120.3, "z": -2576.7, "px": 2580.5, "py": 1608.2, "has_dungeon": false, "has_important": true}, {"id": 3413, "name": "WoodHouse1", "category": "other", "x": -232.5, "z": -49.0, "px": 2008.3, "py": 2039.6, "has_dungeon": false, "has_important": false}, {"id": 3414, "name": "WoodHouse1", "category": "other", "x": 2054.6, "z": -1812.9, "px": 2398.7, "py": 1738.6, "has_dungeon": false, "has_important": false}, {"id": 3575, "name": "WoodHouse10", "category": "other", "x": -4405.0, "z": 1943.0, "px": 1296.2, "py": 2379.6, "has_dungeon": false, "has_important": false}, {"id": 3576, "name": "WoodHouse10", "category": "other", "x": 1072.7, "z": -3832.0, "px": 2231.1, "py": 1394.0, "has_dungeon": false, "has_important": true}, {"id": 3577, "name": "WoodHouse10", "category": "other", "x": 1035.1, "z": 3154.4, "px": 2224.7, "py": 2586.4, "has_dungeon": false, "has_important": false}, {"id": 3578, "name": "WoodHouse10", "category": "other", "x": 1098.1, "z": -2132.1, "px": 2235.4, "py": 1684.1, "has_dungeon": false, "has_important": true}, {"id": 3579, "name": "WoodHouse10", "category": "other", "x": -2878.1, "z": 1962.5, "px": 1556.8, "py": 2382.9, "has_dungeon": false, "has_important": false}, {"id": 3580, "name": "WoodHouse10", "category": "other", "x": 2672.2, "z": -956.5, "px": 2504.1, "py": 1884.8, "has_dungeon": false, "has_important": true}, {"id": 3581, "name": "WoodHouse10", "category": "other", "x": 2688.8, "z": -3126.0, "px": 2506.9, "py": 1514.5, "has_dungeon": false, "has_important": true}, {"id": 3582, "name": "WoodHouse10", "category": "other", "x": 2582.1, "z": -3948.1, "px": 2488.7, "py": 1374.2, "has_dungeon": false, "has_important": true}, {"id": 3583, "name": "WoodHouse10", "category": "other", "x": -2818.1, "z": 817.6, "px": 1567.0, "py": 2187.5, "has_dungeon": false, "has_important": false}, {"id": 3584, "name": "WoodHouse10", "category": "other", "x": -3472.8, "z": -2564.7, "px": 1455.3, "py": 1610.3, "has_dungeon": false, "has_important": false}, {"id": 3585, "name": "WoodHouse10", "category": "other", "x": 1341.7, "z": -2162.7, "px": 2277.0, "py": 1678.9, "has_dungeon": false, "has_important": true}, {"id": 3586, "name": "WoodHouse10", "category": "other", "x": 2964.0, "z": 3774.5, "px": 2553.9, "py": 2692.2, "has_dungeon": false, "has_important": true}, {"id": 3587, "name": "WoodHouse10", "category": "other", "x": 456.1, "z": 214.0, "px": 2125.8, "py": 2084.5, "has_dungeon": false, "has_important": true}, {"id": 3588, "name": "WoodHouse10", "category": "other", "x": -114.9, "z": 82.1, "px": 2028.4, "py": 2062.0, "has_dungeon": false, "has_important": false}, {"id": 3589, "name": "WoodHouse10", "category": "other", "x": -1667.8, "z": -322.9, "px": 1763.4, "py": 1992.9, "has_dungeon": false, "has_important": false}, {"id": 3590, "name": "WoodHouse10", "category": "other", "x": -1843.7, "z": -723.9, "px": 1733.3, "py": 1924.5, "has_dungeon": false, "has_important": true}, {"id": 3591, "name": "WoodHouse10", "category": "other", "x": 1263.7, "z": -2106.5, "px": 2263.7, "py": 1688.5, "has_dungeon": false, "has_important": false}, {"id": 3592, "name": "WoodHouse10", "category": "other", "x": -1857.4, "z": -131.6, "px": 1731.0, "py": 2025.5, "has_dungeon": false, "has_important": true}, {"id": 3593, "name": "WoodHouse10", "category": "other", "x": 4333.8, "z": -1094.3, "px": 2787.6, "py": 1861.2, "has_dungeon": false, "has_important": false}, {"id": 3594, "name": "WoodHouse10", "category": "other", "x": -587.8, "z": 212.4, "px": 1947.7, "py": 2084.2, "has_dungeon": false, "has_important": true}, {"id": 3595, "name": "WoodHouse11", "category": "other", "x": -3632.8, "z": 1265.6, "px": 1428.0, "py": 2264.0, "has_dungeon": false, "has_important": true}, {"id": 3596, "name": "WoodHouse11", "category": "other", "x": -2364.5, "z": -1716.1, "px": 1644.5, "py": 1755.1, "has_dungeon": false, "has_important": false}, {"id": 3597, "name": "WoodHouse11", "category": "other", "x": -1856.5, "z": -780.5, "px": 1731.2, "py": 1914.8, "has_dungeon": false, "has_important": true}, {"id": 3598, "name": "WoodHouse11", "category": "other", "x": -3760.0, "z": 3058.2, "px": 1406.3, "py": 2569.9, "has_dungeon": false, "has_important": false}, {"id": 3599, "name": "WoodHouse11", "category": "other", "x": -470.2, "z": -1234.9, "px": 1967.8, "py": 1837.2, "has_dungeon": false, "has_important": false}, {"id": 3600, "name": "WoodHouse11", "category": "other", "x": 853.7, "z": -117.2, "px": 2193.7, "py": 2028.0, "has_dungeon": false, "has_important": true}, {"id": 3601, "name": "WoodHouse11", "category": "other", "x": -49.4, "z": -236.4, "px": 2039.6, "py": 2007.7, "has_dungeon": false, "has_important": true}, {"id": 3602, "name": "WoodHouse11", "category": "other", "x": -1523.4, "z": -757.6, "px": 1788.0, "py": 1918.7, "has_dungeon": false, "has_important": true}, {"id": 3603, "name": "WoodHouse11", "category": "other", "x": 3134.5, "z": -2684.7, "px": 2583.0, "py": 1589.8, "has_dungeon": false, "has_important": true}, {"id": 3604, "name": "WoodHouse11", "category": "other", "x": -309.8, "z": -4018.4, "px": 1995.1, "py": 1362.2, "has_dungeon": false, "has_important": true}, {"id": 3605, "name": "WoodHouse11", "category": "other", "x": -1596.1, "z": -772.3, "px": 1775.6, "py": 1916.2, "has_dungeon": false, "has_important": true}, {"id": 3606, "name": "WoodHouse11", "category": "other", "x": -1659.1, "z": -1732.8, "px": 1764.8, "py": 1752.3, "has_dungeon": false, "has_important": false}, {"id": 3607, "name": "WoodHouse11", "category": "other", "x": -4737.3, "z": 1030.6, "px": 1239.5, "py": 2223.9, "has_dungeon": false, "has_important": false}, {"id": 3608, "name": "WoodHouse11", "category": "other", "x": -1220.2, "z": -524.5, "px": 1839.8, "py": 1958.5, "has_dungeon": false, "has_important": true}, {"id": 3609, "name": "WoodHouse11", "category": "other", "x": 178.4, "z": 3725.8, "px": 2078.4, "py": 2683.9, "has_dungeon": false, "has_important": true}, {"id": 3610, "name": "WoodHouse11", "category": "other", "x": -2801.2, "z": 1871.2, "px": 1569.9, "py": 2367.4, "has_dungeon": false, "has_important": false}, {"id": 3611, "name": "WoodHouse11", "category": "other", "x": 1745.2, "z": 1167.2, "px": 2345.8, "py": 2247.2, "has_dungeon": false, "has_important": false}, {"id": 3612, "name": "WoodHouse11", "category": "other", "x": -318.2, "z": -4083.8, "px": 1993.7, "py": 1351.0, "has_dungeon": false, "has_important": true}, {"id": 3613, "name": "WoodHouse11", "category": "other", "x": 4296.3, "z": -1354.8, "px": 2781.2, "py": 1816.8, "has_dungeon": false, "has_important": false}, {"id": 3614, "name": "WoodHouse11", "category": "other", "x": -3532.3, "z": 2708.2, "px": 1445.2, "py": 2510.2, "has_dungeon": false, "has_important": true}, {"id": 3615, "name": "WoodHouse12", "category": "other", "x": -1979.3, "z": 61.8, "px": 1710.2, "py": 2058.5, "has_dungeon": false, "has_important": true}, {"id": 3616, "name": "WoodHouse12", "category": "other", "x": 1451.6, "z": -210.7, "px": 2295.7, "py": 2012.0, "has_dungeon": false, "has_important": true}, {"id": 3617, "name": "WoodHouse12", "category": "other", "x": 2363.1, "z": -3010.2, "px": 2451.3, "py": 1534.3, "has_dungeon": false, "has_important": true}, {"id": 3618, "name": "WoodHouse12", "category": "other", "x": 2855.0, "z": -2514.8, "px": 2535.3, "py": 1618.8, "has_dungeon": false, "has_important": true}, {"id": 3619, "name": "WoodHouse12", "category": "other", "x": -1680.1, "z": -566.6, "px": 1761.3, "py": 1951.3, "has_dungeon": false, "has_important": true}, {"id": 3620, "name": "WoodHouse12", "category": "other", "x": 2509.8, "z": -3195.9, "px": 2476.3, "py": 1502.6, "has_dungeon": false, "has_important": true}, {"id": 3621, "name": "WoodHouse12", "category": "other", "x": 3652.5, "z": -371.3, "px": 2671.4, "py": 1984.6, "has_dungeon": false, "has_important": true}, {"id": 3622, "name": "WoodHouse12", "category": "other", "x": 2031.4, "z": -1733.7, "px": 2394.7, "py": 1752.1, "has_dungeon": false, "has_important": true}, {"id": 3623, "name": "WoodHouse12", "category": "other", "x": 2738.5, "z": -3918.0, "px": 2515.4, "py": 1379.3, "has_dungeon": false, "has_important": true}, {"id": 3624, "name": "WoodHouse12", "category": "other", "x": -3814.9, "z": 2904.6, "px": 1396.9, "py": 2543.7, "has_dungeon": false, "has_important": true}, {"id": 3625, "name": "WoodHouse12", "category": "other", "x": 2540.8, "z": -3130.1, "px": 2481.6, "py": 1513.8, "has_dungeon": false, "has_important": true}, {"id": 3626, "name": "WoodHouse12", "category": "other", "x": 0.0, "z": 396.5, "px": 2048.0, "py": 2115.7, "has_dungeon": false, "has_important": true}, {"id": 3627, "name": "WoodHouse12", "category": "other", "x": 901.1, "z": 3305.6, "px": 2201.8, "py": 2612.2, "has_dungeon": false, "has_important": true}, {"id": 3628, "name": "WoodHouse12", "category": "other", "x": 3772.4, "z": -1578.9, "px": 2691.8, "py": 1778.5, "has_dungeon": false, "has_important": true}, {"id": 3629, "name": "WoodHouse12", "category": "other", "x": -113.3, "z": 551.4, "px": 2028.7, "py": 2142.1, "has_dungeon": false, "has_important": true}, {"id": 3630, "name": "WoodHouse12", "category": "other", "x": 4331.7, "z": -1257.7, "px": 2787.3, "py": 1833.4, "has_dungeon": false, "has_important": true}, {"id": 3631, "name": "WoodHouse12", "category": "other", "x": 2601.7, "z": -3862.8, "px": 2492.0, "py": 1388.7, "has_dungeon": false, "has_important": true}, {"id": 3632, "name": "WoodHouse12", "category": "other", "x": 2805.1, "z": -696.2, "px": 2526.7, "py": 1929.2, "has_dungeon": false, "has_important": true}, {"id": 3633, "name": "WoodHouse12", "category": "other", "x": -1331.6, "z": -935.2, "px": 1820.7, "py": 1888.4, "has_dungeon": false, "has_important": true}, {"id": 3634, "name": "WoodHouse12", "category": "other", "x": 3708.0, "z": -1428.1, "px": 2680.8, "py": 1804.3, "has_dungeon": false, "has_important": true}, {"id": 3635, "name": "WoodHouse13", "category": "other", "x": 278.0, "z": -1531.2, "px": 2095.4, "py": 1786.7, "has_dungeon": false, "has_important": true}, {"id": 3636, "name": "WoodHouse13", "category": "other", "x": 1579.4, "z": -186.7, "px": 2317.6, "py": 2016.1, "has_dungeon": false, "has_important": false}, {"id": 3637, "name": "WoodHouse13", "category": "other", "x": 272.2, "z": 172.7, "px": 2094.5, "py": 2077.5, "has_dungeon": false, "has_important": false}, {"id": 3638, "name": "WoodHouse13", "category": "other", "x": -2538.5, "z": 299.4, "px": 1614.8, "py": 2099.1, "has_dungeon": false, "has_important": false}, {"id": 3639, "name": "WoodHouse13", "category": "other", "x": -239.8, "z": -1659.1, "px": 2007.1, "py": 1764.8, "has_dungeon": false, "has_important": false}, {"id": 3640, "name": "WoodHouse13", "category": "other", "x": -2192.4, "z": 85.6, "px": 1673.8, "py": 2062.6, "has_dungeon": false, "has_important": true}, {"id": 3641, "name": "WoodHouse13", "category": "other", "x": 4304.3, "z": -1144.4, "px": 2782.6, "py": 1852.7, "has_dungeon": false, "has_important": true}, {"id": 3642, "name": "WoodHouse13", "category": "other", "x": -2070.2, "z": -1737.2, "px": 1694.7, "py": 1751.5, "has_dungeon": false, "has_important": true}, {"id": 3643, "name": "WoodHouse13", "category": "other", "x": 2427.0, "z": -622.7, "px": 2462.2, "py": 1941.7, "has_dungeon": false, "has_important": true}, {"id": 3644, "name": "WoodHouse13", "category": "other", "x": 2556.3, "z": -3309.3, "px": 2484.3, "py": 1483.2, "has_dungeon": false, "has_important": true}, {"id": 3645, "name": "WoodHouse13", "category": "other", "x": -3525.9, "z": 3020.9, "px": 1446.2, "py": 2563.6, "has_dungeon": false, "has_important": true}, {"id": 3646, "name": "WoodHouse13", "category": "other", "x": 4224.7, "z": -1525.5, "px": 2769.0, "py": 1787.6, "has_dungeon": false, "has_important": true}, {"id": 3647, "name": "WoodHouse13", "category": "other", "x": 3498.0, "z": -175.1, "px": 2645.0, "py": 2018.1, "has_dungeon": false, "has_important": true}, {"id": 3648, "name": "WoodHouse13", "category": "other", "x": -1647.1, "z": -1476.3, "px": 1766.9, "py": 1796.0, "has_dungeon": false, "has_important": true}, {"id": 3649, "name": "WoodHouse13", "category": "other", "x": 58.7, "z": -333.0, "px": 2058.0, "py": 1991.2, "has_dungeon": false, "has_important": false}, {"id": 3650, "name": "WoodHouse13", "category": "other", "x": -1613.2, "z": -723.9, "px": 1772.7, "py": 1924.5, "has_dungeon": false, "has_important": false}, {"id": 3651, "name": "WoodHouse13", "category": "other", "x": -205.8, "z": 386.3, "px": 2012.9, "py": 2113.9, "has_dungeon": false, "has_important": true}, {"id": 3652, "name": "WoodHouse13", "category": "other", "x": 3216.2, "z": -142.8, "px": 2596.9, "py": 2023.6, "has_dungeon": false, "has_important": true}, {"id": 3653, "name": "WoodHouse13", "category": "other", "x": 327.1, "z": -1302.9, "px": 2103.8, "py": 1825.6, "has_dungeon": false, "has_important": true}, {"id": 3654, "name": "WoodHouse13", "category": "other", "x": -4716.6, "z": 813.8, "px": 1243.0, "py": 2186.9, "has_dungeon": false, "has_important": false}, {"id": 3415, "name": "WoodHouse2", "category": "other", "x": 67.3, "z": -4098.4, "px": 2059.5, "py": 1348.5, "has_dungeon": false, "has_important": true}, {"id": 3416, "name": "WoodHouse2", "category": "other", "x": 2572.5, "z": -824.7, "px": 2487.0, "py": 1907.3, "has_dungeon": false, "has_important": false}, {"id": 3417, "name": "WoodHouse2", "category": "other", "x": -2105.3, "z": -1744.1, "px": 1688.7, "py": 1750.3, "has_dungeon": false, "has_important": true}, {"id": 3418, "name": "WoodHouse2", "category": "other", "x": 2412.1, "z": -3893.5, "px": 2459.7, "py": 1383.5, "has_dungeon": false, "has_important": true}, {"id": 3419, "name": "WoodHouse2", "category": "other", "x": -327.0, "z": -1011.9, "px": 1992.2, "py": 1875.3, "has_dungeon": false, "has_important": true}, {"id": 3420, "name": "WoodHouse2", "category": "other", "x": 967.3, "z": 515.3, "px": 2213.1, "py": 2135.9, "has_dungeon": false, "has_important": true}, {"id": 3421, "name": "WoodHouse2", "category": "other", "x": -4996.8, "z": 587.0, "px": 1195.2, "py": 2148.2, "has_dungeon": false, "has_important": true}, {"id": 3422, "name": "WoodHouse2", "category": "other", "x": -1658.3, "z": 4648.2, "px": 1765.0, "py": 2841.3, "has_dungeon": false, "has_important": true}, {"id": 3423, "name": "WoodHouse2", "category": "other", "x": -2071.9, "z": 1961.0, "px": 1694.4, "py": 2382.7, "has_dungeon": false, "has_important": true}, {"id": 3424, "name": "WoodHouse2", "category": "other", "x": 328.2, "z": 391.3, "px": 2104.0, "py": 2114.8, "has_dungeon": false, "has_important": true}, {"id": 3425, "name": "WoodHouse2", "category": "other", "x": -493.2, "z": -1389.4, "px": 1963.8, "py": 1810.9, "has_dungeon": false, "has_important": true}, {"id": 3426, "name": "WoodHouse2", "category": "other", "x": -330.4, "z": -910.3, "px": 1991.6, "py": 1892.6, "has_dungeon": false, "has_important": false}, {"id": 3427, "name": "WoodHouse2", "category": "other", "x": -395.0, "z": 204.1, "px": 1980.6, "py": 2082.8, "has_dungeon": false, "has_important": true}, {"id": 3428, "name": "WoodHouse2", "category": "other", "x": -399.9, "z": 106.7, "px": 1979.8, "py": 2066.2, "has_dungeon": false, "has_important": true}, {"id": 3429, "name": "WoodHouse2", "category": "other", "x": 2025.9, "z": -1851.3, "px": 2393.8, "py": 1732.0, "has_dungeon": false, "has_important": true}, {"id": 3430, "name": "WoodHouse2", "category": "other", "x": -179.2, "z": -296.9, "px": 2017.4, "py": 1997.3, "has_dungeon": false, "has_important": false}, {"id": 3431, "name": "WoodHouse2", "category": "other", "x": -1851.1, "z": -393.2, "px": 1732.1, "py": 1980.9, "has_dungeon": false, "has_important": false}, {"id": 3432, "name": "WoodHouse2", "category": "other", "x": 2472.8, "z": -2409.6, "px": 2470.0, "py": 1636.8, "has_dungeon": false, "has_important": true}, {"id": 3433, "name": "WoodHouse2", "category": "other", "x": -3707.5, "z": -2126.1, "px": 1415.3, "py": 1685.1, "has_dungeon": false, "has_important": true}, {"id": 3434, "name": "WoodHouse2", "category": "other", "x": 1211.8, "z": 641.4, "px": 2254.8, "py": 2157.5, "has_dungeon": false, "has_important": false}, {"id": 3435, "name": "WoodHouse3", "category": "other", "x": -3712.5, "z": -2605.3, "px": 1414.4, "py": 1603.4, "has_dungeon": false, "has_important": true}, {"id": 3436, "name": "WoodHouse3", "category": "other", "x": -3436.2, "z": 3017.2, "px": 1461.6, "py": 2562.9, "has_dungeon": false, "has_important": true}, {"id": 3437, "name": "WoodHouse3", "category": "other", "x": -266.4, "z": -272.9, "px": 2002.5, "py": 2001.4, "has_dungeon": false, "has_important": true}, {"id": 3438, "name": "WoodHouse3", "category": "other", "x": 1485.7, "z": -238.5, "px": 2301.6, "py": 2007.3, "has_dungeon": false, "has_important": true}, {"id": 3439, "name": "WoodHouse3", "category": "other", "x": -2032.8, "z": -4557.7, "px": 1701.1, "py": 1270.2, "has_dungeon": false, "has_important": true}, {"id": 3440, "name": "WoodHouse3", "category": "other", "x": -4867.2, "z": 341.3, "px": 1217.3, "py": 2106.2, "has_dungeon": false, "has_important": true}, {"id": 3441, "name": "WoodHouse3", "category": "other", "x": -3246.5, "z": 3275.2, "px": 1493.9, "py": 2607.0, "has_dungeon": false, "has_important": true}, {"id": 3442, "name": "WoodHouse3", "category": "other", "x": -3344.6, "z": 2986.3, "px": 1477.2, "py": 2557.7, "has_dungeon": false, "has_important": true}, {"id": 3443, "name": "WoodHouse3", "category": "other", "x": -1745.7, "z": -175.2, "px": 1750.1, "py": 2018.1, "has_dungeon": false, "has_important": true}, {"id": 3444, "name": "WoodHouse3", "category": "other", "x": -404.7, "z": 54.8, "px": 1978.9, "py": 2057.4, "has_dungeon": false, "has_important": true}, {"id": 3445, "name": "WoodHouse3", "category": "other", "x": -3468.2, "z": 2704.5, "px": 1456.1, "py": 2509.6, "has_dungeon": false, "has_important": true}, {"id": 3446, "name": "WoodHouse3", "category": "other", "x": 3440.0, "z": -2029.9, "px": 2635.1, "py": 1701.6, "has_dungeon": false, "has_important": true}, {"id": 3447, "name": "WoodHouse3", "category": "other", "x": -2.5, "z": -1802.1, "px": 2047.6, "py": 1740.4, "has_dungeon": false, "has_important": true}, {"id": 3448, "name": "WoodHouse3", "category": "other", "x": 1426.6, "z": 508.6, "px": 2291.5, "py": 2134.8, "has_dungeon": false, "has_important": true}, {"id": 3449, "name": "WoodHouse3", "category": "other", "x": 1094.8, "z": -117.0, "px": 2234.8, "py": 2028.0, "has_dungeon": false, "has_important": true}, {"id": 3450, "name": "WoodHouse3", "category": "other", "x": 4081.3, "z": -1264.8, "px": 2744.5, "py": 1832.1, "has_dungeon": false, "has_important": true}, {"id": 3451, "name": "WoodHouse3", "category": "other", "x": -146.8, "z": 389.5, "px": 2022.9, "py": 2114.5, "has_dungeon": false, "has_important": true}, {"id": 3452, "name": "WoodHouse3", "category": "other", "x": 2360.0, "z": -777.5, "px": 2450.8, "py": 1915.3, "has_dungeon": false, "has_important": true}, {"id": 3453, "name": "WoodHouse3", "category": "other", "x": 3124.6, "z": -2617.4, "px": 2581.3, "py": 1601.3, "has_dungeon": false, "has_important": true}, {"id": 3454, "name": "WoodHouse3", "category": "other", "x": 336.5, "z": -49.2, "px": 2105.4, "py": 2039.6, "has_dungeon": false, "has_important": true}, {"id": 3455, "name": "WoodHouse4", "category": "other", "x": 2682.6, "z": -853.3, "px": 2505.8, "py": 1902.4, "has_dungeon": false, "has_important": false}, {"id": 3456, "name": "WoodHouse4", "category": "other", "x": 977.3, "z": 888.7, "px": 2214.8, "py": 2199.7, "has_dungeon": false, "has_important": false}, {"id": 3457, "name": "WoodHouse4", "category": "other", "x": -452.2, "z": 76.9, "px": 1970.8, "py": 2061.1, "has_dungeon": false, "has_important": true}, {"id": 3458, "name": "WoodHouse4", "category": "other", "x": 3950.0, "z": -1581.7, "px": 2722.1, "py": 1778.1, "has_dungeon": false, "has_important": true}, {"id": 3459, "name": "WoodHouse4", "category": "other", "x": 1017.9, "z": -78.7, "px": 2221.7, "py": 2034.6, "has_dungeon": false, "has_important": false}, {"id": 3460, "name": "WoodHouse4", "category": "other", "x": -4046.4, "z": -2171.6, "px": 1357.4, "py": 1677.4, "has_dungeon": false, "has_important": false}, {"id": 3461, "name": "WoodHouse4", "category": "other", "x": 3445.4, "z": -1796.8, "px": 2636.0, "py": 1741.3, "has_dungeon": false, "has_important": false}, {"id": 3462, "name": "WoodHouse4", "category": "other", "x": 190.9, "z": -371.0, "px": 2080.6, "py": 1984.7, "has_dungeon": false, "has_important": true}, {"id": 3463, "name": "WoodHouse4", "category": "other", "x": -380.7, "z": -965.9, "px": 1983.0, "py": 1883.2, "has_dungeon": false, "has_important": false}, {"id": 3464, "name": "WoodHouse4", "category": "other", "x": 2711.8, "z": -720.6, "px": 2510.8, "py": 1925.0, "has_dungeon": false, "has_important": false}, {"id": 3465, "name": "WoodHouse4", "category": "other", "x": -1661.8, "z": 3088.9, "px": 1764.4, "py": 2575.2, "has_dungeon": false, "has_important": false}, {"id": 3466, "name": "WoodHouse4", "category": "other", "x": 3881.2, "z": -1995.8, "px": 2710.4, "py": 1707.4, "has_dungeon": false, "has_important": false}, {"id": 3467, "name": "WoodHouse4", "category": "other", "x": 2230.1, "z": -2963.6, "px": 2428.6, "py": 1542.2, "has_dungeon": false, "has_important": false}, {"id": 3468, "name": "WoodHouse4", "category": "other", "x": 331.6, "z": -198.6, "px": 2104.6, "py": 2014.1, "has_dungeon": false, "has_important": false}, {"id": 3469, "name": "WoodHouse4", "category": "other", "x": -3735.7, "z": -2573.6, "px": 1410.4, "py": 1608.8, "has_dungeon": false, "has_important": true}, {"id": 3470, "name": "WoodHouse4", "category": "other", "x": -4688.7, "z": 716.6, "px": 1247.8, "py": 2170.3, "has_dungeon": false, "has_important": false}, {"id": 3471, "name": "WoodHouse4", "category": "other", "x": -2249.7, "z": -1617.0, "px": 1664.1, "py": 1772.0, "has_dungeon": false, "has_important": false}, {"id": 3472, "name": "WoodHouse4", "category": "other", "x": 277.3, "z": -335.3, "px": 2095.3, "py": 1990.8, "has_dungeon": false, "has_important": false}, {"id": 3473, "name": "WoodHouse4", "category": "other", "x": -1090.5, "z": -510.3, "px": 1861.9, "py": 1960.9, "has_dungeon": false, "has_important": true}, {"id": 3474, "name": "WoodHouse4", "category": "other", "x": 277.5, "z": 48.1, "px": 2095.4, "py": 2056.2, "has_dungeon": false, "has_important": false}, {"id": 3475, "name": "WoodHouse5", "category": "other", "x": 4367.2, "z": -1334.6, "px": 2793.3, "py": 1820.2, "has_dungeon": false, "has_important": false}, {"id": 3476, "name": "WoodHouse5", "category": "other", "x": -67.2, "z": -2034.9, "px": 2036.5, "py": 1700.7, "has_dungeon": false, "has_important": true}, {"id": 3477, "name": "WoodHouse5", "category": "other", "x": 189.6, "z": -1746.8, "px": 2080.4, "py": 1749.9, "has_dungeon": false, "has_important": false}, {"id": 3478, "name": "WoodHouse5", "category": "other", "x": -198.8, "z": -52.2, "px": 2014.1, "py": 2039.1, "has_dungeon": false, "has_important": true}, {"id": 3479, "name": "WoodHouse5", "category": "other", "x": -4152.6, "z": -2109.7, "px": 1339.3, "py": 1687.9, "has_dungeon": false, "has_important": false}, {"id": 3480, "name": "WoodHouse5", "category": "other", "x": 3383.4, "z": -1969.4, "px": 2625.4, "py": 1711.9, "has_dungeon": false, "has_important": false}, {"id": 3481, "name": "WoodHouse5", "category": "other", "x": 1102.7, "z": 910.1, "px": 2236.2, "py": 2203.3, "has_dungeon": false, "has_important": false}, {"id": 3482, "name": "WoodHouse5", "category": "other", "x": 3861.6, "z": -1970.1, "px": 2707.0, "py": 1711.8, "has_dungeon": false, "has_important": false}, {"id": 3483, "name": "WoodHouse5", "category": "other", "x": -1981.6, "z": 240.8, "px": 1709.8, "py": 2089.1, "has_dungeon": false, "has_important": false}, {"id": 3484, "name": "WoodHouse5", "category": "other", "x": -4909.0, "z": 330.2, "px": 1210.2, "py": 2104.4, "has_dungeon": false, "has_important": false}, {"id": 3485, "name": "WoodHouse5", "category": "other", "x": -2033.3, "z": 143.7, "px": 1701.0, "py": 2072.5, "has_dungeon": false, "has_important": false}, {"id": 3486, "name": "WoodHouse5", "category": "other", "x": 814.2, "z": -2109.4, "px": 2187.0, "py": 1688.0, "has_dungeon": false, "has_important": false}, {"id": 3487, "name": "WoodHouse5", "category": "other", "x": 3768.2, "z": -1676.1, "px": 2691.1, "py": 1761.9, "has_dungeon": false, "has_important": true}, {"id": 3488, "name": "WoodHouse5", "category": "other", "x": 4305.4, "z": -1518.6, "px": 2782.8, "py": 1788.8, "has_dungeon": false, "has_important": false}, {"id": 3489, "name": "WoodHouse5", "category": "other", "x": -3280.5, "z": 3001.8, "px": 1488.1, "py": 2560.3, "has_dungeon": false, "has_important": false}, {"id": 3490, "name": "WoodHouse5", "category": "other", "x": 3713.3, "z": -1512.3, "px": 2681.7, "py": 1789.9, "has_dungeon": false, "has_important": false}, {"id": 3491, "name": "WoodHouse5", "category": "other", "x": -1781.4, "z": 3156.6, "px": 1744.0, "py": 2586.7, "has_dungeon": false, "has_important": true}, {"id": 3492, "name": "WoodHouse5", "category": "other", "x": 120.0, "z": -125.4, "px": 2068.5, "py": 2026.6, "has_dungeon": false, "has_important": false}, {"id": 3493, "name": "WoodHouse5", "category": "other", "x": 3859.0, "z": -1364.0, "px": 2706.6, "py": 1815.2, "has_dungeon": false, "has_important": false}, {"id": 3494, "name": "WoodHouse5", "category": "other", "x": -1192.5, "z": -558.6, "px": 1844.5, "py": 1952.7, "has_dungeon": false, "has_important": true}, {"id": 3495, "name": "WoodHouse6", "category": "other", "x": -4101.2, "z": 1875.1, "px": 1348.1, "py": 2368.0, "has_dungeon": false, "has_important": true}, {"id": 3496, "name": "WoodHouse6", "category": "other", "x": 317.9, "z": 65.6, "px": 2102.3, "py": 2059.2, "has_dungeon": false, "has_important": true}, {"id": 3497, "name": "WoodHouse6", "category": "other", "x": -3415.8, "z": 3189.7, "px": 1465.0, "py": 2592.4, "has_dungeon": false, "has_important": true}, {"id": 3498, "name": "WoodHouse6", "category": "other", "x": -1542.4, "z": -876.2, "px": 1784.8, "py": 1898.5, "has_dungeon": false, "has_important": true}, {"id": 3499, "name": "WoodHouse6", "category": "other", "x": -3394.5, "z": 2921.0, "px": 1468.7, "py": 2546.5, "has_dungeon": false, "has_important": true}, {"id": 3500, "name": "WoodHouse6", "category": "other", "x": -3774.5, "z": -2102.1, "px": 1403.8, "py": 1689.2, "has_dungeon": false, "has_important": true}, {"id": 3501, "name": "WoodHouse6", "category": "other", "x": -3284.8, "z": 3066.8, "px": 1487.4, "py": 2571.4, "has_dungeon": false, "has_important": true}, {"id": 3502, "name": "WoodHouse6", "category": "other", "x": 3923.2, "z": -1462.7, "px": 2717.6, "py": 1798.4, "has_dungeon": false, "has_important": true}, {"id": 3503, "name": "WoodHouse6", "category": "other", "x": -4944.1, "z": 595.3, "px": 1204.2, "py": 2149.6, "has_dungeon": false, "has_important": true}, {"id": 3504, "name": "WoodHouse6", "category": "other", "x": -1398.1, "z": -653.2, "px": 1809.4, "py": 1936.5, "has_dungeon": false, "has_important": true}, {"id": 3505, "name": "WoodHouse6", "category": "other", "x": -2037.3, "z": 80.7, "px": 1700.3, "py": 2061.8, "has_dungeon": false, "has_important": true}, {"id": 3506, "name": "WoodHouse6", "category": "other", "x": -525.4, "z": -3758.9, "px": 1958.3, "py": 1406.5, "has_dungeon": false, "has_important": true}, {"id": 3507, "name": "WoodHouse6", "category": "other", "x": -5050.5, "z": 497.1, "px": 1186.0, "py": 2132.8, "has_dungeon": false, "has_important": true}, {"id": 3508, "name": "WoodHouse6", "category": "other", "x": 2742.7, "z": -2452.6, "px": 2516.1, "py": 1629.4, "has_dungeon": false, "has_important": true}, {"id": 3509, "name": "WoodHouse6", "category": "other", "x": -1032.0, "z": -587.2, "px": 1871.9, "py": 1947.8, "has_dungeon": false, "has_important": true}, {"id": 3510, "name": "WoodHouse6", "category": "other", "x": -2096.9, "z": -1841.5, "px": 1690.1, "py": 1733.7, "has_dungeon": false, "has_important": true}, {"id": 3511, "name": "WoodHouse6", "category": "other", "x": -3332.2, "z": 1429.2, "px": 1479.3, "py": 2291.9, "has_dungeon": false, "has_important": true}, {"id": 3512, "name": "WoodHouse6", "category": "other", "x": 4016.2, "z": -1326.5, "px": 2733.4, "py": 1821.6, "has_dungeon": false, "has_important": true}, {"id": 3513, "name": "WoodHouse6", "category": "other", "x": 2870.4, "z": -2933.2, "px": 2537.9, "py": 1547.4, "has_dungeon": false, "has_important": true}, {"id": 3514, "name": "WoodHouse6", "category": "other", "x": -1577.2, "z": -1270.1, "px": 1778.8, "py": 1831.2, "has_dungeon": false, "has_important": true}, {"id": 3515, "name": "WoodHouse7", "category": "other", "x": -4241.6, "z": 1942.1, "px": 1324.1, "py": 2379.5, "has_dungeon": false, "has_important": true}, {"id": 3516, "name": "WoodHouse7", "category": "other", "x": -459.4, "z": -898.7, "px": 1969.6, "py": 1894.6, "has_dungeon": false, "has_important": true}, {"id": 3517, "name": "WoodHouse7", "category": "other", "x": 332.1, "z": -276.9, "px": 2104.7, "py": 2000.7, "has_dungeon": false, "has_important": true}, {"id": 3518, "name": "WoodHouse7", "category": "other", "x": 2760.0, "z": -2382.7, "px": 2519.0, "py": 1641.4, "has_dungeon": false, "has_important": true}, {"id": 3519, "name": "WoodHouse7", "category": "other", "x": 1108.5, "z": 2152.5, "px": 2237.2, "py": 2415.4, "has_dungeon": false, "has_important": false}, {"id": 3520, "name": "WoodHouse7", "category": "other", "x": -2218.5, "z": 2059.8, "px": 1669.4, "py": 2399.5, "has_dungeon": false, "has_important": false}, {"id": 3521, "name": "WoodHouse7", "category": "other", "x": 1132.4, "z": -131.1, "px": 2241.3, "py": 2025.6, "has_dungeon": false, "has_important": true}, {"id": 3522, "name": "WoodHouse7", "category": "other", "x": -1711.7, "z": -819.7, "px": 1755.9, "py": 1908.1, "has_dungeon": false, "has_important": true}, {"id": 3523, "name": "WoodHouse7", "category": "other", "x": -233.7, "z": 266.7, "px": 2008.1, "py": 2093.5, "has_dungeon": false, "has_important": false}, {"id": 3524, "name": "WoodHouse7", "category": "other", "x": -1527.2, "z": -940.9, "px": 1787.4, "py": 1887.4, "has_dungeon": false, "has_important": false}, {"id": 3525, "name": "WoodHouse7", "category": "other", "x": 2990.2, "z": 2616.7, "px": 2558.3, "py": 2494.6, "has_dungeon": false, "has_important": false}, {"id": 3526, "name": "WoodHouse7", "category": "other", "x": -233.0, "z": 387.1, "px": 2008.2, "py": 2114.1, "has_dungeon": false, "has_important": true}, {"id": 3527, "name": "WoodHouse7", "category": "other", "x": -237.3, "z": -310.9, "px": 2007.5, "py": 1994.9, "has_dungeon": false, "has_important": false}, {"id": 3528, "name": "WoodHouse7", "category": "other", "x": 2956.9, "z": -2696.8, "px": 2552.6, "py": 1587.7, "has_dungeon": false, "has_important": false}, {"id": 3529, "name": "WoodHouse7", "category": "other", "x": -2409.4, "z": 388.7, "px": 1636.8, "py": 2114.3, "has_dungeon": false, "has_important": true}, {"id": 3530, "name": "WoodHouse7", "category": "other", "x": -3477.4, "z": 2923.3, "px": 1454.5, "py": 2546.9, "has_dungeon": false, "has_important": true}, {"id": 3531, "name": "WoodHouse7", "category": "other", "x": 2756.9, "z": 959.4, "px": 2518.5, "py": 2211.7, "has_dungeon": false, "has_important": false}, {"id": 3532, "name": "WoodHouse7", "category": "other", "x": -2237.3, "z": 4425.5, "px": 1666.2, "py": 2803.3, "has_dungeon": false, "has_important": true}, {"id": 3533, "name": "WoodHouse7", "category": "other", "x": -372.3, "z": 5.5, "px": 1984.5, "py": 2048.9, "has_dungeon": false, "has_important": true}, {"id": 3534, "name": "WoodHouse7", "category": "other", "x": -444.7, "z": -45.1, "px": 1972.1, "py": 2040.3, "has_dungeon": false, "has_important": true}, {"id": 3535, "name": "WoodHouse8", "category": "other", "x": 4178.1, "z": -1459.1, "px": 2761.1, "py": 1799.0, "has_dungeon": false, "has_important": true}, {"id": 3536, "name": "WoodHouse8", "category": "other", "x": 106.7, "z": 447.6, "px": 2066.2, "py": 2124.4, "has_dungeon": false, "has_important": true}, {"id": 3537, "name": "WoodHouse8", "category": "other", "x": -267.4, "z": 456.2, "px": 2002.4, "py": 2125.9, "has_dungeon": false, "has_important": false}, {"id": 3538, "name": "WoodHouse8", "category": "other", "x": -3055.5, "z": 3075.7, "px": 1526.5, "py": 2572.9, "has_dungeon": false, "has_important": true}, {"id": 3539, "name": "WoodHouse8", "category": "other", "x": -2759.6, "z": 1876.3, "px": 1577.0, "py": 2368.2, "has_dungeon": false, "has_important": false}, {"id": 3540, "name": "WoodHouse8", "category": "other", "x": 2675.5, "z": -875.6, "px": 2504.6, "py": 1898.6, "has_dungeon": false, "has_important": false}, {"id": 3541, "name": "WoodHouse8", "category": "other", "x": 1277.0, "z": 518.2, "px": 2265.9, "py": 2136.4, "has_dungeon": false, "has_important": false}, {"id": 3542, "name": "WoodHouse8", "category": "other", "x": -1801.1, "z": -956.6, "px": 1740.6, "py": 1884.7, "has_dungeon": false, "has_important": false}, {"id": 3543, "name": "WoodHouse8", "category": "other", "x": 3793.5, "z": -1401.7, "px": 2695.4, "py": 1808.8, "has_dungeon": false, "has_important": true}, {"id": 3544, "name": "WoodHouse8", "category": "other", "x": -206.3, "z": -145.2, "px": 2012.8, "py": 2023.2, "has_dungeon": false, "has_important": true}, {"id": 3545, "name": "WoodHouse8", "category": "other", "x": 4407.0, "z": -1235.9, "px": 2800.1, "py": 1837.1, "has_dungeon": false, "has_important": true}, {"id": 3546, "name": "WoodHouse8", "category": "other", "x": 3148.2, "z": 2561.5, "px": 2585.3, "py": 2485.2, "has_dungeon": false, "has_important": false}, {"id": 3547, "name": "WoodHouse8", "category": "other", "x": 324.9, "z": 3828.3, "px": 2103.4, "py": 2701.4, "has_dungeon": false, "has_important": true}, {"id": 3548, "name": "WoodHouse8", "category": "other", "x": 1263.3, "z": -246.4, "px": 2263.6, "py": 2005.9, "has_dungeon": false, "has_important": true}, {"id": 3549, "name": "WoodHouse8", "category": "other", "x": 554.8, "z": -60.6, "px": 2142.7, "py": 2037.7, "has_dungeon": false, "has_important": true}, {"id": 3550, "name": "WoodHouse8", "category": "other", "x": 1985.5, "z": -1835.4, "px": 2386.9, "py": 1734.8, "has_dungeon": false, "has_important": true}, {"id": 3551, "name": "WoodHouse8", "category": "other", "x": -2807.4, "z": 1578.8, "px": 1568.9, "py": 2317.4, "has_dungeon": false, "has_important": true}, {"id": 3552, "name": "WoodHouse8", "category": "other", "x": -554.0, "z": -3824.0, "px": 1953.5, "py": 1395.4, "has_dungeon": false, "has_important": false}, {"id": 3553, "name": "WoodHouse8", "category": "other", "x": 122.3, "z": 3856.4, "px": 2068.9, "py": 2706.2, "has_dungeon": false, "has_important": true}, {"id": 3554, "name": "WoodHouse8", "category": "other", "x": 511.1, "z": 318.3, "px": 2135.2, "py": 2102.3, "has_dungeon": false, "has_important": true}, {"id": 3555, "name": "WoodHouse9", "category": "other", "x": 3403.5, "z": -126.4, "px": 2628.9, "py": 2026.4, "has_dungeon": false, "has_important": true}, {"id": 3556, "name": "WoodHouse9", "category": "other", "x": -263.7, "z": -1905.7, "px": 2003.0, "py": 1722.8, "has_dungeon": false, "has_important": false}, {"id": 3557, "name": "WoodHouse9", "category": "other", "x": 14.3, "z": -114.1, "px": 2050.4, "py": 2028.5, "has_dungeon": false, "has_important": false}, {"id": 3558, "name": "WoodHouse9", "category": "other", "x": -2027.2, "z": 239.9, "px": 1702.0, "py": 2088.9, "has_dungeon": false, "has_important": false}, {"id": 3559, "name": "WoodHouse9", "category": "other", "x": -3830.2, "z": 2964.0, "px": 1394.3, "py": 2553.9, "has_dungeon": false, "has_important": false}, {"id": 3560, "name": "WoodHouse9", "category": "other", "x": 2741.0, "z": -3950.5, "px": 2515.8, "py": 1373.8, "has_dungeon": false, "has_important": true}, {"id": 3561, "name": "WoodHouse9", "category": "other", "x": -4176.5, "z": -2168.1, "px": 1335.2, "py": 1678.0, "has_dungeon": false, "has_important": true}, {"id": 3562, "name": "WoodHouse9", "category": "other", "x": 1363.4, "z": 252.6, "px": 2280.7, "py": 2091.1, "has_dungeon": false, "has_important": true}, {"id": 3563, "name": "WoodHouse9", "category": "other", "x": 47.4, "z": 430.0, "px": 2056.1, "py": 2121.4, "has_dungeon": false, "has_important": true}, {"id": 3564, "name": "WoodHouse9", "category": "other", "x": -65.7, "z": 304.5, "px": 2036.8, "py": 2100.0, "has_dungeon": false, "has_important": true}, {"id": 3565, "name": "WoodHouse9", "category": "other", "x": 386.1, "z": -199.9, "px": 2113.9, "py": 2013.9, "has_dungeon": false, "has_important": false}, {"id": 3566, "name": "WoodHouse9", "category": "other", "x": -191.1, "z": 198.0, "px": 2015.4, "py": 2081.8, "has_dungeon": false, "has_important": true}, {"id": 3567, "name": "WoodHouse9", "category": "other", "x": -1666.5, "z": -1668.7, "px": 1763.6, "py": 1763.2, "has_dungeon": false, "has_important": false}, {"id": 3568, "name": "WoodHouse9", "category": "other", "x": 2481.7, "z": -3115.6, "px": 2471.5, "py": 1516.3, "has_dungeon": false, "has_important": true}, {"id": 3569, "name": "WoodHouse9", "category": "other", "x": -2233.5, "z": -1773.0, "px": 1666.8, "py": 1745.4, "has_dungeon": false, "has_important": false}, {"id": 3570, "name": "WoodHouse9", "category": "other", "x": -1518.5, "z": -1283.3, "px": 1788.8, "py": 1829.0, "has_dungeon": false, "has_important": false}, {"id": 3571, "name": "WoodHouse9", "category": "other", "x": 130.7, "z": 3783.5, "px": 2070.3, "py": 2693.7, "has_dungeon": false, "has_important": true}, {"id": 3572, "name": "WoodHouse9", "category": "other", "x": -3769.7, "z": -2059.1, "px": 1404.6, "py": 1696.6, "has_dungeon": false, "has_important": true}, {"id": 3573, "name": "WoodHouse9", "category": "other", "x": -82.2, "z": 400.7, "px": 2034.0, "py": 2116.4, "has_dungeon": false, "has_important": true}, {"id": 3574, "name": "WoodHouse9", "category": "other", "x": -1426.9, "z": -754.2, "px": 1804.5, "py": 1919.3, "has_dungeon": false, "has_important": false}, {"id": 3665, "name": "WoodVillage1", "category": "other", "x": 4288.0, "z": -1216.0, "px": 2779.8, "py": 1840.5, "has_dungeon": true, "has_important": true}, {"id": 3666, "name": "WoodVillage1", "category": "other", "x": -4032.0, "z": -2048.0, "px": 1359.9, "py": 1698.5, "has_dungeon": true, "has_important": true}, {"id": 3667, "name": "WoodVillage1", "category": "other", "x": -2176.0, "z": -1792.0, "px": 1676.6, "py": 1742.2, "has_dungeon": true, "has_important": true}, {"id": 3668, "name": "WoodVillage1", "category": "other", "x": -1728.0, "z": -1024.0, "px": 1753.1, "py": 1873.2, "has_dungeon": true, "has_important": true}, {"id": 3669, "name": "WoodVillage1", "category": "other", "x": -4800.0, "z": 640.0, "px": 1228.8, "py": 2157.2, "has_dungeon": true, "has_important": true}, {"id": 3670, "name": "WoodVillage1", "category": "other", "x": -2368.0, "z": 384.0, "px": 1643.9, "py": 2113.5, "has_dungeon": true, "has_important": true}, {"id": 3671, "name": "WoodVillage1", "category": "other", "x": 2560.0, "z": -3200.0, "px": 2484.9, "py": 1501.9, "has_dungeon": true, "has_important": true}, {"id": 3672, "name": "WoodVillage1", "category": "other", "x": 3072.0, "z": -2688.0, "px": 2572.3, "py": 1589.2, "has_dungeon": true, "has_important": true}, {"id": 3673, "name": "WoodVillage1", "category": "other", "x": 3264.0, "z": 2496.0, "px": 2605.1, "py": 2474.0, "has_dungeon": true, "has_important": true}, {"id": 3674, "name": "WoodVillage1", "category": "other", "x": -4928.0, "z": 384.0, "px": 1207.0, "py": 2113.5, "has_dungeon": true, "has_important": true}, {"id": 3675, "name": "WoodVillage1", "category": "other", "x": -2112.0, "z": 320.0, "px": 1687.6, "py": 2102.6, "has_dungeon": true, "has_important": true}, {"id": 3676, "name": "WoodVillage1", "category": "other", "x": 896.0, "z": 3264.0, "px": 2200.9, "py": 2605.1, "has_dungeon": true, "has_important": true}, {"id": 3677, "name": "WoodVillage1", "category": "other", "x": -3712.0, "z": -2048.0, "px": 1414.5, "py": 1698.5, "has_dungeon": true, "has_important": true}, {"id": 3678, "name": "WoodVillage1", "category": "other", "x": -2752.0, "z": 1792.0, "px": 1578.3, "py": 2353.8, "has_dungeon": true, "has_important": true}, {"id": 3679, "name": "WoodVillage1", "category": "other", "x": 3072.0, "z": 2304.0, "px": 2572.3, "py": 2441.2, "has_dungeon": true, "has_important": true}, {"id": 1, "name": "StartTemple", "category": "point_of_interest", "x": 1.8, "z": 0.0, "px": 2048.3, "py": 2048.0, "has_dungeon": false, "has_important": true}, {"id": 5958, "name": "ShipSetting01", "category": "resource", "x": -390.9, "z": -4092.7, "px": 1981.3, "py": 1349.5, "has_dungeon": false, "has_important": true}, {"id": 5959, "name": "ShipSetting01", "category": "resource", "x": -1413.8, "z": -1221.5, "px": 1806.7, "py": 1839.5, "has_dungeon": false, "has_important": true}, {"id": 5960, "name": "ShipSetting01", "category": "resource", "x": -2245.5, "z": -1660.1, "px": 1664.8, "py": 1764.7, "has_dungeon": false, "has_important": true}, {"id": 5961, "name": "ShipSetting01", "category": "resource", "x": 3203.5, "z": 2500.8, "px": 2594.7, "py": 2474.8, "has_dungeon": false, "has_important": true}, {"id": 5962, "name": "ShipSetting01", "category": "resource", "x": -443.4, "z": 378.8, "px": 1972.3, "py": 2112.6, "has_dungeon": false, "has_important": true}, {"id": 5963, "name": "ShipSetting01", "category": "resource", "x": -3389.7, "z": 3005.3, "px": 1469.5, "py": 2560.9, "has_dungeon": false, "has_important": true}, {"id": 5964, "name": "ShipSetting01", "category": "resource", "x": 3201.1, "z": 2301.3, "px": 2594.3, "py": 2440.8, "has_dungeon": false, "has_important": true}, {"id": 5965, "name": "ShipSetting01", "category": "resource", "x": -248.5, "z": -762.8, "px": 2005.6, "py": 1917.8, "has_dungeon": false, "has_important": true}, {"id": 5966, "name": "ShipSetting01", "category": "resource", "x": 184.7, "z": 195.6, "px": 2079.5, "py": 2081.4, "has_dungeon": false, "has_important": true}, {"id": 5967, "name": "ShipSetting01", "category": "resource", "x": -1404.6, "z": -890.4, "px": 1808.3, "py": 1896.0, "has_dungeon": false, "has_important": true}, {"id": 5968, "name": "ShipSetting01", "category": "resource", "x": -386.1, "z": -66.2, "px": 1982.1, "py": 2036.7, "has_dungeon": false, "has_important": true}, {"id": 5969, "name": "ShipSetting01", "category": "resource", "x": 1723.1, "z": -66.2, "px": 2342.1, "py": 2036.7, "has_dungeon": false, "has_important": true}, {"id": 5970, "name": "ShipSetting01", "category": "resource", "x": -2240.8, "z": 263.0, "px": 1665.6, "py": 2092.9, "has_dungeon": false, "has_important": true}, {"id": 5971, "name": "ShipSetting01", "category": "resource", "x": 248.2, "z": -379.9, "px": 2090.4, "py": 1983.2, "has_dungeon": false, "has_important": true}, {"id": 5972, "name": "ShipSetting01", "category": "resource", "x": -1601.7, "z": -573.1, "px": 1774.6, "py": 1950.2, "has_dungeon": false, "has_important": true}, {"id": 5973, "name": "ShipSetting01", "category": "resource", "x": -3643.2, "z": -2434.2, "px": 1426.2, "py": 1632.6, "has_dungeon": false, "has_important": true}, {"id": 5974, "name": "ShipSetting01", "category": "resource", "x": 1344.4, "z": -129.1, "px": 2277.4, "py": 2026.0, "has_dungeon": false, "has_important": true}, {"id": 5975, "name": "ShipSetting01", "category": "resource", "x": 249.9, "z": -70.7, "px": 2090.6, "py": 2035.9, "has_dungeon": false, "has_important": true}, {"id": 5976, "name": "ShipSetting01", "category": "resource", "x": 3322.4, "z": 2566.8, "px": 2615.0, "py": 2486.1, "has_dungeon": false, "has_important": true}, {"id": 5977, "name": "ShipSetting01", "category": "resource", "x": -2047.5, "z": 323.0, "px": 1698.6, "py": 2103.1, "has_dungeon": false, "has_important": true}, {"id": 5978, "name": "ShipSetting01", "category": "resource", "x": 1790.4, "z": -1538.8, "px": 2353.6, "py": 1785.4, "has_dungeon": false, "has_important": true}, {"id": 5979, "name": "ShipSetting01", "category": "resource", "x": -1276.5, "z": -952.5, "px": 1830.1, "py": 1885.4, "has_dungeon": false, "has_important": true}, {"id": 5980, "name": "ShipSetting01", "category": "resource", "x": 2631.7, "z": -706.5, "px": 2497.1, "py": 1927.4, "has_dungeon": false, "has_important": true}, {"id": 5981, "name": "ShipSetting01", "category": "resource", "x": 4347.6, "z": -1407.5, "px": 2790.0, "py": 1807.8, "has_dungeon": false, "has_important": true}, {"id": 5982, "name": "ShipSetting01", "category": "resource", "x": -69.7, "z": -1927.8, "px": 2036.1, "py": 1719.0, "has_dungeon": false, "has_important": true}, {"id": 5983, "name": "ShipSetting01", "category": "resource", "x": -3131.9, "z": 3065.3, "px": 1513.5, "py": 2571.1, "has_dungeon": false, "has_important": true}, {"id": 5984, "name": "ShipSetting01", "category": "resource", "x": -2172.7, "z": -1540.8, "px": 1677.2, "py": 1785.0, "has_dungeon": false, "has_important": true}, {"id": 5985, "name": "ShipSetting01", "category": "resource", "x": -320.7, "z": -3842.3, "px": 1993.3, "py": 1392.2, "has_dungeon": false, "has_important": true}, {"id": 5986, "name": "ShipSetting01", "category": "resource", "x": 2365.2, "z": -699.4, "px": 2451.7, "py": 1928.6, "has_dungeon": false, "has_important": true}, {"id": 5987, "name": "ShipSetting01", "category": "resource", "x": -2367.7, "z": -1597.5, "px": 1643.9, "py": 1775.4, "has_dungeon": false, "has_important": true}, {"id": 5988, "name": "ShipSetting01", "category": "resource", "x": -1599.7, "z": -1150.0, "px": 1775.0, "py": 1851.7, "has_dungeon": false, "has_important": true}, {"id": 5989, "name": "ShipSetting01", "category": "resource", "x": 2618.6, "z": -838.4, "px": 2494.9, "py": 1904.9, "has_dungeon": false, "has_important": true}, {"id": 5990, "name": "ShipSetting01", "category": "resource", "x": -511.6, "z": 194.2, "px": 1960.7, "py": 2081.1, "has_dungeon": false, "has_important": true}, {"id": 5991, "name": "ShipSetting01", "category": "resource", "x": 4422.4, "z": -1272.5, "px": 2802.8, "py": 1830.8, "has_dungeon": false, "has_important": true}, {"id": 5992, "name": "ShipSetting01", "category": "resource", "x": -3647.3, "z": 2882.2, "px": 1425.5, "py": 2539.9, "has_dungeon": false, "has_important": true}, {"id": 5993, "name": "ShipSetting01", "category": "resource", "x": -1221.9, "z": -639.5, "px": 1839.5, "py": 1938.9, "has_dungeon": false, "has_important": true}, {"id": 5994, "name": "ShipSetting01", "category": "resource", "x": 2680.7, "z": -3072.1, "px": 2505.5, "py": 1523.7, "has_dungeon": false, "has_important": true}, {"id": 5995, "name": "ShipSetting01", "category": "resource", "x": -57.4, "z": -192.0, "px": 2038.2, "py": 2015.2, "has_dungeon": false, "has_important": true}, {"id": 5996, "name": "ShipSetting01", "category": "resource", "x": 1082.8, "z": 707.5, "px": 2232.8, "py": 2168.7, "has_dungeon": false, "has_important": true}, {"id": 5997, "name": "ShipSetting01", "category": "resource", "x": 3964.1, "z": -1539.1, "px": 2724.5, "py": 1785.3, "has_dungeon": false, "has_important": true}, {"id": 5998, "name": "ShipSetting01", "category": "resource", "x": -66.1, "z": -58.2, "px": 2036.7, "py": 2038.1, "has_dungeon": false, "has_important": true}, {"id": 5999, "name": "ShipSetting01", "category": "resource", "x": -3258.2, "z": 3204.1, "px": 1491.9, "py": 2594.8, "has_dungeon": false, "has_important": true}, {"id": 6000, "name": "ShipSetting01", "category": "resource", "x": 517.7, "z": 0.5, "px": 2136.4, "py": 2048.1, "has_dungeon": false, "has_important": true}, {"id": 6001, "name": "ShipSetting01", "category": "resource", "x": -3835.6, "z": 3072.3, "px": 1393.4, "py": 2572.3, "has_dungeon": false, "has_important": true}, {"id": 6002, "name": "ShipSetting01", "category": "resource", "x": -1023.0, "z": -771.8, "px": 1873.4, "py": 1916.3, "has_dungeon": false, "has_important": true}, {"id": 6003, "name": "ShipSetting01", "category": "resource", "x": -1598.0, "z": 2883.9, "px": 1775.3, "py": 2540.2, "has_dungeon": false, "has_important": true}, {"id": 6004, "name": "ShipSetting01", "category": "resource", "x": -126.4, "z": -441.5, "px": 2026.4, "py": 1972.7, "has_dungeon": false, "has_important": true}, {"id": 6005, "name": "ShipSetting01", "category": "resource", "x": -2823.9, "z": 1091.8, "px": 1566.1, "py": 2234.3, "has_dungeon": false, "has_important": true}, {"id": 6006, "name": "ShipSetting01", "category": "resource", "x": 384.0, "z": 128.7, "px": 2113.5, "py": 2070.0, "has_dungeon": false, "has_important": true}, {"id": 6007, "name": "ShipSetting01", "category": "resource", "x": -2104.8, "z": -1663.1, "px": 1688.8, "py": 1764.2, "has_dungeon": false, "has_important": true}, {"id": 6008, "name": "ShipSetting01", "category": "resource", "x": -254.2, "z": -384.2, "px": 2004.6, "py": 1982.4, "has_dungeon": false, "has_important": true}, {"id": 6009, "name": "ShipSetting01", "category": "resource", "x": -326.1, "z": 506.8, "px": 1992.3, "py": 2134.5, "has_dungeon": false, "has_important": true}, {"id": 6010, "name": "ShipSetting01", "category": "resource", "x": -1606.9, "z": -961.6, "px": 1773.8, "py": 1883.9, "has_dungeon": false, "has_important": true}, {"id": 6011, "name": "ShipSetting01", "category": "resource", "x": -317.0, "z": 67.8, "px": 1993.9, "py": 2059.6, "has_dungeon": false, "has_important": true}, {"id": 6012, "name": "ShipSetting01", "category": "resource", "x": 1472.7, "z": 61.2, "px": 2299.3, "py": 2058.4, "has_dungeon": false, "has_important": true}, {"id": 6013, "name": "ShipSetting01", "category": "resource", "x": 3079.4, "z": 2626.5, "px": 2573.6, "py": 2496.3, "has_dungeon": false, "has_important": true}, {"id": 6014, "name": "ShipSetting01", "category": "resource", "x": 123.2, "z": -259.3, "px": 2069.0, "py": 2003.7, "has_dungeon": false, "has_important": true}, {"id": 6015, "name": "ShipSetting01", "category": "resource", "x": 249.9, "z": -1664.1, "px": 2090.6, "py": 1764.0, "has_dungeon": false, "has_important": true}, {"id": 6016, "name": "ShipSetting01", "category": "resource", "x": 1790.0, "z": 1155.8, "px": 2353.5, "py": 2245.3, "has_dungeon": false, "has_important": true}, {"id": 6017, "name": "ShipSetting01", "category": "resource", "x": -4927.7, "z": 642.5, "px": 1207.0, "py": 2157.7, "has_dungeon": false, "has_important": true}, {"id": 6018, "name": "ShipSetting01", "category": "resource", "x": 1725.1, "z": 123.3, "px": 2342.4, "py": 2069.0, "has_dungeon": false, "has_important": true}, {"id": 6019, "name": "ShipSetting01", "category": "resource", "x": -4733.7, "z": 964.7, "px": 1240.1, "py": 2212.6, "has_dungeon": false, "has_important": true}, {"id": 6020, "name": "ShipSetting01", "category": "resource", "x": -3389.7, "z": -2374.3, "px": 1469.5, "py": 1642.8, "has_dungeon": false, "has_important": true}, {"id": 6021, "name": "ShipSetting01", "category": "resource", "x": -2311.3, "z": 576.9, "px": 1653.5, "py": 2146.5, "has_dungeon": false, "has_important": true}, {"id": 6022, "name": "ShipSetting01", "category": "resource", "x": -4159.3, "z": 1849.5, "px": 1338.1, "py": 2363.6, "has_dungeon": false, "has_important": true}, {"id": 6023, "name": "ShipSetting01", "category": "resource", "x": 892.2, "z": 4543.7, "px": 2200.3, "py": 2823.5, "has_dungeon": false, "has_important": true}, {"id": 6024, "name": "ShipSetting01", "category": "resource", "x": -4990.1, "z": 197.4, "px": 1196.4, "py": 2081.7, "has_dungeon": false, "has_important": true}, {"id": 6025, "name": "ShipSetting01", "category": "resource", "x": -574.8, "z": -1091.1, "px": 1949.9, "py": 1861.8, "has_dungeon": false, "has_important": true}, {"id": 6026, "name": "ShipSetting01", "category": "resource", "x": 4227.1, "z": -1148.9, "px": 2769.4, "py": 1851.9, "has_dungeon": false, "has_important": true}, {"id": 6027, "name": "ShipSetting01", "category": "resource", "x": 2884.9, "z": -2434.7, "px": 2540.4, "py": 1632.5, "has_dungeon": false, "has_important": true}, {"id": 6028, "name": "ShipSetting01", "category": "resource", "x": 1734.4, "z": 1280.8, "px": 2344.0, "py": 2266.6, "has_dungeon": false, "has_important": true}, {"id": 6029, "name": "ShipSetting01", "category": "resource", "x": -2493.4, "z": 449.5, "px": 1622.5, "py": 2124.7, "has_dungeon": false, "has_important": true}, {"id": 6030, "name": "ShipSetting01", "category": "resource", "x": 4164.6, "z": -1347.4, "px": 2758.8, "py": 1818.0, "has_dungeon": false, "has_important": true}, {"id": 6031, "name": "ShipSetting01", "category": "resource", "x": -3194.3, "z": 2943.8, "px": 1502.8, "py": 2550.4, "has_dungeon": false, "has_important": true}, {"id": 6032, "name": "ShipSetting01", "category": "resource", "x": -2626.5, "z": 1918.1, "px": 1599.7, "py": 2375.4, "has_dungeon": false, "has_important": true}, {"id": 6033, "name": "ShipSetting01", "category": "resource", "x": -58.3, "z": 263.2, "px": 2038.1, "py": 2092.9, "has_dungeon": false, "has_important": true}, {"id": 6034, "name": "ShipSetting01", "category": "resource", "x": -1537.3, "z": -1600.8, "px": 1785.6, "py": 1774.8, "has_dungeon": false, "has_important": true}, {"id": 6035, "name": "ShipSetting01", "category": "resource", "x": -4934.9, "z": 504.3, "px": 1205.8, "py": 2134.1, "has_dungeon": false, "has_important": true}, {"id": 6036, "name": "ShipSetting01", "category": "resource", "x": 1031.5, "z": 837.8, "px": 2224.0, "py": 2191.0, "has_dungeon": false, "has_important": true}, {"id": 6037, "name": "ShipSetting01", "category": "resource", "x": 4226.1, "z": -1473.5, "px": 2769.3, "py": 1796.5, "has_dungeon": false, "has_important": true}, {"id": 6038, "name": "ShipSetting01", "category": "resource", "x": -2114.0, "z": 124.8, "px": 1687.2, "py": 2069.3, "has_dungeon": false, "has_important": true}, {"id": 6039, "name": "ShipSetting01", "category": "resource", "x": -126.0, "z": -1729.0, "px": 2026.5, "py": 1752.9, "has_dungeon": false, "has_important": true}, {"id": 6040, "name": "ShipSetting01", "category": "resource", "x": 4034.5, "z": -1415.5, "px": 2736.6, "py": 1806.4, "has_dungeon": false, "has_important": true}, {"id": 6041, "name": "ShipSetting01", "category": "resource", "x": 2373.3, "z": -568.9, "px": 2453.0, "py": 1950.9, "has_dungeon": false, "has_important": true}, {"id": 6042, "name": "ShipSetting01", "category": "resource", "x": 3075.6, "z": 2495.5, "px": 2572.9, "py": 2473.9, "has_dungeon": false, "has_important": true}, {"id": 6043, "name": "ShipSetting01", "category": "resource", "x": 3268.8, "z": -189.7, "px": 2605.9, "py": 2015.6, "has_dungeon": false, "has_important": true}, {"id": 6044, "name": "ShipSetting01", "category": "resource", "x": -1155.6, "z": -830.8, "px": 1850.8, "py": 1906.2, "has_dungeon": false, "has_important": true}, {"id": 6045, "name": "ShipSetting01", "category": "resource", "x": 317.1, "z": 256.0, "px": 2102.1, "py": 2091.7, "has_dungeon": false, "has_important": true}, {"id": 6046, "name": "ShipSetting01", "category": "resource", "x": -3077.7, "z": 1797.6, "px": 1522.7, "py": 2354.8, "has_dungeon": false, "has_important": true}, {"id": 6047, "name": "ShipSetting01", "category": "resource", "x": 1342.5, "z": 56.4, "px": 2277.1, "py": 2057.6, "has_dungeon": false, "has_important": true}, {"id": 6048, "name": "ShipSetting01", "category": "resource", "x": -3705.1, "z": -1978.1, "px": 1415.7, "py": 1710.4, "has_dungeon": false, "has_important": true}, {"id": 6049, "name": "ShipSetting01", "category": "resource", "x": -2177.2, "z": 4411.9, "px": 1676.4, "py": 2801.0, "has_dungeon": false, "has_important": true}, {"id": 6050, "name": "ShipSetting01", "category": "resource", "x": -249.7, "z": 191.4, "px": 2005.4, "py": 2080.7, "has_dungeon": false, "has_important": true}, {"id": 6051, "name": "ShipSetting01", "category": "resource", "x": 3134.1, "z": -2758.6, "px": 2582.9, "py": 1577.2, "has_dungeon": false, "has_important": true}, {"id": 6052, "name": "ShipSetting01", "category": "resource", "x": 4089.2, "z": -1215.6, "px": 2745.9, "py": 1840.5, "has_dungeon": false, "has_important": true}, {"id": 6053, "name": "ShipSetting01", "category": "resource", "x": -1016.3, "z": -643.4, "px": 1874.6, "py": 1938.2, "has_dungeon": false, "has_important": true}, {"id": 6054, "name": "ShipSetting01", "category": "resource", "x": -3846.7, "z": -2042.3, "px": 1391.5, "py": 1699.4, "has_dungeon": false, "has_important": true}, {"id": 6055, "name": "ShipSetting01", "category": "resource", "x": 3011.7, "z": -2565.3, "px": 2562.0, "py": 1610.2, "has_dungeon": false, "has_important": true}, {"id": 6056, "name": "ShipSetting01", "category": "resource", "x": -3707.7, "z": -2308.5, "px": 1415.2, "py": 1654.0, "has_dungeon": false, "has_important": true}, {"id": 6057, "name": "ShipSetting01", "category": "resource", "x": -1531.3, "z": -707.7, "px": 1786.7, "py": 1927.2, "has_dungeon": false, "has_important": true}, {"id": 7261, "name": "TarPit1", "category": "resource", "x": 756.2, "z": -7291.6, "px": 2177.1, "py": 803.6, "has_dungeon": false, "has_important": true}, {"id": 7262, "name": "TarPit1", "category": "resource", "x": -2305.8, "z": 3718.7, "px": 1654.5, "py": 2682.7, "has_dungeon": false, "has_important": true}, {"id": 7263, "name": "TarPit1", "category": "resource", "x": 3978.3, "z": 4168.3, "px": 2727.0, "py": 2759.4, "has_dungeon": false, "has_important": true}, {"id": 7264, "name": "TarPit1", "category": "resource", "x": -3014.5, "z": 1163.7, "px": 1533.5, "py": 2246.6, "has_dungeon": false, "has_important": true}, {"id": 7265, "name": "TarPit1", "category": "resource", "x": -1990.4, "z": -3062.7, "px": 1708.3, "py": 1525.3, "has_dungeon": false, "has_important": true}, {"id": 7266, "name": "TarPit1", "category": "resource", "x": 3778.4, "z": 1473.6, "px": 2692.8, "py": 2299.5, "has_dungeon": false, "has_important": true}, {"id": 7267, "name": "TarPit1", "category": "resource", "x": -3530.1, "z": -1543.8, "px": 1445.5, "py": 1784.5, "has_dungeon": false, "has_important": true}, {"id": 7268, "name": "TarPit1", "category": "resource", "x": -4541.8, "z": -3587.7, "px": 1272.9, "py": 1435.7, "has_dungeon": false, "has_important": true}, {"id": 7269, "name": "TarPit1", "category": "resource", "x": 3062.4, "z": 3127.5, "px": 2570.6, "py": 2581.8, "has_dungeon": false, "has_important": true}, {"id": 7270, "name": "TarPit1", "category": "resource", "x": 4101.9, "z": 5192.9, "px": 2748.1, "py": 2934.3, "has_dungeon": false, "has_important": true}, {"id": 7271, "name": "TarPit1", "category": "resource", "x": -250.8, "z": -5828.8, "px": 2005.2, "py": 1053.2, "has_dungeon": false, "has_important": true}, {"id": 7272, "name": "TarPit1", "category": "resource", "x": 964.2, "z": 4100.7, "px": 2212.6, "py": 2747.9, "has_dungeon": false, "has_important": true}, {"id": 7273, "name": "TarPit1", "category": "resource", "x": -1911.8, "z": 3008.9, "px": 1721.7, "py": 2561.5, "has_dungeon": false, "has_important": true}, {"id": 7274, "name": "TarPit1", "category": "resource", "x": 3325.4, "z": -1414.9, "px": 2615.5, "py": 1806.5, "has_dungeon": false, "has_important": true}, {"id": 7275, "name": "TarPit1", "category": "resource", "x": -4866.7, "z": -2806.7, "px": 1217.4, "py": 1569.0, "has_dungeon": false, "has_important": true}, {"id": 7276, "name": "TarPit1", "category": "resource", "x": 4803.5, "z": -2240.7, "px": 2867.8, "py": 1665.6, "has_dungeon": false, "has_important": true}, {"id": 7277, "name": "TarPit1", "category": "resource", "x": 3850.4, "z": -649.6, "px": 2705.1, "py": 1937.1, "has_dungeon": false, "has_important": true}, {"id": 7278, "name": "TarPit1", "category": "resource", "x": 4035.5, "z": -905.0, "px": 2736.7, "py": 1893.5, "has_dungeon": false, "has_important": true}, {"id": 7279, "name": "TarPit1", "category": "resource", "x": 4486.6, "z": 1094.6, "px": 2813.7, "py": 2234.8, "has_dungeon": false, "has_important": true}, {"id": 7280, "name": "TarPit1", "category": "resource", "x": -1603.4, "z": -4802.4, "px": 1774.4, "py": 1228.4, "has_dungeon": false, "has_important": true}, {"id": 7281, "name": "TarPit1", "category": "resource", "x": -3834.6, "z": 3766.6, "px": 1393.6, "py": 2690.8, "has_dungeon": false, "has_important": true}, {"id": 7282, "name": "TarPit1", "category": "resource", "x": -3655.8, "z": 2435.1, "px": 1424.1, "py": 2463.6, "has_dungeon": false, "has_important": true}, {"id": 7283, "name": "TarPit1", "category": "resource", "x": -3509.2, "z": 2424.1, "px": 1449.1, "py": 2461.7, "has_dungeon": false, "has_important": true}, {"id": 7284, "name": "TarPit1", "category": "resource", "x": 1280.6, "z": 3190.7, "px": 2266.6, "py": 2592.5, "has_dungeon": false, "has_important": true}, {"id": 7285, "name": "TarPit1", "category": "resource", "x": -2494.8, "z": -2940.1, "px": 1622.2, "py": 1546.2, "has_dungeon": false, "has_important": true}, {"id": 7286, "name": "TarPit1", "category": "resource", "x": -770.1, "z": -6218.5, "px": 1916.6, "py": 986.7, "has_dungeon": false, "has_important": true}, {"id": 7287, "name": "TarPit1", "category": "resource", "x": -710.9, "z": -6076.3, "px": 1926.7, "py": 1011.0, "has_dungeon": false, "has_important": true}, {"id": 7288, "name": "TarPit1", "category": "resource", "x": -951.0, "z": -6260.1, "px": 1885.7, "py": 979.6, "has_dungeon": false, "has_important": true}, {"id": 7289, "name": "TarPit1", "category": "resource", "x": -836.4, "z": -6347.5, "px": 1905.3, "py": 964.7, "has_dungeon": false, "has_important": true}, {"id": 7290, "name": "TarPit1", "category": "resource", "x": -575.4, "z": -6343.8, "px": 1949.8, "py": 965.3, "has_dungeon": false, "has_important": true}, {"id": 7291, "name": "TarPit1", "category": "resource", "x": 1592.8, "z": 3066.7, "px": 2319.8, "py": 2571.4, "has_dungeon": false, "has_important": true}, {"id": 7292, "name": "TarPit1", "category": "resource", "x": 1349.0, "z": -4297.7, "px": 2278.2, "py": 1314.5, "has_dungeon": false, "has_important": true}, {"id": 7293, "name": "TarPit1", "category": "resource", "x": -3771.1, "z": 3592.9, "px": 1404.4, "py": 2661.2, "has_dungeon": false, "has_important": true}, {"id": 7294, "name": "TarPit1", "category": "resource", "x": 649.0, "z": -7366.4, "px": 2158.8, "py": 790.8, "has_dungeon": false, "has_important": true}, {"id": 7295, "name": "TarPit1", "category": "resource", "x": -6.6, "z": -4919.3, "px": 2046.9, "py": 1208.4, "has_dungeon": false, "has_important": true}, {"id": 7296, "name": "TarPit1", "category": "resource", "x": -6467.4, "z": -3707.6, "px": 944.2, "py": 1415.2, "has_dungeon": false, "has_important": true}, {"id": 7297, "name": "TarPit1", "category": "resource", "x": -500.8, "z": 5119.0, "px": 1962.5, "py": 2921.6, "has_dungeon": false, "has_important": true}, {"id": 7298, "name": "TarPit1", "category": "resource", "x": 3460.3, "z": -565.6, "px": 2638.6, "py": 1951.5, "has_dungeon": false, "has_important": true}, {"id": 7299, "name": "TarPit1", "category": "resource", "x": 1020.5, "z": 3572.7, "px": 2222.2, "py": 2657.7, "has_dungeon": false, "has_important": true}, {"id": 7300, "name": "TarPit1", "category": "resource", "x": -137.8, "z": -5764.1, "px": 2024.5, "py": 1064.3, "has_dungeon": false, "has_important": true}, {"id": 7301, "name": "TarPit1", "category": "resource", "x": 6143.1, "z": 1654.9, "px": 3096.4, "py": 2330.4, "has_dungeon": false, "has_important": true}, {"id": 7302, "name": "TarPit1", "category": "resource", "x": 1158.9, "z": 3141.3, "px": 2245.8, "py": 2584.1, "has_dungeon": false, "has_important": true}, {"id": 7303, "name": "TarPit1", "category": "resource", "x": 3842.4, "z": 1670.4, "px": 2703.8, "py": 2333.1, "has_dungeon": false, "has_important": true}, {"id": 7304, "name": "TarPit1", "category": "resource", "x": 4090.8, "z": 1149.1, "px": 2746.2, "py": 2244.1, "has_dungeon": false, "has_important": true}, {"id": 7305, "name": "TarPit1", "category": "resource", "x": 1095.2, "z": 3846.4, "px": 2234.9, "py": 2704.5, "has_dungeon": false, "has_important": true}, {"id": 7306, "name": "TarPit1", "category": "resource", "x": 1718.3, "z": 3254.0, "px": 2341.3, "py": 2603.3, "has_dungeon": false, "has_important": true}, {"id": 7307, "name": "TarPit1", "category": "resource", "x": 1350.2, "z": 3386.9, "px": 2278.4, "py": 2626.0, "has_dungeon": false, "has_important": true}, {"id": 7308, "name": "TarPit1", "category": "resource", "x": -2822.0, "z": 5813.2, "px": 1566.4, "py": 3040.1, "has_dungeon": false, "has_important": true}, {"id": 7309, "name": "TarPit1", "category": "resource", "x": -5058.3, "z": -2805.8, "px": 1184.7, "py": 1569.1, "has_dungeon": false, "has_important": true}, {"id": 7310, "name": "TarPit1", "category": "resource", "x": 6918.1, "z": -2309.6, "px": 3228.7, "py": 1653.8, "has_dungeon": false, "has_important": true}, {"id": 7311, "name": "TarPit1", "category": "resource", "x": 7096.2, "z": -1024.0, "px": 3259.1, "py": 1873.2, "has_dungeon": false, "has_important": true}, {"id": 7312, "name": "TarPit1", "category": "resource", "x": 5493.1, "z": -2234.1, "px": 2985.5, "py": 1666.7, "has_dungeon": false, "has_important": true}, {"id": 7313, "name": "TarPit1", "category": "resource", "x": 2822.1, "z": -5952.5, "px": 2529.6, "py": 1032.1, "has_dungeon": false, "has_important": true}, {"id": 7314, "name": "TarPit1", "category": "resource", "x": 1080.0, "z": 3976.5, "px": 2232.3, "py": 2726.7, "has_dungeon": false, "has_important": true}, {"id": 7315, "name": "TarPit1", "category": "resource", "x": 1020.9, "z": -4155.9, "px": 2222.2, "py": 1338.7, "has_dungeon": false, "has_important": true}, {"id": 7316, "name": "TarPit1", "category": "resource", "x": -1142.0, "z": -4476.7, "px": 1853.1, "py": 1284.0, "has_dungeon": false, "has_important": true}, {"id": 7317, "name": "TarPit1", "category": "resource", "x": 1209.6, "z": -4159.3, "px": 2254.4, "py": 1338.1, "has_dungeon": false, "has_important": true}, {"id": 7318, "name": "TarPit1", "category": "resource", "x": 1606.1, "z": 3337.6, "px": 2322.1, "py": 2617.6, "has_dungeon": false, "has_important": true}, {"id": 7319, "name": "TarPit1", "category": "resource", "x": -4404.4, "z": -6138.5, "px": 1296.3, "py": 1000.4, "has_dungeon": false, "has_important": true}, {"id": 7320, "name": "TarPit1", "category": "resource", "x": -3778.0, "z": 3464.5, "px": 1403.2, "py": 2639.3, "has_dungeon": false, "has_important": true}, {"id": 7321, "name": "TarPit1", "category": "resource", "x": 4094.6, "z": 1726.6, "px": 2746.8, "py": 2342.7, "has_dungeon": false, "has_important": true}, {"id": 7322, "name": "TarPit1", "category": "resource", "x": 4612.1, "z": -1396.2, "px": 2835.1, "py": 1809.7, "has_dungeon": false, "has_important": true}, {"id": 7323, "name": "TarPit1", "category": "resource", "x": -2047.3, "z": 3139.0, "px": 1698.6, "py": 2583.7, "has_dungeon": false, "has_important": true}, {"id": 7324, "name": "TarPit1", "category": "resource", "x": 2304.3, "z": -4997.1, "px": 2441.3, "py": 1195.2, "has_dungeon": false, "has_important": true}, {"id": 7325, "name": "TarPit1", "category": "resource", "x": 198.7, "z": 3516.0, "px": 2081.9, "py": 2648.1, "has_dungeon": false, "has_important": true}, {"id": 7326, "name": "TarPit1", "category": "resource", "x": 5578.6, "z": -2111.9, "px": 3000.1, "py": 1687.6, "has_dungeon": false, "has_important": true}, {"id": 7327, "name": "TarPit1", "category": "resource", "x": 5044.9, "z": -1543.6, "px": 2909.0, "py": 1784.6, "has_dungeon": false, "has_important": true}, {"id": 7328, "name": "TarPit1", "category": "resource", "x": -122.3, "z": -4989.9, "px": 2027.1, "py": 1196.4, "has_dungeon": false, "has_important": true}, {"id": 7329, "name": "TarPit1", "category": "resource", "x": 2825.1, "z": 7160.8, "px": 2530.2, "py": 3270.1, "has_dungeon": false, "has_important": true}, {"id": 7330, "name": "TarPit1", "category": "resource", "x": 3708.7, "z": -574.5, "px": 2681.0, "py": 1950.0, "has_dungeon": false, "has_important": true}, {"id": 7331, "name": "TarPit1", "category": "resource", "x": 3079.4, "z": 4425.1, "px": 2573.6, "py": 2803.2, "has_dungeon": false, "has_important": true}, {"id": 7332, "name": "TarPit1", "category": "resource", "x": -2507.0, "z": 6019.8, "px": 1620.1, "py": 3075.4, "has_dungeon": false, "has_important": true}, {"id": 7333, "name": "TarPit1", "category": "resource", "x": -1865.7, "z": 3380.8, "px": 1729.6, "py": 2625.0, "has_dungeon": false, "has_important": true}, {"id": 7334, "name": "TarPit1", "category": "resource", "x": -4298.8, "z": 4.9, "px": 1314.3, "py": 2048.8, "has_dungeon": false, "has_important": true}, {"id": 7335, "name": "TarPit1", "category": "resource", "x": -2486.5, "z": 3911.6, "px": 1623.6, "py": 2715.6, "has_dungeon": false, "has_important": true}, {"id": 7336, "name": "TarPit1", "category": "resource", "x": -1152.5, "z": -4618.4, "px": 1851.3, "py": 1259.8, "has_dungeon": false, "has_important": true}, {"id": 7337, "name": "TarPit1", "category": "resource", "x": -2891.7, "z": -7226.7, "px": 1554.5, "py": 814.6, "has_dungeon": false, "has_important": true}, {"id": 7338, "name": "TarPit1", "category": "resource", "x": -3061.7, "z": 1289.3, "px": 1525.5, "py": 2268.0, "has_dungeon": false, "has_important": true}, {"id": 7339, "name": "TarPit1", "category": "resource", "x": -2815.3, "z": 2244.9, "px": 1567.5, "py": 2431.1, "has_dungeon": false, "has_important": true}, {"id": 7340, "name": "TarPit1", "category": "resource", "x": 5125.4, "z": -2425.7, "px": 2922.7, "py": 1634.0, "has_dungeon": false, "has_important": true}, {"id": 7341, "name": "TarPit1", "category": "resource", "x": -5054.6, "z": -2941.0, "px": 1185.3, "py": 1546.1, "has_dungeon": false, "has_important": true}, {"id": 7342, "name": "TarPit1", "category": "resource", "x": 4674.5, "z": -2367.9, "px": 2845.8, "py": 1643.9, "has_dungeon": false, "has_important": true}, {"id": 7343, "name": "TarPit1", "category": "resource", "x": -5895.2, "z": 2059.9, "px": 1041.9, "py": 2399.6, "has_dungeon": false, "has_important": true}, {"id": 7344, "name": "TarPit2", "category": "resource", "x": 634.1, "z": -7233.1, "px": 2156.2, "py": 813.6, "has_dungeon": false, "has_important": true}, {"id": 7345, "name": "TarPit2", "category": "resource", "x": 4992.3, "z": 4986.5, "px": 2900.0, "py": 2899.0, "has_dungeon": false, "has_important": true}, {"id": 7346, "name": "TarPit2", "category": "resource", "x": 1723.8, "z": 3001.8, "px": 2342.2, "py": 2560.3, "has_dungeon": false, "has_important": true}, {"id": 7347, "name": "TarPit2", "category": "resource", "x": -4547.1, "z": -5957.5, "px": 1272.0, "py": 1031.3, "has_dungeon": false, "has_important": true}, {"id": 7348, "name": "TarPit2", "category": "resource", "x": 5630.9, "z": -1211.4, "px": 3009.0, "py": 1841.3, "has_dungeon": false, "has_important": true}, {"id": 7349, "name": "TarPit2", "category": "resource", "x": 4676.9, "z": 1156.4, "px": 2846.2, "py": 2245.4, "has_dungeon": false, "has_important": true}, {"id": 7350, "name": "TarPit2", "category": "resource", "x": 3461.6, "z": 3266.8, "px": 2638.8, "py": 2605.5, "has_dungeon": false, "has_important": true}, {"id": 7351, "name": "TarPit2", "category": "resource", "x": 3321.6, "z": -1602.9, "px": 2614.9, "py": 1774.4, "has_dungeon": false, "has_important": true}, {"id": 7352, "name": "TarPit2", "category": "resource", "x": -3205.2, "z": 1285.4, "px": 1501.0, "py": 2267.4, "has_dungeon": false, "has_important": true}, {"id": 7353, "name": "TarPit2", "category": "resource", "x": 2043.1, "z": 4998.8, "px": 2396.7, "py": 2901.1, "has_dungeon": false, "has_important": true}, {"id": 7354, "name": "TarPit3", "category": "resource", "x": -1391.3, "z": -4357.0, "px": 1810.6, "py": 1304.4, "has_dungeon": false, "has_important": true}, {"id": 7355, "name": "TarPit3", "category": "resource", "x": -2677.4, "z": -2992.6, "px": 1591.1, "py": 1537.3, "has_dungeon": false, "has_important": true}, {"id": 7356, "name": "TarPit3", "category": "resource", "x": 3216.0, "z": -528.9, "px": 2596.9, "py": 1957.7, "has_dungeon": false, "has_important": true}, {"id": 7357, "name": "TarPit3", "category": "resource", "x": -5257.4, "z": -2824.1, "px": 1150.7, "py": 1566.0, "has_dungeon": false, "has_important": true}, {"id": 7358, "name": "TarPit3", "category": "resource", "x": 887.8, "z": 3768.1, "px": 2199.5, "py": 2691.1, "has_dungeon": false, "has_important": true}, {"id": 7359, "name": "TarPit3", "category": "resource", "x": 2375.7, "z": 4678.5, "px": 2453.5, "py": 2846.5, "has_dungeon": false, "has_important": true}, {"id": 7360, "name": "TarPit3", "category": "resource", "x": -3706.3, "z": 2121.4, "px": 1415.5, "py": 2410.1, "has_dungeon": false, "has_important": true}, {"id": 7361, "name": "TarPit3", "category": "resource", "x": -4806.9, "z": 2320.9, "px": 1227.6, "py": 2444.1, "has_dungeon": false, "has_important": true}, {"id": 7362, "name": "TarPit3", "category": "resource", "x": -3518.8, "z": -1673.1, "px": 1447.5, "py": 1762.5, "has_dungeon": false, "has_important": true}, {"id": 7363, "name": "TarPit3", "category": "resource", "x": 1073.7, "z": -3958.8, "px": 2231.2, "py": 1372.4, "has_dungeon": false, "has_important": true}, {"id": 7364, "name": "TarPit3", "category": "resource", "x": -558.7, "z": -6205.6, "px": 1952.6, "py": 988.9, "has_dungeon": false, "has_important": true}, {"id": 7365, "name": "TarPit3", "category": "resource", "x": 3141.2, "z": 4303.9, "px": 2584.1, "py": 2782.5, "has_dungeon": false, "has_important": true}, {"id": 7366, "name": "TarPit3", "category": "resource", "x": 4911.8, "z": -1229.2, "px": 2886.3, "py": 1838.2, "has_dungeon": false, "has_important": true}, {"id": 7367, "name": "TarPit3", "category": "resource", "x": 1223.0, "z": 3406.2, "px": 2256.7, "py": 2629.3, "has_dungeon": false, "has_important": true}, {"id": 7368, "name": "TarPit3", "category": "resource", "x": 3759.5, "z": -1228.6, "px": 2689.6, "py": 1838.3, "has_dungeon": false, "has_important": true}, {"id": 7369, "name": "TarPit3", "category": "resource", "x": -5825.9, "z": 1873.8, "px": 1053.7, "py": 2367.8, "has_dungeon": false, "has_important": true}, {"id": 7370, "name": "TarPit3", "category": "resource", "x": 197.0, "z": 5579.7, "px": 2081.6, "py": 3000.3, "has_dungeon": false, "has_important": true}, {"id": 7371, "name": "TarPit3", "category": "resource", "x": -1097.6, "z": -4814.8, "px": 1860.7, "py": 1226.3, "has_dungeon": false, "has_important": true}, {"id": 7372, "name": "TarPit3", "category": "resource", "x": -1521.4, "z": -4531.9, "px": 1788.3, "py": 1274.6, "has_dungeon": false, "has_important": true}, {"id": 7373, "name": "TarPit3", "category": "resource", "x": -709.0, "z": 5264.5, "px": 1927.0, "py": 2946.5, "has_dungeon": false, "has_important": true}, {"id": 7374, "name": "TarPit3", "category": "resource", "x": 4416.6, "z": 1654.4, "px": 2801.8, "py": 2330.4, "has_dungeon": false, "has_important": true}, {"id": 7375, "name": "TarPit3", "category": "resource", "x": 3069.8, "z": -1595.8, "px": 2571.9, "py": 1775.7, "has_dungeon": false, "has_important": true}, {"id": 7376, "name": "TarPit3", "category": "resource", "x": -4335.2, "z": -6027.7, "px": 1308.1, "py": 1019.3, "has_dungeon": false, "has_important": true}, {"id": 7377, "name": "TarPit3", "category": "resource", "x": 4611.8, "z": -1607.2, "px": 2835.1, "py": 1773.7, "has_dungeon": false, "has_important": true}, {"id": 7378, "name": "TarPit3", "category": "resource", "x": -64.5, "z": -5125.7, "px": 2037.0, "py": 1173.2, "has_dungeon": false, "has_important": true}, {"id": 7379, "name": "TarPit3", "category": "resource", "x": 4659.4, "z": 1530.0, "px": 2843.2, "py": 2309.1, "has_dungeon": false, "has_important": true}, {"id": 7380, "name": "TarPit3", "category": "resource", "x": 7087.4, "z": -2481.1, "px": 3257.6, "py": 1624.6, "has_dungeon": false, "has_important": true}, {"id": 7381, "name": "TarPit3", "category": "resource", "x": 4974.0, "z": -2512.2, "px": 2896.9, "py": 1619.3, "has_dungeon": false, "has_important": true}, {"id": 7382, "name": "TarPit3", "category": "resource", "x": 7102.2, "z": -2609.2, "px": 3260.1, "py": 1602.7, "has_dungeon": false, "has_important": true}, {"id": 7383, "name": "TarPit3", "category": "resource", "x": -2868.5, "z": 5965.9, "px": 1558.4, "py": 3066.2, "has_dungeon": false, "has_important": true}, {"id": 7384, "name": "TarPit3", "category": "resource", "x": 430.5, "z": 4032.8, "px": 2121.5, "py": 2736.3, "has_dungeon": false, "has_important": true}, {"id": 7385, "name": "TarPit3", "category": "resource", "x": 4241.3, "z": 976.8, "px": 2771.8, "py": 2214.7, "has_dungeon": false, "has_important": true}, {"id": 7386, "name": "TarPit3", "category": "resource", "x": 4788.2, "z": 3066.7, "px": 2865.2, "py": 2571.4, "has_dungeon": false, "has_important": true}, {"id": 7387, "name": "TarPit3", "category": "resource", "x": 6190.8, "z": 1793.6, "px": 3104.6, "py": 2354.1, "has_dungeon": false, "has_important": true}, {"id": 7388, "name": "TarPit3", "category": "resource", "x": 3600.8, "z": 1540.0, "px": 2662.5, "py": 2310.8, "has_dungeon": false, "has_important": true}, {"id": 7389, "name": "TarPit3", "category": "resource", "x": 3909.0, "z": -1169.4, "px": 2715.1, "py": 1848.4, "has_dungeon": false, "has_important": true}, {"id": 7390, "name": "TarPit3", "category": "resource", "x": -6191.1, "z": -1484.2, "px": 991.4, "py": 1794.7, "has_dungeon": false, "has_important": true}, {"id": 7391, "name": "TarPit3", "category": "resource", "x": -1985.0, "z": 3441.9, "px": 1709.2, "py": 2635.4, "has_dungeon": false, "has_important": true}, {"id": 7392, "name": "TarPit3", "category": "resource", "x": 1972.9, "z": 4491.3, "px": 2384.7, "py": 2814.5, "has_dungeon": false, "has_important": true}, {"id": 7393, "name": "TarPit3", "category": "resource", "x": -5894.5, "z": -1199.6, "px": 1042.0, "py": 1843.3, "has_dungeon": false, "has_important": true}, {"id": 7394, "name": "TarPit3", "category": "resource", "x": -2487.3, "z": 4038.1, "px": 1623.5, "py": 2737.2, "has_dungeon": false, "has_important": true}, {"id": 7395, "name": "TarPit3", "category": "resource", "x": 4465.3, "z": -1402.9, "px": 2810.1, "py": 1808.6, "has_dungeon": false, "has_important": true}, {"id": 7396, "name": "TarPit3", "category": "resource", "x": 4657.3, "z": 1336.6, "px": 2842.8, "py": 2276.1, "has_dungeon": false, "has_important": true}, {"id": 7397, "name": "TarPit3", "category": "resource", "x": 4734.5, "z": 3200.3, "px": 2856.0, "py": 2594.2, "has_dungeon": false, "has_important": true}, {"id": 7398, "name": "TarPit3", "category": "resource", "x": 3834.4, "z": -904.0, "px": 2702.4, "py": 1893.7, "has_dungeon": false, "has_important": true}, {"id": 7399, "name": "TarPit3", "category": "resource", "x": 3633.5, "z": -1010.4, "px": 2668.1, "py": 1875.6, "has_dungeon": false, "has_important": true}, {"id": 7400, "name": "TarPit3", "category": "resource", "x": -706.7, "z": 3977.8, "px": 1927.4, "py": 2726.9, "has_dungeon": false, "has_important": true}, {"id": 7401, "name": "TarPit3", "category": "resource", "x": 3854.4, "z": -1030.9, "px": 2705.8, "py": 1872.1, "has_dungeon": false, "has_important": true}, {"id": 7402, "name": "TarPit3", "category": "resource", "x": 5374.8, "z": -2286.7, "px": 2965.3, "py": 1657.7, "has_dungeon": false, "has_important": true}, {"id": 7403, "name": "TarPit3", "category": "resource", "x": -3829.6, "z": 2247.0, "px": 1394.4, "py": 2431.5, "has_dungeon": false, "has_important": true}, {"id": 7404, "name": "TarPit3", "category": "resource", "x": 5048.7, "z": -1294.9, "px": 2909.6, "py": 1827.0, "has_dungeon": false, "has_important": true}, {"id": 7405, "name": "TarPit3", "category": "resource", "x": 1225.3, "z": -3985.2, "px": 2257.1, "py": 1367.9, "has_dungeon": false, "has_important": true}, {"id": 7406, "name": "TarPit3", "category": "resource", "x": 1484.6, "z": -4304.3, "px": 2301.4, "py": 1313.4, "has_dungeon": false, "has_important": true}, {"id": 7407, "name": "TarPit3", "category": "resource", "x": 6277.3, "z": 1598.3, "px": 3119.3, "py": 2320.8, "has_dungeon": false, "has_important": true}, {"id": 7408, "name": "TarPit3", "category": "resource", "x": -4220.8, "z": 2065.5, "px": 1327.7, "py": 2400.5, "has_dungeon": false, "has_important": true}, {"id": 7409, "name": "TarPit3", "category": "resource", "x": -4046.5, "z": 1155.9, "px": 1357.4, "py": 2245.3, "has_dungeon": false, "has_important": true}, {"id": 7410, "name": "TarPit3", "category": "resource", "x": 4791.3, "z": -1777.8, "px": 2865.7, "py": 1744.6, "has_dungeon": false, "has_important": true}, {"id": 7411, "name": "TarPit3", "category": "resource", "x": -2241.2, "z": 3967.0, "px": 1665.5, "py": 2725.0, "has_dungeon": false, "has_important": true}, {"id": 7412, "name": "TarPit3", "category": "resource", "x": -2512.6, "z": -3086.2, "px": 1619.2, "py": 1521.3, "has_dungeon": false, "has_important": true}, {"id": 7413, "name": "TarPit3", "category": "resource", "x": -2701.2, "z": -2812.1, "px": 1587.0, "py": 1568.1, "has_dungeon": false, "has_important": true}, {"id": 7414, "name": "TarPit3", "category": "resource", "x": 6863.2, "z": 2158.6, "px": 3219.3, "py": 2416.4, "has_dungeon": false, "has_important": true}, {"id": 7415, "name": "TarPit3", "category": "resource", "x": -1266.0, "z": -6712.2, "px": 1831.9, "py": 902.5, "has_dungeon": false, "has_important": true}, {"id": 7416, "name": "TarPit3", "category": "resource", "x": 6768.8, "z": 3190.8, "px": 3203.2, "py": 2592.6, "has_dungeon": false, "has_important": true}, {"id": 7417, "name": "TarPit3", "category": "resource", "x": -3074.0, "z": 2439.7, "px": 1523.4, "py": 2464.4, "has_dungeon": false, "has_important": true}, {"id": 7418, "name": "TarPit3", "category": "resource", "x": -4480.2, "z": -324.1, "px": 1283.4, "py": 1992.7, "has_dungeon": false, "has_important": true}, {"id": 7419, "name": "TarPit3", "category": "resource", "x": -3064.2, "z": 5835.4, "px": 1525.0, "py": 3043.9, "has_dungeon": false, "has_important": true}, {"id": 7420, "name": "TarPit3", "category": "resource", "x": 3260.9, "z": -387.3, "px": 2604.5, "py": 1981.9, "has_dungeon": false, "has_important": true}, {"id": 7421, "name": "TarPit3", "category": "resource", "x": 4527.2, "z": 1468.9, "px": 2820.6, "py": 2298.7, "has_dungeon": false, "has_important": true}, {"id": 7422, "name": "TarPit3", "category": "resource", "x": 1223.8, "z": -3831.8, "px": 2256.9, "py": 1394.0, "has_dungeon": false, "has_important": true}, {"id": 7423, "name": "TarPit3", "category": "resource", "x": 1979.2, "z": 4023.0, "px": 2385.8, "py": 2734.6, "has_dungeon": false, "has_important": true}, {"id": 7424, "name": "TarPit3", "category": "resource", "x": 5054.4, "z": 8.0, "px": 2910.6, "py": 2049.4, "has_dungeon": false, "has_important": true}, {"id": 7425, "name": "TarPit3", "category": "resource", "x": -5050.0, "z": 3698.7, "px": 1186.1, "py": 2679.2, "has_dungeon": false, "has_important": true}, {"id": 7426, "name": "TarPit3", "category": "resource", "x": 6713.1, "z": 2098.7, "px": 3193.7, "py": 2406.2, "has_dungeon": false, "has_important": true}, {"id": 7427, "name": "TarPit3", "category": "resource", "x": 2802.3, "z": 4875.2, "px": 2526.3, "py": 2880.0, "has_dungeon": false, "has_important": true}, {"id": 7428, "name": "TarPit3", "category": "resource", "x": 4859.7, "z": -1417.8, "px": 2877.4, "py": 1806.0, "has_dungeon": false, "has_important": true}, {"id": 7429, "name": "TarPit3", "category": "resource", "x": 4721.4, "z": -2095.5, "px": 2853.8, "py": 1690.4, "has_dungeon": false, "has_important": true}, {"id": 7430, "name": "TarPit3", "category": "resource", "x": -1916.3, "z": 3217.8, "px": 1721.0, "py": 2597.2, "has_dungeon": false, "has_important": true}, {"id": 7431, "name": "TarPit3", "category": "resource", "x": 4869.7, "z": 2896.1, "px": 2879.1, "py": 2542.3, "has_dungeon": false, "has_important": true}, {"id": 7432, "name": "TarPit3", "category": "resource", "x": -4846.1, "z": 3845.6, "px": 1220.9, "py": 2704.3, "has_dungeon": false, "has_important": true}, {"id": 7433, "name": "TarPit3", "category": "resource", "x": -652.9, "z": 5107.5, "px": 1936.6, "py": 2919.7, "has_dungeon": false, "has_important": true}, {"id": 7434, "name": "TarPit3", "category": "resource", "x": 1854.4, "z": -3505.5, "px": 2364.5, "py": 1449.7, "has_dungeon": false, "has_important": true}, {"id": 7435, "name": "TarPit3", "category": "resource", "x": -2064.7, "z": 3278.0, "px": 1695.6, "py": 2607.4, "has_dungeon": false, "has_important": true}, {"id": 7436, "name": "TarPit3", "category": "resource", "x": -2038.0, "z": 2937.2, "px": 1700.2, "py": 2549.3, "has_dungeon": false, "has_important": true}, {"id": 7437, "name": "TarPit3", "category": "resource", "x": -1011.7, "z": 5069.4, "px": 1875.3, "py": 2913.2, "has_dungeon": false, "has_important": true}, {"id": 7438, "name": "TarPit3", "category": "resource", "x": 6925.9, "z": -2445.0, "px": 3230.0, "py": 1630.7, "has_dungeon": false, "has_important": true}, {"id": 7439, "name": "TarPit3", "category": "resource", "x": 1137.3, "z": -4278.0, "px": 2242.1, "py": 1317.9, "has_dungeon": false, "has_important": true}, {"id": 7440, "name": "TarPit3", "category": "resource", "x": 5261.3, "z": -2510.4, "px": 2945.9, "py": 1619.6, "has_dungeon": false, "has_important": true}, {"id": 7441, "name": "TarPit3", "category": "resource", "x": -3665.2, "z": 2293.8, "px": 1422.5, "py": 2439.5, "has_dungeon": false, "has_important": true}, {"id": 7442, "name": "TarPit3", "category": "resource", "x": -3254.5, "z": 3972.1, "px": 1492.6, "py": 2725.9, "has_dungeon": false, "has_important": true}, {"id": 7443, "name": "TarPit3", "category": "resource", "x": -1678.9, "z": -4917.2, "px": 1761.5, "py": 1208.8, "has_dungeon": false, "has_important": true}, {"id": 948, "name": "CharredStone_Spawner", "category": "spawner", "x": -3576.6, "z": -8966.9, "px": 1437.6, "py": 517.6, "has_dungeon": false, "has_important": true}, {"id": 949, "name": "CharredStone_Spawner", "category": "spawner", "x": 2047.7, "z": -9591.0, "px": 2397.5, "py": 411.1, "has_dungeon": false, "has_important": true}, {"id": 950, "name": "CharredStone_Spawner", "category": "spawner", "x": 5385.1, "z": -8007.0, "px": 2967.1, "py": 681.5, "has_dungeon": false, "has_important": true}, {"id": 951, "name": "CharredStone_Spawner", "category": "spawner", "x": 2487.8, "z": -9097.0, "px": 2472.6, "py": 495.4, "has_dungeon": false, "has_important": true}, {"id": 952, "name": "CharredStone_Spawner", "category": "spawner", "x": -5001.2, "z": -7735.0, "px": 1194.5, "py": 727.9, "has_dungeon": false, "has_important": true}, {"id": 953, "name": "CharredStone_Spawner", "category": "spawner", "x": 5508.9, "z": -8057.8, "px": 2988.2, "py": 672.8, "has_dungeon": false, "has_important": true}, {"id": 954, "name": "CharredStone_Spawner", "category": "spawner", "x": 4104.2, "z": -8761.2, "px": 2748.5, "py": 552.8, "has_dungeon": false, "has_important": true}, {"id": 955, "name": "CharredStone_Spawner", "category": "spawner", "x": -1851.2, "z": -9346.8, "px": 1732.1, "py": 452.8, "has_dungeon": false, "has_important": true}, {"id": 956, "name": "CharredStone_Spawner", "category": "spawner", "x": -650.4, "z": -9226.3, "px": 1937.0, "py": 473.4, "has_dungeon": false, "has_important": true}, {"id": 957, "name": "CharredStone_Spawner", "category": "spawner", "x": -5575.7, "z": -7689.6, "px": 1096.4, "py": 735.6, "has_dungeon": false, "has_important": true}, {"id": 958, "name": "CharredStone_Spawner", "category": "spawner", "x": -772.9, "z": -9593.2, "px": 1916.1, "py": 410.8, "has_dungeon": false, "has_important": true}, {"id": 959, "name": "CharredStone_Spawner", "category": "spawner", "x": -2881.7, "z": -8570.7, "px": 1556.2, "py": 585.3, "has_dungeon": false, "has_important": true}, {"id": 960, "name": "CharredStone_Spawner", "category": "spawner", "x": -521.2, "z": -8760.5, "px": 1959.0, "py": 552.9, "has_dungeon": false, "has_important": true}, {"id": 961, "name": "CharredStone_Spawner", "category": "spawner", "x": 3467.3, "z": -8185.2, "px": 2639.8, "py": 651.1, "has_dungeon": false, "has_important": true}, {"id": 962, "name": "CharredStone_Spawner", "category": "spawner", "x": -1025.4, "z": -8959.6, "px": 1873.0, "py": 518.9, "has_dungeon": false, "has_important": true}, {"id": 963, "name": "CharredStone_Spawner", "category": "spawner", "x": -70.2, "z": -9590.5, "px": 2036.0, "py": 411.2, "has_dungeon": false, "has_important": true}, {"id": 964, "name": "CharredStone_Spawner", "category": "spawner", "x": 3131.2, "z": -9211.6, "px": 2582.4, "py": 475.9, "has_dungeon": false, "has_important": true}, {"id": 965, "name": "CharredStone_Spawner", "category": "spawner", "x": 3587.9, "z": -8386.3, "px": 2660.3, "py": 616.7, "has_dungeon": false, "has_important": true}, {"id": 966, "name": "CharredStone_Spawner", "category": "spawner", "x": 584.7, "z": -8775.6, "px": 2147.8, "py": 550.3, "has_dungeon": false, "has_important": true}, {"id": 967, "name": "CharredStone_Spawner", "category": "spawner", "x": -1223.7, "z": -9525.6, "px": 1839.2, "py": 422.3, "has_dungeon": false, "has_important": true}, {"id": 968, "name": "CharredStone_Spawner", "category": "spawner", "x": 2886.5, "z": -9351.3, "px": 2540.6, "py": 452.0, "has_dungeon": false, "has_important": true}, {"id": 969, "name": "CharredStone_Spawner", "category": "spawner", "x": 3072.8, "z": -9078.5, "px": 2572.4, "py": 498.6, "has_dungeon": false, "has_important": true}, {"id": 970, "name": "CharredStone_Spawner", "category": "spawner", "x": -3768.3, "z": -8376.7, "px": 1404.9, "py": 618.4, "has_dungeon": false, "has_important": true}, {"id": 971, "name": "CharredStone_Spawner", "category": "spawner", "x": -2812.2, "z": -8444.1, "px": 1568.1, "py": 606.9, "has_dungeon": false, "has_important": true}, {"id": 972, "name": "CharredStone_Spawner", "category": "spawner", "x": -2361.2, "z": -8327.4, "px": 1645.0, "py": 626.8, "has_dungeon": false, "has_important": true}, {"id": 973, "name": "CharredStone_Spawner", "category": "spawner", "x": -325.6, "z": -8756.9, "px": 1992.4, "py": 553.5, "has_dungeon": false, "has_important": true}, {"id": 974, "name": "CharredStone_Spawner", "category": "spawner", "x": 580.9, "z": -9353.4, "px": 2147.1, "py": 451.7, "has_dungeon": false, "has_important": true}, {"id": 975, "name": "CharredStone_Spawner", "category": "spawner", "x": -649.4, "z": -8709.6, "px": 1937.2, "py": 561.6, "has_dungeon": false, "has_important": true}, {"id": 976, "name": "CharredStone_Spawner", "category": "spawner", "x": 1349.7, "z": -9352.6, "px": 2278.3, "py": 451.8, "has_dungeon": false, "has_important": true}, {"id": 977, "name": "CharredStone_Spawner", "category": "spawner", "x": 140.0, "z": -9088.1, "px": 2071.9, "py": 497.0, "has_dungeon": false, "has_important": true}, {"id": 978, "name": "CharredStone_Spawner", "category": "spawner", "x": 441.5, "z": -9412.8, "px": 2123.3, "py": 441.5, "has_dungeon": false, "has_important": true}, {"id": 979, "name": "CharredStone_Spawner", "category": "spawner", "x": 1787.4, "z": -9140.5, "px": 2353.0, "py": 488.0, "has_dungeon": false, "has_important": true}, {"id": 980, "name": "CharredStone_Spawner", "category": "spawner", "x": 1785.2, "z": -9404.6, "px": 2352.7, "py": 442.9, "has_dungeon": false, "has_important": true}, {"id": 981, "name": "CharredStone_Spawner", "category": "spawner", "x": -1091.4, "z": -9280.8, "px": 1861.7, "py": 464.1, "has_dungeon": false, "has_important": true}, {"id": 982, "name": "CharredStone_Spawner", "category": "spawner", "x": -5448.6, "z": -7814.3, "px": 1118.1, "py": 714.4, "has_dungeon": false, "has_important": true}, {"id": 983, "name": "CharredStone_Spawner", "category": "spawner", "x": 2300.1, "z": -9342.3, "px": 2440.6, "py": 453.6, "has_dungeon": false, "has_important": true}, {"id": 984, "name": "CharredStone_Spawner", "category": "spawner", "x": 3018.5, "z": -8955.4, "px": 2563.2, "py": 519.6, "has_dungeon": false, "has_important": true}, {"id": 985, "name": "CharredStone_Spawner", "category": "spawner", "x": -455.0, "z": -9400.5, "px": 1970.3, "py": 443.6, "has_dungeon": false, "has_important": true}, {"id": 986, "name": "CharredStone_Spawner", "category": "spawner", "x": -3525.6, "z": -8572.8, "px": 1446.3, "py": 584.9, "has_dungeon": false, "has_important": true}, {"id": 987, "name": "CharredStone_Spawner", "category": "spawner", "x": -2560.7, "z": -8391.3, "px": 1611.0, "py": 615.9, "has_dungeon": false, "has_important": true}, {"id": 988, "name": "CharredStone_Spawner", "category": "spawner", "x": 3274.8, "z": -8521.4, "px": 2606.9, "py": 593.7, "has_dungeon": false, "has_important": true}, {"id": 989, "name": "CharredStone_Spawner", "category": "spawner", "x": 189.1, "z": -9281.3, "px": 2080.3, "py": 464.0, "has_dungeon": false, "has_important": true}, {"id": 990, "name": "CharredStone_Spawner", "category": "spawner", "x": -650.4, "z": -9854.0, "px": 1937.0, "py": 366.3, "has_dungeon": false, "has_important": true}, {"id": 991, "name": "CharredStone_Spawner", "category": "spawner", "x": -3524.7, "z": -8374.8, "px": 1446.5, "py": 618.7, "has_dungeon": false, "has_important": true}, {"id": 992, "name": "CharredStone_Spawner", "category": "spawner", "x": -1092.4, "z": -9792.9, "px": 1861.6, "py": 376.7, "has_dungeon": false, "has_important": true}, {"id": 993, "name": "CharredStone_Spawner", "category": "spawner", "x": -505.7, "z": -9910.4, "px": 1961.7, "py": 356.6, "has_dungeon": false, "has_important": true}, {"id": 994, "name": "CharredStone_Spawner", "category": "spawner", "x": 829.5, "z": -8968.1, "px": 2189.6, "py": 517.4, "has_dungeon": false, "has_important": true}, {"id": 995, "name": "CharredStone_Spawner", "category": "spawner", "x": -696.0, "z": -9082.9, "px": 1929.2, "py": 497.9, "has_dungeon": false, "has_important": true}, {"id": 996, "name": "CharredStone_Spawner", "category": "spawner", "x": 1097.5, "z": -9018.8, "px": 2235.3, "py": 508.8, "has_dungeon": false, "has_important": true}, {"id": 997, "name": "CharredStone_Spawner", "category": "spawner", "x": 1415.7, "z": -9726.7, "px": 2289.6, "py": 388.0, "has_dungeon": false, "has_important": true}, {"id": 998, "name": "CharredStone_Spawner", "category": "spawner", "x": -2945.1, "z": -8437.3, "px": 1545.4, "py": 608.0, "has_dungeon": false, "has_important": true}, {"id": 999, "name": "CharredStone_Spawner", "category": "spawner", "x": -5063.3, "z": -8054.6, "px": 1183.9, "py": 673.3, "has_dungeon": false, "has_important": true}, {"id": 1000, "name": "CharredStone_Spawner", "category": "spawner", "x": -1349.6, "z": -9796.5, "px": 1817.7, "py": 376.1, "has_dungeon": false, "has_important": true}, {"id": 1001, "name": "CharredStone_Spawner", "category": "spawner", "x": -2612.4, "z": -9022.2, "px": 1602.2, "py": 508.2, "has_dungeon": false, "has_important": true}, {"id": 1002, "name": "CharredStone_Spawner", "category": "spawner", "x": 117.3, "z": -9716.0, "px": 2068.0, "py": 389.8, "has_dungeon": false, "has_important": true}, {"id": 1003, "name": "CharredStone_Spawner", "category": "spawner", "x": 2936.5, "z": -8758.8, "px": 2549.2, "py": 553.2, "has_dungeon": false, "has_important": true}, {"id": 1004, "name": "CharredStone_Spawner", "category": "spawner", "x": 503.3, "z": -8636.1, "px": 2133.9, "py": 574.1, "has_dungeon": false, "has_important": true}, {"id": 1005, "name": "CharredStone_Spawner", "category": "spawner", "x": -949.5, "z": -8885.6, "px": 1886.0, "py": 531.5, "has_dungeon": false, "has_important": true}, {"id": 1006, "name": "CharredStone_Spawner", "category": "spawner", "x": -4937.8, "z": -8446.7, "px": 1205.3, "py": 606.4, "has_dungeon": false, "has_important": true}, {"id": 1007, "name": "CharredStone_Spawner", "category": "spawner", "x": -842.0, "z": -9285.4, "px": 1904.3, "py": 463.3, "has_dungeon": false, "has_important": true}, {"id": 1008, "name": "CharredStone_Spawner", "category": "spawner", "x": -636.2, "z": -9529.2, "px": 1939.4, "py": 421.7, "has_dungeon": false, "has_important": true}, {"id": 1009, "name": "CharredStone_Spawner", "category": "spawner", "x": -572.1, "z": -9080.1, "px": 1950.4, "py": 498.3, "has_dungeon": false, "has_important": true}, {"id": 1010, "name": "CharredStone_Spawner", "category": "spawner", "x": -1013.6, "z": -9728.2, "px": 1875.0, "py": 387.7, "has_dungeon": false, "has_important": true}, {"id": 1011, "name": "CharredStone_Spawner", "category": "spawner", "x": 188.8, "z": -8708.0, "px": 2080.2, "py": 561.8, "has_dungeon": false, "has_important": true}, {"id": 1012, "name": "CharredStone_Spawner", "category": "spawner", "x": -969.4, "z": -9853.1, "px": 1882.6, "py": 366.4, "has_dungeon": false, "has_important": true}, {"id": 1013, "name": "CharredStone_Spawner", "category": "spawner", "x": 3588.2, "z": -8580.9, "px": 2660.4, "py": 583.5, "has_dungeon": false, "has_important": true}, {"id": 1014, "name": "CharredStone_Spawner", "category": "spawner", "x": 1030.7, "z": -8836.6, "px": 2223.9, "py": 539.9, "has_dungeon": false, "has_important": true}, {"id": 1015, "name": "CharredStone_Spawner", "category": "spawner", "x": 1853.1, "z": -9530.3, "px": 2364.3, "py": 421.5, "has_dungeon": false, "has_important": true}, {"id": 1016, "name": "CharredStone_Spawner", "category": "spawner", "x": 903.9, "z": -9403.0, "px": 2202.3, "py": 443.2, "has_dungeon": false, "has_important": true}, {"id": 1017, "name": "CharredStone_Spawner", "category": "spawner", "x": 456.5, "z": -9141.1, "px": 2125.9, "py": 487.9, "has_dungeon": false, "has_important": true}, {"id": 1018, "name": "CharredStone_Spawner", "category": "spawner", "x": -2552.2, "z": -8702.5, "px": 1612.4, "py": 562.8, "has_dungeon": false, "has_important": true}, {"id": 1019, "name": "CharredStone_Spawner", "category": "spawner", "x": -1140.4, "z": -9141.1, "px": 1853.4, "py": 487.9, "has_dungeon": false, "has_important": true}, {"id": 1020, "name": "CharredStone_Spawner", "category": "spawner", "x": 2115.1, "z": -8395.1, "px": 2409.0, "py": 615.2, "has_dungeon": false, "has_important": true}, {"id": 1021, "name": "CharredStone_Spawner", "category": "spawner", "x": 266.4, "z": -9418.2, "px": 2093.5, "py": 440.6, "has_dungeon": false, "has_important": true}, {"id": 1022, "name": "CharredStone_Spawner", "category": "spawner", "x": -3787.7, "z": -8260.4, "px": 1401.6, "py": 638.2, "has_dungeon": false, "has_important": true}, {"id": 1023, "name": "CharredStone_Spawner", "category": "spawner", "x": -3636.3, "z": -8315.6, "px": 1427.4, "py": 628.8, "has_dungeon": false, "has_important": true}, {"id": 1024, "name": "CharredStone_Spawner", "category": "spawner", "x": -4670.0, "z": -8011.2, "px": 1251.0, "py": 680.8, "has_dungeon": false, "has_important": true}, {"id": 1025, "name": "CharredStone_Spawner", "category": "spawner", "x": 3977.8, "z": -8701.8, "px": 2726.9, "py": 562.9, "has_dungeon": false, "has_important": true}, {"id": 1026, "name": "CharredStone_Spawner", "category": "spawner", "x": 907.0, "z": -8885.5, "px": 2202.8, "py": 531.5, "has_dungeon": false, "has_important": true}, {"id": 1027, "name": "CharredStone_Spawner", "category": "spawner", "x": -3968.3, "z": -8651.0, "px": 1370.7, "py": 571.6, "has_dungeon": false, "has_important": true}, {"id": 1028, "name": "CharredStone_Spawner", "category": "spawner", "x": -5322.8, "z": -7820.0, "px": 1139.6, "py": 713.4, "has_dungeon": false, "has_important": true}, {"id": 1029, "name": "CharredStone_Spawner", "category": "spawner", "x": -74.9, "z": -9739.8, "px": 2035.2, "py": 385.7, "has_dungeon": false, "has_important": true}, {"id": 1030, "name": "CharredStone_Spawner", "category": "spawner", "x": 4214.5, "z": -8763.8, "px": 2767.3, "py": 552.3, "has_dungeon": false, "has_important": true}, {"id": 1031, "name": "CharredStone_Spawner", "category": "spawner", "x": 2119.8, "z": -8517.1, "px": 2409.8, "py": 594.4, "has_dungeon": false, "has_important": true}, {"id": 1032, "name": "CharredStone_Spawner", "category": "spawner", "x": -651.4, "z": -9333.1, "px": 1936.8, "py": 455.2, "has_dungeon": false, "has_important": true}, {"id": 1033, "name": "CharredStone_Spawner", "category": "spawner", "x": 2101.0, "z": -9402.6, "px": 2406.6, "py": 443.3, "has_dungeon": false, "has_important": true}, {"id": 1034, "name": "CharredStone_Spawner", "category": "spawner", "x": 331.7, "z": -8770.5, "px": 2104.6, "py": 551.2, "has_dungeon": false, "has_important": true}, {"id": 1035, "name": "CharredStone_Spawner", "category": "spawner", "x": -1216.7, "z": -9844.8, "px": 1840.3, "py": 367.8, "has_dungeon": false, "has_important": true}, {"id": 1036, "name": "CharredStone_Spawner", "category": "spawner", "x": 139.7, "z": -9473.5, "px": 2071.8, "py": 431.2, "has_dungeon": false, "has_important": true}, {"id": 1037, "name": "CharredStone_Spawner", "category": "spawner", "x": -2699.5, "z": -8650.1, "px": 1587.3, "py": 571.7, "has_dungeon": false, "has_important": true}, {"id": 1038, "name": "CharredStone_Spawner", "category": "spawner", "x": -3651.1, "z": -8501.6, "px": 1424.9, "py": 597.1, "has_dungeon": false, "has_important": true}, {"id": 1039, "name": "CharredStone_Spawner", "category": "spawner", "x": -4021.3, "z": -8827.3, "px": 1361.7, "py": 541.5, "has_dungeon": false, "has_important": true}, {"id": 1040, "name": "CharredStone_Spawner", "category": "spawner", "x": -437.6, "z": -9994.9, "px": 1973.3, "py": 342.2, "has_dungeon": false, "has_important": true}, {"id": 1041, "name": "CharredStone_Spawner", "category": "spawner", "x": -4664.2, "z": -8437.5, "px": 1252.0, "py": 608.0, "has_dungeon": false, "has_important": true}, {"id": 1042, "name": "CharredStone_Spawner", "category": "spawner", "x": -4795.8, "z": -8317.8, "px": 1229.5, "py": 628.4, "has_dungeon": false, "has_important": true}, {"id": 1043, "name": "CharredStone_Spawner", "category": "spawner", "x": 2360.7, "z": -9031.6, "px": 2450.9, "py": 506.6, "has_dungeon": false, "has_important": true}, {"id": 1044, "name": "CharredStone_Spawner", "category": "spawner", "x": 2181.2, "z": -9156.7, "px": 2420.3, "py": 485.3, "has_dungeon": false, "has_important": true}, {"id": 1045, "name": "CharredStone_Spawner", "category": "spawner", "x": -3900.7, "z": -9015.2, "px": 1382.3, "py": 509.4, "has_dungeon": false, "has_important": true}, {"id": 1046, "name": "CharredStone_Spawner", "category": "spawner", "x": 3189.9, "z": -8575.1, "px": 2592.4, "py": 584.5, "has_dungeon": false, "has_important": true}, {"id": 1047, "name": "CharredStone_Spawner", "category": "spawner", "x": -2489.8, "z": -8567.1, "px": 1623.1, "py": 585.9, "has_dungeon": false, "has_important": true}, {"id": 1048, "name": "CharredStone_Spawner", "category": "spawner", "x": -265.2, "z": -8893.8, "px": 2002.7, "py": 530.1, "has_dungeon": false, "has_important": true}, {"id": 1049, "name": "CharredStone_Spawner", "category": "spawner", "x": 2820.9, "z": -9223.0, "px": 2529.4, "py": 473.9, "has_dungeon": false, "has_important": true}, {"id": 1050, "name": "CharredStone_Spawner", "category": "spawner", "x": -903.9, "z": -9674.9, "px": 1893.7, "py": 396.8, "has_dungeon": false, "has_important": true}, {"id": 1051, "name": "CharredStone_Spawner", "category": "spawner", "x": -3528.4, "z": -8843.9, "px": 1445.8, "py": 538.6, "has_dungeon": false, "has_important": true}, {"id": 1052, "name": "CharredStone_Spawner", "category": "spawner", "x": -5564.8, "z": -7484.4, "px": 1098.3, "py": 770.7, "has_dungeon": false, "has_important": true}, {"id": 1053, "name": "CharredStone_Spawner", "category": "spawner", "x": 5387.0, "z": -7742.1, "px": 2967.4, "py": 726.7, "has_dungeon": false, "has_important": true}, {"id": 1054, "name": "CharredStone_Spawner", "category": "spawner", "x": 1464.1, "z": -9143.3, "px": 2297.9, "py": 487.5, "has_dungeon": false, "has_important": true}, {"id": 1055, "name": "CharredStone_Spawner", "category": "spawner", "x": 1543.5, "z": -9717.7, "px": 2311.4, "py": 389.5, "has_dungeon": false, "has_important": true}, {"id": 1056, "name": "CharredStone_Spawner", "category": "spawner", "x": 504.1, "z": -9926.7, "px": 2134.0, "py": 353.8, "has_dungeon": false, "has_important": true}, {"id": 1057, "name": "CharredStone_Spawner", "category": "spawner", "x": -5047.4, "z": -8198.8, "px": 1186.6, "py": 648.7, "has_dungeon": false, "has_important": true}, {"id": 1058, "name": "CharredStone_Spawner", "category": "spawner", "x": -3771.7, "z": -8772.3, "px": 1404.3, "py": 550.9, "has_dungeon": false, "has_important": true}, {"id": 1059, "name": "CharredStone_Spawner", "category": "spawner", "x": 1985.6, "z": -9397.0, "px": 2386.9, "py": 444.2, "has_dungeon": false, "has_important": true}, {"id": 1060, "name": "CharredStone_Spawner", "category": "spawner", "x": 3384.9, "z": -8331.2, "px": 2625.7, "py": 626.1, "has_dungeon": false, "has_important": true}, {"id": 1061, "name": "CharredStone_Spawner", "category": "spawner", "x": 2118.0, "z": -8260.3, "px": 2409.5, "py": 638.2, "has_dungeon": false, "has_important": true}, {"id": 1062, "name": "CharredStone_Spawner", "category": "spawner", "x": -2103.4, "z": -8775.7, "px": 1689.0, "py": 550.3, "has_dungeon": false, "has_important": true}, {"id": 1063, "name": "CharredStone_Spawner", "category": "spawner", "x": 692.0, "z": -8715.4, "px": 2166.1, "py": 560.6, "has_dungeon": false, "has_important": true}, {"id": 1064, "name": "CharredStone_Spawner", "category": "spawner", "x": 2550.7, "z": -9208.8, "px": 2483.3, "py": 476.4, "has_dungeon": false, "has_important": true}, {"id": 1065, "name": "CharredStone_Spawner", "category": "spawner", "x": 2301.6, "z": -8439.1, "px": 2440.8, "py": 607.7, "has_dungeon": false, "has_important": true}, {"id": 1066, "name": "CharredStone_Spawner", "category": "spawner", "x": 759.3, "z": -9144.0, "px": 2177.6, "py": 487.4, "has_dungeon": false, "has_important": true}, {"id": 1067, "name": "CharredStone_Spawner", "category": "spawner", "x": -5115.1, "z": -7669.1, "px": 1175.0, "py": 739.1, "has_dungeon": false, "has_important": true}, {"id": 1068, "name": "CharredStone_Spawner", "category": "spawner", "x": 1720.6, "z": -9786.0, "px": 2341.6, "py": 377.9, "has_dungeon": false, "has_important": true}, {"id": 1069, "name": "CharredStone_Spawner", "category": "spawner", "x": -324.0, "z": -9530.0, "px": 1992.7, "py": 421.5, "has_dungeon": false, "has_important": true}, {"id": 1070, "name": "CharredStone_Spawner", "category": "spawner", "x": 1717.2, "z": -9482.6, "px": 2341.1, "py": 429.6, "has_dungeon": false, "has_important": true}, {"id": 1071, "name": "CharredStone_Spawner", "category": "spawner", "x": -1163.7, "z": -9718.9, "px": 1849.4, "py": 389.3, "has_dungeon": false, "has_important": true}, {"id": 1072, "name": "CharredStone_Spawner", "category": "spawner", "x": -3842.6, "z": -8642.8, "px": 1392.2, "py": 573.0, "has_dungeon": false, "has_important": true}, {"id": 1073, "name": "CharredStone_Spawner", "category": "spawner", "x": -5386.6, "z": -7690.1, "px": 1128.7, "py": 735.6, "has_dungeon": false, "has_important": true}, {"id": 1074, "name": "CharredStone_Spawner", "category": "spawner", "x": 3652.1, "z": -8309.2, "px": 2671.3, "py": 629.9, "has_dungeon": false, "has_important": true}, {"id": 1075, "name": "CharredStone_Spawner", "category": "spawner", "x": -1983.2, "z": -9017.6, "px": 1709.5, "py": 509.0, "has_dungeon": false, "has_important": true}, {"id": 1076, "name": "CharredStone_Spawner", "category": "spawner", "x": -715.2, "z": -8887.7, "px": 1925.9, "py": 531.2, "has_dungeon": false, "has_important": true}, {"id": 1077, "name": "CharredStone_Spawner", "category": "spawner", "x": 1019.3, "z": -8643.8, "px": 2222.0, "py": 572.8, "has_dungeon": false, "has_important": true}, {"id": 1078, "name": "CharredStone_Spawner", "category": "spawner", "x": -1987.1, "z": -9349.7, "px": 1708.9, "py": 452.3, "has_dungeon": false, "has_important": true}, {"id": 1079, "name": "CharredStone_Spawner", "category": "spawner", "x": 501.3, "z": -9284.3, "px": 2133.6, "py": 463.5, "has_dungeon": false, "has_important": true}, {"id": 1080, "name": "CharredStone_Spawner", "category": "spawner", "x": -2420.3, "z": -8648.5, "px": 1634.9, "py": 572.0, "has_dungeon": false, "has_important": true}, {"id": 1081, "name": "CharredStone_Spawner", "category": "spawner", "x": 1396.7, "z": -8962.3, "px": 2286.4, "py": 518.4, "has_dungeon": false, "has_important": true}, {"id": 1082, "name": "CharredStone_Spawner", "category": "spawner", "x": -1539.2, "z": -9672.1, "px": 1785.3, "py": 397.3, "has_dungeon": false, "has_important": true}, {"id": 1083, "name": "CharredStone_Spawner", "category": "spawner", "x": 697.7, "z": -9226.5, "px": 2167.1, "py": 473.3, "has_dungeon": false, "has_important": true}, {"id": 1084, "name": "CharredStone_Spawner", "category": "spawner", "x": -1411.7, "z": -9461.8, "px": 1807.1, "py": 433.2, "has_dungeon": false, "has_important": true}, {"id": 1085, "name": "CharredStone_Spawner", "category": "spawner", "x": 705.1, "z": -8907.3, "px": 2168.3, "py": 527.8, "has_dungeon": false, "has_important": true}, {"id": 1086, "name": "CharredStone_Spawner", "category": "spawner", "x": -5063.8, "z": -7816.0, "px": 1183.8, "py": 714.1, "has_dungeon": false, "has_important": true}, {"id": 1087, "name": "CharredStone_Spawner", "category": "spawner", "x": -395.4, "z": -9611.6, "px": 1980.5, "py": 407.6, "has_dungeon": false, "has_important": true}, {"id": 1088, "name": "CharredStone_Spawner", "category": "spawner", "x": 1407.0, "z": -9528.1, "px": 2288.1, "py": 421.9, "has_dungeon": false, "has_important": true}, {"id": 1089, "name": "CharredStone_Spawner", "category": "spawner", "x": 373.1, "z": -9599.2, "px": 2111.7, "py": 409.7, "has_dungeon": false, "has_important": true}, {"id": 1090, "name": "CharredStone_Spawner", "category": "spawner", "x": -841.0, "z": -9909.1, "px": 1904.5, "py": 356.8, "has_dungeon": false, "has_important": true}, {"id": 1091, "name": "CharredStone_Spawner", "category": "spawner", "x": -4034.5, "z": -9030.4, "px": 1359.4, "py": 506.8, "has_dungeon": false, "has_important": true}, {"id": 1092, "name": "CharredStone_Spawner", "category": "spawner", "x": 827.2, "z": -8714.5, "px": 2189.2, "py": 560.7, "has_dungeon": false, "has_important": true}, {"id": 1093, "name": "CharredStone_Spawner", "category": "spawner", "x": 1729.1, "z": -8390.9, "px": 2343.1, "py": 616.0, "has_dungeon": false, "has_important": true}, {"id": 1094, "name": "CharredStone_Spawner", "category": "spawner", "x": -247.7, "z": -9728.9, "px": 2005.7, "py": 387.6, "has_dungeon": false, "has_important": true}, {"id": 1095, "name": "CharredStone_Spawner", "category": "spawner", "x": -3645.0, "z": -8199.7, "px": 1425.9, "py": 648.6, "has_dungeon": false, "has_important": true}, {"id": 1096, "name": "CharredStone_Spawner", "category": "spawner", "x": 1212.7, "z": -9288.9, "px": 2255.0, "py": 462.7, "has_dungeon": false, "has_important": true}, {"id": 1097, "name": "CharredStone_Spawner", "category": "spawner", "x": -2112.7, "z": -9148.6, "px": 1687.4, "py": 486.6, "has_dungeon": false, "has_important": true}, {"id": 1098, "name": "CharredStone_Spawner", "category": "spawner", "x": 1852.8, "z": -8387.4, "px": 2364.2, "py": 616.6, "has_dungeon": false, "has_important": true}, {"id": 1099, "name": "CharredStone_Spawner", "category": "spawner", "x": 3637.9, "z": -8123.9, "px": 2668.9, "py": 661.5, "has_dungeon": false, "has_important": true}, {"id": 1100, "name": "CharredStone_Spawner", "category": "spawner", "x": -2307.1, "z": -8645.3, "px": 1654.3, "py": 572.5, "has_dungeon": false, "has_important": true}, {"id": 1101, "name": "CharredStone_Spawner", "category": "spawner", "x": 4023.8, "z": -8907.7, "px": 2734.7, "py": 527.8, "has_dungeon": false, "has_important": true}, {"id": 1102, "name": "CharredStone_Spawner", "category": "spawner", "x": -3972.0, "z": -9144.6, "px": 1370.1, "py": 487.3, "has_dungeon": false, "has_important": true}, {"id": 1103, "name": "CharredStone_Spawner", "category": "spawner", "x": 1481.1, "z": -9024.9, "px": 2300.8, "py": 507.8, "has_dungeon": false, "has_important": true}, {"id": 1104, "name": "CharredStone_Spawner", "category": "spawner", "x": 3446.4, "z": -8010.7, "px": 2636.2, "py": 680.8, "has_dungeon": false, "has_important": true}, {"id": 1105, "name": "CharredStone_Spawner", "category": "spawner", "x": 3387.0, "z": -8503.5, "px": 2626.0, "py": 596.7, "has_dungeon": false, "has_important": true}, {"id": 1106, "name": "CharredStone_Spawner", "category": "spawner", "x": -828.9, "z": -9404.2, "px": 1906.5, "py": 443.0, "has_dungeon": false, "has_important": true}, {"id": 1107, "name": "CharredStone_Spawner", "category": "spawner", "x": -2763.2, "z": -8564.7, "px": 1576.4, "py": 586.3, "has_dungeon": false, "has_important": true}, {"id": 1108, "name": "CharredStone_Spawner", "category": "spawner", "x": 1218.4, "z": -9541.5, "px": 2255.9, "py": 419.6, "has_dungeon": false, "has_important": true}, {"id": 1109, "name": "CharredStone_Spawner", "category": "spawner", "x": 906.6, "z": -9140.2, "px": 2202.7, "py": 488.1, "has_dungeon": false, "has_important": true}, {"id": 1110, "name": "CharredStone_Spawner", "category": "spawner", "x": -4483.5, "z": -8060.3, "px": 1282.8, "py": 672.4, "has_dungeon": false, "has_important": true}, {"id": 1111, "name": "CharredStone_Spawner", "category": "spawner", "x": 1864.7, "z": -8575.4, "px": 2366.2, "py": 584.5, "has_dungeon": false, "has_important": true}, {"id": 1112, "name": "CharredStone_Spawner", "category": "spawner", "x": 1222.1, "z": -8884.9, "px": 2256.6, "py": 531.6, "has_dungeon": false, "has_important": true}, {"id": 1113, "name": "CharredStone_Spawner", "category": "spawner", "x": 643.6, "z": -9093.0, "px": 2157.8, "py": 496.1, "has_dungeon": false, "has_important": true}, {"id": 1114, "name": "CharredStone_Spawner", "category": "spawner", "x": -3700.1, "z": -8950.7, "px": 1416.5, "py": 520.4, "has_dungeon": false, "has_important": true}, {"id": 1115, "name": "CharredStone_Spawner", "category": "spawner", "x": -715.3, "z": -8630.6, "px": 1925.9, "py": 575.0, "has_dungeon": false, "has_important": true}, {"id": 1116, "name": "CharredStone_Spawner", "category": "spawner", "x": 1157.9, "z": -9411.6, "px": 2245.6, "py": 441.8, "has_dungeon": false, "has_important": true}, {"id": 1117, "name": "CharredStone_Spawner", "category": "spawner", "x": 3650.0, "z": -8500.3, "px": 2670.9, "py": 597.3, "has_dungeon": false, "has_important": true}, {"id": 1118, "name": "CharredStone_Spawner", "category": "spawner", "x": 1598.8, "z": -9218.2, "px": 2320.9, "py": 474.8, "has_dungeon": false, "has_important": true}, {"id": 1119, "name": "CharredStone_Spawner", "category": "spawner", "x": 1332.7, "z": -9666.0, "px": 2275.4, "py": 398.3, "has_dungeon": false, "has_important": true}, {"id": 1120, "name": "CharredStone_Spawner", "category": "spawner", "x": 3829.3, "z": -8393.4, "px": 2701.5, "py": 615.5, "has_dungeon": false, "has_important": true}, {"id": 1121, "name": "CharredStone_Spawner", "category": "spawner", "x": 126.2, "z": -8628.4, "px": 2069.5, "py": 575.4, "has_dungeon": false, "has_important": true}, {"id": 1122, "name": "CharredStone_Spawner", "category": "spawner", "x": -2103.3, "z": -8512.4, "px": 1689.0, "py": 595.2, "has_dungeon": false, "has_important": true}, {"id": 1123, "name": "CharredStone_Spawner", "category": "spawner", "x": 2.5, "z": -8961.2, "px": 2048.4, "py": 518.6, "has_dungeon": false, "has_important": true}, {"id": 1124, "name": "CharredStone_Spawner", "category": "spawner", "x": -2421.3, "z": -8901.7, "px": 1634.8, "py": 528.8, "has_dungeon": false, "has_important": true}, {"id": 1125, "name": "CharredStone_Spawner", "category": "spawner", "x": -3578.7, "z": -8715.1, "px": 1437.2, "py": 560.6, "has_dungeon": false, "has_important": true}, {"id": 1126, "name": "CharredStone_Spawner", "category": "spawner", "x": -4164.2, "z": -8183.6, "px": 1337.3, "py": 651.3, "has_dungeon": false, "has_important": true}, {"id": 1127, "name": "CharredStone_Spawner", "category": "spawner", "x": -5438.3, "z": -7490.9, "px": 1119.9, "py": 769.6, "has_dungeon": false, "has_important": true}, {"id": 1128, "name": "CharredStone_Spawner", "category": "spawner", "x": 3071.5, "z": -9346.3, "px": 2572.2, "py": 452.9, "has_dungeon": false, "has_important": true}, {"id": 1129, "name": "CharredStone_Spawner", "category": "spawner", "x": 74.6, "z": -8822.2, "px": 2060.7, "py": 542.3, "has_dungeon": false, "has_important": true}, {"id": 1130, "name": "CharredStone_Spawner", "category": "spawner", "x": -3337.1, "z": -8951.3, "px": 1478.5, "py": 520.3, "has_dungeon": false, "has_important": true}, {"id": 1131, "name": "CharredStone_Spawner", "category": "spawner", "x": -906.7, "z": -9478.4, "px": 1893.3, "py": 430.4, "has_dungeon": false, "has_important": true}, {"id": 1132, "name": "CharredStone_Spawner", "category": "spawner", "x": -4469.4, "z": -8260.4, "px": 1285.2, "py": 638.2, "has_dungeon": false, "has_important": true}, {"id": 1133, "name": "CharredStone_Spawner", "category": "spawner", "x": -3657.7, "z": -9093.7, "px": 1423.8, "py": 496.0, "has_dungeon": false, "has_important": true}, {"id": 1134, "name": "CharredStone_Spawner", "category": "spawner", "x": 2748.9, "z": -8960.1, "px": 2517.1, "py": 518.8, "has_dungeon": false, "has_important": true}, {"id": 1135, "name": "CharredStone_Spawner", "category": "spawner", "x": 566.5, "z": -9605.1, "px": 2144.7, "py": 408.7, "has_dungeon": false, "has_important": true}, {"id": 1136, "name": "CharredStone_Spawner", "category": "spawner", "x": 244.9, "z": -8948.6, "px": 2089.8, "py": 520.8, "has_dungeon": false, "has_important": true}, {"id": 1137, "name": "CharredStone_Spawner", "category": "spawner", "x": -2111.9, "z": -8952.4, "px": 1687.6, "py": 520.1, "has_dungeon": false, "has_important": true}, {"id": 1138, "name": "CharredStone_Spawner", "category": "spawner", "x": -3328.1, "z": -8772.4, "px": 1480.0, "py": 550.8, "has_dungeon": false, "has_important": true}, {"id": 1139, "name": "CharredStone_Spawner", "category": "spawner", "x": -330.6, "z": -9992.5, "px": 1991.6, "py": 342.6, "has_dungeon": false, "has_important": true}, {"id": 1140, "name": "CharredStone_Spawner", "category": "spawner", "x": 2699.3, "z": -9412.5, "px": 2508.7, "py": 441.6, "has_dungeon": false, "has_important": true}, {"id": 1141, "name": "CharredStone_Spawner", "category": "spawner", "x": -4407.4, "z": -7991.8, "px": 1295.8, "py": 684.1, "has_dungeon": false, "has_important": true}, {"id": 1142, "name": "CharredStone_Spawner", "category": "spawner", "x": -1464.8, "z": -9592.2, "px": 1798.0, "py": 410.9, "has_dungeon": false, "has_important": true}, {"id": 1143, "name": "CharredStone_Spawner", "category": "spawner", "x": -188.3, "z": -8958.7, "px": 2015.9, "py": 519.0, "has_dungeon": false, "has_important": true}, {"id": 1144, "name": "CharredStone_Spawner", "category": "spawner", "x": 2634.6, "z": -8968.9, "px": 2497.6, "py": 517.3, "has_dungeon": false, "has_important": true}, {"id": 1145, "name": "CharredStone_Spawner", "category": "spawner", "x": -4809.1, "z": -8440.5, "px": 1227.2, "py": 607.5, "has_dungeon": false, "has_important": true}, {"id": 1146, "name": "CharredStone_Spawner", "category": "spawner", "x": 1270.2, "z": -9094.7, "px": 2264.8, "py": 495.8, "has_dungeon": false, "has_important": true}, {"id": 1147, "name": "CharredStone_Spawner", "category": "spawner", "x": -631.9, "z": -8957.8, "px": 1940.2, "py": 519.2, "has_dungeon": false, "has_important": true}, {"id": 1148, "name": "CharredStone_Spawner", "category": "spawner", "x": 1924.4, "z": -8316.3, "px": 2376.4, "py": 628.7, "has_dungeon": false, "has_important": true}, {"id": 1149, "name": "CharredStone_Spawner", "category": "spawner", "x": 1854.3, "z": -9275.1, "px": 2364.5, "py": 465.0, "has_dungeon": false, "has_important": true}, {"id": 1150, "name": "CharredStone_Spawner", "category": "spawner", "x": 266.7, "z": -9212.5, "px": 2093.5, "py": 475.7, "has_dungeon": false, "has_important": true}, {"id": 1151, "name": "CharredStone_Spawner", "category": "spawner", "x": -1342.1, "z": -9227.8, "px": 1818.9, "py": 473.1, "has_dungeon": false, "has_important": true}, {"id": 1152, "name": "CharredStone_Spawner", "category": "spawner", "x": 3194.5, "z": -9349.4, "px": 2593.2, "py": 452.4, "has_dungeon": false, "has_important": true}, {"id": 1153, "name": "CharredStone_Spawner", "category": "spawner", "x": 3005.9, "z": -9216.1, "px": 2561.0, "py": 475.1, "has_dungeon": false, "has_important": true}, {"id": 1154, "name": "CharredStone_Spawner", "category": "spawner", "x": 3844.7, "z": -8832.5, "px": 2704.2, "py": 540.6, "has_dungeon": false, "has_important": true}, {"id": 1155, "name": "CharredStone_Spawner", "category": "spawner", "x": 3573.7, "z": -8201.7, "px": 2657.9, "py": 648.2, "has_dungeon": false, "has_important": true}, {"id": 1156, "name": "CharredStone_Spawner", "category": "spawner", "x": 573.9, "z": -8884.9, "px": 2145.9, "py": 531.6, "has_dungeon": false, "has_important": true}, {"id": 1157, "name": "CharredStone_Spawner", "category": "spawner", "x": -2619.5, "z": -8886.2, "px": 1600.9, "py": 531.4, "has_dungeon": false, "has_important": true}, {"id": 1158, "name": "CharredStone_Spawner", "category": "spawner", "x": -2306.9, "z": -9032.7, "px": 1654.3, "py": 506.4, "has_dungeon": false, "has_important": true}, {"id": 1159, "name": "CharredStone_Spawner", "category": "spawner", "x": -2303.0, "z": -8244.2, "px": 1655.0, "py": 641.0, "has_dungeon": false, "has_important": true}, {"id": 1160, "name": "CharredStone_Spawner", "category": "spawner", "x": 4218.2, "z": -8648.8, "px": 2767.9, "py": 571.9, "has_dungeon": false, "has_important": true}, {"id": 1161, "name": "CharredStone_Spawner", "category": "spawner", "x": -4541.6, "z": -8378.7, "px": 1272.9, "py": 618.0, "has_dungeon": false, "has_important": true}, {"id": 1162, "name": "CharredStone_Spawner", "category": "spawner", "x": -2251.4, "z": -8768.8, "px": 1663.8, "py": 551.5, "has_dungeon": false, "has_important": true}, {"id": 1163, "name": "CharredStone_Spawner", "category": "spawner", "x": 52.1, "z": -8708.5, "px": 2056.9, "py": 561.7, "has_dungeon": false, "has_important": true}, {"id": 1164, "name": "CharredStone_Spawner", "category": "spawner", "x": -4617.0, "z": -8200.3, "px": 1260.0, "py": 648.5, "has_dungeon": false, "has_important": true}, {"id": 1165, "name": "CharredStone_Spawner", "category": "spawner", "x": -4487.6, "z": -7924.3, "px": 1282.1, "py": 695.6, "has_dungeon": false, "has_important": true}, {"id": 1166, "name": "CharredStone_Spawner", "category": "spawner", "x": -119.1, "z": -9031.5, "px": 2027.7, "py": 506.6, "has_dungeon": false, "has_important": true}, {"id": 1167, "name": "CharredStone_Spawner", "category": "spawner", "x": -3851.3, "z": -8836.6, "px": 1390.7, "py": 539.9, "has_dungeon": false, "has_important": true}, {"id": 1168, "name": "CharredStone_Spawner", "category": "spawner", "x": -4340.2, "z": -8070.5, "px": 1307.3, "py": 670.6, "has_dungeon": false, "has_important": true}, {"id": 1169, "name": "CharredStone_Spawner", "category": "spawner", "x": 3267.1, "z": -8266.1, "px": 2605.6, "py": 637.3, "has_dungeon": false, "has_important": true}, {"id": 1170, "name": "CharredStone_Spawner", "category": "spawner", "x": -5186.6, "z": -8070.2, "px": 1162.8, "py": 670.7, "has_dungeon": false, "has_important": true}, {"id": 1171, "name": "CharredStone_Spawner", "category": "spawner", "x": 2677.2, "z": -9227.8, "px": 2504.9, "py": 473.1, "has_dungeon": false, "has_important": true}, {"id": 1172, "name": "CharredStone_Spawner", "category": "spawner", "x": 1464.4, "z": -9417.7, "px": 2297.9, "py": 440.7, "has_dungeon": false, "has_important": true}, {"id": 1173, "name": "CharredStone_Spawner", "category": "spawner", "x": 907.2, "z": -8637.6, "px": 2202.8, "py": 573.8, "has_dungeon": false, "has_important": true}, {"id": 1174, "name": "CharredStone_Spawner", "category": "spawner", "x": 195.8, "z": -9589.4, "px": 2081.4, "py": 411.4, "has_dungeon": false, "has_important": true}, {"id": 1175, "name": "CharredStone_Spawner", "category": "spawner", "x": -505.6, "z": -9738.1, "px": 1961.7, "py": 386.0, "has_dungeon": false, "has_important": true}, {"id": 1176, "name": "CharredStone_Spawner", "category": "spawner", "x": 955.4, "z": -8758.4, "px": 2211.1, "py": 553.2, "has_dungeon": false, "has_important": true}, {"id": 1177, "name": "CharredStone_Spawner", "category": "spawner", "x": 2757.8, "z": -9098.9, "px": 2518.7, "py": 495.1, "has_dungeon": false, "has_important": true}, {"id": 1178, "name": "CharredStone_Spawner", "category": "spawner", "x": -511.4, "z": -8964.4, "px": 1960.7, "py": 518.1, "has_dungeon": false, "has_important": true}, {"id": 1179, "name": "CharredStone_Spawner", "category": "spawner", "x": 3273.7, "z": -8629.6, "px": 2606.7, "py": 575.2, "has_dungeon": false, "has_important": true}, {"id": 1180, "name": "CharredStone_Spawner", "category": "spawner", "x": -181.5, "z": -9530.0, "px": 2017.0, "py": 421.5, "has_dungeon": false, "has_important": true}, {"id": 1181, "name": "CharredStone_Spawner", "category": "spawner", "x": 393.5, "z": -8969.9, "px": 2115.2, "py": 517.1, "has_dungeon": false, "has_important": true}, {"id": 1182, "name": "CharredStone_Spawner", "category": "spawner", "x": -3714.8, "z": -8645.1, "px": 1414.0, "py": 572.6, "has_dungeon": false, "has_important": true}, {"id": 1183, "name": "CharredStone_Spawner", "category": "spawner", "x": -842.4, "z": -8708.6, "px": 1904.2, "py": 561.7, "has_dungeon": false, "has_important": true}, {"id": 1184, "name": "CharredStone_Spawner", "category": "spawner", "x": 2820.0, "z": -8840.4, "px": 2529.3, "py": 539.2, "has_dungeon": false, "has_important": true}, {"id": 1185, "name": "CharredStone_Spawner", "category": "spawner", "x": -4805.3, "z": -8180.7, "px": 1227.9, "py": 651.8, "has_dungeon": false, "has_important": true}, {"id": 1186, "name": "CharredStone_Spawner", "category": "spawner", "x": 2431.0, "z": -9218.4, "px": 2462.9, "py": 474.7, "has_dungeon": false, "has_important": true}, {"id": 1187, "name": "CharredStone_Spawner", "category": "spawner", "x": 436.6, "z": -8713.4, "px": 2122.5, "py": 560.9, "has_dungeon": false, "has_important": true}, {"id": 1188, "name": "CharredStone_Spawner", "category": "spawner", "x": -950.9, "z": -8763.2, "px": 1885.7, "py": 552.4, "has_dungeon": false, "has_important": true}, {"id": 1189, "name": "CharredStone_Spawner", "category": "spawner", "x": 827.6, "z": -9279.4, "px": 2189.2, "py": 464.3, "has_dungeon": false, "has_important": true}, {"id": 1190, "name": "CharredStone_Spawner", "category": "spawner", "x": 3272.9, "z": -9281.4, "px": 2606.6, "py": 464.0, "has_dungeon": false, "has_important": true}, {"id": 1191, "name": "CharredStone_Spawner", "category": "spawner", "x": -953.0, "z": -9035.6, "px": 1885.4, "py": 505.9, "has_dungeon": false, "has_important": true}, {"id": 1192, "name": "CharredStone_Spawner", "category": "spawner", "x": -837.5, "z": -9141.7, "px": 1905.1, "py": 487.8, "has_dungeon": false, "has_important": true}, {"id": 1193, "name": "CharredStone_Spawner", "category": "spawner", "x": -267.9, "z": -9849.2, "px": 2002.3, "py": 367.1, "has_dungeon": false, "has_important": true}, {"id": 1194, "name": "CharredStone_Spawner", "category": "spawner", "x": 1024.3, "z": -9464.6, "px": 2222.8, "py": 432.7, "has_dungeon": false, "has_important": true}, {"id": 1195, "name": "CharredStone_Spawner", "category": "spawner", "x": -2426.1, "z": -8443.0, "px": 1633.9, "py": 607.1, "has_dungeon": false, "has_important": true}, {"id": 1196, "name": "CharredStone_Spawner", "category": "spawner", "x": -2357.9, "z": -8521.0, "px": 1645.6, "py": 593.7, "has_dungeon": false, "has_important": true}, {"id": 1197, "name": "CharredStone_Spawner", "category": "spawner", "x": -123.5, "z": -8837.1, "px": 2026.9, "py": 539.8, "has_dungeon": false, "has_important": true}, {"id": 1198, "name": "CharredStone_Spawner", "category": "spawner", "x": 576.9, "z": -9206.2, "px": 2146.5, "py": 476.8, "has_dungeon": false, "has_important": true}, {"id": 1199, "name": "CharredStone_Spawner", "category": "spawner", "x": -713.7, "z": -9718.6, "px": 1926.2, "py": 389.4, "has_dungeon": false, "has_important": true}, {"id": 1200, "name": "CharredStone_Spawner", "category": "spawner", "x": 517.0, "z": -9791.1, "px": 2136.2, "py": 377.0, "has_dungeon": false, "has_important": true}, {"id": 1201, "name": "CharredStone_Spawner", "category": "spawner", "x": 5318.9, "z": -7929.2, "px": 2955.8, "py": 694.7, "has_dungeon": false, "has_important": true}, {"id": 1202, "name": "CharredStone_Spawner", "category": "spawner", "x": -2246.7, "z": -8332.0, "px": 1664.6, "py": 626.0, "has_dungeon": false, "has_important": true}, {"id": 1203, "name": "CharredStone_Spawner", "category": "spawner", "x": 1284.1, "z": -8969.8, "px": 2267.2, "py": 517.2, "has_dungeon": false, "has_important": true}, {"id": 1204, "name": "CharredStone_Spawner", "category": "spawner", "x": -762.9, "z": -9844.2, "px": 1917.8, "py": 367.9, "has_dungeon": false, "has_important": true}, {"id": 1205, "name": "CharredStone_Spawner", "category": "spawner", "x": 3911.7, "z": -8906.8, "px": 2715.6, "py": 527.9, "has_dungeon": false, "has_important": true}, {"id": 1206, "name": "CharredStone_Spawner", "category": "spawner", "x": -518.4, "z": -9223.8, "px": 1959.5, "py": 473.8, "has_dungeon": false, "has_important": true}, {"id": 1207, "name": "CharredStone_Spawner", "category": "spawner", "x": -2502.7, "z": -9023.7, "px": 1620.9, "py": 508.0, "has_dungeon": false, "has_important": true}, {"id": 1208, "name": "CharredStone_Spawner", "category": "spawner", "x": -3650.8, "z": -9222.9, "px": 1424.9, "py": 474.0, "has_dungeon": false, "has_important": true}, {"id": 1209, "name": "CharredStone_Spawner", "category": "spawner", "x": 2231.0, "z": -8519.0, "px": 2428.8, "py": 594.1, "has_dungeon": false, "has_important": true}, {"id": 1210, "name": "CharredStone_Spawner", "category": "spawner", "x": 1013.6, "z": -9153.2, "px": 2221.0, "py": 485.9, "has_dungeon": false, "has_important": true}, {"id": 1211, "name": "CharredStone_Spawner", "category": "spawner", "x": -1848.9, "z": -9098.4, "px": 1732.5, "py": 495.2, "has_dungeon": false, "has_important": true}, {"id": 1212, "name": "CharredStone_Spawner", "category": "spawner", "x": 715.8, "z": -9930.2, "px": 2170.2, "py": 353.2, "has_dungeon": false, "has_important": true}, {"id": 1213, "name": "CharredStone_Spawner", "category": "spawner", "x": -1225.2, "z": -9344.2, "px": 1838.9, "py": 453.3, "has_dungeon": false, "has_important": true}, {"id": 1214, "name": "CharredStone_Spawner", "category": "spawner", "x": -1091.3, "z": -9407.5, "px": 1861.8, "py": 442.5, "has_dungeon": false, "has_important": true}, {"id": 1215, "name": "CharredStone_Spawner", "category": "spawner", "x": 1404.2, "z": -9268.3, "px": 2287.7, "py": 466.2, "has_dungeon": false, "has_important": true}, {"id": 1216, "name": "CharredStone_Spawner", "category": "spawner", "x": -2057.0, "z": -9273.4, "px": 1696.9, "py": 465.3, "has_dungeon": false, "has_important": true}, {"id": 1217, "name": "CharredStone_Spawner", "category": "spawner", "x": -1410.9, "z": -9354.7, "px": 1807.2, "py": 451.5, "has_dungeon": false, "has_important": true}, {"id": 1218, "name": "CharredStone_Spawner", "category": "spawner", "x": -1029.4, "z": -9154.6, "px": 1872.3, "py": 485.6, "has_dungeon": false, "has_important": true}, {"id": 1219, "name": "CharredStone_Spawner", "category": "spawner", "x": -635.1, "z": -8827.5, "px": 1939.6, "py": 541.4, "has_dungeon": false, "has_important": true}, {"id": 1220, "name": "CharredStone_Spawner", "category": "spawner", "x": -1225.6, "z": -9083.6, "px": 1838.8, "py": 497.7, "has_dungeon": false, "has_important": true}, {"id": 1221, "name": "CharredStone_Spawner", "category": "spawner", "x": -4788.7, "z": -8073.5, "px": 1230.7, "py": 670.1, "has_dungeon": false, "has_important": true}, {"id": 1222, "name": "CharredStone_Spawner", "category": "spawner", "x": 629.1, "z": -9738.3, "px": 2155.4, "py": 386.0, "has_dungeon": false, "has_important": true}, {"id": 1223, "name": "CharredStone_Spawner", "category": "spawner", "x": 255.5, "z": -9079.0, "px": 2091.6, "py": 498.5, "has_dungeon": false, "has_important": true}, {"id": 1224, "name": "CharredStone_Spawner", "category": "spawner", "x": -1985.0, "z": -8779.8, "px": 1709.2, "py": 549.6, "has_dungeon": false, "has_important": true}, {"id": 1225, "name": "CharredStone_Spawner", "category": "spawner", "x": -957.4, "z": -9284.5, "px": 1884.6, "py": 463.4, "has_dungeon": false, "has_important": true}, {"id": 1226, "name": "CharredStone_Spawner", "category": "spawner", "x": 1670.9, "z": -9078.8, "px": 2333.2, "py": 498.6, "has_dungeon": false, "has_important": true}, {"id": 1227, "name": "CharredStone_Spawner", "category": "spawner", "x": 5127.4, "z": -7754.8, "px": 2923.1, "py": 724.5, "has_dungeon": false, "has_important": true}, {"id": 1228, "name": "CharredStone_Spawner", "category": "spawner", "x": 1480.2, "z": -9601.3, "px": 2300.6, "py": 409.4, "has_dungeon": false, "has_important": true}, {"id": 1229, "name": "CharredStone_Spawner", "category": "spawner", "x": -1219.5, "z": -9211.9, "px": 1839.9, "py": 475.8, "has_dungeon": false, "has_important": true}, {"id": 1230, "name": "CharredStone_Spawner", "category": "spawner", "x": 506.9, "z": -9016.9, "px": 2134.5, "py": 509.1, "has_dungeon": false, "has_important": true}, {"id": 1231, "name": "CharredStone_Spawner", "category": "spawner", "x": -500.6, "z": -8645.1, "px": 1962.6, "py": 572.6, "has_dungeon": false, "has_important": true}, {"id": 1232, "name": "CharredStone_Spawner", "category": "spawner", "x": 1162.9, "z": -9097.3, "px": 2246.5, "py": 495.4, "has_dungeon": false, "has_important": true}, {"id": 1233, "name": "CharredStone_Spawner", "category": "spawner", "x": -2187.3, "z": -9081.9, "px": 1674.7, "py": 498.0, "has_dungeon": false, "has_important": true}, {"id": 1234, "name": "CharredStone_Spawner", "category": "spawner", "x": -139.3, "z": -9663.3, "px": 2024.2, "py": 398.8, "has_dungeon": false, "has_important": true}, {"id": 1235, "name": "CharredStone_Spawner", "category": "spawner", "x": 5308.8, "z": -7806.2, "px": 2954.0, "py": 715.7, "has_dungeon": false, "has_important": true}, {"id": 1236, "name": "CharredStone_Spawner", "category": "spawner", "x": -2187.2, "z": -8630.4, "px": 1674.7, "py": 575.1, "has_dungeon": false, "has_important": true}, {"id": 1237, "name": "CharredStone_Spawner", "category": "spawner", "x": -4982.1, "z": -8318.7, "px": 1197.7, "py": 628.3, "has_dungeon": false, "has_important": true}, {"id": 1238, "name": "CharredStone_Spawner", "category": "spawner", "x": -571.4, "z": -9657.2, "px": 1950.5, "py": 399.8, "has_dungeon": false, "has_important": true}, {"id": 1239, "name": "CharredStone_Spawner", "category": "spawner", "x": -833.1, "z": -8820.2, "px": 1905.8, "py": 542.7, "has_dungeon": false, "has_important": true}, {"id": 1240, "name": "CharredStone_Spawner", "category": "spawner", "x": -5631.8, "z": -7606.7, "px": 1086.8, "py": 749.8, "has_dungeon": false, "has_important": true}, {"id": 1241, "name": "CharredStone_Spawner", "category": "spawner", "x": 1787.1, "z": -8699.8, "px": 2353.0, "py": 563.2, "has_dungeon": false, "has_important": true}, {"id": 1242, "name": "CharredStone_Spawner", "category": "spawner", "x": 2247.3, "z": -9019.8, "px": 2431.5, "py": 508.6, "has_dungeon": false, "has_important": true}, {"id": 1243, "name": "CharredStone_Spawner", "category": "spawner", "x": -1656.9, "z": -9528.8, "px": 1765.2, "py": 421.8, "has_dungeon": false, "has_important": true}, {"id": 1244, "name": "CharredStone_Spawner", "category": "spawner", "x": 1663.4, "z": -9604.0, "px": 2331.9, "py": 408.9, "has_dungeon": false, "has_important": true}, {"id": 1245, "name": "CharredStone_Spawner", "category": "spawner", "x": -2953.5, "z": -9079.4, "px": 1543.9, "py": 498.4, "has_dungeon": false, "has_important": true}, {"id": 1246, "name": "CharredStone_Spawner", "category": "spawner", "x": -843.9, "z": -9022.6, "px": 1904.0, "py": 508.1, "has_dungeon": false, "has_important": true}, {"id": 1247, "name": "CharredStone_Spawner", "category": "spawner", "x": -5303.8, "z": -7619.9, "px": 1142.8, "py": 747.5, "has_dungeon": false, "has_important": true}, {"id": 1248, "name": "CharredStone_Spawner", "category": "spawner", "x": -1335.4, "z": -9526.9, "px": 1820.1, "py": 422.1, "has_dungeon": false, "has_important": true}, {"id": 1249, "name": "CharredStone_Spawner", "category": "spawner", "x": 1739.8, "z": -9674.7, "px": 2344.9, "py": 396.9, "has_dungeon": false, "has_important": true}, {"id": 1250, "name": "CharredStone_Spawner", "category": "spawner", "x": -4347.2, "z": -8317.0, "px": 1306.1, "py": 628.6, "has_dungeon": false, "has_important": true}, {"id": 1251, "name": "CharredStone_Spawner", "category": "spawner", "x": 8.9, "z": -8567.0, "px": 2049.5, "py": 585.9, "has_dungeon": false, "has_important": true}, {"id": 1252, "name": "CharredStone_Spawner", "category": "spawner", "x": 260.0, "z": -8635.2, "px": 2092.4, "py": 574.3, "has_dungeon": false, "has_important": true}, {"id": 1253, "name": "CharredStone_Spawner", "category": "spawner", "x": -318.1, "z": -8645.1, "px": 1993.7, "py": 572.6, "has_dungeon": false, "has_important": true}, {"id": 1254, "name": "CharredStone_Spawner", "category": "spawner", "x": 3511.7, "z": -8452.4, "px": 2647.3, "py": 605.5, "has_dungeon": false, "has_important": true}, {"id": 1255, "name": "CharredStone_Spawner", "category": "spawner", "x": 320.1, "z": -9332.8, "px": 2102.6, "py": 455.2, "has_dungeon": false, "has_important": true}, {"id": 1256, "name": "CharredStone_Spawner", "category": "spawner", "x": -4417.2, "z": -8136.0, "px": 1294.1, "py": 659.5, "has_dungeon": false, "has_important": true}, {"id": 1257, "name": "CharredStone_Spawner", "category": "spawner", "x": 2248.6, "z": -8907.2, "px": 2431.8, "py": 527.8, "has_dungeon": false, "has_important": true}, {"id": 1258, "name": "CharredStone_Spawner", "category": "spawner", "x": -1279.4, "z": -9673.9, "px": 1829.6, "py": 397.0, "has_dungeon": false, "has_important": true}, {"id": 1259, "name": "CharredStone_Spawner", "category": "spawner", "x": 1080.2, "z": -9347.7, "px": 2232.4, "py": 452.7, "has_dungeon": false, "has_important": true}, {"id": 1260, "name": "CharredStone_Spawner", "category": "spawner", "x": -3528.6, "z": -9080.1, "px": 1445.8, "py": 498.3, "has_dungeon": false, "has_important": true}, {"id": 1261, "name": "CharredStone_Spawner", "category": "spawner", "x": -1543.8, "z": -9530.0, "px": 1784.5, "py": 421.5, "has_dungeon": false, "has_important": true}, {"id": 1262, "name": "CharredStone_Spawner", "category": "spawner", "x": -5175.6, "z": -7934.1, "px": 1164.7, "py": 693.9, "has_dungeon": false, "has_important": true}, {"id": 1263, "name": "CharredStone_Spawner", "category": "spawner", "x": 5428.0, "z": -8139.4, "px": 2974.4, "py": 658.9, "has_dungeon": false, "has_important": true}, {"id": 1264, "name": "CharredStone_Spawner", "category": "spawner", "x": 2945.8, "z": -9033.2, "px": 2550.7, "py": 506.3, "has_dungeon": false, "has_important": true}, {"id": 1265, "name": "CharredStone_Spawner", "category": "spawner", "x": 5623.2, "z": -8128.2, "px": 3007.7, "py": 660.8, "has_dungeon": false, "has_important": true}, {"id": 1266, "name": "CharredStone_Spawner", "category": "spawner", "x": 3272.7, "z": -9414.8, "px": 2606.5, "py": 441.2, "has_dungeon": false, "has_important": true}, {"id": 1267, "name": "CharredStone_Spawner", "category": "spawner", "x": -3448.3, "z": -9014.5, "px": 1459.5, "py": 509.5, "has_dungeon": false, "has_important": true}, {"id": 1268, "name": "CharredStone_Spawner", "category": "spawner", "x": 3332.0, "z": -8182.9, "px": 2616.7, "py": 651.5, "has_dungeon": false, "has_important": true}, {"id": 1269, "name": "CharredStone_Spawner", "category": "spawner", "x": -5560.4, "z": -7798.3, "px": 1099.0, "py": 717.1, "has_dungeon": false, "has_important": true}, {"id": 1270, "name": "CharredStone_Spawner", "category": "spawner", "x": 4040.3, "z": -9013.6, "px": 2737.5, "py": 509.7, "has_dungeon": false, "has_important": true}, {"id": 1271, "name": "CharredStone_Spawner", "category": "spawner", "x": -440.3, "z": -9291.0, "px": 1972.9, "py": 462.3, "has_dungeon": false, "has_important": true}, {"id": 1272, "name": "CharredStone_Spawner", "category": "spawner", "x": 1734.3, "z": -9282.7, "px": 2344.0, "py": 463.8, "has_dungeon": false, "has_important": true}, {"id": 1273, "name": "CharredStone_Spawner", "category": "spawner", "x": 2181.5, "z": -9338.6, "px": 2420.3, "py": 454.2, "has_dungeon": false, "has_important": true}, {"id": 1274, "name": "CharredStone_Spawner", "category": "spawner", "x": -1032.1, "z": -9611.2, "px": 1871.9, "py": 407.7, "has_dungeon": false, "has_important": true}, {"id": 1275, "name": "CharredStone_Spawner", "category": "spawner", "x": 2248.3, "z": -8313.9, "px": 2431.7, "py": 629.1, "has_dungeon": false, "has_important": true}, {"id": 1276, "name": "CharredStone_Spawner", "category": "spawner", "x": -139.2, "z": -9844.9, "px": 2024.2, "py": 367.8, "has_dungeon": false, "has_important": true}, {"id": 1277, "name": "CharredStone_Spawner", "category": "spawner", "x": 767.2, "z": -9400.0, "px": 2178.9, "py": 443.7, "has_dungeon": false, "has_important": true}, {"id": 1278, "name": "CharredStone_Spawner", "category": "spawner", "x": -1928.7, "z": -9216.6, "px": 1718.8, "py": 475.0, "has_dungeon": false, "has_important": true}, {"id": 1279, "name": "CharredStone_Spawner", "category": "spawner", "x": 2614.6, "z": -9080.1, "px": 2494.2, "py": 498.3, "has_dungeon": false, "has_important": true}, {"id": 1280, "name": "CharredStone_Spawner", "category": "spawner", "x": -4724.3, "z": -8245.2, "px": 1241.7, "py": 640.8, "has_dungeon": false, "has_important": true}, {"id": 1281, "name": "CharredStone_Spawner", "category": "spawner", "x": 951.9, "z": -9034.3, "px": 2210.5, "py": 506.1, "has_dungeon": false, "has_important": true}, {"id": 1282, "name": "CharredStone_Spawner", "category": "spawner", "x": 2040.3, "z": -9482.7, "px": 2396.2, "py": 429.6, "has_dungeon": false, "has_important": true}, {"id": 1283, "name": "CharredStone_Spawner", "category": "spawner", "x": -374.9, "z": -9158.0, "px": 1984.0, "py": 485.0, "has_dungeon": false, "has_important": true}, {"id": 1284, "name": "CharredStone_Spawner", "category": "spawner", "x": -2750.7, "z": -8331.6, "px": 1578.5, "py": 626.1, "has_dungeon": false, "has_important": true}, {"id": 1285, "name": "CharredStone_Spawner", "category": "spawner", "x": 3705.2, "z": -8395.4, "px": 2680.4, "py": 615.2, "has_dungeon": false, "has_important": true}, {"id": 1286, "name": "CharredStone_Spawner", "category": "spawner", "x": -3912.2, "z": -8201.7, "px": 1380.3, "py": 648.2, "has_dungeon": false, "has_important": true}, {"id": 1287, "name": "CharredStone_Spawner", "category": "spawner", "x": 1.7, "z": -9083.2, "px": 2048.3, "py": 497.8, "has_dungeon": false, "has_important": true}, {"id": 1288, "name": "CharredStone_Spawner", "category": "spawner", "x": -446.1, "z": -9081.1, "px": 1971.9, "py": 498.2, "has_dungeon": false, "has_important": true}, {"id": 1289, "name": "CharredStone_Spawner", "category": "spawner", "x": 446.4, "z": -9720.0, "px": 2124.2, "py": 389.1, "has_dungeon": false, "has_important": true}, {"id": 1290, "name": "CharredStone_Spawner", "category": "spawner", "x": -4933.6, "z": -8199.5, "px": 1206.0, "py": 648.6, "has_dungeon": false, "has_important": true}, {"id": 1291, "name": "CharredStone_Spawner", "category": "spawner", "x": -3844.5, "z": -9099.0, "px": 1391.9, "py": 495.1, "has_dungeon": false, "has_important": true}, {"id": 1292, "name": "CharredStone_Spawner", "category": "spawner", "x": 3460.9, "z": -8583.1, "px": 2638.7, "py": 583.2, "has_dungeon": false, "has_important": true}, {"id": 1293, "name": "CharredStone_Spawner", "category": "spawner", "x": -5192.9, "z": -7546.4, "px": 1161.7, "py": 760.1, "has_dungeon": false, "has_important": true}, {"id": 1294, "name": "CharredStone_Spawner", "category": "spawner", "x": 439.8, "z": -8820.3, "px": 2123.1, "py": 542.7, "has_dungeon": false, "has_important": true}, {"id": 1295, "name": "CharredStone_Spawner", "category": "spawner", "x": 1596.2, "z": -9350.7, "px": 2320.4, "py": 452.1, "has_dungeon": false, "has_important": true}, {"id": 1296, "name": "CharredStone_Spawner", "category": "spawner", "x": 649.5, "z": -9536.5, "px": 2158.8, "py": 420.4, "has_dungeon": false, "has_important": true}, {"id": 1297, "name": "CharredStone_Spawner", "category": "spawner", "x": -394.1, "z": -9861.8, "px": 1980.7, "py": 364.9, "has_dungeon": false, "has_important": true}, {"id": 10811, "name": "AshlandRuins", "category": "structure", "x": -3648.0, "z": -8384.0, "px": 1425.4, "py": 617.1, "has_dungeon": true, "has_important": true}, {"id": 10812, "name": "AshlandRuins", "category": "structure", "x": -3520.0, "z": -8640.0, "px": 1447.3, "py": 573.4, "has_dungeon": true, "has_important": true}, {"id": 10813, "name": "AshlandRuins", "category": "structure", "x": 128.0, "z": -9536.0, "px": 2069.8, "py": 420.5, "has_dungeon": true, "has_important": true}, {"id": 10814, "name": "AshlandRuins", "category": "structure", "x": -3648.0, "z": -8256.0, "px": 1425.4, "py": 639.0, "has_dungeon": true, "has_important": true}, {"id": 10815, "name": "AshlandRuins", "category": "structure", "x": -5376.0, "z": -7552.0, "px": 1130.5, "py": 759.1, "has_dungeon": true, "has_important": true}, {"id": 10816, "name": "AshlandRuins", "category": "structure", "x": 1792.0, "z": -8512.0, "px": 2353.8, "py": 595.3, "has_dungeon": true, "has_important": true}, {"id": 10817, "name": "AshlandRuins", "category": "structure", "x": -5248.0, "z": -7552.0, "px": 1152.3, "py": 759.1, "has_dungeon": true, "has_important": true}, {"id": 10818, "name": "AshlandRuins", "category": "structure", "x": -1216.0, "z": -9728.0, "px": 1840.5, "py": 387.8, "has_dungeon": true, "has_important": true}, {"id": 10819, "name": "AshlandRuins", "category": "structure", "x": 64.0, "z": -9600.0, "px": 2058.9, "py": 409.6, "has_dungeon": true, "has_important": true}, {"id": 10820, "name": "AshlandRuins", "category": "structure", "x": -4480.0, "z": -8320.0, "px": 1283.4, "py": 628.1, "has_dungeon": true, "has_important": true}, {"id": 10821, "name": "AshlandRuins", "category": "structure", "x": -5056.0, "z": -8128.0, "px": 1185.1, "py": 660.8, "has_dungeon": true, "has_important": true}, {"id": 10822, "name": "AshlandRuins", "category": "structure", "x": 2240.0, "z": -8384.0, "px": 2430.3, "py": 617.1, "has_dungeon": true, "has_important": true}, {"id": 10823, "name": "AshlandRuins", "category": "structure", "x": -5312.0, "z": -7552.0, "px": 1141.4, "py": 759.1, "has_dungeon": true, "has_important": true}, {"id": 10824, "name": "AshlandRuins", "category": "structure", "x": -4480.0, "z": -8384.0, "px": 1283.4, "py": 617.1, "has_dungeon": true, "has_important": true}, {"id": 10825, "name": "AshlandRuins", "category": "structure", "x": -2304.0, "z": -8320.0, "px": 1654.8, "py": 628.1, "has_dungeon": true, "has_important": true}, {"id": 10826, "name": "AshlandRuins", "category": "structure", "x": 3904.0, "z": -8704.0, "px": 2714.3, "py": 562.5, "has_dungeon": true, "has_important": true}, {"id": 10827, "name": "AshlandRuins", "category": "structure", "x": -2496.0, "z": -8768.0, "px": 1622.0, "py": 551.6, "has_dungeon": true, "has_important": true}, {"id": 10828, "name": "AshlandRuins", "category": "structure", "x": -512.0, "z": -9024.0, "px": 1960.6, "py": 507.9, "has_dungeon": true, "has_important": true}, {"id": 10829, "name": "AshlandRuins", "category": "structure", "x": 2112.0, "z": -9664.0, "px": 2408.4, "py": 398.7, "has_dungeon": true, "has_important": true}, {"id": 10830, "name": "AshlandRuins", "category": "structure", "x": -2624.0, "z": -8768.0, "px": 1600.2, "py": 551.6, "has_dungeon": true, "has_important": true}, {"id": 10831, "name": "AshlandRuins", "category": "structure", "x": -5248.0, "z": -8064.0, "px": 1152.3, "py": 671.7, "has_dungeon": true, "has_important": true}, {"id": 10832, "name": "AshlandRuins", "category": "structure", "x": 2368.0, "z": -9280.0, "px": 2452.1, "py": 464.2, "has_dungeon": true, "has_important": true}, {"id": 10833, "name": "AshlandRuins", "category": "structure", "x": 2240.0, "z": -9152.0, "px": 2430.3, "py": 486.1, "has_dungeon": true, "has_important": true}, {"id": 10834, "name": "AshlandRuins", "category": "structure", "x": 1600.0, "z": -9792.0, "px": 2321.1, "py": 376.8, "has_dungeon": true, "has_important": true}, {"id": 10835, "name": "AshlandRuins", "category": "structure", "x": 1344.0, "z": -9600.0, "px": 2277.4, "py": 409.6, "has_dungeon": true, "has_important": true}, {"id": 10836, "name": "AshlandRuins", "category": "structure", "x": -1344.0, "z": -9280.0, "px": 1818.6, "py": 464.2, "has_dungeon": true, "has_important": true}, {"id": 10837, "name": "AshlandRuins", "category": "structure", "x": -576.0, "z": -9920.0, "px": 1949.7, "py": 355.0, "has_dungeon": true, "has_important": true}, {"id": 10838, "name": "AshlandRuins", "category": "structure", "x": -576.0, "z": -8704.0, "px": 1949.7, "py": 562.5, "has_dungeon": true, "has_important": true}, {"id": 10839, "name": "AshlandRuins", "category": "structure", "x": 2496.0, "z": -9152.0, "px": 2474.0, "py": 486.1, "has_dungeon": true, "has_important": true}, {"id": 10840, "name": "AshlandRuins", "category": "structure", "x": 3392.0, "z": -8128.0, "px": 2626.9, "py": 660.8, "has_dungeon": true, "has_important": true}, {"id": 10841, "name": "AshlandRuins", "category": "structure", "x": 3456.0, "z": -8128.0, "px": 2637.8, "py": 660.8, "has_dungeon": true, "has_important": true}, {"id": 10842, "name": "AshlandRuins", "category": "structure", "x": 1088.0, "z": -8832.0, "px": 2233.7, "py": 540.7, "has_dungeon": true, "has_important": true}, {"id": 10843, "name": "AshlandRuins", "category": "structure", "x": 3840.0, "z": -8896.0, "px": 2703.4, "py": 529.7, "has_dungeon": true, "has_important": true}, {"id": 10844, "name": "AshlandRuins", "category": "structure", "x": -3584.0, "z": -8384.0, "px": 1436.3, "py": 617.1, "has_dungeon": true, "has_important": true}, {"id": 10845, "name": "AshlandRuins", "category": "structure", "x": 832.0, "z": -8640.0, "px": 2190.0, "py": 573.4, "has_dungeon": true, "has_important": true}, {"id": 10846, "name": "AshlandRuins", "category": "structure", "x": 896.0, "z": -9024.0, "px": 2200.9, "py": 507.9, "has_dungeon": true, "has_important": true}, {"id": 10847, "name": "AshlandRuins", "category": "structure", "x": -4736.0, "z": -8320.0, "px": 1239.7, "py": 628.1, "has_dungeon": true, "has_important": true}, {"id": 10848, "name": "AshlandRuins", "category": "structure", "x": -2880.0, "z": -9088.0, "px": 1556.5, "py": 497.0, "has_dungeon": true, "has_important": true}, {"id": 10849, "name": "AshlandRuins", "category": "structure", "x": 2944.0, "z": -9280.0, "px": 2550.4, "py": 464.2, "has_dungeon": true, "has_important": true}, {"id": 10850, "name": "AshlandRuins", "category": "structure", "x": 3328.0, "z": -9280.0, "px": 2616.0, "py": 464.2, "has_dungeon": false, "has_important": false}, {"id": 10851, "name": "AshlandRuins", "category": "structure", "x": -1472.0, "z": -9408.0, "px": 1796.8, "py": 442.4, "has_dungeon": true, "has_important": true}, {"id": 10852, "name": "AshlandRuins", "category": "structure", "x": 3136.0, "z": -8384.0, "px": 2583.2, "py": 617.1, "has_dungeon": true, "has_important": true}, {"id": 10853, "name": "AshlandRuins", "category": "structure", "x": -3840.0, "z": -8896.0, "px": 1392.6, "py": 529.7, "has_dungeon": true, "has_important": true}, {"id": 10854, "name": "AshlandRuins", "category": "structure", "x": 256.0, "z": -9664.0, "px": 2091.7, "py": 398.7, "has_dungeon": true, "has_important": true}, {"id": 10855, "name": "AshlandRuins", "category": "structure", "x": -3264.0, "z": -8896.0, "px": 1490.9, "py": 529.7, "has_dungeon": true, "has_important": true}, {"id": 10856, "name": "AshlandRuins", "category": "structure", "x": 5248.0, "z": -7936.0, "px": 2943.7, "py": 693.6, "has_dungeon": true, "has_important": true}, {"id": 10857, "name": "AshlandRuins", "category": "structure", "x": 1984.0, "z": -8320.0, "px": 2386.6, "py": 628.1, "has_dungeon": true, "has_important": true}, {"id": 10858, "name": "AshlandRuins", "category": "structure", "x": -5440.0, "z": -7616.0, "px": 1119.6, "py": 748.2, "has_dungeon": true, "has_important": true}, {"id": 10859, "name": "AshlandRuins", "category": "structure", "x": -1152.0, "z": -9600.0, "px": 1851.4, "py": 409.6, "has_dungeon": true, "has_important": true}, {"id": 10860, "name": "AshlandRuins", "category": "structure", "x": 2368.0, "z": -8832.0, "px": 2452.1, "py": 540.7, "has_dungeon": true, "has_important": true}, {"id": 10861, "name": "AshlandRuins", "category": "structure", "x": -3712.0, "z": -9216.0, "px": 1414.5, "py": 475.1, "has_dungeon": true, "has_important": true}, {"id": 10862, "name": "AshlandRuins", "category": "structure", "x": -2624.0, "z": -8384.0, "px": 1600.2, "py": 617.1, "has_dungeon": true, "has_important": true}, {"id": 10863, "name": "AshlandRuins", "category": "structure", "x": 2176.0, "z": -8320.0, "px": 2419.4, "py": 628.1, "has_dungeon": true, "has_important": true}, {"id": 10864, "name": "AshlandRuins", "category": "structure", "x": -5248.0, "z": -7744.0, "px": 1152.3, "py": 726.4, "has_dungeon": true, "has_important": true}, {"id": 10865, "name": "AshlandRuins", "category": "structure", "x": -64.0, "z": -8896.0, "px": 2037.1, "py": 529.7, "has_dungeon": true, "has_important": true}, {"id": 10866, "name": "AshlandRuins", "category": "structure", "x": 1664.0, "z": -9728.0, "px": 2332.0, "py": 387.8, "has_dungeon": true, "has_important": true}, {"id": 10867, "name": "AshlandRuins", "category": "structure", "x": -1792.0, "z": -9152.0, "px": 1742.2, "py": 486.1, "has_dungeon": true, "has_important": true}, {"id": 10868, "name": "AshlandRuins", "category": "structure", "x": -5120.0, "z": -7744.0, "px": 1174.2, "py": 726.4, "has_dungeon": true, "has_important": true}, {"id": 10869, "name": "AshlandRuins", "category": "structure", "x": -4288.0, "z": -8128.0, "px": 1316.2, "py": 660.8, "has_dungeon": true, "has_important": true}, {"id": 10870, "name": "AshlandRuins", "category": "structure", "x": -1152.0, "z": -9664.0, "px": 1851.4, "py": 398.7, "has_dungeon": true, "has_important": true}, {"id": 10871, "name": "AshlandRuins", "category": "structure", "x": -1472.0, "z": -9728.0, "px": 1796.8, "py": 387.8, "has_dungeon": true, "has_important": true}, {"id": 10872, "name": "AshlandRuins", "category": "structure", "x": 2240.0, "z": -9408.0, "px": 2430.3, "py": 442.4, "has_dungeon": true, "has_important": true}, {"id": 10873, "name": "AshlandRuins", "category": "structure", "x": 1280.0, "z": -9216.0, "px": 2266.5, "py": 475.1, "has_dungeon": true, "has_important": true}, {"id": 10874, "name": "AshlandRuins", "category": "structure", "x": 2112.0, "z": -9472.0, "px": 2408.4, "py": 431.4, "has_dungeon": true, "has_important": true}, {"id": 10875, "name": "AshlandRuins", "category": "structure", "x": 1792.0, "z": -8576.0, "px": 2353.8, "py": 584.4, "has_dungeon": true, "has_important": true}, {"id": 10876, "name": "AshlandRuins", "category": "structure", "x": -3712.0, "z": -8832.0, "px": 1414.5, "py": 540.7, "has_dungeon": true, "has_important": true}, {"id": 10877, "name": "AshlandRuins", "category": "structure", "x": 5248.0, "z": -7744.0, "px": 2943.7, "py": 726.4, "has_dungeon": true, "has_important": true}, {"id": 10878, "name": "AshlandRuins", "category": "structure", "x": -3776.0, "z": -8576.0, "px": 1403.6, "py": 584.4, "has_dungeon": true, "has_important": true}, {"id": 10879, "name": "AshlandRuins", "category": "structure", "x": 3072.0, "z": -9280.0, "px": 2572.3, "py": 464.2, "has_dungeon": true, "has_important": true}, {"id": 10880, "name": "AshlandRuins", "category": "structure", "x": 2176.0, "z": -9280.0, "px": 2419.4, "py": 464.2, "has_dungeon": true, "has_important": true}, {"id": 10881, "name": "AshlandRuins", "category": "structure", "x": 3776.0, "z": -8256.0, "px": 2692.4, "py": 639.0, "has_dungeon": true, "has_important": true}, {"id": 10882, "name": "AshlandRuins", "category": "structure", "x": -3520.0, "z": -8320.0, "px": 1447.3, "py": 628.1, "has_dungeon": true, "has_important": true}, {"id": 10883, "name": "AshlandRuins", "category": "structure", "x": 5440.0, "z": -7936.0, "px": 2976.4, "py": 693.6, "has_dungeon": true, "has_important": true}, {"id": 10884, "name": "AshlandRuins", "category": "structure", "x": -1408.0, "z": -9408.0, "px": 1807.7, "py": 442.4, "has_dungeon": true, "has_important": true}, {"id": 10885, "name": "AshlandRuins", "category": "structure", "x": -128.0, "z": -8704.0, "px": 2026.2, "py": 562.5, "has_dungeon": true, "has_important": true}, {"id": 10886, "name": "AshlandRuins", "category": "structure", "x": -2560.0, "z": -8960.0, "px": 1611.1, "py": 518.8, "has_dungeon": true, "has_important": true}, {"id": 10887, "name": "AshlandRuins", "category": "structure", "x": -832.0, "z": -8768.0, "px": 1906.0, "py": 551.6, "has_dungeon": true, "has_important": true}, {"id": 10888, "name": "AshlandRuins", "category": "structure", "x": -5248.0, "z": -7872.0, "px": 1152.3, "py": 704.5, "has_dungeon": false, "has_important": false}, {"id": 10889, "name": "AshlandRuins", "category": "structure", "x": 2112.0, "z": -9600.0, "px": 2408.4, "py": 409.6, "has_dungeon": true, "has_important": true}, {"id": 10890, "name": "AshlandRuins", "category": "structure", "x": 3392.0, "z": -8576.0, "px": 2626.9, "py": 584.4, "has_dungeon": true, "has_important": true}, {"id": 10891, "name": "AshlandRuins", "category": "structure", "x": 2240.0, "z": -9088.0, "px": 2430.3, "py": 497.0, "has_dungeon": true, "has_important": true}, {"id": 10892, "name": "AshlandRuins", "category": "structure", "x": -5376.0, "z": -7808.0, "px": 1130.5, "py": 715.4, "has_dungeon": true, "has_important": true}, {"id": 10893, "name": "AshlandRuins", "category": "structure", "x": 4096.0, "z": -8896.0, "px": 2747.1, "py": 529.7, "has_dungeon": true, "has_important": true}, {"id": 10894, "name": "AshlandRuins", "category": "structure", "x": 1408.0, "z": -9152.0, "px": 2288.3, "py": 486.1, "has_dungeon": true, "has_important": true}, {"id": 10895, "name": "AshlandRuins", "category": "structure", "x": 1792.0, "z": -8384.0, "px": 2353.8, "py": 617.1, "has_dungeon": true, "has_important": true}, {"id": 10896, "name": "AshlandRuins", "category": "structure", "x": 192.0, "z": -9472.0, "px": 2080.8, "py": 431.4, "has_dungeon": true, "has_important": true}, {"id": 10897, "name": "AshlandRuins", "category": "structure", "x": 1856.0, "z": -8512.0, "px": 2364.8, "py": 595.3, "has_dungeon": true, "has_important": true}, {"id": 10898, "name": "AshlandRuins", "category": "structure", "x": -5504.0, "z": -7744.0, "px": 1108.7, "py": 726.4, "has_dungeon": true, "has_important": true}, {"id": 10899, "name": "AshlandRuins", "category": "structure", "x": 3648.0, "z": -8256.0, "px": 2670.6, "py": 639.0, "has_dungeon": true, "has_important": true}, {"id": 10900, "name": "AshlandRuins", "category": "structure", "x": -5120.0, "z": -8064.0, "px": 1174.2, "py": 671.7, "has_dungeon": true, "has_important": true}, {"id": 10901, "name": "AshlandRuins", "category": "structure", "x": -2368.0, "z": -8384.0, "px": 1643.9, "py": 617.1, "has_dungeon": true, "has_important": true}, {"id": 10902, "name": "AshlandRuins", "category": "structure", "x": -4672.0, "z": -8384.0, "px": 1250.6, "py": 617.1, "has_dungeon": true, "has_important": true}, {"id": 10903, "name": "AshlandRuins", "category": "structure", "x": 5184.0, "z": -7808.0, "px": 2932.7, "py": 715.4, "has_dungeon": true, "has_important": true}, {"id": 10904, "name": "AshlandRuins", "category": "structure", "x": 3648.0, "z": -8192.0, "px": 2670.6, "py": 649.9, "has_dungeon": true, "has_important": true}, {"id": 10905, "name": "AshlandRuins", "category": "structure", "x": 2944.0, "z": -9344.0, "px": 2550.4, "py": 453.3, "has_dungeon": true, "has_important": true}, {"id": 10906, "name": "AshlandRuins", "category": "structure", "x": -3520.0, "z": -9024.0, "px": 1447.3, "py": 507.9, "has_dungeon": true, "has_important": true}, {"id": 10907, "name": "AshlandRuins", "category": "structure", "x": 3200.0, "z": -8320.0, "px": 2594.1, "py": 628.1, "has_dungeon": true, "has_important": true}, {"id": 10908, "name": "AshlandRuins", "category": "structure", "x": 4032.0, "z": -8768.0, "px": 2736.1, "py": 551.6, "has_dungeon": true, "has_important": true}, {"id": 10909, "name": "AshlandRuins", "category": "structure", "x": -4992.0, "z": -7680.0, "px": 1196.0, "py": 737.3, "has_dungeon": true, "has_important": true}, {"id": 10910, "name": "AshlandRuins", "category": "structure", "x": -1920.0, "z": -9344.0, "px": 1720.3, "py": 453.3, "has_dungeon": true, "has_important": true}, {"id": 1298, "name": "BogWitch_Camp", "category": "structure", "x": -2369.2, "z": 4866.3, "px": 1643.7, "py": 2878.5, "has_dungeon": false, "has_important": true}, {"id": 1299, "name": "BogWitch_Camp", "category": "structure", "x": -1025.7, "z": -3719.1, "px": 1872.9, "py": 1413.3, "has_dungeon": false, "has_important": true}, {"id": 1300, "name": "BogWitch_Camp", "category": "structure", "x": -2683.7, "z": -5126.8, "px": 1590.0, "py": 1173.0, "has_dungeon": false, "has_important": true}, {"id": 1301, "name": "BogWitch_Camp", "category": "structure", "x": -3012.0, "z": 644.9, "px": 1534.0, "py": 2158.1, "has_dungeon": false, "has_important": true}, {"id": 1302, "name": "BogWitch_Camp", "category": "structure", "x": 4415.7, "z": -2939.8, "px": 2801.6, "py": 1546.3, "has_dungeon": false, "has_important": true}, {"id": 1303, "name": "BogWitch_Camp", "category": "structure", "x": 3776.7, "z": 4359.5, "px": 2692.6, "py": 2792.0, "has_dungeon": false, "has_important": true}, {"id": 1304, "name": "BogWitch_Camp", "category": "structure", "x": 3387.4, "z": -4358.3, "px": 2626.1, "py": 1304.2, "has_dungeon": false, "has_important": true}, {"id": 1305, "name": "BogWitch_Camp", "category": "structure", "x": -5125.4, "z": 1466.5, "px": 1173.3, "py": 2298.3, "has_dungeon": false, "has_important": true}, {"id": 1306, "name": "BogWitch_Camp", "category": "structure", "x": -4231.0, "z": 3712.2, "px": 1325.9, "py": 2681.5, "has_dungeon": false, "has_important": true}, {"id": 1307, "name": "BogWitch_Camp", "category": "structure", "x": 2239.6, "z": -3193.1, "px": 2430.2, "py": 1503.0, "has_dungeon": false, "has_important": true}, {"id": 928, "name": "CharredFortress", "category": "structure", "x": -704.0, "z": -9408.0, "px": 1927.9, "py": 442.4, "has_dungeon": false, "has_important": true}, {"id": 929, "name": "CharredFortress", "category": "structure", "x": -2304.0, "z": -8896.0, "px": 1654.8, "py": 529.7, "has_dungeon": false, "has_important": true}, {"id": 930, "name": "CharredFortress", "category": "structure", "x": 256.0, "z": -8896.0, "px": 2091.7, "py": 529.7, "has_dungeon": false, "has_important": true}, {"id": 931, "name": "CharredFortress", "category": "structure", "x": -384.0, "z": -8832.0, "px": 1982.5, "py": 540.7, "has_dungeon": false, "has_important": true}, {"id": 932, "name": "CharredFortress", "category": "structure", "x": 704.0, "z": -9344.0, "px": 2168.1, "py": 453.3, "has_dungeon": false, "has_important": true}, {"id": 933, "name": "CharredFortress", "category": "structure", "x": -576.0, "z": -9152.0, "px": 1949.7, "py": 486.1, "has_dungeon": false, "has_important": true}, {"id": 934, "name": "CharredFortress", "category": "structure", "x": -2240.0, "z": -8576.0, "px": 1665.7, "py": 584.4, "has_dungeon": false, "has_important": true}, {"id": 935, "name": "CharredFortress", "category": "structure", "x": 1152.0, "z": -9024.0, "px": 2244.6, "py": 507.9, "has_dungeon": false, "has_important": true}, {"id": 936, "name": "CharredFortress", "category": "structure", "x": 704.0, "z": -9088.0, "px": 2168.1, "py": 497.0, "has_dungeon": false, "has_important": true}, {"id": 937, "name": "CharredFortress", "category": "structure", "x": -832.0, "z": -8896.0, "px": 1906.0, "py": 529.7, "has_dungeon": false, "has_important": true}, {"id": 938, "name": "CharredFortress", "category": "structure", "x": 1536.0, "z": -9152.0, "px": 2310.1, "py": 486.1, "has_dungeon": false, "has_important": true}, {"id": 939, "name": "CharredFortress", "category": "structure", "x": 1600.0, "z": -9408.0, "px": 2321.1, "py": 442.4, "has_dungeon": false, "has_important": true}, {"id": 940, "name": "CharredFortress", "category": "structure", "x": -1152.0, "z": -9536.0, "px": 1851.4, "py": 420.5, "has_dungeon": false, "has_important": true}, {"id": 941, "name": "CharredFortress", "category": "structure", "x": 384.0, "z": -9344.0, "px": 2113.5, "py": 453.3, "has_dungeon": false, "has_important": true}, {"id": 942, "name": "CharredFortress", "category": "structure", "x": -320.0, "z": -9856.0, "px": 1993.4, "py": 365.9, "has_dungeon": false, "has_important": true}, {"id": 943, "name": "CharredFortress", "category": "structure", "x": 1280.0, "z": -9344.0, "px": 2266.5, "py": 453.3, "has_dungeon": false, "has_important": true}, {"id": 944, "name": "CharredFortress", "category": "structure", "x": -896.0, "z": -9216.0, "px": 1895.1, "py": 475.1, "has_dungeon": false, "has_important": true}, {"id": 945, "name": "CharredFortress", "category": "structure", "x": -896.0, "z": -9600.0, "px": 1895.1, "py": 409.6, "has_dungeon": false, "has_important": true}, {"id": 946, "name": "CharredFortress", "category": "structure", "x": 1024.0, "z": -9344.0, "px": 2222.8, "py": 453.3, "has_dungeon": false, "has_important": true}, {"id": 947, "name": "CharredFortress", "category": "structure", "x": -640.0, "z": -9792.0, "px": 1938.8, "py": 376.8, "has_dungeon": false, "has_important": true}, {"id": 10018, "name": "CharredRuins1", "category": "structure", "x": -320.0, "z": -8576.0, "px": 1993.4, "py": 584.4, "has_dungeon": false, "has_important": true}, {"id": 10019, "name": "CharredRuins1", "category": "structure", "x": 3328.0, "z": -8448.0, "px": 2616.0, "py": 606.2, "has_dungeon": false, "has_important": true}, {"id": 10020, "name": "CharredRuins1", "category": "structure", "x": -512.0, "z": -8896.0, "px": 1960.6, "py": 529.7, "has_dungeon": false, "has_important": true}, {"id": 10021, "name": "CharredRuins1", "category": "structure", "x": 1856.0, "z": -8320.0, "px": 2364.8, "py": 628.1, "has_dungeon": false, "has_important": true}, {"id": 10022, "name": "CharredRuins1", "category": "structure", "x": 2752.0, "z": -9536.0, "px": 2517.7, "py": 420.5, "has_dungeon": false, "has_important": true}, {"id": 10023, "name": "CharredRuins1", "category": "structure", "x": -2560.0, "z": -8768.0, "px": 1611.1, "py": 551.6, "has_dungeon": false, "has_important": true}, {"id": 10024, "name": "CharredRuins1", "category": "structure", "x": 128.0, "z": -9792.0, "px": 2069.8, "py": 376.8, "has_dungeon": false, "has_important": true}, {"id": 10025, "name": "CharredRuins1", "category": "structure", "x": -1728.0, "z": -8832.0, "px": 1753.1, "py": 540.7, "has_dungeon": false, "has_important": true}, {"id": 10026, "name": "CharredRuins1", "category": "structure", "x": 2368.0, "z": -8896.0, "px": 2452.1, "py": 529.7, "has_dungeon": false, "has_important": true}, {"id": 10027, "name": "CharredRuins1", "category": "structure", "x": 2112.0, "z": -9280.0, "px": 2408.4, "py": 464.2, "has_dungeon": false, "has_important": true}, {"id": 10028, "name": "CharredRuins1", "category": "structure", "x": 448.0, "z": -9216.0, "px": 2124.5, "py": 475.1, "has_dungeon": false, "has_important": true}, {"id": 10029, "name": "CharredRuins1", "category": "structure", "x": 2688.0, "z": -8960.0, "px": 2506.8, "py": 518.8, "has_dungeon": false, "has_important": true}, {"id": 10030, "name": "CharredRuins1", "category": "structure", "x": 1728.0, "z": -9536.0, "px": 2342.9, "py": 420.5, "has_dungeon": false, "has_important": true}, {"id": 10031, "name": "CharredRuins1", "category": "structure", "x": -64.0, "z": -8960.0, "px": 2037.1, "py": 518.8, "has_dungeon": false, "has_important": true}, {"id": 10032, "name": "CharredRuins1", "category": "structure", "x": -2112.0, "z": -8576.0, "px": 1687.6, "py": 584.4, "has_dungeon": false, "has_important": true}, {"id": 10033, "name": "CharredRuins1", "category": "structure", "x": -6272.0, "z": -7488.0, "px": 977.6, "py": 770.0, "has_dungeon": false, "has_important": true}, {"id": 10034, "name": "CharredRuins1", "category": "structure", "x": 6080.0, "z": -7680.0, "px": 3085.7, "py": 737.3, "has_dungeon": false, "has_important": true}, {"id": 10035, "name": "CharredRuins1", "category": "structure", "x": -5248.0, "z": -8256.0, "px": 1152.3, "py": 639.0, "has_dungeon": false, "has_important": true}, {"id": 10036, "name": "CharredRuins1", "category": "structure", "x": 3392.0, "z": -9216.0, "px": 2626.9, "py": 475.1, "has_dungeon": false, "has_important": true}, {"id": 10037, "name": "CharredRuins1", "category": "structure", "x": -5056.0, "z": -7552.0, "px": 1185.1, "py": 759.1, "has_dungeon": false, "has_important": true}, {"id": 10038, "name": "CharredRuins1", "category": "structure", "x": 4288.0, "z": -8704.0, "px": 2779.8, "py": 562.5, "has_dungeon": false, "has_important": true}, {"id": 10039, "name": "CharredRuins1", "category": "structure", "x": 5440.0, "z": -7744.0, "px": 2976.4, "py": 726.4, "has_dungeon": false, "has_important": true}, {"id": 10040, "name": "CharredRuins1", "category": "structure", "x": -576.0, "z": -9536.0, "px": 1949.7, "py": 420.5, "has_dungeon": false, "has_important": true}, {"id": 10041, "name": "CharredRuins1", "category": "structure", "x": -4160.0, "z": -8960.0, "px": 1338.0, "py": 518.8, "has_dungeon": false, "has_important": true}, {"id": 10042, "name": "CharredRuins1", "category": "structure", "x": -5312.0, "z": -7680.0, "px": 1141.4, "py": 737.3, "has_dungeon": false, "has_important": true}, {"id": 10043, "name": "CharredRuins1", "category": "structure", "x": -3264.0, "z": -9280.0, "px": 1490.9, "py": 464.2, "has_dungeon": false, "has_important": true}, {"id": 10044, "name": "CharredRuins1", "category": "structure", "x": -2496.0, "z": -8384.0, "px": 1622.0, "py": 617.1, "has_dungeon": false, "has_important": true}, {"id": 10045, "name": "CharredRuins1", "category": "structure", "x": -1600.0, "z": -9472.0, "px": 1774.9, "py": 431.4, "has_dungeon": false, "has_important": true}, {"id": 10046, "name": "CharredRuins1", "category": "structure", "x": 3008.0, "z": -9024.0, "px": 2561.4, "py": 507.9, "has_dungeon": false, "has_important": true}, {"id": 10047, "name": "CharredRuins1", "category": "structure", "x": 3776.0, "z": -8192.0, "px": 2692.4, "py": 649.9, "has_dungeon": false, "has_important": true}, {"id": 10048, "name": "CharredRuins1", "category": "structure", "x": -5632.0, "z": -7680.0, "px": 1086.8, "py": 737.3, "has_dungeon": false, "has_important": true}, {"id": 10049, "name": "CharredRuins1", "category": "structure", "x": -832.0, "z": -9728.0, "px": 1906.0, "py": 387.8, "has_dungeon": false, "has_important": true}, {"id": 10050, "name": "CharredRuins1", "category": "structure", "x": 1280.0, "z": -8896.0, "px": 2266.5, "py": 529.7, "has_dungeon": false, "has_important": true}, {"id": 10051, "name": "CharredRuins1", "category": "structure", "x": -3200.0, "z": -8704.0, "px": 1501.9, "py": 562.5, "has_dungeon": false, "has_important": true}, {"id": 10052, "name": "CharredRuins1", "category": "structure", "x": 3840.0, "z": -8768.0, "px": 2703.4, "py": 551.6, "has_dungeon": false, "has_important": true}, {"id": 10053, "name": "CharredRuins1", "category": "structure", "x": 5504.0, "z": -8000.0, "px": 2987.3, "py": 682.7, "has_dungeon": false, "has_important": true}, {"id": 10054, "name": "CharredRuins1", "category": "structure", "x": -3776.0, "z": -8128.0, "px": 1403.6, "py": 660.8, "has_dungeon": false, "has_important": true}, {"id": 10055, "name": "CharredRuins1", "category": "structure", "x": -832.0, "z": -9472.0, "px": 1906.0, "py": 431.4, "has_dungeon": false, "has_important": true}, {"id": 10056, "name": "CharredRuins1", "category": "structure", "x": 2304.0, "z": -8512.0, "px": 2441.2, "py": 595.3, "has_dungeon": false, "has_important": true}, {"id": 10057, "name": "CharredRuins1", "category": "structure", "x": 4992.0, "z": -7872.0, "px": 2900.0, "py": 704.5, "has_dungeon": false, "has_important": true}, {"id": 10058, "name": "CharredRuins1", "category": "structure", "x": 832.0, "z": -8832.0, "px": 2190.0, "py": 540.7, "has_dungeon": false, "has_important": true}, {"id": 10059, "name": "CharredRuins1", "category": "structure", "x": 2496.0, "z": -9216.0, "px": 2474.0, "py": 475.1, "has_dungeon": false, "has_important": true}, {"id": 10060, "name": "CharredRuins1", "category": "structure", "x": 4224.0, "z": -8960.0, "px": 2768.9, "py": 518.8, "has_dungeon": false, "has_important": true}, {"id": 10061, "name": "CharredRuins1", "category": "structure", "x": 1216.0, "z": -9152.0, "px": 2255.5, "py": 486.1, "has_dungeon": false, "has_important": true}, {"id": 10062, "name": "CharredRuins1", "category": "structure", "x": -3520.0, "z": -8512.0, "px": 1447.3, "py": 595.3, "has_dungeon": false, "has_important": true}, {"id": 10063, "name": "CharredRuins1", "category": "structure", "x": -2176.0, "z": -8896.0, "px": 1676.6, "py": 529.7, "has_dungeon": false, "has_important": true}, {"id": 10064, "name": "CharredRuins1", "category": "structure", "x": 128.0, "z": -9280.0, "px": 2069.8, "py": 464.2, "has_dungeon": false, "has_important": true}, {"id": 10065, "name": "CharredRuins1", "category": "structure", "x": -2816.0, "z": -8512.0, "px": 1567.4, "py": 595.3, "has_dungeon": false, "has_important": true}, {"id": 10066, "name": "CharredRuins1", "category": "structure", "x": 1728.0, "z": -9088.0, "px": 2342.9, "py": 497.0, "has_dungeon": false, "has_important": true}, {"id": 10067, "name": "CharredRuins1", "category": "structure", "x": 192.0, "z": -9024.0, "px": 2080.8, "py": 507.9, "has_dungeon": false, "has_important": true}, {"id": 10068, "name": "CharredRuins1", "category": "structure", "x": -2944.0, "z": -9024.0, "px": 1545.6, "py": 507.9, "has_dungeon": false, "has_important": true}, {"id": 10069, "name": "CharredRuins1", "category": "structure", "x": 640.0, "z": -9664.0, "px": 2157.2, "py": 398.7, "has_dungeon": false, "has_important": true}, {"id": 10070, "name": "CharredRuins1", "category": "structure", "x": -1792.0, "z": -9216.0, "px": 1742.2, "py": 475.1, "has_dungeon": false, "has_important": true}, {"id": 10071, "name": "CharredRuins1", "category": "structure", "x": -1280.0, "z": -9344.0, "px": 1829.5, "py": 453.3, "has_dungeon": false, "has_important": true}, {"id": 10072, "name": "CharredRuins1", "category": "structure", "x": 896.0, "z": -8576.0, "px": 2200.9, "py": 584.4, "has_dungeon": false, "has_important": true}, {"id": 10073, "name": "CharredRuins1", "category": "structure", "x": -2176.0, "z": -9216.0, "px": 1676.6, "py": 475.1, "has_dungeon": false, "has_important": true}, {"id": 10074, "name": "CharredRuins1", "category": "structure", "x": -5248.0, "z": -7936.0, "px": 1152.3, "py": 693.6, "has_dungeon": false, "has_important": true}, {"id": 10075, "name": "CharredRuins1", "category": "structure", "x": -768.0, "z": -8768.0, "px": 1916.9, "py": 551.6, "has_dungeon": false, "has_important": true}, {"id": 10076, "name": "CharredRuins1", "category": "structure", "x": 832.0, "z": -9408.0, "px": 2190.0, "py": 442.4, "has_dungeon": false, "has_important": true}, {"id": 10077, "name": "CharredRuins1", "category": "structure", "x": 5760.0, "z": -8064.0, "px": 3031.0, "py": 671.7, "has_dungeon": false, "has_important": true}, {"id": 10078, "name": "CharredRuins1", "category": "structure", "x": 3072.0, "z": -9408.0, "px": 2572.3, "py": 442.4, "has_dungeon": false, "has_important": true}, {"id": 10079, "name": "CharredRuins1", "category": "structure", "x": 2240.0, "z": -8256.0, "px": 2430.3, "py": 639.0, "has_dungeon": false, "has_important": true}, {"id": 10080, "name": "CharredRuins1", "category": "structure", "x": 128.0, "z": -8704.0, "px": 2069.8, "py": 562.5, "has_dungeon": false, "has_important": true}, {"id": 10081, "name": "CharredRuins1", "category": "structure", "x": -1280.0, "z": -9792.0, "px": 1829.5, "py": 376.8, "has_dungeon": false, "has_important": true}, {"id": 10082, "name": "CharredRuins1", "category": "structure", "x": -5696.0, "z": -7424.0, "px": 1075.9, "py": 781.0, "has_dungeon": false, "has_important": true}, {"id": 10083, "name": "CharredRuins1", "category": "structure", "x": -4032.0, "z": -8192.0, "px": 1359.9, "py": 649.9, "has_dungeon": false, "has_important": true}, {"id": 10084, "name": "CharredRuins1", "category": "structure", "x": 1408.0, "z": -9600.0, "px": 2288.3, "py": 409.6, "has_dungeon": false, "has_important": true}, {"id": 10085, "name": "CharredRuins1", "category": "structure", "x": -960.0, "z": -8960.0, "px": 1884.2, "py": 518.8, "has_dungeon": false, "has_important": true}, {"id": 10086, "name": "CharredRuins1", "category": "structure", "x": -192.0, "z": -9792.0, "px": 2015.2, "py": 376.8, "has_dungeon": false, "has_important": true}, {"id": 10087, "name": "CharredRuins1", "category": "structure", "x": 384.0, "z": -8576.0, "px": 2113.5, "py": 584.4, "has_dungeon": false, "has_important": true}, {"id": 10088, "name": "CharredRuins1", "category": "structure", "x": -4544.0, "z": -8192.0, "px": 1272.5, "py": 649.9, "has_dungeon": false, "has_important": true}, {"id": 10089, "name": "CharredRuins1", "category": "structure", "x": 384.0, "z": -9664.0, "px": 2113.5, "py": 398.7, "has_dungeon": false, "has_important": true}, {"id": 10090, "name": "CharredRuins1", "category": "structure", "x": 3584.0, "z": -8448.0, "px": 2659.7, "py": 606.2, "has_dungeon": false, "has_important": true}, {"id": 10091, "name": "CharredRuins1", "category": "structure", "x": 2880.0, "z": -8576.0, "px": 2539.5, "py": 584.4, "has_dungeon": false, "has_important": true}, {"id": 10092, "name": "CharredRuins1", "category": "structure", "x": 2112.0, "z": -9536.0, "px": 2408.4, "py": 420.5, "has_dungeon": false, "has_important": true}, {"id": 11010, "name": "CharredRuins2", "category": "structure", "x": -579.7, "z": -9417.8, "px": 1949.1, "py": 440.7, "has_dungeon": false, "has_important": true}, {"id": 11011, "name": "CharredRuins2", "category": "structure", "x": 1425.0, "z": -9844.7, "px": 2291.2, "py": 367.8, "has_dungeon": false, "has_important": true}, {"id": 11012, "name": "CharredRuins2", "category": "structure", "x": 1653.1, "z": -9530.8, "px": 2330.1, "py": 421.4, "has_dungeon": false, "has_important": true}, {"id": 11013, "name": "CharredRuins2", "category": "structure", "x": 3190.6, "z": -8261.6, "px": 2592.5, "py": 638.0, "has_dungeon": false, "has_important": true}, {"id": 11014, "name": "CharredRuins2", "category": "structure", "x": 3894.8, "z": -8650.9, "px": 2712.7, "py": 571.6, "has_dungeon": false, "has_important": true}, {"id": 11015, "name": "CharredRuins2", "category": "structure", "x": 1869.3, "z": -9599.8, "px": 2367.0, "py": 409.6, "has_dungeon": false, "has_important": true}, {"id": 11016, "name": "CharredRuins2", "category": "structure", "x": 1033.0, "z": -8587.0, "px": 2224.3, "py": 582.5, "has_dungeon": false, "has_important": true}, {"id": 11017, "name": "CharredRuins2", "category": "structure", "x": -2996.2, "z": -8335.5, "px": 1536.6, "py": 625.4, "has_dungeon": false, "has_important": true}, {"id": 11018, "name": "CharredRuins2", "category": "structure", "x": -5046.7, "z": -7927.1, "px": 1186.7, "py": 695.1, "has_dungeon": false, "has_important": true}, {"id": 11019, "name": "CharredRuins2", "category": "structure", "x": -3844.5, "z": -8304.9, "px": 1391.9, "py": 630.6, "has_dungeon": false, "has_important": true}, {"id": 11020, "name": "CharredRuins2", "category": "structure", "x": 2608.5, "z": -8912.0, "px": 2493.2, "py": 527.0, "has_dungeon": false, "has_important": true}, {"id": 11021, "name": "CharredRuins2", "category": "structure", "x": -5000.8, "z": -8511.5, "px": 1194.5, "py": 595.4, "has_dungeon": false, "has_important": true}, {"id": 11022, "name": "CharredRuins2", "category": "structure", "x": 5497.2, "z": -8176.3, "px": 2986.2, "py": 652.6, "has_dungeon": false, "has_important": true}, {"id": 11023, "name": "CharredRuins2", "category": "structure", "x": 3518.2, "z": -8645.3, "px": 2648.4, "py": 572.5, "has_dungeon": false, "has_important": true}, {"id": 11024, "name": "CharredRuins2", "category": "structure", "x": 1477.4, "z": -8976.3, "px": 2300.1, "py": 516.0, "has_dungeon": false, "has_important": true}, {"id": 11025, "name": "CharredRuins2", "category": "structure", "x": 6000.8, "z": -7565.9, "px": 3072.1, "py": 756.8, "has_dungeon": false, "has_important": true}, {"id": 11026, "name": "CharredRuins2", "category": "structure", "x": 6278.5, "z": -7118.6, "px": 3119.5, "py": 833.1, "has_dungeon": false, "has_important": true}, {"id": 11027, "name": "CharredRuins2", "category": "structure", "x": -3256.1, "z": -8710.5, "px": 1492.3, "py": 561.4, "has_dungeon": false, "has_important": true}, {"id": 11028, "name": "CharredRuins2", "category": "structure", "x": 5064.1, "z": -7872.1, "px": 2912.3, "py": 704.5, "has_dungeon": false, "has_important": true}, {"id": 11029, "name": "CharredRuins2", "category": "structure", "x": -3469.2, "z": -8692.2, "px": 1455.9, "py": 564.5, "has_dungeon": false, "has_important": true}, {"id": 11030, "name": "CharredRuins2", "category": "structure", "x": -2447.1, "z": -9030.8, "px": 1630.4, "py": 506.7, "has_dungeon": false, "has_important": true}, {"id": 11031, "name": "CharredRuins2", "category": "structure", "x": -3637.0, "z": -8079.1, "px": 1427.3, "py": 669.2, "has_dungeon": false, "has_important": true}, {"id": 11032, "name": "CharredRuins2", "category": "structure", "x": -4022.3, "z": -8637.6, "px": 1361.5, "py": 573.8, "has_dungeon": false, "has_important": true}, {"id": 11033, "name": "CharredRuins2", "category": "structure", "x": -1462.2, "z": -8591.4, "px": 1798.5, "py": 581.7, "has_dungeon": false, "has_important": true}, {"id": 11034, "name": "CharredRuins2", "category": "structure", "x": -128.6, "z": -9090.1, "px": 2026.1, "py": 496.6, "has_dungeon": false, "has_important": true}, {"id": 11035, "name": "CharredRuins2", "category": "structure", "x": -3585.1, "z": -8774.4, "px": 1436.1, "py": 550.5, "has_dungeon": false, "has_important": true}, {"id": 11036, "name": "CharredRuins2", "category": "structure", "x": 5499.6, "z": -7741.6, "px": 2986.6, "py": 726.8, "has_dungeon": false, "has_important": true}, {"id": 11037, "name": "CharredRuins2", "category": "structure", "x": 2958.6, "z": -8842.0, "px": 2552.9, "py": 539.0, "has_dungeon": false, "has_important": true}, {"id": 11038, "name": "CharredRuins2", "category": "structure", "x": -2953.0, "z": -9160.9, "px": 1544.0, "py": 484.5, "has_dungeon": false, "has_important": true}, {"id": 11039, "name": "CharredRuins2", "category": "structure", "x": -5445.8, "z": -7939.4, "px": 1118.6, "py": 693.0, "has_dungeon": false, "has_important": true}, {"id": 11040, "name": "CharredRuins2", "category": "structure", "x": 3214.9, "z": -9143.4, "px": 2596.7, "py": 487.5, "has_dungeon": false, "has_important": true}, {"id": 11041, "name": "CharredRuins2", "category": "structure", "x": 1968.3, "z": -9279.7, "px": 2383.9, "py": 464.3, "has_dungeon": false, "has_important": true}, {"id": 11042, "name": "CharredRuins2", "category": "structure", "x": 1348.9, "z": -9161.7, "px": 2278.2, "py": 484.4, "has_dungeon": false, "has_important": true}, {"id": 11043, "name": "CharredRuins2", "category": "structure", "x": -7028.2, "z": -6017.9, "px": 848.5, "py": 1020.9, "has_dungeon": false, "has_important": true}, {"id": 11044, "name": "CharredRuins2", "category": "structure", "x": -5449.9, "z": -8145.0, "px": 1117.9, "py": 657.9, "has_dungeon": false, "has_important": true}, {"id": 11045, "name": "CharredRuins2", "category": "structure", "x": -5298.0, "z": -8244.2, "px": 1143.8, "py": 641.0, "has_dungeon": false, "has_important": true}, {"id": 11046, "name": "CharredRuins2", "category": "structure", "x": 6351.2, "z": -7283.0, "px": 3131.9, "py": 805.0, "has_dungeon": false, "has_important": true}, {"id": 11047, "name": "CharredRuins2", "category": "structure", "x": -5301.5, "z": -7943.9, "px": 1143.2, "py": 692.2, "has_dungeon": false, "has_important": true}, {"id": 11048, "name": "CharredRuins2", "category": "structure", "x": -3327.3, "z": -9288.3, "px": 1480.1, "py": 462.8, "has_dungeon": false, "has_important": true}, {"id": 11049, "name": "CharredRuins2", "category": "structure", "x": 1291.3, "z": -8783.3, "px": 2268.4, "py": 549.0, "has_dungeon": false, "has_important": true}, {"id": 11050, "name": "CharredRuins2", "category": "structure", "x": -2178.4, "z": -8310.7, "px": 1676.2, "py": 629.6, "has_dungeon": false, "has_important": true}, {"id": 11051, "name": "CharredRuins2", "category": "structure", "x": -3196.9, "z": -9403.4, "px": 1502.4, "py": 443.2, "has_dungeon": false, "has_important": true}, {"id": 11052, "name": "CharredRuins2", "category": "structure", "x": -440.2, "z": -9209.1, "px": 1972.9, "py": 476.3, "has_dungeon": false, "has_important": true}, {"id": 11053, "name": "CharredRuins2", "category": "structure", "x": 5840.2, "z": -8134.2, "px": 3044.7, "py": 659.8, "has_dungeon": false, "has_important": true}, {"id": 11054, "name": "CharredRuins2", "category": "structure", "x": -438.8, "z": -9594.9, "px": 1973.1, "py": 410.5, "has_dungeon": false, "has_important": true}, {"id": 11055, "name": "CharredRuins2", "category": "structure", "x": 2166.9, "z": -9650.7, "px": 2417.8, "py": 400.9, "has_dungeon": false, "has_important": true}, {"id": 11056, "name": "CharredRuins2", "category": "structure", "x": -5257.6, "z": -8367.3, "px": 1150.7, "py": 620.0, "has_dungeon": false, "has_important": true}, {"id": 11057, "name": "CharredRuins2", "category": "structure", "x": 4172.8, "z": -8528.9, "px": 2760.2, "py": 592.4, "has_dungeon": false, "has_important": true}, {"id": 11058, "name": "CharredRuins2", "category": "structure", "x": -709.6, "z": -9138.2, "px": 1926.9, "py": 488.4, "has_dungeon": false, "has_important": true}, {"id": 11059, "name": "CharredRuins2", "category": "structure", "x": -898.8, "z": -9400.6, "px": 1894.6, "py": 443.6, "has_dungeon": false, "has_important": true}, {"id": 11060, "name": "CharredRuins2", "category": "structure", "x": 5752.4, "z": -8007.2, "px": 3029.7, "py": 681.4, "has_dungeon": false, "has_important": true}, {"id": 11061, "name": "CharredRuins2", "category": "structure", "x": -5679.1, "z": -7480.9, "px": 1078.8, "py": 771.3, "has_dungeon": false, "has_important": true}, {"id": 11062, "name": "CharredRuins2", "category": "structure", "x": -1029.0, "z": -8716.0, "px": 1872.4, "py": 560.5, "has_dungeon": false, "has_important": true}, {"id": 11063, "name": "CharredRuins2", "category": "structure", "x": -4978.9, "z": -8061.0, "px": 1198.3, "py": 672.3, "has_dungeon": false, "has_important": true}, {"id": 11064, "name": "CharredRuins2", "category": "structure", "x": 329.3, "z": -9163.9, "px": 2104.2, "py": 484.0, "has_dungeon": false, "has_important": true}, {"id": 11065, "name": "CharredRuins2", "category": "structure", "x": -306.5, "z": -9485.3, "px": 1995.7, "py": 429.2, "has_dungeon": false, "has_important": true}, {"id": 11066, "name": "CharredRuins2", "category": "structure", "x": -1544.2, "z": -8774.3, "px": 1784.5, "py": 550.5, "has_dungeon": false, "has_important": true}, {"id": 11067, "name": "CharredRuins2", "category": "structure", "x": -4595.5, "z": -7931.2, "px": 1263.7, "py": 694.4, "has_dungeon": false, "has_important": true}, {"id": 11068, "name": "CharredRuins2", "category": "structure", "x": -4432.3, "z": -8461.9, "px": 1291.6, "py": 603.8, "has_dungeon": false, "has_important": true}, {"id": 11069, "name": "CharredRuins2", "category": "structure", "x": 383.6, "z": -8892.9, "px": 2113.5, "py": 530.3, "has_dungeon": false, "has_important": true}, {"id": 11070, "name": "CharredRuins2", "category": "structure", "x": -1801.4, "z": -9460.5, "px": 1740.6, "py": 433.4, "has_dungeon": false, "has_important": false}, {"id": 11071, "name": "CharredRuins2", "category": "structure", "x": 3321.0, "z": -9391.6, "px": 2614.8, "py": 445.2, "has_dungeon": false, "has_important": true}, {"id": 11072, "name": "CharredRuins2", "category": "structure", "x": 2872.1, "z": -9274.0, "px": 2538.2, "py": 465.2, "has_dungeon": false, "has_important": true}, {"id": 11073, "name": "CharredRuins2", "category": "structure", "x": -4172.2, "z": -8136.1, "px": 1335.9, "py": 659.4, "has_dungeon": false, "has_important": true}, {"id": 11074, "name": "CharredRuins2", "category": "structure", "x": -4792.1, "z": -8580.7, "px": 1230.1, "py": 583.6, "has_dungeon": false, "has_important": true}, {"id": 11075, "name": "CharredRuins2", "category": "structure", "x": -1665.4, "z": -9282.9, "px": 1763.8, "py": 463.7, "has_dungeon": false, "has_important": true}, {"id": 11076, "name": "CharredRuins2", "category": "structure", "x": 2885.3, "z": -8703.9, "px": 2540.4, "py": 562.5, "has_dungeon": false, "has_important": true}, {"id": 11077, "name": "CharredRuins2", "category": "structure", "x": -4998.8, "z": -7792.5, "px": 1194.9, "py": 718.1, "has_dungeon": false, "has_important": true}, {"id": 11078, "name": "CharredRuins2", "category": "structure", "x": 3072.1, "z": -8901.9, "px": 2572.3, "py": 528.7, "has_dungeon": false, "has_important": true}, {"id": 11079, "name": "CharredRuins2", "category": "structure", "x": -206.2, "z": -9584.8, "px": 2012.8, "py": 412.2, "has_dungeon": false, "has_important": true}, {"id": 11080, "name": "CharredRuins2", "category": "structure", "x": 2192.0, "z": -9103.5, "px": 2422.1, "py": 494.3, "has_dungeon": false, "has_important": true}, {"id": 11081, "name": "CharredRuins2", "category": "structure", "x": 3587.3, "z": -8057.1, "px": 2660.2, "py": 672.9, "has_dungeon": false, "has_important": true}, {"id": 11082, "name": "CharredRuins2", "category": "structure", "x": -4085.2, "z": -8777.3, "px": 1350.8, "py": 550.0, "has_dungeon": false, "has_important": true}, {"id": 11083, "name": "CharredRuins2", "category": "structure", "x": -6127.8, "z": -7559.1, "px": 1002.2, "py": 757.9, "has_dungeon": false, "has_important": true}, {"id": 11084, "name": "CharredRuins2", "category": "structure", "x": 57.5, "z": -8579.7, "px": 2057.8, "py": 583.7, "has_dungeon": false, "has_important": true}, {"id": 11085, "name": "CharredRuins2", "category": "structure", "x": 127.0, "z": -8947.4, "px": 2069.7, "py": 521.0, "has_dungeon": false, "has_important": true}, {"id": 11086, "name": "CharredRuins2", "category": "structure", "x": -2991.9, "z": -8575.8, "px": 1537.4, "py": 584.4, "has_dungeon": false, "has_important": true}, {"id": 11087, "name": "CharredRuins2", "category": "structure", "x": -4878.3, "z": -8253.2, "px": 1215.4, "py": 639.5, "has_dungeon": false, "has_important": true}, {"id": 11088, "name": "CharredRuins2", "category": "structure", "x": -2825.9, "z": -9095.6, "px": 1565.7, "py": 495.7, "has_dungeon": false, "has_important": true}, {"id": 11089, "name": "CharredRuins2", "category": "structure", "x": -1028.4, "z": -9094.3, "px": 1872.5, "py": 495.9, "has_dungeon": false, "has_important": true}, {"id": 11090, "name": "CharredRuins2", "category": "structure", "x": 5110.1, "z": -7681.1, "px": 2920.1, "py": 737.1, "has_dungeon": false, "has_important": true}, {"id": 11091, "name": "CharredRuins2", "category": "structure", "x": 1610.0, "z": -9077.0, "px": 2322.8, "py": 498.9, "has_dungeon": false, "has_important": true}, {"id": 11092, "name": "CharredRuins2", "category": "structure", "x": -5444.3, "z": -7412.3, "px": 1118.8, "py": 783.0, "has_dungeon": false, "has_important": true}, {"id": 11093, "name": "CharredRuins2", "category": "structure", "x": 4280.9, "z": -8885.5, "px": 2778.6, "py": 531.5, "has_dungeon": false, "has_important": true}, {"id": 11094, "name": "CharredRuins2", "category": "structure", "x": 3780.0, "z": -8568.2, "px": 2693.1, "py": 585.7, "has_dungeon": false, "has_important": true}, {"id": 11095, "name": "CharredRuins2", "category": "structure", "x": -1933.5, "z": -8623.4, "px": 1718.0, "py": 576.3, "has_dungeon": false, "has_important": true}, {"id": 11096, "name": "CharredRuins2", "category": "structure", "x": -2681.4, "z": -9038.8, "px": 1590.4, "py": 505.4, "has_dungeon": false, "has_important": true}, {"id": 11097, "name": "CharredRuins2", "category": "structure", "x": 396.6, "z": -8496.8, "px": 2115.7, "py": 597.9, "has_dungeon": false, "has_important": false}, {"id": 11098, "name": "CharredRuins2", "category": "structure", "x": 3080.9, "z": -8450.6, "px": 2573.8, "py": 605.8, "has_dungeon": false, "has_important": true}, {"id": 11099, "name": "CharredRuins2", "category": "structure", "x": -6349.6, "z": -7486.2, "px": 964.3, "py": 770.4, "has_dungeon": false, "has_important": true}, {"id": 11100, "name": "CharredRuins2", "category": "structure", "x": 2753.9, "z": -8501.1, "px": 2518.0, "py": 597.1, "has_dungeon": false, "has_important": true}, {"id": 11101, "name": "CharredRuins2", "category": "structure", "x": -953.9, "z": -9904.5, "px": 1885.2, "py": 357.6, "has_dungeon": false, "has_important": true}, {"id": 11102, "name": "CharredRuins2", "category": "structure", "x": -5114.2, "z": -8368.7, "px": 1175.2, "py": 619.7, "has_dungeon": false, "has_important": true}, {"id": 11103, "name": "CharredRuins2", "category": "structure", "x": 974.6, "z": -9457.0, "px": 2214.3, "py": 434.0, "has_dungeon": false, "has_important": true}, {"id": 11104, "name": "CharredRuins2", "category": "structure", "x": 1157.9, "z": -9538.7, "px": 2245.6, "py": 420.1, "has_dungeon": false, "has_important": true}, {"id": 11105, "name": "CharredRuins2", "category": "structure", "x": -2246.7, "z": -8192.7, "px": 1664.6, "py": 649.8, "has_dungeon": false, "has_important": false}, {"id": 11106, "name": "CharredRuins2", "category": "structure", "x": -3594.4, "z": -8203.2, "px": 1434.6, "py": 648.0, "has_dungeon": false, "has_important": true}, {"id": 11107, "name": "CharredRuins2", "category": "structure", "x": 60.0, "z": -9215.8, "px": 2058.2, "py": 475.2, "has_dungeon": false, "has_important": true}, {"id": 11108, "name": "CharredRuins2", "category": "structure", "x": 1844.1, "z": -8694.4, "px": 2362.7, "py": 564.2, "has_dungeon": false, "has_important": true}, {"id": 11109, "name": "CharredRuins2", "category": "structure", "x": 5624.3, "z": -8199.3, "px": 3007.9, "py": 648.7, "has_dungeon": false, "has_important": true}, {"id": 11110, "name": "CharredRuins3", "category": "structure", "x": 1162.2, "z": -8776.9, "px": 2246.3, "py": 550.1, "has_dungeon": false, "has_important": true}, {"id": 11111, "name": "CharredRuins3", "category": "structure", "x": -5637.5, "z": -7434.7, "px": 1085.9, "py": 779.1, "has_dungeon": false, "has_important": true}, {"id": 11112, "name": "CharredRuins3", "category": "structure", "x": -1539.2, "z": -8648.9, "px": 1785.3, "py": 571.9, "has_dungeon": false, "has_important": true}, {"id": 11113, "name": "CharredRuins3", "category": "structure", "x": -1163.7, "z": -9263.6, "px": 1849.4, "py": 467.0, "has_dungeon": false, "has_important": true}, {"id": 11114, "name": "CharredRuins3", "category": "structure", "x": -6.7, "z": -9900.4, "px": 2046.9, "py": 358.3, "has_dungeon": false, "has_important": true}, {"id": 11115, "name": "CharredRuins3", "category": "structure", "x": 1142.0, "z": -9462.2, "px": 2242.9, "py": 433.1, "has_dungeon": false, "has_important": true}, {"id": 11116, "name": "CharredRuins3", "category": "structure", "x": 70.7, "z": -8915.3, "px": 2060.1, "py": 526.5, "has_dungeon": false, "has_important": true}, {"id": 11117, "name": "CharredRuins3", "category": "structure", "x": -2579.9, "z": -8300.5, "px": 1607.7, "py": 631.4, "has_dungeon": false, "has_important": true}, {"id": 11118, "name": "CharredRuins3", "category": "structure", "x": -1723.0, "z": -9223.5, "px": 1753.9, "py": 473.9, "has_dungeon": false, "has_important": true}, {"id": 11119, "name": "CharredRuins3", "category": "structure", "x": -813.9, "z": -8594.9, "px": 1909.1, "py": 581.1, "has_dungeon": false, "has_important": true}, {"id": 11120, "name": "CharredRuins3", "category": "structure", "x": 3199.0, "z": -9107.6, "px": 2594.0, "py": 493.6, "has_dungeon": false, "has_important": true}, {"id": 11121, "name": "CharredRuins3", "category": "structure", "x": 6343.8, "z": -7117.4, "px": 3130.7, "py": 833.3, "has_dungeon": false, "has_important": true}, {"id": 11122, "name": "CharredRuins3", "category": "structure", "x": 186.1, "z": -9797.2, "px": 2079.8, "py": 375.9, "has_dungeon": false, "has_important": true}, {"id": 11123, "name": "CharredRuins3", "category": "structure", "x": 5557.8, "z": -7933.0, "px": 2996.5, "py": 694.1, "has_dungeon": false, "has_important": true}, {"id": 11124, "name": "CharredRuins3", "category": "structure", "x": 5966.5, "z": -7541.6, "px": 3066.3, "py": 760.9, "has_dungeon": false, "has_important": true}, {"id": 11125, "name": "CharredRuins3", "category": "structure", "x": 1014.5, "z": -9399.5, "px": 2221.1, "py": 443.8, "has_dungeon": false, "has_important": true}, {"id": 11126, "name": "CharredRuins3", "category": "structure", "x": -1807.7, "z": -8953.2, "px": 1739.5, "py": 520.0, "has_dungeon": false, "has_important": true}, {"id": 11127, "name": "CharredRuins3", "category": "structure", "x": -4080.9, "z": -8243.6, "px": 1351.5, "py": 641.1, "has_dungeon": false, "has_important": true}, {"id": 11128, "name": "CharredRuins3", "category": "structure", "x": 2489.4, "z": -9023.1, "px": 2472.9, "py": 508.1, "has_dungeon": false, "has_important": true}, {"id": 11129, "name": "CharredRuins3", "category": "structure", "x": -1867.2, "z": -9485.4, "px": 1729.3, "py": 429.2, "has_dungeon": false, "has_important": true}, {"id": 11130, "name": "CharredRuins3", "category": "structure", "x": 716.8, "z": -8577.9, "px": 2170.3, "py": 584.0, "has_dungeon": false, "has_important": true}, {"id": 11131, "name": "CharredRuins3", "category": "structure", "x": 1289.3, "z": -9276.4, "px": 2268.0, "py": 464.8, "has_dungeon": false, "has_important": true}, {"id": 11132, "name": "CharredRuins3", "category": "structure", "x": 1542.7, "z": -9351.5, "px": 2311.3, "py": 452.0, "has_dungeon": false, "has_important": true}, {"id": 11133, "name": "CharredRuins3", "category": "structure", "x": 1352.8, "z": -9774.6, "px": 2278.9, "py": 379.8, "has_dungeon": false, "has_important": true}, {"id": 11134, "name": "CharredRuins3", "category": "structure", "x": -1453.1, "z": -9262.9, "px": 1800.0, "py": 467.1, "has_dungeon": false, "has_important": true}, {"id": 11135, "name": "CharredRuins3", "category": "structure", "x": -1087.7, "z": -8898.8, "px": 1862.4, "py": 529.3, "has_dungeon": false, "has_important": true}, {"id": 11136, "name": "CharredRuins3", "category": "structure", "x": 454.2, "z": -9803.7, "px": 2125.5, "py": 374.8, "has_dungeon": false, "has_important": true}, {"id": 11137, "name": "CharredRuins3", "category": "structure", "x": -3460.5, "z": -8652.4, "px": 1457.4, "py": 571.3, "has_dungeon": false, "has_important": true}, {"id": 11138, "name": "CharredRuins3", "category": "structure", "x": 326.5, "z": -9786.5, "px": 2103.7, "py": 377.8, "has_dungeon": false, "has_important": true}, {"id": 11139, "name": "CharredRuins3", "category": "structure", "x": -4986.1, "z": -8457.3, "px": 1197.0, "py": 604.6, "has_dungeon": false, "has_important": true}, {"id": 11140, "name": "CharredRuins3", "category": "structure", "x": -2705.1, "z": -8238.8, "px": 1586.3, "py": 641.9, "has_dungeon": false, "has_important": true}, {"id": 11141, "name": "CharredRuins3", "category": "structure", "x": -1774.3, "z": -9396.9, "px": 1745.2, "py": 444.3, "has_dungeon": false, "has_important": true}, {"id": 11142, "name": "CharredRuins3", "category": "structure", "x": -392.3, "z": -9325.7, "px": 1981.0, "py": 456.4, "has_dungeon": false, "has_important": true}, {"id": 11143, "name": "CharredRuins3", "category": "structure", "x": 1901.1, "z": -9647.9, "px": 2372.5, "py": 401.4, "has_dungeon": false, "has_important": true}, {"id": 11144, "name": "CharredRuins3", "category": "structure", "x": -2350.1, "z": -9071.5, "px": 1646.9, "py": 499.8, "has_dungeon": false, "has_important": true}, {"id": 11145, "name": "CharredRuins3", "category": "structure", "x": -2766.3, "z": -8644.8, "px": 1575.9, "py": 572.6, "has_dungeon": false, "has_important": true}, {"id": 11146, "name": "CharredRuins3", "category": "structure", "x": -2802.1, "z": -8120.9, "px": 1569.8, "py": 662.0, "has_dungeon": false, "has_important": true}, {"id": 11147, "name": "CharredRuins3", "category": "structure", "x": -5130.7, "z": -7945.5, "px": 1172.4, "py": 692.0, "has_dungeon": false, "has_important": true}, {"id": 11148, "name": "CharredRuins3", "category": "structure", "x": 2292.9, "z": -8334.6, "px": 2439.3, "py": 625.6, "has_dungeon": false, "has_important": true}, {"id": 11149, "name": "CharredRuins3", "category": "structure", "x": 3473.7, "z": -8621.4, "px": 2640.8, "py": 576.6, "has_dungeon": false, "has_important": true}, {"id": 11150, "name": "CharredRuins3", "category": "structure", "x": -3202.6, "z": -9478.6, "px": 1501.4, "py": 430.3, "has_dungeon": false, "has_important": true}, {"id": 11151, "name": "CharredRuins3", "category": "structure", "x": -4406.3, "z": -7891.9, "px": 1296.0, "py": 701.1, "has_dungeon": false, "has_important": true}, {"id": 11152, "name": "CharredRuins3", "category": "structure", "x": -4940.2, "z": -8114.2, "px": 1204.9, "py": 663.2, "has_dungeon": false, "has_important": true}, {"id": 11153, "name": "CharredRuins3", "category": "structure", "x": -4946.2, "z": -7740.2, "px": 1203.8, "py": 727.0, "has_dungeon": false, "has_important": true}, {"id": 11154, "name": "CharredRuins3", "category": "structure", "x": 398.7, "z": -9461.6, "px": 2116.0, "py": 433.2, "has_dungeon": false, "has_important": true}, {"id": 11155, "name": "CharredRuins3", "category": "structure", "x": -1665.3, "z": -9644.5, "px": 1763.8, "py": 402.0, "has_dungeon": false, "has_important": true}, {"id": 11156, "name": "CharredRuins3", "category": "structure", "x": -1789.3, "z": -8785.0, "px": 1742.6, "py": 548.7, "has_dungeon": false, "has_important": true}, {"id": 11157, "name": "CharredRuins3", "category": "structure", "x": 4101.6, "z": -9009.9, "px": 2748.0, "py": 510.3, "has_dungeon": false, "has_important": true}, {"id": 11158, "name": "CharredRuins3", "category": "structure", "x": 3125.6, "z": -9278.4, "px": 2581.4, "py": 464.5, "has_dungeon": false, "has_important": true}, {"id": 11159, "name": "CharredRuins3", "category": "structure", "x": -5362.0, "z": -8312.6, "px": 1132.9, "py": 629.3, "has_dungeon": false, "has_important": true}, {"id": 11160, "name": "CharredRuins3", "category": "structure", "x": 2119.5, "z": -9723.9, "px": 2409.7, "py": 388.5, "has_dungeon": false, "has_important": true}, {"id": 11161, "name": "CharredRuins3", "category": "structure", "x": 2479.5, "z": -8850.7, "px": 2471.2, "py": 537.5, "has_dungeon": false, "has_important": true}, {"id": 11162, "name": "CharredRuins3", "category": "structure", "x": -3152.7, "z": -8909.0, "px": 1509.9, "py": 527.5, "has_dungeon": false, "has_important": true}, {"id": 11163, "name": "CharredRuins3", "category": "structure", "x": -1416.8, "z": -9139.0, "px": 1806.2, "py": 488.3, "has_dungeon": false, "has_important": true}, {"id": 11164, "name": "CharredRuins3", "category": "structure", "x": -6350.2, "z": -7672.0, "px": 964.2, "py": 738.6, "has_dungeon": false, "has_important": true}, {"id": 11165, "name": "CharredRuins3", "category": "structure", "x": -898.1, "z": -8969.8, "px": 1894.7, "py": 517.2, "has_dungeon": false, "has_important": true}, {"id": 11166, "name": "CharredRuins3", "category": "structure", "x": 889.1, "z": -9220.1, "px": 2199.7, "py": 474.4, "has_dungeon": false, "has_important": true}, {"id": 11167, "name": "CharredRuins3", "category": "structure", "x": -3458.1, "z": -8914.6, "px": 1457.8, "py": 526.6, "has_dungeon": false, "has_important": true}, {"id": 11168, "name": "CharredRuins3", "category": "structure", "x": 2226.3, "z": -9517.7, "px": 2428.0, "py": 423.6, "has_dungeon": false, "has_important": true}, {"id": 11169, "name": "CharredRuins3", "category": "structure", "x": 3337.0, "z": -8012.0, "px": 2617.5, "py": 680.6, "has_dungeon": false, "has_important": true}, {"id": 11170, "name": "CharredRuins3", "category": "structure", "x": -2805.8, "z": -8323.3, "px": 1569.1, "py": 627.5, "has_dungeon": false, "has_important": true}, {"id": 11171, "name": "CharredRuins3", "category": "structure", "x": -563.5, "z": -8814.9, "px": 1951.8, "py": 543.6, "has_dungeon": false, "has_important": true}, {"id": 11172, "name": "CharredRuins3", "category": "structure", "x": -949.5, "z": -8708.0, "px": 1886.0, "py": 561.8, "has_dungeon": false, "has_important": true}, {"id": 11173, "name": "CharredRuins3", "category": "structure", "x": -3642.5, "z": -9298.8, "px": 1426.3, "py": 461.0, "has_dungeon": false, "has_important": true}, {"id": 11174, "name": "CharredRuins3", "category": "structure", "x": 3322.1, "z": -8498.5, "px": 2615.0, "py": 597.6, "has_dungeon": false, "has_important": true}, {"id": 11175, "name": "CharredRuins3", "category": "structure", "x": -1226.8, "z": -8260.2, "px": 1838.6, "py": 638.3, "has_dungeon": false, "has_important": true}, {"id": 11176, "name": "CharredRuins3", "category": "structure", "x": -5133.4, "z": -8313.6, "px": 1171.9, "py": 629.1, "has_dungeon": false, "has_important": true}, {"id": 11177, "name": "CharredRuins3", "category": "structure", "x": -2033.3, "z": -9389.5, "px": 1701.0, "py": 445.5, "has_dungeon": false, "has_important": true}, {"id": 11178, "name": "CharredRuins3", "category": "structure", "x": 317.1, "z": -8521.8, "px": 2102.1, "py": 593.6, "has_dungeon": false, "has_important": true}, {"id": 11179, "name": "CharredRuins3", "category": "structure", "x": -767.9, "z": -9460.6, "px": 1916.9, "py": 433.4, "has_dungeon": false, "has_important": true}, {"id": 11180, "name": "CharredRuins3", "category": "structure", "x": -4750.3, "z": -8559.8, "px": 1237.3, "py": 587.1, "has_dungeon": false, "has_important": true}, {"id": 11181, "name": "CharredRuins3", "category": "structure", "x": -11.1, "z": -9673.7, "px": 2046.1, "py": 397.0, "has_dungeon": false, "has_important": true}, {"id": 11182, "name": "CharredRuins3", "category": "structure", "x": 2863.9, "z": -8632.3, "px": 2536.8, "py": 574.8, "has_dungeon": false, "has_important": true}, {"id": 11183, "name": "CharredRuins3", "category": "structure", "x": 3853.6, "z": -8627.5, "px": 2705.7, "py": 575.6, "has_dungeon": false, "has_important": true}, {"id": 11184, "name": "CharredRuins3", "category": "structure", "x": 3759.3, "z": -8714.1, "px": 2689.6, "py": 560.8, "has_dungeon": false, "has_important": true}, {"id": 11185, "name": "CharredRuins3", "category": "structure", "x": -5128.3, "z": -7441.4, "px": 1172.8, "py": 778.0, "has_dungeon": false, "has_important": true}, {"id": 11186, "name": "CharredRuins3", "category": "structure", "x": -5168.0, "z": -8136.7, "px": 1166.0, "py": 659.3, "has_dungeon": false, "has_important": true}, {"id": 11187, "name": "CharredRuins3", "category": "structure", "x": -5619.6, "z": -7800.3, "px": 1088.9, "py": 716.7, "has_dungeon": false, "has_important": true}, {"id": 11188, "name": "CharredRuins3", "category": "structure", "x": -4044.3, "z": -8120.2, "px": 1357.8, "py": 662.2, "has_dungeon": false, "has_important": true}, {"id": 11189, "name": "CharredRuins3", "category": "structure", "x": -3507.2, "z": -8268.8, "px": 1449.4, "py": 636.8, "has_dungeon": false, "has_important": true}, {"id": 11190, "name": "CharredRuins3", "category": "structure", "x": 6450.9, "z": -7232.1, "px": 3149.0, "py": 813.7, "has_dungeon": false, "has_important": true}, {"id": 11191, "name": "CharredRuins3", "category": "structure", "x": 3019.1, "z": -8307.1, "px": 2563.3, "py": 630.3, "has_dungeon": false, "has_important": true}, {"id": 11192, "name": "CharredRuins3", "category": "structure", "x": 5702.0, "z": -8011.4, "px": 3021.1, "py": 680.7, "has_dungeon": false, "has_important": true}, {"id": 11193, "name": "CharredRuins3", "category": "structure", "x": 6138.6, "z": -7676.1, "px": 3095.7, "py": 737.9, "has_dungeon": false, "has_important": true}, {"id": 11194, "name": "CharredRuins3", "category": "structure", "x": 3056.8, "z": -9459.2, "px": 2569.7, "py": 433.6, "has_dungeon": false, "has_important": true}, {"id": 11195, "name": "CharredRuins3", "category": "structure", "x": 5580.0, "z": -7619.8, "px": 3000.3, "py": 747.6, "has_dungeon": false, "has_important": true}, {"id": 11196, "name": "CharredRuins3", "category": "structure", "x": -2613.1, "z": -9082.2, "px": 1602.0, "py": 498.0, "has_dungeon": false, "has_important": true}, {"id": 11197, "name": "CharredRuins3", "category": "structure", "x": 3392.2, "z": -9324.5, "px": 2626.9, "py": 456.6, "has_dungeon": false, "has_important": true}, {"id": 11198, "name": "CharredRuins3", "category": "structure", "x": -3086.7, "z": -8530.0, "px": 1521.2, "py": 592.2, "has_dungeon": false, "has_important": true}, {"id": 11199, "name": "CharredRuins3", "category": "structure", "x": 244.2, "z": -9529.6, "px": 2089.7, "py": 421.6, "has_dungeon": false, "has_important": true}, {"id": 11200, "name": "CharredRuins3", "category": "structure", "x": 3693.9, "z": -8083.9, "px": 2678.4, "py": 668.3, "has_dungeon": false, "has_important": true}, {"id": 11201, "name": "CharredRuins3", "category": "structure", "x": 5424.8, "z": -7878.6, "px": 2973.8, "py": 703.4, "has_dungeon": false, "has_important": true}, {"id": 11202, "name": "CharredRuins3", "category": "structure", "x": 5043.1, "z": -7682.4, "px": 2908.7, "py": 736.9, "has_dungeon": false, "has_important": true}, {"id": 11203, "name": "CharredRuins3", "category": "structure", "x": -389.1, "z": -9459.7, "px": 1981.6, "py": 433.5, "has_dungeon": false, "has_important": true}, {"id": 11204, "name": "CharredRuins3", "category": "structure", "x": -201.1, "z": -9485.6, "px": 2013.7, "py": 429.1, "has_dungeon": false, "has_important": true}, {"id": 11205, "name": "CharredRuins3", "category": "structure", "x": 5195.4, "z": -7927.1, "px": 2934.7, "py": 695.1, "has_dungeon": false, "has_important": true}, {"id": 11206, "name": "CharredRuins3", "category": "structure", "x": -274.3, "z": -9086.5, "px": 2001.2, "py": 497.2, "has_dungeon": false, "has_important": true}, {"id": 11207, "name": "CharredRuins3", "category": "structure", "x": 4165.2, "z": -8591.8, "px": 2758.9, "py": 581.7, "has_dungeon": false, "has_important": true}, {"id": 11208, "name": "CharredRuins3", "category": "structure", "x": -455.9, "z": -8571.4, "px": 1970.2, "py": 585.1, "has_dungeon": false, "has_important": true}, {"id": 11209, "name": "CharredRuins3", "category": "structure", "x": -3381.7, "z": -8519.0, "px": 1470.9, "py": 594.1, "has_dungeon": false, "has_important": true}, {"id": 11210, "name": "CharredRuins4", "category": "structure", "x": 5814.1, "z": -8053.9, "px": 3040.3, "py": 673.5, "has_dungeon": false, "has_important": true}, {"id": 11211, "name": "CharredRuins4", "category": "structure", "x": 3065.7, "z": -8652.7, "px": 2571.2, "py": 571.3, "has_dungeon": false, "has_important": true}, {"id": 11212, "name": "CharredRuins4", "category": "structure", "x": -19.0, "z": -8712.4, "px": 2044.8, "py": 561.1, "has_dungeon": false, "has_important": true}, {"id": 11213, "name": "CharredRuins4", "category": "structure", "x": -1710.6, "z": -8946.7, "px": 1756.1, "py": 521.1, "has_dungeon": false, "has_important": true}, {"id": 11214, "name": "CharredRuins4", "category": "structure", "x": -1222.6, "z": -9147.5, "px": 1839.3, "py": 486.8, "has_dungeon": false, "has_important": true}, {"id": 11215, "name": "CharredRuins4", "category": "structure", "x": -5546.2, "z": -7921.0, "px": 1101.4, "py": 696.1, "has_dungeon": false, "has_important": true}, {"id": 11216, "name": "CharredRuins4", "category": "structure", "x": -1070.5, "z": -8821.1, "px": 1865.3, "py": 542.5, "has_dungeon": false, "has_important": true}, {"id": 11217, "name": "CharredRuins4", "category": "structure", "x": 822.0, "z": -8572.5, "px": 2188.3, "py": 585.0, "has_dungeon": false, "has_important": true}, {"id": 11218, "name": "CharredRuins4", "category": "structure", "x": -2695.3, "z": -9067.1, "px": 1588.0, "py": 500.5, "has_dungeon": false, "has_important": true}, {"id": 11219, "name": "CharredRuins4", "category": "structure", "x": -1403.1, "z": -8213.9, "px": 1808.5, "py": 646.2, "has_dungeon": false, "has_important": true}, {"id": 11220, "name": "CharredRuins4", "category": "structure", "x": 462.1, "z": -9993.1, "px": 2126.9, "py": 342.5, "has_dungeon": false, "has_important": true}, {"id": 11221, "name": "CharredRuins4", "category": "structure", "x": 2821.4, "z": -8758.9, "px": 2529.5, "py": 553.1, "has_dungeon": false, "has_important": true}, {"id": 11222, "name": "CharredRuins4", "category": "structure", "x": 42.9, "z": -9680.2, "px": 2055.3, "py": 395.9, "has_dungeon": false, "has_important": true}, {"id": 11223, "name": "CharredRuins4", "category": "structure", "x": -2895.5, "z": -8976.0, "px": 1553.8, "py": 516.1, "has_dungeon": false, "has_important": true}, {"id": 11224, "name": "CharredRuins4", "category": "structure", "x": -2306.3, "z": -8148.2, "px": 1654.4, "py": 657.4, "has_dungeon": false, "has_important": true}, {"id": 11225, "name": "CharredRuins4", "category": "structure", "x": 336.4, "z": -8592.9, "px": 2105.4, "py": 581.5, "has_dungeon": false, "has_important": true}, {"id": 11226, "name": "CharredRuins4", "category": "structure", "x": -1514.7, "z": -9352.4, "px": 1789.5, "py": 451.9, "has_dungeon": false, "has_important": true}, {"id": 11227, "name": "CharredRuins4", "category": "structure", "x": -1587.5, "z": -8823.9, "px": 1777.1, "py": 542.1, "has_dungeon": false, "has_important": true}, {"id": 11228, "name": "CharredRuins4", "category": "structure", "x": 4486.5, "z": -8374.5, "px": 2813.7, "py": 618.8, "has_dungeon": false, "has_important": true}, {"id": 11229, "name": "CharredRuins4", "category": "structure", "x": 133.0, "z": -8503.1, "px": 2070.7, "py": 596.8, "has_dungeon": false, "has_important": true}, {"id": 11230, "name": "CharredRuins4", "category": "structure", "x": 323.1, "z": -9398.0, "px": 2103.1, "py": 444.1, "has_dungeon": false, "has_important": true}, {"id": 11231, "name": "CharredRuins4", "category": "structure", "x": -4999.1, "z": -7884.4, "px": 1194.8, "py": 702.4, "has_dungeon": false, "has_important": true}, {"id": 11232, "name": "CharredRuins4", "category": "structure", "x": 6319.4, "z": -7054.0, "px": 3126.5, "py": 844.1, "has_dungeon": false, "has_important": true}, {"id": 11233, "name": "CharredRuins4", "category": "structure", "x": -3760.8, "z": -8501.9, "px": 1406.2, "py": 597.0, "has_dungeon": false, "has_important": true}, {"id": 11234, "name": "CharredRuins4", "category": "structure", "x": -139.4, "z": -8658.0, "px": 2024.2, "py": 570.4, "has_dungeon": false, "has_important": true}, {"id": 11235, "name": "CharredRuins4", "category": "structure", "x": -4915.4, "z": -8495.4, "px": 1209.1, "py": 598.1, "has_dungeon": false, "has_important": true}, {"id": 11236, "name": "CharredRuins4", "category": "structure", "x": -2505.3, "z": -8268.4, "px": 1620.4, "py": 636.9, "has_dungeon": false, "has_important": true}, {"id": 11237, "name": "CharredRuins4", "category": "structure", "x": -1210.2, "z": -8319.4, "px": 1841.5, "py": 628.2, "has_dungeon": false, "has_important": true}, {"id": 11238, "name": "CharredRuins4", "category": "structure", "x": -389.5, "z": -9297.0, "px": 1981.5, "py": 461.3, "has_dungeon": false, "has_important": true}, {"id": 11239, "name": "CharredRuins4", "category": "structure", "x": -3699.1, "z": -8699.6, "px": 1416.7, "py": 563.3, "has_dungeon": false, "has_important": true}, {"id": 11240, "name": "CharredRuins4", "category": "structure", "x": 5558.1, "z": -7756.5, "px": 2996.6, "py": 724.2, "has_dungeon": false, "has_important": true}, {"id": 11241, "name": "CharredRuins4", "category": "structure", "x": -778.1, "z": -8686.1, "px": 1915.2, "py": 565.6, "has_dungeon": false, "has_important": true}, {"id": 11242, "name": "CharredRuins4", "category": "structure", "x": 3960.3, "z": -8469.5, "px": 2723.9, "py": 602.5, "has_dungeon": false, "has_important": true}, {"id": 11243, "name": "CharredRuins4", "category": "structure", "x": 2035.3, "z": -8523.0, "px": 2395.4, "py": 593.4, "has_dungeon": false, "has_important": true}, {"id": 11244, "name": "CharredRuins4", "category": "structure", "x": 5969.1, "z": -7602.4, "px": 3066.7, "py": 750.5, "has_dungeon": false, "has_important": true}, {"id": 11245, "name": "CharredRuins4", "category": "structure", "x": -554.8, "z": -8651.6, "px": 1953.3, "py": 571.5, "has_dungeon": false, "has_important": true}, {"id": 11246, "name": "CharredRuins4", "category": "structure", "x": -61.5, "z": -9074.6, "px": 2037.5, "py": 499.3, "has_dungeon": false, "has_important": true}, {"id": 11247, "name": "CharredRuins4", "category": "structure", "x": 3116.0, "z": -9484.3, "px": 2579.8, "py": 429.3, "has_dungeon": false, "has_important": true}, {"id": 11248, "name": "CharredRuins4", "category": "structure", "x": -5499.8, "z": -7572.0, "px": 1109.4, "py": 755.7, "has_dungeon": false, "has_important": true}, {"id": 11249, "name": "CharredRuins4", "category": "structure", "x": 532.9, "z": -8766.1, "px": 2138.9, "py": 551.9, "has_dungeon": false, "has_important": true}, {"id": 11250, "name": "CharredRuins4", "category": "structure", "x": 6127.7, "z": -7503.3, "px": 3093.8, "py": 767.4, "has_dungeon": false, "has_important": true}, {"id": 11251, "name": "CharredRuins4", "category": "structure", "x": 964.1, "z": -9277.3, "px": 2212.5, "py": 464.7, "has_dungeon": false, "has_important": true}, {"id": 11252, "name": "CharredRuins4", "category": "structure", "x": 469.6, "z": -8581.6, "px": 2128.1, "py": 583.4, "has_dungeon": false, "has_important": true}, {"id": 11253, "name": "CharredRuins4", "category": "structure", "x": 2544.6, "z": -8950.7, "px": 2482.3, "py": 520.4, "has_dungeon": false, "has_important": true}, {"id": 11254, "name": "CharredRuins4", "category": "structure", "x": 5321.1, "z": -8184.0, "px": 2956.1, "py": 651.3, "has_dungeon": false, "has_important": true}, {"id": 11255, "name": "CharredRuins4", "category": "structure", "x": 3648.8, "z": -8070.2, "px": 2670.7, "py": 670.7, "has_dungeon": false, "has_important": true}, {"id": 11256, "name": "CharredRuins4", "category": "structure", "x": -5141.9, "z": -8430.2, "px": 1170.4, "py": 609.2, "has_dungeon": false, "has_important": true}, {"id": 11257, "name": "CharredRuins4", "category": "structure", "x": 2348.6, "z": -9108.2, "px": 2448.8, "py": 493.5, "has_dungeon": false, "has_important": true}, {"id": 11258, "name": "CharredRuins4", "category": "structure", "x": 1340.8, "z": -9394.9, "px": 2276.8, "py": 444.6, "has_dungeon": false, "has_important": true}, {"id": 11259, "name": "CharredRuins4", "category": "structure", "x": -2703.2, "z": -8194.7, "px": 1586.7, "py": 649.4, "has_dungeon": false, "has_important": true}, {"id": 11260, "name": "CharredRuins4", "category": "structure", "x": 1903.6, "z": -8490.3, "px": 2372.9, "py": 599.0, "has_dungeon": false, "has_important": true}, {"id": 11261, "name": "CharredRuins4", "category": "structure", "x": 967.4, "z": -8591.9, "px": 2213.1, "py": 581.6, "has_dungeon": false, "has_important": true}, {"id": 11262, "name": "CharredRuins4", "category": "structure", "x": -6987.6, "z": -6009.0, "px": 855.4, "py": 1022.5, "has_dungeon": false, "has_important": true}, {"id": 11263, "name": "CharredRuins4", "category": "structure", "x": -4204.6, "z": -8238.8, "px": 1330.4, "py": 641.9, "has_dungeon": false, "has_important": true}, {"id": 11264, "name": "CharredRuins4", "category": "structure", "x": -2222.7, "z": -9300.4, "px": 1668.7, "py": 460.7, "has_dungeon": false, "has_important": true}, {"id": 11265, "name": "CharredRuins4", "category": "structure", "x": -4880.0, "z": -7986.7, "px": 1215.1, "py": 684.9, "has_dungeon": false, "has_important": true}, {"id": 11266, "name": "CharredRuins4", "category": "structure", "x": -1642.4, "z": -9362.1, "px": 1767.7, "py": 450.2, "has_dungeon": false, "has_important": true}, {"id": 11267, "name": "CharredRuins4", "category": "structure", "x": 912.3, "z": -8716.1, "px": 2203.7, "py": 560.5, "has_dungeon": false, "has_important": true}, {"id": 11268, "name": "CharredRuins4", "category": "structure", "x": -3830.7, "z": -8235.4, "px": 1394.2, "py": 642.5, "has_dungeon": false, "has_important": true}, {"id": 11269, "name": "CharredRuins4", "category": "structure", "x": -14.1, "z": -8505.6, "px": 2045.6, "py": 596.4, "has_dungeon": false, "has_important": true}, {"id": 11270, "name": "CharredRuins4", "category": "structure", "x": -2234.4, "z": -8443.1, "px": 1666.7, "py": 607.0, "has_dungeon": false, "has_important": true}, {"id": 11271, "name": "CharredRuins4", "category": "structure", "x": -5366.5, "z": -8274.5, "px": 1132.1, "py": 635.8, "has_dungeon": false, "has_important": true}, {"id": 11272, "name": "CharredRuins4", "category": "structure", "x": -2734.0, "z": -8853.7, "px": 1581.4, "py": 537.0, "has_dungeon": false, "has_important": true}, {"id": 11273, "name": "CharredRuins4", "category": "structure", "x": -2097.1, "z": -9195.0, "px": 1690.1, "py": 478.7, "has_dungeon": false, "has_important": true}, {"id": 11274, "name": "CharredRuins4", "category": "structure", "x": 2354.9, "z": -8781.2, "px": 2449.9, "py": 549.3, "has_dungeon": false, "has_important": true}, {"id": 11275, "name": "CharredRuins4", "category": "structure", "x": 5442.6, "z": -7691.9, "px": 2976.9, "py": 735.2, "has_dungeon": false, "has_important": true}, {"id": 11276, "name": "CharredRuins4", "category": "structure", "x": -3961.1, "z": -8693.6, "px": 1372.0, "py": 564.3, "has_dungeon": false, "has_important": true}, {"id": 11277, "name": "CharredRuins4", "category": "structure", "x": 3883.2, "z": -8302.7, "px": 2710.7, "py": 631.0, "has_dungeon": false, "has_important": true}, {"id": 11278, "name": "CharredRuins4", "category": "structure", "x": -5308.1, "z": -7501.2, "px": 1142.1, "py": 767.8, "has_dungeon": false, "has_important": true}, {"id": 11279, "name": "CharredRuins4", "category": "structure", "x": -5393.6, "z": -8046.2, "px": 1127.5, "py": 674.8, "has_dungeon": false, "has_important": true}, {"id": 11280, "name": "CharredRuins4", "category": "structure", "x": -1937.4, "z": -8582.0, "px": 1717.4, "py": 583.3, "has_dungeon": false, "has_important": true}, {"id": 11281, "name": "CharredRuins4", "category": "structure", "x": 2820.3, "z": -8523.4, "px": 2529.3, "py": 593.3, "has_dungeon": false, "has_important": true}, {"id": 11282, "name": "CharredRuins4", "category": "structure", "x": -5000.7, "z": -7541.3, "px": 1194.5, "py": 761.0, "has_dungeon": false, "has_important": true}, {"id": 11283, "name": "CharredRuins4", "category": "structure", "x": -1659.4, "z": -9587.8, "px": 1764.8, "py": 411.7, "has_dungeon": false, "has_important": true}, {"id": 11284, "name": "CharredRuins4", "category": "structure", "x": -1154.4, "z": -9782.7, "px": 1851.0, "py": 378.4, "has_dungeon": false, "has_important": true}, {"id": 11285, "name": "CharredRuins4", "category": "structure", "x": 699.2, "z": -9300.2, "px": 2167.3, "py": 460.8, "has_dungeon": false, "has_important": true}, {"id": 11286, "name": "CharredRuins4", "category": "structure", "x": 5451.4, "z": -8206.2, "px": 2978.4, "py": 647.5, "has_dungeon": false, "has_important": true}, {"id": 11287, "name": "CharredRuins4", "category": "structure", "x": -3974.0, "z": -8849.8, "px": 1369.8, "py": 537.6, "has_dungeon": false, "has_important": true}, {"id": 11288, "name": "CharredRuins4", "category": "structure", "x": -3534.7, "z": -9200.0, "px": 1444.7, "py": 477.9, "has_dungeon": false, "has_important": true}, {"id": 11289, "name": "CharredRuins4", "category": "structure", "x": -1078.7, "z": -9529.3, "px": 1863.9, "py": 421.7, "has_dungeon": false, "has_important": true}, {"id": 11290, "name": "CharredRuins4", "category": "structure", "x": 3446.0, "z": -8462.0, "px": 2636.1, "py": 603.8, "has_dungeon": false, "has_important": true}, {"id": 11291, "name": "CharredRuins4", "category": "structure", "x": 3693.9, "z": -8269.5, "px": 2678.4, "py": 636.7, "has_dungeon": false, "has_important": true}, {"id": 11292, "name": "CharredRuins4", "category": "structure", "x": 1909.6, "z": -9595.1, "px": 2373.9, "py": 410.4, "has_dungeon": false, "has_important": true}, {"id": 11293, "name": "CharredRuins4", "category": "structure", "x": 2546.9, "z": -9388.0, "px": 2482.7, "py": 445.8, "has_dungeon": false, "has_important": true}, {"id": 11294, "name": "CharredRuins4", "category": "structure", "x": 400.6, "z": -9841.7, "px": 2116.4, "py": 368.3, "has_dungeon": false, "has_important": true}, {"id": 11295, "name": "CharredRuins4", "category": "structure", "x": 81.3, "z": -9263.1, "px": 2061.9, "py": 467.1, "has_dungeon": false, "has_important": true}, {"id": 11296, "name": "CharredRuins4", "category": "structure", "x": 2560.4, "z": -9098.4, "px": 2485.0, "py": 495.2, "has_dungeon": false, "has_important": true}, {"id": 11297, "name": "CharredRuins4", "category": "structure", "x": 3319.5, "z": -8560.3, "px": 2614.5, "py": 587.0, "has_dungeon": false, "has_important": true}, {"id": 11298, "name": "CharredRuins4", "category": "structure", "x": 11.0, "z": -9858.1, "px": 2049.9, "py": 365.6, "has_dungeon": false, "has_important": true}, {"id": 11299, "name": "CharredRuins4", "category": "structure", "x": 3913.3, "z": -8591.1, "px": 2715.9, "py": 581.8, "has_dungeon": false, "has_important": true}, {"id": 11300, "name": "CharredRuins4", "category": "structure", "x": 1203.4, "z": -9480.1, "px": 2253.4, "py": 430.1, "has_dungeon": false, "has_important": true}, {"id": 11301, "name": "CharredRuins4", "category": "structure", "x": -4162.4, "z": -9035.4, "px": 1337.6, "py": 506.0, "has_dungeon": false, "has_important": true}, {"id": 11302, "name": "CharredRuins4", "category": "structure", "x": 2163.9, "z": -9584.6, "px": 2417.3, "py": 412.2, "has_dungeon": false, "has_important": true}, {"id": 11303, "name": "CharredRuins4", "category": "structure", "x": -3564.1, "z": -8528.5, "px": 1439.7, "py": 592.5, "has_dungeon": false, "has_important": true}, {"id": 11304, "name": "CharredRuins4", "category": "structure", "x": -3022.2, "z": -9219.3, "px": 1532.2, "py": 474.6, "has_dungeon": false, "has_important": true}, {"id": 11305, "name": "CharredRuins4", "category": "structure", "x": 4017.2, "z": -8721.5, "px": 2733.6, "py": 559.5, "has_dungeon": false, "has_important": true}, {"id": 11306, "name": "CharredRuins4", "category": "structure", "x": -2187.4, "z": -8251.3, "px": 1674.7, "py": 639.8, "has_dungeon": false, "has_important": true}, {"id": 11307, "name": "CharredRuins4", "category": "structure", "x": 1736.4, "z": -8682.7, "px": 2344.3, "py": 566.2, "has_dungeon": false, "has_important": true}, {"id": 11308, "name": "CharredRuins4", "category": "structure", "x": 2198.0, "z": -8945.7, "px": 2423.1, "py": 521.3, "has_dungeon": false, "has_important": true}, {"id": 11309, "name": "CharredRuins4", "category": "structure", "x": -513.8, "z": -9594.5, "px": 1960.3, "py": 410.5, "has_dungeon": false, "has_important": true}, {"id": 10678, "name": "CharredTowerRuins1", "category": "structure", "x": -2690.0, "z": -8705.1, "px": 1588.9, "py": 562.3, "has_dungeon": false, "has_important": true}, {"id": 10679, "name": "CharredTowerRuins1", "category": "structure", "x": 2747.6, "z": -8889.6, "px": 2516.9, "py": 530.8, "has_dungeon": false, "has_important": true}, {"id": 10680, "name": "CharredTowerRuins1", "category": "structure", "x": -3000.9, "z": -9023.3, "px": 1535.8, "py": 508.0, "has_dungeon": false, "has_important": true}, {"id": 10681, "name": "CharredTowerRuins1", "category": "structure", "x": -2358.0, "z": -8630.3, "px": 1645.6, "py": 575.1, "has_dungeon": false, "has_important": true}, {"id": 10682, "name": "CharredTowerRuins1", "category": "structure", "x": 3400.9, "z": -8071.2, "px": 2628.4, "py": 670.5, "has_dungeon": false, "has_important": true}, {"id": 10683, "name": "CharredTowerRuins1", "category": "structure", "x": -3460.0, "z": -8441.9, "px": 1457.5, "py": 607.2, "has_dungeon": false, "has_important": true}, {"id": 10684, "name": "CharredTowerRuins1", "category": "structure", "x": 3972.4, "z": -8959.6, "px": 2726.0, "py": 518.9, "has_dungeon": false, "has_important": true}, {"id": 10685, "name": "CharredTowerRuins1", "category": "structure", "x": 2423.0, "z": -8966.2, "px": 2461.5, "py": 517.8, "has_dungeon": false, "has_important": true}, {"id": 10686, "name": "CharredTowerRuins1", "category": "structure", "x": -5496.0, "z": -7877.3, "px": 1110.0, "py": 703.6, "has_dungeon": false, "has_important": true}, {"id": 10687, "name": "CharredTowerRuins1", "category": "structure", "x": -1274.2, "z": -9406.8, "px": 1830.5, "py": 442.6, "has_dungeon": false, "has_important": true}, {"id": 10688, "name": "CharredTowerRuins1", "category": "structure", "x": 575.3, "z": -9543.4, "px": 2146.2, "py": 419.3, "has_dungeon": false, "has_important": true}, {"id": 10689, "name": "CharredTowerRuins1", "category": "structure", "x": -4552.2, "z": -7996.7, "px": 1271.1, "py": 683.2, "has_dungeon": false, "has_important": true}, {"id": 10690, "name": "CharredTowerRuins1", "category": "structure", "x": -2625.7, "z": -8453.7, "px": 1599.9, "py": 605.2, "has_dungeon": false, "has_important": true}, {"id": 10691, "name": "CharredTowerRuins1", "category": "structure", "x": -1793.2, "z": -9276.3, "px": 1742.0, "py": 464.8, "has_dungeon": false, "has_important": true}, {"id": 10692, "name": "CharredTowerRuins1", "category": "structure", "x": -1846.4, "z": -9415.1, "px": 1732.9, "py": 441.2, "has_dungeon": false, "has_important": true}, {"id": 10693, "name": "CharredTowerRuins1", "category": "structure", "x": 1725.8, "z": -9399.6, "px": 2342.5, "py": 443.8, "has_dungeon": false, "has_important": true}, {"id": 10694, "name": "CharredTowerRuins1", "category": "structure", "x": -4038.0, "z": -8772.8, "px": 1358.8, "py": 550.8, "has_dungeon": false, "has_important": true}, {"id": 10695, "name": "CharredTowerRuins1", "category": "structure", "x": -3778.4, "z": -8958.1, "px": 1403.2, "py": 519.2, "has_dungeon": false, "has_important": true}, {"id": 10696, "name": "CharredTowerRuins1", "category": "structure", "x": -886.4, "z": -8711.9, "px": 1896.7, "py": 561.2, "has_dungeon": false, "has_important": true}, {"id": 10697, "name": "CharredTowerRuins1", "category": "structure", "x": -5448.0, "z": -7686.6, "px": 1118.2, "py": 736.2, "has_dungeon": false, "has_important": true}, {"id": 10698, "name": "CharredTowerRuins1", "category": "structure", "x": 5567.4, "z": -8004.4, "px": 2998.2, "py": 681.9, "has_dungeon": false, "has_important": true}, {"id": 10699, "name": "CharredTowerRuins1", "category": "structure", "x": -2056.6, "z": -9028.6, "px": 1697.0, "py": 507.1, "has_dungeon": false, "has_important": true}, {"id": 10700, "name": "CharredTowerRuins1", "category": "structure", "x": -1353.6, "z": -9475.0, "px": 1817.0, "py": 430.9, "has_dungeon": false, "has_important": true}, {"id": 10701, "name": "CharredTowerRuins1", "category": "structure", "x": 2300.6, "z": -9274.4, "px": 2440.6, "py": 465.2, "has_dungeon": false, "has_important": true}, {"id": 10702, "name": "CharredTowerRuins1", "category": "structure", "x": 2121.6, "z": -9339.0, "px": 2410.1, "py": 454.1, "has_dungeon": false, "has_important": true}, {"id": 10703, "name": "CharredTowerRuins1", "category": "structure", "x": -1801.1, "z": -9020.0, "px": 1740.6, "py": 508.6, "has_dungeon": false, "has_important": true}, {"id": 10704, "name": "CharredTowerRuins1", "category": "structure", "x": -3901.1, "z": -8771.2, "px": 1382.2, "py": 551.0, "has_dungeon": false, "has_important": true}, {"id": 10705, "name": "CharredTowerRuins1", "category": "structure", "x": -1919.0, "z": -8762.0, "px": 1720.5, "py": 552.6, "has_dungeon": false, "has_important": true}, {"id": 10706, "name": "CharredTowerRuins1", "category": "structure", "x": -4865.4, "z": -8199.3, "px": 1217.6, "py": 648.7, "has_dungeon": false, "has_important": true}, {"id": 10707, "name": "CharredTowerRuins1", "category": "structure", "x": -3912.4, "z": -8956.6, "px": 1380.3, "py": 519.4, "has_dungeon": false, "has_important": true}, {"id": 10708, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": 194.0, "z": -8583.6, "px": 2081.1, "py": 583.1, "has_dungeon": false, "has_important": true}, {"id": 10709, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": 5384.6, "z": -8070.3, "px": 2967.0, "py": 670.7, "has_dungeon": false, "has_important": true}, {"id": 10710, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": -3580.8, "z": -8449.6, "px": 1436.9, "py": 605.9, "has_dungeon": false, "has_important": true}, {"id": 10711, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": 3838.3, "z": -8457.0, "px": 2703.1, "py": 604.7, "has_dungeon": false, "has_important": true}, {"id": 10712, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": 1910.5, "z": -8440.1, "px": 2374.1, "py": 607.6, "has_dungeon": false, "has_important": true}, {"id": 10713, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": -5309.5, "z": -7751.3, "px": 1141.8, "py": 725.1, "has_dungeon": false, "has_important": true}, {"id": 10714, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": 132.6, "z": -9157.1, "px": 2070.6, "py": 485.2, "has_dungeon": false, "has_important": true}, {"id": 10715, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": -959.7, "z": -9730.7, "px": 1884.2, "py": 387.3, "has_dungeon": false, "has_important": true}, {"id": 10716, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": 3259.1, "z": -8380.7, "px": 2604.2, "py": 617.7, "has_dungeon": false, "has_important": true}, {"id": 10717, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": 1860.6, "z": -9463.3, "px": 2365.5, "py": 432.9, "has_dungeon": false, "has_important": true}, {"id": 10718, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": -1342.7, "z": -9148.4, "px": 1818.8, "py": 486.7, "has_dungeon": false, "has_important": true}, {"id": 10719, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": -3585.9, "z": -9031.2, "px": 1436.0, "py": 506.7, "has_dungeon": false, "has_important": true}, {"id": 10720, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": -4612.3, "z": -8391.2, "px": 1260.8, "py": 615.9, "has_dungeon": false, "has_important": true}, {"id": 10721, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": 2748.2, "z": -9022.6, "px": 2517.0, "py": 508.1, "has_dungeon": false, "has_important": true}, {"id": 10722, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": 513.8, "z": -9855.1, "px": 2135.7, "py": 366.1, "has_dungeon": false, "has_important": true}, {"id": 10723, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": -3384.7, "z": -8955.3, "px": 1470.3, "py": 519.6, "has_dungeon": false, "has_important": true}, {"id": 10724, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": -4408.4, "z": -8320.3, "px": 1295.6, "py": 628.0, "has_dungeon": false, "has_important": true}, {"id": 10725, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": -3583.6, "z": -8570.7, "px": 1436.4, "py": 585.3, "has_dungeon": false, "has_important": true}, {"id": 10726, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": -2614.2, "z": -8834.8, "px": 1601.8, "py": 540.2, "has_dungeon": false, "has_important": true}, {"id": 10727, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": -4535.3, "z": -8322.3, "px": 1274.0, "py": 627.7, "has_dungeon": false, "has_important": true}, {"id": 10728, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": 1785.2, "z": -9654.1, "px": 2352.7, "py": 400.4, "has_dungeon": false, "has_important": true}, {"id": 10729, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": -3260.0, "z": -8824.5, "px": 1491.6, "py": 542.0, "has_dungeon": false, "has_important": true}, {"id": 10730, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": -55.7, "z": -8772.4, "px": 2038.5, "py": 550.8, "has_dungeon": false, "has_important": true}, {"id": 10731, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": 3521.8, "z": -8055.7, "px": 2649.1, "py": 673.2, "has_dungeon": false, "has_important": true}, {"id": 10732, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": 2618.2, "z": -9017.8, "px": 2494.8, "py": 509.0, "has_dungeon": false, "has_important": true}, {"id": 10733, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": 647.3, "z": -9861.7, "px": 2158.5, "py": 364.9, "has_dungeon": false, "has_important": true}, {"id": 10734, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": -185.1, "z": -8767.1, "px": 2016.4, "py": 551.7, "has_dungeon": false, "has_important": true}, {"id": 10735, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": -3721.3, "z": -8325.0, "px": 1412.9, "py": 627.2, "has_dungeon": false, "has_important": true}, {"id": 10736, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": 2363.0, "z": -9145.1, "px": 2451.3, "py": 487.2, "has_dungeon": false, "has_important": true}, {"id": 10737, "name": "CharredTowerRuins1_dvergr", "category": "structure", "x": 5193.3, "z": -7740.7, "px": 2934.3, "py": 726.9, "has_dungeon": false, "has_important": true}, {"id": 10738, "name": "CharredTowerRuins2", "category": "structure", "x": -5511.7, "z": -7663.2, "px": 1107.3, "py": 740.1, "has_dungeon": false, "has_important": false}, {"id": 10739, "name": "CharredTowerRuins2", "category": "structure", "x": 1683.4, "z": -9164.9, "px": 2335.3, "py": 483.9, "has_dungeon": false, "has_important": false}, {"id": 10740, "name": "CharredTowerRuins2", "category": "structure", "x": 2104.4, "z": -8574.1, "px": 2407.2, "py": 584.7, "has_dungeon": false, "has_important": false}, {"id": 10741, "name": "CharredTowerRuins2", "category": "structure", "x": -4355.9, "z": -8180.3, "px": 1304.6, "py": 651.9, "has_dungeon": false, "has_important": false}, {"id": 10742, "name": "CharredTowerRuins2", "category": "structure", "x": -3440.8, "z": -8774.8, "px": 1460.8, "py": 550.4, "has_dungeon": false, "has_important": false}, {"id": 10743, "name": "CharredTowerRuins2", "category": "structure", "x": 2286.8, "z": -8907.8, "px": 2438.3, "py": 527.7, "has_dungeon": false, "has_important": false}, {"id": 10744, "name": "CharredTowerRuins2", "category": "structure", "x": 1983.3, "z": -8375.2, "px": 2386.5, "py": 618.6, "has_dungeon": false, "has_important": false}, {"id": 10745, "name": "CharredTowerRuins2", "category": "structure", "x": 5114.5, "z": -7792.6, "px": 2920.9, "py": 718.1, "has_dungeon": false, "has_important": false}, {"id": 10746, "name": "CharredTowerRuins2", "category": "structure", "x": 4094.2, "z": -8817.1, "px": 2746.7, "py": 543.2, "has_dungeon": false, "has_important": false}, {"id": 10747, "name": "CharredTowerRuins2", "category": "structure", "x": 1395.7, "z": -9415.0, "px": 2286.2, "py": 441.2, "has_dungeon": false, "has_important": false}, {"id": 10748, "name": "CharredTowerRuins2", "category": "structure", "x": -913.4, "z": -9281.0, "px": 1892.1, "py": 464.0, "has_dungeon": false, "has_important": false}, {"id": 10749, "name": "CharredTowerRuins2", "category": "structure", "x": 3088.5, "z": -8334.8, "px": 2575.1, "py": 625.5, "has_dungeon": false, "has_important": false}, {"id": 10750, "name": "CharredTowerRuins2", "category": "structure", "x": -3399.2, "z": -8756.0, "px": 1467.9, "py": 553.6, "has_dungeon": false, "has_important": false}, {"id": 10751, "name": "CharredTowerRuins2", "category": "structure", "x": -3789.2, "z": -9024.6, "px": 1401.3, "py": 507.8, "has_dungeon": false, "has_important": false}, {"id": 10752, "name": "CharredTowerRuins2", "category": "structure", "x": 2063.3, "z": -9535.0, "px": 2400.1, "py": 420.7, "has_dungeon": false, "has_important": false}, {"id": 10753, "name": "CharredTowerRuins2", "category": "structure", "x": 5326.6, "z": -8074.4, "px": 2957.1, "py": 670.0, "has_dungeon": false, "has_important": false}, {"id": 10754, "name": "CharredTowerRuins2", "category": "structure", "x": -327.0, "z": -9648.6, "px": 1992.2, "py": 401.3, "has_dungeon": false, "has_important": false}, {"id": 10755, "name": "CharredTowerRuins2", "category": "structure", "x": 2867.7, "z": -8884.1, "px": 2537.4, "py": 531.8, "has_dungeon": false, "has_important": false}, {"id": 10756, "name": "CharredTowerRuins2", "category": "structure", "x": -4720.3, "z": -8446.7, "px": 1242.4, "py": 606.4, "has_dungeon": false, "has_important": false}, {"id": 10757, "name": "CharredTowerRuins2", "category": "structure", "x": -1985.6, "z": -8508.2, "px": 1709.1, "py": 595.9, "has_dungeon": false, "has_important": false}, {"id": 10758, "name": "CharredTowerRuins2", "category": "structure", "x": 3393.8, "z": -8622.4, "px": 2627.2, "py": 576.4, "has_dungeon": false, "has_important": false}, {"id": 10759, "name": "CharredTowerRuins2", "category": "structure", "x": 3399.0, "z": -8236.7, "px": 2628.1, "py": 642.3, "has_dungeon": false, "has_important": false}, {"id": 10760, "name": "CharredTowerRuins2", "category": "structure", "x": 2286.4, "z": -8973.2, "px": 2438.2, "py": 516.6, "has_dungeon": false, "has_important": false}, {"id": 10761, "name": "CharredTowerRuins2", "category": "structure", "x": 5194.2, "z": -7853.8, "px": 2934.5, "py": 707.6, "has_dungeon": false, "has_important": false}, {"id": 10762, "name": "CharredTowerRuins2", "category": "structure", "x": 2041.6, "z": -8432.4, "px": 2396.4, "py": 608.9, "has_dungeon": false, "has_important": false}, {"id": 10763, "name": "CharredTowerRuins2", "category": "structure", "x": 1298.0, "z": -8847.6, "px": 2269.5, "py": 538.0, "has_dungeon": false, "has_important": false}, {"id": 10764, "name": "CharredTowerRuins2", "category": "structure", "x": 3715.5, "z": -8620.9, "px": 2682.1, "py": 576.7, "has_dungeon": false, "has_important": false}, {"id": 10765, "name": "CharredTowerRuins2", "category": "structure", "x": 2707.7, "z": -9455.7, "px": 2510.1, "py": 434.2, "has_dungeon": false, "has_important": false}, {"id": 10766, "name": "CharredTowerRuins2", "category": "structure", "x": -785.7, "z": -9921.0, "px": 1913.9, "py": 354.8, "has_dungeon": false, "has_important": false}, {"id": 10767, "name": "CharredTowerRuins2", "category": "structure", "x": -1073.2, "z": -8969.8, "px": 1864.8, "py": 517.2, "has_dungeon": false, "has_important": false}, {"id": 10768, "name": "CharredTowerRuins2", "category": "structure", "x": -3842.7, "z": -8959.7, "px": 1392.2, "py": 518.9, "has_dungeon": false, "has_important": false}, {"id": 10769, "name": "CharredTowerRuins2", "category": "structure", "x": -885.9, "z": -9857.6, "px": 1896.8, "py": 365.6, "has_dungeon": false, "has_important": false}, {"id": 10770, "name": "CharredTowerRuins2", "category": "structure", "x": 1397.1, "z": -9084.4, "px": 2286.4, "py": 497.6, "has_dungeon": false, "has_important": false}, {"id": 10771, "name": "CharredTowerRuins2", "category": "structure", "x": -3663.1, "z": -9034.4, "px": 1422.8, "py": 506.1, "has_dungeon": false, "has_important": false}, {"id": 10772, "name": "CharredTowerRuins2", "category": "structure", "x": -2744.9, "z": -8432.3, "px": 1579.5, "py": 608.9, "has_dungeon": false, "has_important": false}, {"id": 10773, "name": "CharredTowerRuins2", "category": "structure", "x": 3646.1, "z": -8576.1, "px": 2670.3, "py": 584.3, "has_dungeon": false, "has_important": false}, {"id": 10774, "name": "CharredTowerRuins2", "category": "structure", "x": -1336.0, "z": -9408.9, "px": 1820.0, "py": 442.2, "has_dungeon": false, "has_important": false}, {"id": 10775, "name": "CharredTowerRuins2", "category": "structure", "x": -5367.4, "z": -7886.9, "px": 1132.0, "py": 702.0, "has_dungeon": false, "has_important": false}, {"id": 10776, "name": "CharredTowerRuins2", "category": "structure", "x": 2359.4, "z": -8943.1, "px": 2450.7, "py": 521.7, "has_dungeon": false, "has_important": false}, {"id": 10777, "name": "CharredTowerRuins2", "category": "structure", "x": -263.1, "z": -9655.1, "px": 2003.1, "py": 400.2, "has_dungeon": false, "has_important": false}, {"id": 10778, "name": "CharredTowerRuins3", "category": "structure", "x": -978.3, "z": -9775.5, "px": 1881.0, "py": 379.6, "has_dungeon": false, "has_important": false}, {"id": 10779, "name": "CharredTowerRuins3", "category": "structure", "x": -5173.7, "z": -7689.7, "px": 1165.0, "py": 735.6, "has_dungeon": false, "has_important": false}, {"id": 10780, "name": "CharredTowerRuins3", "category": "structure", "x": 5371.0, "z": -7945.7, "px": 2964.7, "py": 691.9, "has_dungeon": false, "has_important": true}, {"id": 10781, "name": "CharredTowerRuins3", "category": "structure", "x": -2064.8, "z": -9231.1, "px": 1695.6, "py": 472.6, "has_dungeon": false, "has_important": false}, {"id": 10782, "name": "CharredTowerRuins3", "category": "structure", "x": 3312.7, "z": -8252.0, "px": 2613.4, "py": 639.7, "has_dungeon": false, "has_important": false}, {"id": 10783, "name": "CharredTowerRuins3", "category": "structure", "x": 2171.1, "z": -9466.3, "px": 2418.5, "py": 432.4, "has_dungeon": false, "has_important": false}, {"id": 10784, "name": "CharredTowerRuins3", "category": "structure", "x": 962.8, "z": -9344.9, "px": 2212.3, "py": 453.1, "has_dungeon": false, "has_important": false}, {"id": 10785, "name": "CharredTowerRuins3", "category": "structure", "x": 911.2, "z": -8817.9, "px": 2203.5, "py": 543.1, "has_dungeon": false, "has_important": true}, {"id": 10786, "name": "CharredTowerRuins3", "category": "structure", "x": -4689.7, "z": -8058.4, "px": 1247.6, "py": 672.7, "has_dungeon": false, "has_important": false}, {"id": 10787, "name": "CharredTowerRuins3", "category": "structure", "x": 1482.4, "z": -9715.9, "px": 2301.0, "py": 389.8, "has_dungeon": false, "has_important": true}, {"id": 10788, "name": "CharredTowerRuins3", "category": "structure", "x": -245.6, "z": -8693.6, "px": 2006.1, "py": 564.3, "has_dungeon": false, "has_important": true}, {"id": 10789, "name": "CharredTowerRuins3", "category": "structure", "x": 3822.4, "z": -8499.9, "px": 2700.4, "py": 597.4, "has_dungeon": false, "has_important": true}, {"id": 10790, "name": "CharredTowerRuins3", "category": "structure", "x": 2113.8, "z": -8453.9, "px": 2408.8, "py": 605.2, "has_dungeon": false, "has_important": true}, {"id": 10791, "name": "CharredTowerRuins3", "category": "structure", "x": 207.3, "z": -9235.6, "px": 2083.4, "py": 471.8, "has_dungeon": false, "has_important": true}, {"id": 10792, "name": "CharredTowerRuins3", "category": "structure", "x": -1602.8, "z": -9525.0, "px": 1774.5, "py": 422.4, "has_dungeon": false, "has_important": true}, {"id": 10793, "name": "CharredTowerRuins3", "category": "structure", "x": 3132.5, "z": -9388.1, "px": 2582.6, "py": 445.8, "has_dungeon": false, "has_important": false}, {"id": 10794, "name": "CharredTowerRuins3", "category": "structure", "x": -2350.2, "z": -8269.4, "px": 1646.9, "py": 636.7, "has_dungeon": false, "has_important": false}, {"id": 10795, "name": "CharredTowerRuins3", "category": "structure", "x": -433.0, "z": -9524.6, "px": 1974.1, "py": 422.5, "has_dungeon": false, "has_important": false}, {"id": 10796, "name": "CharredTowerRuins3", "category": "structure", "x": -3565.1, "z": -8640.1, "px": 1439.6, "py": 573.4, "has_dungeon": false, "has_important": true}, {"id": 10797, "name": "CharredTowerRuins3", "category": "structure", "x": -17.8, "z": -9804.4, "px": 2045.0, "py": 374.7, "has_dungeon": false, "has_important": false}, {"id": 10798, "name": "CharredTowerRuins3", "category": "structure", "x": -818.2, "z": -8655.0, "px": 1908.4, "py": 570.9, "has_dungeon": false, "has_important": false}, {"id": 10799, "name": "CharredTowerRuins3", "category": "structure", "x": -1274.8, "z": -9091.9, "px": 1830.4, "py": 496.3, "has_dungeon": false, "has_important": false}, {"id": 10800, "name": "CharredTowerRuins3", "category": "structure", "x": 2876.2, "z": -8771.7, "px": 2538.9, "py": 551.0, "has_dungeon": false, "has_important": true}, {"id": 10801, "name": "CharredTowerRuins3", "category": "structure", "x": 692.1, "z": -9853.7, "px": 2166.1, "py": 366.3, "has_dungeon": false, "has_important": true}, {"id": 10802, "name": "CharredTowerRuins3", "category": "structure", "x": -4025.7, "z": -9078.0, "px": 1360.9, "py": 498.7, "has_dungeon": false, "has_important": false}, {"id": 10803, "name": "CharredTowerRuins3", "category": "structure", "x": 1524.2, "z": -9038.5, "px": 2308.1, "py": 505.4, "has_dungeon": false, "has_important": true}, {"id": 10804, "name": "CharredTowerRuins3", "category": "structure", "x": -2927.4, "z": -8518.1, "px": 1548.4, "py": 594.2, "has_dungeon": false, "has_important": true}, {"id": 10805, "name": "CharredTowerRuins3", "category": "structure", "x": -2501.5, "z": -8963.8, "px": 1621.1, "py": 518.2, "has_dungeon": false, "has_important": false}, {"id": 10806, "name": "CharredTowerRuins3", "category": "structure", "x": -3692.2, "z": -8140.9, "px": 1417.9, "py": 658.6, "has_dungeon": false, "has_important": false}, {"id": 10807, "name": "CharredTowerRuins3", "category": "structure", "x": -6335.5, "z": -7566.7, "px": 966.7, "py": 756.6, "has_dungeon": false, "has_important": false}, {"id": 10808, "name": "CharredTowerRuins3", "category": "structure", "x": 2638.8, "z": -9281.7, "px": 2498.4, "py": 463.9, "has_dungeon": false, "has_important": true}, {"id": 10809, "name": "CharredTowerRuins3", "category": "structure", "x": -4275.1, "z": -8339.4, "px": 1318.4, "py": 624.7, "has_dungeon": false, "has_important": false}, {"id": 10810, "name": "CharredTowerRuins3", "category": "structure", "x": -1966.2, "z": -8622.3, "px": 1712.4, "py": 576.5, "has_dungeon": false, "has_important": false}, {"id": 7246, "name": "CombatRuin01", "category": "structure", "x": 3697.5, "z": -386.4, "px": 2679.0, "py": 1982.1, "has_dungeon": false, "has_important": true}, {"id": 7247, "name": "CombatRuin01", "category": "structure", "x": -2094.5, "z": 1872.7, "px": 1690.5, "py": 2367.6, "has_dungeon": false, "has_important": true}, {"id": 7248, "name": "CombatRuin01", "category": "structure", "x": -2186.0, "z": -1651.0, "px": 1674.9, "py": 1766.2, "has_dungeon": false, "has_important": true}, {"id": 7249, "name": "CombatRuin01", "category": "structure", "x": 752.7, "z": 3346.6, "px": 2176.5, "py": 2619.2, "has_dungeon": false, "has_important": true}, {"id": 7250, "name": "CombatRuin01", "category": "structure", "x": 126.9, "z": -1746.6, "px": 2069.7, "py": 1749.9, "has_dungeon": false, "has_important": true}, {"id": 9944, "name": "FortressRuins", "category": "structure", "x": -1152.0, "z": -9472.0, "px": 1851.4, "py": 431.4, "has_dungeon": true, "has_important": true}, {"id": 9945, "name": "FortressRuins", "category": "structure", "x": 640.0, "z": -9344.0, "px": 2157.2, "py": 453.3, "has_dungeon": true, "has_important": true}, {"id": 9946, "name": "FortressRuins", "category": "structure", "x": -640.0, "z": -9408.0, "px": 1938.8, "py": 442.4, "has_dungeon": true, "has_important": true}, {"id": 9947, "name": "FortressRuins", "category": "structure", "x": -2240.0, "z": -8896.0, "px": 1665.7, "py": 529.7, "has_dungeon": true, "has_important": true}, {"id": 9948, "name": "FortressRuins", "category": "structure", "x": -1216.0, "z": -9472.0, "px": 1840.5, "py": 431.4, "has_dungeon": true, "has_important": true}, {"id": 9949, "name": "FortressRuins", "category": "structure", "x": -896.0, "z": -9536.0, "px": 1895.1, "py": 420.5, "has_dungeon": true, "has_important": true}, {"id": 9950, "name": "FortressRuins", "category": "structure", "x": -320.0, "z": -9920.0, "px": 1993.4, "py": 355.0, "has_dungeon": true, "has_important": true}, {"id": 9951, "name": "FortressRuins", "category": "structure", "x": -384.0, "z": -9920.0, "px": 1982.5, "py": 355.0, "has_dungeon": true, "has_important": true}, {"id": 9952, "name": "FortressRuins", "category": "structure", "x": 640.0, "z": -9408.0, "px": 2157.2, "py": 442.4, "has_dungeon": true, "has_important": true}, {"id": 9953, "name": "FortressRuins", "category": "structure", "x": -768.0, "z": -8896.0, "px": 1916.9, "py": 529.7, "has_dungeon": true, "has_important": true}, {"id": 9954, "name": "FortressRuins", "category": "structure", "x": 320.0, "z": -8896.0, "px": 2102.6, "py": 529.7, "has_dungeon": true, "has_important": true}, {"id": 9955, "name": "FortressRuins", "category": "structure", "x": -704.0, "z": -9472.0, "px": 1927.9, "py": 431.4, "has_dungeon": true, "has_important": true}, {"id": 9956, "name": "FortressRuins", "category": "structure", "x": 320.0, "z": -8960.0, "px": 2102.6, "py": 518.8, "has_dungeon": true, "has_important": true}, {"id": 9957, "name": "FortressRuins", "category": "structure", "x": 1280.0, "z": -9408.0, "px": 2266.5, "py": 442.4, "has_dungeon": true, "has_important": true}, {"id": 9958, "name": "FortressRuins", "category": "structure", "x": -2240.0, "z": -8832.0, "px": 1665.7, "py": 540.7, "has_dungeon": true, "has_important": true}, {"id": 9959, "name": "FortressRuins", "category": "structure", "x": 768.0, "z": -9088.0, "px": 2179.1, "py": 497.0, "has_dungeon": true, "has_important": true}, {"id": 9960, "name": "FortressRuins", "category": "structure", "x": -768.0, "z": -9408.0, "px": 1916.9, "py": 442.4, "has_dungeon": true, "has_important": true}, {"id": 9961, "name": "FortressRuins", "category": "structure", "x": 704.0, "z": -9024.0, "px": 2168.1, "py": 507.9, "has_dungeon": true, "has_important": true}, {"id": 9962, "name": "FortressRuins", "category": "structure", "x": 576.0, "z": -9408.0, "px": 2146.3, "py": 442.4, "has_dungeon": true, "has_important": true}, {"id": 9963, "name": "FortressRuins", "category": "structure", "x": -576.0, "z": -9216.0, "px": 1949.7, "py": 475.1, "has_dungeon": true, "has_important": true}, {"id": 9964, "name": "FortressRuins", "category": "structure", "x": 1536.0, "z": -9408.0, "px": 2310.1, "py": 442.4, "has_dungeon": true, "has_important": true}, {"id": 9965, "name": "FortressRuins", "category": "structure", "x": 768.0, "z": -9344.0, "px": 2179.1, "py": 453.3, "has_dungeon": true, "has_important": true}, {"id": 9966, "name": "FortressRuins", "category": "structure", "x": 1600.0, "z": -9152.0, "px": 2321.1, "py": 486.1, "has_dungeon": true, "has_important": true}, {"id": 9967, "name": "FortressRuins", "category": "structure", "x": -832.0, "z": -9536.0, "px": 1906.0, "py": 420.5, "has_dungeon": true, "has_important": true}, {"id": 9968, "name": "FortressRuins", "category": "structure", "x": -256.0, "z": -9920.0, "px": 2004.3, "py": 355.0, "has_dungeon": true, "has_important": true}, {"id": 9969, "name": "FortressRuins", "category": "structure", "x": 832.0, "z": -9088.0, "px": 2190.0, "py": 497.0, "has_dungeon": true, "has_important": true}, {"id": 9970, "name": "FortressRuins", "category": "structure", "x": -512.0, "z": -9152.0, "px": 1960.6, "py": 486.1, "has_dungeon": true, "has_important": true}, {"id": 9971, "name": "FortressRuins", "category": "structure", "x": 320.0, "z": -8832.0, "px": 2102.6, "py": 540.7, "has_dungeon": true, "has_important": true}, {"id": 9972, "name": "FortressRuins", "category": "structure", "x": 1152.0, "z": -8960.0, "px": 2244.6, "py": 518.8, "has_dungeon": true, "has_important": true}, {"id": 9973, "name": "FortressRuins", "category": "structure", "x": -704.0, "z": -9344.0, "px": 1927.9, "py": 453.3, "has_dungeon": true, "has_important": true}, {"id": 9974, "name": "FortressRuins", "category": "structure", "x": 320.0, "z": -9024.0, "px": 2102.6, "py": 507.9, "has_dungeon": true, "has_important": true}, {"id": 9975, "name": "FortressRuins", "category": "structure", "x": 768.0, "z": -9024.0, "px": 2179.1, "py": 507.9, "has_dungeon": true, "has_important": true}, {"id": 9976, "name": "FortressRuins", "category": "structure", "x": 256.0, "z": -8832.0, "px": 2091.7, "py": 540.7, "has_dungeon": true, "has_important": true}, {"id": 9977, "name": "FortressRuins", "category": "structure", "x": -768.0, "z": -8960.0, "px": 1916.9, "py": 518.8, "has_dungeon": true, "has_important": true}, {"id": 9978, "name": "FortressRuins", "category": "structure", "x": -448.0, "z": -9920.0, "px": 1971.5, "py": 355.0, "has_dungeon": true, "has_important": true}, {"id": 9979, "name": "FortressRuins", "category": "structure", "x": -256.0, "z": -9984.0, "px": 2004.3, "py": 344.1, "has_dungeon": true, "has_important": true}, {"id": 9980, "name": "FortressRuins", "category": "structure", "x": -768.0, "z": -9344.0, "px": 1916.9, "py": 453.3, "has_dungeon": true, "has_important": true}, {"id": 9981, "name": "FortressRuins", "category": "structure", "x": -448.0, "z": -8832.0, "px": 1971.5, "py": 540.7, "has_dungeon": true, "has_important": true}, {"id": 9982, "name": "FortressRuins", "category": "structure", "x": -832.0, "z": -9600.0, "px": 1906.0, "py": 409.6, "has_dungeon": true, "has_important": true}, {"id": 9983, "name": "FortressRuins", "category": "structure", "x": -576.0, "z": -9280.0, "px": 1949.7, "py": 464.2, "has_dungeon": true, "has_important": true}, {"id": 9984, "name": "FortressRuins", "category": "structure", "x": 704.0, "z": -9152.0, "px": 2168.1, "py": 486.1, "has_dungeon": true, "has_important": true}, {"id": 9985, "name": "FortressRuins", "category": "structure", "x": 256.0, "z": -8768.0, "px": 2091.7, "py": 551.6, "has_dungeon": true, "has_important": true}, {"id": 9986, "name": "FortressRuins", "category": "structure", "x": -704.0, "z": -8960.0, "px": 1927.9, "py": 518.8, "has_dungeon": true, "has_important": true}, {"id": 9987, "name": "FortressRuins", "category": "structure", "x": -384.0, "z": -8768.0, "px": 1982.5, "py": 551.6, "has_dungeon": true, "has_important": true}, {"id": 9988, "name": "FortressRuins", "category": "structure", "x": -704.0, "z": -9536.0, "px": 1927.9, "py": 420.5, "has_dungeon": true, "has_important": true}, {"id": 9989, "name": "FortressRuins", "category": "structure", "x": -448.0, "z": -9856.0, "px": 1971.5, "py": 365.9, "has_dungeon": true, "has_important": true}, {"id": 9990, "name": "FortressRuins", "category": "structure", "x": -384.0, "z": -9984.0, "px": 1982.5, "py": 344.1, "has_dungeon": true, "has_important": true}, {"id": 9991, "name": "FortressRuins", "category": "structure", "x": -640.0, "z": -9472.0, "px": 1938.8, "py": 431.4, "has_dungeon": true, "has_important": true}, {"id": 9992, "name": "FortressRuins", "category": "structure", "x": -832.0, "z": -9216.0, "px": 1906.0, "py": 475.1, "has_dungeon": true, "has_important": true}, {"id": 9993, "name": "FortressRuins", "category": "structure", "x": 1216.0, "z": -8960.0, "px": 2255.5, "py": 518.8, "has_dungeon": true, "has_important": true}, {"id": 9994, "name": "FortressRuins", "category": "structure", "x": -640.0, "z": -9280.0, "px": 1938.8, "py": 464.2, "has_dungeon": true, "has_important": true}, {"id": 9995, "name": "FortressRuins", "category": "structure", "x": -320.0, "z": -8832.0, "px": 1993.4, "py": 540.7, "has_dungeon": true, "has_important": true}, {"id": 9996, "name": "FortressRuins", "category": "structure", "x": 384.0, "z": -8832.0, "px": 2113.5, "py": 540.7, "has_dungeon": true, "has_important": true}, {"id": 9997, "name": "FortressRuins", "category": "structure", "x": 1152.0, "z": -8896.0, "px": 2244.6, "py": 529.7, "has_dungeon": true, "has_important": true}, {"id": 9998, "name": "FortressRuins", "category": "structure", "x": 768.0, "z": -9280.0, "px": 2179.1, "py": 464.2, "has_dungeon": true, "has_important": true}, {"id": 9999, "name": "FortressRuins", "category": "structure", "x": 1536.0, "z": -9088.0, "px": 2310.1, "py": 497.0, "has_dungeon": true, "has_important": true}, {"id": 10000, "name": "FortressRuins", "category": "structure", "x": 704.0, "z": -8960.0, "px": 2168.1, "py": 518.8, "has_dungeon": true, "has_important": true}, {"id": 10001, "name": "FortressRuins", "category": "structure", "x": 1536.0, "z": -9216.0, "px": 2310.1, "py": 475.1, "has_dungeon": true, "has_important": true}, {"id": 10002, "name": "FortressRuins", "category": "structure", "x": -512.0, "z": -9280.0, "px": 1960.6, "py": 464.2, "has_dungeon": true, "has_important": true}, {"id": 10003, "name": "FortressRuins", "category": "structure", "x": 384.0, "z": -8768.0, "px": 2113.5, "py": 551.6, "has_dungeon": true, "has_important": true}, {"id": 10004, "name": "FortressRuins", "category": "structure", "x": 256.0, "z": -8704.0, "px": 2091.7, "py": 562.5, "has_dungeon": true, "has_important": true}, {"id": 10005, "name": "FortressRuins", "category": "structure", "x": 384.0, "z": -8704.0, "px": 2113.5, "py": 562.5, "has_dungeon": true, "has_important": true}, {"id": 10006, "name": "FortressRuins", "category": "structure", "x": 384.0, "z": -9024.0, "px": 2113.5, "py": 507.9, "has_dungeon": true, "has_important": true}, {"id": 10007, "name": "FortressRuins", "category": "structure", "x": 704.0, "z": -9408.0, "px": 2168.1, "py": 442.4, "has_dungeon": true, "has_important": true}, {"id": 10008, "name": "FortressRuins", "category": "structure", "x": -832.0, "z": -9344.0, "px": 1906.0, "py": 453.3, "has_dungeon": true, "has_important": true}, {"id": 10009, "name": "FortressRuins", "category": "structure", "x": 832.0, "z": -9344.0, "px": 2190.0, "py": 453.3, "has_dungeon": true, "has_important": true}, {"id": 10010, "name": "FortressRuins", "category": "structure", "x": -640.0, "z": -9728.0, "px": 1938.8, "py": 387.8, "has_dungeon": true, "has_important": true}, {"id": 10011, "name": "FortressRuins", "category": "structure", "x": 384.0, "z": -8640.0, "px": 2113.5, "py": 573.4, "has_dungeon": true, "has_important": true}, {"id": 10012, "name": "FortressRuins", "category": "structure", "x": 448.0, "z": -9344.0, "px": 2124.5, "py": 453.3, "has_dungeon": true, "has_important": true}, {"id": 10013, "name": "FortressRuins", "category": "structure", "x": 1216.0, "z": -9344.0, "px": 2255.5, "py": 453.3, "has_dungeon": true, "has_important": true}, {"id": 10014, "name": "FortressRuins", "category": "structure", "x": -448.0, "z": -8896.0, "px": 1971.5, "py": 529.7, "has_dungeon": true, "has_important": true}, {"id": 10015, "name": "FortressRuins", "category": "structure", "x": 640.0, "z": -8960.0, "px": 2157.2, "py": 518.8, "has_dungeon": true, "has_important": true}, {"id": 10016, "name": "FortressRuins", "category": "structure", "x": 1600.0, "z": -9472.0, "px": 2321.1, "py": 431.4, "has_dungeon": true, "has_important": true}, {"id": 10017, "name": "FortressRuins", "category": "structure", "x": -768.0, "z": -8832.0, "px": 1916.9, "py": 540.7, "has_dungeon": true, "has_important": true}, {"id": 3035, "name": "GoblinCamp2", "category": "structure", "x": 2302.1, "z": 5886.9, "px": 2440.9, "py": 3052.7, "has_dungeon": true, "has_important": true}, {"id": 3036, "name": "GoblinCamp2", "category": "structure", "x": 3969.5, "z": -1152.7, "px": 2725.5, "py": 1851.3, "has_dungeon": true, "has_important": true}, {"id": 3037, "name": "GoblinCamp2", "category": "structure", "x": -2559.0, "z": 6079.3, "px": 1611.3, "py": 3085.5, "has_dungeon": true, "has_important": true}, {"id": 3038, "name": "GoblinCamp2", "category": "structure", "x": 4542.7, "z": 1025.5, "px": 2823.3, "py": 2223.0, "has_dungeon": true, "has_important": true}, {"id": 3039, "name": "GoblinCamp2", "category": "structure", "x": 4095.8, "z": -897.4, "px": 2747.0, "py": 1894.8, "has_dungeon": true, "has_important": true}, {"id": 3040, "name": "GoblinCamp2", "category": "structure", "x": -5758.6, "z": 1729.8, "px": 1065.2, "py": 2343.2, "has_dungeon": true, "has_important": true}, {"id": 3041, "name": "GoblinCamp2", "category": "structure", "x": 3264.9, "z": -319.5, "px": 2605.2, "py": 1993.5, "has_dungeon": true, "has_important": true}, {"id": 3042, "name": "GoblinCamp2", "category": "structure", "x": 5184.1, "z": -2368.4, "px": 2932.8, "py": 1643.8, "has_dungeon": true, "has_important": true}, {"id": 3043, "name": "GoblinCamp2", "category": "structure", "x": -4863.5, "z": 3966.2, "px": 1218.0, "py": 2724.9, "has_dungeon": true, "has_important": true}, {"id": 3044, "name": "GoblinCamp2", "category": "structure", "x": -1024.1, "z": -4863.7, "px": 1873.2, "py": 1217.9, "has_dungeon": true, "has_important": true}, {"id": 3045, "name": "GoblinCamp2", "category": "structure", "x": 4928.6, "z": 1279.0, "px": 2889.1, "py": 2266.3, "has_dungeon": true, "has_important": true}, {"id": 3046, "name": "GoblinCamp2", "category": "structure", "x": 4289.0, "z": 5185.2, "px": 2780.0, "py": 2932.9, "has_dungeon": true, "has_important": true}, {"id": 3047, "name": "GoblinCamp2", "category": "structure", "x": -1985.3, "z": 3584.1, "px": 1709.2, "py": 2659.7, "has_dungeon": true, "has_important": true}, {"id": 3048, "name": "GoblinCamp2", "category": "structure", "x": 1536.3, "z": -4286.4, "px": 2310.2, "py": 1316.5, "has_dungeon": true, "has_important": true}, {"id": 3049, "name": "GoblinCamp2", "category": "structure", "x": 3265.8, "z": -1407.4, "px": 2605.4, "py": 1807.8, "has_dungeon": true, "has_important": true}, {"id": 3050, "name": "GoblinCamp2", "category": "structure", "x": 766.5, "z": -7231.9, "px": 2178.8, "py": 813.8, "has_dungeon": true, "has_important": true}, {"id": 3051, "name": "GoblinCamp2", "category": "structure", "x": 3073.0, "z": 3198.7, "px": 2572.5, "py": 2593.9, "has_dungeon": true, "has_important": true}, {"id": 3052, "name": "GoblinCamp2", "category": "structure", "x": -6206.2, "z": 1408.8, "px": 988.8, "py": 2288.4, "has_dungeon": true, "has_important": true}, {"id": 3053, "name": "GoblinCamp2", "category": "structure", "x": -6464.8, "z": -3839.8, "px": 944.7, "py": 1392.7, "has_dungeon": true, "has_important": true}, {"id": 3054, "name": "GoblinCamp2", "category": "structure", "x": 6847.7, "z": 3134.3, "px": 3216.7, "py": 2582.9, "has_dungeon": true, "has_important": true}, {"id": 3055, "name": "GoblinCamp2", "category": "structure", "x": 1215.1, "z": -4097.4, "px": 2255.4, "py": 1348.7, "has_dungeon": true, "has_important": true}, {"id": 3056, "name": "GoblinCamp2", "category": "structure", "x": -4993.1, "z": 3711.1, "px": 1195.8, "py": 2681.4, "has_dungeon": true, "has_important": true}, {"id": 3057, "name": "GoblinCamp2", "category": "structure", "x": -1534.8, "z": -6655.5, "px": 1786.1, "py": 912.1, "has_dungeon": true, "has_important": true}, {"id": 3058, "name": "GoblinCamp2", "category": "structure", "x": -4290.0, "z": 959.0, "px": 1315.8, "py": 2211.7, "has_dungeon": true, "has_important": true}, {"id": 3059, "name": "GoblinCamp2", "category": "structure", "x": -62.5, "z": -4926.3, "px": 2037.3, "py": 1207.2, "has_dungeon": true, "has_important": true}, {"id": 3060, "name": "GoblinCamp2", "category": "structure", "x": -5758.6, "z": -1345.1, "px": 1065.2, "py": 1818.4, "has_dungeon": true, "has_important": true}, {"id": 3061, "name": "GoblinCamp2", "category": "structure", "x": -4223.5, "z": 3007.5, "px": 1327.2, "py": 2561.3, "has_dungeon": true, "has_important": true}, {"id": 3062, "name": "GoblinCamp2", "category": "structure", "x": -1215.9, "z": -4353.4, "px": 1840.5, "py": 1305.0, "has_dungeon": true, "has_important": true}, {"id": 3063, "name": "GoblinCamp2", "category": "structure", "x": -128.6, "z": -5822.9, "px": 2026.1, "py": 1054.2, "has_dungeon": true, "has_important": true}, {"id": 3064, "name": "GoblinCamp2", "category": "structure", "x": -5950.0, "z": -4991.2, "px": 1032.5, "py": 1196.2, "has_dungeon": true, "has_important": true}, {"id": 3065, "name": "GoblinCamp2", "category": "structure", "x": -4544.0, "z": -5568.1, "px": 1272.5, "py": 1097.7, "has_dungeon": true, "has_important": true}, {"id": 3066, "name": "GoblinCamp2", "category": "structure", "x": 5310.5, "z": 3584.0, "px": 2954.3, "py": 2659.7, "has_dungeon": true, "has_important": true}, {"id": 3067, "name": "GoblinCamp2", "category": "structure", "x": -2816.7, "z": 2177.2, "px": 1567.3, "py": 2419.6, "has_dungeon": true, "has_important": true}, {"id": 3068, "name": "GoblinCamp2", "category": "structure", "x": -5185.2, "z": -1022.1, "px": 1163.1, "py": 1873.6, "has_dungeon": true, "has_important": true}, {"id": 3069, "name": "GoblinCamp2", "category": "structure", "x": -3393.3, "z": 2305.2, "px": 1468.9, "py": 2441.4, "has_dungeon": true, "has_important": true}, {"id": 3070, "name": "GoblinCamp2", "category": "structure", "x": -2112.0, "z": 3137.1, "px": 1687.6, "py": 2583.4, "has_dungeon": true, "has_important": true}, {"id": 3071, "name": "GoblinCamp2", "category": "structure", "x": 3776.6, "z": 1729.7, "px": 2692.5, "py": 2343.2, "has_dungeon": true, "has_important": true}, {"id": 3072, "name": "GoblinCamp2", "category": "structure", "x": -4353.3, "z": -2241.8, "px": 1305.0, "py": 1665.4, "has_dungeon": true, "has_important": true}, {"id": 3073, "name": "GoblinCamp2", "category": "structure", "x": -3968.4, "z": 1150.8, "px": 1370.7, "py": 2244.4, "has_dungeon": true, "has_important": true}, {"id": 3074, "name": "GoblinCamp2", "category": "structure", "x": 6720.6, "z": 2302.1, "px": 3195.0, "py": 2440.9, "has_dungeon": true, "has_important": true}, {"id": 3075, "name": "GoblinCamp2", "category": "structure", "x": -6209.3, "z": -4736.0, "px": 988.3, "py": 1239.7, "has_dungeon": true, "has_important": true}, {"id": 3076, "name": "GoblinCamp2", "category": "structure", "x": 6849.0, "z": -2369.3, "px": 3216.9, "py": 1643.6, "has_dungeon": true, "has_important": true}, {"id": 3077, "name": "GoblinCamp2", "category": "structure", "x": 5889.6, "z": -4990.1, "px": 3053.2, "py": 1196.4, "has_dungeon": true, "has_important": true}, {"id": 3078, "name": "GoblinCamp2", "category": "structure", "x": 1918.4, "z": 3071.5, "px": 2375.4, "py": 2572.2, "has_dungeon": true, "has_important": true}, {"id": 3079, "name": "GoblinCamp2", "category": "structure", "x": 4415.1, "z": -1345.8, "px": 2801.5, "py": 1818.3, "has_dungeon": true, "has_important": true}, {"id": 3080, "name": "GoblinCamp2", "category": "structure", "x": -3967.4, "z": 3841.4, "px": 1370.9, "py": 2703.6, "has_dungeon": true, "has_important": true}, {"id": 3081, "name": "GoblinCamp2", "category": "structure", "x": -3137.5, "z": 5951.5, "px": 1512.5, "py": 3063.7, "has_dungeon": true, "has_important": true}, {"id": 3082, "name": "GoblinCamp2", "category": "structure", "x": -6017.1, "z": 2176.9, "px": 1021.1, "py": 2419.5, "has_dungeon": true, "has_important": true}, {"id": 3083, "name": "GoblinCamp2", "category": "structure", "x": 2753.6, "z": -5953.6, "px": 2517.9, "py": 1031.9, "has_dungeon": true, "has_important": true}, {"id": 3084, "name": "GoblinCamp2", "category": "structure", "x": -3071.2, "z": 1215.7, "px": 1523.8, "py": 2255.5, "has_dungeon": true, "has_important": true}, {"id": 3085, "name": "GoblinCamp2", "category": "structure", "x": -4543.6, "z": -6143.1, "px": 1272.6, "py": 999.6, "has_dungeon": true, "has_important": true}, {"id": 3086, "name": "GoblinCamp2", "category": "structure", "x": 4032.1, "z": -4990.2, "px": 2736.1, "py": 1196.3, "has_dungeon": true, "has_important": true}, {"id": 3087, "name": "GoblinCamp2", "category": "structure", "x": 1024.6, "z": 4097.5, "px": 2222.9, "py": 2747.3, "has_dungeon": true, "has_important": true}, {"id": 3088, "name": "GoblinCamp2", "category": "structure", "x": -3647.2, "z": 2177.6, "px": 1425.5, "py": 2419.6, "has_dungeon": true, "has_important": true}, {"id": 3089, "name": "GoblinCamp2", "category": "structure", "x": 2750.5, "z": -5567.8, "px": 2517.4, "py": 1097.8, "has_dungeon": true, "has_important": true}, {"id": 3090, "name": "GoblinCamp2", "category": "structure", "x": 1022.6, "z": 5824.3, "px": 2222.5, "py": 3042.0, "has_dungeon": true, "has_important": true}, {"id": 3091, "name": "GoblinCamp2", "category": "structure", "x": -7103.0, "z": -1.0, "px": 835.8, "py": 2047.8, "has_dungeon": true, "has_important": true}, {"id": 3092, "name": "GoblinCamp2", "category": "structure", "x": -4289.7, "z": -6142.8, "px": 1315.9, "py": 999.6, "has_dungeon": true, "has_important": true}, {"id": 3093, "name": "GoblinCamp2", "category": "structure", "x": -3136.3, "z": 2494.0, "px": 1512.7, "py": 2473.6, "has_dungeon": true, "has_important": true}, {"id": 3094, "name": "GoblinCamp2", "category": "structure", "x": -641.3, "z": 4094.2, "px": 1938.6, "py": 2746.7, "has_dungeon": true, "has_important": true}, {"id": 3095, "name": "GoblinCamp2", "category": "structure", "x": -7681.2, "z": -1983.8, "px": 737.1, "py": 1709.4, "has_dungeon": true, "has_important": true}, {"id": 3096, "name": "GoblinCamp2", "category": "structure", "x": 1982.5, "z": 7040.4, "px": 2386.3, "py": 3249.6, "has_dungeon": true, "has_important": true}, {"id": 3097, "name": "GoblinCamp2", "category": "structure", "x": -7486.5, "z": 2241.7, "px": 770.3, "py": 2430.6, "has_dungeon": true, "has_important": true}, {"id": 3098, "name": "GoblinCamp2", "category": "structure", "x": 3136.5, "z": 2750.3, "px": 2583.3, "py": 2517.4, "has_dungeon": true, "has_important": true}, {"id": 3099, "name": "GoblinCamp2", "category": "structure", "x": 3776.9, "z": 1407.8, "px": 2692.6, "py": 2288.3, "has_dungeon": true, "has_important": true}, {"id": 3100, "name": "GoblinCamp2", "category": "structure", "x": -704.8, "z": -6207.4, "px": 1927.7, "py": 988.6, "has_dungeon": true, "has_important": true}, {"id": 3101, "name": "GoblinCamp2", "category": "structure", "x": -3647.2, "z": -1599.4, "px": 1425.5, "py": 1775.0, "has_dungeon": true, "has_important": true}, {"id": 3102, "name": "GoblinCamp2", "category": "structure", "x": -2750.2, "z": -2879.8, "px": 1578.6, "py": 1556.5, "has_dungeon": true, "has_important": true}, {"id": 3103, "name": "GoblinCamp2", "category": "structure", "x": 2238.9, "z": -4798.2, "px": 2430.1, "py": 1229.1, "has_dungeon": true, "has_important": true}, {"id": 3104, "name": "GoblinCamp2", "category": "structure", "x": -4094.7, "z": -4352.5, "px": 1349.2, "py": 1305.2, "has_dungeon": true, "has_important": true}, {"id": 3105, "name": "GoblinCamp2", "category": "structure", "x": -2880.0, "z": 5761.0, "px": 1556.5, "py": 3031.2, "has_dungeon": true, "has_important": true}, {"id": 3106, "name": "GoblinCamp2", "category": "structure", "x": 5758.1, "z": -1023.1, "px": 3030.7, "py": 1873.4, "has_dungeon": true, "has_important": true}, {"id": 3107, "name": "GoblinCamp2", "category": "structure", "x": 1664.6, "z": 3393.8, "px": 2332.1, "py": 2627.2, "has_dungeon": true, "has_important": true}, {"id": 3108, "name": "GoblinCamp2", "category": "structure", "x": -3646.9, "z": 2561.5, "px": 1425.6, "py": 2485.2, "has_dungeon": true, "has_important": true}, {"id": 3109, "name": "GoblinCamp2", "category": "structure", "x": 127.2, "z": 3518.4, "px": 2069.7, "py": 2648.5, "has_dungeon": true, "has_important": true}, {"id": 3110, "name": "GoblinCamp2", "category": "structure", "x": -1918.3, "z": -3072.8, "px": 1720.6, "py": 1523.6, "has_dungeon": true, "has_important": true}, {"id": 3111, "name": "GoblinCamp2", "category": "structure", "x": 5312.2, "z": -1921.8, "px": 2954.6, "py": 1720.0, "has_dungeon": true, "has_important": true}, {"id": 3112, "name": "GoblinCamp2", "category": "structure", "x": 3009.4, "z": -1473.1, "px": 2561.6, "py": 1796.6, "has_dungeon": true, "has_important": true}, {"id": 3113, "name": "GoblinCamp2", "category": "structure", "x": 1984.9, "z": 5057.2, "px": 2386.8, "py": 2911.1, "has_dungeon": true, "has_important": true}, {"id": 3114, "name": "GoblinCamp2", "category": "structure", "x": -4097.1, "z": -2687.0, "px": 1348.8, "py": 1589.4, "has_dungeon": true, "has_important": true}, {"id": 3115, "name": "GoblinCamp2", "category": "structure", "x": -5121.5, "z": -2880.5, "px": 1173.9, "py": 1556.4, "has_dungeon": true, "has_important": true}, {"id": 3116, "name": "GoblinCamp2", "category": "structure", "x": 1279.3, "z": 3262.7, "px": 2266.3, "py": 2604.8, "has_dungeon": true, "has_important": true}, {"id": 3117, "name": "GoblinCamp2", "category": "structure", "x": 320.4, "z": 4033.3, "px": 2102.7, "py": 2736.3, "has_dungeon": true, "has_important": true}, {"id": 3118, "name": "GoblinCamp2", "category": "structure", "x": 6975.6, "z": 2366.9, "px": 3238.5, "py": 2452.0, "has_dungeon": true, "has_important": true}, {"id": 3119, "name": "GoblinCamp2", "category": "structure", "x": 5374.1, "z": -2623.4, "px": 2965.2, "py": 1600.3, "has_dungeon": true, "has_important": true}, {"id": 3120, "name": "GoblinCamp2", "category": "structure", "x": 960.4, "z": -3967.4, "px": 2211.9, "py": 1370.9, "has_dungeon": true, "has_important": true}, {"id": 3121, "name": "GoblinCamp2", "category": "structure", "x": -2816.6, "z": -7168.1, "px": 1567.3, "py": 824.6, "has_dungeon": true, "has_important": true}, {"id": 3122, "name": "GoblinCamp2", "category": "structure", "x": 959.4, "z": 4609.2, "px": 2211.7, "py": 2834.6, "has_dungeon": true, "has_important": true}, {"id": 3123, "name": "GoblinCamp2", "category": "structure", "x": -4801.2, "z": 2239.1, "px": 1228.6, "py": 2430.1, "has_dungeon": true, "has_important": true}, {"id": 3124, "name": "GoblinCamp2", "category": "structure", "x": -3134.6, "z": -2367.8, "px": 1513.0, "py": 1643.9, "has_dungeon": true, "has_important": true}, {"id": 3125, "name": "GoblinCamp2", "category": "structure", "x": -1470.8, "z": -4353.3, "px": 1797.0, "py": 1305.0, "has_dungeon": true, "has_important": true}, {"id": 3126, "name": "GoblinCamp2", "category": "structure", "x": 7294.1, "z": 1022.7, "px": 3292.9, "py": 2222.5, "has_dungeon": true, "has_important": true}, {"id": 3127, "name": "GoblinCamp2", "category": "structure", "x": 5759.4, "z": -4737.0, "px": 3030.9, "py": 1239.6, "has_dungeon": true, "has_important": true}, {"id": 3128, "name": "GoblinCamp2", "category": "structure", "x": 2878.7, "z": 5118.9, "px": 2539.3, "py": 2921.6, "has_dungeon": true, "has_important": true}, {"id": 3129, "name": "GoblinCamp2", "category": "structure", "x": 2816.9, "z": -3392.4, "px": 2528.8, "py": 1469.0, "has_dungeon": true, "has_important": true}, {"id": 3130, "name": "GoblinCamp2", "category": "structure", "x": 7166.7, "z": 1791.3, "px": 3271.1, "py": 2353.7, "has_dungeon": true, "has_important": true}, {"id": 3131, "name": "GoblinCamp2", "category": "structure", "x": -4031.6, "z": 63.7, "px": 1359.9, "py": 2058.9, "has_dungeon": true, "has_important": true}, {"id": 3132, "name": "GoblinCamp2", "category": "structure", "x": 2369.7, "z": -2238.3, "px": 2452.4, "py": 1666.0, "has_dungeon": true, "has_important": true}, {"id": 3133, "name": "GoblinCamp2", "category": "structure", "x": 3840.8, "z": 4158.3, "px": 2703.5, "py": 2757.7, "has_dungeon": true, "has_important": true}, {"id": 3134, "name": "GoblinCamp2", "category": "structure", "x": 4606.7, "z": -1534.5, "px": 2834.2, "py": 1786.1, "has_dungeon": true, "has_important": true}, {"id": 3135, "name": "GoblinCamp2", "category": "structure", "x": 5634.0, "z": -2047.5, "px": 3009.5, "py": 1698.6, "has_dungeon": true, "has_important": true}, {"id": 3136, "name": "GoblinCamp2", "category": "structure", "x": -1728.2, "z": -4735.4, "px": 1753.1, "py": 1239.8, "has_dungeon": true, "has_important": true}, {"id": 3137, "name": "GoblinCamp2", "category": "structure", "x": 4862.4, "z": 5057.9, "px": 2877.8, "py": 2911.2, "has_dungeon": true, "has_important": true}, {"id": 3138, "name": "GoblinCamp2", "category": "structure", "x": 1151.3, "z": 3776.1, "px": 2244.5, "py": 2692.5, "has_dungeon": true, "has_important": true}, {"id": 3139, "name": "GoblinCamp2", "category": "structure", "x": 2879.9, "z": -3647.5, "px": 2539.5, "py": 1425.5, "has_dungeon": true, "has_important": true}, {"id": 3140, "name": "GoblinCamp2", "category": "structure", "x": -2879.7, "z": 831.4, "px": 1556.5, "py": 2189.9, "has_dungeon": true, "has_important": true}, {"id": 3141, "name": "GoblinCamp2", "category": "structure", "x": 1857.8, "z": 3713.0, "px": 2365.1, "py": 2681.7, "has_dungeon": true, "has_important": true}, {"id": 3142, "name": "GoblinCamp2", "category": "structure", "x": 3071.4, "z": 191.8, "px": 2572.2, "py": 2080.7, "has_dungeon": true, "has_important": true}, {"id": 3143, "name": "GoblinCamp2", "category": "structure", "x": 3969.5, "z": -639.1, "px": 2725.5, "py": 1938.9, "has_dungeon": true, "has_important": true}, {"id": 3144, "name": "GoblinCamp2", "category": "structure", "x": -4032.3, "z": 3582.0, "px": 1359.8, "py": 2659.3, "has_dungeon": true, "has_important": true}, {"id": 3145, "name": "GoblinCamp2", "category": "structure", "x": 7041.8, "z": 1088.1, "px": 3249.8, "py": 2233.7, "has_dungeon": true, "has_important": true}, {"id": 3146, "name": "GoblinCamp2", "category": "structure", "x": 2687.8, "z": 7167.6, "px": 2506.7, "py": 3271.3, "has_dungeon": true, "has_important": true}, {"id": 3147, "name": "GoblinCamp2", "category": "structure", "x": -7422.2, "z": -2176.9, "px": 781.3, "py": 1676.5, "has_dungeon": true, "has_important": true}, {"id": 3148, "name": "GoblinCamp2", "category": "structure", "x": 7166.5, "z": -958.4, "px": 3271.1, "py": 1884.4, "has_dungeon": true, "has_important": true}, {"id": 3149, "name": "GoblinCamp2", "category": "structure", "x": -2048.1, "z": -5311.5, "px": 1698.5, "py": 1141.5, "has_dungeon": true, "has_important": true}, {"id": 3150, "name": "GoblinCamp2", "category": "structure", "x": 4160.5, "z": 1473.5, "px": 2758.1, "py": 2299.5, "has_dungeon": true, "has_important": true}, {"id": 3151, "name": "GoblinCamp2", "category": "structure", "x": 4926.9, "z": -1279.3, "px": 2888.9, "py": 1829.7, "has_dungeon": true, "has_important": true}, {"id": 3152, "name": "GoblinCamp2", "category": "structure", "x": -2494.3, "z": -1790.4, "px": 1622.3, "py": 1742.4, "has_dungeon": true, "has_important": true}, {"id": 3153, "name": "GoblinCamp2", "category": "structure", "x": -4353.2, "z": 1984.7, "px": 1305.1, "py": 2386.7, "has_dungeon": true, "has_important": true}, {"id": 3154, "name": "GoblinCamp2", "category": "structure", "x": -961.8, "z": 4159.9, "px": 1883.9, "py": 2758.0, "has_dungeon": true, "has_important": true}, {"id": 3155, "name": "GoblinCamp2", "category": "structure", "x": -62.3, "z": -5185.2, "px": 2037.4, "py": 1163.1, "has_dungeon": true, "has_important": true}, {"id": 3156, "name": "GoblinCamp2", "category": "structure", "x": 5568.9, "z": -1793.4, "px": 2998.4, "py": 1741.9, "has_dungeon": true, "has_important": true}, {"id": 3157, "name": "GoblinCamp2", "category": "structure", "x": 4158.4, "z": 1086.2, "px": 2757.7, "py": 2233.4, "has_dungeon": true, "has_important": true}, {"id": 3158, "name": "GoblinCamp2", "category": "structure", "x": 3327.5, "z": -1665.3, "px": 2615.9, "py": 1763.8, "has_dungeon": true, "has_important": true}, {"id": 3159, "name": "GoblinCamp2", "category": "structure", "x": -2239.2, "z": -1919.6, "px": 1665.8, "py": 1720.4, "has_dungeon": true, "has_important": true}, {"id": 3160, "name": "GoblinCamp2", "category": "structure", "x": -4481.0, "z": -5823.9, "px": 1283.2, "py": 1054.1, "has_dungeon": true, "has_important": true}, {"id": 3161, "name": "GoblinCamp2", "category": "structure", "x": -3649.1, "z": 3839.6, "px": 1425.2, "py": 2703.3, "has_dungeon": true, "has_important": true}, {"id": 3162, "name": "GoblinCamp2", "category": "structure", "x": 2944.5, "z": 4287.1, "px": 2550.5, "py": 2779.7, "has_dungeon": true, "has_important": true}, {"id": 3163, "name": "GoblinCamp2", "category": "structure", "x": 4927.2, "z": 3326.8, "px": 2888.9, "py": 2615.8, "has_dungeon": true, "has_important": true}, {"id": 3164, "name": "GoblinCamp2", "category": "structure", "x": 2370.0, "z": -5121.3, "px": 2452.5, "py": 1174.0, "has_dungeon": true, "has_important": true}, {"id": 3165, "name": "GoblinCamp2", "category": "structure", "x": -2496.7, "z": 3073.0, "px": 1621.9, "py": 2572.5, "has_dungeon": true, "has_important": true}, {"id": 3166, "name": "GoblinCamp2", "category": "structure", "x": -2368.6, "z": 4031.0, "px": 1643.8, "py": 2736.0, "has_dungeon": true, "has_important": true}, {"id": 3167, "name": "GoblinCamp2", "category": "structure", "x": 2814.4, "z": 1151.4, "px": 2528.3, "py": 2244.5, "has_dungeon": true, "has_important": true}, {"id": 3168, "name": "GoblinCamp2", "category": "structure", "x": 3712.5, "z": -448.2, "px": 2681.6, "py": 1971.5, "has_dungeon": true, "has_important": true}, {"id": 3169, "name": "GoblinCamp2", "category": "structure", "x": 4735.7, "z": 3071.3, "px": 2856.2, "py": 2572.2, "has_dungeon": true, "has_important": true}, {"id": 3170, "name": "GoblinCamp2", "category": "structure", "x": 4735.2, "z": -2366.2, "px": 2856.1, "py": 1644.2, "has_dungeon": true, "has_important": true}, {"id": 3171, "name": "GoblinCamp2", "category": "structure", "x": -1023.3, "z": -6271.8, "px": 1873.4, "py": 977.6, "has_dungeon": true, "has_important": true}, {"id": 3172, "name": "GoblinCamp2", "category": "structure", "x": 4609.7, "z": 1406.2, "px": 2834.7, "py": 2288.0, "has_dungeon": true, "has_important": true}, {"id": 3173, "name": "GoblinCamp2", "category": "structure", "x": 4096.5, "z": 4351.2, "px": 2747.1, "py": 2790.6, "has_dungeon": true, "has_important": true}, {"id": 3174, "name": "GoblinCamp2", "category": "structure", "x": -1601.6, "z": -3134.8, "px": 1774.7, "py": 1513.0, "has_dungeon": true, "has_important": true}, {"id": 3175, "name": "GoblinCamp2", "category": "structure", "x": -5185.1, "z": -2624.5, "px": 1163.1, "py": 1600.1, "has_dungeon": true, "has_important": true}, {"id": 3176, "name": "GoblinCamp2", "category": "structure", "x": 318.1, "z": 5502.9, "px": 2102.3, "py": 2987.2, "has_dungeon": true, "has_important": true}, {"id": 3177, "name": "GoblinCamp2", "category": "structure", "x": 6784.1, "z": 2881.4, "px": 3205.8, "py": 2539.8, "has_dungeon": true, "has_important": true}, {"id": 3178, "name": "GoblinCamp2", "category": "structure", "x": 4673.3, "z": 2751.8, "px": 2845.6, "py": 2517.6, "has_dungeon": true, "has_important": true}, {"id": 3179, "name": "GoblinCamp2", "category": "structure", "x": -385.1, "z": -3713.6, "px": 1982.3, "py": 1414.2, "has_dungeon": true, "has_important": true}, {"id": 3180, "name": "GoblinCamp2", "category": "structure", "x": 2113.9, "z": -2497.2, "px": 2408.8, "py": 1621.8, "has_dungeon": true, "has_important": true}, {"id": 3181, "name": "GoblinCamp2", "category": "structure", "x": 2110.8, "z": 6080.7, "px": 2408.2, "py": 3085.8, "has_dungeon": true, "has_important": true}, {"id": 3182, "name": "GoblinCamp2", "category": "structure", "x": 5184.7, "z": 4800.3, "px": 2932.9, "py": 2867.3, "has_dungeon": true, "has_important": true}, {"id": 3183, "name": "GoblinCamp2", "category": "structure", "x": 7424.0, "z": -831.4, "px": 3315.0, "py": 1906.1, "has_dungeon": true, "has_important": true}, {"id": 3184, "name": "GoblinCamp2", "category": "structure", "x": -961.6, "z": 5057.4, "px": 1883.9, "py": 2911.1, "has_dungeon": true, "has_important": true}, {"id": 3185, "name": "GoblinCamp2", "category": "structure", "x": 3839.5, "z": 4673.0, "px": 2703.3, "py": 2845.5, "has_dungeon": true, "has_important": true}, {"id": 3186, "name": "GoblinCamp2", "category": "structure", "x": 4673.3, "z": -1086.3, "px": 2845.6, "py": 1862.6, "has_dungeon": true, "has_important": true}, {"id": 3187, "name": "GoblinCamp2", "category": "structure", "x": -2942.1, "z": -2560.2, "px": 1545.9, "py": 1611.1, "has_dungeon": true, "has_important": true}, {"id": 3188, "name": "GoblinCamp2", "category": "structure", "x": -5502.5, "z": 5377.2, "px": 1108.9, "py": 2965.7, "has_dungeon": true, "has_important": true}, {"id": 3189, "name": "GoblinCamp2", "category": "structure", "x": 2622.6, "z": -7361.3, "px": 2495.6, "py": 791.7, "has_dungeon": true, "has_important": true}, {"id": 3190, "name": "GoblinCamp2", "category": "structure", "x": -1854.6, "z": 3328.0, "px": 1731.5, "py": 2616.0, "has_dungeon": true, "has_important": true}, {"id": 3191, "name": "GoblinCamp2", "category": "structure", "x": 6016.2, "z": 1601.9, "px": 3074.8, "py": 2321.4, "has_dungeon": true, "has_important": true}, {"id": 3192, "name": "GoblinCamp2", "category": "structure", "x": 1664.9, "z": 7424.3, "px": 2332.1, "py": 3315.1, "has_dungeon": true, "has_important": true}, {"id": 3193, "name": "GoblinCamp2", "category": "structure", "x": 1982.3, "z": -3329.8, "px": 2386.3, "py": 1479.7, "has_dungeon": true, "has_important": true}, {"id": 3194, "name": "GoblinCamp2", "category": "structure", "x": -3327.1, "z": -1663.5, "px": 1480.2, "py": 1764.1, "has_dungeon": true, "has_important": true}, {"id": 3195, "name": "GoblinCamp2", "category": "structure", "x": -4928.4, "z": -1985.0, "px": 1206.9, "py": 1709.2, "has_dungeon": true, "has_important": true}, {"id": 3196, "name": "GoblinCamp2", "category": "structure", "x": -961.5, "z": -5887.6, "px": 1883.9, "py": 1043.2, "has_dungeon": true, "has_important": true}, {"id": 3197, "name": "GoblinCamp2", "category": "structure", "x": 3198.6, "z": 4350.7, "px": 2593.9, "py": 2790.5, "has_dungeon": true, "has_important": true}, {"id": 3198, "name": "GoblinCamp2", "category": "structure", "x": -3904.8, "z": 3006.7, "px": 1381.6, "py": 2561.1, "has_dungeon": true, "has_important": true}, {"id": 3199, "name": "GoblinCamp2", "category": "structure", "x": -3646.6, "z": 3583.7, "px": 1425.6, "py": 2659.6, "has_dungeon": true, "has_important": true}, {"id": 3200, "name": "GoblinCamp2", "category": "structure", "x": 513.9, "z": -7296.5, "px": 2135.7, "py": 802.7, "has_dungeon": true, "has_important": true}, {"id": 3201, "name": "GoblinCamp2", "category": "structure", "x": -1280.2, "z": -6655.9, "px": 1829.5, "py": 912.1, "has_dungeon": true, "has_important": true}, {"id": 3202, "name": "GoblinCamp2", "category": "structure", "x": 2688.2, "z": -5121.5, "px": 2506.8, "py": 1173.9, "has_dungeon": true, "has_important": true}, {"id": 3203, "name": "GoblinCamp2", "category": "structure", "x": 3519.8, "z": 3262.7, "px": 2648.7, "py": 2604.8, "has_dungeon": true, "has_important": true}, {"id": 3204, "name": "GoblinCamp2", "category": "structure", "x": -4416.6, "z": 6334.7, "px": 1294.2, "py": 3129.1, "has_dungeon": true, "has_important": true}, {"id": 3205, "name": "GoblinCamp2", "category": "structure", "x": -2495.7, "z": -3007.5, "px": 1622.1, "py": 1534.7, "has_dungeon": true, "has_important": true}, {"id": 3206, "name": "GoblinCamp2", "category": "structure", "x": -3649.1, "z": -1920.6, "px": 1425.2, "py": 1720.2, "has_dungeon": true, "has_important": true}, {"id": 3207, "name": "GoblinCamp2", "category": "structure", "x": -4928.9, "z": -2688.9, "px": 1206.8, "py": 1589.1, "has_dungeon": true, "has_important": true}, {"id": 3208, "name": "GoblinCamp2", "category": "structure", "x": 1983.3, "z": 4098.0, "px": 2386.5, "py": 2747.4, "has_dungeon": true, "has_important": true}, {"id": 3209, "name": "GoblinCamp2", "category": "structure", "x": -5184.6, "z": -1921.3, "px": 1163.2, "py": 1720.1, "has_dungeon": true, "has_important": true}, {"id": 3210, "name": "GoblinCamp2", "category": "structure", "x": -3584.7, "z": 7105.2, "px": 1436.2, "py": 3260.6, "has_dungeon": true, "has_important": true}, {"id": 3211, "name": "GoblinCamp2", "category": "structure", "x": 2048.1, "z": 4415.5, "px": 2397.5, "py": 2801.6, "has_dungeon": true, "has_important": true}, {"id": 3212, "name": "GoblinCamp2", "category": "structure", "x": -896.0, "z": -4032.1, "px": 1895.1, "py": 1359.9, "has_dungeon": true, "has_important": true}, {"id": 3213, "name": "GoblinCamp2", "category": "structure", "x": -6656.3, "z": -3646.2, "px": 912.0, "py": 1425.7, "has_dungeon": true, "has_important": true}, {"id": 3214, "name": "GoblinCamp2", "category": "structure", "x": -3134.9, "z": 7103.2, "px": 1513.0, "py": 3260.3, "has_dungeon": true, "has_important": true}, {"id": 3215, "name": "GoblinCamp2", "category": "structure", "x": -3198.4, "z": 4030.7, "px": 1502.1, "py": 2735.9, "has_dungeon": true, "has_important": true}, {"id": 3216, "name": "GoblinCamp2", "category": "structure", "x": 3072.9, "z": -63.5, "px": 2572.4, "py": 2037.2, "has_dungeon": true, "has_important": true}, {"id": 3217, "name": "GoblinCamp2", "category": "structure", "x": -5502.3, "z": 641.6, "px": 1108.9, "py": 2157.5, "has_dungeon": true, "has_important": true}, {"id": 3218, "name": "GoblinCamp2", "category": "structure", "x": 6273.8, "z": 1535.8, "px": 3118.7, "py": 2310.1, "has_dungeon": true, "has_important": true}, {"id": 3219, "name": "GoblinCamp2", "category": "structure", "x": -2942.9, "z": 4096.3, "px": 1545.7, "py": 2747.1, "has_dungeon": true, "has_important": true}, {"id": 3220, "name": "GoblinCamp2", "category": "structure", "x": -2750.4, "z": -3711.7, "px": 1578.6, "py": 1414.5, "has_dungeon": true, "has_important": true}, {"id": 3221, "name": "GoblinCamp2", "category": "structure", "x": 7105.1, "z": 2113.2, "px": 3260.6, "py": 2408.7, "has_dungeon": true, "has_important": true}, {"id": 3222, "name": "GoblinCamp2", "category": "structure", "x": 896.5, "z": 3584.0, "px": 2201.0, "py": 2659.7, "has_dungeon": true, "has_important": true}, {"id": 3223, "name": "GoblinCamp2", "category": "structure", "x": -5888.9, "z": 961.8, "px": 1043.0, "py": 2212.1, "has_dungeon": true, "has_important": true}, {"id": 3224, "name": "GoblinCamp2", "category": "structure", "x": -5823.9, "z": 4351.9, "px": 1054.1, "py": 2790.7, "has_dungeon": true, "has_important": true}, {"id": 3225, "name": "GoblinCamp2", "category": "structure", "x": 2945.0, "z": -5056.6, "px": 2550.6, "py": 1185.0, "has_dungeon": true, "has_important": true}, {"id": 3226, "name": "GoblinCamp2", "category": "structure", "x": 1342.7, "z": 5057.3, "px": 2277.2, "py": 2911.1, "has_dungeon": true, "has_important": true}, {"id": 3227, "name": "GoblinCamp2", "category": "structure", "x": 769.6, "z": 4094.1, "px": 2179.3, "py": 2746.7, "has_dungeon": true, "has_important": true}, {"id": 3228, "name": "GoblinCamp2", "category": "structure", "x": 3969.0, "z": 895.5, "px": 2725.4, "py": 2200.8, "has_dungeon": true, "has_important": true}, {"id": 3229, "name": "GoblinCamp2", "category": "structure", "x": -5441.0, "z": 383.3, "px": 1119.4, "py": 2113.4, "has_dungeon": true, "has_important": true}, {"id": 3230, "name": "GoblinCamp2", "category": "structure", "x": -4993.4, "z": 3007.5, "px": 1195.8, "py": 2561.3, "has_dungeon": true, "has_important": true}, {"id": 3231, "name": "GoblinCamp2", "category": "structure", "x": 4735.4, "z": -2944.6, "px": 2856.2, "py": 1545.5, "has_dungeon": true, "has_important": true}, {"id": 3232, "name": "GoblinCamp2", "category": "structure", "x": -4610.0, "z": -575.2, "px": 1261.2, "py": 1949.8, "has_dungeon": true, "has_important": true}, {"id": 3233, "name": "GoblinCamp2", "category": "structure", "x": 3134.9, "z": -2943.1, "px": 2583.0, "py": 1545.7, "has_dungeon": true, "has_important": true}, {"id": 3234, "name": "GoblinCamp2", "category": "structure", "x": 4031.6, "z": 5118.5, "px": 2736.1, "py": 2921.6, "has_dungeon": true, "has_important": true}, {"id": 1333, "name": "Greydwarf_camp1", "category": "structure", "x": 365.2, "z": 634.1, "px": 2110.3, "py": 2156.2, "has_dungeon": false, "has_important": true}, {"id": 1334, "name": "Greydwarf_camp1", "category": "structure", "x": 569.0, "z": 5140.4, "px": 2145.1, "py": 2925.3, "has_dungeon": false, "has_important": true}, {"id": 1335, "name": "Greydwarf_camp1", "category": "structure", "x": 6841.5, "z": 4815.3, "px": 3215.6, "py": 2869.8, "has_dungeon": false, "has_important": true}, {"id": 1336, "name": "Greydwarf_camp1", "category": "structure", "x": -134.9, "z": -940.2, "px": 2025.0, "py": 1887.5, "has_dungeon": false, "has_important": true}, {"id": 1337, "name": "Greydwarf_camp1", "category": "structure", "x": 9714.2, "z": 1286.0, "px": 3705.9, "py": 2267.5, "has_dungeon": false, "has_important": true}, {"id": 1338, "name": "Greydwarf_camp1", "category": "structure", "x": 3925.0, "z": 3964.1, "px": 2717.9, "py": 2724.5, "has_dungeon": false, "has_important": true}, {"id": 1339, "name": "Greydwarf_camp1", "category": "structure", "x": 1662.4, "z": -4525.8, "px": 2331.7, "py": 1275.6, "has_dungeon": false, "has_important": true}, {"id": 1340, "name": "Greydwarf_camp1", "category": "structure", "x": -1783.2, "z": 4820.5, "px": 1743.7, "py": 2870.7, "has_dungeon": false, "has_important": true}, {"id": 1341, "name": "Greydwarf_camp1", "category": "structure", "x": -3213.5, "z": 4371.8, "px": 1499.6, "py": 2794.1, "has_dungeon": false, "has_important": true}, {"id": 1342, "name": "Greydwarf_camp1", "category": "structure", "x": 2026.8, "z": -4484.0, "px": 2393.9, "py": 1282.7, "has_dungeon": false, "has_important": true}, {"id": 1343, "name": "Greydwarf_camp1", "category": "structure", "x": -1806.5, "z": -4273.7, "px": 1739.7, "py": 1318.6, "has_dungeon": false, "has_important": true}, {"id": 1344, "name": "Greydwarf_camp1", "category": "structure", "x": 1805.6, "z": 6384.0, "px": 2356.2, "py": 3137.5, "has_dungeon": false, "has_important": true}, {"id": 1345, "name": "Greydwarf_camp1", "category": "structure", "x": 5201.2, "z": 517.4, "px": 2935.7, "py": 2136.3, "has_dungeon": false, "has_important": true}, {"id": 1346, "name": "Greydwarf_camp1", "category": "structure", "x": 7112.4, "z": -4400.2, "px": 3261.8, "py": 1297.0, "has_dungeon": false, "has_important": true}, {"id": 1347, "name": "Greydwarf_camp1", "category": "structure", "x": 2882.8, "z": -4433.1, "px": 2540.0, "py": 1291.4, "has_dungeon": false, "has_important": true}, {"id": 1348, "name": "Greydwarf_camp1", "category": "structure", "x": -5967.1, "z": 4624.7, "px": 1029.6, "py": 2837.3, "has_dungeon": false, "has_important": true}, {"id": 1349, "name": "Greydwarf_camp1", "category": "structure", "x": -9650.5, "z": -178.5, "px": 401.0, "py": 2017.5, "has_dungeon": false, "has_important": true}, {"id": 1350, "name": "Greydwarf_camp1", "category": "structure", "x": 2185.8, "z": 3694.5, "px": 2421.0, "py": 2678.5, "has_dungeon": false, "has_important": true}, {"id": 1351, "name": "Greydwarf_camp1", "category": "structure", "x": -4692.4, "z": 5803.8, "px": 1247.2, "py": 3038.5, "has_dungeon": false, "has_important": true}, {"id": 1352, "name": "Greydwarf_camp1", "category": "structure", "x": -8942.1, "z": 3201.2, "px": 521.9, "py": 2594.3, "has_dungeon": false, "has_important": true}, {"id": 1353, "name": "Greydwarf_camp1", "category": "structure", "x": 560.7, "z": 555.8, "px": 2143.7, "py": 2142.9, "has_dungeon": false, "has_important": true}, {"id": 1354, "name": "Greydwarf_camp1", "category": "structure", "x": 6801.8, "z": 4670.7, "px": 3208.8, "py": 2845.1, "has_dungeon": false, "has_important": true}, {"id": 1355, "name": "Greydwarf_camp1", "category": "structure", "x": 1849.6, "z": -6282.1, "px": 2363.7, "py": 975.9, "has_dungeon": false, "has_important": true}, {"id": 1356, "name": "Greydwarf_camp1", "category": "structure", "x": 1876.7, "z": -961.0, "px": 2368.3, "py": 1884.0, "has_dungeon": false, "has_important": true}, {"id": 1357, "name": "Greydwarf_camp1", "category": "structure", "x": -7023.3, "z": 2561.0, "px": 849.4, "py": 2485.1, "has_dungeon": false, "has_important": true}, {"id": 1358, "name": "Greydwarf_camp1", "category": "structure", "x": -7573.3, "z": -4781.9, "px": 755.5, "py": 1231.9, "has_dungeon": false, "has_important": true}, {"id": 1359, "name": "Greydwarf_camp1", "category": "structure", "x": 1846.8, "z": -4528.2, "px": 2363.2, "py": 1275.2, "has_dungeon": false, "has_important": true}, {"id": 1360, "name": "Greydwarf_camp1", "category": "structure", "x": -11.9, "z": -4664.6, "px": 2046.0, "py": 1251.9, "has_dungeon": false, "has_important": true}, {"id": 1361, "name": "Greydwarf_camp1", "category": "structure", "x": -3438.0, "z": 6785.1, "px": 1461.2, "py": 3206.0, "has_dungeon": false, "has_important": true}, {"id": 1362, "name": "Greydwarf_camp1", "category": "structure", "x": -3956.4, "z": -136.8, "px": 1372.8, "py": 2024.7, "has_dungeon": false, "has_important": true}, {"id": 1363, "name": "Greydwarf_camp1", "category": "structure", "x": -5616.2, "z": 4867.1, "px": 1089.5, "py": 2878.7, "has_dungeon": false, "has_important": true}, {"id": 1364, "name": "Greydwarf_camp1", "category": "structure", "x": -4915.8, "z": 5588.7, "px": 1209.0, "py": 3001.8, "has_dungeon": false, "has_important": true}, {"id": 1365, "name": "Greydwarf_camp1", "category": "structure", "x": -1903.7, "z": -4417.8, "px": 1723.1, "py": 1294.0, "has_dungeon": false, "has_important": true}, {"id": 1366, "name": "Greydwarf_camp1", "category": "structure", "x": 1157.9, "z": -5507.6, "px": 2245.6, "py": 1108.0, "has_dungeon": false, "has_important": true}, {"id": 1367, "name": "Greydwarf_camp1", "category": "structure", "x": 2028.1, "z": -952.9, "px": 2394.1, "py": 1885.4, "has_dungeon": false, "has_important": true}, {"id": 1368, "name": "Greydwarf_camp1", "category": "structure", "x": 1718.1, "z": -1226.3, "px": 2341.2, "py": 1838.7, "has_dungeon": false, "has_important": true}, {"id": 1369, "name": "Greydwarf_camp1", "category": "structure", "x": -275.5, "z": -4535.6, "px": 2001.0, "py": 1273.9, "has_dungeon": false, "has_important": true}, {"id": 1370, "name": "Greydwarf_camp1", "category": "structure", "x": -9323.8, "z": -2741.9, "px": 456.7, "py": 1580.0, "has_dungeon": false, "has_important": true}, {"id": 1371, "name": "Greydwarf_camp1", "category": "structure", "x": 2041.9, "z": 1325.9, "px": 2396.5, "py": 2274.3, "has_dungeon": false, "has_important": true}, {"id": 1372, "name": "Greydwarf_camp1", "category": "structure", "x": -7632.7, "z": -1807.7, "px": 745.4, "py": 1739.5, "has_dungeon": false, "has_important": true}, {"id": 1373, "name": "Greydwarf_camp1", "category": "structure", "x": -7367.7, "z": -1924.8, "px": 790.6, "py": 1719.5, "has_dungeon": false, "has_important": true}, {"id": 1374, "name": "Greydwarf_camp1", "category": "structure", "x": -9328.9, "z": 3153.5, "px": 455.9, "py": 2586.2, "has_dungeon": false, "has_important": true}, {"id": 1375, "name": "Greydwarf_camp1", "category": "structure", "x": 8705.7, "z": -3775.0, "px": 3533.8, "py": 1403.7, "has_dungeon": false, "has_important": true}, {"id": 1376, "name": "Greydwarf_camp1", "category": "structure", "x": 2617.0, "z": -3562.3, "px": 2494.6, "py": 1440.0, "has_dungeon": false, "has_important": true}, {"id": 1377, "name": "Greydwarf_camp1", "category": "structure", "x": -3984.9, "z": -276.5, "px": 1367.9, "py": 2000.8, "has_dungeon": false, "has_important": true}, {"id": 1378, "name": "Greydwarf_camp1", "category": "structure", "x": -4975.5, "z": 5745.1, "px": 1198.8, "py": 3028.5, "has_dungeon": false, "has_important": true}, {"id": 1379, "name": "Greydwarf_camp1", "category": "structure", "x": 7342.4, "z": -4138.3, "px": 3301.1, "py": 1341.7, "has_dungeon": false, "has_important": true}, {"id": 1380, "name": "Greydwarf_camp1", "category": "structure", "x": 8018.7, "z": -2493.5, "px": 3416.5, "py": 1622.4, "has_dungeon": false, "has_important": true}, {"id": 1381, "name": "Greydwarf_camp1", "category": "structure", "x": 883.6, "z": 5309.4, "px": 2198.8, "py": 2954.1, "has_dungeon": false, "has_important": true}, {"id": 1382, "name": "Greydwarf_camp1", "category": "structure", "x": 2602.1, "z": -4605.8, "px": 2492.1, "py": 1261.9, "has_dungeon": false, "has_important": true}, {"id": 1383, "name": "Greydwarf_camp1", "category": "structure", "x": 686.9, "z": 5233.9, "px": 2165.2, "py": 2941.3, "has_dungeon": false, "has_important": true}, {"id": 1384, "name": "Greydwarf_camp1", "category": "structure", "x": 2114.2, "z": 977.9, "px": 2408.8, "py": 2214.9, "has_dungeon": false, "has_important": true}, {"id": 1385, "name": "Greydwarf_camp1", "category": "structure", "x": -9264.2, "z": 2814.8, "px": 466.9, "py": 2528.4, "has_dungeon": false, "has_important": true}, {"id": 1386, "name": "Greydwarf_camp1", "category": "structure", "x": -5614.7, "z": 4997.8, "px": 1089.8, "py": 2901.0, "has_dungeon": false, "has_important": true}, {"id": 1387, "name": "Greydwarf_camp1", "category": "structure", "x": 7275.6, "z": -4343.3, "px": 3289.7, "py": 1306.7, "has_dungeon": false, "has_important": true}, {"id": 1388, "name": "Greydwarf_camp1", "category": "structure", "x": 3907.6, "z": -385.0, "px": 2714.9, "py": 1982.3, "has_dungeon": false, "has_important": true}, {"id": 1389, "name": "Greydwarf_camp1", "category": "structure", "x": 2039.9, "z": 1149.4, "px": 2396.1, "py": 2244.2, "has_dungeon": false, "has_important": true}, {"id": 1390, "name": "Greydwarf_camp1", "category": "structure", "x": 8849.9, "z": 58.4, "px": 3558.4, "py": 2058.0, "has_dungeon": false, "has_important": true}, {"id": 1391, "name": "Greydwarf_camp1", "category": "structure", "x": 2233.5, "z": -447.1, "px": 2429.2, "py": 1971.7, "has_dungeon": false, "has_important": true}, {"id": 1392, "name": "Greydwarf_camp1", "category": "structure", "x": -7658.6, "z": 4309.6, "px": 740.9, "py": 2783.5, "has_dungeon": false, "has_important": true}, {"id": 1393, "name": "Greydwarf_camp1", "category": "structure", "x": 3860.2, "z": 1084.1, "px": 2706.8, "py": 2233.0, "has_dungeon": false, "has_important": true}, {"id": 1394, "name": "Greydwarf_camp1", "category": "structure", "x": -9098.3, "z": 2747.8, "px": 495.2, "py": 2517.0, "has_dungeon": false, "has_important": true}, {"id": 1395, "name": "Greydwarf_camp1", "category": "structure", "x": 2305.9, "z": 3893.4, "px": 2441.5, "py": 2712.5, "has_dungeon": false, "has_important": true}, {"id": 1396, "name": "Greydwarf_camp1", "category": "structure", "x": 813.2, "z": -2747.3, "px": 2186.8, "py": 1579.1, "has_dungeon": false, "has_important": true}, {"id": 1397, "name": "Greydwarf_camp1", "category": "structure", "x": -8782.1, "z": -894.3, "px": 549.2, "py": 1895.4, "has_dungeon": false, "has_important": true}, {"id": 1398, "name": "Greydwarf_camp1", "category": "structure", "x": 947.5, "z": -5615.4, "px": 2209.7, "py": 1089.6, "has_dungeon": false, "has_important": true}, {"id": 1399, "name": "Greydwarf_camp1", "category": "structure", "x": 5834.6, "z": -787.6, "px": 3043.8, "py": 1913.6, "has_dungeon": false, "has_important": true}, {"id": 1400, "name": "Greydwarf_camp1", "category": "structure", "x": -4166.7, "z": -6208.5, "px": 1336.9, "py": 988.4, "has_dungeon": false, "has_important": true}, {"id": 1401, "name": "Greydwarf_camp1", "category": "structure", "x": 5231.0, "z": 5237.7, "px": 2940.8, "py": 2941.9, "has_dungeon": false, "has_important": true}, {"id": 1402, "name": "Greydwarf_camp1", "category": "structure", "x": 122.5, "z": -4617.7, "px": 2068.9, "py": 1259.9, "has_dungeon": false, "has_important": true}, {"id": 1403, "name": "Greydwarf_camp1", "category": "structure", "x": 717.7, "z": -2308.8, "px": 2170.5, "py": 1654.0, "has_dungeon": false, "has_important": true}, {"id": 1404, "name": "Greydwarf_camp1", "category": "structure", "x": 7885.9, "z": -2703.3, "px": 3393.9, "py": 1586.6, "has_dungeon": false, "has_important": true}, {"id": 1405, "name": "Greydwarf_camp1", "category": "structure", "x": 3629.8, "z": 3600.8, "px": 2667.5, "py": 2662.5, "has_dungeon": false, "has_important": true}, {"id": 1406, "name": "Greydwarf_camp1", "category": "structure", "x": -1222.3, "z": -5451.6, "px": 1839.4, "py": 1117.6, "has_dungeon": false, "has_important": true}, {"id": 1407, "name": "Greydwarf_camp1", "category": "structure", "x": -5905.7, "z": 1610.2, "px": 1040.1, "py": 2322.8, "has_dungeon": false, "has_important": true}, {"id": 1408, "name": "Greydwarf_camp1", "category": "structure", "x": 8331.6, "z": 1650.1, "px": 3469.9, "py": 2329.6, "has_dungeon": false, "has_important": true}, {"id": 1409, "name": "Greydwarf_camp1", "category": "structure", "x": 6843.4, "z": -3962.4, "px": 3215.9, "py": 1371.8, "has_dungeon": false, "has_important": true}, {"id": 1410, "name": "Greydwarf_camp1", "category": "structure", "x": 8324.5, "z": 451.0, "px": 3468.7, "py": 2125.0, "has_dungeon": false, "has_important": true}, {"id": 1411, "name": "Greydwarf_camp1", "category": "structure", "x": 785.5, "z": -67.2, "px": 2182.1, "py": 2036.5, "has_dungeon": false, "has_important": true}, {"id": 1412, "name": "Greydwarf_camp1", "category": "structure", "x": 5935.5, "z": -629.4, "px": 3061.0, "py": 1940.6, "has_dungeon": false, "has_important": true}, {"id": 1413, "name": "Greydwarf_camp1", "category": "structure", "x": 2027.9, "z": -277.2, "px": 2394.1, "py": 2000.7, "has_dungeon": false, "has_important": true}, {"id": 1414, "name": "Greydwarf_camp1", "category": "structure", "x": -171.0, "z": -4625.8, "px": 2018.8, "py": 1258.5, "has_dungeon": false, "has_important": true}, {"id": 1415, "name": "Greydwarf_camp1", "category": "structure", "x": 3718.7, "z": 3910.9, "px": 2682.7, "py": 2715.5, "has_dungeon": false, "has_important": true}, {"id": 1416, "name": "Greydwarf_camp1", "category": "structure", "x": -5183.8, "z": -1546.3, "px": 1163.3, "py": 1784.1, "has_dungeon": false, "has_important": true}, {"id": 1417, "name": "Greydwarf_camp1", "category": "structure", "x": -6252.5, "z": 2306.4, "px": 980.9, "py": 2441.6, "has_dungeon": false, "has_important": true}, {"id": 1418, "name": "Greydwarf_camp1", "category": "structure", "x": -9216.2, "z": 3335.6, "px": 475.1, "py": 2617.3, "has_dungeon": false, "has_important": true}, {"id": 1419, "name": "Greydwarf_camp1", "category": "structure", "x": 8142.8, "z": -2373.3, "px": 3437.7, "py": 1643.0, "has_dungeon": false, "has_important": true}, {"id": 1420, "name": "Greydwarf_camp1", "category": "structure", "x": -9081.7, "z": 3502.1, "px": 498.1, "py": 2645.7, "has_dungeon": false, "has_important": true}, {"id": 1421, "name": "Greydwarf_camp1", "category": "structure", "x": -1289.1, "z": -1667.8, "px": 1828.0, "py": 1763.4, "has_dungeon": false, "has_important": true}, {"id": 1422, "name": "Greydwarf_camp1", "category": "structure", "x": 8527.3, "z": -2091.6, "px": 3503.3, "py": 1691.0, "has_dungeon": false, "has_important": true}, {"id": 1423, "name": "Greydwarf_camp1", "category": "structure", "x": 1581.1, "z": -7660.7, "px": 2317.8, "py": 740.6, "has_dungeon": false, "has_important": true}, {"id": 1424, "name": "Greydwarf_camp1", "category": "structure", "x": -9803.6, "z": 701.1, "px": 374.9, "py": 2167.7, "has_dungeon": false, "has_important": true}, {"id": 1425, "name": "Greydwarf_camp1", "category": "structure", "x": 2295.9, "z": 5140.1, "px": 2439.8, "py": 2925.2, "has_dungeon": false, "has_important": true}, {"id": 1426, "name": "Greydwarf_camp1", "category": "structure", "x": 5684.7, "z": -910.2, "px": 3018.2, "py": 1892.7, "has_dungeon": false, "has_important": true}, {"id": 1427, "name": "Greydwarf_camp1", "category": "structure", "x": 3312.9, "z": -2812.3, "px": 2613.4, "py": 1568.0, "has_dungeon": false, "has_important": true}, {"id": 1428, "name": "Greydwarf_camp1", "category": "structure", "x": 8063.7, "z": -74.1, "px": 3424.2, "py": 2035.4, "has_dungeon": false, "has_important": true}, {"id": 1429, "name": "Greydwarf_camp1", "category": "structure", "x": 827.4, "z": 5111.0, "px": 2189.2, "py": 2920.3, "has_dungeon": false, "has_important": true}, {"id": 1430, "name": "Greydwarf_camp1", "category": "structure", "x": 852.7, "z": 5448.6, "px": 2193.5, "py": 2977.9, "has_dungeon": false, "has_important": true}, {"id": 1431, "name": "Greydwarf_camp1", "category": "structure", "x": -2154.8, "z": -2925.3, "px": 1680.2, "py": 1548.7, "has_dungeon": false, "has_important": true}, {"id": 1432, "name": "Greydwarf_camp1", "category": "structure", "x": 4491.4, "z": 6732.3, "px": 2814.5, "py": 3197.0, "has_dungeon": false, "has_important": true}, {"id": 1433, "name": "Greydwarf_camp1", "category": "structure", "x": 9857.9, "z": 1271.2, "px": 3730.4, "py": 2265.0, "has_dungeon": false, "has_important": true}, {"id": 1434, "name": "Greydwarf_camp1", "category": "structure", "x": -1276.9, "z": -1204.9, "px": 1830.1, "py": 1842.4, "has_dungeon": false, "has_important": true}, {"id": 1435, "name": "Greydwarf_camp1", "category": "structure", "x": 7745.5, "z": -2632.1, "px": 3369.9, "py": 1598.8, "has_dungeon": false, "has_important": true}, {"id": 1436, "name": "Greydwarf_camp1", "category": "structure", "x": 8018.0, "z": -2681.2, "px": 3416.4, "py": 1590.4, "has_dungeon": false, "has_important": true}, {"id": 1437, "name": "Greydwarf_camp1", "category": "structure", "x": -9155.2, "z": -2768.8, "px": 485.5, "py": 1575.5, "has_dungeon": false, "has_important": true}, {"id": 1438, "name": "Greydwarf_camp1", "category": "structure", "x": 981.4, "z": -5449.9, "px": 2215.5, "py": 1117.9, "has_dungeon": false, "has_important": true}, {"id": 1439, "name": "Greydwarf_camp1", "category": "structure", "x": 1357.7, "z": -5488.5, "px": 2279.7, "py": 1111.3, "has_dungeon": false, "has_important": true}, {"id": 1440, "name": "Greydwarf_camp1", "category": "structure", "x": 1616.7, "z": 6342.1, "px": 2323.9, "py": 3130.4, "has_dungeon": false, "has_important": true}, {"id": 1441, "name": "Greydwarf_camp1", "category": "structure", "x": -9069.6, "z": 2932.5, "px": 500.1, "py": 2548.5, "has_dungeon": false, "has_important": true}, {"id": 1442, "name": "Greydwarf_camp1", "category": "structure", "x": 7751.0, "z": -3089.0, "px": 3370.8, "py": 1520.8, "has_dungeon": false, "has_important": true}, {"id": 1443, "name": "Greydwarf_camp1", "category": "structure", "x": -2362.8, "z": -134.8, "px": 1644.7, "py": 2025.0, "has_dungeon": false, "has_important": true}, {"id": 1444, "name": "Greydwarf_camp1", "category": "structure", "x": 914.8, "z": 5638.5, "px": 2204.1, "py": 3010.3, "has_dungeon": false, "has_important": true}, {"id": 1445, "name": "Greydwarf_camp1", "category": "structure", "x": 5367.4, "z": -904.6, "px": 2964.0, "py": 1893.6, "has_dungeon": false, "has_important": true}, {"id": 1446, "name": "Greydwarf_camp1", "category": "structure", "x": -8530.8, "z": -1979.0, "px": 592.1, "py": 1710.3, "has_dungeon": false, "has_important": true}, {"id": 1447, "name": "Greydwarf_camp1", "category": "structure", "x": 9537.9, "z": 9.0, "px": 3675.8, "py": 2049.5, "has_dungeon": false, "has_important": true}, {"id": 1448, "name": "Greydwarf_camp1", "category": "structure", "x": -1085.6, "z": -1423.3, "px": 1862.7, "py": 1805.1, "has_dungeon": false, "has_important": true}, {"id": 1449, "name": "Greydwarf_camp1", "category": "structure", "x": 2187.7, "z": 1405.3, "px": 2421.4, "py": 2287.8, "has_dungeon": false, "has_important": true}, {"id": 1450, "name": "Greydwarf_camp1", "category": "structure", "x": 6993.8, "z": -4243.0, "px": 3241.6, "py": 1323.9, "has_dungeon": false, "has_important": true}, {"id": 1451, "name": "Greydwarf_camp1", "category": "structure", "x": -9172.5, "z": 3142.1, "px": 482.6, "py": 2584.3, "has_dungeon": false, "has_important": true}, {"id": 1452, "name": "Greydwarf_camp1", "category": "structure", "x": 5551.4, "z": -974.6, "px": 2995.4, "py": 1881.7, "has_dungeon": false, "has_important": true}, {"id": 1453, "name": "Greydwarf_camp1", "category": "structure", "x": -3654.4, "z": 6890.8, "px": 1424.3, "py": 3224.0, "has_dungeon": false, "has_important": true}, {"id": 1454, "name": "Greydwarf_camp1", "category": "structure", "x": 2255.1, "z": -718.9, "px": 2432.9, "py": 1925.3, "has_dungeon": false, "has_important": true}, {"id": 1455, "name": "Greydwarf_camp1", "category": "structure", "x": -2005.5, "z": -4307.5, "px": 1705.7, "py": 1312.9, "has_dungeon": false, "has_important": true}, {"id": 1456, "name": "Greydwarf_camp1", "category": "structure", "x": 2554.8, "z": 5067.3, "px": 2484.0, "py": 2912.8, "has_dungeon": false, "has_important": true}, {"id": 1457, "name": "Greydwarf_camp1", "category": "structure", "x": 2814.6, "z": -2117.7, "px": 2528.4, "py": 1686.6, "has_dungeon": false, "has_important": true}, {"id": 1458, "name": "Greydwarf_camp1", "category": "structure", "x": 2746.8, "z": -4428.9, "px": 2516.8, "py": 1292.1, "has_dungeon": false, "has_important": true}, {"id": 1459, "name": "Greydwarf_camp1", "category": "structure", "x": 8123.6, "z": -339.5, "px": 3434.4, "py": 1990.1, "has_dungeon": false, "has_important": true}, {"id": 1460, "name": "Greydwarf_camp1", "category": "structure", "x": -7660.9, "z": 4734.9, "px": 740.5, "py": 2856.1, "has_dungeon": false, "has_important": true}, {"id": 1461, "name": "Greydwarf_camp1", "category": "structure", "x": 2227.7, "z": 1554.3, "px": 2428.2, "py": 2313.3, "has_dungeon": false, "has_important": true}, {"id": 1462, "name": "Greydwarf_camp1", "category": "structure", "x": -7235.3, "z": -1866.0, "px": 813.2, "py": 1729.5, "has_dungeon": false, "has_important": true}, {"id": 1463, "name": "Greydwarf_camp1", "category": "structure", "x": -1286.1, "z": -1933.9, "px": 1828.5, "py": 1717.9, "has_dungeon": false, "has_important": true}, {"id": 1464, "name": "Greydwarf_camp1", "category": "structure", "x": 2228.8, "z": 1282.5, "px": 2428.4, "py": 2266.9, "has_dungeon": false, "has_important": true}, {"id": 1465, "name": "Greydwarf_camp1", "category": "structure", "x": -1470.3, "z": -1853.1, "px": 1797.1, "py": 1731.7, "has_dungeon": false, "has_important": true}, {"id": 1466, "name": "Greydwarf_camp1", "category": "structure", "x": 1346.3, "z": -5701.5, "px": 2277.8, "py": 1074.9, "has_dungeon": false, "has_important": true}, {"id": 1467, "name": "Greydwarf_camp1", "category": "structure", "x": -623.7, "z": 596.3, "px": 1941.6, "py": 2149.8, "has_dungeon": false, "has_important": true}, {"id": 1468, "name": "Greydwarf_camp1", "category": "structure", "x": 7160.9, "z": -4542.6, "px": 3270.1, "py": 1272.7, "has_dungeon": false, "has_important": true}, {"id": 1469, "name": "Greydwarf_camp1", "category": "structure", "x": 8171.9, "z": -213.7, "px": 3442.7, "py": 2011.5, "has_dungeon": false, "has_important": true}, {"id": 1470, "name": "Greydwarf_camp1", "category": "structure", "x": 2053.5, "z": 3640.5, "px": 2398.5, "py": 2669.3, "has_dungeon": false, "has_important": true}, {"id": 1471, "name": "Greydwarf_camp1", "category": "structure", "x": -8259.8, "z": -1924.9, "px": 638.3, "py": 1719.5, "has_dungeon": false, "has_important": true}, {"id": 1472, "name": "Greydwarf_camp1", "category": "structure", "x": -5199.2, "z": 626.3, "px": 1160.7, "py": 2154.9, "has_dungeon": false, "has_important": true}, {"id": 1473, "name": "Greydwarf_camp1", "category": "structure", "x": 7727.4, "z": -2803.7, "px": 3366.8, "py": 1569.5, "has_dungeon": false, "has_important": true}, {"id": 1474, "name": "Greydwarf_camp1", "category": "structure", "x": -1275.4, "z": -2095.8, "px": 1830.3, "py": 1690.3, "has_dungeon": false, "has_important": true}, {"id": 1475, "name": "Greydwarf_camp1", "category": "structure", "x": 2424.3, "z": 5167.6, "px": 2461.7, "py": 2929.9, "has_dungeon": false, "has_important": true}, {"id": 1476, "name": "Greydwarf_camp1", "category": "structure", "x": 463.9, "z": 5249.0, "px": 2127.2, "py": 2943.8, "has_dungeon": false, "has_important": true}, {"id": 1477, "name": "Greydwarf_camp1", "category": "structure", "x": 7659.2, "z": 3855.2, "px": 3355.2, "py": 2706.0, "has_dungeon": false, "has_important": true}, {"id": 1478, "name": "Greydwarf_camp1", "category": "structure", "x": -2990.1, "z": 4412.1, "px": 1537.7, "py": 2801.0, "has_dungeon": false, "has_important": true}, {"id": 1479, "name": "Greydwarf_camp1", "category": "structure", "x": 2551.4, "z": 5751.4, "px": 2483.4, "py": 3029.6, "has_dungeon": false, "has_important": true}, {"id": 1480, "name": "Greydwarf_camp1", "category": "structure", "x": 131.6, "z": -1039.8, "px": 2070.5, "py": 1870.5, "has_dungeon": false, "has_important": true}, {"id": 1481, "name": "Greydwarf_camp1", "category": "structure", "x": 2416.2, "z": -4478.6, "px": 2460.4, "py": 1283.7, "has_dungeon": false, "has_important": true}, {"id": 1482, "name": "Greydwarf_camp1", "category": "structure", "x": 9356.3, "z": 365.9, "px": 3644.8, "py": 2110.4, "has_dungeon": false, "has_important": true}, {"id": 1483, "name": "Greydwarf_camp1", "category": "structure", "x": 2350.8, "z": 3720.9, "px": 2449.2, "py": 2683.0, "has_dungeon": false, "has_important": true}, {"id": 1484, "name": "Greydwarf_camp1", "category": "structure", "x": -1104.6, "z": -1555.7, "px": 1859.5, "py": 1782.5, "has_dungeon": false, "has_important": true}, {"id": 1485, "name": "Greydwarf_camp1", "category": "structure", "x": -5385.8, "z": -6250.7, "px": 1128.8, "py": 981.2, "has_dungeon": false, "has_important": true}, {"id": 1486, "name": "Greydwarf_camp1", "category": "structure", "x": 2367.2, "z": -1724.5, "px": 2452.0, "py": 1753.7, "has_dungeon": false, "has_important": true}, {"id": 1487, "name": "Greydwarf_camp1", "category": "structure", "x": 2424.4, "z": -1592.7, "px": 2461.8, "py": 1776.2, "has_dungeon": false, "has_important": true}, {"id": 1488, "name": "Greydwarf_camp1", "category": "structure", "x": 779.1, "z": -2548.5, "px": 2181.0, "py": 1613.1, "has_dungeon": false, "has_important": true}, {"id": 1489, "name": "Greydwarf_camp1", "category": "structure", "x": -9396.2, "z": 2867.4, "px": 444.4, "py": 2537.4, "has_dungeon": false, "has_important": true}, {"id": 1490, "name": "Greydwarf_camp1", "category": "structure", "x": 3901.9, "z": 3699.0, "px": 2713.9, "py": 2679.3, "has_dungeon": false, "has_important": true}, {"id": 1491, "name": "Greydwarf_camp1", "category": "structure", "x": -9552.1, "z": -276.8, "px": 417.8, "py": 2000.8, "has_dungeon": false, "has_important": true}, {"id": 1492, "name": "Greydwarf_camp1", "category": "structure", "x": 4085.9, "z": 6956.8, "px": 2745.3, "py": 3235.3, "has_dungeon": false, "has_important": true}, {"id": 1493, "name": "Greydwarf_camp1", "category": "structure", "x": 2799.2, "z": -3787.0, "px": 2525.7, "py": 1401.7, "has_dungeon": false, "has_important": true}, {"id": 1494, "name": "Greydwarf_camp1", "category": "structure", "x": -3285.2, "z": 4485.5, "px": 1487.3, "py": 2813.5, "has_dungeon": false, "has_important": true}, {"id": 1495, "name": "Greydwarf_camp1", "category": "structure", "x": 7346.1, "z": -3201.0, "px": 3301.7, "py": 1501.7, "has_dungeon": false, "has_important": true}, {"id": 1496, "name": "Greydwarf_camp1", "category": "structure", "x": -9237.3, "z": -1599.6, "px": 471.5, "py": 1775.0, "has_dungeon": false, "has_important": true}, {"id": 1497, "name": "Greydwarf_camp1", "category": "structure", "x": -912.4, "z": 4875.4, "px": 1892.3, "py": 2880.1, "has_dungeon": false, "has_important": true}, {"id": 1498, "name": "Greydwarf_camp1", "category": "structure", "x": 9578.7, "z": 1291.4, "px": 3682.8, "py": 2268.4, "has_dungeon": false, "has_important": true}, {"id": 1499, "name": "Greydwarf_camp1", "category": "structure", "x": -44.2, "z": -840.6, "px": 2040.5, "py": 1904.5, "has_dungeon": false, "has_important": true}, {"id": 1500, "name": "Greydwarf_camp1", "category": "structure", "x": 2311.6, "z": 4915.3, "px": 2442.5, "py": 2886.9, "has_dungeon": false, "has_important": true}, {"id": 1501, "name": "Greydwarf_camp1", "category": "structure", "x": -3450.7, "z": 4298.4, "px": 1459.1, "py": 2781.6, "has_dungeon": false, "has_important": true}, {"id": 1502, "name": "Greydwarf_camp1", "category": "structure", "x": 1215.0, "z": 5560.7, "px": 2255.4, "py": 2997.0, "has_dungeon": false, "has_important": true}, {"id": 1503, "name": "Greydwarf_camp1", "category": "structure", "x": 3281.2, "z": -2627.8, "px": 2608.0, "py": 1599.5, "has_dungeon": false, "has_important": true}, {"id": 1504, "name": "Greydwarf_camp1", "category": "structure", "x": 2158.8, "z": -849.3, "px": 2416.4, "py": 1903.1, "has_dungeon": false, "has_important": true}, {"id": 1505, "name": "Greydwarf_camp1", "category": "structure", "x": -3974.5, "z": -510.7, "px": 1369.7, "py": 1960.8, "has_dungeon": false, "has_important": true}, {"id": 1506, "name": "Greydwarf_camp1", "category": "structure", "x": 1929.6, "z": 1080.4, "px": 2377.3, "py": 2232.4, "has_dungeon": false, "has_important": true}, {"id": 1507, "name": "Greydwarf_camp1", "category": "structure", "x": -8755.0, "z": -697.0, "px": 553.8, "py": 1929.0, "has_dungeon": false, "has_important": true}, {"id": 1508, "name": "Greydwarf_camp1", "category": "structure", "x": 4204.1, "z": 6781.4, "px": 2765.5, "py": 3205.4, "has_dungeon": false, "has_important": true}, {"id": 1509, "name": "Greydwarf_camp1", "category": "structure", "x": -2042.6, "z": 576.8, "px": 1699.4, "py": 2146.4, "has_dungeon": false, "has_important": true}, {"id": 1510, "name": "Greydwarf_camp1", "category": "structure", "x": -6668.6, "z": 5379.8, "px": 909.9, "py": 2966.2, "has_dungeon": false, "has_important": true}, {"id": 1511, "name": "Greydwarf_camp1", "category": "structure", "x": 468.4, "z": 5439.9, "px": 2127.9, "py": 2976.4, "has_dungeon": false, "has_important": true}, {"id": 1512, "name": "Greydwarf_camp1", "category": "structure", "x": -5952.6, "z": 4789.5, "px": 1032.1, "py": 2865.4, "has_dungeon": false, "has_important": true}, {"id": 1513, "name": "Greydwarf_camp1", "category": "structure", "x": -7151.3, "z": 2549.4, "px": 827.5, "py": 2483.1, "has_dungeon": false, "has_important": true}, {"id": 1514, "name": "Greydwarf_camp1", "category": "structure", "x": 2828.7, "z": -4755.5, "px": 2530.8, "py": 1236.4, "has_dungeon": false, "has_important": true}, {"id": 1515, "name": "Greydwarf_camp1", "category": "structure", "x": 849.3, "z": 427.5, "px": 2192.9, "py": 2121.0, "has_dungeon": false, "has_important": true}, {"id": 1516, "name": "Greydwarf_camp1", "category": "structure", "x": -6737.1, "z": 392.6, "px": 898.2, "py": 2115.0, "has_dungeon": false, "has_important": true}, {"id": 1517, "name": "Greydwarf_camp1", "category": "structure", "x": -3527.8, "z": 4662.4, "px": 1445.9, "py": 2843.7, "has_dungeon": false, "has_important": true}, {"id": 1518, "name": "Greydwarf_camp1", "category": "structure", "x": -4115.6, "z": -238.4, "px": 1345.6, "py": 2007.3, "has_dungeon": false, "has_important": true}, {"id": 1519, "name": "Greydwarf_camp1", "category": "structure", "x": 494.6, "z": 4944.6, "px": 2132.4, "py": 2891.9, "has_dungeon": false, "has_important": true}, {"id": 1520, "name": "Greydwarf_camp1", "category": "structure", "x": 0.9, "z": -1003.9, "px": 2048.2, "py": 1876.7, "has_dungeon": false, "has_important": true}, {"id": 1521, "name": "Greydwarf_camp1", "category": "structure", "x": -8973.1, "z": 3434.0, "px": 516.6, "py": 2634.1, "has_dungeon": false, "has_important": true}, {"id": 1522, "name": "Greydwarf_camp1", "category": "structure", "x": 842.3, "z": 267.6, "px": 2191.8, "py": 2093.7, "has_dungeon": false, "has_important": true}, {"id": 1523, "name": "Greydwarf_camp1", "category": "structure", "x": -2288.5, "z": 4566.0, "px": 1657.4, "py": 2827.3, "has_dungeon": false, "has_important": true}, {"id": 1524, "name": "Greydwarf_camp1", "category": "structure", "x": -5652.1, "z": -1781.6, "px": 1083.4, "py": 1743.9, "has_dungeon": false, "has_important": true}, {"id": 1525, "name": "Greydwarf_camp1", "category": "structure", "x": 8575.5, "z": -1841.9, "px": 3511.6, "py": 1733.6, "has_dungeon": false, "has_important": true}, {"id": 1526, "name": "Greydwarf_camp1", "category": "structure", "x": 596.9, "z": 5506.6, "px": 2149.9, "py": 2987.8, "has_dungeon": false, "has_important": true}, {"id": 1527, "name": "Greydwarf_camp1", "category": "structure", "x": 2033.5, "z": -785.8, "px": 2395.1, "py": 1913.9, "has_dungeon": false, "has_important": true}, {"id": 1528, "name": "Greydwarf_camp1", "category": "structure", "x": 5441.0, "z": -1068.6, "px": 2976.6, "py": 1865.6, "has_dungeon": false, "has_important": true}, {"id": 1529, "name": "Greydwarf_camp1", "category": "structure", "x": 8657.7, "z": -2113.8, "px": 3525.6, "py": 1687.2, "has_dungeon": false, "has_important": true}, {"id": 1530, "name": "Greydwarf_camp1", "category": "structure", "x": -8247.8, "z": -1137.3, "px": 640.4, "py": 1853.9, "has_dungeon": false, "has_important": true}, {"id": 1531, "name": "Greydwarf_camp1", "category": "structure", "x": -3636.3, "z": 4271.1, "px": 1427.4, "py": 2776.9, "has_dungeon": false, "has_important": true}, {"id": 1532, "name": "Greydwarf_camp1", "category": "structure", "x": 3243.5, "z": -4802.5, "px": 2601.6, "py": 1228.4, "has_dungeon": false, "has_important": true}, {"id": 1533, "name": "Greydwarf_camp1", "category": "structure", "x": -6583.4, "z": 3759.5, "px": 924.4, "py": 2689.6, "has_dungeon": false, "has_important": true}, {"id": 1534, "name": "Greydwarf_camp1", "category": "structure", "x": -7153.9, "z": -4877.7, "px": 827.1, "py": 1215.5, "has_dungeon": false, "has_important": true}, {"id": 1535, "name": "Greydwarf_camp1", "category": "structure", "x": -1287.1, "z": -1474.8, "px": 1828.3, "py": 1796.3, "has_dungeon": false, "has_important": true}, {"id": 1536, "name": "Greydwarf_camp1", "category": "structure", "x": 4526.2, "z": -5203.4, "px": 2820.5, "py": 1160.0, "has_dungeon": false, "has_important": true}, {"id": 1537, "name": "Greydwarf_camp1", "category": "structure", "x": 8639.5, "z": 72.3, "px": 3522.5, "py": 2060.3, "has_dungeon": false, "has_important": true}, {"id": 1538, "name": "Greydwarf_camp1", "category": "structure", "x": -4785.4, "z": 5570.7, "px": 1231.3, "py": 2998.7, "has_dungeon": false, "has_important": true}, {"id": 1539, "name": "Greydwarf_camp1", "category": "structure", "x": 1729.9, "z": -6419.5, "px": 2343.2, "py": 952.4, "has_dungeon": false, "has_important": true}, {"id": 1540, "name": "Greydwarf_camp1", "category": "structure", "x": 1748.1, "z": -1067.3, "px": 2346.3, "py": 1865.8, "has_dungeon": false, "has_important": true}, {"id": 1541, "name": "Greydwarf_camp1", "category": "structure", "x": -945.2, "z": 200.5, "px": 1886.7, "py": 2082.2, "has_dungeon": false, "has_important": true}, {"id": 1542, "name": "Greydwarf_camp1", "category": "structure", "x": -4213.1, "z": -6449.6, "px": 1329.0, "py": 947.3, "has_dungeon": false, "has_important": true}, {"id": 1543, "name": "Greydwarf_camp1", "category": "structure", "x": -958.5, "z": 439.3, "px": 1884.4, "py": 2123.0, "has_dungeon": false, "has_important": true}, {"id": 1544, "name": "Greydwarf_camp1", "category": "structure", "x": 3529.4, "z": 3794.0, "px": 2650.4, "py": 2695.5, "has_dungeon": false, "has_important": true}, {"id": 1545, "name": "Greydwarf_camp1", "category": "structure", "x": 8059.1, "z": 149.6, "px": 3423.4, "py": 2073.5, "has_dungeon": false, "has_important": true}, {"id": 1546, "name": "Greydwarf_camp1", "category": "structure", "x": -7475.0, "z": 4286.2, "px": 772.3, "py": 2779.5, "has_dungeon": false, "has_important": true}, {"id": 1547, "name": "Greydwarf_camp1", "category": "structure", "x": 718.8, "z": 340.9, "px": 2170.7, "py": 2106.2, "has_dungeon": false, "has_important": true}, {"id": 1548, "name": "Greydwarf_camp1", "category": "structure", "x": -1206.9, "z": -1323.9, "px": 1842.0, "py": 1822.1, "has_dungeon": false, "has_important": true}, {"id": 1549, "name": "Greydwarf_camp1", "category": "structure", "x": -3434.9, "z": -647.5, "px": 1461.8, "py": 1937.5, "has_dungeon": false, "has_important": true}, {"id": 1550, "name": "Greydwarf_camp1", "category": "structure", "x": -5512.7, "z": -1795.6, "px": 1107.2, "py": 1741.6, "has_dungeon": false, "has_important": true}, {"id": 1551, "name": "Greydwarf_camp1", "category": "structure", "x": 8695.9, "z": -1738.1, "px": 3532.1, "py": 1751.4, "has_dungeon": false, "has_important": true}, {"id": 1552, "name": "Greydwarf_camp1", "category": "structure", "x": 63.2, "z": -4330.2, "px": 2058.8, "py": 1309.0, "has_dungeon": false, "has_important": true}, {"id": 1553, "name": "Greydwarf_camp1", "category": "structure", "x": -771.1, "z": -4.5, "px": 1916.4, "py": 2047.2, "has_dungeon": false, "has_important": true}, {"id": 1554, "name": "Greydwarf_camp1", "category": "structure", "x": 202.6, "z": -4332.6, "px": 2082.6, "py": 1308.6, "has_dungeon": false, "has_important": true}, {"id": 1555, "name": "Greydwarf_camp1", "category": "structure", "x": 1386.1, "z": -2540.9, "px": 2284.6, "py": 1614.4, "has_dungeon": false, "has_important": true}, {"id": 1556, "name": "Greydwarf_camp1", "category": "structure", "x": 8747.0, "z": -3908.4, "px": 3540.8, "py": 1381.0, "has_dungeon": false, "has_important": true}, {"id": 1557, "name": "Greydwarf_camp1", "category": "structure", "x": -6037.5, "z": 1469.6, "px": 1017.6, "py": 2298.8, "has_dungeon": false, "has_important": true}, {"id": 1558, "name": "Greydwarf_camp1", "category": "structure", "x": 8183.3, "z": 57.3, "px": 3444.6, "py": 2057.8, "has_dungeon": false, "has_important": true}, {"id": 1559, "name": "Greydwarf_camp1", "category": "structure", "x": 4362.3, "z": 6733.0, "px": 2792.5, "py": 3197.1, "has_dungeon": false, "has_important": true}, {"id": 1560, "name": "Greydwarf_camp1", "category": "structure", "x": -1795.1, "z": -4139.4, "px": 1741.6, "py": 1341.5, "has_dungeon": false, "has_important": true}, {"id": 1561, "name": "Greydwarf_camp1", "category": "structure", "x": -5753.6, "z": 4593.5, "px": 1066.1, "py": 2832.0, "has_dungeon": false, "has_important": true}, {"id": 1562, "name": "Greydwarf_camp1", "category": "structure", "x": -8496.5, "z": -2125.5, "px": 597.9, "py": 1685.2, "has_dungeon": false, "has_important": true}, {"id": 1563, "name": "Greydwarf_camp1", "category": "structure", "x": 1929.5, "z": 6525.0, "px": 2377.3, "py": 3161.6, "has_dungeon": false, "has_important": true}, {"id": 1564, "name": "Greydwarf_camp1", "category": "structure", "x": 4429.1, "z": 6848.9, "px": 2803.9, "py": 3216.9, "has_dungeon": false, "has_important": true}, {"id": 1565, "name": "Greydwarf_camp1", "category": "structure", "x": -5614.0, "z": 4726.4, "px": 1089.9, "py": 2854.6, "has_dungeon": false, "has_important": true}, {"id": 1566, "name": "Greydwarf_camp1", "category": "structure", "x": -3066.0, "z": 6768.3, "px": 1524.7, "py": 3203.1, "has_dungeon": false, "has_important": true}, {"id": 1567, "name": "Greydwarf_camp1", "category": "structure", "x": -3891.5, "z": -635.5, "px": 1383.9, "py": 1939.5, "has_dungeon": false, "has_important": true}, {"id": 1568, "name": "Greydwarf_camp1", "category": "structure", "x": -8260.8, "z": -1748.5, "px": 638.2, "py": 1749.6, "has_dungeon": false, "has_important": true}, {"id": 1569, "name": "Greydwarf_camp1", "category": "structure", "x": -6677.2, "z": 3860.9, "px": 908.4, "py": 2706.9, "has_dungeon": false, "has_important": true}, {"id": 1570, "name": "Greydwarf_camp1", "category": "structure", "x": -9711.5, "z": 565.9, "px": 390.6, "py": 2144.6, "has_dungeon": false, "has_important": true}, {"id": 1571, "name": "Greydwarf_camp1", "category": "structure", "x": 3456.0, "z": 3652.0, "px": 2637.8, "py": 2671.3, "has_dungeon": false, "has_important": true}, {"id": 1572, "name": "Greydwarf_camp1", "category": "structure", "x": 3722.4, "z": 3435.5, "px": 2683.3, "py": 2634.3, "has_dungeon": false, "has_important": true}, {"id": 1573, "name": "Greydwarf_camp1", "category": "structure", "x": -1109.9, "z": -1233.0, "px": 1858.6, "py": 1837.6, "has_dungeon": false, "has_important": true}, {"id": 1574, "name": "Greydwarf_camp1", "category": "structure", "x": -2120.0, "z": 816.6, "px": 1686.2, "py": 2187.4, "has_dungeon": false, "has_important": true}, {"id": 1575, "name": "Greydwarf_camp1", "category": "structure", "x": 1030.4, "z": -5258.0, "px": 2223.9, "py": 1150.6, "has_dungeon": false, "has_important": true}, {"id": 1576, "name": "Greydwarf_camp1", "category": "structure", "x": -814.8, "z": 555.8, "px": 1908.9, "py": 2142.9, "has_dungeon": false, "has_important": true}, {"id": 1577, "name": "Greydwarf_camp1", "category": "structure", "x": 2986.6, "z": -2259.8, "px": 2557.7, "py": 1662.3, "has_dungeon": false, "has_important": true}, {"id": 1578, "name": "Greydwarf_camp1", "category": "structure", "x": 1041.8, "z": 5615.2, "px": 2225.8, "py": 3006.3, "has_dungeon": false, "has_important": true}, {"id": 1579, "name": "Greydwarf_camp1", "category": "structure", "x": -4682.7, "z": 5425.4, "px": 1248.8, "py": 2973.9, "has_dungeon": false, "has_important": true}, {"id": 1580, "name": "Greydwarf_camp1", "category": "structure", "x": 1086.8, "z": 5482.4, "px": 2233.5, "py": 2983.7, "has_dungeon": false, "has_important": true}, {"id": 1581, "name": "Greydwarf_camp1", "category": "structure", "x": -2564.2, "z": -271.2, "px": 1610.4, "py": 2001.7, "has_dungeon": false, "has_important": true}, {"id": 1582, "name": "Greydwarf_camp1", "category": "structure", "x": 5127.2, "z": -2260.3, "px": 2923.0, "py": 1662.2, "has_dungeon": false, "has_important": true}, {"id": 1583, "name": "Greydwarf_camp1", "category": "structure", "x": 5423.8, "z": 557.6, "px": 2973.7, "py": 2143.2, "has_dungeon": false, "has_important": true}, {"id": 1584, "name": "Greydwarf_camp1", "category": "structure", "x": 3696.2, "z": 3717.6, "px": 2678.8, "py": 2682.5, "has_dungeon": false, "has_important": true}, {"id": 1585, "name": "Greydwarf_camp1", "category": "structure", "x": 1708.3, "z": -900.7, "px": 2339.5, "py": 1894.3, "has_dungeon": false, "has_important": true}, {"id": 1586, "name": "Greydwarf_camp1", "category": "structure", "x": 3795.9, "z": 3798.0, "px": 2695.8, "py": 2696.2, "has_dungeon": false, "has_important": true}, {"id": 1587, "name": "Greydwarf_camp1", "category": "structure", "x": -9228.2, "z": 3477.1, "px": 473.1, "py": 2641.4, "has_dungeon": false, "has_important": true}, {"id": 1588, "name": "Greydwarf_camp1", "category": "structure", "x": -6721.0, "z": 3696.2, "px": 900.9, "py": 2678.8, "has_dungeon": false, "has_important": true}, {"id": 1589, "name": "Greydwarf_camp1", "category": "structure", "x": 251.0, "z": -1103.8, "px": 2090.8, "py": 1859.6, "has_dungeon": false, "has_important": true}, {"id": 1590, "name": "Greydwarf_camp1", "category": "structure", "x": 1143.3, "z": 5699.0, "px": 2243.1, "py": 3020.6, "has_dungeon": false, "has_important": true}, {"id": 1591, "name": "Greydwarf_camp1", "category": "structure", "x": 1836.7, "z": -1333.7, "px": 2361.5, "py": 1820.4, "has_dungeon": false, "has_important": true}, {"id": 1592, "name": "Greydwarf_camp1", "category": "structure", "x": -4033.9, "z": -6330.9, "px": 1359.5, "py": 967.5, "has_dungeon": false, "has_important": true}, {"id": 1593, "name": "Greydwarf_camp1", "category": "structure", "x": 1786.9, "z": -4395.5, "px": 2353.0, "py": 1297.8, "has_dungeon": false, "has_important": true}, {"id": 1594, "name": "Greydwarf_camp1", "category": "structure", "x": -7983.6, "z": 446.7, "px": 685.5, "py": 2124.2, "has_dungeon": false, "has_important": true}, {"id": 1595, "name": "Greydwarf_camp1", "category": "structure", "x": 4875.6, "z": 191.6, "px": 2880.1, "py": 2080.7, "has_dungeon": false, "has_important": true}, {"id": 1596, "name": "Greydwarf_camp1", "category": "structure", "x": 8440.8, "z": 108.3, "px": 3488.6, "py": 2066.5, "has_dungeon": false, "has_important": true}, {"id": 1597, "name": "Greydwarf_camp1", "category": "structure", "x": 6712.4, "z": 4807.3, "px": 3193.6, "py": 2868.4, "has_dungeon": false, "has_important": true}, {"id": 1598, "name": "Greydwarf_camp1", "category": "structure", "x": -9864.9, "z": -140.2, "px": 364.4, "py": 2024.1, "has_dungeon": false, "has_important": true}, {"id": 1599, "name": "Greydwarf_camp1", "category": "structure", "x": 4289.8, "z": -1023.6, "px": 2780.1, "py": 1873.3, "has_dungeon": false, "has_important": true}, {"id": 1600, "name": "Greydwarf_camp1", "category": "structure", "x": -4240.1, "z": -189.5, "px": 1324.4, "py": 2015.7, "has_dungeon": false, "has_important": true}, {"id": 1601, "name": "Greydwarf_camp1", "category": "structure", "x": -1108.0, "z": -1004.2, "px": 1858.9, "py": 1876.6, "has_dungeon": false, "has_important": true}, {"id": 1602, "name": "Greydwarf_camp1", "category": "structure", "x": 2605.1, "z": -4463.7, "px": 2492.6, "py": 1286.2, "has_dungeon": false, "has_important": true}, {"id": 1603, "name": "Greydwarf_camp1", "category": "structure", "x": 1038.9, "z": -5717.7, "px": 2225.3, "py": 1072.2, "has_dungeon": false, "has_important": true}, {"id": 1604, "name": "Greydwarf_camp1", "category": "structure", "x": 4266.9, "z": -253.3, "px": 2776.2, "py": 2004.8, "has_dungeon": false, "has_important": true}, {"id": 1605, "name": "Greydwarf_camp1", "category": "structure", "x": -5636.1, "z": -5037.9, "px": 1086.1, "py": 1188.2, "has_dungeon": false, "has_important": true}, {"id": 1606, "name": "Greydwarf_camp1", "category": "structure", "x": -9096.9, "z": 3270.5, "px": 495.5, "py": 2606.2, "has_dungeon": false, "has_important": true}, {"id": 1607, "name": "Greydwarf_camp1", "category": "structure", "x": 1717.2, "z": -753.2, "px": 2341.1, "py": 1919.5, "has_dungeon": false, "has_important": true}, {"id": 1608, "name": "Greydwarf_camp1", "category": "structure", "x": 1834.7, "z": -4656.8, "px": 2361.1, "py": 1253.2, "has_dungeon": false, "has_important": true}, {"id": 1609, "name": "Greydwarf_camp1", "category": "structure", "x": 4416.2, "z": -316.4, "px": 2801.7, "py": 1994.0, "has_dungeon": false, "has_important": true}, {"id": 1610, "name": "Greydwarf_camp1", "category": "structure", "x": 4495.5, "z": -451.2, "px": 2815.2, "py": 1971.0, "has_dungeon": false, "has_important": true}, {"id": 1611, "name": "Greydwarf_camp1", "category": "structure", "x": 2704.3, "z": 319.7, "px": 2509.5, "py": 2102.6, "has_dungeon": false, "has_important": true}, {"id": 1612, "name": "Greydwarf_camp1", "category": "structure", "x": 9416.3, "z": 200.4, "px": 3655.0, "py": 2082.2, "has_dungeon": false, "has_important": true}, {"id": 1613, "name": "Greydwarf_camp1", "category": "structure", "x": 1872.6, "z": -786.8, "px": 2367.6, "py": 1913.7, "has_dungeon": false, "has_important": true}, {"id": 1614, "name": "Greydwarf_camp1", "category": "structure", "x": 2573.0, "z": 5198.5, "px": 2487.1, "py": 2935.2, "has_dungeon": false, "has_important": true}, {"id": 1615, "name": "Greydwarf_camp1", "category": "structure", "x": 2193.0, "z": -4484.3, "px": 2422.3, "py": 1282.7, "has_dungeon": false, "has_important": true}, {"id": 1616, "name": "Greydwarf_camp1", "category": "structure", "x": -4650.1, "z": 5582.8, "px": 1254.4, "py": 3000.8, "has_dungeon": false, "has_important": true}, {"id": 1617, "name": "Greydwarf_camp1", "category": "structure", "x": 4367.3, "z": -491.4, "px": 2793.4, "py": 1964.1, "has_dungeon": false, "has_important": true}, {"id": 1618, "name": "Greydwarf_camp1", "category": "structure", "x": -1008.8, "z": 315.9, "px": 1875.8, "py": 2101.9, "has_dungeon": false, "has_important": true}, {"id": 1619, "name": "Greydwarf_camp1", "category": "structure", "x": 7822.8, "z": -2940.1, "px": 3383.1, "py": 1546.2, "has_dungeon": false, "has_important": true}, {"id": 1620, "name": "Greydwarf_camp1", "category": "structure", "x": -3442.3, "z": 4495.5, "px": 1460.5, "py": 2815.2, "has_dungeon": false, "has_important": true}, {"id": 1621, "name": "Greydwarf_camp1", "category": "structure", "x": 7668.3, "z": -2990.2, "px": 3356.7, "py": 1537.7, "has_dungeon": false, "has_important": true}, {"id": 1622, "name": "Greydwarf_camp1", "category": "structure", "x": 3333.3, "z": -2438.3, "px": 2616.9, "py": 1631.9, "has_dungeon": false, "has_important": true}, {"id": 1623, "name": "Greydwarf_camp1", "category": "structure", "x": -271.6, "z": 698.5, "px": 2001.6, "py": 2167.2, "has_dungeon": false, "has_important": true}, {"id": 1624, "name": "Greydwarf_camp1", "category": "structure", "x": -3772.5, "z": 7103.7, "px": 1404.2, "py": 3260.4, "has_dungeon": false, "has_important": true}, {"id": 1625, "name": "Greydwarf_camp1", "category": "structure", "x": 8431.2, "z": -2179.7, "px": 3486.9, "py": 1676.0, "has_dungeon": false, "has_important": true}, {"id": 1626, "name": "Greydwarf_camp1", "category": "structure", "x": -7153.2, "z": 180.3, "px": 827.2, "py": 2078.8, "has_dungeon": false, "has_important": true}, {"id": 1627, "name": "Greydwarf_camp1", "category": "structure", "x": 2442.2, "z": 4978.9, "px": 2464.8, "py": 2897.7, "has_dungeon": false, "has_important": true}, {"id": 1628, "name": "Greydwarf_camp1", "category": "structure", "x": 1096.8, "z": -5371.8, "px": 2235.2, "py": 1131.2, "has_dungeon": false, "has_important": true}, {"id": 1629, "name": "Greydwarf_camp1", "category": "structure", "x": -7357.3, "z": -1725.7, "px": 792.4, "py": 1753.5, "has_dungeon": false, "has_important": true}, {"id": 1630, "name": "Greydwarf_camp1", "category": "structure", "x": 5.1, "z": -4529.3, "px": 2048.9, "py": 1275.0, "has_dungeon": false, "has_important": true}, {"id": 1631, "name": "Greydwarf_camp1", "category": "structure", "x": 4165.9, "z": -341.1, "px": 2759.0, "py": 1989.8, "has_dungeon": false, "has_important": true}, {"id": 1632, "name": "Greydwarf_camp1", "category": "structure", "x": 2233.5, "z": -1726.7, "px": 2429.2, "py": 1753.3, "has_dungeon": false, "has_important": true}, {"id": 7575, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 7175.8, "z": -4934.8, "px": 3272.7, "py": 1205.8, "has_dungeon": false, "has_important": true}, {"id": 7576, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 4867.6, "z": 5825.2, "px": 2878.7, "py": 3042.2, "has_dungeon": false, "has_important": true}, {"id": 7577, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 7423.4, "z": -255.7, "px": 3314.9, "py": 2004.4, "has_dungeon": false, "has_important": true}, {"id": 7578, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 4028.3, "z": -6268.0, "px": 2735.5, "py": 978.3, "has_dungeon": false, "has_important": true}, {"id": 7579, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 318.0, "z": 7367.1, "px": 2102.3, "py": 3305.3, "has_dungeon": false, "has_important": true}, {"id": 7580, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -7104.3, "z": -1348.1, "px": 835.5, "py": 1817.9, "has_dungeon": false, "has_important": true}, {"id": 7581, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -6137.4, "z": -5446.9, "px": 1000.6, "py": 1118.4, "has_dungeon": false, "has_important": true}, {"id": 7582, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 8388.5, "z": -767.9, "px": 3479.6, "py": 1916.9, "has_dungeon": false, "has_important": true}, {"id": 7583, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 8440.6, "z": -2753.2, "px": 3488.5, "py": 1578.1, "has_dungeon": false, "has_important": true}, {"id": 7584, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 7550.0, "z": 2433.8, "px": 3336.5, "py": 2463.4, "has_dungeon": false, "has_important": true}, {"id": 7585, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 8836.5, "z": 449.9, "px": 3556.1, "py": 2124.8, "has_dungeon": false, "has_important": true}, {"id": 7586, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 6266.9, "z": -1346.4, "px": 3117.6, "py": 1818.2, "has_dungeon": false, "has_important": true}, {"id": 7587, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 5250.1, "z": 3334.0, "px": 2944.0, "py": 2617.0, "has_dungeon": false, "has_important": true}, {"id": 7588, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 7172.7, "z": 128.2, "px": 3272.1, "py": 2069.9, "has_dungeon": false, "has_important": true}, {"id": 7589, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -7358.9, "z": 4101.6, "px": 792.1, "py": 2748.0, "has_dungeon": false, "has_important": true}, {"id": 7590, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 7997.9, "z": -4413.8, "px": 3413.0, "py": 1294.7, "has_dungeon": false, "has_important": true}, {"id": 7591, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 188.1, "z": 7163.6, "px": 2080.1, "py": 3270.6, "has_dungeon": false, "has_important": true}, {"id": 7592, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -7490.1, "z": 1083.3, "px": 769.7, "py": 2232.9, "has_dungeon": false, "has_important": true}, {"id": 7593, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -7486.3, "z": 2878.4, "px": 770.3, "py": 2539.2, "has_dungeon": false, "has_important": true}, {"id": 7594, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 5496.2, "z": 3141.6, "px": 2986.0, "py": 2584.2, "has_dungeon": false, "has_important": true}, {"id": 7595, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -7288.5, "z": -3450.5, "px": 804.1, "py": 1459.1, "has_dungeon": false, "has_important": true}, {"id": 7596, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -6663.6, "z": -1669.4, "px": 910.7, "py": 1763.1, "has_dungeon": false, "has_important": true}, {"id": 7597, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 3463.3, "z": 5636.8, "px": 2639.1, "py": 3010.0, "has_dungeon": false, "has_important": true}, {"id": 7598, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -6402.6, "z": 3135.4, "px": 955.3, "py": 2583.1, "has_dungeon": false, "has_important": true}, {"id": 7599, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 5496.3, "z": 5636.5, "px": 2986.0, "py": 3010.0, "has_dungeon": false, "has_important": true}, {"id": 7600, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 4870.8, "z": -5825.2, "px": 2879.3, "py": 1053.8, "has_dungeon": false, "has_important": true}, {"id": 7601, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 5757.9, "z": -4223.2, "px": 3030.7, "py": 1327.2, "has_dungeon": false, "has_important": true}, {"id": 7602, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -9220.2, "z": 571.2, "px": 474.4, "py": 2145.5, "has_dungeon": false, "has_important": true}, {"id": 7603, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 4160.5, "z": -4542.5, "px": 2758.1, "py": 1272.7, "has_dungeon": false, "has_important": true}, {"id": 7604, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 4031.6, "z": -6404.4, "px": 2736.1, "py": 955.0, "has_dungeon": false, "has_important": true}, {"id": 7605, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 7428.1, "z": 4478.9, "px": 3315.7, "py": 2812.4, "has_dungeon": false, "has_important": true}, {"id": 7606, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 3716.3, "z": -5627.8, "px": 2682.2, "py": 1087.5, "has_dungeon": false, "has_important": true}, {"id": 7607, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -2183.2, "z": -6781.6, "px": 1675.4, "py": 890.6, "has_dungeon": false, "has_important": true}, {"id": 7608, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 7608.3, "z": -2364.8, "px": 3346.5, "py": 1644.4, "has_dungeon": false, "has_important": true}, {"id": 7609, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 3141.5, "z": 6522.4, "px": 2584.1, "py": 3161.2, "has_dungeon": false, "has_important": true}, {"id": 7610, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -8314.3, "z": 2296.3, "px": 629.0, "py": 2439.9, "has_dungeon": false, "has_important": true}, {"id": 7611, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -7421.9, "z": 709.5, "px": 781.3, "py": 2169.1, "has_dungeon": false, "has_important": true}, {"id": 7612, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 5817.6, "z": -4349.8, "px": 3040.9, "py": 1305.6, "has_dungeon": false, "has_important": true}, {"id": 7613, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -6652.9, "z": -3523.4, "px": 912.6, "py": 1446.7, "has_dungeon": false, "has_important": true}, {"id": 7614, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -5446.8, "z": 4544.0, "px": 1118.4, "py": 2823.5, "has_dungeon": false, "has_important": true}, {"id": 7615, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -7676.6, "z": 1339.0, "px": 737.9, "py": 2276.5, "has_dungeon": false, "has_important": true}, {"id": 7616, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 1337.3, "z": 6403.2, "px": 2276.2, "py": 3140.8, "has_dungeon": false, "has_important": true}, {"id": 7617, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 8383.6, "z": -1600.1, "px": 3478.8, "py": 1774.9, "has_dungeon": false, "has_important": true}, {"id": 7618, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 8773.5, "z": -893.6, "px": 3545.3, "py": 1895.5, "has_dungeon": false, "has_important": true}, {"id": 7619, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 2424.1, "z": -6656.8, "px": 2461.7, "py": 911.9, "has_dungeon": false, "has_important": true}, {"id": 7620, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 8705.0, "z": -1218.1, "px": 3533.7, "py": 1840.1, "has_dungeon": false, "has_important": true}, {"id": 7621, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -8381.6, "z": 2180.6, "px": 617.5, "py": 2420.2, "has_dungeon": false, "has_important": true}, {"id": 7622, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 4731.1, "z": -4736.4, "px": 2855.4, "py": 1239.7, "has_dungeon": false, "has_important": true}, {"id": 7623, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -967.4, "z": -7804.5, "px": 1882.9, "py": 716.0, "has_dungeon": false, "has_important": true}, {"id": 7624, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 3910.3, "z": -6527.5, "px": 2715.4, "py": 934.0, "has_dungeon": false, "has_important": true}, {"id": 7625, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 120.3, "z": 6984.0, "px": 2068.5, "py": 3239.9, "has_dungeon": false, "has_important": true}, {"id": 7626, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 8059.4, "z": 3073.3, "px": 3423.5, "py": 2572.5, "has_dungeon": false, "has_important": true}, {"id": 7627, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -63.7, "z": -6969.0, "px": 2037.1, "py": 858.6, "has_dungeon": false, "has_important": true}, {"id": 7628, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 3962.1, "z": -6655.1, "px": 2724.2, "py": 912.2, "has_dungeon": false, "has_important": true}, {"id": 7629, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 4926.1, "z": -5959.1, "px": 2888.7, "py": 1031.0, "has_dungeon": false, "has_important": true}, {"id": 7630, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -3064.3, "z": -6205.0, "px": 1525.0, "py": 989.0, "has_dungeon": false, "has_important": true}, {"id": 7631, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -6405.4, "z": -2241.4, "px": 954.8, "py": 1665.5, "has_dungeon": false, "has_important": true}, {"id": 7632, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 7611.1, "z": -4603.8, "px": 3347.0, "py": 1262.3, "has_dungeon": false, "has_important": true}, {"id": 7633, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -9276.9, "z": 703.2, "px": 464.7, "py": 2168.0, "has_dungeon": false, "has_important": true}, {"id": 7634, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -8896.7, "z": 1532.4, "px": 529.6, "py": 2309.5, "has_dungeon": false, "has_important": true}, {"id": 7635, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 6083.5, "z": 3330.8, "px": 3086.3, "py": 2616.5, "has_dungeon": false, "has_important": true}, {"id": 7636, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 5755.4, "z": 5696.3, "px": 3030.3, "py": 3020.2, "has_dungeon": false, "has_important": true}, {"id": 7637, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -9402.0, "z": 581.8, "px": 443.4, "py": 2147.3, "has_dungeon": false, "has_important": true}, {"id": 7638, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 6338.7, "z": 4281.8, "px": 3129.8, "py": 2778.8, "has_dungeon": false, "has_important": true}, {"id": 7639, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -4477.5, "z": -6782.7, "px": 1283.8, "py": 890.4, "has_dungeon": false, "has_important": true}, {"id": 7640, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 5563.4, "z": 5509.5, "px": 2997.5, "py": 2988.3, "has_dungeon": false, "has_important": true}, {"id": 7641, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -9729.3, "z": -1918.9, "px": 387.5, "py": 1720.5, "has_dungeon": false, "has_important": true}, {"id": 7642, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 8067.5, "z": 2809.4, "px": 3424.9, "py": 2527.5, "has_dungeon": false, "has_important": true}, {"id": 7643, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 314.3, "z": 7555.7, "px": 2101.6, "py": 3337.5, "has_dungeon": false, "has_important": true}, {"id": 7644, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 384.2, "z": -7426.2, "px": 2113.6, "py": 780.6, "has_dungeon": false, "has_important": true}, {"id": 7645, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 6909.1, "z": -133.1, "px": 3227.2, "py": 2025.3, "has_dungeon": false, "has_important": true}, {"id": 7646, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 9026.7, "z": -1598.2, "px": 3588.6, "py": 1775.2, "has_dungeon": false, "has_important": true}, {"id": 7647, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 8134.5, "z": -1793.5, "px": 3436.3, "py": 1741.9, "has_dungeon": false, "has_important": true}, {"id": 7648, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": 9094.7, "z": 1535.6, "px": 3600.2, "py": 2310.1, "has_dungeon": false, "has_important": true}, {"id": 7649, "name": "Mistlands_GuardTower1_new", "category": "structure", "x": -8130.9, "z": -3836.9, "px": 660.3, "py": 1393.2, "has_dungeon": false, "has_important": true}, {"id": 7650, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -8637.3, "z": 504.3, "px": 573.9, "py": 2134.1, "has_dungeon": false, "has_important": true}, {"id": 7651, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -9417.5, "z": -886.6, "px": 440.7, "py": 1896.7, "has_dungeon": false, "has_important": true}, {"id": 7652, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -8504.3, "z": 1792.3, "px": 596.6, "py": 2353.9, "has_dungeon": false, "has_important": false}, {"id": 7653, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 3765.3, "z": -6774.6, "px": 2690.6, "py": 891.8, "has_dungeon": false, "has_important": true}, {"id": 7654, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 4038.3, "z": 6090.8, "px": 2737.2, "py": 3087.5, "has_dungeon": false, "has_important": false}, {"id": 7655, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -513.0, "z": -6712.4, "px": 1960.4, "py": 902.4, "has_dungeon": false, "has_important": true}, {"id": 7656, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -8820.8, "z": 1223.7, "px": 542.6, "py": 2256.8, "has_dungeon": false, "has_important": true}, {"id": 7657, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -8585.7, "z": -1417.4, "px": 582.7, "py": 1806.1, "has_dungeon": false, "has_important": true}, {"id": 7658, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -8517.5, "z": -3271.6, "px": 594.3, "py": 1489.6, "has_dungeon": false, "has_important": true}, {"id": 7659, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 9276.9, "z": -2368.8, "px": 3631.3, "py": 1643.7, "has_dungeon": false, "has_important": true}, {"id": 7660, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 7751.6, "z": 2250.1, "px": 3370.9, "py": 2432.0, "has_dungeon": false, "has_important": true}, {"id": 7661, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -7542.2, "z": 4475.4, "px": 760.8, "py": 2811.8, "has_dungeon": false, "has_important": true}, {"id": 7662, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 7487.5, "z": -2315.1, "px": 3325.9, "py": 1652.9, "has_dungeon": false, "has_important": true}, {"id": 7663, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 4936.2, "z": -4861.6, "px": 2890.4, "py": 1218.3, "has_dungeon": false, "has_important": true}, {"id": 7664, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 2441.5, "z": -5764.5, "px": 2464.7, "py": 1064.2, "has_dungeon": false, "has_important": true}, {"id": 7665, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -7931.0, "z": -372.2, "px": 694.4, "py": 1984.5, "has_dungeon": false, "has_important": false}, {"id": 7666, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 4363.6, "z": 5942.8, "px": 2792.7, "py": 3062.2, "has_dungeon": false, "has_important": true}, {"id": 7667, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 9227.9, "z": -1352.2, "px": 3622.9, "py": 1817.2, "has_dungeon": false, "has_important": true}, {"id": 7668, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -2946.9, "z": 5502.3, "px": 1545.1, "py": 2987.1, "has_dungeon": false, "has_important": true}, {"id": 7669, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -6474.5, "z": -4347.9, "px": 943.0, "py": 1306.0, "has_dungeon": false, "has_important": true}, {"id": 7670, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 4345.4, "z": 6281.5, "px": 2789.6, "py": 3120.0, "has_dungeon": false, "has_important": true}, {"id": 7671, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -7235.9, "z": 1217.1, "px": 813.1, "py": 2255.7, "has_dungeon": false, "has_important": true}, {"id": 7672, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -2042.5, "z": -6665.0, "px": 1699.4, "py": 910.5, "has_dungeon": false, "has_important": true}, {"id": 7673, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 6271.2, "z": -4485.0, "px": 3118.3, "py": 1282.6, "has_dungeon": false, "has_important": true}, {"id": 7674, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -4417.3, "z": -5369.3, "px": 1294.1, "py": 1131.6, "has_dungeon": false, "has_important": true}, {"id": 7675, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -6600.6, "z": 3140.5, "px": 921.5, "py": 2584.0, "has_dungeon": false, "has_important": true}, {"id": 7676, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -7422.8, "z": 3909.1, "px": 781.2, "py": 2715.2, "has_dungeon": false, "has_important": true}, {"id": 7677, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -6982.4, "z": 518.2, "px": 856.3, "py": 2136.4, "has_dungeon": false, "has_important": false}, {"id": 7678, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -1856.1, "z": 7424.9, "px": 1731.2, "py": 3315.2, "has_dungeon": false, "has_important": true}, {"id": 7679, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 7998.2, "z": -1792.3, "px": 3413.0, "py": 1742.1, "has_dungeon": false, "has_important": true}, {"id": 7680, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 4744.1, "z": 5956.8, "px": 2857.7, "py": 3064.6, "has_dungeon": false, "has_important": true}, {"id": 7681, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -843.7, "z": 6978.1, "px": 1904.0, "py": 3238.9, "has_dungeon": false, "has_important": true}, {"id": 7682, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -5899.1, "z": -1988.8, "px": 1041.2, "py": 1708.6, "has_dungeon": false, "has_important": true}, {"id": 7683, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 7353.6, "z": -4926.5, "px": 3303.0, "py": 1207.2, "has_dungeon": false, "has_important": true}, {"id": 7684, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -5431.7, "z": 6332.7, "px": 1121.0, "py": 3128.8, "has_dungeon": false, "has_important": false}, {"id": 7685, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -6459.2, "z": -838.9, "px": 945.6, "py": 1904.8, "has_dungeon": false, "has_important": true}, {"id": 7686, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -3452.1, "z": 5250.4, "px": 1458.8, "py": 2944.1, "has_dungeon": false, "has_important": true}, {"id": 7687, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -5364.0, "z": -3063.8, "px": 1132.5, "py": 1525.1, "has_dungeon": false, "has_important": true}, {"id": 7688, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 8388.0, "z": -3329.1, "px": 3479.6, "py": 1479.8, "has_dungeon": false, "has_important": true}, {"id": 7689, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -5949.0, "z": 1094.4, "px": 1032.7, "py": 2234.8, "has_dungeon": false, "has_important": true}, {"id": 7690, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 56.7, "z": 7302.8, "px": 2057.7, "py": 3294.3, "has_dungeon": false, "has_important": true}, {"id": 7691, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -3783.2, "z": 5759.7, "px": 1402.3, "py": 3031.0, "has_dungeon": false, "has_important": true}, {"id": 7692, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 8636.5, "z": -1018.2, "px": 3522.0, "py": 1874.2, "has_dungeon": false, "has_important": true}, {"id": 7693, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -9600.4, "z": -1975.6, "px": 409.5, "py": 1710.8, "has_dungeon": false, "has_important": true}, {"id": 7694, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 2998.6, "z": 5766.6, "px": 2559.8, "py": 3032.2, "has_dungeon": false, "has_important": true}, {"id": 7695, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -7561.3, "z": -954.5, "px": 757.5, "py": 1885.1, "has_dungeon": false, "has_important": true}, {"id": 7696, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 1342.1, "z": -6464.8, "px": 2277.1, "py": 944.7, "has_dungeon": false, "has_important": true}, {"id": 7697, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 2100.9, "z": -7051.2, "px": 2406.6, "py": 844.6, "has_dungeon": false, "has_important": true}, {"id": 7698, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -9465.5, "z": 1026.0, "px": 432.6, "py": 2223.1, "has_dungeon": false, "has_important": true}, {"id": 7699, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 502.5, "z": -7608.3, "px": 2133.8, "py": 749.5, "has_dungeon": false, "has_important": false}, {"id": 7700, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -5893.0, "z": -2550.1, "px": 1042.3, "py": 1612.8, "has_dungeon": false, "has_important": true}, {"id": 7701, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 7861.8, "z": -4550.4, "px": 3389.7, "py": 1271.4, "has_dungeon": false, "has_important": false}, {"id": 7702, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -6647.2, "z": -2999.0, "px": 913.5, "py": 1536.2, "has_dungeon": false, "has_important": true}, {"id": 7703, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -6528.8, "z": -3319.6, "px": 933.8, "py": 1481.5, "has_dungeon": false, "has_important": true}, {"id": 7704, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 2814.0, "z": 6411.3, "px": 2528.3, "py": 3142.2, "has_dungeon": false, "has_important": false}, {"id": 7705, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -702.2, "z": -7499.0, "px": 1928.2, "py": 768.2, "has_dungeon": false, "has_important": true}, {"id": 7706, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -7156.4, "z": 955.7, "px": 826.6, "py": 2211.1, "has_dungeon": false, "has_important": true}, {"id": 7707, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -5637.1, "z": -3010.8, "px": 1085.9, "py": 1534.2, "has_dungeon": false, "has_important": true}, {"id": 7708, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 8887.4, "z": -956.9, "px": 3564.8, "py": 1884.7, "has_dungeon": false, "has_important": false}, {"id": 7709, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -8580.6, "z": 2234.5, "px": 583.6, "py": 2429.4, "has_dungeon": false, "has_important": true}, {"id": 7710, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 948.9, "z": -7544.0, "px": 2209.9, "py": 760.5, "has_dungeon": false, "has_important": true}, {"id": 7711, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -3000.0, "z": -5944.1, "px": 1536.0, "py": 1033.5, "has_dungeon": false, "has_important": true}, {"id": 7712, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 7615.9, "z": -3636.7, "px": 3347.8, "py": 1427.3, "has_dungeon": false, "has_important": true}, {"id": 7713, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -6404.5, "z": 709.8, "px": 955.0, "py": 2169.1, "has_dungeon": false, "has_important": true}, {"id": 7714, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -2498.1, "z": -5948.5, "px": 1621.7, "py": 1032.8, "has_dungeon": false, "has_important": true}, {"id": 7715, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 4662.5, "z": 6148.3, "px": 2843.7, "py": 3097.3, "has_dungeon": false, "has_important": true}, {"id": 7716, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 1461.0, "z": 7545.9, "px": 2297.3, "py": 3335.8, "has_dungeon": false, "has_important": true}, {"id": 7717, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -7238.9, "z": 514.3, "px": 812.6, "py": 2135.8, "has_dungeon": false, "has_important": true}, {"id": 7718, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -7426.9, "z": -2820.7, "px": 780.5, "py": 1566.6, "has_dungeon": false, "has_important": true}, {"id": 7719, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 7817.4, "z": -2231.0, "px": 3382.2, "py": 1667.2, "has_dungeon": false, "has_important": true}, {"id": 7720, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 4790.2, "z": -4601.5, "px": 2865.5, "py": 1262.7, "has_dungeon": false, "has_important": true}, {"id": 7721, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -8007.8, "z": -4414.0, "px": 681.3, "py": 1294.7, "has_dungeon": false, "has_important": true}, {"id": 7722, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -7028.9, "z": 756.2, "px": 848.4, "py": 2177.1, "has_dungeon": false, "has_important": true}, {"id": 7723, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -6069.7, "z": -5559.5, "px": 1012.1, "py": 1099.2, "has_dungeon": false, "has_important": true}, {"id": 7724, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -7233.5, "z": 3850.9, "px": 813.5, "py": 2705.2, "has_dungeon": false, "has_important": true}, {"id": 7725, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 6727.2, "z": 5255.0, "px": 3196.1, "py": 2944.9, "has_dungeon": false, "has_important": true}, {"id": 7726, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -7866.8, "z": -2741.7, "px": 705.4, "py": 1580.1, "has_dungeon": false, "has_important": true}, {"id": 7727, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -1733.7, "z": 7104.7, "px": 1752.1, "py": 3260.5, "has_dungeon": false, "has_important": true}, {"id": 7728, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": 8320.0, "z": 1021.4, "px": 3467.9, "py": 2222.3, "has_dungeon": false, "has_important": true}, {"id": 7729, "name": "Mistlands_GuardTower1_ruined_new", "category": "structure", "x": -2696.8, "z": -5625.3, "px": 1587.7, "py": 1087.9, "has_dungeon": false, "has_important": true}, {"id": 7730, "name": "Mistlands_GuardTower1_ruined_new2", "category": "structure", "x": 4341.8, "z": 5578.3, "px": 2789.0, "py": 3000.0, "has_dungeon": false, "has_important": true}, {"id": 7731, "name": "Mistlands_GuardTower1_ruined_new2", "category": "structure", "x": 6469.1, "z": 2808.2, "px": 3152.1, "py": 2527.3, "has_dungeon": false, "has_important": true}, {"id": 7732, "name": "Mistlands_GuardTower1_ruined_new2", "category": "structure", "x": 261.0, "z": -7366.1, "px": 2092.5, "py": 790.9, "has_dungeon": false, "has_important": false}, {"id": 7733, "name": "Mistlands_GuardTower1_ruined_new2", "category": "structure", "x": -7734.3, "z": -3000.3, "px": 728.0, "py": 1535.9, "has_dungeon": false, "has_important": true}, {"id": 7734, "name": "Mistlands_GuardTower1_ruined_new2", "category": "structure", "x": 8895.0, "z": -2168.7, "px": 3566.1, "py": 1677.9, "has_dungeon": false, "has_important": true}, {"id": 7735, "name": "Mistlands_GuardTower1_ruined_new2", "category": "structure", "x": 5942.2, "z": 3066.0, "px": 3062.1, "py": 2571.3, "has_dungeon": false, "has_important": true}, {"id": 7736, "name": "Mistlands_GuardTower1_ruined_new2", "category": "structure", "x": 1013.1, "z": 7803.9, "px": 2220.9, "py": 3379.9, "has_dungeon": false, "has_important": true}, {"id": 7737, "name": "Mistlands_GuardTower1_ruined_new2", "category": "structure", "x": 7671.8, "z": -2248.2, "px": 3357.3, "py": 1664.3, "has_dungeon": false, "has_important": true}, {"id": 7738, "name": "Mistlands_GuardTower1_ruined_new2", "category": "structure", "x": 7302.6, "z": -128.0, "px": 3294.3, "py": 2026.2, "has_dungeon": false, "has_important": true}, {"id": 7739, "name": "Mistlands_GuardTower1_ruined_new2", "category": "structure", "x": -263.4, "z": -6455.5, "px": 2003.0, "py": 946.3, "has_dungeon": false, "has_important": true}, {"id": 7740, "name": "Mistlands_GuardTower1_ruined_new2", "category": "structure", "x": 2298.6, "z": -6409.5, "px": 2440.3, "py": 954.1, "has_dungeon": false, "has_important": true}, {"id": 7741, "name": "Mistlands_GuardTower1_ruined_new2", "category": "structure", "x": 9588.2, "z": 1736.5, "px": 3684.4, "py": 2344.4, "has_dungeon": false, "has_important": true}, {"id": 7742, "name": "Mistlands_GuardTower1_ruined_new2", "category": "structure", "x": 457.0, "z": 6837.4, "px": 2126.0, "py": 3214.9, "has_dungeon": false, "has_important": true}, {"id": 7743, "name": "Mistlands_GuardTower1_ruined_new2", "category": "structure", "x": -3083.5, "z": -6342.7, "px": 1521.7, "py": 965.5, "has_dungeon": false, "has_important": true}, {"id": 7744, "name": "Mistlands_GuardTower1_ruined_new2", "category": "structure", "x": -5954.9, "z": 3006.8, "px": 1031.7, "py": 2561.2, "has_dungeon": false, "has_important": true}, {"id": 7745, "name": "Mistlands_GuardTower1_ruined_new2", "category": "structure", "x": 9024.7, "z": -2955.2, "px": 3588.2, "py": 1543.6, "has_dungeon": false, "has_important": true}, {"id": 7746, "name": "Mistlands_GuardTower1_ruined_new2", "category": "structure", "x": -7040.0, "z": -1995.1, "px": 846.5, "py": 1707.5, "has_dungeon": false, "has_important": true}, {"id": 7747, "name": "Mistlands_GuardTower1_ruined_new2", "category": "structure", "x": 3850.5, "z": 5695.4, "px": 2705.2, "py": 3020.0, "has_dungeon": false, "has_important": true}, {"id": 7748, "name": "Mistlands_GuardTower1_ruined_new2", "category": "structure", "x": -9225.0, "z": 1019.2, "px": 473.6, "py": 2221.9, "has_dungeon": false, "has_important": true}, {"id": 7749, "name": "Mistlands_GuardTower1_ruined_new2", "category": "structure", "x": -1975.5, "z": 6793.9, "px": 1710.8, "py": 3207.5, "has_dungeon": false, "has_important": true}, {"id": 7750, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -5698.7, "z": -5447.2, "px": 1075.4, "py": 1118.3, "has_dungeon": false, "has_important": true}, {"id": 7751, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -5956.9, "z": 1222.3, "px": 1031.4, "py": 2256.6, "has_dungeon": false, "has_important": true}, {"id": 7752, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 6842.2, "z": -702.6, "px": 3215.7, "py": 1928.1, "has_dungeon": false, "has_important": true}, {"id": 7753, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 3132.9, "z": 7103.4, "px": 2582.7, "py": 3260.3, "has_dungeon": false, "has_important": true}, {"id": 7754, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 1729.4, "z": -6663.5, "px": 2343.2, "py": 910.8, "has_dungeon": false, "has_important": true}, {"id": 7755, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -3847.5, "z": 6335.2, "px": 1391.4, "py": 3129.2, "has_dungeon": false, "has_important": true}, {"id": 7756, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -6392.8, "z": 574.2, "px": 957.0, "py": 2146.0, "has_dungeon": false, "has_important": true}, {"id": 7757, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -8248.7, "z": -3140.4, "px": 640.2, "py": 1512.0, "has_dungeon": false, "has_important": true}, {"id": 7758, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -1407.2, "z": 7363.1, "px": 1807.8, "py": 3304.6, "has_dungeon": false, "has_important": true}, {"id": 7759, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 2877.1, "z": 5818.4, "px": 2539.0, "py": 3041.0, "has_dungeon": false, "has_important": true}, {"id": 7760, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -7359.1, "z": -2559.7, "px": 792.0, "py": 1611.1, "has_dungeon": false, "has_important": true}, {"id": 7761, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 1209.0, "z": 7295.2, "px": 2254.3, "py": 3293.0, "has_dungeon": false, "has_important": true}, {"id": 7762, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 8322.9, "z": -3010.1, "px": 3468.4, "py": 1534.3, "has_dungeon": false, "has_important": true}, {"id": 7763, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 2622.0, "z": 6073.6, "px": 2495.5, "py": 3084.6, "has_dungeon": false, "has_important": true}, {"id": 7764, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 9464.8, "z": -2424.5, "px": 3663.3, "py": 1634.2, "has_dungeon": false, "has_important": true}, {"id": 7765, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -1720.6, "z": -7111.2, "px": 1754.4, "py": 834.4, "has_dungeon": false, "has_important": true}, {"id": 7766, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -9530.3, "z": -1852.9, "px": 421.5, "py": 1731.8, "has_dungeon": false, "has_important": true}, {"id": 7767, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -7544.7, "z": -3399.0, "px": 760.4, "py": 1467.9, "has_dungeon": false, "has_important": true}, {"id": 7768, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -1976.4, "z": -5895.9, "px": 1710.7, "py": 1041.8, "has_dungeon": false, "has_important": true}, {"id": 7769, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 379.3, "z": 7164.6, "px": 2112.7, "py": 3270.8, "has_dungeon": false, "has_important": true}, {"id": 7770, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 4921.5, "z": 6072.0, "px": 2887.9, "py": 3084.3, "has_dungeon": false, "has_important": true}, {"id": 7771, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 7936.6, "z": 1795.6, "px": 3402.5, "py": 2354.4, "has_dungeon": false, "has_important": true}, {"id": 7772, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -2758.7, "z": 6525.8, "px": 1577.2, "py": 3161.7, "has_dungeon": false, "has_important": true}, {"id": 7773, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 8442.1, "z": -1081.8, "px": 3488.8, "py": 1863.4, "has_dungeon": false, "has_important": true}, {"id": 7774, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 5820.3, "z": 2557.6, "px": 3041.3, "py": 2484.5, "has_dungeon": false, "has_important": true}, {"id": 7775, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 6022.2, "z": 1913.3, "px": 3075.8, "py": 2374.5, "has_dungeon": false, "has_important": true}, {"id": 7776, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -9468.6, "z": 898.3, "px": 432.0, "py": 2201.3, "has_dungeon": false, "has_important": true}, {"id": 7777, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 7098.5, "z": 3783.0, "px": 3259.5, "py": 2693.6, "has_dungeon": false, "has_important": true}, {"id": 7778, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 9095.9, "z": 1351.9, "px": 3600.4, "py": 2278.7, "has_dungeon": false, "has_important": true}, {"id": 7779, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 4222.3, "z": 6081.1, "px": 2768.6, "py": 3085.8, "has_dungeon": false, "has_important": true}, {"id": 7780, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 2239.9, "z": -6663.5, "px": 2430.3, "py": 910.8, "has_dungeon": false, "has_important": true}, {"id": 7781, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 2045.0, "z": -6590.9, "px": 2397.0, "py": 923.2, "has_dungeon": false, "has_important": true}, {"id": 7782, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -8200.0, "z": -3392.3, "px": 648.5, "py": 1469.0, "has_dungeon": false, "has_important": true}, {"id": 7783, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 8510.1, "z": -577.2, "px": 3500.4, "py": 1949.5, "has_dungeon": false, "has_important": true}, {"id": 7784, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 6333.6, "z": 2887.8, "px": 3128.9, "py": 2540.9, "has_dungeon": false, "has_important": true}, {"id": 7785, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -2937.0, "z": 6146.3, "px": 1546.8, "py": 3097.0, "has_dungeon": false, "has_important": true}, {"id": 7786, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 4230.0, "z": -6151.6, "px": 2769.9, "py": 998.1, "has_dungeon": false, "has_important": true}, {"id": 7787, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -5306.6, "z": 4800.3, "px": 1142.3, "py": 2867.3, "has_dungeon": false, "has_important": true}, {"id": 7788, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 3837.1, "z": -5441.0, "px": 2702.9, "py": 1119.4, "has_dungeon": false, "has_important": true}, {"id": 7789, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 8775.0, "z": 953.4, "px": 3545.6, "py": 2210.7, "has_dungeon": false, "has_important": true}, {"id": 7790, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -2882.0, "z": -6147.0, "px": 1556.1, "py": 998.9, "has_dungeon": false, "has_important": true}, {"id": 7791, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 3773.4, "z": 6009.1, "px": 2692.0, "py": 3073.6, "has_dungeon": false, "has_important": true}, {"id": 7792, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 7684.2, "z": 2815.0, "px": 3359.4, "py": 2528.4, "has_dungeon": false, "has_important": true}, {"id": 7793, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -7425.8, "z": -762.8, "px": 780.7, "py": 1917.8, "has_dungeon": false, "has_important": true}, {"id": 7794, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -9338.8, "z": 825.7, "px": 454.2, "py": 2188.9, "has_dungeon": false, "has_important": true}, {"id": 7795, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 4154.6, "z": -5051.2, "px": 2757.1, "py": 1185.9, "has_dungeon": false, "has_important": true}, {"id": 7796, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 3963.4, "z": -5382.0, "px": 2724.4, "py": 1129.5, "has_dungeon": false, "has_important": true}, {"id": 7797, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 9018.2, "z": -1029.7, "px": 3587.1, "py": 1872.3, "has_dungeon": false, "has_important": true}, {"id": 7798, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 388.6, "z": 6973.8, "px": 2114.3, "py": 3238.2, "has_dungeon": false, "has_important": true}, {"id": 7799, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 9279.2, "z": -1912.1, "px": 3631.7, "py": 1721.7, "has_dungeon": false, "has_important": true}, {"id": 7800, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 7097.4, "z": -5062.8, "px": 3259.3, "py": 1183.9, "has_dungeon": false, "has_important": true}, {"id": 7801, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -2756.4, "z": -6465.0, "px": 1577.6, "py": 944.6, "has_dungeon": false, "has_important": true}, {"id": 7802, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 4420.9, "z": 5758.4, "px": 2802.5, "py": 3030.8, "has_dungeon": false, "has_important": true}, {"id": 7803, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -7682.5, "z": -2813.7, "px": 736.9, "py": 1567.8, "has_dungeon": false, "has_important": true}, {"id": 7804, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 4476.4, "z": -4487.3, "px": 2812.0, "py": 1282.2, "has_dungeon": false, "has_important": true}, {"id": 7805, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -770.1, "z": 6727.9, "px": 1916.6, "py": 3196.2, "has_dungeon": false, "has_important": true}, {"id": 7806, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 8259.2, "z": 2555.0, "px": 3457.6, "py": 2484.1, "has_dungeon": false, "has_important": true}, {"id": 7807, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 7611.2, "z": -2106.1, "px": 3347.0, "py": 1688.6, "has_dungeon": false, "has_important": true}, {"id": 7808, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 6530.5, "z": 3002.0, "px": 3162.5, "py": 2560.3, "has_dungeon": false, "has_important": true}, {"id": 7809, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 7302.5, "z": 4222.5, "px": 3294.3, "py": 2768.6, "has_dungeon": false, "has_important": true}, {"id": 7810, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -1916.3, "z": -7041.2, "px": 1721.0, "py": 846.3, "has_dungeon": false, "has_important": true}, {"id": 7811, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 1541.3, "z": -6585.5, "px": 2311.0, "py": 924.1, "has_dungeon": false, "has_important": true}, {"id": 7812, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -1471.2, "z": -7427.0, "px": 1796.9, "py": 780.5, "has_dungeon": false, "has_important": true}, {"id": 7813, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -5432.7, "z": 5880.4, "px": 1120.8, "py": 3051.6, "has_dungeon": false, "has_important": true}, {"id": 7814, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 5953.4, "z": 5882.8, "px": 3064.0, "py": 3052.0, "has_dungeon": false, "has_important": true}, {"id": 7815, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 7557.4, "z": -4741.1, "px": 3337.8, "py": 1238.9, "has_dungeon": false, "has_important": true}, {"id": 7816, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 2809.6, "z": 5628.1, "px": 2527.5, "py": 3008.5, "has_dungeon": false, "has_important": true}, {"id": 7817, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -7237.5, "z": 1347.3, "px": 812.8, "py": 2277.9, "has_dungeon": false, "has_important": true}, {"id": 7818, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -2046.0, "z": -7047.5, "px": 1698.8, "py": 845.2, "has_dungeon": false, "has_important": true}, {"id": 7819, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 1157.7, "z": 7100.9, "px": 2245.6, "py": 3259.9, "has_dungeon": false, "has_important": true}, {"id": 7820, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 9084.3, "z": -1732.5, "px": 3598.4, "py": 1752.3, "has_dungeon": false, "has_important": true}, {"id": 7821, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 4161.1, "z": 4676.5, "px": 2758.2, "py": 2846.1, "has_dungeon": false, "has_important": true}, {"id": 7822, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 2171.7, "z": -6469.5, "px": 2418.6, "py": 943.9, "has_dungeon": false, "has_important": true}, {"id": 7823, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": 7544.4, "z": -3776.5, "px": 3335.6, "py": 1403.5, "has_dungeon": false, "has_important": true}, {"id": 7824, "name": "Mistlands_GuardTower2_new", "category": "structure", "x": -5061.2, "z": 4793.4, "px": 1184.2, "py": 2866.1, "has_dungeon": false, "has_important": true}, {"id": 7825, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 5954.4, "z": 5050.3, "px": 3064.2, "py": 2909.9, "has_dungeon": false, "has_important": true}, {"id": 7826, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -2691.8, "z": 6400.1, "px": 1588.6, "py": 3140.3, "has_dungeon": false, "has_important": true}, {"id": 7827, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 8698.8, "z": -2936.1, "px": 3532.6, "py": 1546.9, "has_dungeon": false, "has_important": true}, {"id": 7828, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 9606.1, "z": -761.8, "px": 3687.4, "py": 1918.0, "has_dungeon": false, "has_important": true}, {"id": 7829, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -8836.4, "z": 1410.3, "px": 539.9, "py": 2288.7, "has_dungeon": false, "has_important": true}, {"id": 7830, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 6138.7, "z": -4474.4, "px": 3095.7, "py": 1284.4, "has_dungeon": false, "has_important": true}, {"id": 7831, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -1592.3, "z": 7489.3, "px": 1776.2, "py": 3326.2, "has_dungeon": false, "has_important": true}, {"id": 7832, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -6340.2, "z": 3705.0, "px": 965.9, "py": 2680.3, "has_dungeon": false, "has_important": true}, {"id": 7833, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 4282.2, "z": -4616.0, "px": 2778.8, "py": 1260.2, "has_dungeon": false, "has_important": true}, {"id": 7834, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -8130.2, "z": -313.4, "px": 660.4, "py": 1994.5, "has_dungeon": false, "has_important": true}, {"id": 7835, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 1086.9, "z": -7365.5, "px": 2233.5, "py": 791.0, "has_dungeon": false, "has_important": true}, {"id": 7836, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 5821.2, "z": 5185.0, "px": 3041.5, "py": 2932.9, "has_dungeon": false, "has_important": true}, {"id": 7837, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -1339.3, "z": -6266.3, "px": 1819.4, "py": 978.6, "has_dungeon": false, "has_important": true}, {"id": 7838, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 7615.0, "z": -66.6, "px": 3347.6, "py": 2036.6, "has_dungeon": false, "has_important": true}, {"id": 7839, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 8642.5, "z": 711.8, "px": 3523.0, "py": 2169.5, "has_dungeon": false, "has_important": true}, {"id": 7840, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 8773.2, "z": -2819.3, "px": 3545.3, "py": 1566.8, "has_dungeon": false, "has_important": true}, {"id": 7841, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -8250.8, "z": -444.8, "px": 639.9, "py": 1972.1, "has_dungeon": false, "has_important": true}, {"id": 7842, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 5891.8, "z": 2438.2, "px": 3053.5, "py": 2464.1, "has_dungeon": false, "has_important": true}, {"id": 7843, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 7746.3, "z": 4220.3, "px": 3370.0, "py": 2768.3, "has_dungeon": false, "has_important": true}, {"id": 7844, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 7045.3, "z": -131.2, "px": 3250.4, "py": 2025.6, "has_dungeon": false, "has_important": true}, {"id": 7845, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -8578.1, "z": 192.6, "px": 584.0, "py": 2080.9, "has_dungeon": false, "has_important": true}, {"id": 7846, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -3136.3, "z": 6151.6, "px": 1512.7, "py": 3097.9, "has_dungeon": false, "has_important": true}, {"id": 7847, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -8576.6, "z": 1533.8, "px": 584.3, "py": 2309.8, "has_dungeon": false, "has_important": true}, {"id": 7848, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 6140.1, "z": 2812.1, "px": 3095.9, "py": 2527.9, "has_dungeon": false, "has_important": true}, {"id": 7849, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -7487.1, "z": 953.5, "px": 770.2, "py": 2210.7, "has_dungeon": false, "has_important": true}, {"id": 7850, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -9144.3, "z": -2438.5, "px": 487.4, "py": 1631.8, "has_dungeon": false, "has_important": true}, {"id": 7851, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 8763.7, "z": -1026.8, "px": 3543.7, "py": 1872.8, "has_dungeon": false, "has_important": true}, {"id": 7852, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 3960.1, "z": -5702.6, "px": 2723.9, "py": 1074.8, "has_dungeon": false, "has_important": true}, {"id": 7853, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 4163.4, "z": -5954.3, "px": 2758.6, "py": 1031.8, "has_dungeon": false, "has_important": true}, {"id": 7854, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -2170.7, "z": 7107.3, "px": 1677.5, "py": 3261.0, "has_dungeon": false, "has_important": true}, {"id": 7855, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -6075.1, "z": -1086.8, "px": 1011.2, "py": 1862.5, "has_dungeon": false, "has_important": true}, {"id": 7856, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -8707.7, "z": -1596.1, "px": 561.9, "py": 1775.6, "has_dungeon": false, "has_important": true}, {"id": 7857, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 9208.9, "z": -1153.3, "px": 3619.7, "py": 1851.2, "has_dungeon": false, "has_important": true}, {"id": 7858, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 9156.7, "z": -2108.2, "px": 3610.7, "py": 1688.2, "has_dungeon": false, "has_important": true}, {"id": 7859, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -1080.3, "z": -7545.9, "px": 1863.6, "py": 760.2, "has_dungeon": false, "has_important": true}, {"id": 7860, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 2566.9, "z": -5887.5, "px": 2486.1, "py": 1043.2, "has_dungeon": false, "has_important": true}, {"id": 7861, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -6533.8, "z": -4475.4, "px": 932.9, "py": 1284.2, "has_dungeon": false, "has_important": true}, {"id": 7862, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -8315.9, "z": -3512.0, "px": 628.8, "py": 1448.6, "has_dungeon": false, "has_important": true}, {"id": 7863, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -7357.7, "z": 1403.5, "px": 792.3, "py": 2287.5, "has_dungeon": false, "has_important": true}, {"id": 7864, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 8198.8, "z": -2879.2, "px": 3447.3, "py": 1556.6, "has_dungeon": false, "has_important": true}, {"id": 7865, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 9080.4, "z": -1466.8, "px": 3597.7, "py": 1797.7, "has_dungeon": false, "has_important": true}, {"id": 7866, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 3905.0, "z": -5562.7, "px": 2714.5, "py": 1098.6, "has_dungeon": false, "has_important": true}, {"id": 7867, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -1607.6, "z": -5959.5, "px": 1773.6, "py": 1030.9, "has_dungeon": false, "has_important": true}, {"id": 7868, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 3078.7, "z": 6266.7, "px": 2573.4, "py": 3117.5, "has_dungeon": false, "has_important": true}, {"id": 7869, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 8571.4, "z": 440.6, "px": 3510.9, "py": 2123.2, "has_dungeon": false, "has_important": true}, {"id": 7870, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 9401.5, "z": 1721.6, "px": 3652.5, "py": 2341.8, "has_dungeon": false, "has_important": true}, {"id": 7871, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -3064.2, "z": 6397.6, "px": 1525.0, "py": 3139.9, "has_dungeon": false, "has_important": true}, {"id": 7872, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": -8390.1, "z": 7.7, "px": 616.1, "py": 2049.3, "has_dungeon": false, "has_important": true}, {"id": 7873, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 3012.5, "z": 6393.2, "px": 2562.1, "py": 3139.1, "has_dungeon": false, "has_important": true}, {"id": 7874, "name": "Mistlands_GuardTower3_new", "category": "structure", "x": 3962.0, "z": -5952.5, "px": 2724.2, "py": 1032.1, "has_dungeon": false, "has_important": true}, {"id": 7875, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": -8899.5, "z": 1725.7, "px": 529.2, "py": 2342.5, "has_dungeon": false, "has_important": true}, {"id": 7876, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": -9083.8, "z": -2299.1, "px": 497.7, "py": 1655.6, "has_dungeon": false, "has_important": true}, {"id": 7877, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": -7545.9, "z": 1274.7, "px": 760.2, "py": 2265.5, "has_dungeon": false, "has_important": true}, {"id": 7878, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 8328.1, "z": 2122.9, "px": 3469.3, "py": 2410.3, "has_dungeon": false, "has_important": true}, {"id": 7879, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 9354.0, "z": -1608.3, "px": 3644.4, "py": 1773.5, "has_dungeon": false, "has_important": true}, {"id": 7880, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 5960.0, "z": -4362.9, "px": 3065.2, "py": 1303.4, "has_dungeon": false, "has_important": true}, {"id": 7881, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 5626.2, "z": 6070.8, "px": 3008.2, "py": 3084.1, "has_dungeon": false, "has_important": false}, {"id": 7882, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 8643.7, "z": 570.5, "px": 3523.2, "py": 2145.4, "has_dungeon": false, "has_important": true}, {"id": 7883, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": -4484.3, "z": -4416.7, "px": 1282.7, "py": 1294.2, "has_dungeon": false, "has_important": true}, {"id": 7884, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": -844.0, "z": -7736.5, "px": 1904.0, "py": 727.6, "has_dungeon": false, "has_important": true}, {"id": 7885, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 9604.7, "z": -893.3, "px": 3687.2, "py": 1895.5, "has_dungeon": false, "has_important": true}, {"id": 7886, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 4229.2, "z": 5384.1, "px": 2769.8, "py": 2966.9, "has_dungeon": false, "has_important": true}, {"id": 7887, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": -1976.3, "z": 7176.6, "px": 1710.7, "py": 3272.8, "has_dungeon": false, "has_important": true}, {"id": 7888, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 393.5, "z": -7284.4, "px": 2115.2, "py": 804.8, "has_dungeon": false, "has_important": true}, {"id": 7889, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": -8189.6, "z": -4096.3, "px": 650.3, "py": 1348.9, "has_dungeon": false, "has_important": true}, {"id": 7890, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": -7496.6, "z": -3073.6, "px": 768.6, "py": 1523.4, "has_dungeon": false, "has_important": true}, {"id": 7891, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": -1344.0, "z": -5953.4, "px": 1818.6, "py": 1032.0, "has_dungeon": false, "has_important": true}, {"id": 7892, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 7549.6, "z": -3511.6, "px": 3336.5, "py": 1448.7, "has_dungeon": false, "has_important": true}, {"id": 7893, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 776.9, "z": -7609.5, "px": 2180.6, "py": 749.3, "has_dungeon": false, "has_important": true}, {"id": 7894, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 8767.0, "z": 324.6, "px": 3544.2, "py": 2103.4, "has_dungeon": false, "has_important": true}, {"id": 7895, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 646.1, "z": 6916.5, "px": 2158.3, "py": 3228.4, "has_dungeon": false, "has_important": true}, {"id": 7896, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": -7880.7, "z": -191.8, "px": 703.0, "py": 2015.3, "has_dungeon": false, "has_important": true}, {"id": 7897, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 7355.4, "z": -4793.1, "px": 3303.3, "py": 1230.0, "has_dungeon": false, "has_important": true}, {"id": 7898, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 1224.9, "z": -7482.7, "px": 2257.0, "py": 771.0, "has_dungeon": false, "has_important": true}, {"id": 7899, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 4097.2, "z": -6090.9, "px": 2747.3, "py": 1008.5, "has_dungeon": false, "has_important": true}, {"id": 7900, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 6662.7, "z": 2814.1, "px": 3185.1, "py": 2528.3, "has_dungeon": false, "has_important": true}, {"id": 7901, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 2942.4, "z": 6262.6, "px": 2550.2, "py": 3116.8, "has_dungeon": false, "has_important": true}, {"id": 7902, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 1332.1, "z": 7416.8, "px": 2275.3, "py": 3313.8, "has_dungeon": false, "has_important": true}, {"id": 7903, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 7875.8, "z": 2937.2, "px": 3392.1, "py": 2549.3, "has_dungeon": false, "has_important": true}, {"id": 7904, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": -1594.9, "z": -7492.6, "px": 1775.8, "py": 769.3, "has_dungeon": false, "has_important": true}, {"id": 7905, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": -5238.4, "z": 6075.0, "px": 1154.0, "py": 3084.8, "has_dungeon": false, "has_important": true}, {"id": 7906, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 7924.8, "z": 2251.0, "px": 3400.5, "py": 2432.2, "has_dungeon": false, "has_important": true}, {"id": 7907, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 6409.2, "z": 4988.8, "px": 3141.8, "py": 2899.4, "has_dungeon": false, "has_important": true}, {"id": 7908, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 5956.9, "z": 2175.3, "px": 3064.6, "py": 2419.3, "has_dungeon": false, "has_important": false}, {"id": 7909, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": -1146.4, "z": -6089.7, "px": 1852.3, "py": 1008.7, "has_dungeon": false, "has_important": true}, {"id": 7910, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 7418.3, "z": 4298.3, "px": 3314.1, "py": 2781.6, "has_dungeon": false, "has_important": true}, {"id": 7911, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": -6475.1, "z": 3261.0, "px": 942.9, "py": 2604.5, "has_dungeon": false, "has_important": true}, {"id": 7912, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 3014.2, "z": 6649.2, "px": 2562.4, "py": 3182.8, "has_dungeon": false, "has_important": true}, {"id": 7913, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 4156.5, "z": -5509.6, "px": 2757.4, "py": 1107.7, "has_dungeon": false, "has_important": true}, {"id": 7914, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 7939.1, "z": 2805.3, "px": 3402.9, "py": 2526.8, "has_dungeon": false, "has_important": false}, {"id": 7915, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 4812.0, "z": 6148.4, "px": 2869.2, "py": 3097.3, "has_dungeon": false, "has_important": true}, {"id": 7916, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": -8649.1, "z": 1341.7, "px": 571.9, "py": 2277.0, "has_dungeon": false, "has_important": true}, {"id": 7917, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 7422.1, "z": -639.4, "px": 3314.7, "py": 1938.9, "has_dungeon": false, "has_important": true}, {"id": 7918, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 7221.6, "z": -3637.5, "px": 3280.5, "py": 1427.2, "has_dungeon": false, "has_important": true}, {"id": 7919, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": -6966.1, "z": -1793.9, "px": 859.1, "py": 1741.8, "has_dungeon": false, "has_important": true}, {"id": 7920, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": -7096.0, "z": 4032.9, "px": 836.9, "py": 2736.3, "has_dungeon": false, "has_important": true}, {"id": 7921, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 9211.3, "z": -1797.1, "px": 3620.1, "py": 1741.3, "has_dungeon": false, "has_important": true}, {"id": 7922, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": -959.7, "z": -7482.9, "px": 1884.2, "py": 770.9, "has_dungeon": false, "has_important": true}, {"id": 7923, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": 4170.0, "z": -4802.8, "px": 2759.7, "py": 1228.3, "has_dungeon": false, "has_important": true}, {"id": 7924, "name": "Mistlands_GuardTower3_ruined_new", "category": "structure", "x": -5364.1, "z": 5753.7, "px": 1132.5, "py": 3030.0, "has_dungeon": false, "has_important": true}, {"id": 2185, "name": "Ruin1", "category": "structure", "x": 2287.6, "z": -4367.3, "px": 2438.4, "py": 1302.6, "has_dungeon": false, "has_important": true}, {"id": 2186, "name": "Ruin1", "category": "structure", "x": 2258.0, "z": 12.9, "px": 2433.4, "py": 2050.2, "has_dungeon": false, "has_important": true}, {"id": 2187, "name": "Ruin1", "category": "structure", "x": -4223.7, "z": -127.5, "px": 1327.2, "py": 2026.2, "has_dungeon": false, "has_important": true}, {"id": 2188, "name": "Ruin1", "category": "structure", "x": -4595.8, "z": 5576.1, "px": 1263.7, "py": 2999.7, "has_dungeon": false, "has_important": true}, {"id": 2189, "name": "Ruin1", "category": "structure", "x": 5766.8, "z": 1600.8, "px": 3032.2, "py": 2321.2, "has_dungeon": false, "has_important": true}, {"id": 2190, "name": "Ruin1", "category": "structure", "x": 1164.0, "z": -5620.2, "px": 2246.7, "py": 1088.8, "has_dungeon": false, "has_important": true}, {"id": 2191, "name": "Ruin1", "category": "structure", "x": -7095.2, "z": 2573.7, "px": 837.1, "py": 2487.2, "has_dungeon": false, "has_important": true}, {"id": 2192, "name": "Ruin1", "category": "structure", "x": -8365.3, "z": -1414.7, "px": 620.3, "py": 1806.6, "has_dungeon": false, "has_important": true}, {"id": 2193, "name": "Ruin1", "category": "structure", "x": -6861.1, "z": 5377.7, "px": 877.0, "py": 2965.8, "has_dungeon": false, "has_important": true}, {"id": 2194, "name": "Ruin1", "category": "structure", "x": 386.7, "z": 5359.7, "px": 2114.0, "py": 2962.7, "has_dungeon": false, "has_important": true}, {"id": 2195, "name": "Ruin1", "category": "structure", "x": -3885.4, "z": -469.0, "px": 1384.9, "py": 1968.0, "has_dungeon": false, "has_important": true}, {"id": 2196, "name": "Ruin1", "category": "structure", "x": -2413.7, "z": -6267.1, "px": 1636.1, "py": 978.4, "has_dungeon": false, "has_important": true}, {"id": 2197, "name": "Ruin1", "category": "structure", "x": 2453.0, "z": -3574.8, "px": 2466.6, "py": 1437.9, "has_dungeon": false, "has_important": true}, {"id": 2198, "name": "Ruin1", "category": "structure", "x": 2925.0, "z": -81.4, "px": 2547.2, "py": 2034.1, "has_dungeon": false, "has_important": true}, {"id": 2199, "name": "Ruin1", "category": "structure", "x": 1808.2, "z": -4287.3, "px": 2356.6, "py": 1316.3, "has_dungeon": false, "has_important": true}, {"id": 2200, "name": "Ruin1", "category": "structure", "x": -4398.8, "z": 1776.6, "px": 1297.3, "py": 2351.2, "has_dungeon": false, "has_important": true}, {"id": 2201, "name": "Ruin1", "category": "structure", "x": 879.7, "z": 20.6, "px": 2198.1, "py": 2051.5, "has_dungeon": false, "has_important": true}, {"id": 2202, "name": "Ruin1", "category": "structure", "x": 2891.3, "z": 436.1, "px": 2541.4, "py": 2122.4, "has_dungeon": false, "has_important": true}, {"id": 2203, "name": "Ruin1", "category": "structure", "x": -9068.8, "z": 3405.0, "px": 500.3, "py": 2629.1, "has_dungeon": false, "has_important": true}, {"id": 2204, "name": "Ruin1", "category": "structure", "x": -5503.0, "z": 4818.3, "px": 1108.8, "py": 2870.3, "has_dungeon": false, "has_important": true}, {"id": 2205, "name": "Ruin1", "category": "structure", "x": -6000.3, "z": 4754.9, "px": 1023.9, "py": 2859.5, "has_dungeon": false, "has_important": true}, {"id": 2206, "name": "Ruin1", "category": "structure", "x": -6198.5, "z": 2240.2, "px": 990.1, "py": 2430.3, "has_dungeon": false, "has_important": true}, {"id": 2207, "name": "Ruin1", "category": "structure", "x": -8273.0, "z": 2580.5, "px": 636.1, "py": 2488.4, "has_dungeon": false, "has_important": true}, {"id": 2208, "name": "Ruin1", "category": "structure", "x": -4868.3, "z": -3087.9, "px": 1217.1, "py": 1521.0, "has_dungeon": false, "has_important": true}, {"id": 2209, "name": "Ruin1", "category": "structure", "x": -3389.8, "z": 4590.8, "px": 1469.5, "py": 2831.5, "has_dungeon": false, "has_important": true}, {"id": 2210, "name": "Ruin1", "category": "structure", "x": -6706.6, "z": 5433.8, "px": 903.4, "py": 2975.4, "has_dungeon": false, "has_important": true}, {"id": 2211, "name": "Ruin1", "category": "structure", "x": 2040.2, "z": 3821.9, "px": 2396.2, "py": 2700.3, "has_dungeon": false, "has_important": true}, {"id": 2212, "name": "Ruin1", "category": "structure", "x": -7122.8, "z": 138.1, "px": 832.4, "py": 2071.6, "has_dungeon": false, "has_important": true}, {"id": 2213, "name": "Ruin1", "category": "structure", "x": -1393.4, "z": 2678.5, "px": 1810.2, "py": 2505.1, "has_dungeon": false, "has_important": true}, {"id": 2214, "name": "Ruin1", "category": "structure", "x": -3644.5, "z": 7054.6, "px": 1426.0, "py": 3252.0, "has_dungeon": false, "has_important": true}, {"id": 2215, "name": "Ruin1", "category": "structure", "x": -1021.4, "z": 430.9, "px": 1873.7, "py": 2121.5, "has_dungeon": false, "has_important": true}, {"id": 2216, "name": "Ruin1", "category": "structure", "x": -4231.9, "z": -6289.4, "px": 1325.8, "py": 974.6, "has_dungeon": false, "has_important": true}, {"id": 2217, "name": "Ruin1", "category": "structure", "x": -452.1, "z": -4340.8, "px": 1970.8, "py": 1307.2, "has_dungeon": false, "has_important": true}, {"id": 2218, "name": "Ruin1", "category": "structure", "x": 2239.7, "z": -760.6, "px": 2430.2, "py": 1918.2, "has_dungeon": false, "has_important": true}, {"id": 2219, "name": "Ruin1", "category": "structure", "x": 2481.0, "z": -3436.3, "px": 2471.4, "py": 1461.5, "has_dungeon": false, "has_important": true}, {"id": 2220, "name": "Ruin1", "category": "structure", "x": 8651.0, "z": -3662.4, "px": 3524.4, "py": 1423.0, "has_dungeon": false, "has_important": true}, {"id": 2221, "name": "Ruin1", "category": "structure", "x": 8498.9, "z": -2157.6, "px": 3498.5, "py": 1679.8, "has_dungeon": false, "has_important": true}, {"id": 2222, "name": "Ruin1", "category": "structure", "x": 8564.4, "z": -2117.1, "px": 3509.7, "py": 1686.7, "has_dungeon": false, "has_important": true}, {"id": 2223, "name": "Ruin1", "category": "structure", "x": 1453.1, "z": -2305.6, "px": 2296.0, "py": 1654.5, "has_dungeon": false, "has_important": true}, {"id": 2224, "name": "Ruin1", "category": "structure", "x": 820.7, "z": 5203.8, "px": 2188.1, "py": 2936.1, "has_dungeon": false, "has_important": true}, {"id": 2225, "name": "Ruin1", "category": "structure", "x": -5231.9, "z": -1939.7, "px": 1155.1, "py": 1717.0, "has_dungeon": false, "has_important": true}, {"id": 2226, "name": "Ruin1", "category": "structure", "x": 6010.9, "z": -5945.2, "px": 3073.9, "py": 1033.4, "has_dungeon": false, "has_important": true}, {"id": 2227, "name": "Ruin1", "category": "structure", "x": -3892.3, "z": -2706.6, "px": 1383.7, "py": 1586.1, "has_dungeon": false, "has_important": true}, {"id": 2228, "name": "Ruin1", "category": "structure", "x": 399.4, "z": 5517.8, "px": 2116.2, "py": 2989.7, "has_dungeon": false, "has_important": true}, {"id": 2229, "name": "Ruin1", "category": "structure", "x": 7929.7, "z": -3148.0, "px": 3401.3, "py": 1510.7, "has_dungeon": false, "has_important": true}, {"id": 2230, "name": "Ruin1", "category": "structure", "x": -3603.2, "z": 7040.5, "px": 1433.1, "py": 3249.6, "has_dungeon": false, "has_important": true}, {"id": 2231, "name": "Ruin1", "category": "structure", "x": -1675.9, "z": -4354.5, "px": 1762.0, "py": 1304.8, "has_dungeon": false, "has_important": true}, {"id": 2232, "name": "Ruin1", "category": "structure", "x": 8828.0, "z": -3733.3, "px": 3554.6, "py": 1410.9, "has_dungeon": false, "has_important": true}, {"id": 2233, "name": "Ruin1", "category": "structure", "x": -7424.1, "z": -1978.3, "px": 781.0, "py": 1710.4, "has_dungeon": false, "has_important": true}, {"id": 2234, "name": "Ruin1", "category": "structure", "x": -3277.3, "z": -1849.6, "px": 1488.7, "py": 1732.3, "has_dungeon": false, "has_important": true}, {"id": 2235, "name": "Ruin1", "category": "structure", "x": -2245.2, "z": 4618.7, "px": 1664.8, "py": 2836.3, "has_dungeon": false, "has_important": true}, {"id": 2236, "name": "Ruin1", "category": "structure", "x": 2362.9, "z": 440.7, "px": 2451.3, "py": 2123.2, "has_dungeon": false, "has_important": true}, {"id": 2237, "name": "Ruin1", "category": "structure", "x": 3512.8, "z": 5323.3, "px": 2647.5, "py": 2956.5, "has_dungeon": false, "has_important": true}, {"id": 2238, "name": "Ruin1", "category": "structure", "x": 5741.8, "z": -899.2, "px": 3027.9, "py": 1894.5, "has_dungeon": false, "has_important": true}, {"id": 2239, "name": "Ruin1", "category": "structure", "x": -2190.4, "z": -5582.9, "px": 1674.2, "py": 1095.2, "has_dungeon": false, "has_important": true}, {"id": 2240, "name": "Ruin1", "category": "structure", "x": 5067.1, "z": 4269.4, "px": 2912.8, "py": 2776.6, "has_dungeon": false, "has_important": true}, {"id": 2241, "name": "Ruin1", "category": "structure", "x": 1352.2, "z": 5631.9, "px": 2278.8, "py": 3009.2, "has_dungeon": false, "has_important": true}, {"id": 2242, "name": "Ruin1", "category": "structure", "x": -5169.1, "z": 5752.4, "px": 1165.8, "py": 3029.7, "has_dungeon": false, "has_important": true}, {"id": 2243, "name": "Ruin1", "category": "structure", "x": 3015.4, "z": -4805.7, "px": 2562.6, "py": 1227.8, "has_dungeon": false, "has_important": true}, {"id": 2244, "name": "Ruin1", "category": "structure", "x": -761.5, "z": 389.2, "px": 1918.0, "py": 2114.4, "has_dungeon": false, "has_important": true}, {"id": 2245, "name": "Ruin1", "category": "structure", "x": -1923.6, "z": -4738.5, "px": 1719.7, "py": 1239.3, "has_dungeon": false, "has_important": true}, {"id": 2246, "name": "Ruin1", "category": "structure", "x": 7308.1, "z": -3258.5, "px": 3295.2, "py": 1491.9, "has_dungeon": false, "has_important": true}, {"id": 2247, "name": "Ruin1", "category": "structure", "x": 4077.2, "z": 3836.6, "px": 2743.8, "py": 2702.8, "has_dungeon": false, "has_important": true}, {"id": 2248, "name": "Ruin1", "category": "structure", "x": -4355.1, "z": -6448.9, "px": 1304.7, "py": 947.4, "has_dungeon": false, "has_important": true}, {"id": 2249, "name": "Ruin1", "category": "structure", "x": 1005.7, "z": 5507.8, "px": 2219.6, "py": 2988.0, "has_dungeon": false, "has_important": true}, {"id": 2250, "name": "Ruin1", "category": "structure", "x": 1014.5, "z": 5419.1, "px": 2221.1, "py": 2972.9, "has_dungeon": false, "has_important": true}, {"id": 2251, "name": "Ruin1", "category": "structure", "x": 8305.9, "z": -3627.3, "px": 3465.5, "py": 1428.9, "has_dungeon": false, "has_important": true}, {"id": 2252, "name": "Ruin1", "category": "structure", "x": 6005.8, "z": -145.0, "px": 3073.0, "py": 2023.3, "has_dungeon": false, "has_important": true}, {"id": 2253, "name": "Ruin1", "category": "structure", "x": -236.7, "z": 517.1, "px": 2007.6, "py": 2136.3, "has_dungeon": false, "has_important": true}, {"id": 2254, "name": "Ruin1", "category": "structure", "x": 4914.8, "z": -2181.5, "px": 2886.8, "py": 1675.7, "has_dungeon": false, "has_important": true}, {"id": 2255, "name": "Ruin1", "category": "structure", "x": 7865.4, "z": -2573.3, "px": 3390.4, "py": 1608.8, "has_dungeon": false, "has_important": true}, {"id": 2256, "name": "Ruin1", "category": "structure", "x": 2365.5, "z": -47.5, "px": 2451.7, "py": 2039.9, "has_dungeon": false, "has_important": true}, {"id": 2257, "name": "Ruin1", "category": "structure", "x": -5702.2, "z": -5075.8, "px": 1074.8, "py": 1181.7, "has_dungeon": false, "has_important": true}, {"id": 2258, "name": "Ruin1", "category": "structure", "x": 946.8, "z": 319.0, "px": 2209.6, "py": 2102.4, "has_dungeon": false, "has_important": true}, {"id": 2259, "name": "Ruin1", "category": "structure", "x": -2479.9, "z": -6210.9, "px": 1624.8, "py": 988.0, "has_dungeon": false, "has_important": true}, {"id": 2260, "name": "Ruin1", "category": "structure", "x": 7535.1, "z": -4302.2, "px": 3334.0, "py": 1313.8, "has_dungeon": false, "has_important": true}, {"id": 2261, "name": "Ruin1", "category": "structure", "x": 1606.3, "z": -6412.7, "px": 2322.1, "py": 953.6, "has_dungeon": false, "has_important": true}, {"id": 2262, "name": "Ruin1", "category": "structure", "x": -5895.5, "z": 1665.2, "px": 1041.8, "py": 2332.2, "has_dungeon": false, "has_important": true}, {"id": 2263, "name": "Ruin1", "category": "structure", "x": -4911.2, "z": -3087.6, "px": 1209.8, "py": 1521.0, "has_dungeon": false, "has_important": true}, {"id": 2264, "name": "Ruin1", "category": "structure", "x": 7864.0, "z": -2439.0, "px": 3390.1, "py": 1631.7, "has_dungeon": false, "has_important": true}, {"id": 2265, "name": "Ruin1", "category": "structure", "x": -405.0, "z": 506.1, "px": 1978.9, "py": 2134.4, "has_dungeon": false, "has_important": true}, {"id": 2266, "name": "Ruin1", "category": "structure", "x": -4600.1, "z": 5521.9, "px": 1262.9, "py": 2990.4, "has_dungeon": false, "has_important": true}, {"id": 2267, "name": "Ruin1", "category": "structure", "x": 7235.9, "z": -4627.9, "px": 3282.9, "py": 1258.2, "has_dungeon": false, "has_important": true}, {"id": 2268, "name": "Ruin1", "category": "structure", "x": -3206.9, "z": -2056.3, "px": 1500.7, "py": 1697.1, "has_dungeon": false, "has_important": true}, {"id": 2269, "name": "Ruin1", "category": "structure", "x": 2257.6, "z": 3830.7, "px": 2433.3, "py": 2701.8, "has_dungeon": false, "has_important": true}, {"id": 2270, "name": "Ruin1", "category": "structure", "x": 1647.1, "z": -6156.8, "px": 2329.1, "py": 997.2, "has_dungeon": false, "has_important": true}, {"id": 2271, "name": "Ruin1", "category": "structure", "x": -817.4, "z": -6507.6, "px": 1908.5, "py": 937.4, "has_dungeon": false, "has_important": true}, {"id": 2272, "name": "Ruin1", "category": "structure", "x": 5629.9, "z": -943.4, "px": 3008.8, "py": 1887.0, "has_dungeon": false, "has_important": true}, {"id": 2273, "name": "Ruin1", "category": "structure", "x": -7636.7, "z": -4801.8, "px": 744.7, "py": 1228.5, "has_dungeon": false, "has_important": true}, {"id": 2274, "name": "Ruin1", "category": "structure", "x": 3794.7, "z": 1134.5, "px": 2695.6, "py": 2241.6, "has_dungeon": false, "has_important": true}, {"id": 2275, "name": "Ruin1", "category": "structure", "x": 3604.0, "z": 132.5, "px": 2663.1, "py": 2070.6, "has_dungeon": false, "has_important": true}, {"id": 2276, "name": "Ruin1", "category": "structure", "x": 5251.6, "z": -652.5, "px": 2944.3, "py": 1936.6, "has_dungeon": false, "has_important": true}, {"id": 2277, "name": "Ruin1", "category": "structure", "x": 8577.7, "z": -2039.4, "px": 3511.9, "py": 1699.9, "has_dungeon": false, "has_important": true}, {"id": 2278, "name": "Ruin1", "category": "structure", "x": -4660.8, "z": 5717.1, "px": 1252.6, "py": 3023.7, "has_dungeon": false, "has_important": true}, {"id": 2279, "name": "Ruin1", "category": "structure", "x": 8174.4, "z": 321.6, "px": 3443.1, "py": 2102.9, "has_dungeon": false, "has_important": true}, {"id": 2280, "name": "Ruin1", "category": "structure", "x": -6771.6, "z": 567.7, "px": 892.3, "py": 2144.9, "has_dungeon": false, "has_important": true}, {"id": 2281, "name": "Ruin1", "category": "structure", "x": 8690.5, "z": 121.4, "px": 3531.2, "py": 2068.7, "has_dungeon": false, "has_important": true}, {"id": 2282, "name": "Ruin1", "category": "structure", "x": 3640.5, "z": 5323.0, "px": 2669.3, "py": 2956.5, "has_dungeon": false, "has_important": true}, {"id": 2283, "name": "Ruin1", "category": "structure", "x": 4410.0, "z": -722.7, "px": 2800.6, "py": 1924.7, "has_dungeon": false, "has_important": true}, {"id": 2284, "name": "Ruin1", "category": "structure", "x": 4404.3, "z": -5105.3, "px": 2799.7, "py": 1176.7, "has_dungeon": false, "has_important": true}, {"id": 2285, "name": "Ruin1", "category": "structure", "x": 3576.6, "z": 3908.7, "px": 2658.4, "py": 2715.1, "has_dungeon": false, "has_important": true}, {"id": 2286, "name": "Ruin1", "category": "structure", "x": -8272.5, "z": 592.0, "px": 636.2, "py": 2149.0, "has_dungeon": false, "has_important": true}, {"id": 2287, "name": "Ruin1", "category": "structure", "x": 3779.3, "z": 1212.6, "px": 2693.0, "py": 2255.0, "has_dungeon": false, "has_important": true}, {"id": 2288, "name": "Ruin1", "category": "structure", "x": -9514.9, "z": -389.3, "px": 424.1, "py": 1981.6, "has_dungeon": false, "has_important": true}, {"id": 2289, "name": "Ruin1", "category": "structure", "x": -4146.0, "z": -2363.0, "px": 1340.4, "py": 1644.7, "has_dungeon": false, "has_important": true}, {"id": 2290, "name": "Ruin1", "category": "structure", "x": -3642.2, "z": 6795.4, "px": 1426.4, "py": 3207.7, "has_dungeon": false, "has_important": true}, {"id": 2291, "name": "Ruin1", "category": "structure", "x": 1467.7, "z": -5101.5, "px": 2298.5, "py": 1177.3, "has_dungeon": false, "has_important": true}, {"id": 2292, "name": "Ruin1", "category": "structure", "x": -3860.6, "z": -529.7, "px": 1389.1, "py": 1957.6, "has_dungeon": false, "has_important": true}, {"id": 2293, "name": "Ruin1", "category": "structure", "x": 2039.8, "z": -1263.5, "px": 2396.1, "py": 1832.4, "has_dungeon": false, "has_important": true}, {"id": 2294, "name": "Ruin1", "category": "structure", "x": 9614.6, "z": 1354.7, "px": 3688.9, "py": 2279.2, "has_dungeon": false, "has_important": true}, {"id": 2295, "name": "Ruin1", "category": "structure", "x": -7308.2, "z": -4795.5, "px": 800.7, "py": 1229.6, "has_dungeon": false, "has_important": true}, {"id": 2296, "name": "Ruin1", "category": "structure", "x": 1616.1, "z": -6449.4, "px": 2323.8, "py": 947.3, "has_dungeon": false, "has_important": true}, {"id": 2297, "name": "Ruin1", "category": "structure", "x": 8069.6, "z": -2688.5, "px": 3425.2, "py": 1589.2, "has_dungeon": false, "has_important": true}, {"id": 2298, "name": "Ruin1", "category": "structure", "x": 4031.6, "z": 6917.5, "px": 2736.1, "py": 3228.6, "has_dungeon": false, "has_important": true}, {"id": 2299, "name": "Ruin1", "category": "structure", "x": -4044.5, "z": -258.9, "px": 1357.7, "py": 2003.8, "has_dungeon": false, "has_important": true}, {"id": 2300, "name": "Ruin1", "category": "structure", "x": 3663.3, "z": 3719.0, "px": 2673.2, "py": 2682.7, "has_dungeon": false, "has_important": true}, {"id": 2301, "name": "Ruin1", "category": "structure", "x": 657.3, "z": 246.9, "px": 2160.2, "py": 2090.1, "has_dungeon": false, "has_important": true}, {"id": 2302, "name": "Ruin1", "category": "structure", "x": -9165.1, "z": 2949.2, "px": 483.8, "py": 2551.3, "has_dungeon": false, "has_important": true}, {"id": 2303, "name": "Ruin1", "category": "structure", "x": 7595.4, "z": -2813.8, "px": 3344.3, "py": 1567.8, "has_dungeon": false, "has_important": true}, {"id": 2304, "name": "Ruin1", "category": "structure", "x": 3792.6, "z": 3661.9, "px": 2695.3, "py": 2673.0, "has_dungeon": false, "has_important": true}, {"id": 2305, "name": "Ruin1", "category": "structure", "x": -702.9, "z": 13.6, "px": 1928.0, "py": 2050.3, "has_dungeon": false, "has_important": true}, {"id": 2306, "name": "Ruin1", "category": "structure", "x": 5589.2, "z": -832.7, "px": 3001.9, "py": 1905.9, "has_dungeon": false, "has_important": true}, {"id": 2307, "name": "Ruin1", "category": "structure", "x": 5135.7, "z": 3194.2, "px": 2924.5, "py": 2593.1, "has_dungeon": false, "has_important": true}, {"id": 2308, "name": "Ruin1", "category": "structure", "x": 5069.7, "z": 3217.8, "px": 2913.2, "py": 2597.2, "has_dungeon": false, "has_important": true}, {"id": 2309, "name": "Ruin1", "category": "structure", "x": 768.4, "z": 3470.0, "px": 2179.1, "py": 2640.2, "has_dungeon": false, "has_important": true}, {"id": 2310, "name": "Ruin1", "category": "structure", "x": 2759.7, "z": -3321.4, "px": 2519.0, "py": 1481.1, "has_dungeon": false, "has_important": true}, {"id": 2311, "name": "Ruin1", "category": "structure", "x": 1079.5, "z": 3214.4, "px": 2232.2, "py": 2596.6, "has_dungeon": false, "has_important": true}, {"id": 2312, "name": "Ruin1", "category": "structure", "x": -5703.0, "z": 1040.9, "px": 1074.7, "py": 2225.6, "has_dungeon": false, "has_important": true}, {"id": 2313, "name": "Ruin1", "category": "structure", "x": 845.0, "z": -80.9, "px": 2192.2, "py": 2034.2, "has_dungeon": false, "has_important": true}, {"id": 2314, "name": "Ruin1", "category": "structure", "x": 584.6, "z": 5181.6, "px": 2147.8, "py": 2932.3, "has_dungeon": false, "has_important": true}, {"id": 2315, "name": "Ruin1", "category": "structure", "x": -2066.4, "z": -4359.9, "px": 1695.3, "py": 1303.9, "has_dungeon": false, "has_important": true}, {"id": 2316, "name": "Ruin1", "category": "structure", "x": -6639.6, "z": 556.0, "px": 914.8, "py": 2142.9, "has_dungeon": false, "has_important": true}, {"id": 2317, "name": "Ruin1", "category": "structure", "x": 5315.6, "z": 6336.1, "px": 2955.2, "py": 3129.4, "has_dungeon": false, "has_important": true}, {"id": 2318, "name": "Ruin1", "category": "structure", "x": -1223.4, "z": -1556.4, "px": 1839.2, "py": 1782.4, "has_dungeon": false, "has_important": true}, {"id": 2319, "name": "Ruin1", "category": "structure", "x": 8637.6, "z": -3728.7, "px": 3522.2, "py": 1411.6, "has_dungeon": false, "has_important": true}, {"id": 2320, "name": "Ruin1", "category": "structure", "x": 1539.4, "z": -6258.1, "px": 2310.7, "py": 980.0, "has_dungeon": false, "has_important": true}, {"id": 2321, "name": "Ruin1", "category": "structure", "x": 1855.7, "z": -4364.3, "px": 2364.7, "py": 1303.2, "has_dungeon": false, "has_important": true}, {"id": 2322, "name": "Ruin1", "category": "structure", "x": 700.7, "z": 4590.5, "px": 2167.6, "py": 2831.4, "has_dungeon": false, "has_important": true}, {"id": 2323, "name": "Ruin1", "category": "structure", "x": 911.2, "z": -2235.9, "px": 2203.5, "py": 1666.4, "has_dungeon": false, "has_important": true}, {"id": 2324, "name": "Ruin1", "category": "structure", "x": 2745.3, "z": -4847.1, "px": 2516.5, "py": 1220.8, "has_dungeon": false, "has_important": true}, {"id": 2325, "name": "Ruin1", "category": "structure", "x": 3315.9, "z": -2644.4, "px": 2613.9, "py": 1596.7, "has_dungeon": false, "has_important": true}, {"id": 2326, "name": "Ruin1", "category": "structure", "x": 3795.7, "z": 3987.7, "px": 2695.8, "py": 2728.6, "has_dungeon": false, "has_important": true}, {"id": 2327, "name": "Ruin1", "category": "structure", "x": 7993.5, "z": -2563.8, "px": 3412.2, "py": 1610.4, "has_dungeon": false, "has_important": true}, {"id": 2328, "name": "Ruin1", "category": "structure", "x": -3153.0, "z": 4214.4, "px": 1509.9, "py": 2767.3, "has_dungeon": false, "has_important": true}, {"id": 2329, "name": "Ruin1", "category": "structure", "x": -6792.2, "z": 5560.4, "px": 888.8, "py": 2997.0, "has_dungeon": false, "has_important": true}, {"id": 2330, "name": "Ruin1", "category": "structure", "x": -2219.9, "z": -1089.9, "px": 1669.1, "py": 1862.0, "has_dungeon": false, "has_important": true}, {"id": 2331, "name": "Ruin1", "category": "structure", "x": 1989.7, "z": -760.0, "px": 2387.6, "py": 1918.3, "has_dungeon": false, "has_important": true}, {"id": 2332, "name": "Ruin1", "category": "structure", "x": 400.0, "z": 379.4, "px": 2116.3, "py": 2112.8, "has_dungeon": false, "has_important": true}, {"id": 2333, "name": "Ruin1", "category": "structure", "x": -3897.6, "z": -323.7, "px": 1382.8, "py": 1992.8, "has_dungeon": false, "has_important": true}, {"id": 2334, "name": "Ruin1", "category": "structure", "x": 1106.9, "z": -5299.6, "px": 2236.9, "py": 1143.5, "has_dungeon": false, "has_important": true}, {"id": 2335, "name": "Ruin1", "category": "structure", "x": 2830.0, "z": -4685.6, "px": 2531.0, "py": 1248.3, "has_dungeon": false, "has_important": true}, {"id": 2336, "name": "Ruin1", "category": "structure", "x": -2503.1, "z": 4418.3, "px": 1620.8, "py": 2802.1, "has_dungeon": false, "has_important": true}, {"id": 2337, "name": "Ruin1", "category": "structure", "x": -3434.8, "z": 4779.7, "px": 1461.8, "py": 2863.7, "has_dungeon": false, "has_important": true}, {"id": 2338, "name": "Ruin1", "category": "structure", "x": -4853.7, "z": 5389.5, "px": 1219.6, "py": 2967.8, "has_dungeon": false, "has_important": true}, {"id": 2339, "name": "Ruin1", "category": "structure", "x": 518.2, "z": 5122.6, "px": 2136.4, "py": 2922.3, "has_dungeon": false, "has_important": true}, {"id": 2340, "name": "Ruin1", "category": "structure", "x": 966.8, "z": 3458.3, "px": 2213.0, "py": 2638.2, "has_dungeon": false, "has_important": true}, {"id": 2341, "name": "Ruin1", "category": "structure", "x": -1779.9, "z": -5677.3, "px": 1744.2, "py": 1079.1, "has_dungeon": false, "has_important": true}, {"id": 2342, "name": "Ruin1", "category": "structure", "x": -9263.2, "z": -2679.8, "px": 467.1, "py": 1590.6, "has_dungeon": false, "has_important": true}, {"id": 2343, "name": "Ruin1", "category": "structure", "x": 3521.4, "z": 3385.7, "px": 2649.0, "py": 2625.8, "has_dungeon": false, "has_important": true}, {"id": 2344, "name": "Ruin1", "category": "structure", "x": 3955.6, "z": 1078.7, "px": 2723.1, "py": 2232.1, "has_dungeon": false, "has_important": true}, {"id": 2345, "name": "Ruin1", "category": "structure", "x": -6863.2, "z": 2092.3, "px": 876.7, "py": 2405.1, "has_dungeon": false, "has_important": true}, {"id": 2346, "name": "Ruin1", "category": "structure", "x": 186.9, "z": -4289.3, "px": 2079.9, "py": 1316.0, "has_dungeon": false, "has_important": true}, {"id": 2347, "name": "Ruin1", "category": "structure", "x": 2250.9, "z": 47.1, "px": 2432.2, "py": 2056.0, "has_dungeon": false, "has_important": true}, {"id": 2348, "name": "Ruin1", "category": "structure", "x": 1866.9, "z": -4473.6, "px": 2366.6, "py": 1284.5, "has_dungeon": false, "has_important": true}, {"id": 2349, "name": "Ruin1", "category": "structure", "x": -5689.9, "z": 4875.7, "px": 1076.9, "py": 2880.1, "has_dungeon": false, "has_important": true}, {"id": 2350, "name": "Ruin1", "category": "structure", "x": 2866.1, "z": -125.1, "px": 2537.1, "py": 2026.6, "has_dungeon": false, "has_important": true}, {"id": 2351, "name": "Ruin1", "category": "structure", "x": 2052.2, "z": 1470.1, "px": 2398.2, "py": 2298.9, "has_dungeon": false, "has_important": true}, {"id": 2352, "name": "Ruin1", "category": "structure", "x": 7164.5, "z": 1223.8, "px": 3270.7, "py": 2256.9, "has_dungeon": false, "has_important": true}, {"id": 2353, "name": "Ruin1", "category": "structure", "x": -2095.5, "z": 516.3, "px": 1690.4, "py": 2136.1, "has_dungeon": false, "has_important": true}, {"id": 2354, "name": "Ruin1", "category": "structure", "x": 1939.3, "z": -957.7, "px": 2379.0, "py": 1884.6, "has_dungeon": false, "has_important": true}, {"id": 2355, "name": "Ruin1", "category": "structure", "x": 5038.4, "z": -2100.7, "px": 2907.9, "py": 1689.5, "has_dungeon": false, "has_important": true}, {"id": 2356, "name": "Ruin1", "category": "structure", "x": 5100.0, "z": 5298.9, "px": 2918.4, "py": 2952.3, "has_dungeon": false, "has_important": true}, {"id": 2357, "name": "Ruin1", "category": "structure", "x": -5770.2, "z": 4546.8, "px": 1063.2, "py": 2824.0, "has_dungeon": false, "has_important": true}, {"id": 2358, "name": "Ruin1", "category": "structure", "x": -6068.5, "z": 2229.5, "px": 1012.3, "py": 2428.5, "has_dungeon": false, "has_important": true}, {"id": 2359, "name": "Ruin1", "category": "structure", "x": 891.4, "z": 491.5, "px": 2200.1, "py": 2131.9, "has_dungeon": false, "has_important": true}, {"id": 2360, "name": "Ruin1", "category": "structure", "x": -9357.7, "z": -2795.6, "px": 451.0, "py": 1570.9, "has_dungeon": false, "has_important": true}, {"id": 2361, "name": "Ruin1", "category": "structure", "x": 2706.4, "z": -4626.8, "px": 2509.9, "py": 1258.4, "has_dungeon": false, "has_important": true}, {"id": 2362, "name": "Ruin1", "category": "structure", "x": 5063.1, "z": 5318.6, "px": 2912.1, "py": 2955.7, "has_dungeon": false, "has_important": true}, {"id": 2363, "name": "Ruin1", "category": "structure", "x": -6765.5, "z": 3893.8, "px": 893.4, "py": 2712.5, "has_dungeon": false, "has_important": true}, {"id": 2364, "name": "Ruin1", "category": "structure", "x": -7492.9, "z": -2002.6, "px": 769.2, "py": 1706.2, "has_dungeon": false, "has_important": true}, {"id": 2365, "name": "Ruin1", "category": "structure", "x": 8375.5, "z": 392.4, "px": 3477.4, "py": 2115.0, "has_dungeon": false, "has_important": true}, {"id": 2366, "name": "Ruin1", "category": "structure", "x": 2248.5, "z": 3970.2, "px": 2431.7, "py": 2725.6, "has_dungeon": false, "has_important": true}, {"id": 2367, "name": "Ruin1", "category": "structure", "x": -2116.8, "z": -4038.2, "px": 1686.7, "py": 1358.8, "has_dungeon": false, "has_important": true}, {"id": 2368, "name": "Ruin1", "category": "structure", "x": 7112.0, "z": 2155.8, "px": 3261.8, "py": 2415.9, "has_dungeon": false, "has_important": true}, {"id": 2369, "name": "Ruin1", "category": "structure", "x": 5566.8, "z": 1579.6, "px": 2998.1, "py": 2317.6, "has_dungeon": false, "has_important": true}, {"id": 2370, "name": "Ruin1", "category": "structure", "x": -6895.0, "z": 2246.8, "px": 871.3, "py": 2431.5, "has_dungeon": false, "has_important": true}, {"id": 2371, "name": "Ruin1", "category": "structure", "x": -639.0, "z": 516.5, "px": 1938.9, "py": 2136.1, "has_dungeon": false, "has_important": true}, {"id": 2372, "name": "Ruin1", "category": "structure", "x": -9397.3, "z": -2687.9, "px": 444.2, "py": 1589.3, "has_dungeon": false, "has_important": true}, {"id": 2373, "name": "Ruin1", "category": "structure", "x": 8015.7, "z": 364.4, "px": 3416.0, "py": 2110.2, "has_dungeon": false, "has_important": true}, {"id": 2374, "name": "Ruin1", "category": "structure", "x": -8436.5, "z": -757.2, "px": 608.2, "py": 1918.8, "has_dungeon": false, "has_important": true}, {"id": 2375, "name": "Ruin1", "category": "structure", "x": 2674.5, "z": -3828.9, "px": 2504.4, "py": 1394.5, "has_dungeon": false, "has_important": true}, {"id": 2376, "name": "Ruin1", "category": "structure", "x": 979.7, "z": -5234.6, "px": 2215.2, "py": 1154.6, "has_dungeon": false, "has_important": true}, {"id": 2377, "name": "Ruin1", "category": "structure", "x": 7544.5, "z": 2692.6, "px": 3335.6, "py": 2507.5, "has_dungeon": false, "has_important": true}, {"id": 2378, "name": "Ruin1", "category": "structure", "x": 7118.0, "z": -4108.0, "px": 3262.8, "py": 1346.9, "has_dungeon": false, "has_important": true}, {"id": 2379, "name": "Ruin1", "category": "structure", "x": 2184.5, "z": -1747.0, "px": 2420.8, "py": 1749.8, "has_dungeon": false, "has_important": true}, {"id": 2380, "name": "Ruin1", "category": "structure", "x": -4108.6, "z": -198.4, "px": 1346.8, "py": 2014.1, "has_dungeon": false, "has_important": true}, {"id": 2381, "name": "Ruin1", "category": "structure", "x": -4496.9, "z": 1679.0, "px": 1280.5, "py": 2334.5, "has_dungeon": false, "has_important": true}, {"id": 2382, "name": "Ruin1", "category": "structure", "x": 2896.0, "z": 7314.1, "px": 2542.3, "py": 3296.3, "has_dungeon": false, "has_important": true}, {"id": 2383, "name": "Ruin1", "category": "structure", "x": -5960.8, "z": -620.9, "px": 1030.7, "py": 1942.0, "has_dungeon": false, "has_important": true}, {"id": 2384, "name": "Ruin1", "category": "structure", "x": -3412.9, "z": 4235.5, "px": 1465.5, "py": 2770.9, "has_dungeon": false, "has_important": true}, {"id": 2385, "name": "Ruin2", "category": "structure", "x": -4038.3, "z": -6469.5, "px": 1358.8, "py": 943.9, "has_dungeon": false, "has_important": true}, {"id": 2386, "name": "Ruin2", "category": "structure", "x": -5100.6, "z": 499.3, "px": 1177.5, "py": 2133.2, "has_dungeon": false, "has_important": true}, {"id": 2387, "name": "Ruin2", "category": "structure", "x": 6803.3, "z": 4556.6, "px": 3209.1, "py": 2825.7, "has_dungeon": false, "has_important": true}, {"id": 2388, "name": "Ruin2", "category": "structure", "x": 2385.8, "z": 3907.3, "px": 2455.2, "py": 2714.8, "has_dungeon": false, "has_important": true}, {"id": 2389, "name": "Ruin2", "category": "structure", "x": 3828.8, "z": 969.9, "px": 2701.4, "py": 2213.5, "has_dungeon": false, "has_important": true}, {"id": 2390, "name": "Ruin2", "category": "structure", "x": 4619.5, "z": -5070.4, "px": 2836.4, "py": 1182.7, "has_dungeon": false, "has_important": true}, {"id": 2391, "name": "Ruin2", "category": "structure", "x": 954.7, "z": -5485.7, "px": 2210.9, "py": 1111.8, "has_dungeon": false, "has_important": true}, {"id": 2392, "name": "Ruin2", "category": "structure", "x": 3634.2, "z": 3896.1, "px": 2668.2, "py": 2712.9, "has_dungeon": false, "has_important": true}, {"id": 2393, "name": "Ruin2", "category": "structure", "x": 1982.3, "z": 3667.3, "px": 2386.3, "py": 2673.9, "has_dungeon": false, "has_important": true}, {"id": 2394, "name": "Ruin2", "category": "structure", "x": -5743.3, "z": -1788.7, "px": 1067.8, "py": 1742.7, "has_dungeon": false, "has_important": true}, {"id": 2395, "name": "Ruin2", "category": "structure", "x": -7380.3, "z": -1778.2, "px": 788.4, "py": 1744.5, "has_dungeon": false, "has_important": true}, {"id": 2396, "name": "Ruin2", "category": "structure", "x": -9610.1, "z": -241.6, "px": 407.9, "py": 2006.8, "has_dungeon": false, "has_important": true}, {"id": 2397, "name": "Ruin2", "category": "structure", "x": 2309.7, "z": 453.5, "px": 2442.2, "py": 2125.4, "has_dungeon": false, "has_important": true}, {"id": 2398, "name": "Ruin2", "category": "structure", "x": -1015.5, "z": 269.5, "px": 1874.7, "py": 2094.0, "has_dungeon": false, "has_important": true}, {"id": 2399, "name": "Ruin2", "category": "structure", "x": 8182.8, "z": -2453.8, "px": 3444.5, "py": 1629.2, "has_dungeon": false, "has_important": true}, {"id": 2400, "name": "Ruin2", "category": "structure", "x": -2383.3, "z": 4488.9, "px": 1641.3, "py": 2814.1, "has_dungeon": false, "has_important": true}, {"id": 2401, "name": "Ruin2", "category": "structure", "x": 2316.1, "z": 3759.4, "px": 2443.3, "py": 2689.6, "has_dungeon": false, "has_important": true}, {"id": 2402, "name": "Ruin2", "category": "structure", "x": 8465.5, "z": -2051.1, "px": 3492.8, "py": 1697.9, "has_dungeon": false, "has_important": true}, {"id": 2403, "name": "Ruin2", "category": "structure", "x": -8333.5, "z": -1978.2, "px": 625.7, "py": 1710.4, "has_dungeon": false, "has_important": true}, {"id": 2404, "name": "Ruin2", "category": "structure", "x": -4153.8, "z": -2246.7, "px": 1339.1, "py": 1664.6, "has_dungeon": false, "has_important": true}, {"id": 2405, "name": "Ruin2", "category": "structure", "x": 7253.5, "z": -4409.3, "px": 3285.9, "py": 1295.5, "has_dungeon": false, "has_important": true}, {"id": 2406, "name": "Ruin2", "category": "structure", "x": 8236.8, "z": 891.3, "px": 3453.7, "py": 2200.1, "has_dungeon": false, "has_important": true}, {"id": 2407, "name": "Ruin2", "category": "structure", "x": -7818.0, "z": -2364.9, "px": 713.7, "py": 1644.4, "has_dungeon": false, "has_important": true}, {"id": 2408, "name": "Ruin2", "category": "structure", "x": 5877.1, "z": -189.6, "px": 3051.0, "py": 2015.6, "has_dungeon": false, "has_important": true}, {"id": 2409, "name": "Ruin2", "category": "structure", "x": 3323.5, "z": -2563.9, "px": 2615.2, "py": 1610.4, "has_dungeon": false, "has_important": true}, {"id": 2410, "name": "Ruin2", "category": "structure", "x": -4356.1, "z": 1737.8, "px": 1304.6, "py": 2344.6, "has_dungeon": false, "has_important": true}, {"id": 2411, "name": "Ruin2", "category": "structure", "x": 8303.9, "z": -2565.2, "px": 3465.2, "py": 1610.2, "has_dungeon": false, "has_important": true}, {"id": 2412, "name": "Ruin2", "category": "structure", "x": -3075.7, "z": 4179.5, "px": 1523.1, "py": 2761.3, "has_dungeon": false, "has_important": true}, {"id": 2413, "name": "Ruin2", "category": "structure", "x": -4235.7, "z": -6335.4, "px": 1325.1, "py": 966.8, "has_dungeon": false, "has_important": true}, {"id": 2414, "name": "Ruin2", "category": "structure", "x": 8061.5, "z": 271.2, "px": 3423.8, "py": 2094.3, "has_dungeon": false, "has_important": true}, {"id": 2415, "name": "Ruin2", "category": "structure", "x": 7439.3, "z": -4394.0, "px": 3317.6, "py": 1298.1, "has_dungeon": false, "has_important": true}, {"id": 2416, "name": "Ruin2", "category": "structure", "x": -4246.1, "z": -2180.8, "px": 1323.3, "py": 1675.8, "has_dungeon": false, "has_important": true}, {"id": 2417, "name": "Ruin2", "category": "structure", "x": 8264.9, "z": 134.5, "px": 3458.5, "py": 2071.0, "has_dungeon": false, "has_important": true}, {"id": 2418, "name": "Ruin2", "category": "structure", "x": 2747.7, "z": 333.4, "px": 2516.9, "py": 2104.9, "has_dungeon": false, "has_important": true}, {"id": 2419, "name": "Ruin2", "category": "structure", "x": 3590.6, "z": 3850.9, "px": 2660.8, "py": 2705.2, "has_dungeon": false, "has_important": true}, {"id": 2420, "name": "Ruin2", "category": "structure", "x": 3592.3, "z": 3960.4, "px": 2661.1, "py": 2723.9, "has_dungeon": false, "has_important": true}, {"id": 2421, "name": "Ruin2", "category": "structure", "x": -6780.2, "z": 5443.2, "px": 890.8, "py": 2977.0, "has_dungeon": false, "has_important": true}, {"id": 2422, "name": "Ruin2", "category": "structure", "x": 683.2, "z": 5105.9, "px": 2164.6, "py": 2919.4, "has_dungeon": false, "has_important": true}, {"id": 2423, "name": "Ruin2", "category": "structure", "x": 2056.4, "z": -4407.0, "px": 2399.0, "py": 1295.9, "has_dungeon": false, "has_important": true}, {"id": 2424, "name": "Ruin2", "category": "structure", "x": 9412.1, "z": 340.4, "px": 3654.3, "py": 2106.1, "has_dungeon": false, "has_important": true}, {"id": 2425, "name": "Ruin2", "category": "structure", "x": 1931.6, "z": 3647.1, "px": 2377.7, "py": 2670.4, "has_dungeon": false, "has_important": true}, {"id": 2426, "name": "Ruin2", "category": "structure", "x": 4459.3, "z": -5188.5, "px": 2809.1, "py": 1162.5, "has_dungeon": false, "has_important": true}, {"id": 2427, "name": "Ruin2", "category": "structure", "x": 8428.2, "z": -1864.4, "px": 3486.4, "py": 1729.8, "has_dungeon": false, "has_important": true}, {"id": 2428, "name": "Ruin2", "category": "structure", "x": 2302.4, "z": 6351.4, "px": 2440.9, "py": 3132.0, "has_dungeon": false, "has_important": true}, {"id": 2429, "name": "Ruin2", "category": "structure", "x": 2324.8, "z": -1345.4, "px": 2444.8, "py": 1818.4, "has_dungeon": false, "has_important": true}, {"id": 2430, "name": "Ruin2", "category": "structure", "x": 1545.4, "z": -6208.6, "px": 2311.7, "py": 988.4, "has_dungeon": false, "has_important": true}, {"id": 2431, "name": "Ruin2", "category": "structure", "x": -3987.8, "z": -2478.5, "px": 1367.4, "py": 1625.0, "has_dungeon": false, "has_important": true}, {"id": 2432, "name": "Ruin2", "category": "structure", "x": -4811.6, "z": 5610.1, "px": 1226.8, "py": 3005.5, "has_dungeon": false, "has_important": true}, {"id": 2433, "name": "Ruin2", "category": "structure", "x": 2500.0, "z": 250.6, "px": 2474.7, "py": 2090.8, "has_dungeon": false, "has_important": true}, {"id": 2434, "name": "Ruin2", "category": "structure", "x": 2284.4, "z": -584.2, "px": 2437.9, "py": 1948.3, "has_dungeon": false, "has_important": true}, {"id": 2435, "name": "Ruin2", "category": "structure", "x": 943.1, "z": -5361.2, "px": 2209.0, "py": 1133.0, "has_dungeon": false, "has_important": true}, {"id": 2436, "name": "Ruin2", "category": "structure", "x": 6100.9, "z": 1348.3, "px": 3089.2, "py": 2278.1, "has_dungeon": false, "has_important": true}, {"id": 2437, "name": "Ruin2", "category": "structure", "x": 2946.3, "z": -301.4, "px": 2550.8, "py": 1996.6, "has_dungeon": false, "has_important": true}, {"id": 2438, "name": "Ruin2", "category": "structure", "x": -4918.6, "z": 5811.5, "px": 1208.6, "py": 3039.8, "has_dungeon": false, "has_important": true}, {"id": 2439, "name": "Ruin2", "category": "structure", "x": -2282.1, "z": -3115.5, "px": 1658.5, "py": 1516.3, "has_dungeon": false, "has_important": true}, {"id": 2440, "name": "Ruin2", "category": "structure", "x": -3453.7, "z": -1796.8, "px": 1458.6, "py": 1741.3, "has_dungeon": false, "has_important": true}, {"id": 2441, "name": "Ruin2", "category": "structure", "x": -7733.8, "z": -2569.2, "px": 728.1, "py": 1609.5, "has_dungeon": false, "has_important": true}, {"id": 2442, "name": "Ruin2", "category": "structure", "x": 1671.1, "z": -767.1, "px": 2333.2, "py": 1917.1, "has_dungeon": false, "has_important": true}, {"id": 2443, "name": "Ruin2", "category": "structure", "x": 2419.7, "z": 1470.7, "px": 2461.0, "py": 2299.0, "has_dungeon": false, "has_important": true}, {"id": 2444, "name": "Ruin2", "category": "structure", "x": 3456.7, "z": 3691.8, "px": 2637.9, "py": 2678.1, "has_dungeon": false, "has_important": true}, {"id": 2445, "name": "Ruin2", "category": "structure", "x": -1402.1, "z": -1793.2, "px": 1808.7, "py": 1742.0, "has_dungeon": false, "has_important": true}, {"id": 2446, "name": "Ruin2", "category": "structure", "x": -5964.4, "z": 4523.4, "px": 1030.1, "py": 2820.0, "has_dungeon": false, "has_important": true}, {"id": 2447, "name": "Ruin2", "category": "structure", "x": -789.4, "z": 4858.7, "px": 1913.3, "py": 2877.2, "has_dungeon": false, "has_important": true}, {"id": 2448, "name": "Ruin2", "category": "structure", "x": -1420.0, "z": -1858.4, "px": 1805.7, "py": 1730.8, "has_dungeon": false, "has_important": true}, {"id": 2449, "name": "Ruin2", "category": "structure", "x": 7793.5, "z": -2805.4, "px": 3378.1, "py": 1569.2, "has_dungeon": false, "has_important": true}, {"id": 2450, "name": "Ruin2", "category": "structure", "x": -7430.3, "z": -2090.0, "px": 779.9, "py": 1691.3, "has_dungeon": false, "has_important": true}, {"id": 2451, "name": "Ruin2", "category": "structure", "x": 1608.0, "z": -4541.0, "px": 2322.4, "py": 1273.0, "has_dungeon": false, "has_important": true}, {"id": 2452, "name": "Ruin2", "category": "structure", "x": -7169.2, "z": -2061.2, "px": 824.5, "py": 1696.2, "has_dungeon": false, "has_important": true}, {"id": 2453, "name": "Ruin2", "category": "structure", "x": -7247.3, "z": -4787.3, "px": 811.1, "py": 1231.0, "has_dungeon": false, "has_important": true}, {"id": 2454, "name": "Ruin2", "category": "structure", "x": -371.5, "z": 402.2, "px": 1984.6, "py": 2116.6, "has_dungeon": false, "has_important": true}, {"id": 2455, "name": "Ruin2", "category": "structure", "x": -9234.8, "z": 3275.5, "px": 471.9, "py": 2607.0, "has_dungeon": false, "has_important": true}, {"id": 2456, "name": "Ruin2", "category": "structure", "x": 2552.4, "z": -1655.1, "px": 2483.6, "py": 1765.5, "has_dungeon": false, "has_important": true}, {"id": 2457, "name": "Ruin2", "category": "structure", "x": -3249.9, "z": -2030.0, "px": 1493.4, "py": 1701.5, "has_dungeon": false, "has_important": true}, {"id": 2458, "name": "Ruin2", "category": "structure", "x": 8244.4, "z": -2059.2, "px": 3455.0, "py": 1696.6, "has_dungeon": false, "has_important": true}, {"id": 2459, "name": "Ruin2", "category": "structure", "x": 3905.6, "z": 4970.7, "px": 2714.6, "py": 2896.3, "has_dungeon": false, "has_important": true}, {"id": 2460, "name": "Ruin2", "category": "structure", "x": -9321.9, "z": 2830.6, "px": 457.1, "py": 2531.1, "has_dungeon": false, "has_important": true}, {"id": 2461, "name": "Ruin2", "category": "structure", "x": 7880.7, "z": -2941.4, "px": 3393.0, "py": 1546.0, "has_dungeon": false, "has_important": true}, {"id": 2462, "name": "Ruin2", "category": "structure", "x": 2483.9, "z": -4411.3, "px": 2471.9, "py": 1295.1, "has_dungeon": false, "has_important": true}, {"id": 2463, "name": "Ruin2", "category": "structure", "x": -1518.3, "z": -5557.8, "px": 1788.9, "py": 1099.5, "has_dungeon": false, "has_important": true}, {"id": 2464, "name": "Ruin2", "category": "structure", "x": -6015.1, "z": 4522.4, "px": 1021.4, "py": 2819.8, "has_dungeon": false, "has_important": true}, {"id": 2465, "name": "Ruin2", "category": "structure", "x": -2539.4, "z": 1408.2, "px": 1614.6, "py": 2288.3, "has_dungeon": false, "has_important": true}, {"id": 2466, "name": "Ruin2", "category": "structure", "x": -7280.0, "z": -1724.7, "px": 805.5, "py": 1753.7, "has_dungeon": false, "has_important": true}, {"id": 2467, "name": "Ruin2", "category": "structure", "x": 518.2, "z": 5310.1, "px": 2136.4, "py": 2954.3, "has_dungeon": false, "has_important": true}, {"id": 2468, "name": "Ruin2", "category": "structure", "x": 2310.8, "z": 5041.9, "px": 2442.4, "py": 2908.5, "has_dungeon": false, "has_important": true}, {"id": 2469, "name": "Ruin2", "category": "structure", "x": -3078.2, "z": -2064.8, "px": 1522.7, "py": 1695.6, "has_dungeon": false, "has_important": true}, {"id": 2470, "name": "Ruin2", "category": "structure", "x": -1364.1, "z": -2032.7, "px": 1815.2, "py": 1701.1, "has_dungeon": false, "has_important": true}, {"id": 2471, "name": "Ruin2", "category": "structure", "x": 8946.2, "z": 182.7, "px": 3574.8, "py": 2079.2, "has_dungeon": false, "has_important": true}, {"id": 2472, "name": "Ruin2", "category": "structure", "x": 3069.6, "z": -188.3, "px": 2571.9, "py": 2015.9, "has_dungeon": false, "has_important": true}, {"id": 2473, "name": "Ruin2", "category": "structure", "x": 2291.0, "z": -879.0, "px": 2439.0, "py": 1898.0, "has_dungeon": false, "has_important": true}, {"id": 2474, "name": "Ruin2", "category": "structure", "x": 4414.5, "z": -445.2, "px": 2801.4, "py": 1972.0, "has_dungeon": false, "has_important": true}, {"id": 2475, "name": "Ruin2", "category": "structure", "x": 3857.2, "z": 3971.9, "px": 2706.3, "py": 2725.9, "has_dungeon": false, "has_important": true}, {"id": 2476, "name": "Ruin2", "category": "structure", "x": -2001.1, "z": 370.1, "px": 1706.5, "py": 2111.2, "has_dungeon": false, "has_important": true}, {"id": 2477, "name": "Ruin2", "category": "structure", "x": 8494.9, "z": 2795.5, "px": 3497.8, "py": 2525.1, "has_dungeon": false, "has_important": true}, {"id": 2478, "name": "Ruin2", "category": "structure", "x": 3255.7, "z": -2690.3, "px": 2603.6, "py": 1588.9, "has_dungeon": false, "has_important": true}, {"id": 2479, "name": "Ruin2", "category": "structure", "x": -3568.0, "z": 4660.4, "px": 1439.1, "py": 2843.4, "has_dungeon": false, "has_important": true}, {"id": 2480, "name": "Ruin2", "category": "structure", "x": 6932.8, "z": -4147.5, "px": 3231.2, "py": 1340.2, "has_dungeon": false, "has_important": true}, {"id": 2481, "name": "Ruin2", "category": "structure", "x": -4034.0, "z": -81.8, "px": 1359.5, "py": 2034.0, "has_dungeon": false, "has_important": true}, {"id": 2482, "name": "Ruin2", "category": "structure", "x": -9007.7, "z": 2797.3, "px": 510.7, "py": 2525.4, "has_dungeon": false, "has_important": true}, {"id": 2483, "name": "Ruin2", "category": "structure", "x": -8276.1, "z": -832.6, "px": 635.5, "py": 1905.9, "has_dungeon": false, "has_important": true}, {"id": 2484, "name": "Ruin2", "category": "structure", "x": 8586.1, "z": 127.8, "px": 3513.4, "py": 2069.8, "has_dungeon": false, "has_important": true}, {"id": 2485, "name": "Ruin2", "category": "structure", "x": 846.4, "z": 398.4, "px": 2192.5, "py": 2116.0, "has_dungeon": false, "has_important": true}, {"id": 2486, "name": "Ruin2", "category": "structure", "x": 6645.3, "z": 3080.9, "px": 3182.1, "py": 2573.8, "has_dungeon": false, "has_important": true}, {"id": 2487, "name": "Ruin2", "category": "structure", "x": 3462.2, "z": 5007.8, "px": 2638.9, "py": 2902.7, "has_dungeon": false, "has_important": true}, {"id": 2488, "name": "Ruin2", "category": "structure", "x": -6642.8, "z": -4588.8, "px": 914.3, "py": 1264.8, "has_dungeon": false, "has_important": true}, {"id": 2489, "name": "Ruin2", "category": "structure", "x": 4537.8, "z": -5033.9, "px": 2822.5, "py": 1188.9, "has_dungeon": false, "has_important": true}, {"id": 2490, "name": "Ruin2", "category": "structure", "x": 3960.0, "z": 6986.1, "px": 2723.8, "py": 3240.3, "has_dungeon": false, "has_important": true}, {"id": 2491, "name": "Ruin2", "category": "structure", "x": -1275.2, "z": -1333.2, "px": 1830.4, "py": 1820.5, "has_dungeon": false, "has_important": true}, {"id": 2492, "name": "Ruin2", "category": "structure", "x": 3903.8, "z": 5112.7, "px": 2714.2, "py": 2920.6, "has_dungeon": false, "has_important": true}, {"id": 2493, "name": "Ruin2", "category": "structure", "x": -1150.6, "z": -1042.8, "px": 1851.6, "py": 1870.0, "has_dungeon": false, "has_important": true}, {"id": 2494, "name": "Ruin2", "category": "structure", "x": 628.4, "z": 5427.5, "px": 2155.2, "py": 2974.3, "has_dungeon": false, "has_important": true}, {"id": 2495, "name": "Ruin2", "category": "structure", "x": -9275.0, "z": -2773.1, "px": 465.1, "py": 1574.7, "has_dungeon": false, "has_important": true}, {"id": 2496, "name": "Ruin2", "category": "structure", "x": 2301.7, "z": -1263.0, "px": 2440.8, "py": 1832.4, "has_dungeon": false, "has_important": true}, {"id": 2497, "name": "Ruin2", "category": "structure", "x": 9721.6, "z": -1579.0, "px": 3707.2, "py": 1778.5, "has_dungeon": false, "has_important": true}, {"id": 2498, "name": "Ruin2", "category": "structure", "x": -7315.3, "z": -1969.0, "px": 799.5, "py": 1712.0, "has_dungeon": false, "has_important": true}, {"id": 2499, "name": "Ruin2", "category": "structure", "x": -3887.7, "z": -404.6, "px": 1384.5, "py": 1978.9, "has_dungeon": false, "has_important": true}, {"id": 2500, "name": "Ruin2", "category": "structure", "x": 4156.9, "z": -137.9, "px": 2757.4, "py": 2024.5, "has_dungeon": false, "has_important": true}, {"id": 2501, "name": "Ruin2", "category": "structure", "x": -1082.7, "z": -1470.2, "px": 1863.2, "py": 1797.1, "has_dungeon": false, "has_important": true}, {"id": 2502, "name": "Ruin2", "category": "structure", "x": -5141.8, "z": -1044.0, "px": 1170.5, "py": 1869.8, "has_dungeon": false, "has_important": true}, {"id": 2503, "name": "Ruin2", "category": "structure", "x": -4018.4, "z": 1917.0, "px": 1362.2, "py": 2375.2, "has_dungeon": false, "has_important": true}, {"id": 2504, "name": "Ruin2", "category": "structure", "x": 2478.1, "z": -2195.7, "px": 2470.9, "py": 1673.3, "has_dungeon": false, "has_important": true}, {"id": 2505, "name": "Ruin2", "category": "structure", "x": 1909.1, "z": 3727.0, "px": 2373.8, "py": 2684.1, "has_dungeon": false, "has_important": true}, {"id": 2506, "name": "Ruin2", "category": "structure", "x": 7730.1, "z": -2942.9, "px": 3367.3, "py": 1545.7, "has_dungeon": false, "has_important": true}, {"id": 2507, "name": "Ruin2", "category": "structure", "x": -464.6, "z": 459.6, "px": 1968.7, "py": 2126.4, "has_dungeon": false, "has_important": true}, {"id": 2508, "name": "Ruin2", "category": "structure", "x": 2036.0, "z": 978.2, "px": 2395.5, "py": 2214.9, "has_dungeon": false, "has_important": true}, {"id": 2509, "name": "Ruin2", "category": "structure", "x": 3835.9, "z": 4011.4, "px": 2702.7, "py": 2732.6, "has_dungeon": false, "has_important": true}, {"id": 2510, "name": "Ruin2", "category": "structure", "x": 4307.9, "z": -909.3, "px": 2783.2, "py": 1892.8, "has_dungeon": false, "has_important": true}, {"id": 2511, "name": "Ruin2", "category": "structure", "x": 3850.8, "z": 3766.6, "px": 2705.2, "py": 2690.8, "has_dungeon": false, "has_important": true}, {"id": 2512, "name": "Ruin2", "category": "structure", "x": -2510.9, "z": -272.6, "px": 1619.5, "py": 2001.5, "has_dungeon": false, "has_important": true}, {"id": 2513, "name": "Ruin2", "category": "structure", "x": -6846.9, "z": 5515.0, "px": 879.5, "py": 2989.2, "has_dungeon": false, "has_important": true}, {"id": 2514, "name": "Ruin2", "category": "structure", "x": -5166.1, "z": 5651.3, "px": 1166.3, "py": 3012.5, "has_dungeon": false, "has_important": true}, {"id": 2515, "name": "Ruin2", "category": "structure", "x": -2615.1, "z": -6261.4, "px": 1601.7, "py": 979.4, "has_dungeon": false, "has_important": true}, {"id": 2516, "name": "Ruin2", "category": "structure", "x": 3278.0, "z": -2442.2, "px": 2607.4, "py": 1631.2, "has_dungeon": false, "has_important": true}, {"id": 2517, "name": "Ruin2", "category": "structure", "x": 3477.8, "z": 3443.8, "px": 2641.5, "py": 2635.7, "has_dungeon": false, "has_important": true}, {"id": 2518, "name": "Ruin2", "category": "structure", "x": 198.3, "z": -1066.4, "px": 2081.8, "py": 1866.0, "has_dungeon": false, "has_important": true}, {"id": 2519, "name": "Ruin2", "category": "structure", "x": 774.0, "z": 3504.5, "px": 2180.1, "py": 2646.1, "has_dungeon": false, "has_important": true}, {"id": 2520, "name": "Ruin2", "category": "structure", "x": 1850.6, "z": -1259.7, "px": 2363.8, "py": 1833.0, "has_dungeon": false, "has_important": true}, {"id": 2521, "name": "Ruin2", "category": "structure", "x": -2059.9, "z": 384.0, "px": 1696.4, "py": 2113.5, "has_dungeon": false, "has_important": true}, {"id": 2522, "name": "Ruin2", "category": "structure", "x": -694.0, "z": -6484.7, "px": 1929.6, "py": 941.3, "has_dungeon": false, "has_important": true}, {"id": 2523, "name": "Ruin2", "category": "structure", "x": 9421.8, "z": -13.3, "px": 3656.0, "py": 2045.7, "has_dungeon": false, "has_important": true}, {"id": 2524, "name": "Ruin2", "category": "structure", "x": -9194.4, "z": 3378.4, "px": 478.8, "py": 2624.6, "has_dungeon": false, "has_important": true}, {"id": 2525, "name": "Ruin2", "category": "structure", "x": -3858.3, "z": -2705.4, "px": 1389.5, "py": 1586.3, "has_dungeon": false, "has_important": true}, {"id": 2526, "name": "Ruin2", "category": "structure", "x": 2452.4, "z": -4368.4, "px": 2466.5, "py": 1302.5, "has_dungeon": false, "has_important": true}, {"id": 2527, "name": "Ruin2", "category": "structure", "x": 8007.5, "z": -56.6, "px": 3414.6, "py": 2038.3, "has_dungeon": false, "has_important": true}, {"id": 2528, "name": "Ruin2", "category": "structure", "x": -5240.2, "z": 263.5, "px": 1153.7, "py": 2093.0, "has_dungeon": false, "has_important": true}, {"id": 2529, "name": "Ruin2", "category": "structure", "x": -58.5, "z": -1645.4, "px": 2038.0, "py": 1767.2, "has_dungeon": false, "has_important": true}, {"id": 2530, "name": "Ruin2", "category": "structure", "x": 2363.8, "z": 5058.5, "px": 2451.4, "py": 2911.3, "has_dungeon": false, "has_important": true}, {"id": 2531, "name": "Ruin2", "category": "structure", "x": -321.8, "z": -4283.4, "px": 1993.1, "py": 1317.0, "has_dungeon": false, "has_important": true}, {"id": 2532, "name": "Ruin2", "category": "structure", "x": -1421.1, "z": -1643.8, "px": 1805.5, "py": 1767.5, "has_dungeon": false, "has_important": true}, {"id": 2533, "name": "Ruin2", "category": "structure", "x": -7113.8, "z": 2430.4, "px": 833.9, "py": 2462.8, "has_dungeon": false, "has_important": true}, {"id": 2534, "name": "Ruin2", "category": "structure", "x": -1847.7, "z": -4177.6, "px": 1732.7, "py": 1335.0, "has_dungeon": false, "has_important": true}, {"id": 2535, "name": "Ruin2", "category": "structure", "x": 8824.8, "z": -1676.7, "px": 3554.1, "py": 1761.8, "has_dungeon": false, "has_important": true}, {"id": 2536, "name": "Ruin2", "category": "structure", "x": -5701.8, "z": -1785.1, "px": 1074.9, "py": 1743.3, "has_dungeon": false, "has_important": true}, {"id": 2537, "name": "Ruin2", "category": "structure", "x": 973.4, "z": 401.0, "px": 2214.1, "py": 2116.4, "has_dungeon": false, "has_important": true}, {"id": 2538, "name": "Ruin2", "category": "structure", "x": 8389.8, "z": 246.0, "px": 3479.9, "py": 2090.0, "has_dungeon": false, "has_important": true}, {"id": 2539, "name": "Ruin2", "category": "structure", "x": -6649.2, "z": -4718.7, "px": 913.2, "py": 1242.7, "has_dungeon": false, "has_important": true}, {"id": 2540, "name": "Ruin2", "category": "structure", "x": -8127.1, "z": 2798.8, "px": 661.0, "py": 2525.7, "has_dungeon": false, "has_important": true}, {"id": 2541, "name": "Ruin2", "category": "structure", "x": 3473.5, "z": 3773.5, "px": 2640.8, "py": 2692.0, "has_dungeon": false, "has_important": true}, {"id": 2542, "name": "Ruin2", "category": "structure", "x": -182.5, "z": 882.2, "px": 2016.9, "py": 2198.6, "has_dungeon": false, "has_important": true}, {"id": 2543, "name": "Ruin2", "category": "structure", "x": 5614.5, "z": -1071.5, "px": 3006.2, "py": 1865.1, "has_dungeon": false, "has_important": true}, {"id": 2544, "name": "Ruin2", "category": "structure", "x": -384.9, "z": 575.0, "px": 1982.3, "py": 2146.1, "has_dungeon": false, "has_important": true}, {"id": 2545, "name": "Ruin2", "category": "structure", "x": 4556.4, "z": -4938.2, "px": 2825.6, "py": 1205.2, "has_dungeon": false, "has_important": true}, {"id": 2546, "name": "Ruin2", "category": "structure", "x": -524.7, "z": 379.9, "px": 1958.5, "py": 2112.8, "has_dungeon": false, "has_important": true}, {"id": 2547, "name": "Ruin2", "category": "structure", "x": 9802.1, "z": -1621.7, "px": 3720.9, "py": 1771.2, "has_dungeon": false, "has_important": true}, {"id": 2548, "name": "Ruin2", "category": "structure", "x": 1836.0, "z": -6339.4, "px": 2361.3, "py": 966.1, "has_dungeon": false, "has_important": true}, {"id": 2549, "name": "Ruin2", "category": "structure", "x": 8212.3, "z": -328.2, "px": 3449.6, "py": 1992.0, "has_dungeon": false, "has_important": true}, {"id": 2550, "name": "Ruin2", "category": "structure", "x": 4335.2, "z": 6862.9, "px": 2787.9, "py": 3219.3, "has_dungeon": false, "has_important": true}, {"id": 2551, "name": "Ruin2", "category": "structure", "x": -6153.9, "z": 2193.4, "px": 997.7, "py": 2422.3, "has_dungeon": false, "has_important": true}, {"id": 2552, "name": "Ruin2", "category": "structure", "x": 1971.7, "z": -692.0, "px": 2384.5, "py": 1929.9, "has_dungeon": false, "has_important": true}, {"id": 2553, "name": "Ruin2", "category": "structure", "x": -4988.7, "z": 907.4, "px": 1196.6, "py": 2202.9, "has_dungeon": false, "has_important": true}, {"id": 2554, "name": "Ruin2", "category": "structure", "x": -1172.9, "z": -1729.7, "px": 1847.8, "py": 1752.8, "has_dungeon": false, "has_important": true}, {"id": 2555, "name": "Ruin2", "category": "structure", "x": -7694.5, "z": -4745.6, "px": 734.8, "py": 1238.1, "has_dungeon": false, "has_important": true}, {"id": 2556, "name": "Ruin2", "category": "structure", "x": 7423.7, "z": 1273.1, "px": 3315.0, "py": 2265.3, "has_dungeon": false, "has_important": true}, {"id": 2557, "name": "Ruin2", "category": "structure", "x": 2248.5, "z": 4036.0, "px": 2431.7, "py": 2736.8, "has_dungeon": false, "has_important": true}, {"id": 2558, "name": "Ruin2", "category": "structure", "x": -8188.0, "z": 516.7, "px": 650.6, "py": 2136.2, "has_dungeon": false, "has_important": true}, {"id": 2559, "name": "Ruin2", "category": "structure", "x": 8387.4, "z": -1869.3, "px": 3479.4, "py": 1729.0, "has_dungeon": false, "has_important": true}, {"id": 2560, "name": "Ruin2", "category": "structure", "x": -9749.4, "z": -2261.6, "px": 384.1, "py": 1662.0, "has_dungeon": false, "has_important": true}, {"id": 2561, "name": "Ruin2", "category": "structure", "x": 1164.8, "z": 5567.5, "px": 2246.8, "py": 2998.2, "has_dungeon": false, "has_important": true}, {"id": 2562, "name": "Ruin2", "category": "structure", "x": -4176.6, "z": -6321.4, "px": 1335.2, "py": 969.1, "has_dungeon": false, "has_important": true}, {"id": 2563, "name": "Ruin2", "category": "structure", "x": 1986.6, "z": 1455.9, "px": 2387.0, "py": 2296.5, "has_dungeon": false, "has_important": true}, {"id": 2564, "name": "Ruin2", "category": "structure", "x": 1873.3, "z": -836.8, "px": 2367.7, "py": 1905.2, "has_dungeon": false, "has_important": true}, {"id": 2565, "name": "Ruin2", "category": "structure", "x": 5304.9, "z": 490.8, "px": 2953.4, "py": 2131.8, "has_dungeon": false, "has_important": true}, {"id": 2566, "name": "Ruin2", "category": "structure", "x": -7180.7, "z": -4918.3, "px": 822.5, "py": 1208.6, "has_dungeon": false, "has_important": true}, {"id": 2567, "name": "Ruin2", "category": "structure", "x": -6613.7, "z": -4602.4, "px": 919.3, "py": 1262.5, "has_dungeon": false, "has_important": true}, {"id": 2568, "name": "Ruin2", "category": "structure", "x": 2572.1, "z": -3643.1, "px": 2487.0, "py": 1426.2, "has_dungeon": false, "has_important": true}, {"id": 2569, "name": "Ruin2", "category": "structure", "x": 8893.7, "z": 130.4, "px": 3565.9, "py": 2070.3, "has_dungeon": false, "has_important": true}, {"id": 2570, "name": "Ruin2", "category": "structure", "x": 1674.4, "z": -6334.5, "px": 2333.8, "py": 966.9, "has_dungeon": false, "has_important": true}, {"id": 2571, "name": "Ruin2", "category": "structure", "x": -4972.1, "z": 5509.6, "px": 1199.4, "py": 2988.3, "has_dungeon": false, "has_important": true}, {"id": 2572, "name": "Ruin2", "category": "structure", "x": 2833.0, "z": -4970.7, "px": 2531.5, "py": 1199.7, "has_dungeon": false, "has_important": true}, {"id": 2573, "name": "Ruin2", "category": "structure", "x": 3891.9, "z": 3763.3, "px": 2712.2, "py": 2690.3, "has_dungeon": false, "has_important": true}, {"id": 2574, "name": "Ruin2", "category": "structure", "x": 785.6, "z": 4816.0, "px": 2182.1, "py": 2869.9, "has_dungeon": false, "has_important": true}, {"id": 2575, "name": "Ruin2", "category": "structure", "x": 3709.0, "z": 3966.6, "px": 2681.0, "py": 2725.0, "has_dungeon": false, "has_important": true}, {"id": 2576, "name": "Ruin2", "category": "structure", "x": -4842.8, "z": 5566.3, "px": 1221.5, "py": 2998.0, "has_dungeon": false, "has_important": true}, {"id": 2577, "name": "Ruin2", "category": "structure", "x": -9550.3, "z": -210.7, "px": 418.1, "py": 2012.0, "has_dungeon": false, "has_important": true}, {"id": 2578, "name": "Ruin2", "category": "structure", "x": 1098.5, "z": 5781.6, "px": 2235.5, "py": 3034.7, "has_dungeon": false, "has_important": true}, {"id": 2579, "name": "Ruin2", "category": "structure", "x": 7822.4, "z": -2666.3, "px": 3383.0, "py": 1593.0, "has_dungeon": false, "has_important": true}, {"id": 2580, "name": "Ruin2", "category": "structure", "x": -3210.1, "z": 6576.4, "px": 1500.1, "py": 3170.4, "has_dungeon": false, "has_important": true}, {"id": 2581, "name": "Ruin2", "category": "structure", "x": -9420.1, "z": -187.3, "px": 440.3, "py": 2016.0, "has_dungeon": false, "has_important": true}, {"id": 2582, "name": "Ruin2", "category": "structure", "x": -6460.2, "z": 3837.9, "px": 945.5, "py": 2703.0, "has_dungeon": false, "has_important": true}, {"id": 2583, "name": "Ruin2", "category": "structure", "x": 5874.8, "z": -4758.0, "px": 3050.6, "py": 1236.0, "has_dungeon": false, "has_important": true}, {"id": 2584, "name": "Ruin2", "category": "structure", "x": 1791.1, "z": -6352.2, "px": 2353.7, "py": 963.9, "has_dungeon": false, "has_important": true}, {"id": 2985, "name": "Ruin3", "category": "structure", "x": -3528.3, "z": 3639.5, "px": 1445.8, "py": 2669.1, "has_dungeon": false, "has_important": true}, {"id": 2986, "name": "Ruin3", "category": "structure", "x": 5485.0, "z": 256.7, "px": 2984.1, "py": 2091.8, "has_dungeon": false, "has_important": true}, {"id": 2987, "name": "Ruin3", "category": "structure", "x": -2701.7, "z": -2961.3, "px": 1586.9, "py": 1542.6, "has_dungeon": false, "has_important": true}, {"id": 2988, "name": "Ruin3", "category": "structure", "x": -1339.4, "z": -5099.1, "px": 1819.4, "py": 1177.8, "has_dungeon": false, "has_important": true}, {"id": 2989, "name": "Ruin3", "category": "structure", "x": 5802.4, "z": -1069.0, "px": 3038.3, "py": 1865.6, "has_dungeon": false, "has_important": true}, {"id": 2990, "name": "Ruin3", "category": "structure", "x": 3786.4, "z": -646.2, "px": 2694.2, "py": 1937.7, "has_dungeon": false, "has_important": true}, {"id": 2991, "name": "Ruin3", "category": "structure", "x": 7220.7, "z": -968.1, "px": 3280.3, "py": 1882.8, "has_dungeon": false, "has_important": true}, {"id": 2992, "name": "Ruin3", "category": "structure", "x": -3981.8, "z": 59.5, "px": 1368.4, "py": 2058.2, "has_dungeon": false, "has_important": true}, {"id": 2993, "name": "Ruin3", "category": "structure", "x": 2440.9, "z": -3690.1, "px": 2464.6, "py": 1418.2, "has_dungeon": false, "has_important": true}, {"id": 2994, "name": "Ruin3", "category": "structure", "x": 1471.4, "z": 3188.2, "px": 2299.1, "py": 2592.1, "has_dungeon": false, "has_important": true}, {"id": 2995, "name": "Ruin3", "category": "structure", "x": -42.9, "z": -5765.1, "px": 2040.7, "py": 1064.1, "has_dungeon": false, "has_important": true}, {"id": 2996, "name": "Ruin3", "category": "structure", "x": 954.1, "z": 4851.0, "px": 2210.8, "py": 2875.9, "has_dungeon": false, "has_important": true}, {"id": 2997, "name": "Ruin3", "category": "structure", "x": -5903.0, "z": 2154.2, "px": 1040.6, "py": 2415.7, "has_dungeon": false, "has_important": true}, {"id": 2998, "name": "Ruin3", "category": "structure", "x": 1348.5, "z": -4211.5, "px": 2278.1, "py": 1329.2, "has_dungeon": false, "has_important": true}, {"id": 2999, "name": "Ruin3", "category": "structure", "x": -3217.6, "z": 2438.8, "px": 1498.9, "py": 2464.2, "has_dungeon": false, "has_important": true}, {"id": 3000, "name": "Ruin3", "category": "structure", "x": 269.9, "z": 5500.0, "px": 2094.1, "py": 2986.7, "has_dungeon": false, "has_important": true}, {"id": 3001, "name": "Ruin3", "category": "structure", "x": 4563.2, "z": -1416.9, "px": 2826.8, "py": 1806.2, "has_dungeon": false, "has_important": true}, {"id": 3002, "name": "Ruin3", "category": "structure", "x": -3064.0, "z": 5178.4, "px": 1525.1, "py": 2931.8, "has_dungeon": false, "has_important": true}, {"id": 3003, "name": "Ruin3", "category": "structure", "x": 5112.0, "z": 3093.0, "px": 2920.4, "py": 2575.9, "has_dungeon": false, "has_important": true}, {"id": 3004, "name": "Ruin3", "category": "structure", "x": 3210.4, "z": -469.0, "px": 2595.9, "py": 1968.0, "has_dungeon": false, "has_important": true}, {"id": 3005, "name": "Ruin3", "category": "structure", "x": -3134.7, "z": 5879.6, "px": 1513.0, "py": 3051.5, "has_dungeon": false, "has_important": true}, {"id": 3006, "name": "Ruin3", "category": "structure", "x": -4370.1, "z": -5699.8, "px": 1302.2, "py": 1075.2, "has_dungeon": false, "has_important": true}, {"id": 3007, "name": "Ruin3", "category": "structure", "x": 4014.1, "z": 4285.2, "px": 2733.1, "py": 2779.3, "has_dungeon": false, "has_important": true}, {"id": 3008, "name": "Ruin3", "category": "structure", "x": -3826.3, "z": 2475.6, "px": 1395.0, "py": 2470.5, "has_dungeon": false, "has_important": true}, {"id": 3009, "name": "Ruin3", "category": "structure", "x": 2988.6, "z": -2944.1, "px": 2558.1, "py": 1545.5, "has_dungeon": false, "has_important": true}, {"id": 3010, "name": "Ruin3", "category": "structure", "x": -696.9, "z": 5121.4, "px": 1929.1, "py": 2922.1, "has_dungeon": false, "has_important": true}, {"id": 3011, "name": "Ruin3", "category": "structure", "x": -4011.6, "z": 2956.5, "px": 1363.4, "py": 2552.6, "has_dungeon": false, "has_important": true}, {"id": 3012, "name": "Ruin3", "category": "structure", "x": 6058.5, "z": 1594.3, "px": 3082.0, "py": 2320.1, "has_dungeon": false, "has_important": true}, {"id": 3013, "name": "Ruin3", "category": "structure", "x": -5557.1, "z": 557.8, "px": 1099.6, "py": 2143.2, "has_dungeon": false, "has_important": true}, {"id": 3014, "name": "Ruin3", "category": "structure", "x": 3911.0, "z": 1337.4, "px": 2715.5, "py": 2276.2, "has_dungeon": false, "has_important": true}, {"id": 3015, "name": "Ruin3", "category": "structure", "x": 4728.4, "z": -1976.8, "px": 2855.0, "py": 1710.6, "has_dungeon": false, "has_important": true}, {"id": 3016, "name": "Ruin3", "category": "structure", "x": -466.3, "z": -6255.7, "px": 1968.4, "py": 980.4, "has_dungeon": false, "has_important": true}, {"id": 3017, "name": "Ruin3", "category": "structure", "x": 3091.6, "z": -5108.7, "px": 2575.6, "py": 1176.1, "has_dungeon": false, "has_important": true}, {"id": 3018, "name": "Ruin3", "category": "structure", "x": -7315.4, "z": 2443.9, "px": 799.5, "py": 2465.1, "has_dungeon": false, "has_important": true}, {"id": 3019, "name": "Ruin3", "category": "structure", "x": -7083.7, "z": -129.6, "px": 839.0, "py": 2025.9, "has_dungeon": false, "has_important": true}, {"id": 3020, "name": "Ruin3", "category": "structure", "x": -4139.8, "z": -4283.5, "px": 1341.5, "py": 1316.9, "has_dungeon": false, "has_important": true}, {"id": 3021, "name": "Ruin3", "category": "structure", "x": -898.2, "z": -3963.9, "px": 1894.7, "py": 1371.5, "has_dungeon": false, "has_important": true}, {"id": 3022, "name": "Ruin3", "category": "structure", "x": 2421.8, "z": 4685.9, "px": 2461.3, "py": 2847.7, "has_dungeon": false, "has_important": true}, {"id": 3023, "name": "Ruin3", "category": "structure", "x": 2351.1, "z": -4908.0, "px": 2449.3, "py": 1210.4, "has_dungeon": false, "has_important": true}, {"id": 3024, "name": "Ruin3", "category": "structure", "x": -836.2, "z": 3976.5, "px": 1905.3, "py": 2726.7, "has_dungeon": false, "has_important": true}, {"id": 3025, "name": "Ruin3", "category": "structure", "x": 5296.6, "z": -1581.4, "px": 2952.0, "py": 1778.1, "has_dungeon": false, "has_important": true}, {"id": 3026, "name": "Ruin3", "category": "structure", "x": 4910.1, "z": -2505.8, "px": 2886.0, "py": 1620.3, "has_dungeon": false, "has_important": true}, {"id": 3027, "name": "Ruin3", "category": "structure", "x": 5495.7, "z": -2190.2, "px": 2985.9, "py": 1674.2, "has_dungeon": false, "has_important": true}, {"id": 3028, "name": "Ruin3", "category": "structure", "x": 6797.9, "z": 3029.4, "px": 3208.2, "py": 2565.0, "has_dungeon": false, "has_important": true}, {"id": 3029, "name": "Ruin3", "category": "structure", "x": 1862.6, "z": 4548.5, "px": 2365.9, "py": 2824.3, "has_dungeon": false, "has_important": true}, {"id": 3030, "name": "Ruin3", "category": "structure", "x": -3133.1, "z": 1350.0, "px": 1513.3, "py": 2278.4, "has_dungeon": false, "has_important": true}, {"id": 3031, "name": "Ruin3", "category": "structure", "x": 1172.6, "z": 3839.6, "px": 2248.1, "py": 2703.3, "has_dungeon": false, "has_important": true}, {"id": 3032, "name": "Ruin3", "category": "structure", "x": -6602.4, "z": -3598.2, "px": 921.2, "py": 1433.9, "has_dungeon": false, "has_important": true}, {"id": 3033, "name": "Ruin3", "category": "structure", "x": 6921.0, "z": 2069.5, "px": 3229.2, "py": 2401.2, "has_dungeon": false, "has_important": true}, {"id": 3034, "name": "Ruin3", "category": "structure", "x": -3986.1, "z": 1201.6, "px": 1367.7, "py": 2253.1, "has_dungeon": false, "has_important": true}, {"id": 3235, "name": "StoneTower1", "category": "structure", "x": 3006.8, "z": -3463.3, "px": 2561.2, "py": 1456.9, "has_dungeon": false, "has_important": true}, {"id": 3236, "name": "StoneTower1", "category": "structure", "x": -5039.8, "z": -5442.1, "px": 1187.9, "py": 1119.2, "has_dungeon": false, "has_important": true}, {"id": 3237, "name": "StoneTower1", "category": "structure", "x": 1806.0, "z": 3774.9, "px": 2356.2, "py": 2692.2, "has_dungeon": false, "has_important": true}, {"id": 3238, "name": "StoneTower1", "category": "structure", "x": -4471.8, "z": 3253.7, "px": 1284.8, "py": 2603.3, "has_dungeon": false, "has_important": true}, {"id": 3239, "name": "StoneTower1", "category": "structure", "x": 4723.3, "z": 1155.5, "px": 2854.1, "py": 2245.2, "has_dungeon": false, "has_important": true}, {"id": 3240, "name": "StoneTower1", "category": "structure", "x": -2926.6, "z": 835.4, "px": 1548.5, "py": 2190.6, "has_dungeon": false, "has_important": true}, {"id": 3241, "name": "StoneTower1", "category": "structure", "x": -1392.6, "z": -6780.2, "px": 1810.3, "py": 890.8, "has_dungeon": false, "has_important": true}, {"id": 3242, "name": "StoneTower1", "category": "structure", "x": 3888.2, "z": -5168.2, "px": 2711.6, "py": 1166.0, "has_dungeon": false, "has_important": true}, {"id": 3243, "name": "StoneTower1", "category": "structure", "x": -14.8, "z": -4868.4, "px": 2045.5, "py": 1217.1, "has_dungeon": false, "has_important": true}, {"id": 3244, "name": "StoneTower1", "category": "structure", "x": -4339.2, "z": 6088.6, "px": 1307.4, "py": 3087.1, "has_dungeon": false, "has_important": true}, {"id": 3245, "name": "StoneTower1", "category": "structure", "x": 181.8, "z": 3450.7, "px": 2079.0, "py": 2636.9, "has_dungeon": false, "has_important": true}, {"id": 3246, "name": "StoneTower1", "category": "structure", "x": -4239.4, "z": -2419.6, "px": 1324.5, "py": 1635.1, "has_dungeon": false, "has_important": true}, {"id": 3247, "name": "StoneTower1", "category": "structure", "x": -5118.4, "z": 2937.6, "px": 1174.5, "py": 2549.4, "has_dungeon": false, "has_important": true}, {"id": 3248, "name": "StoneTower1", "category": "structure", "x": 3015.8, "z": 249.6, "px": 2562.7, "py": 2090.6, "has_dungeon": false, "has_important": true}, {"id": 3249, "name": "StoneTower1", "category": "structure", "x": -7626.8, "z": -2000.3, "px": 746.4, "py": 1706.6, "has_dungeon": false, "has_important": true}, {"id": 3250, "name": "StoneTower1", "category": "structure", "x": -2360.9, "z": 5073.2, "px": 1645.1, "py": 2913.8, "has_dungeon": false, "has_important": true}, {"id": 3251, "name": "StoneTower1", "category": "structure", "x": -5004.6, "z": 3952.7, "px": 1193.9, "py": 2722.6, "has_dungeon": false, "has_important": true}, {"id": 3252, "name": "StoneTower1", "category": "structure", "x": 2828.2, "z": -6146.1, "px": 2530.7, "py": 999.1, "has_dungeon": false, "has_important": true}, {"id": 3253, "name": "StoneTower1", "category": "structure", "x": -4177.7, "z": -1408.0, "px": 1335.0, "py": 1807.7, "has_dungeon": false, "has_important": true}, {"id": 3254, "name": "StoneTower1", "category": "structure", "x": 4606.2, "z": 2943.7, "px": 2834.1, "py": 2550.4, "has_dungeon": false, "has_important": true}, {"id": 3255, "name": "StoneTower1", "category": "structure", "x": 6918.8, "z": -2478.2, "px": 3228.8, "py": 1625.1, "has_dungeon": false, "has_important": true}, {"id": 3256, "name": "StoneTower1", "category": "structure", "x": -2612.1, "z": 6065.8, "px": 1602.2, "py": 3083.2, "has_dungeon": false, "has_important": true}, {"id": 3257, "name": "StoneTower1", "category": "structure", "x": 2106.5, "z": 5960.8, "px": 2407.5, "py": 3065.3, "has_dungeon": false, "has_important": true}, {"id": 3258, "name": "StoneTower1", "category": "structure", "x": 3894.5, "z": -1284.0, "px": 2712.7, "py": 1828.9, "has_dungeon": false, "has_important": true}, {"id": 3259, "name": "StoneTower1", "category": "structure", "x": -5699.2, "z": -1273.3, "px": 1075.3, "py": 1830.7, "has_dungeon": false, "has_important": true}, {"id": 3260, "name": "StoneTower1", "category": "structure", "x": 3018.7, "z": -1606.4, "px": 2563.2, "py": 1773.8, "has_dungeon": false, "has_important": true}, {"id": 3261, "name": "StoneTower1", "category": "structure", "x": 2111.3, "z": -2879.5, "px": 2408.3, "py": 1556.6, "has_dungeon": false, "has_important": true}, {"id": 3262, "name": "StoneTower1", "category": "structure", "x": -2513.3, "z": 3978.5, "px": 1619.1, "py": 2727.0, "has_dungeon": false, "has_important": true}, {"id": 3263, "name": "StoneTower1", "category": "structure", "x": -5060.6, "z": -2876.7, "px": 1184.3, "py": 1557.0, "has_dungeon": false, "has_important": true}, {"id": 3264, "name": "StoneTower1", "category": "structure", "x": -4028.3, "z": 3776.2, "px": 1360.5, "py": 2692.5, "has_dungeon": false, "has_important": true}, {"id": 3265, "name": "StoneTower1", "category": "structure", "x": -1846.3, "z": -3970.1, "px": 1732.9, "py": 1370.4, "has_dungeon": false, "has_important": true}, {"id": 3266, "name": "StoneTower1", "category": "structure", "x": 3956.6, "z": 4799.5, "px": 2723.3, "py": 2867.1, "has_dungeon": false, "has_important": true}, {"id": 3267, "name": "StoneTower1", "category": "structure", "x": -17.6, "z": -3847.1, "px": 2045.0, "py": 1391.4, "has_dungeon": false, "has_important": true}, {"id": 3268, "name": "StoneTower1", "category": "structure", "x": -1011.0, "z": -6214.7, "px": 1875.5, "py": 987.4, "has_dungeon": false, "has_important": true}, {"id": 3269, "name": "StoneTower1", "category": "structure", "x": -1802.5, "z": 3326.0, "px": 1740.4, "py": 2615.6, "has_dungeon": false, "has_important": true}, {"id": 3270, "name": "StoneTower1", "category": "structure", "x": -1973.7, "z": -5510.0, "px": 1711.2, "py": 1107.6, "has_dungeon": false, "has_important": true}, {"id": 3271, "name": "StoneTower1", "category": "structure", "x": 2058.2, "z": 5171.6, "px": 2399.3, "py": 2930.6, "has_dungeon": false, "has_important": true}, {"id": 3272, "name": "StoneTower1", "category": "structure", "x": 3255.2, "z": 4480.1, "px": 2603.6, "py": 2812.6, "has_dungeon": false, "has_important": true}, {"id": 3273, "name": "StoneTower1", "category": "structure", "x": 7984.1, "z": 261.4, "px": 3410.6, "py": 2092.6, "has_dungeon": false, "has_important": true}, {"id": 3274, "name": "StoneTower1", "category": "structure", "x": -2890.1, "z": -7102.0, "px": 1554.8, "py": 835.9, "has_dungeon": false, "has_important": true}, {"id": 3275, "name": "StoneTower1", "category": "structure", "x": 5113.0, "z": -1093.7, "px": 2920.6, "py": 1861.3, "has_dungeon": false, "has_important": true}, {"id": 3276, "name": "StoneTower1", "category": "structure", "x": 5897.9, "z": -4872.5, "px": 3054.6, "py": 1216.4, "has_dungeon": false, "has_important": true}, {"id": 3277, "name": "StoneTower1", "category": "structure", "x": -5881.5, "z": -4804.9, "px": 1044.2, "py": 1228.0, "has_dungeon": false, "has_important": true}, {"id": 3278, "name": "StoneTower1", "category": "structure", "x": -5513.4, "z": 1738.8, "px": 1107.0, "py": 2344.8, "has_dungeon": false, "has_important": true}, {"id": 3279, "name": "StoneTower1", "category": "structure", "x": -5313.8, "z": -2119.8, "px": 1141.1, "py": 1686.2, "has_dungeon": false, "has_important": true}, {"id": 3280, "name": "StoneTower1", "category": "structure", "x": -3597.5, "z": -1584.1, "px": 1434.0, "py": 1777.6, "has_dungeon": false, "has_important": true}, {"id": 3281, "name": "StoneTower1", "category": "structure", "x": 3125.2, "z": 3145.9, "px": 2581.4, "py": 2584.9, "has_dungeon": false, "has_important": true}, {"id": 3282, "name": "StoneTower1", "category": "structure", "x": -2634.1, "z": -3522.3, "px": 1598.4, "py": 1446.9, "has_dungeon": false, "has_important": true}, {"id": 3283, "name": "StoneTower1", "category": "structure", "x": 4090.8, "z": 6842.0, "px": 2746.2, "py": 3215.7, "has_dungeon": false, "has_important": true}, {"id": 3284, "name": "StoneTower1", "category": "structure", "x": -2443.7, "z": 2953.1, "px": 1630.9, "py": 2552.0, "has_dungeon": false, "has_important": true}, {"id": 3285, "name": "StoneTower3", "category": "structure", "x": 302.4, "z": 4176.3, "px": 2099.6, "py": 2760.8, "has_dungeon": false, "has_important": true}, {"id": 3286, "name": "StoneTower3", "category": "structure", "x": -3089.0, "z": -2237.1, "px": 1520.8, "py": 1666.2, "has_dungeon": false, "has_important": true}, {"id": 3287, "name": "StoneTower3", "category": "structure", "x": 2675.9, "z": 7241.2, "px": 2504.7, "py": 3283.8, "has_dungeon": false, "has_important": true}, {"id": 3288, "name": "StoneTower3", "category": "structure", "x": -2036.5, "z": -3262.1, "px": 1700.4, "py": 1491.3, "has_dungeon": false, "has_important": true}, {"id": 3289, "name": "StoneTower3", "category": "structure", "x": 7347.4, "z": 947.3, "px": 3302.0, "py": 2209.7, "has_dungeon": false, "has_important": true}, {"id": 3290, "name": "StoneTower3", "category": "structure", "x": 5131.0, "z": 5069.9, "px": 2923.7, "py": 2913.3, "has_dungeon": false, "has_important": true}, {"id": 3291, "name": "StoneTower3", "category": "structure", "x": -1611.3, "z": -4625.6, "px": 1773.0, "py": 1258.6, "has_dungeon": false, "has_important": true}, {"id": 3292, "name": "StoneTower3", "category": "structure", "x": -4358.2, "z": -6261.6, "px": 1304.2, "py": 979.4, "has_dungeon": false, "has_important": true}, {"id": 3293, "name": "StoneTower3", "category": "structure", "x": 3905.7, "z": 5312.0, "px": 2714.6, "py": 2954.6, "has_dungeon": false, "has_important": true}, {"id": 3294, "name": "StoneTower3", "category": "structure", "x": 3529.5, "z": 3958.9, "px": 2650.4, "py": 2723.7, "has_dungeon": false, "has_important": true}, {"id": 3295, "name": "StoneTower3", "category": "structure", "x": 643.3, "z": -7424.7, "px": 2157.8, "py": 780.9, "has_dungeon": false, "has_important": true}, {"id": 3296, "name": "StoneTower3", "category": "structure", "x": -7305.0, "z": 1929.2, "px": 801.3, "py": 2377.3, "has_dungeon": false, "has_important": true}, {"id": 3297, "name": "StoneTower3", "category": "structure", "x": 4142.0, "z": -2159.1, "px": 2754.9, "py": 1679.5, "has_dungeon": false, "has_important": true}, {"id": 3298, "name": "StoneTower3", "category": "structure", "x": 4469.5, "z": 1674.4, "px": 2810.8, "py": 2333.8, "has_dungeon": false, "has_important": true}, {"id": 3299, "name": "StoneTower3", "category": "structure", "x": 3726.7, "z": 182.1, "px": 2684.0, "py": 2079.1, "has_dungeon": false, "has_important": true}, {"id": 3300, "name": "StoneTower3", "category": "structure", "x": -2193.9, "z": -1936.5, "px": 1673.6, "py": 1717.5, "has_dungeon": false, "has_important": true}, {"id": 3301, "name": "StoneTower3", "category": "structure", "x": 2375.7, "z": -2363.8, "px": 2453.5, "py": 1644.6, "has_dungeon": false, "has_important": true}, {"id": 3302, "name": "StoneTower3", "category": "structure", "x": -3138.2, "z": 4035.0, "px": 1512.4, "py": 2736.6, "has_dungeon": false, "has_important": true}, {"id": 3303, "name": "StoneTower3", "category": "structure", "x": 4166.7, "z": 888.3, "px": 2759.1, "py": 2199.6, "has_dungeon": false, "has_important": true}, {"id": 3304, "name": "StoneTower3", "category": "structure", "x": -2293.3, "z": -6334.3, "px": 1656.6, "py": 966.9, "has_dungeon": false, "has_important": true}, {"id": 3305, "name": "StoneTower3", "category": "structure", "x": 2618.7, "z": -7297.7, "px": 2494.9, "py": 802.5, "has_dungeon": false, "has_important": true}, {"id": 3306, "name": "StoneTower3", "category": "structure", "x": 4558.2, "z": -885.6, "px": 2825.9, "py": 1896.9, "has_dungeon": false, "has_important": true}, {"id": 3307, "name": "StoneTower3", "category": "structure", "x": -1102.4, "z": -4493.1, "px": 1859.9, "py": 1281.2, "has_dungeon": false, "has_important": true}, {"id": 3308, "name": "StoneTower3", "category": "structure", "x": -4804.2, "z": 2381.5, "px": 1228.1, "py": 2454.4, "has_dungeon": false, "has_important": true}, {"id": 3309, "name": "StoneTower3", "category": "structure", "x": 1482.9, "z": 5129.4, "px": 2301.1, "py": 2923.4, "has_dungeon": false, "has_important": true}, {"id": 3310, "name": "StoneTower3", "category": "structure", "x": -5127.7, "z": 5186.4, "px": 1172.9, "py": 2933.1, "has_dungeon": false, "has_important": true}, {"id": 3311, "name": "StoneTower3", "category": "structure", "x": 3473.3, "z": 1613.6, "px": 2640.8, "py": 2323.4, "has_dungeon": false, "has_important": true}, {"id": 3312, "name": "StoneTower3", "category": "structure", "x": -4349.3, "z": -814.8, "px": 1305.7, "py": 1908.9, "has_dungeon": false, "has_important": true}, {"id": 3313, "name": "StoneTower3", "category": "structure", "x": -5746.5, "z": 4412.1, "px": 1067.3, "py": 2801.0, "has_dungeon": false, "has_important": true}, {"id": 3314, "name": "StoneTower3", "category": "structure", "x": 5383.8, "z": -373.1, "px": 2966.8, "py": 1984.3, "has_dungeon": false, "has_important": true}, {"id": 3315, "name": "StoneTower3", "category": "structure", "x": -5191.2, "z": -963.4, "px": 1162.0, "py": 1883.6, "has_dungeon": false, "has_important": true}, {"id": 3316, "name": "StoneTower3", "category": "structure", "x": 775.2, "z": -4154.2, "px": 2180.3, "py": 1339.0, "has_dungeon": false, "has_important": true}, {"id": 3317, "name": "StoneTower3", "category": "structure", "x": -4621.8, "z": -3639.7, "px": 1259.2, "py": 1426.8, "has_dungeon": false, "has_important": true}, {"id": 3318, "name": "StoneTower3", "category": "structure", "x": -3014.3, "z": 3011.1, "px": 1533.6, "py": 2561.9, "has_dungeon": false, "has_important": true}, {"id": 3319, "name": "StoneTower3", "category": "structure", "x": -2553.9, "z": 2127.0, "px": 1612.1, "py": 2411.0, "has_dungeon": false, "has_important": true}, {"id": 3320, "name": "StoneTower3", "category": "structure", "x": -4272.2, "z": 2059.8, "px": 1318.9, "py": 2399.5, "has_dungeon": false, "has_important": true}, {"id": 3321, "name": "StoneTower3", "category": "structure", "x": 2934.1, "z": 4032.5, "px": 2548.8, "py": 2736.2, "has_dungeon": false, "has_important": true}, {"id": 3322, "name": "StoneTower3", "category": "structure", "x": -3647.1, "z": 5754.1, "px": 1425.6, "py": 3030.0, "has_dungeon": false, "has_important": true}, {"id": 3323, "name": "StoneTower3", "category": "structure", "x": 960.1, "z": -4977.6, "px": 2211.9, "py": 1198.5, "has_dungeon": false, "has_important": true}, {"id": 3324, "name": "StoneTower3", "category": "structure", "x": 2824.6, "z": 1084.8, "px": 2530.1, "py": 2233.1, "has_dungeon": false, "has_important": true}, {"id": 3325, "name": "StoneTower3", "category": "structure", "x": -5005.9, "z": 1103.6, "px": 1193.7, "py": 2236.3, "has_dungeon": false, "has_important": true}, {"id": 3326, "name": "StoneTower3", "category": "structure", "x": -4047.9, "z": -2936.7, "px": 1357.2, "py": 1546.8, "has_dungeon": false, "has_important": true}, {"id": 3327, "name": "StoneTower3", "category": "structure", "x": -2895.8, "z": -5038.1, "px": 1553.8, "py": 1188.2, "has_dungeon": false, "has_important": true}, {"id": 3328, "name": "StoneTower3", "category": "structure", "x": 3014.8, "z": 4986.2, "px": 2562.5, "py": 2899.0, "has_dungeon": false, "has_important": true}, {"id": 3329, "name": "StoneTower3", "category": "structure", "x": -1738.1, "z": 2762.5, "px": 1751.4, "py": 2519.5, "has_dungeon": false, "has_important": true}, {"id": 3330, "name": "StoneTower3", "category": "structure", "x": 5623.2, "z": 1912.5, "px": 3007.7, "py": 2374.4, "has_dungeon": false, "has_important": true}, {"id": 3331, "name": "StoneTower3", "category": "structure", "x": 5433.8, "z": 3600.3, "px": 2975.4, "py": 2662.5, "has_dungeon": false, "has_important": true}, {"id": 3332, "name": "StoneTower3", "category": "structure", "x": -6327.3, "z": -1535.2, "px": 968.1, "py": 1786.0, "has_dungeon": false, "has_important": true}, {"id": 3333, "name": "StoneTower3", "category": "structure", "x": -3782.1, "z": -5245.0, "px": 1402.5, "py": 1152.9, "has_dungeon": false, "has_important": true}, {"id": 3334, "name": "StoneTower3", "category": "structure", "x": 6898.6, "z": -4017.4, "px": 3225.4, "py": 1362.4, "has_dungeon": false, "has_important": true}, {"id": 5558, "name": "StoneTowerRuins03", "category": "structure", "x": -3413.4, "z": -1840.1, "px": 1465.4, "py": 1734.0, "has_dungeon": false, "has_important": true}, {"id": 5559, "name": "StoneTowerRuins03", "category": "structure", "x": 821.8, "z": 4425.4, "px": 2188.3, "py": 2803.3, "has_dungeon": false, "has_important": true}, {"id": 5560, "name": "StoneTowerRuins03", "category": "structure", "x": 3695.7, "z": 4028.7, "px": 2678.7, "py": 2735.6, "has_dungeon": false, "has_important": true}, {"id": 5561, "name": "StoneTowerRuins03", "category": "structure", "x": 8194.2, "z": 135.5, "px": 3446.5, "py": 2071.1, "has_dungeon": false, "has_important": true}, {"id": 5562, "name": "StoneTowerRuins03", "category": "structure", "x": 7190.1, "z": 1270.7, "px": 3275.1, "py": 2264.9, "has_dungeon": false, "has_important": true}, {"id": 5563, "name": "StoneTowerRuins03", "category": "structure", "x": -1004.6, "z": -902.1, "px": 1876.5, "py": 1894.0, "has_dungeon": false, "has_important": true}, {"id": 5564, "name": "StoneTowerRuins03", "category": "structure", "x": -3347.9, "z": -2353.0, "px": 1476.6, "py": 1646.4, "has_dungeon": false, "has_important": true}, {"id": 5565, "name": "StoneTowerRuins03", "category": "structure", "x": 2670.0, "z": -3595.2, "px": 2503.7, "py": 1434.4, "has_dungeon": false, "has_important": true}, {"id": 5566, "name": "StoneTowerRuins03", "category": "structure", "x": 822.5, "z": 300.3, "px": 2188.4, "py": 2099.3, "has_dungeon": false, "has_important": true}, {"id": 5567, "name": "StoneTowerRuins03", "category": "structure", "x": -5378.4, "z": -2002.3, "px": 1130.1, "py": 1706.3, "has_dungeon": false, "has_important": true}, {"id": 5568, "name": "StoneTowerRuins03", "category": "structure", "x": 1646.4, "z": -4485.8, "px": 2329.0, "py": 1282.4, "has_dungeon": false, "has_important": false}, {"id": 5569, "name": "StoneTowerRuins03", "category": "structure", "x": -6890.1, "z": 404.8, "px": 872.1, "py": 2117.1, "has_dungeon": false, "has_important": true}, {"id": 5570, "name": "StoneTowerRuins03", "category": "structure", "x": -8761.7, "z": -579.8, "px": 552.7, "py": 1949.0, "has_dungeon": false, "has_important": true}, {"id": 5571, "name": "StoneTowerRuins03", "category": "structure", "x": -4176.6, "z": -6161.4, "px": 1335.2, "py": 996.5, "has_dungeon": false, "has_important": false}, {"id": 5572, "name": "StoneTowerRuins03", "category": "structure", "x": 3723.6, "z": 3349.7, "px": 2683.5, "py": 2619.7, "has_dungeon": false, "has_important": true}, {"id": 5573, "name": "StoneTowerRuins03", "category": "structure", "x": 3921.5, "z": 1138.9, "px": 2717.3, "py": 2242.4, "has_dungeon": false, "has_important": true}, {"id": 5574, "name": "StoneTowerRuins03", "category": "structure", "x": 8451.1, "z": 213.9, "px": 3490.3, "py": 2084.5, "has_dungeon": false, "has_important": true}, {"id": 5575, "name": "StoneTowerRuins03", "category": "structure", "x": -3250.4, "z": 4171.8, "px": 1493.3, "py": 2760.0, "has_dungeon": false, "has_important": false}, {"id": 5576, "name": "StoneTowerRuins03", "category": "structure", "x": -1535.1, "z": -1902.5, "px": 1786.0, "py": 1723.3, "has_dungeon": false, "has_important": true}, {"id": 5577, "name": "StoneTowerRuins03", "category": "structure", "x": -1589.1, "z": 4845.1, "px": 1776.8, "py": 2874.9, "has_dungeon": false, "has_important": true}, {"id": 5578, "name": "StoneTowerRuins03", "category": "structure", "x": -3660.9, "z": 7098.4, "px": 1423.2, "py": 3259.5, "has_dungeon": false, "has_important": true}, {"id": 5579, "name": "StoneTowerRuins03", "category": "structure", "x": 7466.1, "z": 3690.7, "px": 3322.2, "py": 2677.9, "has_dungeon": false, "has_important": true}, {"id": 5580, "name": "StoneTowerRuins03", "category": "structure", "x": 7349.0, "z": -4485.3, "px": 3302.2, "py": 1282.5, "has_dungeon": false, "has_important": true}, {"id": 5581, "name": "StoneTowerRuins03", "category": "structure", "x": 3773.0, "z": -432.9, "px": 2691.9, "py": 1974.1, "has_dungeon": false, "has_important": true}, {"id": 5582, "name": "StoneTowerRuins03", "category": "structure", "x": 7924.0, "z": -2859.5, "px": 3400.4, "py": 1560.0, "has_dungeon": false, "has_important": true}, {"id": 5583, "name": "StoneTowerRuins03", "category": "structure", "x": -4405.0, "z": 1730.0, "px": 1296.2, "py": 2343.3, "has_dungeon": false, "has_important": true}, {"id": 5584, "name": "StoneTowerRuins03", "category": "structure", "x": 8205.2, "z": -3821.3, "px": 3448.4, "py": 1395.8, "has_dungeon": false, "has_important": true}, {"id": 5585, "name": "StoneTowerRuins03", "category": "structure", "x": -7296.7, "z": -1848.9, "px": 802.7, "py": 1732.5, "has_dungeon": false, "has_important": true}, {"id": 5586, "name": "StoneTowerRuins03", "category": "structure", "x": -109.7, "z": -4563.7, "px": 2029.3, "py": 1269.1, "has_dungeon": false, "has_important": true}, {"id": 5587, "name": "StoneTowerRuins03", "category": "structure", "x": -4915.7, "z": 5390.9, "px": 1209.1, "py": 2968.0, "has_dungeon": false, "has_important": true}, {"id": 5588, "name": "StoneTowerRuins03", "category": "structure", "x": 2936.8, "z": -197.4, "px": 2549.2, "py": 2014.3, "has_dungeon": false, "has_important": true}, {"id": 5589, "name": "StoneTowerRuins03", "category": "structure", "x": 5292.9, "z": 5119.7, "px": 2951.3, "py": 2921.8, "has_dungeon": false, "has_important": true}, {"id": 5590, "name": "StoneTowerRuins03", "category": "structure", "x": 8134.3, "z": 1797.2, "px": 3436.3, "py": 2354.7, "has_dungeon": false, "has_important": true}, {"id": 5591, "name": "StoneTowerRuins03", "category": "structure", "x": 701.1, "z": 5078.3, "px": 2167.7, "py": 2914.7, "has_dungeon": false, "has_important": true}, {"id": 5592, "name": "StoneTowerRuins03", "category": "structure", "x": 1684.1, "z": -6206.7, "px": 2335.4, "py": 988.7, "has_dungeon": false, "has_important": true}, {"id": 5593, "name": "StoneTowerRuins03", "category": "structure", "x": 7158.7, "z": -3087.2, "px": 3269.8, "py": 1521.1, "has_dungeon": false, "has_important": true}, {"id": 5594, "name": "StoneTowerRuins03", "category": "structure", "x": -6702.6, "z": 3572.3, "px": 904.1, "py": 2657.7, "has_dungeon": false, "has_important": true}, {"id": 5595, "name": "StoneTowerRuins03", "category": "structure", "x": 2429.6, "z": -1653.5, "px": 2462.7, "py": 1765.8, "has_dungeon": false, "has_important": true}, {"id": 5596, "name": "StoneTowerRuins03", "category": "structure", "x": -7146.7, "z": 150.5, "px": 828.3, "py": 2073.7, "has_dungeon": false, "has_important": true}, {"id": 5597, "name": "StoneTowerRuins03", "category": "structure", "x": -430.9, "z": -4226.6, "px": 1974.5, "py": 1326.7, "has_dungeon": false, "has_important": true}, {"id": 5598, "name": "StoneTowerRuins03", "category": "structure", "x": -3584.2, "z": 4716.5, "px": 1436.3, "py": 2852.9, "has_dungeon": false, "has_important": true}, {"id": 5599, "name": "StoneTowerRuins03", "category": "structure", "x": -815.0, "z": -6652.8, "px": 1908.9, "py": 912.6, "has_dungeon": false, "has_important": true}, {"id": 5600, "name": "StoneTowerRuins03", "category": "structure", "x": -6066.3, "z": 2108.0, "px": 1012.7, "py": 2407.8, "has_dungeon": false, "has_important": true}, {"id": 5601, "name": "StoneTowerRuins03", "category": "structure", "x": -2034.0, "z": -5515.8, "px": 1700.9, "py": 1106.6, "has_dungeon": false, "has_important": true}, {"id": 5602, "name": "StoneTowerRuins03", "category": "structure", "x": 2356.3, "z": 4841.7, "px": 2450.1, "py": 2874.3, "has_dungeon": false, "has_important": true}, {"id": 5603, "name": "StoneTowerRuins03", "category": "structure", "x": -8398.7, "z": -1771.3, "px": 614.6, "py": 1745.7, "has_dungeon": false, "has_important": false}, {"id": 5604, "name": "StoneTowerRuins03", "category": "structure", "x": -8703.6, "z": -789.2, "px": 562.6, "py": 1913.3, "has_dungeon": false, "has_important": true}, {"id": 5605, "name": "StoneTowerRuins03", "category": "structure", "x": -3918.0, "z": -2624.8, "px": 1379.3, "py": 1600.0, "has_dungeon": false, "has_important": true}, {"id": 5606, "name": "StoneTowerRuins03", "category": "structure", "x": -8116.7, "z": 532.9, "px": 662.7, "py": 2138.9, "has_dungeon": false, "has_important": true}, {"id": 5607, "name": "StoneTowerRuins03", "category": "structure", "x": 7684.4, "z": -704.5, "px": 3359.5, "py": 1927.8, "has_dungeon": false, "has_important": true}, {"id": 5608, "name": "StoneTowerRuins03", "category": "structure", "x": 1749.0, "z": 7281.9, "px": 2346.5, "py": 3290.8, "has_dungeon": false, "has_important": true}, {"id": 5609, "name": "StoneTowerRuins03", "category": "structure", "x": 2965.6, "z": 7252.0, "px": 2554.1, "py": 3285.7, "has_dungeon": false, "has_important": true}, {"id": 5610, "name": "StoneTowerRuins03", "category": "structure", "x": 3987.3, "z": -518.6, "px": 2728.5, "py": 1959.5, "has_dungeon": false, "has_important": true}, {"id": 5611, "name": "StoneTowerRuins03", "category": "structure", "x": 1899.4, "z": -4350.4, "px": 2372.2, "py": 1305.5, "has_dungeon": false, "has_important": true}, {"id": 5612, "name": "StoneTowerRuins03", "category": "structure", "x": 3283.0, "z": 56.6, "px": 2608.3, "py": 2057.7, "has_dungeon": false, "has_important": true}, {"id": 5613, "name": "StoneTowerRuins03", "category": "structure", "x": -1385.5, "z": -5563.8, "px": 1811.5, "py": 1098.4, "has_dungeon": false, "has_important": true}, {"id": 5614, "name": "StoneTowerRuins03", "category": "structure", "x": -6151.6, "z": 1453.2, "px": 998.1, "py": 2296.0, "has_dungeon": false, "has_important": true}, {"id": 5615, "name": "StoneTowerRuins03", "category": "structure", "x": 4495.5, "z": -374.5, "px": 2815.2, "py": 1984.1, "has_dungeon": false, "has_important": true}, {"id": 5616, "name": "StoneTowerRuins03", "category": "structure", "x": 1073.3, "z": -5632.9, "px": 2231.2, "py": 1086.7, "has_dungeon": false, "has_important": true}, {"id": 5617, "name": "StoneTowerRuins03", "category": "structure", "x": -6521.7, "z": -4756.9, "px": 935.0, "py": 1236.2, "has_dungeon": false, "has_important": false}, {"id": 5618, "name": "StoneTowerRuins03", "category": "structure", "x": 647.2, "z": 5374.5, "px": 2158.5, "py": 2965.2, "has_dungeon": false, "has_important": true}, {"id": 5619, "name": "StoneTowerRuins03", "category": "structure", "x": 2318.7, "z": 1459.7, "px": 2443.7, "py": 2297.1, "has_dungeon": false, "has_important": true}, {"id": 5620, "name": "StoneTowerRuins03", "category": "structure", "x": -7026.5, "z": 2361.4, "px": 848.8, "py": 2451.0, "has_dungeon": false, "has_important": true}, {"id": 5621, "name": "StoneTowerRuins03", "category": "structure", "x": -3844.6, "z": -466.9, "px": 1391.9, "py": 1968.3, "has_dungeon": false, "has_important": true}, {"id": 5622, "name": "StoneTowerRuins03", "category": "structure", "x": 1173.9, "z": -4934.5, "px": 2248.3, "py": 1205.8, "has_dungeon": false, "has_important": true}, {"id": 5623, "name": "StoneTowerRuins03", "category": "structure", "x": -2253.0, "z": -3079.9, "px": 1663.5, "py": 1522.4, "has_dungeon": false, "has_important": true}, {"id": 5624, "name": "StoneTowerRuins03", "category": "structure", "x": -642.6, "z": 139.3, "px": 1938.3, "py": 2071.8, "has_dungeon": false, "has_important": true}, {"id": 5625, "name": "StoneTowerRuins03", "category": "structure", "x": 6525.9, "z": 3151.8, "px": 3161.8, "py": 2585.9, "has_dungeon": false, "has_important": true}, {"id": 5626, "name": "StoneTowerRuins03", "category": "structure", "x": 8143.5, "z": -366.2, "px": 3437.8, "py": 1985.5, "has_dungeon": false, "has_important": true}, {"id": 5627, "name": "StoneTowerRuins03", "category": "structure", "x": 390.4, "z": 5590.9, "px": 2114.6, "py": 3002.2, "has_dungeon": false, "has_important": true}, {"id": 5628, "name": "StoneTowerRuins03", "category": "structure", "x": -3086.9, "z": 4402.8, "px": 1521.2, "py": 2799.4, "has_dungeon": false, "has_important": true}, {"id": 5629, "name": "StoneTowerRuins03", "category": "structure", "x": -1167.4, "z": -5168.0, "px": 1848.8, "py": 1166.0, "has_dungeon": false, "has_important": false}, {"id": 5630, "name": "StoneTowerRuins03", "category": "structure", "x": -5836.2, "z": -395.1, "px": 1052.0, "py": 1980.6, "has_dungeon": false, "has_important": true}, {"id": 5631, "name": "StoneTowerRuins03", "category": "structure", "x": 9354.6, "z": 72.1, "px": 3644.5, "py": 2060.3, "has_dungeon": false, "has_important": true}, {"id": 5632, "name": "StoneTowerRuins03", "category": "structure", "x": -7755.2, "z": -2105.9, "px": 724.4, "py": 1688.6, "has_dungeon": false, "has_important": true}, {"id": 5633, "name": "StoneTowerRuins03", "category": "structure", "x": -6443.3, "z": 3797.8, "px": 948.3, "py": 2696.2, "has_dungeon": false, "has_important": true}, {"id": 5634, "name": "StoneTowerRuins03", "category": "structure", "x": 5512.7, "z": -1150.4, "px": 2988.8, "py": 1851.7, "has_dungeon": false, "has_important": true}, {"id": 5635, "name": "StoneTowerRuins03", "category": "structure", "x": 5314.5, "z": -561.1, "px": 2955.0, "py": 1952.2, "has_dungeon": false, "has_important": true}, {"id": 5636, "name": "StoneTowerRuins03", "category": "structure", "x": 494.0, "z": 5206.6, "px": 2132.3, "py": 2936.6, "has_dungeon": false, "has_important": true}, {"id": 5637, "name": "StoneTowerRuins03", "category": "structure", "x": -5123.5, "z": 367.7, "px": 1173.6, "py": 2110.8, "has_dungeon": false, "has_important": true}, {"id": 5458, "name": "StoneTowerRuins04", "category": "structure", "x": 4739.1, "z": -5379.6, "px": 2856.8, "py": 1129.9, "has_dungeon": false, "has_important": true}, {"id": 5459, "name": "StoneTowerRuins04", "category": "structure", "x": 2504.1, "z": 829.5, "px": 2475.4, "py": 2189.6, "has_dungeon": false, "has_important": true}, {"id": 5460, "name": "StoneTowerRuins04", "category": "structure", "x": 2991.8, "z": 685.4, "px": 2558.6, "py": 2165.0, "has_dungeon": false, "has_important": true}, {"id": 5461, "name": "StoneTowerRuins04", "category": "structure", "x": 2497.2, "z": -2940.0, "px": 2474.2, "py": 1546.2, "has_dungeon": false, "has_important": true}, {"id": 5462, "name": "StoneTowerRuins04", "category": "structure", "x": -2734.1, "z": 7213.6, "px": 1581.4, "py": 3279.1, "has_dungeon": false, "has_important": true}, {"id": 5463, "name": "StoneTowerRuins04", "category": "structure", "x": -9726.7, "z": -697.4, "px": 388.0, "py": 1929.0, "has_dungeon": false, "has_important": true}, {"id": 5464, "name": "StoneTowerRuins04", "category": "structure", "x": 46.7, "z": -1205.1, "px": 2056.0, "py": 1842.3, "has_dungeon": false, "has_important": true}, {"id": 5465, "name": "StoneTowerRuins04", "category": "structure", "x": -274.0, "z": -1332.4, "px": 2001.2, "py": 1820.6, "has_dungeon": false, "has_important": true}, {"id": 5466, "name": "StoneTowerRuins04", "category": "structure", "x": 2642.8, "z": -2821.8, "px": 2499.0, "py": 1566.4, "has_dungeon": false, "has_important": true}, {"id": 5467, "name": "StoneTowerRuins04", "category": "structure", "x": -2680.8, "z": 7410.5, "px": 1590.5, "py": 3312.7, "has_dungeon": false, "has_important": true}, {"id": 5468, "name": "StoneTowerRuins04", "category": "structure", "x": 3502.0, "z": 9265.2, "px": 2645.7, "py": 3629.3, "has_dungeon": false, "has_important": true}, {"id": 5469, "name": "StoneTowerRuins04", "category": "structure", "x": -3985.9, "z": 1478.6, "px": 1367.7, "py": 2300.3, "has_dungeon": false, "has_important": true}, {"id": 5470, "name": "StoneTowerRuins04", "category": "structure", "x": -3831.3, "z": 1467.3, "px": 1394.1, "py": 2298.4, "has_dungeon": false, "has_important": true}, {"id": 5471, "name": "StoneTowerRuins04", "category": "structure", "x": -6895.1, "z": 6829.1, "px": 871.2, "py": 3213.5, "has_dungeon": false, "has_important": false}, {"id": 5472, "name": "StoneTowerRuins04", "category": "structure", "x": 6573.4, "z": 6894.7, "px": 3169.9, "py": 3224.7, "has_dungeon": false, "has_important": true}, {"id": 5473, "name": "StoneTowerRuins04", "category": "structure", "x": 2691.1, "z": 692.2, "px": 2507.3, "py": 2166.1, "has_dungeon": false, "has_important": true}, {"id": 5474, "name": "StoneTowerRuins04", "category": "structure", "x": -200.0, "z": -1134.2, "px": 2013.9, "py": 1854.4, "has_dungeon": false, "has_important": true}, {"id": 5475, "name": "StoneTowerRuins04", "category": "structure", "x": -5311.1, "z": 5111.9, "px": 1141.6, "py": 2920.4, "has_dungeon": false, "has_important": false}, {"id": 5476, "name": "StoneTowerRuins04", "category": "structure", "x": 5772.6, "z": 4720.9, "px": 3033.2, "py": 2853.7, "has_dungeon": false, "has_important": true}, {"id": 5477, "name": "StoneTowerRuins04", "category": "structure", "x": -9810.2, "z": -620.5, "px": 373.7, "py": 1942.1, "has_dungeon": false, "has_important": true}, {"id": 5478, "name": "StoneTowerRuins04", "category": "structure", "x": 6673.4, "z": 6983.1, "px": 3186.9, "py": 3239.8, "has_dungeon": false, "has_important": true}, {"id": 5479, "name": "StoneTowerRuins04", "category": "structure", "x": 5770.0, "z": 4555.7, "px": 3032.7, "py": 2825.5, "has_dungeon": false, "has_important": true}, {"id": 5480, "name": "StoneTowerRuins04", "category": "structure", "x": 1420.2, "z": 6661.7, "px": 2290.4, "py": 3184.9, "has_dungeon": false, "has_important": true}, {"id": 5481, "name": "StoneTowerRuins04", "category": "structure", "x": 6445.0, "z": 6671.3, "px": 3147.9, "py": 3186.6, "has_dungeon": false, "has_important": true}, {"id": 5482, "name": "StoneTowerRuins04", "category": "structure", "x": -4360.4, "z": -3952.1, "px": 1303.8, "py": 1373.5, "has_dungeon": false, "has_important": true}, {"id": 5483, "name": "StoneTowerRuins04", "category": "structure", "x": 6457.2, "z": 6532.6, "px": 3150.0, "py": 3162.9, "has_dungeon": false, "has_important": true}, {"id": 5484, "name": "StoneTowerRuins04", "category": "structure", "x": -3842.2, "z": 1589.1, "px": 1392.3, "py": 2319.2, "has_dungeon": false, "has_important": true}, {"id": 5485, "name": "StoneTowerRuins04", "category": "structure", "x": -2034.3, "z": -620.9, "px": 1700.8, "py": 1942.0, "has_dungeon": false, "has_important": true}, {"id": 5486, "name": "StoneTowerRuins04", "category": "structure", "x": 2357.0, "z": -2831.5, "px": 2450.3, "py": 1564.8, "has_dungeon": false, "has_important": true}, {"id": 5487, "name": "StoneTowerRuins04", "category": "structure", "x": 4541.5, "z": -5705.8, "px": 2823.1, "py": 1074.2, "has_dungeon": false, "has_important": true}, {"id": 5488, "name": "StoneTowerRuins04", "category": "structure", "x": 2808.1, "z": 840.7, "px": 2527.2, "py": 2191.5, "has_dungeon": false, "has_important": true}, {"id": 5489, "name": "StoneTowerRuins04", "category": "structure", "x": -2186.6, "z": -429.3, "px": 1674.8, "py": 1974.7, "has_dungeon": false, "has_important": true}, {"id": 5490, "name": "StoneTowerRuins04", "category": "structure", "x": 4367.5, "z": -5771.5, "px": 2793.4, "py": 1063.0, "has_dungeon": false, "has_important": true}, {"id": 5491, "name": "StoneTowerRuins04", "category": "structure", "x": 4224.4, "z": -1923.7, "px": 2769.0, "py": 1719.7, "has_dungeon": false, "has_important": true}, {"id": 5492, "name": "StoneTowerRuins04", "category": "structure", "x": 2445.0, "z": 707.1, "px": 2465.3, "py": 2168.7, "has_dungeon": false, "has_important": true}, {"id": 5493, "name": "StoneTowerRuins04", "category": "structure", "x": 1229.8, "z": 8524.8, "px": 2257.9, "py": 3502.9, "has_dungeon": false, "has_important": true}, {"id": 5494, "name": "StoneTowerRuins04", "category": "structure", "x": 5641.4, "z": 2251.3, "px": 3010.8, "py": 2432.2, "has_dungeon": false, "has_important": true}, {"id": 5495, "name": "StoneTowerRuins04", "category": "structure", "x": 6127.9, "z": 4490.7, "px": 3093.8, "py": 2814.4, "has_dungeon": false, "has_important": true}, {"id": 5496, "name": "StoneTowerRuins04", "category": "structure", "x": 4282.2, "z": -1786.9, "px": 2778.8, "py": 1743.0, "has_dungeon": false, "has_important": true}, {"id": 5497, "name": "StoneTowerRuins04", "category": "structure", "x": -6717.2, "z": -2257.6, "px": 901.6, "py": 1662.7, "has_dungeon": false, "has_important": true}, {"id": 5498, "name": "StoneTowerRuins04", "category": "structure", "x": 5944.4, "z": 4468.1, "px": 3062.5, "py": 2810.6, "has_dungeon": false, "has_important": true}, {"id": 5499, "name": "StoneTowerRuins04", "category": "structure", "x": 2413.8, "z": -2576.8, "px": 2460.0, "py": 1608.2, "has_dungeon": false, "has_important": true}, {"id": 5500, "name": "StoneTowerRuins04", "category": "structure", "x": 6541.6, "z": 7099.7, "px": 3164.4, "py": 3259.7, "has_dungeon": false, "has_important": true}, {"id": 5501, "name": "StoneTowerRuins04", "category": "structure", "x": 5880.3, "z": 4591.8, "px": 3051.6, "py": 2831.7, "has_dungeon": false, "has_important": true}, {"id": 5502, "name": "StoneTowerRuins04", "category": "structure", "x": 2640.3, "z": 882.4, "px": 2498.6, "py": 2198.6, "has_dungeon": false, "has_important": true}, {"id": 5503, "name": "StoneTowerRuins04", "category": "structure", "x": 1345.7, "z": 6913.4, "px": 2277.7, "py": 3227.9, "has_dungeon": false, "has_important": true}, {"id": 5504, "name": "StoneTowerRuins04", "category": "structure", "x": 4679.7, "z": -5569.8, "px": 2846.7, "py": 1097.4, "has_dungeon": false, "has_important": false}, {"id": 5505, "name": "StoneTowerRuins04", "category": "structure", "x": 6597.1, "z": 6765.1, "px": 3173.9, "py": 3202.6, "has_dungeon": false, "has_important": true}, {"id": 5506, "name": "StoneTowerRuins04", "category": "structure", "x": 4430.5, "z": -1804.8, "px": 2804.1, "py": 1740.0, "has_dungeon": false, "has_important": true}, {"id": 5507, "name": "StoneTowerRuins04", "category": "structure", "x": -4478.7, "z": -3898.5, "px": 1283.6, "py": 1382.7, "has_dungeon": false, "has_important": true}, {"id": 5508, "name": "StoneTowerRuins05", "category": "structure", "x": 5958.2, "z": 4352.4, "px": 3064.9, "py": 2790.8, "has_dungeon": false, "has_important": true}, {"id": 5509, "name": "StoneTowerRuins05", "category": "structure", "x": 4485.1, "z": -5831.6, "px": 2813.5, "py": 1052.7, "has_dungeon": false, "has_important": true}, {"id": 5510, "name": "StoneTowerRuins05", "category": "structure", "x": -4999.7, "z": 2686.3, "px": 1194.7, "py": 2506.5, "has_dungeon": false, "has_important": true}, {"id": 5511, "name": "StoneTowerRuins05", "category": "structure", "x": 5372.6, "z": 118.3, "px": 2964.9, "py": 2068.2, "has_dungeon": false, "has_important": true}, {"id": 5512, "name": "StoneTowerRuins05", "category": "structure", "x": 1598.6, "z": 6600.7, "px": 2320.8, "py": 3174.5, "has_dungeon": false, "has_important": true}, {"id": 5513, "name": "StoneTowerRuins05", "category": "structure", "x": 6339.6, "z": 6664.1, "px": 3130.0, "py": 3185.3, "has_dungeon": false, "has_important": true}, {"id": 5514, "name": "StoneTowerRuins05", "category": "structure", "x": -6846.2, "z": -2309.9, "px": 879.6, "py": 1653.8, "has_dungeon": false, "has_important": true}, {"id": 5515, "name": "StoneTowerRuins05", "category": "structure", "x": 1353.3, "z": 8516.8, "px": 2279.0, "py": 3501.5, "has_dungeon": false, "has_important": true}, {"id": 5516, "name": "StoneTowerRuins05", "category": "structure", "x": 4486.9, "z": -5568.4, "px": 2813.8, "py": 1097.7, "has_dungeon": false, "has_important": true}, {"id": 5517, "name": "StoneTowerRuins05", "category": "structure", "x": 2492.0, "z": -2745.2, "px": 2473.3, "py": 1579.5, "has_dungeon": false, "has_important": true}, {"id": 5518, "name": "StoneTowerRuins05", "category": "structure", "x": 1289.9, "z": -5129.2, "px": 2268.1, "py": 1172.6, "has_dungeon": false, "has_important": true}, {"id": 5519, "name": "StoneTowerRuins05", "category": "structure", "x": 3330.3, "z": 9334.2, "px": 2616.4, "py": 3641.0, "has_dungeon": false, "has_important": true}, {"id": 5520, "name": "StoneTowerRuins05", "category": "structure", "x": 3333.8, "z": 324.5, "px": 2617.0, "py": 2103.4, "has_dungeon": false, "has_important": true}, {"id": 5521, "name": "StoneTowerRuins05", "category": "structure", "x": 2564.6, "z": 8828.6, "px": 2485.7, "py": 3554.7, "has_dungeon": false, "has_important": true}, {"id": 5522, "name": "StoneTowerRuins05", "category": "structure", "x": -2048.4, "z": -314.0, "px": 1698.4, "py": 1994.4, "has_dungeon": false, "has_important": true}, {"id": 5523, "name": "StoneTowerRuins05", "category": "structure", "x": -131.8, "z": -1275.8, "px": 2025.5, "py": 1830.3, "has_dungeon": false, "has_important": true}, {"id": 5524, "name": "StoneTowerRuins05", "category": "structure", "x": 1093.2, "z": -2564.6, "px": 2234.6, "py": 1610.3, "has_dungeon": false, "has_important": true}, {"id": 5525, "name": "StoneTowerRuins05", "category": "structure", "x": 1475.1, "z": 6917.5, "px": 2299.8, "py": 3228.6, "has_dungeon": false, "has_important": true}, {"id": 5526, "name": "StoneTowerRuins05", "category": "structure", "x": -886.6, "z": 8517.9, "px": 1896.7, "py": 3501.7, "has_dungeon": false, "has_important": true}, {"id": 5527, "name": "StoneTowerRuins05", "category": "structure", "x": 1082.7, "z": -2436.7, "px": 2232.8, "py": 1632.1, "has_dungeon": false, "has_important": true}, {"id": 5528, "name": "StoneTowerRuins05", "category": "structure", "x": 4800.6, "z": -5242.5, "px": 2867.3, "py": 1153.3, "has_dungeon": false, "has_important": true}, {"id": 5529, "name": "StoneTowerRuins05", "category": "structure", "x": 4413.0, "z": -1974.5, "px": 2801.2, "py": 1711.0, "has_dungeon": false, "has_important": true}, {"id": 5530, "name": "StoneTowerRuins05", "category": "structure", "x": 2102.4, "z": 4680.0, "px": 2406.8, "py": 2846.7, "has_dungeon": false, "has_important": true}, {"id": 5531, "name": "StoneTowerRuins05", "category": "structure", "x": 2116.0, "z": -3586.8, "px": 2409.1, "py": 1435.9, "has_dungeon": false, "has_important": true}, {"id": 5532, "name": "StoneTowerRuins05", "category": "structure", "x": 1283.5, "z": 6792.2, "px": 2267.1, "py": 3207.2, "has_dungeon": false, "has_important": true}, {"id": 5533, "name": "StoneTowerRuins05", "category": "structure", "x": -2630.0, "z": 7290.9, "px": 1599.1, "py": 3292.3, "has_dungeon": false, "has_important": true}, {"id": 5534, "name": "StoneTowerRuins05", "category": "structure", "x": 6075.1, "z": 4605.5, "px": 3084.8, "py": 2834.0, "has_dungeon": false, "has_important": true}, {"id": 5535, "name": "StoneTowerRuins05", "category": "structure", "x": -3329.2, "z": 6329.3, "px": 1479.8, "py": 3128.2, "has_dungeon": false, "has_important": true}, {"id": 5536, "name": "StoneTowerRuins05", "category": "structure", "x": -6596.6, "z": -2053.3, "px": 922.2, "py": 1697.6, "has_dungeon": false, "has_important": true}, {"id": 5537, "name": "StoneTowerRuins05", "category": "structure", "x": 6725.8, "z": 6727.0, "px": 3195.9, "py": 3196.1, "has_dungeon": false, "has_important": true}, {"id": 5538, "name": "StoneTowerRuins05", "category": "structure", "x": 7164.2, "z": -456.2, "px": 3270.7, "py": 1970.1, "has_dungeon": false, "has_important": true}, {"id": 5539, "name": "StoneTowerRuins05", "category": "structure", "x": 6665.8, "z": 6588.2, "px": 3185.6, "py": 3172.4, "has_dungeon": false, "has_important": true}, {"id": 5540, "name": "StoneTowerRuins05", "category": "structure", "x": -3648.2, "z": 1464.1, "px": 1425.4, "py": 2297.9, "has_dungeon": false, "has_important": true}, {"id": 5541, "name": "StoneTowerRuins05", "category": "structure", "x": 8440.8, "z": -3972.8, "px": 3488.6, "py": 1370.0, "has_dungeon": false, "has_important": true}, {"id": 5542, "name": "StoneTowerRuins05", "category": "structure", "x": 1594.8, "z": 6785.0, "px": 2320.2, "py": 3206.0, "has_dungeon": false, "has_important": true}, {"id": 5543, "name": "StoneTowerRuins05", "category": "structure", "x": 6337.3, "z": 6792.8, "px": 3129.6, "py": 3207.3, "has_dungeon": false, "has_important": true}, {"id": 5544, "name": "StoneTowerRuins05", "category": "structure", "x": 518.2, "z": 4297.4, "px": 2136.4, "py": 2781.4, "has_dungeon": false, "has_important": true}, {"id": 5545, "name": "StoneTowerRuins05", "category": "structure", "x": 6459.0, "z": 6966.4, "px": 3150.3, "py": 3236.9, "has_dungeon": false, "has_important": true}, {"id": 5546, "name": "StoneTowerRuins05", "category": "structure", "x": 4790.1, "z": -5628.2, "px": 2865.5, "py": 1087.5, "has_dungeon": false, "has_important": true}, {"id": 5547, "name": "StoneTowerRuins05", "category": "structure", "x": -9910.3, "z": -707.8, "px": 356.6, "py": 1927.2, "has_dungeon": false, "has_important": true}, {"id": 5548, "name": "StoneTowerRuins05", "category": "structure", "x": 1403.3, "z": 6792.6, "px": 2287.5, "py": 3207.3, "has_dungeon": false, "has_important": true}, {"id": 5549, "name": "StoneTowerRuins05", "category": "structure", "x": 6143.6, "z": 4678.2, "px": 3096.5, "py": 2846.4, "has_dungeon": false, "has_important": false}, {"id": 5550, "name": "StoneTowerRuins05", "category": "structure", "x": -6906.9, "z": -2433.2, "px": 869.2, "py": 1632.7, "has_dungeon": false, "has_important": true}, {"id": 5551, "name": "StoneTowerRuins05", "category": "structure", "x": 4538.6, "z": -5448.0, "px": 2822.6, "py": 1118.2, "has_dungeon": false, "has_important": true}, {"id": 5552, "name": "StoneTowerRuins05", "category": "structure", "x": 2295.8, "z": -2691.5, "px": 2439.8, "py": 1588.7, "has_dungeon": false, "has_important": true}, {"id": 5553, "name": "StoneTowerRuins05", "category": "structure", "x": -317.6, "z": -1206.2, "px": 1993.8, "py": 1842.1, "has_dungeon": false, "has_important": true}, {"id": 5554, "name": "StoneTowerRuins05", "category": "structure", "x": 2629.6, "z": 585.4, "px": 2496.8, "py": 2147.9, "has_dungeon": false, "has_important": true}, {"id": 5555, "name": "StoneTowerRuins05", "category": "structure", "x": 968.3, "z": -2499.9, "px": 2213.3, "py": 1621.4, "has_dungeon": false, "has_important": true}, {"id": 5556, "name": "StoneTowerRuins05", "category": "structure", "x": -2821.5, "z": 7364.9, "px": 1566.5, "py": 3304.9, "has_dungeon": false, "has_important": true}, {"id": 5557, "name": "StoneTowerRuins05", "category": "structure", "x": -4470.8, "z": -4034.6, "px": 1285.0, "py": 1359.4, "has_dungeon": false, "has_important": false}, {"id": 5638, "name": "StoneTowerRuins07", "category": "structure", "x": 2235.4, "z": -3402.5, "px": 2429.5, "py": 1467.3, "has_dungeon": false, "has_important": true}, {"id": 5639, "name": "StoneTowerRuins07", "category": "structure", "x": -4848.3, "z": -2960.7, "px": 1220.6, "py": 1542.7, "has_dungeon": false, "has_important": true}, {"id": 5640, "name": "StoneTowerRuins07", "category": "structure", "x": 2966.3, "z": -2380.8, "px": 2554.2, "py": 1641.7, "has_dungeon": false, "has_important": true}, {"id": 5641, "name": "StoneTowerRuins07", "category": "structure", "x": -8212.3, "z": 2516.2, "px": 646.4, "py": 2477.4, "has_dungeon": false, "has_important": true}, {"id": 5642, "name": "StoneTowerRuins07", "category": "structure", "x": 894.6, "z": -5161.2, "px": 2200.7, "py": 1167.2, "has_dungeon": false, "has_important": true}, {"id": 5643, "name": "StoneTowerRuins07", "category": "structure", "x": 3586.7, "z": 3541.0, "px": 2660.1, "py": 2652.3, "has_dungeon": false, "has_important": true}, {"id": 5644, "name": "StoneTowerRuins07", "category": "structure", "x": -5191.4, "z": 577.6, "px": 1162.0, "py": 2146.6, "has_dungeon": false, "has_important": true}, {"id": 5645, "name": "StoneTowerRuins07", "category": "structure", "x": 6595.5, "z": 4865.4, "px": 3173.6, "py": 2878.4, "has_dungeon": false, "has_important": true}, {"id": 5646, "name": "StoneTowerRuins07", "category": "structure", "x": 5696.8, "z": -818.4, "px": 3020.3, "py": 1908.3, "has_dungeon": false, "has_important": true}, {"id": 5647, "name": "StoneTowerRuins07", "category": "structure", "x": -6767.6, "z": 5250.0, "px": 893.0, "py": 2944.0, "has_dungeon": false, "has_important": true}, {"id": 5648, "name": "StoneTowerRuins07", "category": "structure", "x": 7246.5, "z": -3973.4, "px": 3284.7, "py": 1369.9, "has_dungeon": false, "has_important": true}, {"id": 5649, "name": "StoneTowerRuins07", "category": "structure", "x": 2761.1, "z": -4912.1, "px": 2519.2, "py": 1209.7, "has_dungeon": false, "has_important": true}, {"id": 5650, "name": "StoneTowerRuins07", "category": "structure", "x": -7349.8, "z": 2545.5, "px": 793.6, "py": 2482.4, "has_dungeon": false, "has_important": true}, {"id": 5651, "name": "StoneTowerRuins07", "category": "structure", "x": 2249.7, "z": 5313.3, "px": 2431.9, "py": 2954.8, "has_dungeon": false, "has_important": true}, {"id": 5652, "name": "StoneTowerRuins07", "category": "structure", "x": 2297.0, "z": 6394.2, "px": 2440.0, "py": 3139.3, "has_dungeon": false, "has_important": true}, {"id": 5653, "name": "StoneTowerRuins07", "category": "structure", "x": 8016.2, "z": 305.4, "px": 3416.1, "py": 2100.1, "has_dungeon": false, "has_important": true}, {"id": 5654, "name": "StoneTowerRuins07", "category": "structure", "x": 2436.9, "z": -4394.3, "px": 2463.9, "py": 1298.0, "has_dungeon": false, "has_important": true}, {"id": 5655, "name": "StoneTowerRuins07", "category": "structure", "x": -5905.9, "z": 1458.2, "px": 1040.1, "py": 2296.9, "has_dungeon": false, "has_important": true}, {"id": 5656, "name": "StoneTowerRuins07", "category": "structure", "x": 3207.2, "z": -2388.8, "px": 2595.4, "py": 1640.3, "has_dungeon": false, "has_important": true}, {"id": 5657, "name": "StoneTowerRuins07", "category": "structure", "x": -9290.4, "z": -2609.2, "px": 462.4, "py": 1602.7, "has_dungeon": false, "has_important": true}, {"id": 5658, "name": "StoneTowerRuins07", "category": "structure", "x": 1038.0, "z": 3380.9, "px": 2225.2, "py": 2625.0, "has_dungeon": false, "has_important": true}, {"id": 5659, "name": "StoneTowerRuins07", "category": "structure", "x": 4028.9, "z": 6956.0, "px": 2735.6, "py": 3235.2, "has_dungeon": false, "has_important": true}, {"id": 5660, "name": "StoneTowerRuins07", "category": "structure", "x": 7797.1, "z": -392.0, "px": 3378.7, "py": 1981.1, "has_dungeon": false, "has_important": true}, {"id": 5661, "name": "StoneTowerRuins07", "category": "structure", "x": 1085.5, "z": 5299.2, "px": 2233.3, "py": 2952.4, "has_dungeon": false, "has_important": true}, {"id": 5662, "name": "StoneTowerRuins07", "category": "structure", "x": 2104.7, "z": 1471.3, "px": 2407.2, "py": 2299.1, "has_dungeon": false, "has_important": true}, {"id": 5663, "name": "StoneTowerRuins07", "category": "structure", "x": -187.5, "z": -955.4, "px": 2016.0, "py": 1884.9, "has_dungeon": false, "has_important": true}, {"id": 5664, "name": "StoneTowerRuins07", "category": "structure", "x": -4216.0, "z": 1801.5, "px": 1328.5, "py": 2355.5, "has_dungeon": false, "has_important": true}, {"id": 5665, "name": "StoneTowerRuins07", "category": "structure", "x": 7371.8, "z": 1131.1, "px": 3306.1, "py": 2241.0, "has_dungeon": false, "has_important": true}, {"id": 5666, "name": "StoneTowerRuins07", "category": "structure", "x": 2873.1, "z": -2126.9, "px": 2538.3, "py": 1685.0, "has_dungeon": false, "has_important": true}, {"id": 5667, "name": "StoneTowerRuins07", "category": "structure", "x": 8245.4, "z": 850.0, "px": 3455.2, "py": 2193.1, "has_dungeon": false, "has_important": true}, {"id": 5668, "name": "StoneTowerRuins07", "category": "structure", "x": -1791.4, "z": -4217.9, "px": 1742.3, "py": 1328.1, "has_dungeon": false, "has_important": true}, {"id": 5669, "name": "StoneTowerRuins07", "category": "structure", "x": 1920.3, "z": -6313.3, "px": 2375.7, "py": 970.5, "has_dungeon": false, "has_important": true}, {"id": 5670, "name": "StoneTowerRuins07", "category": "structure", "x": -5515.8, "z": -6323.7, "px": 1106.6, "py": 968.8, "has_dungeon": false, "has_important": true}, {"id": 5671, "name": "StoneTowerRuins07", "category": "structure", "x": -2561.3, "z": -6089.2, "px": 1610.9, "py": 1008.8, "has_dungeon": false, "has_important": true}, {"id": 5672, "name": "StoneTowerRuins07", "category": "structure", "x": 7699.0, "z": -2691.5, "px": 3362.0, "py": 1588.7, "has_dungeon": false, "has_important": true}, {"id": 5673, "name": "StoneTowerRuins07", "category": "structure", "x": 2317.9, "z": 3716.3, "px": 2443.6, "py": 2682.2, "has_dungeon": false, "has_important": true}, {"id": 5674, "name": "StoneTowerRuins07", "category": "structure", "x": -1275.1, "z": -1714.0, "px": 1830.4, "py": 1755.5, "has_dungeon": false, "has_important": true}, {"id": 5675, "name": "StoneTowerRuins07", "category": "structure", "x": -2242.6, "z": 726.5, "px": 1665.3, "py": 2172.0, "has_dungeon": false, "has_important": true}, {"id": 5676, "name": "StoneTowerRuins07", "category": "structure", "x": 1494.2, "z": -2444.7, "px": 2303.0, "py": 1630.8, "has_dungeon": false, "has_important": true}, {"id": 5677, "name": "StoneTowerRuins07", "category": "structure", "x": 6764.3, "z": 4476.6, "px": 3202.4, "py": 2812.0, "has_dungeon": false, "has_important": true}, {"id": 5678, "name": "StoneTowerRuins07", "category": "structure", "x": -5696.1, "z": -1842.2, "px": 1075.9, "py": 1733.6, "has_dungeon": false, "has_important": true}, {"id": 5679, "name": "StoneTowerRuins07", "category": "structure", "x": -5839.7, "z": 4847.3, "px": 1051.4, "py": 2875.3, "has_dungeon": false, "has_important": true}, {"id": 5680, "name": "StoneTowerRuins07", "category": "structure", "x": 847.9, "z": 5369.6, "px": 2192.7, "py": 2964.4, "has_dungeon": false, "has_important": true}, {"id": 5681, "name": "StoneTowerRuins07", "category": "structure", "x": 7094.6, "z": -4370.8, "px": 3258.8, "py": 1302.1, "has_dungeon": false, "has_important": true}, {"id": 5682, "name": "StoneTowerRuins07", "category": "structure", "x": 317.4, "z": 5108.4, "px": 2102.2, "py": 2919.8, "has_dungeon": false, "has_important": true}, {"id": 5683, "name": "StoneTowerRuins07", "category": "structure", "x": 7734.9, "z": 3852.2, "px": 3368.1, "py": 2705.4, "has_dungeon": false, "has_important": true}, {"id": 5684, "name": "StoneTowerRuins07", "category": "structure", "x": 3563.1, "z": 5381.7, "px": 2656.1, "py": 2966.5, "has_dungeon": false, "has_important": true}, {"id": 5685, "name": "StoneTowerRuins07", "category": "structure", "x": 2181.0, "z": 976.1, "px": 2420.2, "py": 2214.6, "has_dungeon": false, "has_important": true}, {"id": 5686, "name": "StoneTowerRuins07", "category": "structure", "x": 8766.6, "z": -3785.3, "px": 3544.2, "py": 1402.0, "has_dungeon": false, "has_important": true}, {"id": 5687, "name": "StoneTowerRuins07", "category": "structure", "x": -3206.5, "z": -1996.3, "px": 1500.8, "py": 1707.3, "has_dungeon": false, "has_important": true}, {"id": 5688, "name": "StoneTowerRuins07", "category": "structure", "x": -8911.6, "z": 3090.0, "px": 527.1, "py": 2575.4, "has_dungeon": false, "has_important": true}, {"id": 5689, "name": "StoneTowerRuins07", "category": "structure", "x": 1207.7, "z": 5619.2, "px": 2254.1, "py": 3007.0, "has_dungeon": false, "has_important": true}, {"id": 5690, "name": "StoneTowerRuins07", "category": "structure", "x": 1110.5, "z": -5426.9, "px": 2237.5, "py": 1121.8, "has_dungeon": false, "has_important": true}, {"id": 5691, "name": "StoneTowerRuins07", "category": "structure", "x": 1771.6, "z": -969.4, "px": 2350.4, "py": 1882.6, "has_dungeon": false, "has_important": true}, {"id": 5692, "name": "StoneTowerRuins07", "category": "structure", "x": 5133.2, "z": -2189.6, "px": 2924.1, "py": 1674.3, "has_dungeon": false, "has_important": true}, {"id": 5693, "name": "StoneTowerRuins07", "category": "structure", "x": -7986.0, "z": 266.3, "px": 685.1, "py": 2093.4, "has_dungeon": false, "has_important": true}, {"id": 5694, "name": "StoneTowerRuins07", "category": "structure", "x": 2124.0, "z": -1771.3, "px": 2410.5, "py": 1745.7, "has_dungeon": false, "has_important": true}, {"id": 5695, "name": "StoneTowerRuins07", "category": "structure", "x": 1967.5, "z": -887.3, "px": 2383.8, "py": 1896.6, "has_dungeon": false, "has_important": true}, {"id": 5696, "name": "StoneTowerRuins07", "category": "structure", "x": -4846.5, "z": 5710.6, "px": 1220.9, "py": 3022.6, "has_dungeon": false, "has_important": true}, {"id": 5697, "name": "StoneTowerRuins07", "category": "structure", "x": 2826.6, "z": -3843.8, "px": 2530.4, "py": 1392.0, "has_dungeon": false, "has_important": true}, {"id": 5698, "name": "StoneTowerRuins07", "category": "structure", "x": -4112.1, "z": -108.1, "px": 1346.2, "py": 2029.6, "has_dungeon": false, "has_important": true}, {"id": 5699, "name": "StoneTowerRuins07", "category": "structure", "x": 4649.1, "z": -5116.3, "px": 2841.4, "py": 1174.8, "has_dungeon": false, "has_important": true}, {"id": 5700, "name": "StoneTowerRuins07", "category": "structure", "x": 716.0, "z": -2623.7, "px": 2170.2, "py": 1600.2, "has_dungeon": false, "has_important": true}, {"id": 5701, "name": "StoneTowerRuins07", "category": "structure", "x": 8138.3, "z": -2643.6, "px": 3436.9, "py": 1596.8, "has_dungeon": false, "has_important": true}, {"id": 5702, "name": "StoneTowerRuins07", "category": "structure", "x": 1911.6, "z": 1264.8, "px": 2374.2, "py": 2263.9, "has_dungeon": false, "has_important": true}, {"id": 5703, "name": "StoneTowerRuins07", "category": "structure", "x": 5675.5, "z": -1032.7, "px": 3016.6, "py": 1871.8, "has_dungeon": false, "has_important": true}, {"id": 5704, "name": "StoneTowerRuins07", "category": "structure", "x": 1608.9, "z": 6406.0, "px": 2322.6, "py": 3141.3, "has_dungeon": false, "has_important": true}, {"id": 5705, "name": "StoneTowerRuins07", "category": "structure", "x": 1015.6, "z": 4173.8, "px": 2221.3, "py": 2760.3, "has_dungeon": false, "has_important": true}, {"id": 5706, "name": "StoneTowerRuins07", "category": "structure", "x": 2381.8, "z": 5098.0, "px": 2454.5, "py": 2918.1, "has_dungeon": false, "has_important": true}, {"id": 5707, "name": "StoneTowerRuins07", "category": "structure", "x": -4024.4, "z": -2436.4, "px": 1361.2, "py": 1632.2, "has_dungeon": false, "has_important": true}, {"id": 5708, "name": "StoneTowerRuins07", "category": "structure", "x": 963.8, "z": 5565.1, "px": 2212.5, "py": 2997.8, "has_dungeon": false, "has_important": true}, {"id": 5709, "name": "StoneTowerRuins07", "category": "structure", "x": 1748.5, "z": 7490.7, "px": 2346.4, "py": 3326.4, "has_dungeon": false, "has_important": true}, {"id": 5710, "name": "StoneTowerRuins07", "category": "structure", "x": -439.6, "z": 570.9, "px": 1973.0, "py": 2145.4, "has_dungeon": false, "has_important": true}, {"id": 5711, "name": "StoneTowerRuins07", "category": "structure", "x": -200.7, "z": -4347.9, "px": 2013.7, "py": 1306.0, "has_dungeon": false, "has_important": true}, {"id": 5712, "name": "StoneTowerRuins07", "category": "structure", "x": 2700.6, "z": 5251.1, "px": 2508.9, "py": 2944.2, "has_dungeon": false, "has_important": true}, {"id": 5713, "name": "StoneTowerRuins07", "category": "structure", "x": 877.4, "z": 3513.6, "px": 2197.7, "py": 2647.7, "has_dungeon": false, "has_important": true}, {"id": 5714, "name": "StoneTowerRuins07", "category": "structure", "x": 1134.0, "z": -2326.2, "px": 2241.5, "py": 1651.0, "has_dungeon": false, "has_important": true}, {"id": 5715, "name": "StoneTowerRuins07", "category": "structure", "x": 7091.6, "z": 2322.0, "px": 3258.3, "py": 2444.3, "has_dungeon": false, "has_important": true}, {"id": 5716, "name": "StoneTowerRuins07", "category": "structure", "x": -7445.5, "z": -4692.9, "px": 777.3, "py": 1247.1, "has_dungeon": false, "has_important": true}, {"id": 5717, "name": "StoneTowerRuins07", "category": "structure", "x": 528.5, "z": 4727.0, "px": 2138.2, "py": 2854.7, "has_dungeon": false, "has_important": true}, {"id": 5718, "name": "StoneTowerRuins08", "category": "structure", "x": -7574.9, "z": -1814.5, "px": 755.2, "py": 1738.3, "has_dungeon": false, "has_important": true}, {"id": 5719, "name": "StoneTowerRuins08", "category": "structure", "x": -5059.4, "z": 5834.1, "px": 1184.5, "py": 3043.7, "has_dungeon": false, "has_important": true}, {"id": 5720, "name": "StoneTowerRuins08", "category": "structure", "x": 528.8, "z": 256.0, "px": 2138.2, "py": 2091.7, "has_dungeon": false, "has_important": true}, {"id": 5721, "name": "StoneTowerRuins08", "category": "structure", "x": -1846.6, "z": -4531.6, "px": 1732.8, "py": 1274.6, "has_dungeon": false, "has_important": true}, {"id": 5722, "name": "StoneTowerRuins08", "category": "structure", "x": 495.8, "z": 4974.6, "px": 2132.6, "py": 2897.0, "has_dungeon": false, "has_important": true}, {"id": 5723, "name": "StoneTowerRuins08", "category": "structure", "x": -2217.4, "z": 1787.8, "px": 1669.6, "py": 2353.1, "has_dungeon": false, "has_important": true}, {"id": 5724, "name": "StoneTowerRuins08", "category": "structure", "x": -9424.0, "z": 2817.4, "px": 439.6, "py": 2528.8, "has_dungeon": false, "has_important": true}, {"id": 5725, "name": "StoneTowerRuins08", "category": "structure", "x": -4547.2, "z": -1494.7, "px": 1271.9, "py": 1792.9, "has_dungeon": false, "has_important": true}, {"id": 5726, "name": "StoneTowerRuins08", "category": "structure", "x": 563.2, "z": 7145.6, "px": 2144.1, "py": 3267.5, "has_dungeon": false, "has_important": true}, {"id": 5727, "name": "StoneTowerRuins08", "category": "structure", "x": 5812.3, "z": 1587.6, "px": 3040.0, "py": 2319.0, "has_dungeon": false, "has_important": true}, {"id": 5728, "name": "StoneTowerRuins08", "category": "structure", "x": 2504.4, "z": -1220.9, "px": 2475.4, "py": 1839.6, "has_dungeon": false, "has_important": true}, {"id": 5729, "name": "StoneTowerRuins08", "category": "structure", "x": 6955.8, "z": -4170.2, "px": 3235.1, "py": 1336.3, "has_dungeon": false, "has_important": true}, {"id": 5730, "name": "StoneTowerRuins08", "category": "structure", "x": -9387.6, "z": 3060.5, "px": 445.8, "py": 2570.3, "has_dungeon": false, "has_important": true}, {"id": 5731, "name": "StoneTowerRuins08", "category": "structure", "x": -58.7, "z": -4822.7, "px": 2038.0, "py": 1224.9, "has_dungeon": false, "has_important": true}, {"id": 5732, "name": "StoneTowerRuins08", "category": "structure", "x": -4302.3, "z": -6317.8, "px": 1313.7, "py": 969.8, "has_dungeon": false, "has_important": true}, {"id": 5733, "name": "StoneTowerRuins08", "category": "structure", "x": 7736.4, "z": -3029.2, "px": 3368.3, "py": 1531.0, "has_dungeon": false, "has_important": true}, {"id": 5734, "name": "StoneTowerRuins08", "category": "structure", "x": -469.5, "z": 316.7, "px": 1967.9, "py": 2102.1, "has_dungeon": false, "has_important": true}, {"id": 5735, "name": "StoneTowerRuins08", "category": "structure", "x": -4529.8, "z": -4541.3, "px": 1274.9, "py": 1273.0, "has_dungeon": false, "has_important": true}, {"id": 5736, "name": "StoneTowerRuins08", "category": "structure", "x": -6125.9, "z": -41.6, "px": 1002.5, "py": 2040.9, "has_dungeon": false, "has_important": true}, {"id": 5737, "name": "StoneTowerRuins08", "category": "structure", "x": -5740.8, "z": 1654.0, "px": 1068.2, "py": 2330.3, "has_dungeon": false, "has_important": true}, {"id": 5738, "name": "StoneTowerRuins08", "category": "structure", "x": 240.2, "z": -4470.4, "px": 2089.0, "py": 1285.1, "has_dungeon": false, "has_important": true}, {"id": 5739, "name": "StoneTowerRuins08", "category": "structure", "x": -2387.7, "z": 4564.5, "px": 1640.5, "py": 2827.0, "has_dungeon": false, "has_important": true}, {"id": 5740, "name": "StoneTowerRuins08", "category": "structure", "x": 2174.6, "z": -4437.7, "px": 2419.1, "py": 1290.6, "has_dungeon": false, "has_important": true}, {"id": 5741, "name": "StoneTowerRuins08", "category": "structure", "x": 1547.4, "z": -7662.5, "px": 2312.1, "py": 740.3, "has_dungeon": false, "has_important": true}, {"id": 5742, "name": "StoneTowerRuins08", "category": "structure", "x": -4306.9, "z": 1528.4, "px": 1313.0, "py": 2308.8, "has_dungeon": false, "has_important": true}, {"id": 5743, "name": "StoneTowerRuins08", "category": "structure", "x": -2175.4, "z": 533.5, "px": 1676.7, "py": 2139.1, "has_dungeon": false, "has_important": true}, {"id": 5744, "name": "StoneTowerRuins08", "category": "structure", "x": -7283.2, "z": -4916.0, "px": 805.0, "py": 1209.0, "has_dungeon": false, "has_important": true}, {"id": 5745, "name": "StoneTowerRuins08", "category": "structure", "x": 76.6, "z": -4273.8, "px": 2061.1, "py": 1318.6, "has_dungeon": false, "has_important": true}, {"id": 5746, "name": "StoneTowerRuins08", "category": "structure", "x": 2047.8, "z": -1233.5, "px": 2397.5, "py": 1837.5, "has_dungeon": false, "has_important": true}, {"id": 5747, "name": "StoneTowerRuins08", "category": "structure", "x": -7596.5, "z": 4332.6, "px": 751.5, "py": 2787.4, "has_dungeon": false, "has_important": true}, {"id": 5748, "name": "StoneTowerRuins08", "category": "structure", "x": -4533.7, "z": 1551.4, "px": 1274.2, "py": 2312.8, "has_dungeon": false, "has_important": true}, {"id": 5749, "name": "StoneTowerRuins08", "category": "structure", "x": -2482.4, "z": 1652.7, "px": 1624.3, "py": 2330.1, "has_dungeon": false, "has_important": true}, {"id": 5750, "name": "StoneTowerRuins08", "category": "structure", "x": -3508.1, "z": 4404.3, "px": 1449.3, "py": 2799.7, "has_dungeon": false, "has_important": true}, {"id": 5751, "name": "StoneTowerRuins08", "category": "structure", "x": -5264.3, "z": 5645.9, "px": 1149.6, "py": 3011.6, "has_dungeon": false, "has_important": true}, {"id": 5752, "name": "StoneTowerRuins08", "category": "structure", "x": -5649.5, "z": -4995.0, "px": 1083.8, "py": 1195.5, "has_dungeon": false, "has_important": true}, {"id": 5753, "name": "StoneTowerRuins08", "category": "structure", "x": 8888.4, "z": -1533.8, "px": 3565.0, "py": 1786.2, "has_dungeon": false, "has_important": true}, {"id": 5754, "name": "StoneTowerRuins08", "category": "structure", "x": -9008.5, "z": 3377.8, "px": 510.5, "py": 2624.5, "has_dungeon": false, "has_important": true}, {"id": 5755, "name": "StoneTowerRuins08", "category": "structure", "x": 2669.2, "z": 1146.5, "px": 2503.5, "py": 2243.7, "has_dungeon": false, "has_important": true}, {"id": 5756, "name": "StoneTowerRuins08", "category": "structure", "x": 631.8, "z": 22.8, "px": 2155.8, "py": 2051.9, "has_dungeon": false, "has_important": true}, {"id": 5757, "name": "StoneTowerRuins08", "category": "structure", "x": -9336.5, "z": -146.9, "px": 454.6, "py": 2022.9, "has_dungeon": false, "has_important": true}, {"id": 5758, "name": "StoneTowerRuins08", "category": "structure", "x": 7950.5, "z": -2351.7, "px": 3404.9, "py": 1646.6, "has_dungeon": false, "has_important": true}, {"id": 5759, "name": "StoneTowerRuins08", "category": "structure", "x": 3369.3, "z": -2540.0, "px": 2623.0, "py": 1614.5, "has_dungeon": false, "has_important": true}, {"id": 5760, "name": "StoneTowerRuins08", "category": "structure", "x": -7172.5, "z": -2004.4, "px": 823.9, "py": 1705.9, "has_dungeon": false, "has_important": true}, {"id": 5761, "name": "StoneTowerRuins08", "category": "structure", "x": 1781.1, "z": -1275.4, "px": 2352.0, "py": 1830.3, "has_dungeon": false, "has_important": true}, {"id": 5762, "name": "StoneTowerRuins08", "category": "structure", "x": -9199.2, "z": 2706.7, "px": 478.0, "py": 2509.9, "has_dungeon": false, "has_important": true}, {"id": 5763, "name": "StoneTowerRuins08", "category": "structure", "x": 1285.7, "z": -5718.8, "px": 2267.4, "py": 1072.0, "has_dungeon": false, "has_important": true}, {"id": 5764, "name": "StoneTowerRuins08", "category": "structure", "x": -1232.3, "z": -1392.6, "px": 1837.7, "py": 1810.3, "has_dungeon": false, "has_important": true}, {"id": 5765, "name": "StoneTowerRuins08", "category": "structure", "x": -4625.7, "z": 5654.3, "px": 1258.5, "py": 3013.0, "has_dungeon": false, "has_important": true}, {"id": 5766, "name": "StoneTowerRuins08", "category": "structure", "x": 6898.1, "z": -3848.4, "px": 3225.3, "py": 1391.2, "has_dungeon": false, "has_important": true}, {"id": 5767, "name": "StoneTowerRuins08", "category": "structure", "x": -1719.3, "z": -5674.4, "px": 1754.6, "py": 1079.6, "has_dungeon": false, "has_important": true}, {"id": 5768, "name": "StoneTowerRuins08", "category": "structure", "x": -7410.3, "z": 78.4, "px": 783.3, "py": 2061.4, "has_dungeon": false, "has_important": true}, {"id": 5769, "name": "StoneTowerRuins08", "category": "structure", "x": 4993.7, "z": 274.2, "px": 2900.3, "py": 2094.8, "has_dungeon": false, "has_important": true}, {"id": 5770, "name": "StoneTowerRuins08", "category": "structure", "x": -1867.9, "z": 7611.6, "px": 1729.2, "py": 3347.0, "has_dungeon": false, "has_important": true}, {"id": 5771, "name": "StoneTowerRuins08", "category": "structure", "x": -5867.0, "z": 4555.0, "px": 1046.7, "py": 2825.4, "has_dungeon": false, "has_important": true}, {"id": 5772, "name": "StoneTowerRuins08", "category": "structure", "x": -9713.6, "z": -179.1, "px": 390.2, "py": 2017.4, "has_dungeon": false, "has_important": true}, {"id": 5773, "name": "StoneTowerRuins08", "category": "structure", "x": 3884.1, "z": 3853.9, "px": 2710.9, "py": 2705.7, "has_dungeon": false, "has_important": true}, {"id": 5774, "name": "StoneTowerRuins08", "category": "structure", "x": 7531.4, "z": 2795.8, "px": 3333.4, "py": 2525.1, "has_dungeon": false, "has_important": true}, {"id": 5775, "name": "StoneTowerRuins08", "category": "structure", "x": 8880.9, "z": 51.3, "px": 3563.7, "py": 2056.8, "has_dungeon": false, "has_important": true}, {"id": 5776, "name": "StoneTowerRuins08", "category": "structure", "x": -5888.0, "z": -1547.9, "px": 1043.1, "py": 1783.8, "has_dungeon": false, "has_important": true}, {"id": 5777, "name": "StoneTowerRuins08", "category": "structure", "x": 4501.2, "z": -5257.6, "px": 2816.2, "py": 1150.7, "has_dungeon": false, "has_important": true}, {"id": 5778, "name": "StoneTowerRuins08", "category": "structure", "x": 5910.7, "z": -56.1, "px": 3056.8, "py": 2038.4, "has_dungeon": false, "has_important": true}, {"id": 5779, "name": "StoneTowerRuins08", "category": "structure", "x": -2422.6, "z": -263.9, "px": 1634.5, "py": 2003.0, "has_dungeon": false, "has_important": true}, {"id": 5780, "name": "StoneTowerRuins08", "category": "structure", "x": 7408.7, "z": -2813.3, "px": 3312.4, "py": 1567.9, "has_dungeon": false, "has_important": true}, {"id": 5781, "name": "StoneTowerRuins08", "category": "structure", "x": 3202.9, "z": -2823.5, "px": 2594.6, "py": 1566.1, "has_dungeon": false, "has_important": true}, {"id": 5782, "name": "StoneTowerRuins08", "category": "structure", "x": -2963.6, "z": -5049.8, "px": 1542.2, "py": 1186.2, "has_dungeon": false, "has_important": true}, {"id": 5783, "name": "StoneTowerRuins08", "category": "structure", "x": 8465.8, "z": -1995.0, "px": 3492.8, "py": 1707.5, "has_dungeon": false, "has_important": true}, {"id": 5784, "name": "StoneTowerRuins08", "category": "structure", "x": 1798.6, "z": 6825.0, "px": 2355.0, "py": 3212.8, "has_dungeon": false, "has_important": true}, {"id": 5785, "name": "StoneTowerRuins08", "category": "structure", "x": -5583.8, "z": 4589.0, "px": 1095.0, "py": 2831.2, "has_dungeon": false, "has_important": true}, {"id": 5786, "name": "StoneTowerRuins08", "category": "structure", "x": -2158.9, "z": 4534.2, "px": 1679.5, "py": 2821.8, "has_dungeon": false, "has_important": true}, {"id": 5787, "name": "StoneTowerRuins08", "category": "structure", "x": -470.9, "z": -7097.9, "px": 1967.6, "py": 836.6, "has_dungeon": false, "has_important": true}, {"id": 5788, "name": "StoneTowerRuins08", "category": "structure", "x": 9681.9, "z": 1301.5, "px": 3700.4, "py": 2270.1, "has_dungeon": false, "has_important": true}, {"id": 5789, "name": "StoneTowerRuins08", "category": "structure", "x": -4941.3, "z": 5165.3, "px": 1204.7, "py": 2929.5, "has_dungeon": false, "has_important": true}, {"id": 5790, "name": "StoneTowerRuins08", "category": "structure", "x": 621.2, "z": -2438.7, "px": 2154.0, "py": 1631.8, "has_dungeon": false, "has_important": true}, {"id": 5791, "name": "StoneTowerRuins08", "category": "structure", "x": 3060.3, "z": -4399.8, "px": 2570.3, "py": 1297.1, "has_dungeon": false, "has_important": true}, {"id": 5792, "name": "StoneTowerRuins08", "category": "structure", "x": 3063.3, "z": 3947.5, "px": 2570.8, "py": 2721.7, "has_dungeon": false, "has_important": true}, {"id": 5793, "name": "StoneTowerRuins08", "category": "structure", "x": -1326.7, "z": -2105.9, "px": 1821.6, "py": 1688.6, "has_dungeon": false, "has_important": true}, {"id": 5794, "name": "StoneTowerRuins08", "category": "structure", "x": -7097.9, "z": 2675.3, "px": 836.6, "py": 2504.6, "has_dungeon": false, "has_important": true}, {"id": 5795, "name": "StoneTowerRuins08", "category": "structure", "x": 528.8, "z": 576.3, "px": 2138.2, "py": 2146.4, "has_dungeon": false, "has_important": true}, {"id": 5796, "name": "StoneTowerRuins08", "category": "structure", "x": 5485.9, "z": -913.2, "px": 2984.3, "py": 1892.1, "has_dungeon": false, "has_important": true}, {"id": 5797, "name": "StoneTowerRuins08", "category": "structure", "x": -8463.5, "z": -1973.4, "px": 603.6, "py": 1711.2, "has_dungeon": false, "has_important": true}, {"id": 5798, "name": "StoneTowerRuins09", "category": "structure", "x": -5009.6, "z": 679.4, "px": 1193.0, "py": 2164.0, "has_dungeon": false, "has_important": false}, {"id": 5799, "name": "StoneTowerRuins09", "category": "structure", "x": -938.1, "z": -5833.8, "px": 1887.9, "py": 1052.4, "has_dungeon": false, "has_important": true}, {"id": 5800, "name": "StoneTowerRuins09", "category": "structure", "x": 4120.3, "z": -367.3, "px": 2751.2, "py": 1985.3, "has_dungeon": false, "has_important": true}, {"id": 5801, "name": "StoneTowerRuins09", "category": "structure", "x": -3543.6, "z": 6936.2, "px": 1443.2, "py": 3231.8, "has_dungeon": false, "has_important": true}, {"id": 5802, "name": "StoneTowerRuins09", "category": "structure", "x": 313.8, "z": 595.2, "px": 2101.6, "py": 2149.6, "has_dungeon": false, "has_important": true}, {"id": 5803, "name": "StoneTowerRuins09", "category": "structure", "x": 8062.1, "z": 984.5, "px": 3423.9, "py": 2216.0, "has_dungeon": false, "has_important": true}, {"id": 5804, "name": "StoneTowerRuins09", "category": "structure", "x": -5040.1, "z": 5566.3, "px": 1187.8, "py": 2998.0, "has_dungeon": false, "has_important": true}, {"id": 5805, "name": "StoneTowerRuins09", "category": "structure", "x": -3013.0, "z": 6659.9, "px": 1533.8, "py": 3184.6, "has_dungeon": false, "has_important": true}, {"id": 5806, "name": "StoneTowerRuins09", "category": "structure", "x": -406.5, "z": -4474.1, "px": 1978.6, "py": 1284.4, "has_dungeon": false, "has_important": true}, {"id": 5807, "name": "StoneTowerRuins09", "category": "structure", "x": 4224.2, "z": 6891.7, "px": 2768.9, "py": 3224.2, "has_dungeon": false, "has_important": false}, {"id": 5808, "name": "StoneTowerRuins09", "category": "structure", "x": -1866.6, "z": 4719.3, "px": 1729.4, "py": 2853.4, "has_dungeon": false, "has_important": false}, {"id": 5809, "name": "StoneTowerRuins09", "category": "structure", "x": -7783.7, "z": -2326.2, "px": 719.6, "py": 1651.0, "has_dungeon": false, "has_important": true}, {"id": 5810, "name": "StoneTowerRuins09", "category": "structure", "x": -9202.9, "z": -1528.5, "px": 477.4, "py": 1787.1, "has_dungeon": false, "has_important": true}, {"id": 5811, "name": "StoneTowerRuins09", "category": "structure", "x": -744.3, "z": 619.8, "px": 1921.0, "py": 2153.8, "has_dungeon": false, "has_important": true}, {"id": 5812, "name": "StoneTowerRuins09", "category": "structure", "x": 2823.7, "z": 1017.1, "px": 2529.9, "py": 2221.6, "has_dungeon": false, "has_important": true}, {"id": 5813, "name": "StoneTowerRuins09", "category": "structure", "x": -5682.1, "z": 5108.6, "px": 1078.3, "py": 2919.9, "has_dungeon": false, "has_important": true}, {"id": 5814, "name": "StoneTowerRuins09", "category": "structure", "x": -7484.2, "z": 4628.3, "px": 770.7, "py": 2837.9, "has_dungeon": false, "has_important": true}, {"id": 5815, "name": "StoneTowerRuins09", "category": "structure", "x": -4036.4, "z": -3716.5, "px": 1359.1, "py": 1413.7, "has_dungeon": false, "has_important": true}, {"id": 5816, "name": "StoneTowerRuins09", "category": "structure", "x": -8208.6, "z": -4363.2, "px": 647.1, "py": 1303.3, "has_dungeon": false, "has_important": false}, {"id": 5817, "name": "StoneTowerRuins09", "category": "structure", "x": -7510.2, "z": -5033.6, "px": 766.3, "py": 1188.9, "has_dungeon": false, "has_important": true}, {"id": 5818, "name": "StoneTowerRuins09", "category": "structure", "x": 977.0, "z": 434.7, "px": 2214.7, "py": 2122.2, "has_dungeon": false, "has_important": true}, {"id": 5819, "name": "StoneTowerRuins09", "category": "structure", "x": -8492.1, "z": -663.8, "px": 598.7, "py": 1934.7, "has_dungeon": false, "has_important": false}, {"id": 5820, "name": "StoneTowerRuins09", "category": "structure", "x": -4843.5, "z": 1003.8, "px": 1221.4, "py": 2219.3, "has_dungeon": false, "has_important": false}, {"id": 5821, "name": "StoneTowerRuins09", "category": "structure", "x": -1918.4, "z": -4052.0, "px": 1720.6, "py": 1356.5, "has_dungeon": false, "has_important": true}, {"id": 5822, "name": "StoneTowerRuins09", "category": "structure", "x": 1335.7, "z": -2640.2, "px": 2276.0, "py": 1597.4, "has_dungeon": false, "has_important": true}, {"id": 5823, "name": "StoneTowerRuins09", "category": "structure", "x": 2201.0, "z": 719.8, "px": 2423.6, "py": 2170.8, "has_dungeon": false, "has_important": true}, {"id": 5824, "name": "StoneTowerRuins09", "category": "structure", "x": -3826.2, "z": -3924.7, "px": 1395.0, "py": 1378.2, "has_dungeon": false, "has_important": false}, {"id": 5825, "name": "StoneTowerRuins09", "category": "structure", "x": 984.1, "z": -2690.8, "px": 2216.0, "py": 1588.8, "has_dungeon": false, "has_important": true}, {"id": 5826, "name": "StoneTowerRuins09", "category": "structure", "x": 2409.2, "z": 1217.9, "px": 2459.2, "py": 2255.9, "has_dungeon": false, "has_important": true}, {"id": 5827, "name": "StoneTowerRuins09", "category": "structure", "x": 7797.7, "z": 4397.8, "px": 3378.8, "py": 2798.6, "has_dungeon": false, "has_important": true}, {"id": 5828, "name": "StoneTowerRuins09", "category": "structure", "x": -4243.6, "z": 4235.5, "px": 1323.8, "py": 2770.9, "has_dungeon": false, "has_important": true}, {"id": 5829, "name": "StoneTowerRuins09", "category": "structure", "x": -3886.7, "z": -251.2, "px": 1384.7, "py": 2005.1, "has_dungeon": false, "has_important": true}, {"id": 5830, "name": "StoneTowerRuins09", "category": "structure", "x": -8556.1, "z": 646.8, "px": 587.8, "py": 2158.4, "has_dungeon": false, "has_important": true}, {"id": 5831, "name": "StoneTowerRuins09", "category": "structure", "x": 5371.9, "z": 1727.9, "px": 2964.8, "py": 2342.9, "has_dungeon": false, "has_important": true}, {"id": 5832, "name": "StoneTowerRuins09", "category": "structure", "x": -7813.5, "z": -2544.1, "px": 714.5, "py": 1613.8, "has_dungeon": false, "has_important": false}, {"id": 5833, "name": "StoneTowerRuins09", "category": "structure", "x": -3976.4, "z": -6359.5, "px": 1369.4, "py": 962.6, "has_dungeon": false, "has_important": true}, {"id": 5834, "name": "StoneTowerRuins09", "category": "structure", "x": 5142.3, "z": 2763.7, "px": 2925.6, "py": 2519.7, "has_dungeon": false, "has_important": true}, {"id": 5835, "name": "StoneTowerRuins09", "category": "structure", "x": -2554.7, "z": 1464.4, "px": 1612.0, "py": 2297.9, "has_dungeon": false, "has_important": true}, {"id": 5836, "name": "StoneTowerRuins09", "category": "structure", "x": -3241.9, "z": 6568.9, "px": 1494.7, "py": 3169.1, "has_dungeon": false, "has_important": true}, {"id": 5837, "name": "StoneTowerRuins09", "category": "structure", "x": -5183.9, "z": -1860.2, "px": 1163.3, "py": 1730.5, "has_dungeon": false, "has_important": true}, {"id": 5838, "name": "StoneTowerRuins09", "category": "structure", "x": 3517.7, "z": 368.5, "px": 2648.4, "py": 2110.9, "has_dungeon": false, "has_important": true}, {"id": 5839, "name": "StoneTowerRuins09", "category": "structure", "x": -1623.3, "z": -4432.6, "px": 1771.0, "py": 1291.5, "has_dungeon": false, "has_important": true}, {"id": 5840, "name": "StoneTowerRuins09", "category": "structure", "x": 1861.7, "z": 7023.9, "px": 2365.7, "py": 3246.7, "has_dungeon": false, "has_important": true}, {"id": 5841, "name": "StoneTowerRuins09", "category": "structure", "x": -2983.6, "z": 4222.4, "px": 1538.8, "py": 2768.6, "has_dungeon": false, "has_important": false}, {"id": 5842, "name": "StoneTowerRuins09", "category": "structure", "x": 1898.4, "z": 1039.0, "px": 2372.0, "py": 2225.3, "has_dungeon": false, "has_important": true}, {"id": 5843, "name": "StoneTowerRuins09", "category": "structure", "x": -5102.3, "z": -1677.7, "px": 1177.2, "py": 1761.7, "has_dungeon": false, "has_important": true}, {"id": 5844, "name": "StoneTowerRuins09", "category": "structure", "x": 8070.9, "z": -108.0, "px": 3425.4, "py": 2029.6, "has_dungeon": false, "has_important": true}, {"id": 5845, "name": "StoneTowerRuins09", "category": "structure", "x": 4363.6, "z": -871.6, "px": 2792.7, "py": 1899.2, "has_dungeon": false, "has_important": true}, {"id": 5846, "name": "StoneTowerRuins09", "category": "structure", "x": 500.8, "z": 4478.4, "px": 2133.5, "py": 2812.3, "has_dungeon": false, "has_important": true}, {"id": 5847, "name": "StoneTowerRuins09", "category": "structure", "x": -5563.8, "z": 4804.7, "px": 1098.4, "py": 2868.0, "has_dungeon": false, "has_important": true}, {"id": 5848, "name": "StoneTowerRuins09", "category": "structure", "x": -3412.6, "z": -651.7, "px": 1465.6, "py": 1936.8, "has_dungeon": false, "has_important": true}, {"id": 5849, "name": "StoneTowerRuins09", "category": "structure", "x": 2631.3, "z": 5747.5, "px": 2497.1, "py": 3028.9, "has_dungeon": false, "has_important": true}, {"id": 5850, "name": "StoneTowerRuins09", "category": "structure", "x": -983.2, "z": 383.7, "px": 1880.2, "py": 2113.5, "has_dungeon": false, "has_important": true}, {"id": 5851, "name": "StoneTowerRuins09", "category": "structure", "x": 2549.6, "z": -3411.2, "px": 2483.1, "py": 1465.8, "has_dungeon": false, "has_important": true}, {"id": 5852, "name": "StoneTowerRuins09", "category": "structure", "x": 9398.2, "z": 1298.5, "px": 3652.0, "py": 2269.6, "has_dungeon": false, "has_important": true}, {"id": 5853, "name": "StoneTowerRuins09", "category": "structure", "x": 2696.6, "z": -4719.6, "px": 2508.2, "py": 1242.5, "has_dungeon": false, "has_important": true}, {"id": 5854, "name": "StoneTowerRuins09", "category": "structure", "x": -9556.0, "z": 2125.3, "px": 417.1, "py": 2410.7, "has_dungeon": false, "has_important": true}, {"id": 5855, "name": "StoneTowerRuins09", "category": "structure", "x": 5835.4, "z": -4630.6, "px": 3043.9, "py": 1257.7, "has_dungeon": false, "has_important": true}, {"id": 5856, "name": "StoneTowerRuins09", "category": "structure", "x": -1454.7, "z": -1579.4, "px": 1799.7, "py": 1778.4, "has_dungeon": false, "has_important": true}, {"id": 5857, "name": "StoneTowerRuins09", "category": "structure", "x": -8236.3, "z": -952.6, "px": 642.3, "py": 1885.4, "has_dungeon": false, "has_important": true}, {"id": 5858, "name": "StoneTowerRuins09", "category": "structure", "x": -1224.5, "z": -5773.7, "px": 1839.0, "py": 1062.6, "has_dungeon": false, "has_important": true}, {"id": 5859, "name": "StoneTowerRuins09", "category": "structure", "x": -9578.3, "z": -2612.7, "px": 413.3, "py": 1602.1, "has_dungeon": false, "has_important": true}, {"id": 5860, "name": "StoneTowerRuins09", "category": "structure", "x": 5321.0, "z": 4805.4, "px": 2956.1, "py": 2868.1, "has_dungeon": false, "has_important": true}, {"id": 5861, "name": "StoneTowerRuins09", "category": "structure", "x": -9583.4, "z": -462.2, "px": 412.4, "py": 1969.1, "has_dungeon": false, "has_important": true}, {"id": 5862, "name": "StoneTowerRuins09", "category": "structure", "x": -7357.0, "z": -2131.9, "px": 792.4, "py": 1684.2, "has_dungeon": false, "has_important": true}, {"id": 5863, "name": "StoneTowerRuins09", "category": "structure", "x": 7448.1, "z": -3375.0, "px": 3319.1, "py": 1472.0, "has_dungeon": false, "has_important": true}, {"id": 5864, "name": "StoneTowerRuins09", "category": "structure", "x": -6723.3, "z": 557.8, "px": 900.6, "py": 2143.2, "has_dungeon": false, "has_important": true}, {"id": 5865, "name": "StoneTowerRuins09", "category": "structure", "x": -1719.4, "z": 2838.1, "px": 1754.6, "py": 2532.4, "has_dungeon": false, "has_important": true}, {"id": 5866, "name": "StoneTowerRuins09", "category": "structure", "x": -1362.0, "z": -1166.9, "px": 1815.6, "py": 1848.8, "has_dungeon": false, "has_important": true}, {"id": 5867, "name": "StoneTowerRuins09", "category": "structure", "x": 241.5, "z": -1387.6, "px": 2089.2, "py": 1811.2, "has_dungeon": false, "has_important": true}, {"id": 5868, "name": "StoneTowerRuins09", "category": "structure", "x": 1993.0, "z": -143.7, "px": 2388.1, "py": 2023.5, "has_dungeon": false, "has_important": true}, {"id": 5869, "name": "StoneTowerRuins09", "category": "structure", "x": -16.7, "z": -1066.4, "px": 2045.1, "py": 1866.0, "has_dungeon": false, "has_important": true}, {"id": 5870, "name": "StoneTowerRuins09", "category": "structure", "x": 2163.4, "z": 4021.4, "px": 2417.2, "py": 2734.3, "has_dungeon": false, "has_important": true}, {"id": 5871, "name": "StoneTowerRuins09", "category": "structure", "x": -5463.4, "z": -5241.0, "px": 1115.6, "py": 1153.5, "has_dungeon": false, "has_important": true}, {"id": 5872, "name": "StoneTowerRuins09", "category": "structure", "x": -1219.9, "z": 2642.8, "px": 1839.8, "py": 2499.0, "has_dungeon": false, "has_important": false}, {"id": 5873, "name": "StoneTowerRuins09", "category": "structure", "x": 6802.7, "z": 4977.1, "px": 3209.0, "py": 2897.4, "has_dungeon": false, "has_important": true}, {"id": 5874, "name": "StoneTowerRuins09", "category": "structure", "x": 5909.6, "z": -536.4, "px": 3056.6, "py": 1956.5, "has_dungeon": false, "has_important": true}, {"id": 5875, "name": "StoneTowerRuins09", "category": "structure", "x": -3781.9, "z": 1224.7, "px": 1402.6, "py": 2257.0, "has_dungeon": false, "has_important": true}, {"id": 5876, "name": "StoneTowerRuins09", "category": "structure", "x": -1448.8, "z": 7624.2, "px": 1800.7, "py": 3349.2, "has_dungeon": false, "has_important": true}, {"id": 5877, "name": "StoneTowerRuins09", "category": "structure", "x": -3928.7, "z": 1853.8, "px": 1377.5, "py": 2364.4, "has_dungeon": false, "has_important": true}, {"id": 5878, "name": "StoneTowerRuins10", "category": "structure", "x": 652.5, "z": -189.0, "px": 2159.4, "py": 2015.7, "has_dungeon": false, "has_important": true}, {"id": 5879, "name": "StoneTowerRuins10", "category": "structure", "x": -878.8, "z": 21.9, "px": 1898.0, "py": 2051.7, "has_dungeon": false, "has_important": true}, {"id": 5880, "name": "StoneTowerRuins10", "category": "structure", "x": -2041.4, "z": -4241.8, "px": 1699.6, "py": 1324.1, "has_dungeon": false, "has_important": true}, {"id": 5881, "name": "StoneTowerRuins10", "category": "structure", "x": -5360.7, "z": 400.0, "px": 1133.1, "py": 2116.3, "has_dungeon": false, "has_important": true}, {"id": 5882, "name": "StoneTowerRuins10", "category": "structure", "x": 2305.4, "z": -1393.9, "px": 2441.5, "py": 1810.1, "has_dungeon": false, "has_important": true}, {"id": 5883, "name": "StoneTowerRuins10", "category": "structure", "x": -403.3, "z": -2186.9, "px": 1979.2, "py": 1674.8, "has_dungeon": false, "has_important": true}, {"id": 5884, "name": "StoneTowerRuins10", "category": "structure", "x": -5265.4, "z": -1555.4, "px": 1149.4, "py": 1782.5, "has_dungeon": false, "has_important": true}, {"id": 5885, "name": "StoneTowerRuins10", "category": "structure", "x": -8192.1, "z": -1805.8, "px": 649.9, "py": 1739.8, "has_dungeon": false, "has_important": false}, {"id": 5886, "name": "StoneTowerRuins10", "category": "structure", "x": -3861.4, "z": 4347.9, "px": 1389.0, "py": 2790.0, "has_dungeon": false, "has_important": true}, {"id": 5887, "name": "StoneTowerRuins10", "category": "structure", "x": 2817.1, "z": 391.9, "px": 2528.8, "py": 2114.9, "has_dungeon": false, "has_important": true}, {"id": 5888, "name": "StoneTowerRuins10", "category": "structure", "x": 9448.5, "z": 328.3, "px": 3660.5, "py": 2104.0, "has_dungeon": false, "has_important": true}, {"id": 5889, "name": "StoneTowerRuins10", "category": "structure", "x": 4474.5, "z": 6760.9, "px": 2811.6, "py": 3201.9, "has_dungeon": false, "has_important": true}, {"id": 5890, "name": "StoneTowerRuins10", "category": "structure", "x": -5834.2, "z": -5102.2, "px": 1052.3, "py": 1177.2, "has_dungeon": false, "has_important": true}, {"id": 5891, "name": "StoneTowerRuins10", "category": "structure", "x": -9104.4, "z": 3157.4, "px": 494.2, "py": 2586.9, "has_dungeon": false, "has_important": true}, {"id": 5892, "name": "StoneTowerRuins10", "category": "structure", "x": 3715.3, "z": 87.9, "px": 2682.1, "py": 2063.0, "has_dungeon": false, "has_important": true}, {"id": 5893, "name": "StoneTowerRuins10", "category": "structure", "x": -5806.1, "z": 1098.1, "px": 1057.1, "py": 2235.4, "has_dungeon": false, "has_important": true}, {"id": 5894, "name": "StoneTowerRuins10", "category": "structure", "x": 2559.7, "z": -4562.4, "px": 2484.9, "py": 1269.4, "has_dungeon": false, "has_important": true}, {"id": 5895, "name": "StoneTowerRuins10", "category": "structure", "x": 3265.2, "z": -4753.9, "px": 2605.3, "py": 1236.7, "has_dungeon": false, "has_important": true}, {"id": 5896, "name": "StoneTowerRuins10", "category": "structure", "x": 5515.8, "z": 1560.0, "px": 2989.4, "py": 2314.2, "has_dungeon": false, "has_important": true}, {"id": 5897, "name": "StoneTowerRuins10", "category": "structure", "x": 2193.9, "z": -448.9, "px": 2422.4, "py": 1971.4, "has_dungeon": false, "has_important": true}, {"id": 5898, "name": "StoneTowerRuins10", "category": "structure", "x": -7336.9, "z": -3608.9, "px": 795.8, "py": 1432.1, "has_dungeon": false, "has_important": true}, {"id": 5899, "name": "StoneTowerRuins10", "category": "structure", "x": 6090.7, "z": -4817.8, "px": 3087.5, "py": 1225.8, "has_dungeon": false, "has_important": true}, {"id": 5900, "name": "StoneTowerRuins10", "category": "structure", "x": 1144.8, "z": -5229.4, "px": 2243.4, "py": 1155.5, "has_dungeon": false, "has_important": true}, {"id": 5901, "name": "StoneTowerRuins10", "category": "structure", "x": -6200.7, "z": 2350.4, "px": 989.7, "py": 2449.1, "has_dungeon": false, "has_important": true}, {"id": 5902, "name": "StoneTowerRuins10", "category": "structure", "x": 9557.5, "z": 143.8, "px": 3679.1, "py": 2072.5, "has_dungeon": false, "has_important": true}, {"id": 5903, "name": "StoneTowerRuins10", "category": "structure", "x": 1363.9, "z": -2263.0, "px": 2280.8, "py": 1661.8, "has_dungeon": false, "has_important": true}, {"id": 5904, "name": "StoneTowerRuins10", "category": "structure", "x": 3949.5, "z": 3628.1, "px": 2722.0, "py": 2667.2, "has_dungeon": false, "has_important": true}, {"id": 5905, "name": "StoneTowerRuins10", "category": "structure", "x": -8341.7, "z": -1166.7, "px": 624.3, "py": 1848.9, "has_dungeon": false, "has_important": true}, {"id": 5906, "name": "StoneTowerRuins10", "category": "structure", "x": 336.2, "z": 5334.5, "px": 2105.4, "py": 2958.4, "has_dungeon": false, "has_important": true}, {"id": 5907, "name": "StoneTowerRuins10", "category": "structure", "x": 8361.0, "z": -3600.9, "px": 3474.9, "py": 1433.4, "has_dungeon": false, "has_important": true}, {"id": 5908, "name": "StoneTowerRuins10", "category": "structure", "x": -1046.7, "z": -1465.6, "px": 1869.4, "py": 1797.9, "has_dungeon": false, "has_important": false}, {"id": 5909, "name": "StoneTowerRuins10", "category": "structure", "x": 976.7, "z": 5105.9, "px": 2214.7, "py": 2919.4, "has_dungeon": false, "has_important": true}, {"id": 5910, "name": "StoneTowerRuins10", "category": "structure", "x": -9304.7, "z": 3269.6, "px": 460.0, "py": 2606.0, "has_dungeon": false, "has_important": true}, {"id": 5911, "name": "StoneTowerRuins10", "category": "structure", "x": 917.1, "z": 109.2, "px": 2204.5, "py": 2066.6, "has_dungeon": false, "has_important": true}, {"id": 5912, "name": "StoneTowerRuins10", "category": "structure", "x": 3777.5, "z": 1324.0, "px": 2692.7, "py": 2274.0, "has_dungeon": false, "has_important": true}, {"id": 5913, "name": "StoneTowerRuins10", "category": "structure", "x": 2297.3, "z": -14.7, "px": 2440.1, "py": 2045.5, "has_dungeon": false, "has_important": true}, {"id": 5914, "name": "StoneTowerRuins10", "category": "structure", "x": -3047.3, "z": 1960.2, "px": 1527.9, "py": 2382.5, "has_dungeon": false, "has_important": true}, {"id": 5915, "name": "StoneTowerRuins10", "category": "structure", "x": -3531.3, "z": 6678.8, "px": 1445.3, "py": 3187.8, "has_dungeon": false, "has_important": true}, {"id": 5916, "name": "StoneTowerRuins10", "category": "structure", "x": 2564.0, "z": 503.9, "px": 2485.6, "py": 2134.0, "has_dungeon": false, "has_important": true}, {"id": 5917, "name": "StoneTowerRuins10", "category": "structure", "x": -4715.8, "z": 5435.2, "px": 1243.2, "py": 2975.6, "has_dungeon": false, "has_important": true}, {"id": 5918, "name": "StoneTowerRuins10", "category": "structure", "x": -3288.4, "z": 4420.0, "px": 1486.8, "py": 2802.3, "has_dungeon": false, "has_important": true}, {"id": 5919, "name": "StoneTowerRuins10", "category": "structure", "x": 8392.4, "z": -2191.9, "px": 3480.3, "py": 1673.9, "has_dungeon": false, "has_important": true}, {"id": 5920, "name": "StoneTowerRuins10", "category": "structure", "x": 4369.2, "z": -5005.1, "px": 2793.7, "py": 1193.8, "has_dungeon": false, "has_important": true}, {"id": 5921, "name": "StoneTowerRuins10", "category": "structure", "x": 3903.1, "z": 4079.3, "px": 2714.1, "py": 2744.2, "has_dungeon": false, "has_important": true}, {"id": 5922, "name": "StoneTowerRuins10", "category": "structure", "x": -1154.5, "z": -5457.1, "px": 1851.0, "py": 1116.7, "has_dungeon": false, "has_important": true}, {"id": 5923, "name": "StoneTowerRuins10", "category": "structure", "x": 3386.6, "z": -2293.3, "px": 2626.0, "py": 1656.6, "has_dungeon": false, "has_important": true}, {"id": 5924, "name": "StoneTowerRuins10", "category": "structure", "x": 3716.3, "z": -213.0, "px": 2682.2, "py": 2011.6, "has_dungeon": false, "has_important": true}, {"id": 5925, "name": "StoneTowerRuins10", "category": "structure", "x": -9750.5, "z": -2323.9, "px": 383.9, "py": 1651.4, "has_dungeon": false, "has_important": false}, {"id": 5926, "name": "StoneTowerRuins10", "category": "structure", "x": 813.0, "z": 4712.6, "px": 2186.8, "py": 2852.3, "has_dungeon": false, "has_important": true}, {"id": 5927, "name": "StoneTowerRuins10", "category": "structure", "x": 364.5, "z": 2729.2, "px": 2110.2, "py": 2513.8, "has_dungeon": false, "has_important": true}, {"id": 5928, "name": "StoneTowerRuins10", "category": "structure", "x": 5192.3, "z": 3498.5, "px": 2934.2, "py": 2645.1, "has_dungeon": false, "has_important": true}, {"id": 5929, "name": "StoneTowerRuins10", "category": "structure", "x": 4139.8, "z": -1151.5, "px": 2754.5, "py": 1851.5, "has_dungeon": false, "has_important": true}, {"id": 5930, "name": "StoneTowerRuins10", "category": "structure", "x": -2438.6, "z": -6318.6, "px": 1631.8, "py": 969.6, "has_dungeon": false, "has_important": false}, {"id": 5931, "name": "StoneTowerRuins10", "category": "structure", "x": 8403.4, "z": 433.3, "px": 3482.2, "py": 2121.9, "has_dungeon": false, "has_important": true}, {"id": 5932, "name": "StoneTowerRuins10", "category": "structure", "x": -3141.2, "z": -2234.6, "px": 1511.9, "py": 1666.6, "has_dungeon": false, "has_important": true}, {"id": 5933, "name": "StoneTowerRuins10", "category": "structure", "x": 2193.4, "z": -889.7, "px": 2422.3, "py": 1896.2, "has_dungeon": false, "has_important": true}, {"id": 5934, "name": "StoneTowerRuins10", "category": "structure", "x": 2486.5, "z": -3704.0, "px": 2472.4, "py": 1415.9, "has_dungeon": false, "has_important": true}, {"id": 5935, "name": "StoneTowerRuins10", "category": "structure", "x": 9852.8, "z": 1403.6, "px": 3729.5, "py": 2287.5, "has_dungeon": false, "has_important": true}, {"id": 5936, "name": "StoneTowerRuins10", "category": "structure", "x": -9680.0, "z": 529.5, "px": 395.9, "py": 2138.4, "has_dungeon": false, "has_important": true}, {"id": 5937, "name": "StoneTowerRuins10", "category": "structure", "x": 3946.3, "z": 5101.2, "px": 2721.5, "py": 2918.6, "has_dungeon": false, "has_important": true}, {"id": 5938, "name": "StoneTowerRuins10", "category": "structure", "x": 8688.5, "z": -2089.0, "px": 3530.8, "py": 1691.5, "has_dungeon": false, "has_important": true}, {"id": 5939, "name": "StoneTowerRuins10", "category": "structure", "x": 2108.1, "z": 3784.2, "px": 2407.8, "py": 2693.8, "has_dungeon": false, "has_important": true}, {"id": 5940, "name": "StoneTowerRuins10", "category": "structure", "x": 5325.1, "z": 6284.2, "px": 2956.8, "py": 3120.5, "has_dungeon": false, "has_important": true}, {"id": 5941, "name": "StoneTowerRuins10", "category": "structure", "x": -2134.4, "z": -1915.1, "px": 1683.7, "py": 1721.2, "has_dungeon": false, "has_important": true}, {"id": 5942, "name": "StoneTowerRuins10", "category": "structure", "x": -4648.2, "z": -1206.5, "px": 1254.7, "py": 1842.1, "has_dungeon": false, "has_important": false}, {"id": 5943, "name": "StoneTowerRuins10", "category": "structure", "x": -6099.7, "z": 4622.1, "px": 1007.0, "py": 2836.8, "has_dungeon": false, "has_important": true}, {"id": 5944, "name": "StoneTowerRuins10", "category": "structure", "x": 4176.1, "z": -167.7, "px": 2760.7, "py": 2019.4, "has_dungeon": false, "has_important": false}, {"id": 5945, "name": "StoneTowerRuins10", "category": "structure", "x": 186.1, "z": -1046.6, "px": 2079.8, "py": 1869.4, "has_dungeon": false, "has_important": true}, {"id": 5946, "name": "StoneTowerRuins10", "category": "structure", "x": 3247.9, "z": -1237.4, "px": 2602.3, "py": 1836.8, "has_dungeon": false, "has_important": true}, {"id": 5947, "name": "StoneTowerRuins10", "category": "structure", "x": -1111.4, "z": -1130.1, "px": 1858.3, "py": 1855.1, "has_dungeon": false, "has_important": false}, {"id": 5948, "name": "StoneTowerRuins10", "category": "structure", "x": 4211.7, "z": 6609.6, "px": 2766.8, "py": 3176.0, "has_dungeon": false, "has_important": true}, {"id": 5949, "name": "StoneTowerRuins10", "category": "structure", "x": 1926.7, "z": 3601.7, "px": 2376.8, "py": 2662.7, "has_dungeon": false, "has_important": true}, {"id": 5950, "name": "StoneTowerRuins10", "category": "structure", "x": 2426.6, "z": -2262.3, "px": 2462.1, "py": 1661.9, "has_dungeon": false, "has_important": true}, {"id": 5951, "name": "StoneTowerRuins10", "category": "structure", "x": 9774.7, "z": -1639.7, "px": 3716.2, "py": 1768.2, "has_dungeon": false, "has_important": true}, {"id": 5952, "name": "StoneTowerRuins10", "category": "structure", "x": -2087.2, "z": 1063.5, "px": 1691.8, "py": 2229.5, "has_dungeon": false, "has_important": true}, {"id": 5953, "name": "StoneTowerRuins10", "category": "structure", "x": 8750.5, "z": -4010.8, "px": 3541.4, "py": 1363.5, "has_dungeon": false, "has_important": true}, {"id": 5954, "name": "StoneTowerRuins10", "category": "structure", "x": 7191.6, "z": 2040.4, "px": 3275.4, "py": 2396.2, "has_dungeon": false, "has_important": true}, {"id": 5955, "name": "StoneTowerRuins10", "category": "structure", "x": 3688.8, "z": 1135.6, "px": 2677.6, "py": 2241.8, "has_dungeon": false, "has_important": true}, {"id": 5956, "name": "StoneTowerRuins10", "category": "structure", "x": -2295.6, "z": 4169.7, "px": 1656.2, "py": 2759.6, "has_dungeon": false, "has_important": true}, {"id": 5957, "name": "StoneTowerRuins10", "category": "structure", "x": -615.6, "z": -6477.2, "px": 1942.9, "py": 942.6, "has_dungeon": false, "has_important": true}, {"id": 1833, "name": "SwampRuin1", "category": "structure", "x": -303.6, "z": 2554.8, "px": 1996.2, "py": 2484.0, "has_dungeon": false, "has_important": true}, {"id": 1834, "name": "SwampRuin1", "category": "structure", "x": 3628.1, "z": 833.7, "px": 2667.2, "py": 2190.3, "has_dungeon": false, "has_important": true}, {"id": 1835, "name": "SwampRuin1", "category": "structure", "x": 1360.9, "z": 2236.5, "px": 2280.3, "py": 2429.7, "has_dungeon": false, "has_important": true}, {"id": 1836, "name": "SwampRuin1", "category": "structure", "x": 564.0, "z": 2616.5, "px": 2144.3, "py": 2494.5, "has_dungeon": false, "has_important": true}, {"id": 1837, "name": "SwampRuin1", "category": "structure", "x": -877.0, "z": -3781.3, "px": 1898.3, "py": 1402.7, "has_dungeon": false, "has_important": true}, {"id": 1838, "name": "SwampRuin1", "category": "structure", "x": 2684.8, "z": 3922.2, "px": 2506.2, "py": 2717.4, "has_dungeon": false, "has_important": true}, {"id": 1839, "name": "SwampRuin1", "category": "structure", "x": -4364.9, "z": 498.0, "px": 1303.1, "py": 2133.0, "has_dungeon": false, "has_important": true}, {"id": 1840, "name": "SwampRuin1", "category": "structure", "x": -1966.2, "z": 4613.2, "px": 1712.4, "py": 2835.3, "has_dungeon": false, "has_important": true}, {"id": 1841, "name": "SwampRuin1", "category": "structure", "x": -3197.4, "z": 322.8, "px": 1502.3, "py": 2103.1, "has_dungeon": false, "has_important": true}, {"id": 1842, "name": "SwampRuin1", "category": "structure", "x": 70.8, "z": 2575.0, "px": 2060.1, "py": 2487.5, "has_dungeon": false, "has_important": true}, {"id": 1843, "name": "SwampRuin1", "category": "structure", "x": 3327.9, "z": -4268.4, "px": 2616.0, "py": 1319.5, "has_dungeon": false, "has_important": true}, {"id": 1844, "name": "SwampRuin1", "category": "structure", "x": -5426.7, "z": 1840.8, "px": 1121.8, "py": 2362.2, "has_dungeon": false, "has_important": true}, {"id": 1845, "name": "SwampRuin1", "category": "structure", "x": 1548.7, "z": 2051.7, "px": 2312.3, "py": 2398.2, "has_dungeon": false, "has_important": true}, {"id": 1846, "name": "SwampRuin1", "category": "structure", "x": 3839.3, "z": 4473.5, "px": 2703.2, "py": 2811.5, "has_dungeon": false, "has_important": true}, {"id": 1847, "name": "SwampRuin1", "category": "structure", "x": -5101.0, "z": 1424.7, "px": 1177.4, "py": 2291.1, "has_dungeon": false, "has_important": true}, {"id": 1848, "name": "SwampRuin1", "category": "structure", "x": 958.0, "z": 4297.7, "px": 2211.5, "py": 2781.5, "has_dungeon": false, "has_important": true}, {"id": 1849, "name": "SwampRuin1", "category": "structure", "x": -2357.8, "z": 4942.8, "px": 1645.6, "py": 2891.6, "has_dungeon": false, "has_important": true}, {"id": 1850, "name": "SwampRuin1", "category": "structure", "x": 4730.2, "z": -559.6, "px": 2855.3, "py": 1952.5, "has_dungeon": false, "has_important": true}, {"id": 1851, "name": "SwampRuin1", "category": "structure", "x": -2496.2, "z": -966.6, "px": 1622.0, "py": 1883.0, "has_dungeon": false, "has_important": true}, {"id": 1852, "name": "SwampRuin1", "category": "structure", "x": 1013.4, "z": -3722.0, "px": 2221.0, "py": 1412.8, "has_dungeon": false, "has_important": true}, {"id": 1853, "name": "SwampRuin1", "category": "structure", "x": -4414.0, "z": 1337.4, "px": 1294.7, "py": 2276.2, "has_dungeon": false, "has_important": true}, {"id": 1854, "name": "SwampRuin1", "category": "structure", "x": 4484.4, "z": -3085.6, "px": 2813.3, "py": 1521.4, "has_dungeon": false, "has_important": true}, {"id": 1855, "name": "SwampRuin1", "category": "structure", "x": 1649.7, "z": 4423.6, "px": 2329.5, "py": 2803.0, "has_dungeon": false, "has_important": true}, {"id": 1856, "name": "SwampRuin1", "category": "structure", "x": 2171.5, "z": 389.7, "px": 2418.6, "py": 2114.5, "has_dungeon": false, "has_important": true}, {"id": 1857, "name": "SwampRuin1", "category": "structure", "x": 3791.6, "z": 626.3, "px": 2695.1, "py": 2154.9, "has_dungeon": false, "has_important": true}, {"id": 1858, "name": "SwampRuin1", "category": "structure", "x": 4160.6, "z": 455.9, "px": 2758.1, "py": 2125.8, "has_dungeon": false, "has_important": true}, {"id": 1859, "name": "SwampRuin1", "category": "structure", "x": -3721.2, "z": 179.2, "px": 1412.9, "py": 2078.6, "has_dungeon": false, "has_important": true}, {"id": 1860, "name": "SwampRuin1", "category": "structure", "x": -1153.0, "z": -3506.9, "px": 1851.2, "py": 1449.5, "has_dungeon": false, "has_important": true}, {"id": 1861, "name": "SwampRuin1", "category": "structure", "x": 2616.1, "z": 3445.4, "px": 2494.5, "py": 2636.0, "has_dungeon": false, "has_important": true}, {"id": 1862, "name": "SwampRuin1", "category": "structure", "x": 2416.2, "z": 144.5, "px": 2460.4, "py": 2072.7, "has_dungeon": false, "has_important": true}, {"id": 1863, "name": "SwampRuin2", "category": "structure", "x": -5129.9, "z": -705.2, "px": 1172.5, "py": 1927.6, "has_dungeon": false, "has_important": true}, {"id": 1864, "name": "SwampRuin2", "category": "structure", "x": -3702.0, "z": -4177.2, "px": 1416.2, "py": 1335.1, "has_dungeon": false, "has_important": true}, {"id": 1865, "name": "SwampRuin2", "category": "structure", "x": -4309.1, "z": 3707.6, "px": 1312.6, "py": 2680.8, "has_dungeon": false, "has_important": true}, {"id": 1866, "name": "SwampRuin2", "category": "structure", "x": -619.2, "z": -3973.9, "px": 1942.3, "py": 1369.8, "has_dungeon": false, "has_important": true}, {"id": 1867, "name": "SwampRuin2", "category": "structure", "x": -2643.4, "z": -5036.9, "px": 1596.9, "py": 1188.4, "has_dungeon": false, "has_important": true}, {"id": 1868, "name": "SwampRuin2", "category": "structure", "x": -2258.7, "z": -4229.6, "px": 1662.5, "py": 1326.1, "has_dungeon": false, "has_important": true}, {"id": 1869, "name": "SwampRuin2", "category": "structure", "x": 2226.7, "z": 4307.4, "px": 2428.0, "py": 2783.1, "has_dungeon": false, "has_important": true}, {"id": 1870, "name": "SwampRuin2", "category": "structure", "x": 2362.8, "z": -1100.9, "px": 2451.3, "py": 1860.1, "has_dungeon": false, "has_important": true}, {"id": 1871, "name": "SwampRuin2", "category": "structure", "x": -1410.3, "z": 3499.3, "px": 1807.3, "py": 2645.2, "has_dungeon": false, "has_important": true}, {"id": 1872, "name": "SwampRuin2", "category": "structure", "x": -2639.1, "z": -1607.5, "px": 1597.6, "py": 1773.7, "has_dungeon": false, "has_important": true}, {"id": 1873, "name": "SwampRuin2", "category": "structure", "x": -3599.9, "z": 3146.8, "px": 1433.6, "py": 2585.1, "has_dungeon": false, "has_important": true}, {"id": 1874, "name": "SwampRuin2", "category": "structure", "x": 4866.8, "z": -783.7, "px": 2878.6, "py": 1914.2, "has_dungeon": false, "has_important": true}, {"id": 1875, "name": "SwampRuin2", "category": "structure", "x": 2574.7, "z": -109.9, "px": 2487.4, "py": 2029.2, "has_dungeon": false, "has_important": true}, {"id": 904, "name": "Hildir_camp", "category": "vendor", "x": -4991.7, "z": 504.3, "px": 1196.1, "py": 2134.1, "has_dungeon": false, "has_important": true}, {"id": 905, "name": "Hildir_camp", "category": "vendor", "x": 4157.1, "z": -1408.8, "px": 2757.5, "py": 1807.6, "has_dungeon": false, "has_important": true}, {"id": 906, "name": "Hildir_camp", "category": "vendor", "x": -2752.0, "z": 1539.5, "px": 1578.3, "py": 2310.7, "has_dungeon": false, "has_important": true}, {"id": 907, "name": "Hildir_camp", "category": "vendor", "x": -3199.9, "z": 3070.1, "px": 1501.9, "py": 2572.0, "has_dungeon": false, "has_important": true}, {"id": 908, "name": "Hildir_camp", "category": "vendor", "x": -3581.2, "z": -2497.0, "px": 1436.8, "py": 1621.8, "has_dungeon": false, "has_important": true}, {"id": 909, "name": "Hildir_camp", "category": "vendor", "x": 3073.4, "z": 2749.9, "px": 2572.5, "py": 2517.3, "has_dungeon": false, "has_important": true}, {"id": 910, "name": "Hildir_camp", "category": "vendor", "x": -251.6, "z": -3909.2, "px": 2005.1, "py": 1380.8, "has_dungeon": false, "has_important": true}, {"id": 911, "name": "Hildir_camp", "category": "vendor", "x": 197.7, "z": 3902.7, "px": 2081.7, "py": 2714.1, "has_dungeon": false, "has_important": true}, {"id": 912, "name": "Hildir_camp", "category": "vendor", "x": 3074.7, "z": -2561.2, "px": 2572.7, "py": 1610.9, "has_dungeon": false, "has_important": true}, {"id": 913, "name": "Hildir_camp", "category": "vendor", "x": -4472.6, "z": 1784.2, "px": 1284.7, "py": 2352.5, "has_dungeon": false, "has_important": true}, {"id": 917, "name": "Hildir_plainsfortress", "category": "vendor", "x": 4800.0, "z": -1216.0, "px": 2867.2, "py": 1840.5, "has_dungeon": true, "has_important": true}, {"id": 918, "name": "Hildir_plainsfortress", "category": "vendor", "x": 1728.0, "z": 3200.0, "px": 2342.9, "py": 2594.1, "has_dungeon": true, "has_important": true}, {"id": 919, "name": "Hildir_plainsfortress", "category": "vendor", "x": -3264.0, "z": 1344.0, "px": 1490.9, "py": 2277.4, "has_dungeon": true, "has_important": true}, {"id": 193, "name": "Vendor_BlackForest", "category": "vendor", "x": -9090.1, "z": 2817.7, "px": 496.6, "py": 2528.9, "has_dungeon": false, "has_important": false}, {"id": 194, "name": "Vendor_BlackForest", "category": "vendor", "x": -3340.0, "z": 4231.8, "px": 1478.0, "py": 2770.2, "has_dungeon": false, "has_important": false}, {"id": 195, "name": "Vendor_BlackForest", "category": "vendor", "x": -7362.9, "z": -4748.4, "px": 791.4, "py": 1237.6, "has_dungeon": false, "has_important": false}, {"id": 196, "name": "Vendor_BlackForest", "category": "vendor", "x": 4303.0, "z": 6844.5, "px": 2782.4, "py": 3216.1, "has_dungeon": false, "has_important": false}, {"id": 197, "name": "Vendor_BlackForest", "category": "vendor", "x": -3839.2, "z": -205.3, "px": 1392.8, "py": 2013.0, "has_dungeon": false, "has_important": false}, {"id": 198, "name": "Vendor_BlackForest", "category": "vendor", "x": 3467.5, "z": -2503.2, "px": 2639.8, "py": 1620.8, "has_dungeon": false, "has_important": false}, {"id": 199, "name": "Vendor_BlackForest", "category": "vendor", "x": 4216.0, "z": -304.1, "px": 2767.5, "py": 1996.1, "has_dungeon": false, "has_important": false}, {"id": 200, "name": "Vendor_BlackForest", "category": "vendor", "x": -8381.3, "z": -1840.1, "px": 617.6, "py": 1734.0, "has_dungeon": false, "has_important": false}, {"id": 201, "name": "Vendor_BlackForest", "category": "vendor", "x": 7883.4, "z": -2862.8, "px": 3393.4, "py": 1559.4, "has_dungeon": false, "has_important": false}, {"id": 202, "name": "Vendor_BlackForest", "category": "vendor", "x": 60.3, "z": -4718.0, "px": 2058.3, "py": 1242.8, "has_dungeon": false, "has_important": false}];
|
|
const CONTENTS = [{"loc_id": 3190, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 60, "x": -1854.6, "z": 3328.0, "px": 1731.5, "py": 2616.0}, {"loc_id": 3194, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 60, "x": -3327.1, "z": -1663.5, "px": 1480.2, "py": 1764.1}, {"loc_id": 3076, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 55, "x": 6849.0, "z": -2369.3, "px": 3216.9, "py": 1643.6}, {"loc_id": 10023, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 51, "x": -2560.0, "z": -8768.0, "px": 1611.1, "py": 551.6}, {"loc_id": 176, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 49, "x": -1990.7, "z": 4469.7, "px": 1708.3, "py": 2810.8}, {"loc_id": 10077, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 49, "x": 5760.0, "z": -8064.0, "px": 3031.0, "py": 671.7}, {"loc_id": 88, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 48, "x": 2353.7, "z": 270.7, "px": 2449.7, "py": 2094.2}, {"loc_id": 3124, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 48, "x": -3134.6, "z": -2367.8, "px": 1513.0, "py": 1643.9}, {"loc_id": 3163, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 48, "x": 4927.2, "z": 3326.8, "px": 2888.9, "py": 2615.8}, {"loc_id": 3227, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 48, "x": 769.6, "z": 4094.1, "px": 2179.3, "py": 2746.7}, {"loc_id": 10092, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 48, "x": 2112.0, "z": -9536.0, "px": 2408.4, "py": 420.5}, {"loc_id": 128, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 47, "x": -963.5, "z": -3775.8, "px": 1883.6, "py": 1403.6}, {"loc_id": 7552, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 47, "x": -128.0, "z": -4096.0, "px": 2026.2, "py": 1348.9}, {"loc_id": 10029, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 47, "x": 2688.0, "z": -8960.0, "px": 2506.8, "py": 518.8}, {"loc_id": 10044, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 47, "x": -2496.0, "z": -8384.0, "px": 1622.0, "py": 617.1}, {"loc_id": 110, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 46, "x": 1466.6, "z": 2232.4, "px": 2298.3, "py": 2429.0}, {"loc_id": 662, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 46, "x": 1856.0, "z": -7104.0, "px": 2364.8, "py": 835.6}, {"loc_id": 10021, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 46, "x": 1856.0, "z": -8320.0, "px": 2364.8, "py": 628.1}, {"loc_id": 10036, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 46, "x": 3392.0, "z": -9216.0, "px": 2626.9, "py": 475.1}, {"loc_id": 10067, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 46, "x": 192.0, "z": -9024.0, "px": 2080.8, "py": 507.9}, {"loc_id": 10078, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 46, "x": 3072.0, "z": -9408.0, "px": 2572.3, "py": 442.4}, {"loc_id": 48, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 45, "x": -5066.2, "z": 1345.8, "px": 1183.4, "py": 2277.7}, {"loc_id": 116, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 45, "x": 2291.5, "z": 250.0, "px": 2439.1, "py": 2090.7}, {"loc_id": 3087, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 44, "x": 1024.6, "z": 4097.5, "px": 2222.9, "py": 2747.3}, {"loc_id": 3104, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 44, "x": -4094.7, "z": -4352.5, "px": 1349.2, "py": 1305.2}, {"loc_id": 3125, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 44, "x": -1470.8, "z": -4353.3, "px": 1797.0, "py": 1305.0}, {"loc_id": 3186, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 44, "x": 4673.3, "z": -1086.3, "px": 2845.6, "py": 1862.6}, {"loc_id": 3234, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 44, "x": 4031.6, "z": 5118.5, "px": 2736.1, "py": 2921.6}, {"loc_id": 10050, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 44, "x": 1280.0, "z": -8896.0, "px": 2266.5, "py": 529.7}, {"loc_id": 10072, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 44, "x": 896.0, "z": -8576.0, "px": 2200.9, "py": 584.4}, {"loc_id": 31, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 43, "x": 3723.6, "z": 816.0, "px": 2683.5, "py": 2187.3}, {"loc_id": 2172, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 43, "x": 7926.2, "z": -3080.1, "px": 3400.7, "py": 1522.3}, {"loc_id": 7547, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 43, "x": 5760.0, "z": 4480.0, "px": 3031.0, "py": 2812.6}, {"loc_id": 10019, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 43, "x": 3328.0, "z": -8448.0, "px": 2616.0, "py": 606.2}, {"loc_id": 10049, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 43, "x": -832.0, "z": -9728.0, "px": 1906.0, "py": 387.8}, {"loc_id": 10062, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 43, "x": -3520.0, "z": -8512.0, "px": 1447.3, "py": 595.3}, {"loc_id": 30, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 42, "x": -525.6, "z": -3575.0, "px": 1958.3, "py": 1437.9}, {"loc_id": 64, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 42, "x": -4300.6, "z": 656.9, "px": 1314.0, "py": 2160.1}, {"loc_id": 75, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 42, "x": -5701.0, "z": -1147.1, "px": 1075.0, "py": 1852.2}, {"loc_id": 77, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 42, "x": 2296.4, "z": -3207.7, "px": 2439.9, "py": 1500.6}, {"loc_id": 10030, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 42, "x": 1728.0, "z": -9536.0, "px": 2342.9, "py": 420.5}, {"loc_id": 10052, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 42, "x": 3840.0, "z": -8768.0, "px": 2703.4, "py": 551.6}, {"loc_id": 10084, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 42, "x": 1408.0, "z": -9600.0, "px": 2288.3, "py": 409.6}, {"loc_id": 85, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 41, "x": -1139.7, "z": -5705.5, "px": 1853.5, "py": 1074.3}, {"loc_id": 129, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 41, "x": -3081.8, "z": 578.8, "px": 1522.0, "py": 2146.8}, {"loc_id": 132, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 41, "x": -2767.1, "z": -1805.5, "px": 1575.7, "py": 1739.9}, {"loc_id": 140, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 41, "x": 383.1, "z": 2565.9, "px": 2113.4, "py": 2485.9}, {"loc_id": 722, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 41, "x": -4480.0, "z": -4352.0, "px": 1283.4, "py": 1305.3}, {"loc_id": 10042, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 41, "x": -5312.0, "z": -7680.0, "px": 1141.4, "py": 737.3}, {"loc_id": 4235, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 40, "x": 4286.9, "z": -838.4, "px": 2779.6, "py": 1904.9}, {"loc_id": 7472, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 40, "x": 4608.0, "z": -5440.0, "px": 2834.4, "py": 1119.6}, {"loc_id": 7505, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 40, "x": 5952.0, "z": 4672.0, "px": 3063.8, "py": 2845.4}, {"loc_id": 10024, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 40, "x": 128.0, "z": -9792.0, "px": 2069.8, "py": 376.8}, {"loc_id": 115, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 39, "x": -61.9, "z": 2612.1, "px": 2037.4, "py": 2493.8}, {"loc_id": 885, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 39, "x": -5184.0, "z": -3840.0, "px": 1163.3, "py": 1392.6}, {"loc_id": 4435, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 39, "x": 4406.6, "z": 6657.9, "px": 2800.1, "py": 3184.3}, {"loc_id": 7552, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 39, "x": -128.0, "z": -4096.0, "px": 2026.2, "py": 1348.9}, {"loc_id": 10020, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 39, "x": -512.0, "z": -8896.0, "px": 1960.6, "py": 529.7}, {"loc_id": 10022, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 39, "x": 2752.0, "z": -9536.0, "px": 2517.7, "py": 420.5}, {"loc_id": 10043, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 39, "x": -3264.0, "z": -9280.0, "px": 1490.9, "py": 464.2}, {"loc_id": 10065, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 39, "x": -2816.0, "z": -8512.0, "px": 1567.4, "py": 595.3}, {"loc_id": 10090, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 39, "x": 3584.0, "z": -8448.0, "px": 2659.7, "py": 606.2}, {"loc_id": 123, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 38, "x": 2317.7, "z": 334.7, "px": 2443.6, "py": 2105.1}, {"loc_id": 186, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 38, "x": -5617.1, "z": -1099.6, "px": 1089.3, "py": 1860.3}, {"loc_id": 711, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 38, "x": -5184.0, "z": 6208.0, "px": 1163.3, "py": 3107.5}, {"loc_id": 883, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 38, "x": 576.0, "z": 6784.0, "px": 2146.3, "py": 3205.8}, {"loc_id": 2091, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 38, "x": -7615.2, "z": -4745.0, "px": 748.3, "py": 1238.2}, {"loc_id": 4121, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 38, "x": 3272.7, "z": -4548.3, "px": 2606.5, "py": 1271.8}, {"loc_id": 7492, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 38, "x": -8512.0, "z": -192.0, "px": 595.3, "py": 2015.2}, {"loc_id": 10088, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 38, "x": -4544.0, "z": -8192.0, "px": 1272.5, "py": 649.9}, {"loc_id": 105, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 37, "x": 197.3, "z": 2575.2, "px": 2081.7, "py": 2487.5}, {"loc_id": 113, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 37, "x": 1402.0, "z": 2222.3, "px": 2287.3, "py": 2427.3}, {"loc_id": 676, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 37, "x": -7552.0, "z": -2624.0, "px": 759.1, "py": 1600.2}, {"loc_id": 872, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 37, "x": -9152.0, "z": -2240.0, "px": 486.1, "py": 1665.7}, {"loc_id": 4124, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 37, "x": 1994.9, "z": 1141.6, "px": 2388.5, "py": 2242.8}, {"loc_id": 4345, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 37, "x": 2618.7, "z": -3525.7, "px": 2494.9, "py": 1446.3}, {"loc_id": 4483, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 37, "x": -4800.9, "z": 5752.8, "px": 1228.6, "py": 3029.8}, {"loc_id": 7558, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 37, "x": -4416.0, "z": -3840.0, "px": 1294.3, "py": 1392.6}, {"loc_id": 10080, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 37, "x": 128.0, "z": -8704.0, "px": 2069.8, "py": 562.5}, {"loc_id": 10083, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 37, "x": -4032.0, "z": -8192.0, "px": 1359.9, "py": 649.9}, {"loc_id": 59, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 36, "x": -3448.5, "z": 3407.3, "px": 1459.5, "py": 2629.5}, {"loc_id": 78, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 36, "x": 4463.0, "z": -3019.3, "px": 2809.7, "py": 1532.7}, {"loc_id": 168, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 36, "x": -889.7, "z": -3644.9, "px": 1896.2, "py": 1425.9}, {"loc_id": 726, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 36, "x": 832.0, "z": -7040.0, "px": 2190.0, "py": 846.5}, {"loc_id": 2099, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 36, "x": -7287.1, "z": 2560.3, "px": 804.3, "py": 2485.0}, {"loc_id": 3064, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 36, "x": -5950.0, "z": -4991.2, "px": 1032.5, "py": 1196.2}, {"loc_id": 3072, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 36, "x": -4353.3, "z": -2241.8, "px": 1305.0, "py": 1665.4}, {"loc_id": 3084, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 36, "x": -3071.2, "z": 1215.7, "px": 1523.8, "py": 2255.5}, {"loc_id": 3090, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 36, "x": 1022.6, "z": 5824.3, "px": 2222.5, "py": 3042.0}, {"loc_id": 3114, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 36, "x": -4097.1, "z": -2687.0, "px": 1348.8, "py": 1589.4}, {"loc_id": 3120, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 36, "x": 960.4, "z": -3967.4, "px": 2211.9, "py": 1370.9}, {"loc_id": 3121, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 36, "x": -2816.6, "z": -7168.1, "px": 1567.3, "py": 824.6}, {"loc_id": 3127, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 36, "x": 5759.4, "z": -4737.0, "px": 3030.9, "py": 1239.6}, {"loc_id": 3132, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 36, "x": 2369.7, "z": -2238.3, "px": 2452.4, "py": 1666.0}, {"loc_id": 3150, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 36, "x": 4160.5, "z": 1473.5, "px": 2758.1, "py": 2299.5}, {"loc_id": 3179, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 36, "x": -385.1, "z": -3713.6, "px": 1982.3, "py": 1414.2}, {"loc_id": 3181, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 36, "x": 2110.8, "z": 6080.7, "px": 2408.2, "py": 3085.8}, {"loc_id": 4125, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 36, "x": -7167.7, "z": 2685.6, "px": 824.7, "py": 2506.3}, {"loc_id": 4175, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 36, "x": -1674.2, "z": 4799.8, "px": 1762.3, "py": 2867.2}, {"loc_id": 4222, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 36, "x": 833.8, "z": -2569.4, "px": 2190.3, "py": 1609.5}, {"loc_id": 7505, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 36, "x": 5952.0, "z": 4672.0, "px": 3063.8, "py": 2845.4}, {"loc_id": 7526, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 36, "x": 2560.0, "z": 8960.0, "px": 2484.9, "py": 3577.2}, {"loc_id": 7547, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 36, "x": 5760.0, "z": 4480.0, "px": 3031.0, "py": 2812.6}, {"loc_id": 10025, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 36, "x": -1728.0, "z": -8832.0, "px": 1753.1, "py": 540.7}, {"loc_id": 10027, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 36, "x": 2112.0, "z": -9280.0, "px": 2408.4, "py": 464.2}, {"loc_id": 10037, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 36, "x": -5056.0, "z": -7552.0, "px": 1185.1, "py": 759.1}, {"loc_id": 10038, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 36, "x": 4288.0, "z": -8704.0, "px": 2779.8, "py": 562.5}, {"loc_id": 10056, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 36, "x": 2304.0, "z": -8512.0, "px": 2441.2, "py": 595.3}, {"loc_id": 10082, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 36, "x": -5696.0, "z": -7424.0, "px": 1075.9, "py": 781.0}, {"loc_id": 80, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 35, "x": 2377.0, "z": -1156.8, "px": 2453.7, "py": 1850.6}, {"loc_id": 127, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 35, "x": 3631.1, "z": 716.1, "px": 2667.7, "py": 2170.2}, {"loc_id": 130, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 35, "x": 4748.1, "z": -509.7, "px": 2858.3, "py": 1961.0}, {"loc_id": 182, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 35, "x": -2513.9, "z": -4161.4, "px": 1619.0, "py": 1337.8}, {"loc_id": 675, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 35, "x": -6912.0, "z": 1088.0, "px": 868.4, "py": 2233.7}, {"loc_id": 703, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 35, "x": -384.0, "z": -6656.0, "px": 1982.5, "py": 912.0}, {"loc_id": 4301, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 35, "x": 2058.1, "z": -834.7, "px": 2399.2, "py": 1905.5}, {"loc_id": 7473, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 35, "x": 0.0, "z": -1152.0, "px": 2048.0, "py": 1851.4}, {"loc_id": 7486, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 35, "x": 1728.0, "z": 6656.0, "px": 2342.9, "py": 3184.0}, {"loc_id": 7492, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 35, "x": -8512.0, "z": -192.0, "px": 595.3, "py": 2015.2}, {"loc_id": 7551, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 35, "x": -1920.0, "z": -576.0, "px": 1720.3, "py": 1949.7}, {"loc_id": 10085, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 35, "x": -960.0, "z": -8960.0, "px": 1884.2, "py": 518.8}, {"loc_id": 10089, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 35, "x": 384.0, "z": -9664.0, "px": 2113.5, "py": 398.7}, {"loc_id": 10091, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 35, "x": 2880.0, "z": -8576.0, "px": 2539.5, "py": 584.4}, {"loc_id": 10705, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 35, "x": -1919.0, "z": -8762.0, "px": 1720.5, "py": 552.6}, {"loc_id": 32, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 34, "x": 3386.5, "z": -4286.1, "px": 2626.0, "py": 1316.5}, {"loc_id": 43, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 34, "x": -4994.4, "z": 1343.0, "px": 1195.6, "py": 2277.2}, {"loc_id": 103, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 34, "x": -5489.1, "z": 1993.6, "px": 1111.2, "py": 2388.2}, {"loc_id": 170, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 34, "x": -4366.3, "z": 396.5, "px": 1302.8, "py": 2115.7}, {"loc_id": 1990, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 34, "x": -9021.5, "z": 3142.1, "px": 508.3, "py": 2584.3}, {"loc_id": 4202, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 34, "x": -8186.5, "z": 2743.4, "px": 650.8, "py": 2516.2}, {"loc_id": 7524, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 34, "x": 4288.0, "z": -1856.0, "px": 2779.8, "py": 1731.2}, {"loc_id": 10034, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 34, "x": 6080.0, "z": -7680.0, "px": 3085.7, "py": 737.3}, {"loc_id": 10046, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 34, "x": 3008.0, "z": -9024.0, "px": 2561.4, "py": 507.9}, {"loc_id": 10059, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 34, "x": 2496.0, "z": -9216.0, "px": 2474.0, "py": 475.1}, {"loc_id": 10070, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 34, "x": -1792.0, "z": -9216.0, "px": 1742.2, "py": 475.1}, {"loc_id": 21, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 33, "x": -4146.8, "z": 3646.5, "px": 1340.3, "py": 2670.3}, {"loc_id": 173, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 33, "x": 4731.5, "z": -783.9, "px": 2855.5, "py": 1914.2}, {"loc_id": 188, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 33, "x": 4725.5, "z": -880.8, "px": 2854.5, "py": 1897.7}, {"loc_id": 191, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 33, "x": -701.9, "z": -3592.2, "px": 1928.2, "py": 1434.9}, {"loc_id": 740, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 33, "x": -5760.0, "z": -1984.0, "px": 1065.0, "py": 1709.4}, {"loc_id": 2029, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 33, "x": 1796.7, "z": 7414.9, "px": 2354.6, "py": 3313.5}, {"loc_id": 3042, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 33, "x": 5184.1, "z": -2368.4, "px": 2932.8, "py": 1643.8}, {"loc_id": 3079, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 33, "x": 4415.1, "z": -1345.8, "px": 2801.5, "py": 1818.3}, {"loc_id": 3100, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 33, "x": -704.8, "z": -6207.4, "px": 1927.7, "py": 988.6}, {"loc_id": 3115, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 33, "x": -5121.5, "z": -2880.5, "px": 1173.9, "py": 1556.4}, {"loc_id": 3147, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 33, "x": -7422.2, "z": -2176.9, "px": 781.3, "py": 1676.5}, {"loc_id": 3150, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 33, "x": 4160.5, "z": 1473.5, "px": 2758.1, "py": 2299.5}, {"loc_id": 3172, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 33, "x": 4609.7, "z": 1406.2, "px": 2834.7, "py": 2288.0}, {"loc_id": 3184, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 33, "x": -961.6, "z": 5057.4, "px": 1883.9, "py": 2911.1}, {"loc_id": 3187, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 33, "x": -2942.1, "z": -2560.2, "px": 1545.9, "py": 1611.1}, {"loc_id": 3189, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 33, "x": 2622.6, "z": -7361.3, "px": 2495.6, "py": 791.7}, {"loc_id": 3194, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 33, "x": -3327.1, "z": -1663.5, "px": 1480.2, "py": 1764.1}, {"loc_id": 3200, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 33, "x": 513.9, "z": -7296.5, "px": 2135.7, "py": 802.7}, {"loc_id": 3205, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 33, "x": -2495.7, "z": -3007.5, "px": 1622.1, "py": 1534.7}, {"loc_id": 4298, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 33, "x": 6791.1, "z": 4738.8, "px": 3207.0, "py": 2856.8}, {"loc_id": 7514, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 33, "x": -3584.0, "z": 6080.0, "px": 1436.3, "py": 3085.7}, {"loc_id": 7541, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 33, "x": -320.0, "z": -1280.0, "px": 1993.4, "py": 1829.5}, {"loc_id": 7565, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 33, "x": -256.0, "z": 9152.0, "px": 2004.3, "py": 3609.9}, {"loc_id": 10033, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 33, "x": -6272.0, "z": -7488.0, "px": 977.6, "py": 770.0}, {"loc_id": 10039, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 33, "x": 5440.0, "z": -7744.0, "px": 2976.4, "py": 726.4}, {"loc_id": 10060, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 33, "x": 4224.0, "z": -8960.0, "px": 2768.9, "py": 518.8}, {"loc_id": 10079, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 33, "x": 2240.0, "z": -8256.0, "px": 2430.3, "py": 639.0}, {"loc_id": 10690, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 33, "x": -2625.7, "z": -8453.7, "px": 1599.9, "py": 605.2}, {"loc_id": 126, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 32, "x": 2176.0, "z": 447.6, "px": 2419.4, "py": 2124.4}, {"loc_id": 159, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 32, "x": -4406.6, "z": 1211.3, "px": 1295.9, "py": 2254.7}, {"loc_id": 166, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 32, "x": -2244.3, "z": 4276.9, "px": 1665.0, "py": 2777.9}, {"loc_id": 177, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 32, "x": -3456.5, "z": 3310.3, "px": 1458.1, "py": 2613.0}, {"loc_id": 739, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 32, "x": -6912.0, "z": 704.0, "px": 868.4, "py": 2168.1}, {"loc_id": 810, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 32, "x": 768.0, "z": 6528.0, "px": 2179.1, "py": 3162.1}, {"loc_id": 2012, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 32, "x": 2615.5, "z": 5691.7, "px": 2494.4, "py": 3019.4}, {"loc_id": 2019, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 32, "x": 1852.0, "z": 7225.8, "px": 2364.1, "py": 3281.2}, {"loc_id": 2052, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 32, "x": -5125.7, "z": 183.2, "px": 1173.2, "py": 2079.3}, {"loc_id": 2119, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 32, "x": 5123.6, "z": 5438.1, "px": 2922.4, "py": 2976.1}, {"loc_id": 4188, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 32, "x": 3456.5, "z": -2434.8, "px": 2637.9, "py": 1632.5}, {"loc_id": 4253, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 32, "x": -7557.9, "z": -1993.0, "px": 758.1, "py": 1707.9}, {"loc_id": 4279, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 32, "x": 3849.9, "z": 3584.6, "px": 2705.0, "py": 2659.8}, {"loc_id": 4348, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 32, "x": 7751.4, "z": -2879.9, "px": 3370.9, "py": 1556.5}, {"loc_id": 4434, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 32, "x": -9078.9, "z": 3462.7, "px": 498.5, "py": 2639.0}, {"loc_id": 7468, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 32, "x": 1472.0, "z": 6848.0, "px": 2299.2, "py": 3216.7}, {"loc_id": 7497, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 32, "x": 1984.0, "z": -6784.0, "px": 2386.6, "py": 890.2}, {"loc_id": 7545, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 32, "x": -192.0, "z": -1536.0, "px": 2015.2, "py": 1785.9}, {"loc_id": 7548, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 32, "x": -960.0, "z": 8704.0, "px": 1884.2, "py": 3533.5}, {"loc_id": 7557, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 32, "x": 3264.0, "z": 256.0, "px": 2605.1, "py": 2091.7}, {"loc_id": 10051, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 32, "x": -3200.0, "z": -8704.0, "px": 1501.9, "py": 562.5}, {"loc_id": 10066, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 32, "x": 1728.0, "z": -9088.0, "px": 2342.9, "py": 497.0}, {"loc_id": 10069, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 32, "x": 640.0, "z": -9664.0, "px": 2157.2, "py": 398.7}, {"loc_id": 33, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 31, "x": 1739.5, "z": 4407.1, "px": 2344.9, "py": 2800.1}, {"loc_id": 44, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 31, "x": -187.0, "z": 2492.5, "px": 2016.1, "py": 2473.4}, {"loc_id": 50, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 31, "x": -773.5, "z": -3723.6, "px": 1916.0, "py": 1412.5}, {"loc_id": 55, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 31, "x": -5323.0, "z": -1724.1, "px": 1139.5, "py": 1753.8}, {"loc_id": 62, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 31, "x": -2356.3, "z": -1007.5, "px": 1645.9, "py": 1876.1}, {"loc_id": 81, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 31, "x": -888.8, "z": -3716.9, "px": 1896.3, "py": 1413.6}, {"loc_id": 90, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 31, "x": -582.8, "z": -3968.2, "px": 1948.5, "py": 1370.8}, {"loc_id": 99, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 31, "x": -1920.0, "z": 4600.7, "px": 1720.3, "py": 2833.2}, {"loc_id": 133, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 31, "x": -2637.3, "z": -5254.9, "px": 1597.9, "py": 1151.2}, {"loc_id": 144, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 31, "x": 1488.4, "z": 1973.9, "px": 2302.0, "py": 2384.9}, {"loc_id": 192, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 31, "x": -5170.2, "z": -656.1, "px": 1165.6, "py": 1936.0}, {"loc_id": 843, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 31, "x": 9664.0, "z": -768.0, "px": 3697.3, "py": 1916.9}, {"loc_id": 2004, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 31, "x": 5893.1, "z": -707.2, "px": 3053.8, "py": 1927.3}, {"loc_id": 2079, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 31, "x": -5431.8, "z": -6277.2, "px": 1121.0, "py": 976.7}, {"loc_id": 2083, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 31, "x": -4296.8, "z": -6398.2, "px": 1314.7, "py": 956.0}, {"loc_id": 2125, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 31, "x": 2423.3, "z": 3647.1, "px": 2461.6, "py": 2670.4}, {"loc_id": 3037, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 31, "x": -2559.0, "z": 6079.3, "px": 1611.3, "py": 3085.5}, {"loc_id": 3140, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 31, "x": -2879.7, "z": 831.4, "px": 1556.5, "py": 2189.9}, {"loc_id": 3196, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 31, "x": -961.5, "z": -5887.6, "px": 1883.9, "py": 1043.2}, {"loc_id": 4220, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 31, "x": 8705.3, "z": -3714.4, "px": 3533.7, "py": 1414.1}, {"loc_id": 4264, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 31, "x": 8056.3, "z": -2882.2, "px": 3422.9, "py": 1556.1}, {"loc_id": 4301, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 31, "x": 2058.1, "z": -834.7, "px": 2399.2, "py": 1905.5}, {"loc_id": 4350, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 31, "x": -5947.4, "z": 1598.8, "px": 1033.0, "py": 2320.9}, {"loc_id": 4402, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 31, "x": 1781.0, "z": 7356.1, "px": 2352.0, "py": 3303.4}, {"loc_id": 4419, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 31, "x": 4991.3, "z": -2122.8, "px": 2899.8, "py": 1685.7}, {"loc_id": 4440, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 31, "x": 4425.2, "z": 6792.0, "px": 2803.2, "py": 3207.2}, {"loc_id": 4447, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 31, "x": 6773.8, "z": 4795.9, "px": 3204.1, "py": 2866.5}, {"loc_id": 7451, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 31, "x": 8384.0, "z": -3904.0, "px": 3478.9, "py": 1381.7}, {"loc_id": 7467, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 31, "x": 2688.0, "z": -2688.0, "px": 2506.8, "py": 1589.2}, {"loc_id": 7489, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 31, "x": 7040.0, "z": -512.0, "px": 3249.5, "py": 1960.6}, {"loc_id": 7529, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 31, "x": 2496.0, "z": -3008.0, "px": 2474.0, "py": 1534.6}, {"loc_id": 7557, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 31, "x": 3264.0, "z": 256.0, "px": 2605.1, "py": 2091.7}, {"loc_id": 10048, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 31, "x": -5632.0, "z": -7680.0, "px": 1086.8, "py": 737.3}, {"loc_id": 10081, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 31, "x": -1280.0, "z": -9792.0, "px": 1829.5, "py": 376.8}, {"loc_id": 84, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 30, "x": 1293.6, "z": 2251.1, "px": 2268.8, "py": 2432.2}, {"loc_id": 104, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 30, "x": 1020.1, "z": 4295.3, "px": 2222.1, "py": 2781.1}, {"loc_id": 659, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 30, "x": 3840.0, "z": -5952.0, "px": 2703.4, "py": 1032.2}, {"loc_id": 691, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 30, "x": 8960.0, "z": -1024.0, "px": 3577.2, "py": 1873.2}, {"loc_id": 831, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 30, "x": 8640.0, "z": -3328.0, "px": 3522.6, "py": 1480.0}, {"loc_id": 852, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 30, "x": 8512.0, "z": -2688.0, "px": 3500.7, "py": 1589.2}, {"loc_id": 857, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 30, "x": 2368.0, "z": 7296.0, "px": 2452.1, "py": 3293.2}, {"loc_id": 901, "loc_name": "Hildir_cave", "item": "SpawnOnce: Fenring_Cultist_Hildir", "count": 30, "x": 4736.0, "z": -5504.0, "px": 2856.3, "py": 1108.7}, {"loc_id": 2006, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 30, "x": 3589.3, "z": 3712.8, "px": 2660.6, "py": 2681.7}, {"loc_id": 2017, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 30, "x": 713.6, "z": 4919.8, "px": 2169.8, "py": 2887.6}, {"loc_id": 4134, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 30, "x": 3018.6, "z": -4425.6, "px": 2563.2, "py": 1292.7}, {"loc_id": 4200, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 30, "x": 2247.2, "z": 6136.8, "px": 2431.5, "py": 3095.3}, {"loc_id": 4244, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 30, "x": -5828.6, "z": 4542.6, "px": 1053.3, "py": 2823.3}, {"loc_id": 4289, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 30, "x": 7161.4, "z": -4478.0, "px": 3270.2, "py": 1283.8}, {"loc_id": 4326, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 30, "x": 710.8, "z": 5309.7, "px": 2169.3, "py": 2954.2}, {"loc_id": 4365, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 30, "x": 1276.2, "z": 5630.3, "px": 2265.8, "py": 3008.9}, {"loc_id": 4428, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 30, "x": -59.6, "z": -1013.7, "px": 2037.8, "py": 1875.0}, {"loc_id": 7479, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 30, "x": 2688.0, "z": 640.0, "px": 2506.8, "py": 2157.2}, {"loc_id": 7480, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 30, "x": -3776.0, "z": 1408.0, "px": 1403.6, "py": 2288.3}, {"loc_id": 7491, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 30, "x": -4160.0, "z": 3200.0, "px": 1338.0, "py": 2594.1}, {"loc_id": 7502, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 30, "x": 4800.0, "z": -5568.0, "px": 2867.2, "py": 1097.7}, {"loc_id": 7520, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 30, "x": 512.0, "z": 3776.0, "px": 2135.4, "py": 2692.4}, {"loc_id": 7532, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 30, "x": -9984.0, "z": -512.0, "px": 344.1, "py": 1960.6}, {"loc_id": 7551, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 30, "x": -1920.0, "z": -576.0, "px": 1720.3, "py": 1949.7}, {"loc_id": 7555, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 30, "x": -6272.0, "z": -448.0, "px": 977.6, "py": 1971.5}, {"loc_id": 10031, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 30, "x": -64.0, "z": -8960.0, "px": 2037.1, "py": 518.8}, {"loc_id": 10053, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 30, "x": 5504.0, "z": -8000.0, "px": 2987.3, "py": 682.7}, {"loc_id": 10058, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 30, "x": 832.0, "z": -8832.0, "px": 2190.0, "py": 540.7}, {"loc_id": 10061, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 30, "x": 1216.0, "z": -9152.0, "px": 2255.5, "py": 486.1}, {"loc_id": 10086, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 30, "x": -192.0, "z": -9792.0, "px": 2015.2, "py": 376.8}, {"loc_id": 101, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 29, "x": -1014.2, "z": -5639.2, "px": 1874.9, "py": 1085.6}, {"loc_id": 139, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 29, "x": 3504.5, "z": 1327.7, "px": 2646.1, "py": 2274.6}, {"loc_id": 140, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 29, "x": 383.1, "z": 2565.9, "px": 2113.4, "py": 2485.9}, {"loc_id": 160, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 29, "x": -2167.4, "z": 4223.9, "px": 1678.1, "py": 2768.9}, {"loc_id": 782, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 29, "x": -6144.0, "z": 3968.0, "px": 999.4, "py": 2725.2}, {"loc_id": 814, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 29, "x": 192.0, "z": 7104.0, "px": 2080.8, "py": 3260.4}, {"loc_id": 860, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 29, "x": 9664.0, "z": 768.0, "px": 3697.3, "py": 2179.1}, {"loc_id": 1986, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 29, "x": -1784.6, "z": -4355.4, "px": 1743.4, "py": 1304.7}, {"loc_id": 2037, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 29, "x": 894.0, "z": 320.1, "px": 2200.6, "py": 2102.6}, {"loc_id": 2047, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 29, "x": 2934.8, "z": -2054.4, "px": 2548.9, "py": 1697.4}, {"loc_id": 2132, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 29, "x": 772.8, "z": 4226.6, "px": 2179.9, "py": 2769.3}, {"loc_id": 2135, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 29, "x": 8263.2, "z": -2115.4, "px": 3458.3, "py": 1687.0}, {"loc_id": 3075, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 29, "x": -6209.3, "z": -4736.0, "px": 988.3, "py": 1239.7}, {"loc_id": 4191, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 29, "x": 3893.5, "z": 4862.5, "px": 2712.5, "py": 2877.9}, {"loc_id": 4210, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 29, "x": -2503.3, "z": 1718.0, "px": 1620.8, "py": 2341.2}, {"loc_id": 4337, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 29, "x": -8387.1, "z": -1974.8, "px": 616.6, "py": 1711.0}, {"loc_id": 4395, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 29, "x": 506.6, "z": 5049.8, "px": 2134.5, "py": 2909.8}, {"loc_id": 4494, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 29, "x": -4989.8, "z": 5566.0, "px": 1196.4, "py": 2997.9}, {"loc_id": 4501, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 29, "x": 1659.5, "z": -898.7, "px": 2331.2, "py": 1894.6}, {"loc_id": 4506, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 29, "x": 5060.4, "z": -2244.4, "px": 2911.6, "py": 1665.0}, {"loc_id": 7470, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 29, "x": 2624.0, "z": 8576.0, "px": 2495.8, "py": 3511.6}, {"loc_id": 7473, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 29, "x": 0.0, "z": -1152.0, "px": 2048.0, "py": 1851.4}, {"loc_id": 7479, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 29, "x": 2688.0, "z": 640.0, "px": 2506.8, "py": 2157.2}, {"loc_id": 7542, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 29, "x": 1088.0, "z": 128.0, "px": 2233.7, "py": 2069.8}, {"loc_id": 10064, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 29, "x": 128.0, "z": -9280.0, "px": 2069.8, "py": 464.2}, {"loc_id": 10074, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 29, "x": -5248.0, "z": -7936.0, "px": 1152.3, "py": 693.6}, {"loc_id": 10728, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 29, "x": 1785.2, "z": -9654.1, "px": 2352.7, "py": 400.4}, {"loc_id": 41, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 28, "x": -4227.6, "z": 396.2, "px": 1326.5, "py": 2115.6}, {"loc_id": 46, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 28, "x": -2351.2, "z": 4805.5, "px": 1646.7, "py": 2868.1}, {"loc_id": 74, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 28, "x": 4783.1, "z": -691.7, "px": 2864.3, "py": 1929.9}, {"loc_id": 77, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 28, "x": 2296.4, "z": -3207.7, "px": 2439.9, "py": 1500.6}, {"loc_id": 106, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 28, "x": -2182.9, "z": 4304.1, "px": 1675.5, "py": 2782.6}, {"loc_id": 128, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 28, "x": -963.5, "z": -3775.8, "px": 1883.6, "py": 1403.6}, {"loc_id": 154, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 28, "x": -2430.0, "z": 4939.6, "px": 1633.3, "py": 2891.0}, {"loc_id": 175, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 28, "x": -3717.0, "z": -4233.5, "px": 1413.6, "py": 1325.5}, {"loc_id": 187, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 28, "x": 4433.2, "z": -3127.0, "px": 2804.6, "py": 1514.3}, {"loc_id": 659, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 28, "x": 3840.0, "z": -5952.0, "px": 2703.4, "py": 1032.2}, {"loc_id": 736, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 28, "x": 9088.0, "z": -3008.0, "px": 3599.0, "py": 1534.6}, {"loc_id": 745, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 28, "x": -5824.0, "z": 3264.0, "px": 1054.0, "py": 2605.1}, {"loc_id": 766, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 28, "x": 5760.0, "z": 6080.0, "px": 3031.0, "py": 3085.7}, {"loc_id": 776, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 28, "x": -3200.0, "z": 5376.0, "px": 1501.9, "py": 2965.5}, {"loc_id": 852, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 28, "x": 8512.0, "z": -2688.0, "px": 3500.7, "py": 1589.2}, {"loc_id": 866, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 28, "x": 8384.0, "z": -1728.0, "px": 3478.9, "py": 1753.1}, {"loc_id": 902, "loc_name": "Hildir_cave", "item": "Pickable: Crystal", "count": 28, "x": -2688.0, "z": 7360.0, "px": 1589.2, "py": 3304.1}, {"loc_id": 2013, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 28, "x": -2295.1, "z": 708.0, "px": 1656.3, "py": 2168.8}, {"loc_id": 2043, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 28, "x": 7367.4, "z": 3701.7, "px": 3305.4, "py": 2679.8}, {"loc_id": 2084, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 28, "x": -4355.4, "z": 1795.5, "px": 1304.7, "py": 2354.4}, {"loc_id": 2101, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 28, "x": -1158.2, "z": -1530.7, "px": 1850.3, "py": 1786.8}, {"loc_id": 2112, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 28, "x": 5188.7, "z": 5240.8, "px": 2933.5, "py": 2942.4}, {"loc_id": 3041, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 28, "x": 3264.9, "z": -319.5, "px": 2605.2, "py": 1993.5}, {"loc_id": 3084, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 28, "x": -3071.2, "z": 1215.7, "px": 1523.8, "py": 2255.5}, {"loc_id": 3172, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 28, "x": 4609.7, "z": 1406.2, "px": 2834.7, "py": 2288.0}, {"loc_id": 3212, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 28, "x": -896.0, "z": -4032.1, "px": 1895.1, "py": 1359.9}, {"loc_id": 4167, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 28, "x": 447.7, "z": 375.2, "px": 2124.4, "py": 2112.0}, {"loc_id": 4183, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 28, "x": -7557.0, "z": -4745.1, "px": 758.3, "py": 1238.2}, {"loc_id": 4347, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 28, "x": 2690.0, "z": -4345.6, "px": 2507.1, "py": 1306.4}, {"loc_id": 4358, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 28, "x": 8125.6, "z": -196.7, "px": 3434.8, "py": 2014.4}, {"loc_id": 4473, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 28, "x": -1352.6, "z": -1536.9, "px": 1817.2, "py": 1785.7}, {"loc_id": 4474, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 28, "x": -6838.8, "z": 5306.6, "px": 880.8, "py": 2953.7}, {"loc_id": 4486, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 28, "x": 3395.3, "z": -2438.4, "px": 2627.5, "py": 1631.8}, {"loc_id": 7464, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 28, "x": -6656.0, "z": -1984.0, "px": 912.0, "py": 1709.4}, {"loc_id": 7573, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 28, "x": 2304.0, "z": -2880.0, "px": 2441.2, "py": 1556.5}, {"loc_id": 10028, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 28, "x": 448.0, "z": -9216.0, "px": 2124.5, "py": 475.1}, {"loc_id": 10032, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 28, "x": -2112.0, "z": -8576.0, "px": 1687.6, "py": 584.4}, {"loc_id": 10041, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 28, "x": -4160.0, "z": -8960.0, "px": 1338.0, "py": 518.8}, {"loc_id": 10727, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 28, "x": -4535.3, "z": -8322.3, "px": 1274.0, "py": 627.7}, {"loc_id": 52, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 27, "x": 1297.8, "z": 2051.9, "px": 2269.5, "py": 2398.2}, {"loc_id": 58, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 27, "x": 1550.5, "z": 2242.3, "px": 2312.6, "py": 2430.7}, {"loc_id": 73, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 27, "x": -2615.5, "z": -950.2, "px": 1601.6, "py": 1885.8}, {"loc_id": 89, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 27, "x": -1936.1, "z": 4537.9, "px": 1717.6, "py": 2822.5}, {"loc_id": 121, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 27, "x": -4236.9, "z": 465.5, "px": 1324.9, "py": 2127.4}, {"loc_id": 137, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 27, "x": 2561.4, "z": -16.1, "px": 2485.1, "py": 2045.3}, {"loc_id": 145, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 27, "x": -5130.3, "z": 1350.3, "px": 1172.4, "py": 2278.5}, {"loc_id": 183, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 27, "x": -2508.1, "z": 4873.8, "px": 1620.0, "py": 2879.8}, {"loc_id": 786, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 27, "x": -9472.0, "z": -960.0, "px": 431.4, "py": 1884.2}, {"loc_id": 804, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 27, "x": 128.0, "z": 6848.0, "px": 2069.8, "py": 3216.7}, {"loc_id": 1997, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 27, "x": -5052.2, "z": 585.3, "px": 1185.8, "py": 2147.9}, {"loc_id": 2041, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 27, "x": -2236.4, "z": 4542.5, "px": 1666.3, "py": 2823.3}, {"loc_id": 3056, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 27, "x": -4993.1, "z": 3711.1, "px": 1195.8, "py": 2681.4}, {"loc_id": 3090, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 27, "x": 1022.6, "z": 5824.3, "px": 2222.5, "py": 3042.0}, {"loc_id": 3100, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 27, "x": -704.8, "z": -6207.4, "px": 1927.7, "py": 988.6}, {"loc_id": 3115, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 27, "x": -5121.5, "z": -2880.5, "px": 1173.9, "py": 1556.4}, {"loc_id": 3222, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 27, "x": 896.5, "z": 3584.0, "px": 2201.0, "py": 2659.7}, {"loc_id": 4146, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 27, "x": 2298.1, "z": 6275.1, "px": 2440.2, "py": 3119.0}, {"loc_id": 4159, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 27, "x": -2231.0, "z": 4486.8, "px": 1667.2, "py": 2813.7}, {"loc_id": 4197, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 27, "x": -8693.4, "z": -457.0, "px": 564.3, "py": 1970.0}, {"loc_id": 4204, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 27, "x": 3832.5, "z": 3901.3, "px": 2702.1, "py": 2713.8}, {"loc_id": 4227, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 27, "x": 1924.7, "z": -830.3, "px": 2376.5, "py": 1906.3}, {"loc_id": 4272, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 27, "x": -9543.9, "z": -2625.6, "px": 419.2, "py": 1599.9}, {"loc_id": 4276, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 27, "x": -1415.9, "z": -2056.9, "px": 1806.4, "py": 1697.0}, {"loc_id": 4339, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 27, "x": 566.2, "z": 5367.6, "px": 2144.6, "py": 2964.1}, {"loc_id": 4339, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 27, "x": 566.2, "z": 5367.6, "px": 2144.6, "py": 2964.1}, {"loc_id": 4359, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 27, "x": -568.3, "z": 512.2, "px": 1951.0, "py": 2135.4}, {"loc_id": 4364, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 27, "x": -6595.0, "z": 5437.6, "px": 922.5, "py": 2976.0}, {"loc_id": 4412, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 27, "x": -1215.7, "z": -1221.1, "px": 1840.5, "py": 1839.6}, {"loc_id": 4423, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 27, "x": -5955.5, "z": 4667.7, "px": 1031.6, "py": 2844.6}, {"loc_id": 7473, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 27, "x": 0.0, "z": -1152.0, "px": 2048.0, "py": 1851.4}, {"loc_id": 7489, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 27, "x": 7040.0, "z": -512.0, "px": 3249.5, "py": 1960.6}, {"loc_id": 7496, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 27, "x": 4608.0, "z": -5824.0, "px": 2834.4, "py": 1054.0}, {"loc_id": 7503, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 27, "x": 1344.0, "z": 8640.0, "px": 2277.4, "py": 3522.6}, {"loc_id": 7521, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 27, "x": 2240.0, "z": -3712.0, "px": 2430.3, "py": 1414.5}, {"loc_id": 7524, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 27, "x": 4288.0, "z": -1856.0, "px": 2779.8, "py": 1731.2}, {"loc_id": 7555, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 27, "x": -6272.0, "z": -448.0, "px": 977.6, "py": 1971.5}, {"loc_id": 7573, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 27, "x": 2304.0, "z": -2880.0, "px": 2441.2, "py": 1556.5}, {"loc_id": 10063, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 27, "x": -2176.0, "z": -8896.0, "px": 1676.6, "py": 529.7}, {"loc_id": 10071, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 27, "x": -1280.0, "z": -9344.0, "px": 1829.5, "py": 453.3}, {"loc_id": 10692, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 27, "x": -1846.4, "z": -9415.1, "px": 1732.9, "py": 441.2}, {"loc_id": 37, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 26, "x": -384.0, "z": 2571.6, "px": 1982.5, "py": 2486.9}, {"loc_id": 112, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 26, "x": 2361.0, "z": -3273.3, "px": 2450.9, "py": 1489.4}, {"loc_id": 133, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 26, "x": -2637.3, "z": -5254.9, "px": 1597.9, "py": 1151.2}, {"loc_id": 141, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 26, "x": -3468.1, "z": 180.0, "px": 1456.1, "py": 2078.7}, {"loc_id": 189, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 26, "x": 1211.9, "z": 2097.1, "px": 2254.8, "py": 2405.9}, {"loc_id": 672, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 26, "x": 3776.0, "z": 5952.0, "px": 2692.4, "py": 3063.8}, {"loc_id": 702, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 26, "x": 7424.0, "z": -2176.0, "px": 3315.0, "py": 1676.6}, {"loc_id": 780, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 26, "x": -5312.0, "z": -4480.0, "px": 1141.4, "py": 1283.4}, {"loc_id": 815, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 26, "x": 832.0, "z": 6784.0, "px": 2190.0, "py": 3205.8}, {"loc_id": 833, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 26, "x": 6208.0, "z": 5056.0, "px": 3107.5, "py": 2910.9}, {"loc_id": 2008, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 26, "x": 8127.2, "z": -263.8, "px": 3435.0, "py": 2003.0}, {"loc_id": 2010, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 26, "x": -1345.3, "z": -5450.9, "px": 1818.4, "py": 1117.7}, {"loc_id": 2058, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 26, "x": -1343.6, "z": -1865.0, "px": 1818.7, "py": 1729.7}, {"loc_id": 2063, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 26, "x": 3071.8, "z": 893.7, "px": 2572.3, "py": 2200.5}, {"loc_id": 2072, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 26, "x": 7928.0, "z": -2627.6, "px": 3401.0, "py": 1599.6}, {"loc_id": 2103, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 26, "x": 3965.6, "z": -382.1, "px": 2724.8, "py": 1982.8}, {"loc_id": 2121, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 26, "x": -3338.0, "z": 4485.4, "px": 1478.3, "py": 2813.5}, {"loc_id": 3118, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 26, "x": 6975.6, "z": 2366.9, "px": 3238.5, "py": 2452.0}, {"loc_id": 3210, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 26, "x": -3584.7, "z": 7105.2, "px": 1436.2, "py": 3260.6}, {"loc_id": 4127, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 26, "x": -9343.8, "z": 2946.3, "px": 453.3, "py": 2550.8}, {"loc_id": 4155, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 26, "x": 5321.9, "z": 4856.1, "px": 2956.3, "py": 2876.8}, {"loc_id": 4185, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 26, "x": -5579.0, "z": -4997.9, "px": 1095.9, "py": 1195.0}, {"loc_id": 4208, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 26, "x": 2693.9, "z": -3652.1, "px": 2507.8, "py": 1424.7}, {"loc_id": 4217, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 26, "x": 2361.2, "z": 3838.0, "px": 2451.0, "py": 2703.0}, {"loc_id": 4229, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 26, "x": 907.0, "z": 5564.8, "px": 2202.8, "py": 2997.7}, {"loc_id": 4230, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 26, "x": -7741.6, "z": 4344.6, "px": 726.8, "py": 2789.5}, {"loc_id": 4242, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 26, "x": -2167.4, "z": 702.4, "px": 1678.1, "py": 2167.9}, {"loc_id": 4251, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 26, "x": -5947.0, "z": 1400.3, "px": 1033.0, "py": 2287.0}, {"loc_id": 4275, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 26, "x": -4100.0, "z": -2235.3, "px": 1348.3, "py": 1666.5}, {"loc_id": 4294, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 26, "x": -7735.8, "z": -2246.0, "px": 727.8, "py": 1664.7}, {"loc_id": 4482, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 26, "x": 2112.1, "z": 903.8, "px": 2408.5, "py": 2202.2}, {"loc_id": 4484, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 26, "x": 9404.2, "z": 56.3, "px": 3653.0, "py": 2057.6}, {"loc_id": 7455, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 26, "x": 6592.0, "z": 6464.0, "px": 3173.0, "py": 3151.2}, {"loc_id": 7457, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 26, "x": 2560.0, "z": 896.0, "px": 2484.9, "py": 2200.9}, {"loc_id": 7529, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 26, "x": 2496.0, "z": -3008.0, "px": 2474.0, "py": 1534.6}, {"loc_id": 7530, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 26, "x": 5312.0, "z": -64.0, "px": 2954.6, "py": 2037.1}, {"loc_id": 7537, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 26, "x": 6272.0, "z": 6784.0, "px": 3118.4, "py": 3205.8}, {"loc_id": 7542, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 26, "x": 1088.0, "z": 128.0, "px": 2233.7, "py": 2069.8}, {"loc_id": 7545, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 26, "x": -192.0, "z": -1536.0, "px": 2015.2, "py": 1785.9}, {"loc_id": 7557, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 26, "x": 3264.0, "z": 256.0, "px": 2605.1, "py": 2091.7}, {"loc_id": 7560, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 26, "x": 9344.0, "z": -2240.0, "px": 3642.7, "py": 1665.7}, {"loc_id": 10057, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 26, "x": 4992.0, "z": -7872.0, "px": 2900.0, "py": 704.5}, {"loc_id": 10087, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 26, "x": 384.0, "z": -8576.0, "px": 2113.5, "py": 584.4}, {"loc_id": 10701, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 26, "x": 2300.6, "z": -9274.4, "px": 2440.6, "py": 465.2}, {"loc_id": 10715, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 26, "x": -959.7, "z": -9730.7, "px": 1884.2, "py": 387.3}, {"loc_id": 10725, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 26, "x": -3583.6, "z": -8570.7, "px": 1436.4, "py": 585.3}, {"loc_id": 23, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 25, "x": -590.9, "z": -3594.7, "px": 1947.2, "py": 1434.5}, {"loc_id": 42, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 25, "x": 3699.8, "z": 4355.8, "px": 2679.4, "py": 2791.4}, {"loc_id": 60, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 25, "x": -5388.9, "z": 1521.4, "px": 1128.3, "py": 2307.7}, {"loc_id": 63, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 25, "x": 1654.7, "z": 4477.8, "px": 2330.4, "py": 2812.2}, {"loc_id": 76, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 25, "x": -2491.8, "z": -4097.4, "px": 1622.7, "py": 1348.7}, {"loc_id": 83, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 25, "x": 1649.5, "z": 4335.2, "px": 2329.5, "py": 2787.9}, {"loc_id": 122, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 25, "x": 2226.5, "z": 268.7, "px": 2428.0, "py": 2093.9}, {"loc_id": 138, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 25, "x": -2417.8, "z": -4091.4, "px": 1635.4, "py": 1349.7}, {"loc_id": 142, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 25, "x": -5046.4, "z": 1265.2, "px": 1186.7, "py": 2263.9}, {"loc_id": 168, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 25, "x": -889.7, "z": -3644.9, "px": 1896.2, "py": 1425.9}, {"loc_id": 692, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 25, "x": -2816.0, "z": 6272.0, "px": 1567.4, "py": 3118.4}, {"loc_id": 805, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 25, "x": 8640.0, "z": -576.0, "px": 3522.6, "py": 1949.7}, {"loc_id": 834, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 25, "x": -8576.0, "z": 1280.0, "px": 584.4, "py": 2266.5}, {"loc_id": 880, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 25, "x": 4352.0, "z": -4416.0, "px": 2790.7, "py": 1294.3}, {"loc_id": 882, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 25, "x": 7936.0, "z": 3008.0, "px": 3402.4, "py": 2561.4}, {"loc_id": 915, "loc_name": "Hildir_crypt", "item": "Pickable: MushroomYellow", "count": 25, "x": 2312.6, "z": -4479.1, "px": 2442.7, "py": 1283.6}, {"loc_id": 1998, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 25, "x": -1158.1, "z": -1210.7, "px": 1850.4, "py": 1841.4}, {"loc_id": 2032, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 25, "x": -9030.2, "z": 3011.1, "px": 506.8, "py": 2561.9}, {"loc_id": 2055, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 25, "x": 769.5, "z": 192.1, "px": 2179.3, "py": 2080.8}, {"loc_id": 2138, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 25, "x": -1608.3, "z": 4729.8, "px": 1773.5, "py": 2855.2}, {"loc_id": 2157, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 25, "x": -2947.2, "z": 4168.6, "px": 1545.0, "py": 2759.4}, {"loc_id": 3076, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 25, "x": 6849.0, "z": -2369.3, "px": 3216.9, "py": 1643.6}, {"loc_id": 3093, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 25, "x": -3136.3, "z": 2494.0, "px": 1512.7, "py": 2473.6}, {"loc_id": 3136, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 25, "x": -1728.2, "z": -4735.4, "px": 1753.1, "py": 1239.8}, {"loc_id": 3155, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 25, "x": -62.3, "z": -5185.2, "px": 2037.4, "py": 1163.1}, {"loc_id": 3163, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 25, "x": 4927.2, "z": 3326.8, "px": 2888.9, "py": 2615.8}, {"loc_id": 3205, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 25, "x": -2495.7, "z": -3007.5, "px": 1622.1, "py": 1534.7}, {"loc_id": 3207, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 25, "x": -4928.9, "z": -2688.9, "px": 1206.8, "py": 1589.1}, {"loc_id": 3228, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 25, "x": 3969.0, "z": 895.5, "px": 2725.4, "py": 2200.8}, {"loc_id": 4138, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 25, "x": -3385.4, "z": 4539.1, "px": 1470.2, "py": 2822.7}, {"loc_id": 4160, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 25, "x": -8074.3, "z": 376.3, "px": 670.0, "py": 2112.2}, {"loc_id": 4169, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 25, "x": 1218.9, "z": -2236.2, "px": 2256.0, "py": 1666.4}, {"loc_id": 4189, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 25, "x": 2811.4, "z": -4794.0, "px": 2527.8, "py": 1229.8}, {"loc_id": 4206, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 25, "x": 7049.9, "z": -4285.7, "px": 3251.2, "py": 1316.6}, {"loc_id": 4212, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 25, "x": -5377.4, "z": -2041.4, "px": 1130.3, "py": 1699.6}, {"loc_id": 4265, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 25, "x": 2375.4, "z": -1605.8, "px": 2453.4, "py": 1773.9}, {"loc_id": 4308, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 25, "x": 5503.2, "z": -2502.2, "px": 2987.2, "py": 1621.0}, {"loc_id": 4310, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 25, "x": -1786.0, "z": 4667.8, "px": 1743.2, "py": 2844.6}, {"loc_id": 4324, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 25, "x": 3912.6, "z": -507.5, "px": 2715.8, "py": 1961.4}, {"loc_id": 4337, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 25, "x": -8387.1, "z": -1974.8, "px": 616.6, "py": 1711.0}, {"loc_id": 4426, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 25, "x": 8777.6, "z": -1335.1, "px": 3546.0, "py": 1820.1}, {"loc_id": 4438, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 25, "x": -7037.2, "z": 246.7, "px": 847.0, "py": 2090.1}, {"loc_id": 4467, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 25, "x": 3511.5, "z": 3513.7, "px": 2647.3, "py": 2647.7}, {"loc_id": 7448, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 25, "x": 2240.0, "z": 8768.0, "px": 2430.3, "py": 3544.4}, {"loc_id": 7452, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 25, "x": -2624.0, "z": 7360.0, "px": 1600.2, "py": 3304.1}, {"loc_id": 7463, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 25, "x": 6400.0, "z": 6592.0, "px": 3140.3, "py": 3173.0}, {"loc_id": 7472, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 25, "x": 4608.0, "z": -5440.0, "px": 2834.4, "py": 1119.6}, {"loc_id": 7486, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 25, "x": 1728.0, "z": 6656.0, "px": 2342.9, "py": 3184.0}, {"loc_id": 7538, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 25, "x": 6208.0, "z": 4544.0, "px": 3107.5, "py": 2823.5}, {"loc_id": 7538, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 25, "x": 6208.0, "z": 4544.0, "px": 3107.5, "py": 2823.5}, {"loc_id": 7549, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 25, "x": 2496.0, "z": -2560.0, "px": 2474.0, "py": 1611.1}, {"loc_id": 7560, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 25, "x": 9344.0, "z": -2240.0, "px": 3642.7, "py": 1665.7}, {"loc_id": 7564, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 25, "x": 6400.0, "z": 7040.0, "px": 3140.3, "py": 3249.5}, {"loc_id": 7568, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 25, "x": 1536.0, "z": 6592.0, "px": 2310.1, "py": 3173.0}, {"loc_id": 10073, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 25, "x": -2176.0, "z": -9216.0, "px": 1676.6, "py": 475.1}, {"loc_id": 10737, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 25, "x": 5193.3, "z": -7740.7, "px": 2934.3, "py": 726.9}, {"loc_id": 30, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 24, "x": -525.6, "z": -3575.0, "px": 1958.3, "py": 1437.9}, {"loc_id": 35, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 24, "x": -209.6, "z": 2703.7, "px": 2012.2, "py": 2509.4}, {"loc_id": 91, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 24, "x": -5102.0, "z": -771.2, "px": 1177.3, "py": 1916.4}, {"loc_id": 100, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 24, "x": 2508.7, "z": -5306.2, "px": 2476.2, "py": 1142.4}, {"loc_id": 147, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 24, "x": -3130.3, "z": 497.4, "px": 1513.8, "py": 2132.9}, {"loc_id": 156, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 24, "x": 3335.7, "z": -4334.9, "px": 2617.3, "py": 1308.2}, {"loc_id": 172, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 24, "x": -3663.7, "z": 205.0, "px": 1422.7, "py": 2083.0}, {"loc_id": 697, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 24, "x": 9600.0, "z": -2368.0, "px": 3686.4, "py": 1643.9}, {"loc_id": 725, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 24, "x": 2816.0, "z": 5696.0, "px": 2528.6, "py": 3020.1}, {"loc_id": 763, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 24, "x": 3904.0, "z": -7040.0, "px": 2714.3, "py": 846.5}, {"loc_id": 801, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 24, "x": -5760.0, "z": -5504.0, "px": 1065.0, "py": 1108.7}, {"loc_id": 811, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 24, "x": -5568.0, "z": 3328.0, "px": 1097.7, "py": 2616.0}, {"loc_id": 844, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 24, "x": 2560.0, "z": -5568.0, "px": 2484.9, "py": 1097.7}, {"loc_id": 890, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 24, "x": -6528.0, "z": -3008.0, "px": 933.9, "py": 1534.6}, {"loc_id": 902, "loc_name": "Hildir_cave", "item": "SpawnOnce: Fenring_Cultist_Hildir", "count": 24, "x": -2688.0, "z": 7360.0, "px": 1589.2, "py": 3304.1}, {"loc_id": 2045, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 24, "x": 6264.5, "z": -4358.4, "px": 3117.1, "py": 1304.2}, {"loc_id": 2049, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 24, "x": 832.6, "z": 3465.7, "px": 2190.1, "py": 2639.5}, {"loc_id": 2053, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 24, "x": 5060.9, "z": -2298.6, "px": 2911.7, "py": 1655.7}, {"loc_id": 2111, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 24, "x": -4411.1, "z": 1666.0, "px": 1295.2, "py": 2332.3}, {"loc_id": 2129, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 24, "x": -2120.9, "z": 694.0, "px": 1686.0, "py": 2166.4}, {"loc_id": 2175, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 24, "x": 312.2, "z": 5051.0, "px": 2101.3, "py": 2910.0}, {"loc_id": 2182, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 24, "x": -7942.6, "z": 265.7, "px": 692.5, "py": 2093.3}, {"loc_id": 3041, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 3264.9, "z": -319.5, "px": 2605.2, "py": 1993.5}, {"loc_id": 3042, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 5184.1, "z": -2368.4, "px": 2932.8, "py": 1643.8}, {"loc_id": 3044, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": -1024.1, "z": -4863.7, "px": 1873.2, "py": 1217.9}, {"loc_id": 3048, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 1536.3, "z": -4286.4, "px": 2310.2, "py": 1316.5}, {"loc_id": 3050, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 766.5, "z": -7231.9, "px": 2178.8, "py": 813.8}, {"loc_id": 3052, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": -6206.2, "z": 1408.8, "px": 988.8, "py": 2288.4}, {"loc_id": 3055, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 1215.1, "z": -4097.4, "px": 2255.4, "py": 1348.7}, {"loc_id": 3056, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": -4993.1, "z": 3711.1, "px": 1195.8, "py": 2681.4}, {"loc_id": 3057, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": -1534.8, "z": -6655.5, "px": 1786.1, "py": 912.1}, {"loc_id": 3060, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": -5758.6, "z": -1345.1, "px": 1065.2, "py": 1818.4}, {"loc_id": 3069, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": -3393.3, "z": 2305.2, "px": 1468.9, "py": 2441.4}, {"loc_id": 3076, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 6849.0, "z": -2369.3, "px": 3216.9, "py": 1643.6}, {"loc_id": 3077, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 5889.6, "z": -4990.1, "px": 3053.2, "py": 1196.4}, {"loc_id": 3080, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": -3967.4, "z": 3841.4, "px": 1370.9, "py": 2703.6}, {"loc_id": 3081, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": -3137.5, "z": 5951.5, "px": 1512.5, "py": 3063.7}, {"loc_id": 3083, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 2753.6, "z": -5953.6, "px": 2517.9, "py": 1031.9}, {"loc_id": 3091, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": -7103.0, "z": -1.0, "px": 835.8, "py": 2047.8}, {"loc_id": 3095, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 24, "x": -7681.2, "z": -1983.8, "px": 737.1, "py": 1709.4}, {"loc_id": 3096, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 24, "x": 1982.5, "z": 7040.4, "px": 2386.3, "py": 3249.6}, {"loc_id": 3096, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 1982.5, "z": 7040.4, "px": 2386.3, "py": 3249.6}, {"loc_id": 3100, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": -704.8, "z": -6207.4, "px": 1927.7, "py": 988.6}, {"loc_id": 3103, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 24, "x": 2238.9, "z": -4798.2, "px": 2430.1, "py": 1229.1}, {"loc_id": 3103, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 2238.9, "z": -4798.2, "px": 2430.1, "py": 1229.1}, {"loc_id": 3106, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 24, "x": 5758.1, "z": -1023.1, "px": 3030.7, "py": 1873.4}, {"loc_id": 3114, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 24, "x": -4097.1, "z": -2687.0, "px": 1348.8, "py": 1589.4}, {"loc_id": 3115, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": -5121.5, "z": -2880.5, "px": 1173.9, "py": 1556.4}, {"loc_id": 3118, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 6975.6, "z": 2366.9, "px": 3238.5, "py": 2452.0}, {"loc_id": 3125, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 24, "x": -1470.8, "z": -4353.3, "px": 1797.0, "py": 1305.0}, {"loc_id": 3128, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 2878.7, "z": 5118.9, "px": 2539.3, "py": 2921.6}, {"loc_id": 3129, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 24, "x": 2816.9, "z": -3392.4, "px": 2528.8, "py": 1469.0}, {"loc_id": 3134, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 4606.7, "z": -1534.5, "px": 2834.2, "py": 1786.1}, {"loc_id": 3136, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": -1728.2, "z": -4735.4, "px": 1753.1, "py": 1239.8}, {"loc_id": 3138, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 1151.3, "z": 3776.1, "px": 2244.5, "py": 2692.5}, {"loc_id": 3140, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": -2879.7, "z": 831.4, "px": 1556.5, "py": 2189.9}, {"loc_id": 3141, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 1857.8, "z": 3713.0, "px": 2365.1, "py": 2681.7}, {"loc_id": 3142, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 24, "x": 3071.4, "z": 191.8, "px": 2572.2, "py": 2080.7}, {"loc_id": 3143, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 3969.5, "z": -639.1, "px": 2725.5, "py": 1938.9}, {"loc_id": 3149, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": -2048.1, "z": -5311.5, "px": 1698.5, "py": 1141.5}, {"loc_id": 3164, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 2370.0, "z": -5121.3, "px": 2452.5, "py": 1174.0}, {"loc_id": 3169, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 4735.7, "z": 3071.3, "px": 2856.2, "py": 2572.2}, {"loc_id": 3176, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 318.1, "z": 5502.9, "px": 2102.3, "py": 2987.2}, {"loc_id": 3186, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 24, "x": 4673.3, "z": -1086.3, "px": 2845.6, "py": 1862.6}, {"loc_id": 3186, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 4673.3, "z": -1086.3, "px": 2845.6, "py": 1862.6}, {"loc_id": 3191, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 6016.2, "z": 1601.9, "px": 3074.8, "py": 2321.4}, {"loc_id": 3192, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 24, "x": 1664.9, "z": 7424.3, "px": 2332.1, "py": 3315.1}, {"loc_id": 3196, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": -961.5, "z": -5887.6, "px": 1883.9, "py": 1043.2}, {"loc_id": 3197, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 3198.6, "z": 4350.7, "px": 2593.9, "py": 2790.5}, {"loc_id": 3222, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 896.5, "z": 3584.0, "px": 2201.0, "py": 2659.7}, {"loc_id": 3224, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": -5823.9, "z": 4351.9, "px": 1054.1, "py": 2790.7}, {"loc_id": 3225, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 24, "x": 2945.0, "z": -5056.6, "px": 2550.6, "py": 1185.0}, {"loc_id": 4118, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 24, "x": -9206.7, "z": 3189.3, "px": 476.7, "py": 2592.3}, {"loc_id": 4132, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 24, "x": 1077.3, "z": -5511.5, "px": 2231.9, "py": 1107.4}, {"loc_id": 4166, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 24, "x": 5699.1, "z": 1534.6, "px": 3020.6, "py": 2309.9}, {"loc_id": 4182, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 24, "x": 3142.6, "z": -1276.7, "px": 2584.3, "py": 1830.1}, {"loc_id": 4192, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 24, "x": 7925.4, "z": -2948.4, "px": 3400.6, "py": 1544.8}, {"loc_id": 4320, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 24, "x": 1529.8, "z": -6332.0, "px": 2309.1, "py": 967.3}, {"loc_id": 4388, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 24, "x": 1660.3, "z": -4422.1, "px": 2331.4, "py": 1293.3}, {"loc_id": 4430, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 24, "x": -4101.4, "z": -2312.7, "px": 1348.0, "py": 1653.3}, {"loc_id": 4431, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 24, "x": 5367.0, "z": 522.6, "px": 2964.0, "py": 2137.2}, {"loc_id": 4446, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 24, "x": 2169.4, "z": 3962.5, "px": 2418.2, "py": 2724.3}, {"loc_id": 4450, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 24, "x": -8954.4, "z": 3016.4, "px": 519.8, "py": 2562.8}, {"loc_id": 4459, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 24, "x": 584.4, "z": 4475.8, "px": 2147.7, "py": 2811.9}, {"loc_id": 4465, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 24, "x": -584.0, "z": -6463.7, "px": 1948.3, "py": 944.9}, {"loc_id": 4481, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 24, "x": -1911.4, "z": -4671.1, "px": 1721.8, "py": 1250.8}, {"loc_id": 4500, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 24, "x": -3201.7, "z": -2365.6, "px": 1501.6, "py": 1644.3}, {"loc_id": 4504, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 24, "x": 2173.2, "z": -965.9, "px": 2418.9, "py": 1883.2}, {"loc_id": 7449, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 24, "x": -3328.0, "z": -2048.0, "px": 1480.0, "py": 1698.5}, {"loc_id": 7452, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 24, "x": -2624.0, "z": 7360.0, "px": 1600.2, "py": 3304.1}, {"loc_id": 7452, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 24, "x": -2624.0, "z": 7360.0, "px": 1600.2, "py": 3304.1}, {"loc_id": 7460, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 24, "x": -4480.0, "z": -1344.0, "px": 1283.4, "py": 1818.6}, {"loc_id": 7461, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 24, "x": 1024.0, "z": -2624.0, "px": 2222.8, "py": 1600.2}, {"loc_id": 7461, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 24, "x": 1024.0, "z": -2624.0, "px": 2222.8, "py": 1600.2}, {"loc_id": 7473, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 24, "x": 0.0, "z": -1152.0, "px": 2048.0, "py": 1851.4}, {"loc_id": 7485, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 24, "x": -2048.0, "z": -192.0, "px": 1698.5, "py": 2015.2}, {"loc_id": 7493, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 24, "x": 1344.0, "z": 6656.0, "px": 2277.4, "py": 3184.0}, {"loc_id": 7522, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 24, "x": -4032.0, "z": 1408.0, "px": 1359.9, "py": 2288.3}, {"loc_id": 7523, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 24, "x": 6016.0, "z": 4288.0, "px": 3074.7, "py": 2779.8}, {"loc_id": 7530, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 24, "x": 5312.0, "z": -64.0, "px": 2954.6, "py": 2037.1}, {"loc_id": 7548, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 24, "x": -960.0, "z": 8704.0, "px": 1884.2, "py": 3533.5}, {"loc_id": 7554, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 24, "x": 3776.0, "z": -128.0, "px": 2692.4, "py": 2026.2}, {"loc_id": 10055, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 24, "x": -832.0, "z": -9472.0, "px": 1906.0, "py": 431.4}, {"loc_id": 10735, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 24, "x": -3721.3, "z": -8325.0, "px": 1412.9, "py": 627.2}, {"loc_id": 41, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 23, "x": -4227.6, "z": 396.2, "px": 1326.5, "py": 2115.6}, {"loc_id": 57, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 23, "x": 3789.7, "z": 4478.3, "px": 2694.8, "py": 2812.3}, {"loc_id": 148, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 23, "x": 586.4, "z": 2679.5, "px": 2148.1, "py": 2505.3}, {"loc_id": 165, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 23, "x": 2629.5, "z": 3851.6, "px": 2496.8, "py": 2705.3}, {"loc_id": 167, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 23, "x": 3397.0, "z": -4496.1, "px": 2627.8, "py": 1280.7}, {"loc_id": 179, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 23, "x": 133.5, "z": 2638.3, "px": 2070.8, "py": 2498.3}, {"loc_id": 704, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 23, "x": 1280.0, "z": -6592.0, "px": 2266.5, "py": 923.0}, {"loc_id": 712, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 23, "x": 9152.0, "z": -1280.0, "px": 3609.9, "py": 1829.5}, {"loc_id": 728, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 23, "x": 7680.0, "z": -2368.0, "px": 3358.7, "py": 1643.9}, {"loc_id": 731, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 23, "x": -7744.0, "z": -2880.0, "px": 726.4, "py": 1556.5}, {"loc_id": 772, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 23, "x": -7104.0, "z": -2176.0, "px": 835.6, "py": 1676.6}, {"loc_id": 798, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 23, "x": -576.0, "z": -6976.0, "px": 1949.7, "py": 857.4}, {"loc_id": 800, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 23, "x": 2368.0, "z": -6592.0, "px": 2452.1, "py": 923.0}, {"loc_id": 817, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 23, "x": -6976.0, "z": -1728.0, "px": 857.4, "py": 1753.1}, {"loc_id": 825, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 23, "x": -8384.0, "z": -448.0, "px": 617.1, "py": 1971.5}, {"loc_id": 837, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 23, "x": -9408.0, "z": 1472.0, "px": 442.4, "py": 2299.2}, {"loc_id": 840, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 23, "x": -1664.0, "z": 7104.0, "px": 1764.0, "py": 3260.4}, {"loc_id": 866, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 23, "x": 8384.0, "z": -1728.0, "px": 3478.9, "py": 1753.1}, {"loc_id": 868, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 23, "x": -7040.0, "z": 1344.0, "px": 846.5, "py": 2277.4}, {"loc_id": 1999, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 23, "x": -6850.3, "z": 5430.7, "px": 878.9, "py": 2974.8}, {"loc_id": 2007, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 23, "x": 2754.1, "z": 5051.3, "px": 2518.0, "py": 2910.1}, {"loc_id": 2077, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 23, "x": 2107.7, "z": 1143.7, "px": 2407.7, "py": 2243.2}, {"loc_id": 2104, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 23, "x": 835.6, "z": 4856.2, "px": 2190.6, "py": 2876.8}, {"loc_id": 2115, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 23, "x": -5826.5, "z": -329.0, "px": 1053.6, "py": 1991.9}, {"loc_id": 2124, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 23, "x": -3017.7, "z": 4282.1, "px": 1533.0, "py": 2778.8}, {"loc_id": 2131, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 23, "x": 3194.2, "z": -2879.3, "px": 2593.1, "py": 1556.6}, {"loc_id": 3043, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 23, "x": -4863.5, "z": 3966.2, "px": 1218.0, "py": 2724.9}, {"loc_id": 3045, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 23, "x": 4928.6, "z": 1279.0, "px": 2889.1, "py": 2266.3}, {"loc_id": 3050, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 23, "x": 766.5, "z": -7231.9, "px": 2178.8, "py": 813.8}, {"loc_id": 3105, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 23, "x": -2880.0, "z": 5761.0, "px": 1556.5, "py": 3031.2}, {"loc_id": 3170, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 23, "x": 4735.2, "z": -2366.2, "px": 2856.1, "py": 1644.2}, {"loc_id": 3181, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 23, "x": 2110.8, "z": 6080.7, "px": 2408.2, "py": 3085.8}, {"loc_id": 3184, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 23, "x": -961.6, "z": 5057.4, "px": 1883.9, "py": 2911.1}, {"loc_id": 3209, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 23, "x": -5184.6, "z": -1921.3, "px": 1163.2, "py": 1720.1}, {"loc_id": 4124, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 23, "x": 1994.9, "z": 1141.6, "px": 2388.5, "py": 2242.8}, {"loc_id": 4126, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 23, "x": 8251.4, "z": -388.6, "px": 3456.2, "py": 1981.7}, {"loc_id": 4137, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 23, "x": 1785.0, "z": -1220.8, "px": 2352.6, "py": 1839.7}, {"loc_id": 4138, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 23, "x": -3385.4, "z": 4539.1, "px": 1470.2, "py": 2822.7}, {"loc_id": 4149, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 23, "x": 3274.6, "z": -2807.2, "px": 2606.9, "py": 1568.9}, {"loc_id": 4173, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 23, "x": 4153.2, "z": 3769.4, "px": 2756.8, "py": 2691.3}, {"loc_id": 4173, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 23, "x": 4153.2, "z": 3769.4, "px": 2756.8, "py": 2691.3}, {"loc_id": 4179, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 23, "x": -7242.2, "z": -4937.2, "px": 812.0, "py": 1205.4}, {"loc_id": 4187, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 23, "x": 2357.9, "z": -1343.9, "px": 2450.4, "py": 1818.6}, {"loc_id": 4198, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 23, "x": 3829.0, "z": 1215.6, "px": 2701.5, "py": 2255.5}, {"loc_id": 4203, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 23, "x": 2238.2, "z": 1021.5, "px": 2430.0, "py": 2222.3}, {"loc_id": 4225, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 23, "x": -3832.3, "z": -2556.2, "px": 1394.0, "py": 1611.7}, {"loc_id": 4239, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 23, "x": 1726.7, "z": -4362.4, "px": 2342.7, "py": 1303.5}, {"loc_id": 4261, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 23, "x": 2549.6, "z": -3462.5, "px": 2483.1, "py": 1457.1}, {"loc_id": 4270, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 23, "x": -3338.7, "z": -2428.5, "px": 1478.2, "py": 1633.5}, {"loc_id": 4290, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 23, "x": -8455.7, "z": -1866.4, "px": 604.9, "py": 1729.5}, {"loc_id": 4307, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 23, "x": 5049.3, "z": 3338.7, "px": 2909.7, "py": 2617.8}, {"loc_id": 4327, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 23, "x": 959.4, "z": 5365.3, "px": 2211.7, "py": 2963.7}, {"loc_id": 4346, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 23, "x": 5045.5, "z": 2760.5, "px": 2909.1, "py": 2519.1}, {"loc_id": 4355, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 23, "x": 2367.4, "z": 1284.3, "px": 2452.0, "py": 2267.2}, {"loc_id": 4387, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 23, "x": 5190.4, "z": 5056.9, "px": 2933.8, "py": 2911.0}, {"loc_id": 4398, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 23, "x": 5256.1, "z": -2236.2, "px": 2945.0, "py": 1666.4}, {"loc_id": 4405, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 23, "x": -6005.8, "z": 4800.9, "px": 1023.0, "py": 2867.4}, {"loc_id": 4424, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 23, "x": 7353.4, "z": -4420.3, "px": 3303.0, "py": 1293.6}, {"loc_id": 4433, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 23, "x": 6602.0, "z": 4795.5, "px": 3174.7, "py": 2866.4}, {"loc_id": 4441, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 23, "x": -192.8, "z": 572.5, "px": 2015.1, "py": 2145.7}, {"loc_id": 4455, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 23, "x": 9526.9, "z": 1407.6, "px": 3673.9, "py": 2288.2}, {"loc_id": 4466, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 23, "x": 1162.4, "z": -2230.1, "px": 2246.4, "py": 1667.4}, {"loc_id": 4499, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 23, "x": 450.4, "z": 440.0, "px": 2124.9, "py": 2123.1}, {"loc_id": 7452, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 23, "x": -2624.0, "z": 7360.0, "px": 1600.2, "py": 3304.1}, {"loc_id": 7455, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 23, "x": 6592.0, "z": 6464.0, "px": 3173.0, "py": 3151.2}, {"loc_id": 7472, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 23, "x": 4608.0, "z": -5440.0, "px": 2834.4, "py": 1119.6}, {"loc_id": 7480, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 23, "x": -3776.0, "z": 1408.0, "px": 1403.6, "py": 2288.3}, {"loc_id": 7482, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 23, "x": 4288.0, "z": -5824.0, "px": 2779.8, "py": 1054.0}, {"loc_id": 7486, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 23, "x": 1728.0, "z": 6656.0, "px": 2342.9, "py": 3184.0}, {"loc_id": 7494, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 23, "x": 9664.0, "z": -1216.0, "px": 3697.3, "py": 1840.5}, {"loc_id": 7513, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 23, "x": 3072.0, "z": -1920.0, "px": 2572.3, "py": 1720.3}, {"loc_id": 7529, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 23, "x": 2496.0, "z": -3008.0, "px": 2474.0, "py": 1534.6}, {"loc_id": 7530, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 23, "x": 5312.0, "z": -64.0, "px": 2954.6, "py": 2037.1}, {"loc_id": 7535, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 23, "x": -9792.0, "z": -704.0, "px": 376.8, "py": 1927.9}, {"loc_id": 7535, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 23, "x": -9792.0, "z": -704.0, "px": 376.8, "py": 1927.9}, {"loc_id": 7541, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 23, "x": -320.0, "z": -1280.0, "px": 1993.4, "py": 1829.5}, {"loc_id": 7545, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 23, "x": -192.0, "z": -1536.0, "px": 2015.2, "py": 1785.9}, {"loc_id": 7549, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 23, "x": 2496.0, "z": -2560.0, "px": 2474.0, "py": 1611.1}, {"loc_id": 7565, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 23, "x": -256.0, "z": 9152.0, "px": 2004.3, "py": 3609.9}, {"loc_id": 7573, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 23, "x": 2304.0, "z": -2880.0, "px": 2441.2, "py": 1556.5}, {"loc_id": 7574, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 23, "x": 5760.0, "z": 4800.0, "px": 3031.0, "py": 2867.2}, {"loc_id": 10047, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 23, "x": 3776.0, "z": -8192.0, "px": 2692.4, "py": 649.9}, {"loc_id": 10704, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 23, "x": -3901.1, "z": -8771.2, "px": 1382.2, "py": 551.0}, {"loc_id": 10710, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 23, "x": -3580.8, "z": -8449.6, "px": 1436.9, "py": 605.9}, {"loc_id": 10711, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 23, "x": 3838.3, "z": -8457.0, "px": 2703.1, "py": 604.7}, {"loc_id": 10734, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 23, "x": -185.1, "z": -8767.1, "px": 2016.4, "py": 551.7}, {"loc_id": 27, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 22, "x": -3648.3, "z": -4161.2, "px": 1425.4, "py": 1337.8}, {"loc_id": 32, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 22, "x": 3386.5, "z": -4286.1, "px": 2626.0, "py": 1316.5}, {"loc_id": 34, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 22, "x": 1475.7, "z": 2164.3, "px": 2299.9, "py": 2417.4}, {"loc_id": 42, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 22, "x": 3699.8, "z": 4355.8, "px": 2679.4, "py": 2791.4}, {"loc_id": 51, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 22, "x": 4555.6, "z": -3149.3, "px": 2825.5, "py": 1510.5}, {"loc_id": 54, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 22, "x": 133.7, "z": 2553.3, "px": 2070.8, "py": 2483.8}, {"loc_id": 61, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 22, "x": -3631.6, "z": 3121.5, "px": 1428.2, "py": 2580.7}, {"loc_id": 80, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 22, "x": 2377.0, "z": -1156.8, "px": 2453.7, "py": 1850.6}, {"loc_id": 86, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 22, "x": -3576.1, "z": 180.7, "px": 1437.7, "py": 2078.8}, {"loc_id": 88, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 22, "x": 2353.7, "z": 270.7, "px": 2449.7, "py": 2094.2}, {"loc_id": 146, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 22, "x": -1070.8, "z": -5708.6, "px": 1865.3, "py": 1073.7}, {"loc_id": 158, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 22, "x": -4423.2, "z": 1289.1, "px": 1293.1, "py": 2268.0}, {"loc_id": 175, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 22, "x": -3717.0, "z": -4233.5, "px": 1413.6, "py": 1325.5}, {"loc_id": 180, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 22, "x": 3381.3, "z": -4433.3, "px": 2625.1, "py": 1291.4}, {"loc_id": 186, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 22, "x": -5617.1, "z": -1099.6, "px": 1089.3, "py": 1860.3}, {"loc_id": 190, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 22, "x": 1354.8, "z": 2124.8, "px": 2279.2, "py": 2410.6}, {"loc_id": 696, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 22, "x": 4672.0, "z": -4672.0, "px": 2845.4, "py": 1250.6}, {"loc_id": 701, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 22, "x": -1152.0, "z": -7040.0, "px": 1851.4, "py": 846.5}, {"loc_id": 728, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 22, "x": 7680.0, "z": -2368.0, "px": 3358.7, "py": 1643.9}, {"loc_id": 778, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 22, "x": -7616.0, "z": 1216.0, "px": 748.2, "py": 2255.5}, {"loc_id": 785, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 22, "x": -192.0, "z": -6400.0, "px": 2015.2, "py": 955.7}, {"loc_id": 883, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 22, "x": 576.0, "z": 6784.0, "px": 2146.3, "py": 3205.8}, {"loc_id": 1993, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 22, "x": -5949.7, "z": 1468.8, "px": 1032.6, "py": 2298.7}, {"loc_id": 2008, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 22, "x": 8127.2, "z": -263.8, "px": 3435.0, "py": 2003.0}, {"loc_id": 2050, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 22, "x": 1149.0, "z": 5321.2, "px": 2244.1, "py": 2956.2}, {"loc_id": 2054, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 22, "x": -5577.5, "z": -5061.9, "px": 1096.1, "py": 1184.1}, {"loc_id": 2066, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 22, "x": 5948.5, "z": 1414.3, "px": 3063.2, "py": 2289.4}, {"loc_id": 2071, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 22, "x": 1793.0, "z": -4478.1, "px": 2354.0, "py": 1283.7}, {"loc_id": 2083, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 22, "x": -4296.8, "z": -6398.2, "px": 1314.7, "py": 956.0}, {"loc_id": 2112, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 22, "x": 5188.7, "z": 5240.8, "px": 2933.5, "py": 2942.4}, {"loc_id": 2136, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 22, "x": 2248.8, "z": -1352.8, "px": 2431.8, "py": 1817.1}, {"loc_id": 2139, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 22, "x": -5886.6, "z": 4606.1, "px": 1043.4, "py": 2834.1}, {"loc_id": 2154, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 22, "x": 2556.2, "z": 5818.7, "px": 2484.3, "py": 3041.1}, {"loc_id": 2162, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 22, "x": 7797.5, "z": -3061.1, "px": 3378.8, "py": 1525.6}, {"loc_id": 3036, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 3969.5, "z": -1152.7, "px": 2725.5, "py": 1851.3}, {"loc_id": 3039, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 4095.8, "z": -897.4, "px": 2747.0, "py": 1894.8}, {"loc_id": 3043, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": -4863.5, "z": 3966.2, "px": 1218.0, "py": 2724.9}, {"loc_id": 3046, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 4289.0, "z": 5185.2, "px": 2780.0, "py": 2932.9}, {"loc_id": 3049, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 3265.8, "z": -1407.4, "px": 2605.4, "py": 1807.8}, {"loc_id": 3050, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 766.5, "z": -7231.9, "px": 2178.8, "py": 813.8}, {"loc_id": 3060, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 22, "x": -5758.6, "z": -1345.1, "px": 1065.2, "py": 1818.4}, {"loc_id": 3060, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": -5758.6, "z": -1345.1, "px": 1065.2, "py": 1818.4}, {"loc_id": 3061, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": -4223.5, "z": 3007.5, "px": 1327.2, "py": 2561.3}, {"loc_id": 3065, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": -4544.0, "z": -5568.1, "px": 1272.5, "py": 1097.7}, {"loc_id": 3073, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": -3968.4, "z": 1150.8, "px": 1370.7, "py": 2244.4}, {"loc_id": 3080, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": -3967.4, "z": 3841.4, "px": 1370.9, "py": 2703.6}, {"loc_id": 3081, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": -3137.5, "z": 5951.5, "px": 1512.5, "py": 3063.7}, {"loc_id": 3089, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 2750.5, "z": -5567.8, "px": 2517.4, "py": 1097.8}, {"loc_id": 3090, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 1022.6, "z": 5824.3, "px": 2222.5, "py": 3042.0}, {"loc_id": 3105, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": -2880.0, "z": 5761.0, "px": 1556.5, "py": 3031.2}, {"loc_id": 3121, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 22, "x": -2816.6, "z": -7168.1, "px": 1567.3, "py": 824.6}, {"loc_id": 3121, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": -2816.6, "z": -7168.1, "px": 1567.3, "py": 824.6}, {"loc_id": 3129, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 2816.9, "z": -3392.4, "px": 2528.8, "py": 1469.0}, {"loc_id": 3130, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 7166.7, "z": 1791.3, "px": 3271.1, "py": 2353.7}, {"loc_id": 3131, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": -4031.6, "z": 63.7, "px": 1359.9, "py": 2058.9}, {"loc_id": 3133, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 3840.8, "z": 4158.3, "px": 2703.5, "py": 2757.7}, {"loc_id": 3134, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 4606.7, "z": -1534.5, "px": 2834.2, "py": 1786.1}, {"loc_id": 3138, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 1151.3, "z": 3776.1, "px": 2244.5, "py": 2692.5}, {"loc_id": 3140, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": -2879.7, "z": 831.4, "px": 1556.5, "py": 2189.9}, {"loc_id": 3141, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 22, "x": 1857.8, "z": 3713.0, "px": 2365.1, "py": 2681.7}, {"loc_id": 3141, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 1857.8, "z": 3713.0, "px": 2365.1, "py": 2681.7}, {"loc_id": 3151, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 22, "x": 4926.9, "z": -1279.3, "px": 2888.9, "py": 1829.7}, {"loc_id": 3151, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 4926.9, "z": -1279.3, "px": 2888.9, "py": 1829.7}, {"loc_id": 3154, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": -961.8, "z": 4159.9, "px": 1883.9, "py": 2758.0}, {"loc_id": 3166, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 22, "x": -2368.6, "z": 4031.0, "px": 1643.8, "py": 2736.0}, {"loc_id": 3168, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 3712.5, "z": -448.2, "px": 2681.6, "py": 1971.5}, {"loc_id": 3168, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 22, "x": 3712.5, "z": -448.2, "px": 2681.6, "py": 1971.5}, {"loc_id": 3169, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 4735.7, "z": 3071.3, "px": 2856.2, "py": 2572.2}, {"loc_id": 3171, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": -1023.3, "z": -6271.8, "px": 1873.4, "py": 977.6}, {"loc_id": 3177, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 6784.1, "z": 2881.4, "px": 3205.8, "py": 2539.8}, {"loc_id": 3182, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 5184.7, "z": 4800.3, "px": 2932.9, "py": 2867.3}, {"loc_id": 3185, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 3839.5, "z": 4673.0, "px": 2703.3, "py": 2845.5}, {"loc_id": 3190, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": -1854.6, "z": 3328.0, "px": 1731.5, "py": 2616.0}, {"loc_id": 3201, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": -1280.2, "z": -6655.9, "px": 1829.5, "py": 912.1}, {"loc_id": 3210, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": -3584.7, "z": 7105.2, "px": 1436.2, "py": 3260.6}, {"loc_id": 3211, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 2048.1, "z": 4415.5, "px": 2397.5, "py": 2801.6}, {"loc_id": 3212, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": -896.0, "z": -4032.1, "px": 1895.1, "py": 1359.9}, {"loc_id": 3213, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": -6656.3, "z": -3646.2, "px": 912.0, "py": 1425.7}, {"loc_id": 3221, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 7105.1, "z": 2113.2, "px": 3260.6, "py": 2408.7}, {"loc_id": 3222, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 22, "x": 896.5, "z": 3584.0, "px": 2201.0, "py": 2659.7}, {"loc_id": 4122, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 22, "x": 3384.6, "z": -2614.5, "px": 2625.6, "py": 1601.8}, {"loc_id": 4129, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 22, "x": -6527.9, "z": 5445.1, "px": 933.9, "py": 2977.3}, {"loc_id": 4163, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 22, "x": -1787.8, "z": -4426.4, "px": 1742.9, "py": 1292.6}, {"loc_id": 4180, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 22, "x": 1992.1, "z": -4477.5, "px": 2388.0, "py": 1283.8}, {"loc_id": 4213, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 22, "x": -9607.3, "z": 584.3, "px": 408.4, "py": 2147.7}, {"loc_id": 4267, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 22, "x": -3721.4, "z": 6782.4, "px": 1412.9, "py": 3205.5}, {"loc_id": 4271, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 22, "x": -6662.5, "z": 5429.6, "px": 910.9, "py": 2974.7}, {"loc_id": 4274, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 22, "x": -9671.9, "z": -2564.5, "px": 397.3, "py": 1610.3}, {"loc_id": 4280, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 22, "x": -2302.1, "z": -3017.9, "px": 1655.1, "py": 1532.9}, {"loc_id": 4335, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 22, "x": -2042.7, "z": -5630.1, "px": 1699.4, "py": 1087.1}, {"loc_id": 4342, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 22, "x": -8323.5, "z": -1738.5, "px": 627.5, "py": 1751.3}, {"loc_id": 4357, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 22, "x": 7558.7, "z": -2818.9, "px": 3338.0, "py": 1566.9}, {"loc_id": 4360, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 22, "x": -3975.9, "z": -574.4, "px": 1369.4, "py": 1950.0}, {"loc_id": 4384, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 22, "x": 1482.1, "z": 6272.2, "px": 2300.9, "py": 3118.5}, {"loc_id": 4393, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 22, "x": -7365.5, "z": -1859.4, "px": 791.0, "py": 1730.7}, {"loc_id": 4406, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 22, "x": -6645.1, "z": 3574.4, "px": 913.9, "py": 2658.0}, {"loc_id": 4410, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 22, "x": 3274.8, "z": -4.6, "px": 2606.9, "py": 2047.2}, {"loc_id": 4432, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 22, "x": -890.1, "z": -5825.4, "px": 1896.1, "py": 1053.8}, {"loc_id": 4470, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 22, "x": -1216.5, "z": 2569.6, "px": 1840.4, "py": 2486.5}, {"loc_id": 4497, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 22, "x": 4920.5, "z": 198.6, "px": 2887.8, "py": 2081.9}, {"loc_id": 7251, "loc_name": "BigRockClearing", "item": "Pickable: StoneRock", "count": 22, "x": 1733.5, "z": -975.8, "px": 2343.9, "py": 1881.5}, {"loc_id": 7252, "loc_name": "BigRockClearing", "item": "Pickable: StoneRock", "count": 22, "x": -3378.2, "z": 4400.8, "px": 1471.5, "py": 2799.1}, {"loc_id": 7253, "loc_name": "BigRockClearing", "item": "Pickable: StoneRock", "count": 22, "x": 945.2, "z": 5263.8, "px": 2209.3, "py": 2946.4}, {"loc_id": 7254, "loc_name": "BigRockClearing", "item": "Pickable: StoneRock", "count": 22, "x": 8141.5, "z": 1.1, "px": 3437.5, "py": 2048.2}, {"loc_id": 7255, "loc_name": "BigRockClearing", "item": "Pickable: StoneRock", "count": 22, "x": -8269.2, "z": -1778.7, "px": 636.7, "py": 1744.4}, {"loc_id": 7256, "loc_name": "BigRockClearing", "item": "Pickable: StoneRock", "count": 22, "x": -9275.7, "z": 3008.8, "px": 464.9, "py": 2561.5}, {"loc_id": 7257, "loc_name": "BigRockClearing", "item": "Pickable: StoneRock", "count": 22, "x": 8075.3, "z": -2377.8, "px": 3426.2, "py": 1642.2}, {"loc_id": 7258, "loc_name": "BigRockClearing", "item": "Pickable: StoneRock", "count": 22, "x": 2229.1, "z": 1138.5, "px": 2428.4, "py": 2242.3}, {"loc_id": 7259, "loc_name": "BigRockClearing", "item": "Pickable: StoneRock", "count": 22, "x": -1717.3, "z": -4293.8, "px": 1754.9, "py": 1315.2}, {"loc_id": 7260, "loc_name": "BigRockClearing", "item": "Pickable: StoneRock", "count": 22, "x": 2567.2, "z": -3590.6, "px": 2486.1, "py": 1435.2}, {"loc_id": 7457, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 22, "x": 2560.0, "z": 896.0, "px": 2484.9, "py": 2200.9}, {"loc_id": 7464, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 22, "x": -6656.0, "z": -1984.0, "px": 912.0, "py": 1709.4}, {"loc_id": 7464, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 22, "x": -6656.0, "z": -1984.0, "px": 912.0, "py": 1709.4}, {"loc_id": 7467, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 22, "x": 2688.0, "z": -2688.0, "px": 2506.8, "py": 1589.2}, {"loc_id": 7468, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 22, "x": 1472.0, "z": 6848.0, "px": 2299.2, "py": 3216.7}, {"loc_id": 7473, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 22, "x": 0.0, "z": -1152.0, "px": 2048.0, "py": 1851.4}, {"loc_id": 7473, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 22, "x": 0.0, "z": -1152.0, "px": 2048.0, "py": 1851.4}, {"loc_id": 7484, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 22, "x": 2240.0, "z": -2688.0, "px": 2430.3, "py": 1589.2}, {"loc_id": 7489, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 22, "x": 7040.0, "z": -512.0, "px": 3249.5, "py": 1960.6}, {"loc_id": 7515, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 22, "x": 1216.0, "z": 4864.0, "px": 2255.5, "py": 2878.1}, {"loc_id": 7517, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 22, "x": 7488.0, "z": 3968.0, "px": 3326.0, "py": 2725.2}, {"loc_id": 7518, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 22, "x": 2560.0, "z": 8768.0, "px": 2484.9, "py": 3544.4}, {"loc_id": 7536, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 22, "x": 2112.0, "z": -3520.0, "px": 2408.4, "py": 1447.3}, {"loc_id": 10035, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 22, "x": -5248.0, "z": -8256.0, "px": 1152.3, "py": 639.0}, {"loc_id": 10054, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 22, "x": -3776.0, "z": -8128.0, "px": 1403.6, "py": 660.8}, {"loc_id": 10076, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 22, "x": 832.0, "z": -9408.0, "px": 2190.0, "py": 442.4}, {"loc_id": 10678, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 22, "x": -2690.0, "z": -8705.1, "px": 1588.9, "py": 562.3}, {"loc_id": 10693, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 22, "x": 1725.8, "z": -9399.6, "px": 2342.5, "py": 443.8}, {"loc_id": 10723, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 22, "x": -3384.7, "z": -8955.3, "px": 1470.3, "py": 519.6}, {"loc_id": 49, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 21, "x": -2494.1, "z": 4982.9, "px": 1622.3, "py": 2898.4}, {"loc_id": 67, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 21, "x": -79.4, "z": 2703.3, "px": 2034.4, "py": 2509.4}, {"loc_id": 72, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 21, "x": 4479.3, "z": -2945.6, "px": 2812.5, "py": 1545.3}, {"loc_id": 72, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 21, "x": 4479.3, "z": -2945.6, "px": 2812.5, "py": 1545.3}, {"loc_id": 75, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 21, "x": -5701.0, "z": -1147.1, "px": 1075.0, "py": 1852.2}, {"loc_id": 85, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 21, "x": -1139.7, "z": -5705.5, "px": 1853.5, "py": 1074.3}, {"loc_id": 87, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 21, "x": 3310.7, "z": -4417.7, "px": 2613.0, "py": 1294.0}, {"loc_id": 99, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 21, "x": -1920.0, "z": 4600.7, "px": 1720.3, "py": 2833.2}, {"loc_id": 103, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 21, "x": -5489.1, "z": 1993.6, "px": 1111.2, "py": 2388.2}, {"loc_id": 109, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 21, "x": -1078.2, "z": -3658.3, "px": 1864.0, "py": 1423.7}, {"loc_id": 123, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 21, "x": 2317.7, "z": 334.7, "px": 2443.6, "py": 2105.1}, {"loc_id": 125, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 21, "x": -5361.6, "z": 1717.9, "px": 1133.0, "py": 2341.2}, {"loc_id": 137, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 21, "x": 2561.4, "z": -16.1, "px": 2485.1, "py": 2045.3}, {"loc_id": 150, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 21, "x": 3631.8, "z": 1023.6, "px": 2667.8, "py": 2222.7}, {"loc_id": 164, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 21, "x": -144.7, "z": 2735.8, "px": 2023.3, "py": 2514.9}, {"loc_id": 166, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 21, "x": -2244.3, "z": 4276.9, "px": 1665.0, "py": 2777.9}, {"loc_id": 188, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 21, "x": 4725.5, "z": -880.8, "px": 2854.5, "py": 1897.7}, {"loc_id": 657, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 21, "x": -8320.0, "z": 320.0, "px": 628.1, "py": 2102.6}, {"loc_id": 664, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 21, "x": 5952.0, "z": 5120.0, "px": 3063.8, "py": 2921.8}, {"loc_id": 679, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 21, "x": 4096.0, "z": -5888.0, "px": 2747.1, "py": 1043.1}, {"loc_id": 706, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 21, "x": 9728.0, "z": 1536.0, "px": 3708.2, "py": 2310.1}, {"loc_id": 723, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 21, "x": 8768.0, "z": -2944.0, "px": 3544.4, "py": 1545.6}, {"loc_id": 781, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 21, "x": -6144.0, "z": 3520.0, "px": 999.4, "py": 2648.7}, {"loc_id": 821, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 21, "x": 384.0, "z": 7552.0, "px": 2113.5, "py": 3336.9}, {"loc_id": 864, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 21, "x": 6592.0, "z": -192.0, "px": 3173.0, "py": 2015.2}, {"loc_id": 869, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 21, "x": -6528.0, "z": -4416.0, "px": 933.9, "py": 1294.3}, {"loc_id": 1987, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 21, "x": -3193.8, "z": 4469.9, "px": 1502.9, "py": 2810.9}, {"loc_id": 2030, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 21, "x": -8439.3, "z": -1721.8, "px": 607.7, "py": 1754.1}, {"loc_id": 2085, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 21, "x": 761.4, "z": 4665.8, "px": 2177.9, "py": 2844.3}, {"loc_id": 2089, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 21, "x": 2170.4, "z": -707.7, "px": 2418.4, "py": 1927.2}, {"loc_id": 2095, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 21, "x": -1910.0, "z": -4163.4, "px": 1722.0, "py": 1337.4}, {"loc_id": 2106, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 21, "x": 3317.8, "z": -2698.3, "px": 2614.2, "py": 1587.5}, {"loc_id": 2113, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 21, "x": 502.9, "z": 377.9, "px": 2133.8, "py": 2112.5}, {"loc_id": 2155, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 21, "x": 2501.3, "z": -3655.8, "px": 2474.9, "py": 1424.1}, {"loc_id": 2171, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 21, "x": -5879.9, "z": -5111.8, "px": 1044.5, "py": 1175.6}, {"loc_id": 3042, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 21, "x": 5184.1, "z": -2368.4, "px": 2932.8, "py": 1643.8}, {"loc_id": 3051, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 21, "x": 3073.0, "z": 3198.7, "px": 2572.5, "py": 2593.9}, {"loc_id": 3067, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 21, "x": -2816.7, "z": 2177.2, "px": 1567.3, "py": 2419.6}, {"loc_id": 3069, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 21, "x": -3393.3, "z": 2305.2, "px": 1468.9, "py": 2441.4}, {"loc_id": 3074, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 21, "x": 6720.6, "z": 2302.1, "px": 3195.0, "py": 2440.9}, {"loc_id": 3080, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 21, "x": -3967.4, "z": 3841.4, "px": 1370.9, "py": 2703.6}, {"loc_id": 3091, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 21, "x": -7103.0, "z": -1.0, "px": 835.8, "py": 2047.8}, {"loc_id": 3150, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 21, "x": 4160.5, "z": 1473.5, "px": 2758.1, "py": 2299.5}, {"loc_id": 3177, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 21, "x": 6784.1, "z": 2881.4, "px": 3205.8, "py": 2539.8}, {"loc_id": 3194, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 21, "x": -3327.1, "z": -1663.5, "px": 1480.2, "py": 1764.1}, {"loc_id": 3195, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 21, "x": -4928.4, "z": -1985.0, "px": 1206.9, "py": 1709.2}, {"loc_id": 3206, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 21, "x": -3649.1, "z": -1920.6, "px": 1425.2, "py": 1720.2}, {"loc_id": 3221, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 21, "x": 7105.1, "z": 2113.2, "px": 3260.6, "py": 2408.7}, {"loc_id": 3664, "loc_name": "WoodFarm1", "item": "Pickable: Raspberry", "count": 21, "x": -1344.0, "z": -768.0, "px": 1818.6, "py": 1916.9}, {"loc_id": 4130, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 21, "x": 4938.7, "z": -2114.9, "px": 2890.9, "py": 1687.1}, {"loc_id": 4148, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 21, "x": 2038.7, "z": -1161.5, "px": 2395.9, "py": 1849.8}, {"loc_id": 4148, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 21, "x": 2038.7, "z": -1161.5, "px": 2395.9, "py": 1849.8}, {"loc_id": 4154, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 21, "x": -1339.3, "z": -1343.6, "px": 1819.4, "py": 1818.7}, {"loc_id": 4156, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 21, "x": 6653.1, "z": 4920.0, "px": 3183.5, "py": 2887.7}, {"loc_id": 4161, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 21, "x": 6406.0, "z": 3253.2, "px": 3141.3, "py": 2603.2}, {"loc_id": 4195, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 21, "x": 3199.5, "z": -2569.3, "px": 2594.0, "py": 1609.5}, {"loc_id": 4201, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 21, "x": 1916.7, "z": 7036.3, "px": 2375.1, "py": 3248.9}, {"loc_id": 4241, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 21, "x": 6474.4, "z": 4791.9, "px": 3153.0, "py": 2865.8}, {"loc_id": 4245, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 21, "x": 8067.7, "z": 323.4, "px": 3424.9, "py": 2103.2}, {"loc_id": 4257, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 21, "x": -649.4, "z": -6517.8, "px": 1937.2, "py": 935.6}, {"loc_id": 4259, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 21, "x": 7996.1, "z": -2755.7, "px": 3412.7, "py": 1577.7}, {"loc_id": 4297, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 21, "x": 968.5, "z": 5317.9, "px": 2213.3, "py": 2955.6}, {"loc_id": 4297, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 21, "x": 968.5, "z": 5317.9, "px": 2213.3, "py": 2955.6}, {"loc_id": 4319, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 21, "x": 2298.7, "z": -522.1, "px": 2440.3, "py": 1958.9}, {"loc_id": 4329, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 21, "x": 7222.2, "z": -4105.2, "px": 3280.6, "py": 1347.4}, {"loc_id": 4417, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 21, "x": 7298.0, "z": -4547.5, "px": 3293.5, "py": 1271.9}, {"loc_id": 4443, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 21, "x": 1025.3, "z": -5563.5, "px": 2223.0, "py": 1098.5}, {"loc_id": 4476, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 21, "x": -3898.5, "z": -138.6, "px": 1382.7, "py": 2024.3}, {"loc_id": 7444, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 21, "x": 5696.0, "z": 2112.0, "px": 3020.1, "py": 2408.4}, {"loc_id": 7468, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 21, "x": 1472.0, "z": 6848.0, "px": 2299.2, "py": 3216.7}, {"loc_id": 7468, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 21, "x": 1472.0, "z": 6848.0, "px": 2299.2, "py": 3216.7}, {"loc_id": 7477, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 21, "x": 2880.0, "z": 768.0, "px": 2539.5, "py": 2179.1}, {"loc_id": 7482, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 21, "x": 4288.0, "z": -5824.0, "px": 2779.8, "py": 1054.0}, {"loc_id": 7490, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 21, "x": -6848.0, "z": -2176.0, "px": 879.3, "py": 1676.6}, {"loc_id": 7504, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 21, "x": 5504.0, "z": 64.0, "px": 2987.3, "py": 2058.9}, {"loc_id": 7505, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 21, "x": 5952.0, "z": 4672.0, "px": 3063.8, "py": 2845.4}, {"loc_id": 7528, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 21, "x": -6848.0, "z": 6848.0, "px": 879.3, "py": 3216.7}, {"loc_id": 7533, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 21, "x": -8576.0, "z": -960.0, "px": 584.4, "py": 1884.2}, {"loc_id": 7534, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 21, "x": 896.0, "z": -2432.0, "px": 2200.9, "py": 1632.9}, {"loc_id": 7534, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 21, "x": 896.0, "z": -2432.0, "px": 2200.9, "py": 1632.9}, {"loc_id": 7538, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 21, "x": 6208.0, "z": 4544.0, "px": 3107.5, "py": 2823.5}, {"loc_id": 7541, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 21, "x": -320.0, "z": -1280.0, "px": 1993.4, "py": 1829.5}, {"loc_id": 7546, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 21, "x": -4480.0, "z": -64.0, "px": 1283.4, "py": 2037.1}, {"loc_id": 7549, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 21, "x": 2496.0, "z": -2560.0, "px": 2474.0, "py": 1611.1}, {"loc_id": 7551, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 21, "x": -1920.0, "z": -576.0, "px": 1720.3, "py": 1949.7}, {"loc_id": 7553, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 21, "x": -6080.0, "z": -320.0, "px": 1010.3, "py": 1993.4}, {"loc_id": 7554, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 21, "x": 3776.0, "z": -128.0, "px": 2692.4, "py": 2026.2}, {"loc_id": 7559, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 21, "x": -4096.0, "z": 1600.0, "px": 1348.9, "py": 2321.1}, {"loc_id": 7569, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 21, "x": -5376.0, "z": 4992.0, "px": 1130.5, "py": 2900.0}, {"loc_id": 7569, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 21, "x": -5376.0, "z": 4992.0, "px": 1130.5, "py": 2900.0}, {"loc_id": 7571, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 21, "x": -7232.0, "z": -1024.0, "px": 813.7, "py": 1873.2}, {"loc_id": 10679, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 21, "x": 2747.6, "z": -8889.6, "px": 2516.9, "py": 530.8}, {"loc_id": 10712, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 21, "x": 1910.5, "z": -8440.1, "px": 2374.1, "py": 607.6}, {"loc_id": 10713, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 21, "x": -5309.5, "z": -7751.3, "px": 1141.8, "py": 725.1}, {"loc_id": 10726, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 21, "x": -2614.2, "z": -8834.8, "px": 1601.8, "py": 540.2}, {"loc_id": 18, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 20, "x": 2438.5, "z": -1087.3, "px": 2464.2, "py": 1862.4}, {"loc_id": 45, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 20, "x": -2578.0, "z": -1589.3, "px": 1608.0, "py": 1776.8}, {"loc_id": 71, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 20, "x": 1918.6, "z": 1526.0, "px": 2375.4, "py": 2308.4}, {"loc_id": 81, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 20, "x": -888.8, "z": -3716.9, "px": 1896.3, "py": 1413.6}, {"loc_id": 89, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 20, "x": -1936.1, "z": 4537.9, "px": 1717.6, "py": 2822.5}, {"loc_id": 108, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 20, "x": 521.3, "z": 2624.5, "px": 2137.0, "py": 2495.9}, {"loc_id": 122, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 20, "x": 2226.5, "z": 268.7, "px": 2428.0, "py": 2093.9}, {"loc_id": 126, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 20, "x": 2176.0, "z": 447.6, "px": 2419.4, "py": 2124.4}, {"loc_id": 127, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 20, "x": 3631.1, "z": 716.1, "px": 2667.7, "py": 2170.2}, {"loc_id": 134, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 20, "x": -3640.2, "z": 3214.4, "px": 1426.7, "py": 2596.6}, {"loc_id": 161, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 20, "x": -2701.2, "z": -912.1, "px": 1587.0, "py": 1892.3}, {"loc_id": 170, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 20, "x": -4366.3, "z": 396.5, "px": 1302.8, "py": 2115.7}, {"loc_id": 660, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 20, "x": -6080.0, "z": -896.0, "px": 1010.3, "py": 1895.1}, {"loc_id": 669, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 20, "x": -2112.0, "z": 7360.0, "px": 1687.6, "py": 3304.1}, {"loc_id": 680, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 20, "x": 8128.0, "z": -3136.0, "px": 3435.2, "py": 1512.8}, {"loc_id": 777, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 20, "x": 4864.0, "z": 6208.0, "px": 2878.1, "py": 3107.5}, {"loc_id": 794, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 20, "x": -8320.0, "z": 64.0, "px": 628.1, "py": 2058.9}, {"loc_id": 812, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 20, "x": 6848.0, "z": -256.0, "px": 3216.7, "py": 2004.3}, {"loc_id": 824, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 20, "x": -2368.0, "z": -6464.0, "px": 1643.9, "py": 944.8}, {"loc_id": 871, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 20, "x": -6016.0, "z": 2880.0, "px": 1021.3, "py": 2539.5}, {"loc_id": 889, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 20, "x": 7360.0, "z": 4544.0, "px": 3304.1, "py": 2823.5}, {"loc_id": 1991, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 20, "x": -1736.3, "z": -4225.4, "px": 1751.7, "py": 1326.9}, {"loc_id": 2000, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 20, "x": 8261.5, "z": -2503.6, "px": 3458.0, "py": 1620.7}, {"loc_id": 2023, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 20, "x": -4614.5, "z": 5449.2, "px": 1260.5, "py": 2978.0}, {"loc_id": 2025, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 20, "x": 5246.9, "z": 4990.5, "px": 2943.5, "py": 2899.7}, {"loc_id": 2028, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 20, "x": 9860.3, "z": -1604.7, "px": 3730.8, "py": 1774.1}, {"loc_id": 2040, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 20, "x": 3391.7, "z": 3514.9, "px": 2626.9, "py": 2647.9}, {"loc_id": 2070, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 20, "x": -4618.1, "z": 5752.9, "px": 1259.8, "py": 3029.8}, {"loc_id": 2076, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 20, "x": 1978.5, "z": 1274.9, "px": 2385.7, "py": 2265.6}, {"loc_id": 2081, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 20, "x": -9975.8, "z": -134.2, "px": 345.5, "py": 2025.1}, {"loc_id": 2081, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 20, "x": -9975.8, "z": -134.2, "px": 345.5, "py": 2025.1}, {"loc_id": 2108, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 20, "x": 7680.5, "z": -2887.2, "px": 3358.8, "py": 1555.3}, {"loc_id": 2110, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 20, "x": -7299.5, "z": -3591.5, "px": 802.2, "py": 1435.1}, {"loc_id": 2130, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 20, "x": -1981.4, "z": -5691.3, "px": 1709.8, "py": 1076.7}, {"loc_id": 2143, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 20, "x": 2561.5, "z": 450.1, "px": 2485.2, "py": 2124.8}, {"loc_id": 2144, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 20, "x": -7431.3, "z": -1848.0, "px": 779.7, "py": 1732.6}, {"loc_id": 2146, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 20, "x": 3189.9, "z": -2681.3, "px": 2592.4, "py": 1590.4}, {"loc_id": 2161, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 20, "x": 3962.9, "z": 7040.8, "px": 2724.3, "py": 3249.6}, {"loc_id": 3044, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 20, "x": -1024.1, "z": -4863.7, "px": 1873.2, "py": 1217.9}, {"loc_id": 3061, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 20, "x": -4223.5, "z": 3007.5, "px": 1327.2, "py": 2561.3}, {"loc_id": 3072, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 20, "x": -4353.3, "z": -2241.8, "px": 1305.0, "py": 1665.4}, {"loc_id": 3073, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 20, "x": -3968.4, "z": 1150.8, "px": 1370.7, "py": 2244.4}, {"loc_id": 3124, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 20, "x": -3134.6, "z": -2367.8, "px": 1513.0, "py": 1643.9}, {"loc_id": 3130, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 20, "x": 7166.7, "z": 1791.3, "px": 3271.1, "py": 2353.7}, {"loc_id": 3138, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 20, "x": 1151.3, "z": 3776.1, "px": 2244.5, "py": 2692.5}, {"loc_id": 3185, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 20, "x": 3839.5, "z": 4673.0, "px": 2703.3, "py": 2845.5}, {"loc_id": 3225, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 20, "x": 2945.0, "z": -5056.6, "px": 2550.6, "py": 1185.0}, {"loc_id": 4121, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 20, "x": 3272.7, "z": -4548.3, "px": 2606.5, "py": 1271.8}, {"loc_id": 4148, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 20, "x": 2038.7, "z": -1161.5, "px": 2395.9, "py": 1849.8}, {"loc_id": 4164, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 20, "x": -7426.8, "z": -4985.2, "px": 780.5, "py": 1197.2}, {"loc_id": 4197, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 20, "x": -8693.4, "z": -457.0, "px": 564.3, "py": 1970.0}, {"loc_id": 4221, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 20, "x": -4150.3, "z": -117.1, "px": 1339.7, "py": 2028.0}, {"loc_id": 4234, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 20, "x": 2241.6, "z": 5178.2, "px": 2430.6, "py": 2931.7}, {"loc_id": 4253, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 20, "x": -7557.9, "z": -1993.0, "px": 758.1, "py": 1707.9}, {"loc_id": 4260, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 20, "x": -444.3, "z": -4292.0, "px": 1972.2, "py": 1315.5}, {"loc_id": 4278, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 20, "x": 2569.6, "z": 4988.7, "px": 2486.5, "py": 2899.4}, {"loc_id": 4290, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 20, "x": -8455.7, "z": -1866.4, "px": 604.9, "py": 1729.5}, {"loc_id": 4295, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 20, "x": -8200.0, "z": 2570.1, "px": 648.5, "py": 2486.6}, {"loc_id": 4306, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 20, "x": 3400.3, "z": -2175.3, "px": 2628.3, "py": 1676.7}, {"loc_id": 4315, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 20, "x": 7231.3, "z": 1270.3, "px": 3282.1, "py": 2264.8}, {"loc_id": 4317, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 20, "x": 2230.8, "z": 1097.7, "px": 2428.7, "py": 2235.3}, {"loc_id": 4333, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 20, "x": -7349.3, "z": -1663.5, "px": 793.7, "py": 1764.1}, {"loc_id": 4377, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 20, "x": 4170.2, "z": -1086.8, "px": 2759.7, "py": 1862.5}, {"loc_id": 4385, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 20, "x": 2042.6, "z": 3914.5, "px": 2396.6, "py": 2716.1}, {"loc_id": 4390, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 20, "x": 2373.4, "z": 3769.6, "px": 2453.1, "py": 2691.3}, {"loc_id": 4403, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 20, "x": -5239.2, "z": 764.2, "px": 1153.8, "py": 2178.4}, {"loc_id": 4403, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 20, "x": -5239.2, "z": 764.2, "px": 1153.8, "py": 2178.4}, {"loc_id": 4415, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 20, "x": -5956.5, "z": -70.0, "px": 1031.4, "py": 2036.1}, {"loc_id": 4438, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 20, "x": -7037.2, "z": 246.7, "px": 847.0, "py": 2090.1}, {"loc_id": 4439, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 20, "x": 5825.4, "z": -4736.0, "px": 3042.2, "py": 1239.7}, {"loc_id": 4461, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 20, "x": 8072.0, "z": -2489.1, "px": 3425.6, "py": 1623.2}, {"loc_id": 4471, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 20, "x": 6596.3, "z": 3146.6, "px": 3173.8, "py": 2585.0}, {"loc_id": 4476, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 20, "x": -3898.5, "z": -138.6, "px": 1382.7, "py": 2024.3}, {"loc_id": 4480, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 20, "x": -124.8, "z": -4743.5, "px": 2026.7, "py": 1238.4}, {"loc_id": 4496, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 20, "x": -886.5, "z": 518.3, "px": 1896.7, "py": 2136.5}, {"loc_id": 7448, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 20, "x": 2240.0, "z": 8768.0, "px": 2430.3, "py": 3544.4}, {"loc_id": 7476, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 20, "x": 2496.0, "z": -2816.0, "px": 2474.0, "py": 1567.4}, {"loc_id": 7481, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 20, "x": -832.0, "z": 8512.0, "px": 1906.0, "py": 3500.7}, {"loc_id": 7505, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 20, "x": 5952.0, "z": 4672.0, "px": 3063.8, "py": 2845.4}, {"loc_id": 7518, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 20, "x": 2560.0, "z": 8768.0, "px": 2484.9, "py": 3544.4}, {"loc_id": 7523, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 20, "x": 6016.0, "z": 4288.0, "px": 3074.7, "py": 2779.8}, {"loc_id": 7528, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 20, "x": -6848.0, "z": 6848.0, "px": 879.3, "py": 3216.7}, {"loc_id": 7532, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 20, "x": -9984.0, "z": -512.0, "px": 344.1, "py": 1960.6}, {"loc_id": 7534, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 20, "x": 896.0, "z": -2432.0, "px": 2200.9, "py": 1632.9}, {"loc_id": 7541, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 20, "x": -320.0, "z": -1280.0, "px": 1993.4, "py": 1829.5}, {"loc_id": 7544, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 20, "x": -2432.0, "z": 1920.0, "px": 1632.9, "py": 2375.7}, {"loc_id": 7558, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 20, "x": -4416.0, "z": -3840.0, "px": 1294.3, "py": 1392.6}, {"loc_id": 7571, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 20, "x": -7232.0, "z": -1024.0, "px": 813.7, "py": 1873.2}, {"loc_id": 7573, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 20, "x": 2304.0, "z": -2880.0, "px": 2441.2, "py": 1556.5}, {"loc_id": 10682, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 20, "x": 3400.9, "z": -8071.2, "px": 2628.4, "py": 670.5}, {"loc_id": 10683, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 20, "x": -3460.0, "z": -8441.9, "px": 1457.5, "py": 607.2}, {"loc_id": 10700, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 20, "x": -1353.6, "z": -9475.0, "px": 1817.0, "py": 430.9}, {"loc_id": 10718, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 20, "x": -1342.7, "z": -9148.4, "px": 1818.8, "py": 486.7}, {"loc_id": 10721, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 20, "x": 2748.2, "z": -9022.6, "px": 2517.0, "py": 508.1}, {"loc_id": 19, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": 3320.3, "z": 4792.1, "px": 2614.7, "py": 2865.9}, {"loc_id": 21, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 19, "x": -4146.8, "z": 3646.5, "px": 1340.3, "py": 2670.3}, {"loc_id": 34, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 19, "x": 1475.7, "z": 2164.3, "px": 2299.9, "py": 2417.4}, {"loc_id": 38, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": -2445.9, "z": -4152.3, "px": 1630.6, "py": 1339.3}, {"loc_id": 38, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 19, "x": -2445.9, "z": -4152.3, "px": 1630.6, "py": 1339.3}, {"loc_id": 39, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": -562.3, "z": -4030.4, "px": 1952.0, "py": 1360.1}, {"loc_id": 66, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": -2736.5, "z": -1736.3, "px": 1581.0, "py": 1751.7}, {"loc_id": 70, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": 2613.0, "z": -138.8, "px": 2494.0, "py": 2024.3}, {"loc_id": 95, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": -4304.7, "z": 337.4, "px": 1313.3, "py": 2105.6}, {"loc_id": 98, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": 2425.8, "z": -1021.2, "px": 2462.0, "py": 1873.7}, {"loc_id": 100, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 19, "x": 2508.7, "z": -5306.2, "px": 2476.2, "py": 1142.4}, {"loc_id": 114, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": 1607.7, "z": 2117.6, "px": 2322.4, "py": 2409.4}, {"loc_id": 116, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 19, "x": 2291.5, "z": 250.0, "px": 2439.1, "py": 2090.7}, {"loc_id": 142, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 19, "x": -5046.4, "z": 1265.2, "px": 1186.7, "py": 2263.9}, {"loc_id": 156, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 19, "x": 3335.7, "z": -4334.9, "px": 2617.3, "py": 1308.2}, {"loc_id": 161, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": -2701.2, "z": -912.1, "px": 1587.0, "py": 1892.3}, {"loc_id": 162, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": 3787.7, "z": 697.4, "px": 2694.4, "py": 2167.0}, {"loc_id": 178, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": -4272.5, "z": 3640.1, "px": 1318.8, "py": 2669.2}, {"loc_id": 184, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": -819.9, "z": -3633.2, "px": 1908.1, "py": 1427.9}, {"loc_id": 681, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 19, "x": -8576.0, "z": 2112.0, "px": 584.4, "py": 2408.4}, {"loc_id": 687, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 19, "x": 8640.0, "z": -832.0, "px": 3522.6, "py": 1906.0}, {"loc_id": 694, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 19, "x": 4864.0, "z": -4992.0, "px": 2878.1, "py": 1196.0}, {"loc_id": 715, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 19, "x": 8064.0, "z": 2752.0, "px": 3424.3, "py": 2517.7}, {"loc_id": 729, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 19, "x": 8064.0, "z": -1728.0, "px": 3424.3, "py": 1753.1}, {"loc_id": 730, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 19, "x": 8192.0, "z": -832.0, "px": 3446.1, "py": 1906.0}, {"loc_id": 765, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 19, "x": -3712.0, "z": 6656.0, "px": 1414.5, "py": 3184.0}, {"loc_id": 770, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 19, "x": 7552.0, "z": -4480.0, "px": 3336.9, "py": 1283.4}, {"loc_id": 788, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 19, "x": 4864.0, "z": 5696.0, "px": 2878.1, "py": 3020.1}, {"loc_id": 797, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 19, "x": 7424.0, "z": 256.0, "px": 3315.0, "py": 2091.7}, {"loc_id": 804, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 19, "x": 128.0, "z": 6848.0, "px": 2069.8, "py": 3216.7}, {"loc_id": 808, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 19, "x": 4928.0, "z": -5696.0, "px": 2889.0, "py": 1075.9}, {"loc_id": 819, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 19, "x": -6592.0, "z": -4992.0, "px": 923.0, "py": 1196.0}, {"loc_id": 822, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 19, "x": -5696.0, "z": 3648.0, "px": 1075.9, "py": 2670.6}, {"loc_id": 825, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 19, "x": -8384.0, "z": -448.0, "px": 617.1, "py": 1971.5}, {"loc_id": 827, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 19, "x": 6336.0, "z": -1280.0, "px": 3129.3, "py": 1829.5}, {"loc_id": 850, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 19, "x": -8576.0, "z": -2816.0, "px": 584.4, "py": 1567.4}, {"loc_id": 869, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 19, "x": -6528.0, "z": -4416.0, "px": 933.9, "py": 1294.3}, {"loc_id": 879, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 19, "x": -6592.0, "z": 4032.0, "px": 923.0, "py": 2736.1}, {"loc_id": 901, "loc_name": "Hildir_cave", "item": "Pickable: Crystal", "count": 19, "x": 4736.0, "z": -5504.0, "px": 2856.3, "py": 1108.7}, {"loc_id": 916, "loc_name": "Hildir_crypt", "item": "Pickable: MushroomYellow", "count": 19, "x": 2613.9, "z": 5053.6, "px": 2494.1, "py": 2910.5}, {"loc_id": 1988, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 19, "x": -1462.0, "z": -1719.2, "px": 1798.5, "py": 1754.6}, {"loc_id": 2009, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 19, "x": -2304.6, "z": -3082.4, "px": 1654.7, "py": 1521.9}, {"loc_id": 2020, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 19, "x": -5828.9, "z": 1534.9, "px": 1053.2, "py": 2310.0}, {"loc_id": 2036, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 19, "x": -1159.1, "z": -1664.8, "px": 1850.2, "py": 1763.9}, {"loc_id": 2047, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 19, "x": 2934.8, "z": -2054.4, "px": 2548.9, "py": 1697.4}, {"loc_id": 2051, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 19, "x": -5573.1, "z": -5305.9, "px": 1096.9, "py": 1142.5}, {"loc_id": 2065, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 19, "x": 2569.6, "z": -4599.8, "px": 2486.5, "py": 1263.0}, {"loc_id": 2078, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 19, "x": 8757.2, "z": -1472.7, "px": 3542.6, "py": 1796.7}, {"loc_id": 2086, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 19, "x": -2122.5, "z": -3076.8, "px": 1685.8, "py": 1522.9}, {"loc_id": 2122, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 19, "x": 1973.5, "z": 3575.7, "px": 2384.8, "py": 2658.3}, {"loc_id": 3047, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 19, "x": -1985.3, "z": 3584.1, "px": 1709.2, "py": 2659.7}, {"loc_id": 3065, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 19, "x": -4544.0, "z": -5568.1, "px": 1272.5, "py": 1097.7}, {"loc_id": 3079, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 19, "x": 4415.1, "z": -1345.8, "px": 2801.5, "py": 1818.3}, {"loc_id": 3082, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 19, "x": -6017.1, "z": 2176.9, "px": 1021.1, "py": 2419.5}, {"loc_id": 3083, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 19, "x": 2753.6, "z": -5953.6, "px": 2517.9, "py": 1031.9}, {"loc_id": 3094, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 19, "x": -641.3, "z": 4094.2, "px": 1938.6, "py": 2746.7}, {"loc_id": 3101, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 19, "x": -3647.2, "z": -1599.4, "px": 1425.5, "py": 1775.0}, {"loc_id": 3107, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 19, "x": 1664.6, "z": 3393.8, "px": 2332.1, "py": 2627.2}, {"loc_id": 3127, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 19, "x": 5759.4, "z": -4737.0, "px": 3030.9, "py": 1239.6}, {"loc_id": 3133, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 19, "x": 3840.8, "z": 4158.3, "px": 2703.5, "py": 2757.7}, {"loc_id": 3147, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 19, "x": -7422.2, "z": -2176.9, "px": 781.3, "py": 1676.5}, {"loc_id": 3157, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 19, "x": 4158.4, "z": 1086.2, "px": 2757.7, "py": 2233.4}, {"loc_id": 3167, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 19, "x": 2814.4, "z": 1151.4, "px": 2528.3, "py": 2244.5}, {"loc_id": 3169, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 19, "x": 4735.7, "z": 3071.3, "px": 2856.2, "py": 2572.2}, {"loc_id": 3176, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 19, "x": 318.1, "z": 5502.9, "px": 2102.3, "py": 2987.2}, {"loc_id": 3201, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 19, "x": -1280.2, "z": -6655.9, "px": 1829.5, "py": 912.1}, {"loc_id": 3208, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 19, "x": 1983.3, "z": 4098.0, "px": 2386.5, "py": 2747.4}, {"loc_id": 3229, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 19, "x": -5441.0, "z": 383.3, "px": 1119.4, "py": 2113.4}, {"loc_id": 4131, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 19, "x": -5766.6, "z": -5058.9, "px": 1063.8, "py": 1184.6}, {"loc_id": 4150, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 19, "x": -9221.4, "z": 2885.5, "px": 474.2, "py": 2540.5}, {"loc_id": 4182, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 19, "x": 3142.6, "z": -1276.7, "px": 2584.3, "py": 1830.1}, {"loc_id": 4184, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 19, "x": -1341.5, "z": -1738.7, "px": 1819.1, "py": 1751.3}, {"loc_id": 4193, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 19, "x": 2503.9, "z": -4613.5, "px": 2475.3, "py": 1260.6}, {"loc_id": 4217, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 19, "x": 2361.2, "z": 3838.0, "px": 2451.0, "py": 2703.0}, {"loc_id": 4218, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 19, "x": -2378.8, "z": 4597.9, "px": 1642.0, "py": 2832.7}, {"loc_id": 4233, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 19, "x": -9029.0, "z": 3203.1, "px": 507.1, "py": 2594.7}, {"loc_id": 4237, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 19, "x": 8254.8, "z": -1992.0, "px": 3456.8, "py": 1708.0}, {"loc_id": 4241, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 19, "x": 6474.4, "z": 4791.9, "px": 3153.0, "py": 2865.8}, {"loc_id": 4255, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 19, "x": -7035.7, "z": 2438.1, "px": 847.2, "py": 2464.1}, {"loc_id": 4260, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 19, "x": -444.3, "z": -4292.0, "px": 1972.2, "py": 1315.5}, {"loc_id": 4261, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 19, "x": 2549.6, "z": -3462.5, "px": 2483.1, "py": 1457.1}, {"loc_id": 4266, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 19, "x": 632.8, "z": 5047.1, "px": 2156.0, "py": 2909.4}, {"loc_id": 4288, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 19, "x": 4550.6, "z": -4986.1, "px": 2824.6, "py": 1197.0}, {"loc_id": 4313, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": 968.2, "z": 5495.6, "px": 2213.2, "py": 2985.9}, {"loc_id": 4318, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": -6719.5, "z": -4808.2, "px": 901.2, "py": 1227.4}, {"loc_id": 4328, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": -3191.1, "z": 6518.2, "px": 1503.4, "py": 3160.4}, {"loc_id": 4336, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": 2820.0, "z": -4873.7, "px": 2529.3, "py": 1216.2}, {"loc_id": 4345, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 19, "x": 2618.7, "z": -3525.7, "px": 2494.9, "py": 1446.3}, {"loc_id": 4349, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": 3638.2, "z": 3256.7, "px": 2668.9, "py": 2603.8}, {"loc_id": 4366, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": 1930.9, "z": 1147.1, "px": 2377.5, "py": 2243.8}, {"loc_id": 4397, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": 7352.3, "z": -3330.0, "px": 3302.8, "py": 1479.7}, {"loc_id": 4411, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": 8574.1, "z": -3708.9, "px": 3511.3, "py": 1415.0}, {"loc_id": 4412, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 19, "x": -1215.7, "z": -1221.1, "px": 1840.5, "py": 1839.6}, {"loc_id": 4462, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": 2112.5, "z": -4356.6, "px": 2408.5, "py": 1304.5}, {"loc_id": 4478, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": -2374.0, "z": -6154.7, "px": 1642.8, "py": 997.6}, {"loc_id": 4487, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": 1917.8, "z": 7177.5, "px": 2375.3, "py": 3273.0}, {"loc_id": 4488, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 19, "x": -5891.9, "z": 4474.7, "px": 1042.4, "py": 2811.7}, {"loc_id": 4494, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 19, "x": -4989.8, "z": 5566.0, "px": 1196.4, "py": 2997.9}, {"loc_id": 7453, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 19, "x": -3584.0, "z": 6464.0, "px": 1436.3, "py": 3151.2}, {"loc_id": 7460, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 19, "x": -4480.0, "z": -1344.0, "px": 1283.4, "py": 1818.6}, {"loc_id": 7467, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 19, "x": 2688.0, "z": -2688.0, "px": 2506.8, "py": 1589.2}, {"loc_id": 7472, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 19, "x": 4608.0, "z": -5440.0, "px": 2834.4, "py": 1119.6}, {"loc_id": 7487, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 19, "x": -3968.0, "z": 5120.0, "px": 1370.8, "py": 2921.8}, {"loc_id": 7490, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 19, "x": -6848.0, "z": -2176.0, "px": 879.3, "py": 1676.6}, {"loc_id": 7491, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 19, "x": -4160.0, "z": 3200.0, "px": 1338.0, "py": 2594.1}, {"loc_id": 7504, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 19, "x": 5504.0, "z": 64.0, "px": 2987.3, "py": 2058.9}, {"loc_id": 7511, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 19, "x": -6592.0, "z": -2240.0, "px": 923.0, "py": 1665.7}, {"loc_id": 7514, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 19, "x": -3584.0, "z": 6080.0, "px": 1436.3, "py": 3085.7}, {"loc_id": 7516, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 19, "x": 3008.0, "z": 576.0, "px": 2561.4, "py": 2146.3}, {"loc_id": 7530, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 19, "x": 5312.0, "z": -64.0, "px": 2954.6, "py": 2037.1}, {"loc_id": 7536, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 19, "x": 2112.0, "z": -3520.0, "px": 2408.4, "py": 1447.3}, {"loc_id": 7544, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 19, "x": -2432.0, "z": 1920.0, "px": 1632.9, "py": 2375.7}, {"loc_id": 7545, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 19, "x": -192.0, "z": -1536.0, "px": 2015.2, "py": 1785.9}, {"loc_id": 7555, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 19, "x": -6272.0, "z": -448.0, "px": 977.6, "py": 1971.5}, {"loc_id": 7560, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 19, "x": 9344.0, "z": -2240.0, "px": 3642.7, "py": 1665.7}, {"loc_id": 7563, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 19, "x": -3584.0, "z": 1472.0, "px": 1436.3, "py": 2299.2}, {"loc_id": 10068, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 19, "x": -2944.0, "z": -9024.0, "px": 1545.6, "py": 507.9}, {"loc_id": 10075, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 19, "x": -768.0, "z": -8768.0, "px": 1916.9, "py": 551.6}, {"loc_id": 10697, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 19, "x": -5448.0, "z": -7686.6, "px": 1118.2, "py": 736.2}, {"loc_id": 10731, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 19, "x": 3521.8, "z": -8055.7, "px": 2649.1, "py": 673.2}, {"loc_id": 20, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 18, "x": -2682.3, "z": -5191.9, "px": 1590.2, "py": 1161.9}, {"loc_id": 26, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 18, "x": -3714.0, "z": -4105.5, "px": 1414.1, "py": 1347.3}, {"loc_id": 31, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 18, "x": 3723.6, "z": 816.0, "px": 2683.5, "py": 2187.3}, {"loc_id": 33, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 18, "x": 1739.5, "z": 4407.1, "px": 2344.9, "py": 2800.1}, {"loc_id": 40, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 18, "x": 464.9, "z": 2558.6, "px": 2127.3, "py": 2484.7}, {"loc_id": 49, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 18, "x": -2494.1, "z": 4982.9, "px": 1622.3, "py": 2898.4}, {"loc_id": 66, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 18, "x": -2736.5, "z": -1736.3, "px": 1581.0, "py": 1751.7}, {"loc_id": 101, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 18, "x": -1014.2, "z": -5639.2, "px": 1874.9, "py": 1085.6}, {"loc_id": 124, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 18, "x": 3454.8, "z": -4349.8, "px": 2637.6, "py": 1305.6}, {"loc_id": 129, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 18, "x": -3081.8, "z": 578.8, "px": 1522.0, "py": 2146.8}, {"loc_id": 130, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 18, "x": 4748.1, "z": -509.7, "px": 2858.3, "py": 1961.0}, {"loc_id": 135, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 18, "x": 2251.6, "z": 335.0, "px": 2432.3, "py": 2105.2}, {"loc_id": 144, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 18, "x": 1488.4, "z": 1973.9, "px": 2302.0, "py": 2384.9}, {"loc_id": 145, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 18, "x": -5130.3, "z": 1350.3, "px": 1172.4, "py": 2278.5}, {"loc_id": 163, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 18, "x": 4625.9, "z": -3085.3, "px": 2837.5, "py": 1521.4}, {"loc_id": 183, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 18, "x": -2508.1, "z": 4873.8, "px": 1620.0, "py": 2879.8}, {"loc_id": 185, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 18, "x": 12.0, "z": 2560.5, "px": 2050.0, "py": 2485.0}, {"loc_id": 185, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 18, "x": 12.0, "z": 2560.5, "px": 2050.0, "py": 2485.0}, {"loc_id": 662, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 18, "x": 1856.0, "z": -7104.0, "px": 2364.8, "py": 835.6}, {"loc_id": 669, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 18, "x": -2112.0, "z": 7360.0, "px": 1687.6, "py": 3304.1}, {"loc_id": 675, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 18, "x": -6912.0, "z": 1088.0, "px": 868.4, "py": 2233.7}, {"loc_id": 675, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 18, "x": -6912.0, "z": 1088.0, "px": 868.4, "py": 2233.7}, {"loc_id": 716, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 18, "x": -6336.0, "z": 3328.0, "px": 966.7, "py": 2616.0}, {"loc_id": 744, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 18, "x": 1408.0, "z": 7488.0, "px": 2288.3, "py": 3326.0}, {"loc_id": 749, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 18, "x": 192.0, "z": -7424.0, "px": 2080.8, "py": 781.0}, {"loc_id": 776, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 18, "x": -3200.0, "z": 5376.0, "px": 1501.9, "py": 2965.5}, {"loc_id": 778, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 18, "x": -7616.0, "z": 1216.0, "px": 748.2, "py": 2255.5}, {"loc_id": 788, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 18, "x": 4864.0, "z": 5696.0, "px": 2878.1, "py": 3020.1}, {"loc_id": 818, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 18, "x": -7360.0, "z": 4032.0, "px": 791.9, "py": 2736.1}, {"loc_id": 822, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 18, "x": -5696.0, "z": 3648.0, "px": 1075.9, "py": 2670.6}, {"loc_id": 834, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 18, "x": -8576.0, "z": 1280.0, "px": 584.4, "py": 2266.5}, {"loc_id": 835, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 18, "x": -8192.0, "z": 2304.0, "px": 649.9, "py": 2441.2}, {"loc_id": 849, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 18, "x": 4544.0, "z": -6656.0, "px": 2823.5, "py": 912.0}, {"loc_id": 855, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 18, "x": 2560.0, "z": -5824.0, "px": 2484.9, "py": 1054.0}, {"loc_id": 862, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 18, "x": -8128.0, "z": -3968.0, "px": 660.8, "py": 1370.8}, {"loc_id": 870, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 18, "x": 5696.0, "z": 3520.0, "px": 3020.1, "py": 2648.7}, {"loc_id": 882, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 18, "x": 7936.0, "z": 3008.0, "px": 3402.4, "py": 2561.4}, {"loc_id": 885, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 18, "x": -5184.0, "z": -3840.0, "px": 1163.3, "py": 1392.6}, {"loc_id": 887, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 18, "x": -7616.0, "z": -3328.0, "px": 748.2, "py": 1480.0}, {"loc_id": 2012, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 18, "x": 2615.5, "z": 5691.7, "px": 2494.4, "py": 3019.4}, {"loc_id": 2022, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 18, "x": -5119.0, "z": 704.2, "px": 1174.4, "py": 2168.2}, {"loc_id": 2031, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 18, "x": -1856.3, "z": -4486.1, "px": 1731.2, "py": 1282.4}, {"loc_id": 2036, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 18, "x": -1159.1, "z": -1664.8, "px": 1850.2, "py": 1763.9}, {"loc_id": 2037, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 18, "x": 894.0, "z": 320.1, "px": 2200.6, "py": 2102.6}, {"loc_id": 2042, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 18, "x": 3908.4, "z": 3896.3, "px": 2715.0, "py": 2713.0}, {"loc_id": 2043, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 18, "x": 7367.4, "z": 3701.7, "px": 3305.4, "py": 2679.8}, {"loc_id": 2048, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 18, "x": 2177.1, "z": -374.6, "px": 2419.6, "py": 1984.1}, {"loc_id": 2071, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 18, "x": 1793.0, "z": -4478.1, "px": 2354.0, "py": 1283.7}, {"loc_id": 2087, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 18, "x": 2431.1, "z": -1534.2, "px": 2462.9, "py": 1786.2}, {"loc_id": 2094, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 18, "x": 568.7, "z": 4745.9, "px": 2145.1, "py": 2858.0}, {"loc_id": 2165, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 18, "x": 8135.7, "z": 895.5, "px": 3436.5, "py": 2200.8}, {"loc_id": 2168, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 18, "x": -7164.3, "z": -4734.5, "px": 825.3, "py": 1240.0}, {"loc_id": 2170, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 18, "x": 7876.9, "z": -2761.7, "px": 3392.3, "py": 1576.7}, {"loc_id": 2180, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 18, "x": -6520.2, "z": -4795.6, "px": 935.2, "py": 1229.6}, {"loc_id": 2184, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 18, "x": -5509.5, "z": -1928.1, "px": 1107.7, "py": 1718.9}, {"loc_id": 3062, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 18, "x": -1215.9, "z": -4353.4, "px": 1840.5, "py": 1305.0}, {"loc_id": 3071, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 18, "x": 3776.6, "z": 1729.7, "px": 2692.5, "py": 2343.2}, {"loc_id": 3104, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 18, "x": -4094.7, "z": -4352.5, "px": 1349.2, "py": 1305.2}, {"loc_id": 3111, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 18, "x": 5312.2, "z": -1921.8, "px": 2954.6, "py": 1720.0}, {"loc_id": 3131, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 18, "x": -4031.6, "z": 63.7, "px": 1359.9, "py": 2058.9}, {"loc_id": 3139, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 18, "x": 2879.9, "z": -3647.5, "px": 2539.5, "py": 1425.5}, {"loc_id": 3179, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 18, "x": -385.1, "z": -3713.6, "px": 1982.3, "py": 1414.2}, {"loc_id": 3189, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 18, "x": 2622.6, "z": -7361.3, "px": 2495.6, "py": 791.7}, {"loc_id": 3190, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 18, "x": -1854.6, "z": 3328.0, "px": 1731.5, "py": 2616.0}, {"loc_id": 3203, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 18, "x": 3519.8, "z": 3262.7, "px": 2648.7, "py": 2604.8}, {"loc_id": 3204, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 18, "x": -4416.6, "z": 6334.7, "px": 1294.2, "py": 3129.1}, {"loc_id": 3227, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 18, "x": 769.6, "z": 4094.1, "px": 2179.3, "py": 2746.7}, {"loc_id": 4132, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 18, "x": 1077.3, "z": -5511.5, "px": 2231.9, "py": 1107.4}, {"loc_id": 4151, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 18, "x": 831.2, "z": -2237.7, "px": 2189.9, "py": 1666.1}, {"loc_id": 4170, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 18, "x": 1734.2, "z": 7416.2, "px": 2344.0, "py": 3313.7}, {"loc_id": 4180, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 18, "x": 1992.1, "z": -4477.5, "px": 2388.0, "py": 1283.8}, {"loc_id": 4185, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 18, "x": -5579.0, "z": -4997.9, "px": 1095.9, "py": 1195.0}, {"loc_id": 4189, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 18, "x": 2811.4, "z": -4794.0, "px": 2527.8, "py": 1229.8}, {"loc_id": 4204, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 18, "x": 3832.5, "z": 3901.3, "px": 2702.1, "py": 2713.8}, {"loc_id": 4207, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 18, "x": 9654.2, "z": 1404.6, "px": 3695.7, "py": 2287.7}, {"loc_id": 4214, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 18, "x": 8389.3, "z": 330.5, "px": 3479.8, "py": 2104.4}, {"loc_id": 4240, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 18, "x": -326.5, "z": -4228.1, "px": 1992.3, "py": 1326.4}, {"loc_id": 4249, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 18, "x": 7430.7, "z": -3206.4, "px": 3316.2, "py": 1500.8}, {"loc_id": 4261, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 18, "x": 2549.6, "z": -3462.5, "px": 2483.1, "py": 1457.1}, {"loc_id": 4262, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 18, "x": 713.0, "z": 5437.3, "px": 2169.7, "py": 2976.0}, {"loc_id": 4281, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 18, "x": -1027.4, "z": -5060.9, "px": 1872.7, "py": 1184.3}, {"loc_id": 4287, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 18, "x": -4214.3, "z": -2304.7, "px": 1328.8, "py": 1654.7}, {"loc_id": 4292, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 18, "x": 1531.7, "z": 6326.6, "px": 2309.4, "py": 3127.7}, {"loc_id": 4295, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 18, "x": -8200.0, "z": 2570.1, "px": 648.5, "py": 2486.6}, {"loc_id": 4314, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 18, "x": -6971.4, "z": 2491.2, "px": 858.2, "py": 2473.2}, {"loc_id": 4316, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 18, "x": 7689.0, "z": -3067.6, "px": 3360.3, "py": 1524.5}, {"loc_id": 4341, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 18, "x": 3324.6, "z": -2746.9, "px": 2615.4, "py": 1579.2}, {"loc_id": 4344, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 18, "x": -9541.9, "z": -313.4, "px": 419.5, "py": 1994.5}, {"loc_id": 4347, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 18, "x": 2690.0, "z": -4345.6, "px": 2507.1, "py": 1306.4}, {"loc_id": 4368, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 18, "x": -9275.3, "z": 3326.7, "px": 465.0, "py": 2615.8}, {"loc_id": 4379, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 18, "x": 2684.9, "z": -3701.4, "px": 2506.2, "py": 1416.3}, {"loc_id": 4403, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 18, "x": -5239.2, "z": 764.2, "px": 1153.8, "py": 2178.4}, {"loc_id": 4407, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 18, "x": 9546.9, "z": 63.9, "px": 3677.3, "py": 2058.9}, {"loc_id": 4412, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 18, "x": -1215.7, "z": -1221.1, "px": 1840.5, "py": 1839.6}, {"loc_id": 4412, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 18, "x": -1215.7, "z": -1221.1, "px": 1840.5, "py": 1839.6}, {"loc_id": 4413, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 18, "x": -1670.7, "z": -4227.6, "px": 1762.9, "py": 1326.5}, {"loc_id": 4437, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 18, "x": 6726.1, "z": 4922.7, "px": 3195.9, "py": 2888.1}, {"loc_id": 4457, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 18, "x": -4149.9, "z": -198.9, "px": 1339.8, "py": 2014.1}, {"loc_id": 4460, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 18, "x": -7484.5, "z": -4990.2, "px": 770.6, "py": 1196.3}, {"loc_id": 4464, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 18, "x": 3768.6, "z": -386.4, "px": 2691.2, "py": 1982.1}, {"loc_id": 4472, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 18, "x": 378.2, "z": 5310.1, "px": 2112.5, "py": 2954.3}, {"loc_id": 4477, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 18, "x": 2108.3, "z": 1209.2, "px": 2407.8, "py": 2254.4}, {"loc_id": 4483, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 18, "x": -4800.9, "z": 5752.8, "px": 1228.6, "py": 3029.8}, {"loc_id": 7444, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 18, "x": 5696.0, "z": 2112.0, "px": 3020.1, "py": 2408.4}, {"loc_id": 7462, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 18, "x": -3904.0, "z": 4480.0, "px": 1381.7, "py": 2812.6}, {"loc_id": 7465, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 18, "x": -5184.0, "z": 5440.0, "px": 1163.3, "py": 2976.4}, {"loc_id": 7469, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 18, "x": -5312.0, "z": 5184.0, "px": 1141.4, "py": 2932.7}, {"loc_id": 7470, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 18, "x": 2624.0, "z": 8576.0, "px": 2495.8, "py": 3511.6}, {"loc_id": 7475, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 18, "x": 6656.0, "z": 6784.0, "px": 3184.0, "py": 3205.8}, {"loc_id": 7476, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 18, "x": 2496.0, "z": -2816.0, "px": 2474.0, "py": 1567.4}, {"loc_id": 7485, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 18, "x": -2048.0, "z": -192.0, "px": 1698.5, "py": 2015.2}, {"loc_id": 7491, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 18, "x": -4160.0, "z": 3200.0, "px": 1338.0, "py": 2594.1}, {"loc_id": 7491, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 18, "x": -4160.0, "z": 3200.0, "px": 1338.0, "py": 2594.1}, {"loc_id": 7501, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 18, "x": -3840.0, "z": 4736.0, "px": 1392.6, "py": 2856.3}, {"loc_id": 7501, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 18, "x": -3840.0, "z": 4736.0, "px": 1392.6, "py": 2856.3}, {"loc_id": 7503, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 18, "x": 1344.0, "z": 8640.0, "px": 2277.4, "py": 3522.6}, {"loc_id": 7506, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 18, "x": 2048.0, "z": 4736.0, "px": 2397.5, "py": 2856.3}, {"loc_id": 7516, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 18, "x": 3008.0, "z": 576.0, "px": 2561.4, "py": 2146.3}, {"loc_id": 7518, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 18, "x": 2560.0, "z": 8768.0, "px": 2484.9, "py": 3544.4}, {"loc_id": 7520, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 18, "x": 512.0, "z": 3776.0, "px": 2135.4, "py": 2692.4}, {"loc_id": 7520, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 18, "x": 512.0, "z": 3776.0, "px": 2135.4, "py": 2692.4}, {"loc_id": 7524, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 18, "x": 4288.0, "z": -1856.0, "px": 2779.8, "py": 1731.2}, {"loc_id": 7531, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 18, "x": 6016.0, "z": 4480.0, "px": 3074.7, "py": 2812.6}, {"loc_id": 7533, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 18, "x": -8576.0, "z": -960.0, "px": 584.4, "py": 1884.2}, {"loc_id": 7538, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 18, "x": 6208.0, "z": 4544.0, "px": 3107.5, "py": 2823.5}, {"loc_id": 7555, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 18, "x": -6272.0, "z": -448.0, "px": 977.6, "py": 1971.5}, {"loc_id": 7560, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 18, "x": 9344.0, "z": -2240.0, "px": 3642.7, "py": 1665.7}, {"loc_id": 10687, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 18, "x": -1274.2, "z": -9406.8, "px": 1830.5, "py": 442.6}, {"loc_id": 10691, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 18, "x": -1793.2, "z": -9276.3, "px": 1742.0, "py": 464.8}, {"loc_id": 10698, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 18, "x": 5567.4, "z": -8004.4, "px": 2998.2, "py": 681.9}, {"loc_id": 10706, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 18, "x": -4865.4, "z": -8199.3, "px": 1217.6, "py": 648.7}, {"loc_id": 10714, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 18, "x": 132.6, "z": -9157.1, "px": 2070.6, "py": 485.2}, {"loc_id": 10730, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 18, "x": -55.7, "z": -8772.4, "px": 2038.5, "py": 550.8}, {"loc_id": 10828, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 18, "x": -512.0, "z": -9024.0, "px": 1960.6, "py": 507.9}, {"loc_id": 10873, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 18, "x": 1280.0, "z": -9216.0, "px": 2266.5, "py": 475.1}, {"loc_id": 10892, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 18, "x": -5376.0, "z": -7808.0, "px": 1130.5, "py": 715.4}, {"loc_id": 47, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 17, "x": -2414.9, "z": 4847.7, "px": 1635.9, "py": 2875.3}, {"loc_id": 82, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 17, "x": -629.5, "z": -3515.5, "px": 1940.6, "py": 1448.0}, {"loc_id": 86, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 17, "x": -3576.1, "z": 180.7, "px": 1437.7, "py": 2078.8}, {"loc_id": 102, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 17, "x": -5252.9, "z": -769.4, "px": 1151.5, "py": 1916.7}, {"loc_id": 111, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 17, "x": -264.5, "z": 2509.6, "px": 2002.9, "py": 2476.3}, {"loc_id": 120, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 17, "x": -5252.1, "z": -1711.3, "px": 1151.6, "py": 1755.9}, {"loc_id": 151, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 17, "x": -3642.6, "z": -4094.0, "px": 1426.3, "py": 1349.3}, {"loc_id": 169, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 17, "x": -5107.9, "z": 1285.8, "px": 1176.3, "py": 2267.4}, {"loc_id": 662, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 17, "x": 1856.0, "z": -7104.0, "px": 2364.8, "py": 835.6}, {"loc_id": 692, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 17, "x": -2816.0, "z": 6272.0, "px": 1567.4, "py": 3118.4}, {"loc_id": 733, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 17, "x": 8256.0, "z": 2432.0, "px": 3457.0, "py": 2463.1}, {"loc_id": 764, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 17, "x": -7168.0, "z": -1280.0, "px": 824.7, "py": 1829.5}, {"loc_id": 768, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 17, "x": -1856.0, "z": 7488.0, "px": 1731.2, "py": 3326.0}, {"loc_id": 792, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 17, "x": -9152.0, "z": 960.0, "px": 486.1, "py": 2211.8}, {"loc_id": 807, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 17, "x": -2944.0, "z": -6528.0, "px": 1545.6, "py": 933.9}, {"loc_id": 816, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 17, "x": -7040.0, "z": 5312.0, "px": 846.5, "py": 2954.6}, {"loc_id": 861, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 17, "x": 6656.0, "z": -5504.0, "px": 3184.0, "py": 1108.7}, {"loc_id": 873, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 17, "x": 4480.0, "z": 5952.0, "px": 2812.6, "py": 3063.8}, {"loc_id": 901, "loc_name": "Hildir_cave", "item": "SpawnOnce: Ulv", "count": 17, "x": 4736.0, "z": -5504.0, "px": 2856.3, "py": 1108.7}, {"loc_id": 903, "loc_name": "Hildir_cave", "item": "Pickable: Crystal", "count": 17, "x": 6016.0, "z": 4608.0, "px": 3074.7, "py": 2834.4}, {"loc_id": 914, "loc_name": "Hildir_crypt", "item": "Pickable: MushroomYellow", "count": 17, "x": -7097.0, "z": 2614.7, "px": 836.8, "py": 2494.2}, {"loc_id": 1985, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 17, "x": -5749.3, "z": -4995.7, "px": 1066.8, "py": 1195.4}, {"loc_id": 1990, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 17, "x": -9021.5, "z": 3142.1, "px": 508.3, "py": 2584.3}, {"loc_id": 2045, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 17, "x": 6264.5, "z": -4358.4, "px": 3117.1, "py": 1304.2}, {"loc_id": 2064, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 17, "x": 6654.9, "z": 3129.8, "px": 3183.8, "py": 2582.2}, {"loc_id": 2082, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 17, "x": -1272.0, "z": -2183.0, "px": 1830.9, "py": 1675.4}, {"loc_id": 2090, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 17, "x": -1801.2, "z": -4735.1, "px": 1740.6, "py": 1239.9}, {"loc_id": 2091, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 17, "x": -7615.2, "z": -4745.0, "px": 748.3, "py": 1238.2}, {"loc_id": 2102, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 17, "x": -7167.8, "z": 2488.8, "px": 824.7, "py": 2472.8}, {"loc_id": 2109, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 17, "x": 4553.1, "z": -5122.9, "px": 2825.1, "py": 1173.7}, {"loc_id": 2114, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 17, "x": 8841.5, "z": 123.6, "px": 3556.9, "py": 2069.1}, {"loc_id": 2164, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 17, "x": 644.1, "z": -245.8, "px": 2157.9, "py": 2006.1}, {"loc_id": 2164, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 17, "x": 644.1, "z": -245.8, "px": 2157.9, "py": 2006.1}, {"loc_id": 2169, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 17, "x": -7622.1, "z": 4287.6, "px": 747.2, "py": 2779.8}, {"loc_id": 2180, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 17, "x": -6520.2, "z": -4795.6, "px": 935.2, "py": 1229.6}, {"loc_id": 3054, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 17, "x": 6847.7, "z": 3134.3, "px": 3216.7, "py": 2582.9}, {"loc_id": 3056, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 17, "x": -4993.1, "z": 3711.1, "px": 1195.8, "py": 2681.4}, {"loc_id": 3058, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 17, "x": -4290.0, "z": 959.0, "px": 1315.8, "py": 2211.7}, {"loc_id": 3087, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 17, "x": 1024.6, "z": 4097.5, "px": 2222.9, "py": 2747.3}, {"loc_id": 3108, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 17, "x": -3646.9, "z": 2561.5, "px": 1425.6, "py": 2485.2}, {"loc_id": 3109, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 17, "x": 127.2, "z": 3518.4, "px": 2069.7, "py": 2648.5}, {"loc_id": 3132, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 17, "x": 2369.7, "z": -2238.3, "px": 2452.4, "py": 1666.0}, {"loc_id": 3161, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 17, "x": -3649.1, "z": 3839.6, "px": 1425.2, "py": 2703.3}, {"loc_id": 3165, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 17, "x": -2496.7, "z": 3073.0, "px": 1621.9, "py": 2572.5}, {"loc_id": 3193, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 17, "x": 1982.3, "z": -3329.8, "px": 2386.3, "py": 1479.7}, {"loc_id": 3197, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 17, "x": 3198.6, "z": 4350.7, "px": 2593.9, "py": 2790.5}, {"loc_id": 3213, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 17, "x": -6656.3, "z": -3646.2, "px": 912.0, "py": 1425.7}, {"loc_id": 4108, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 17, "x": 8504.1, "z": -1928.2, "px": 3499.4, "py": 1718.9}, {"loc_id": 4113, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 17, "x": 2939.2, "z": -125.2, "px": 2549.6, "py": 2026.6}, {"loc_id": 4176, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 17, "x": 899.2, "z": 3392.5, "px": 2201.5, "py": 2627.0}, {"loc_id": 4178, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 17, "x": 5053.1, "z": 5444.3, "px": 2910.4, "py": 2977.2}, {"loc_id": 4184, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 17, "x": -1341.5, "z": -1738.7, "px": 1819.1, "py": 1751.3}, {"loc_id": 4191, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 17, "x": 3893.5, "z": 4862.5, "px": 2712.5, "py": 2877.9}, {"loc_id": 4193, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 17, "x": 2503.9, "z": -4613.5, "px": 2475.3, "py": 1260.6}, {"loc_id": 4222, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 17, "x": 833.8, "z": -2569.4, "px": 2190.3, "py": 1609.5}, {"loc_id": 4223, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 17, "x": 1789.2, "z": 6727.5, "px": 2353.4, "py": 3196.2}, {"loc_id": 4252, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 17, "x": -6152.8, "z": 2296.4, "px": 997.9, "py": 2439.9}, {"loc_id": 4257, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 17, "x": -649.4, "z": -6517.8, "px": 1937.2, "py": 935.6}, {"loc_id": 4261, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 17, "x": 2549.6, "z": -3462.5, "px": 2483.1, "py": 1457.1}, {"loc_id": 4272, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 17, "x": -9543.9, "z": -2625.6, "px": 419.2, "py": 1599.9}, {"loc_id": 4273, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 17, "x": 1912.7, "z": 6784.9, "px": 2374.4, "py": 3206.0}, {"loc_id": 4327, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 17, "x": 959.4, "z": 5365.3, "px": 2211.7, "py": 2963.7}, {"loc_id": 4332, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 17, "x": -9217.9, "z": -2808.8, "px": 474.8, "py": 1568.6}, {"loc_id": 4355, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 17, "x": 2367.4, "z": 1284.3, "px": 2452.0, "py": 2267.2}, {"loc_id": 4364, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 17, "x": -6595.0, "z": 5437.6, "px": 922.5, "py": 2976.0}, {"loc_id": 4376, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 17, "x": 2488.8, "z": -1352.3, "px": 2472.8, "py": 1817.2}, {"loc_id": 4382, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 17, "x": -7489.9, "z": -4736.3, "px": 769.7, "py": 1239.7}, {"loc_id": 4394, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 17, "x": -8376.6, "z": 636.4, "px": 618.4, "py": 2156.6}, {"loc_id": 4395, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 17, "x": 506.6, "z": 5049.8, "px": 2134.5, "py": 2909.8}, {"loc_id": 4416, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 17, "x": -3705.2, "z": 7113.6, "px": 1415.6, "py": 3262.1}, {"loc_id": 4418, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 17, "x": 3208.8, "z": -2630.5, "px": 2595.6, "py": 1599.1}, {"loc_id": 4423, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 17, "x": -5955.5, "z": 4667.7, "px": 1031.6, "py": 2844.6}, {"loc_id": 4429, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 17, "x": 5067.0, "z": 377.9, "px": 2912.8, "py": 2112.5}, {"loc_id": 4444, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 17, "x": -9150.6, "z": 2822.4, "px": 486.3, "py": 2529.7}, {"loc_id": 4448, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 17, "x": -6717.4, "z": 5561.0, "px": 901.6, "py": 2997.1}, {"loc_id": 4451, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 17, "x": -3511.8, "z": 4799.5, "px": 1448.7, "py": 2867.1}, {"loc_id": 4454, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 17, "x": 9791.7, "z": -1482.1, "px": 3719.1, "py": 1795.1}, {"loc_id": 4455, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 17, "x": 9526.9, "z": 1407.6, "px": 3673.9, "py": 2288.2}, {"loc_id": 4458, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 17, "x": -8120.2, "z": 2564.7, "px": 662.2, "py": 2485.7}, {"loc_id": 4468, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 17, "x": 3901.0, "z": 1013.6, "px": 2713.8, "py": 2221.0}, {"loc_id": 4476, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 17, "x": -3898.5, "z": -138.6, "px": 1382.7, "py": 2024.3}, {"loc_id": 4480, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 17, "x": -124.8, "z": -4743.5, "px": 2026.7, "py": 1238.4}, {"loc_id": 4486, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 17, "x": 3395.3, "z": -2438.4, "px": 2627.5, "py": 1631.8}, {"loc_id": 4486, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 17, "x": 3395.3, "z": -2438.4, "px": 2627.5, "py": 1631.8}, {"loc_id": 4492, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 17, "x": 831.2, "z": 5252.1, "px": 2189.9, "py": 2944.4}, {"loc_id": 7446, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 17, "x": 4544.0, "z": -5632.0, "px": 2823.5, "py": 1086.8}, {"loc_id": 7447, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 17, "x": 9920.0, "z": -1216.0, "px": 3741.0, "py": 1840.5}, {"loc_id": 7450, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 17, "x": 5248.0, "z": 192.0, "px": 2943.7, "py": 2080.8}, {"loc_id": 7450, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 17, "x": 5248.0, "z": 192.0, "px": 2943.7, "py": 2080.8}, {"loc_id": 7458, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 17, "x": 6144.0, "z": 4736.0, "px": 3096.6, "py": 2856.3}, {"loc_id": 7469, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 17, "x": -5312.0, "z": 5184.0, "px": 1141.4, "py": 2932.7}, {"loc_id": 7470, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 17, "x": 2624.0, "z": 8576.0, "px": 2495.8, "py": 3511.6}, {"loc_id": 7471, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 17, "x": -4480.0, "z": -4096.0, "px": 1283.4, "py": 1348.9}, {"loc_id": 7477, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 17, "x": 2880.0, "z": 768.0, "px": 2539.5, "py": 2179.1}, {"loc_id": 7480, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 17, "x": -3776.0, "z": 1408.0, "px": 1403.6, "py": 2288.3}, {"loc_id": 7481, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 17, "x": -832.0, "z": 8512.0, "px": 1906.0, "py": 3500.7}, {"loc_id": 7483, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 17, "x": -2112.0, "z": -512.0, "px": 1687.6, "py": 1960.6}, {"loc_id": 7486, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 17, "x": 1728.0, "z": 6656.0, "px": 2342.9, "py": 3184.0}, {"loc_id": 7490, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 17, "x": -6848.0, "z": -2176.0, "px": 879.3, "py": 1676.6}, {"loc_id": 7490, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 17, "x": -6848.0, "z": -2176.0, "px": 879.3, "py": 1676.6}, {"loc_id": 7493, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 17, "x": 1344.0, "z": 6656.0, "px": 2277.4, "py": 3184.0}, {"loc_id": 7495, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 17, "x": 3328.0, "z": 9280.0, "px": 2616.0, "py": 3631.8}, {"loc_id": 7506, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 17, "x": 2048.0, "z": 4736.0, "px": 2397.5, "py": 2856.3}, {"loc_id": 7513, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 17, "x": 3072.0, "z": -1920.0, "px": 2572.3, "py": 1720.3}, {"loc_id": 7515, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 17, "x": 1216.0, "z": 4864.0, "px": 2255.5, "py": 2878.1}, {"loc_id": 7525, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 17, "x": -4160.0, "z": -4032.0, "px": 1338.0, "py": 1359.9}, {"loc_id": 7530, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 17, "x": 5312.0, "z": -64.0, "px": 2954.6, "py": 2037.1}, {"loc_id": 7535, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 17, "x": -9792.0, "z": -704.0, "px": 376.8, "py": 1927.9}, {"loc_id": 7542, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 17, "x": 1088.0, "z": 128.0, "px": 2233.7, "py": 2069.8}, {"loc_id": 7558, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 17, "x": -4416.0, "z": -3840.0, "px": 1294.3, "py": 1392.6}, {"loc_id": 7561, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 17, "x": -6208.0, "z": -640.0, "px": 988.5, "py": 1938.8}, {"loc_id": 7564, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 17, "x": 6400.0, "z": 7040.0, "px": 3140.3, "py": 3249.5}, {"loc_id": 7567, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 17, "x": 2048.0, "z": -1600.0, "px": 2397.5, "py": 1774.9}, {"loc_id": 7571, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 17, "x": -7232.0, "z": -1024.0, "px": 813.7, "py": 1873.2}, {"loc_id": 10018, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 17, "x": -320.0, "z": -8576.0, "px": 1993.4, "py": 584.4}, {"loc_id": 10688, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 17, "x": 575.3, "z": -9543.4, "px": 2146.2, "py": 419.3}, {"loc_id": 10696, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 17, "x": -886.4, "z": -8711.9, "px": 1896.7, "py": 561.2}, {"loc_id": 10729, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 17, "x": -3260.0, "z": -8824.5, "px": 1491.6, "py": 542.0}, {"loc_id": 24, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 16, "x": 2365.0, "z": 184.9, "px": 2451.6, "py": 2079.6}, {"loc_id": 37, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 16, "x": -384.0, "z": 2571.6, "px": 1982.5, "py": 2486.9}, {"loc_id": 44, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 16, "x": -187.0, "z": 2492.5, "px": 2016.1, "py": 2473.4}, {"loc_id": 55, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 16, "x": -5323.0, "z": -1724.1, "px": 1139.5, "py": 1753.8}, {"loc_id": 56, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 16, "x": 2178.8, "z": -3206.1, "px": 2419.8, "py": 1500.8}, {"loc_id": 77, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 16, "x": 2296.4, "z": -3207.7, "px": 2439.9, "py": 1500.6}, {"loc_id": 110, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 16, "x": 1466.6, "z": 2232.4, "px": 2298.3, "py": 2429.0}, {"loc_id": 119, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 16, "x": -5197.6, "z": 1466.1, "px": 1160.9, "py": 2298.2}, {"loc_id": 141, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 16, "x": -3468.1, "z": 180.0, "px": 1456.1, "py": 2078.7}, {"loc_id": 174, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 16, "x": 563.7, "z": 2571.8, "px": 2144.2, "py": 2486.9}, {"loc_id": 176, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 16, "x": -1990.7, "z": 4469.7, "px": 1708.3, "py": 2810.8}, {"loc_id": 177, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 16, "x": -3456.5, "z": 3310.3, "px": 1458.1, "py": 2613.0}, {"loc_id": 181, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 16, "x": 2700.5, "z": 3847.2, "px": 2508.9, "py": 2704.6}, {"loc_id": 667, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 16, "x": -2752.0, "z": -6016.0, "px": 1578.3, "py": 1021.3}, {"loc_id": 675, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 16, "x": -6912.0, "z": 1088.0, "px": 868.4, "py": 2233.7}, {"loc_id": 699, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 16, "x": 3392.0, "z": 5696.0, "px": 2626.9, "py": 3020.1}, {"loc_id": 699, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 16, "x": 3392.0, "z": 5696.0, "px": 2626.9, "py": 3020.1}, {"loc_id": 751, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 16, "x": -1792.0, "z": -5824.0, "px": 1742.2, "py": 1054.0}, {"loc_id": 755, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 16, "x": -9216.0, "z": -640.0, "px": 475.1, "py": 1938.8}, {"loc_id": 756, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 16, "x": 8000.0, "z": 2112.0, "px": 3413.3, "py": 2408.4}, {"loc_id": 768, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 16, "x": -1856.0, "z": 7488.0, "px": 1731.2, "py": 3326.0}, {"loc_id": 794, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 16, "x": -8320.0, "z": 64.0, "px": 628.1, "py": 2058.9}, {"loc_id": 798, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 16, "x": -576.0, "z": -6976.0, "px": 1949.7, "py": 857.4}, {"loc_id": 798, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 16, "x": -576.0, "z": -6976.0, "px": 1949.7, "py": 857.4}, {"loc_id": 813, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 16, "x": -8192.0, "z": -3520.0, "px": 649.9, "py": 1447.3}, {"loc_id": 845, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 16, "x": 4672.0, "z": -6080.0, "px": 2845.4, "py": 1010.3}, {"loc_id": 846, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 16, "x": -1152.0, "z": -7488.0, "px": 1851.4, "py": 770.0}, {"loc_id": 850, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 16, "x": -8576.0, "z": -2816.0, "px": 584.4, "py": 1567.4}, {"loc_id": 850, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 16, "x": -8576.0, "z": -2816.0, "px": 584.4, "py": 1567.4}, {"loc_id": 862, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 16, "x": -8128.0, "z": -3968.0, "px": 660.8, "py": 1370.8}, {"loc_id": 880, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 16, "x": 4352.0, "z": -4416.0, "px": 2790.7, "py": 1294.3}, {"loc_id": 886, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 16, "x": -3904.0, "z": 5888.0, "px": 1381.7, "py": 3052.9}, {"loc_id": 901, "loc_name": "Hildir_cave", "item": "SpawnOnce: Bat", "count": 16, "x": 4736.0, "z": -5504.0, "px": 2856.3, "py": 1108.7}, {"loc_id": 917, "loc_name": "Hildir_plainsfortress", "item": "SpawnOnce: Goblin", "count": 16, "x": 4800.0, "z": -1216.0, "px": 2867.2, "py": 1840.5}, {"loc_id": 1996, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 16, "x": 8580.9, "z": -1732.6, "px": 3512.5, "py": 1752.3}, {"loc_id": 2001, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 16, "x": -6655.6, "z": -4797.9, "px": 912.1, "py": 1229.2}, {"loc_id": 2018, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 16, "x": 2366.9, "z": -3455.3, "px": 2452.0, "py": 1458.3}, {"loc_id": 2050, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 16, "x": 1149.0, "z": 5321.2, "px": 2244.1, "py": 2956.2}, {"loc_id": 2061, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 16, "x": -2431.5, "z": 4169.7, "px": 1633.0, "py": 2759.6}, {"loc_id": 2062, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 16, "x": -5771.0, "z": -1665.8, "px": 1063.1, "py": 1763.7}, {"loc_id": 2063, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 16, "x": 3071.8, "z": 893.7, "px": 2572.3, "py": 2200.5}, {"loc_id": 2069, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 16, "x": -134.7, "z": -905.2, "px": 2025.0, "py": 1893.5}, {"loc_id": 2074, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 16, "x": 2555.5, "z": -4361.4, "px": 2484.1, "py": 1303.7}, {"loc_id": 2080, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 16, "x": -381.3, "z": -4345.5, "px": 1982.9, "py": 1306.4}, {"loc_id": 2088, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 16, "x": -2487.2, "z": -6143.3, "px": 1623.5, "py": 999.5}, {"loc_id": 2093, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 16, "x": 455.5, "z": 5046.0, "px": 2125.7, "py": 2909.2}, {"loc_id": 2107, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 16, "x": -9664.7, "z": -321.6, "px": 398.6, "py": 1993.1}, {"loc_id": 2127, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 16, "x": 3769.9, "z": 3914.8, "px": 2691.4, "py": 2716.1}, {"loc_id": 2134, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 16, "x": -5754.4, "z": 4490.5, "px": 1065.9, "py": 2814.4}, {"loc_id": 2137, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 16, "x": 6136.3, "z": -5898.6, "px": 3095.3, "py": 1041.3}, {"loc_id": 2159, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 16, "x": -3267.2, "z": 4220.0, "px": 1490.4, "py": 2768.2}, {"loc_id": 2161, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 16, "x": 3962.9, "z": 7040.8, "px": 2724.3, "py": 3249.6}, {"loc_id": 2179, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 16, "x": -824.1, "z": 4866.1, "px": 1907.4, "py": 2878.5}, {"loc_id": 3048, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 16, "x": 1536.3, "z": -4286.4, "px": 2310.2, "py": 1316.5}, {"loc_id": 3081, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 16, "x": -3137.5, "z": 5951.5, "px": 1512.5, "py": 3063.7}, {"loc_id": 3126, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 16, "x": 7294.1, "z": 1022.7, "px": 3292.9, "py": 2222.5}, {"loc_id": 3134, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 16, "x": 4606.7, "z": -1534.5, "px": 2834.2, "py": 1786.1}, {"loc_id": 3146, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 16, "x": 2687.8, "z": 7167.6, "px": 2506.7, "py": 3271.3}, {"loc_id": 3160, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 16, "x": -4481.0, "z": -5823.9, "px": 1283.2, "py": 1054.1}, {"loc_id": 3162, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 16, "x": 2944.5, "z": 4287.1, "px": 2550.5, "py": 2779.7}, {"loc_id": 3200, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 16, "x": 513.9, "z": -7296.5, "px": 2135.7, "py": 802.7}, {"loc_id": 3215, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 16, "x": -3198.4, "z": 4030.7, "px": 1502.1, "py": 2735.9}, {"loc_id": 4109, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 16, "x": 2942.1, "z": 903.8, "px": 2550.1, "py": 2202.2}, {"loc_id": 4114, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 16, "x": -8966.8, "z": 2952.0, "px": 517.7, "py": 2551.8}, {"loc_id": 4119, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 16, "x": 2236.0, "z": -1290.8, "px": 2429.6, "py": 1827.7}, {"loc_id": 4125, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 16, "x": -7167.7, "z": 2685.6, "px": 824.7, "py": 2506.3}, {"loc_id": 4136, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 16, "x": 6022.3, "z": -5886.6, "px": 3075.8, "py": 1043.4}, {"loc_id": 4138, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 16, "x": -3385.4, "z": 4539.1, "px": 1470.2, "py": 2822.7}, {"loc_id": 4141, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 16, "x": -8380.7, "z": -710.6, "px": 617.7, "py": 1926.7}, {"loc_id": 4142, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 16, "x": -2429.2, "z": -118.6, "px": 1633.4, "py": 2027.8}, {"loc_id": 4153, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 16, "x": -6601.9, "z": 571.6, "px": 921.3, "py": 2145.6}, {"loc_id": 4165, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 16, "x": -3838.5, "z": -380.1, "px": 1392.9, "py": 1983.1}, {"loc_id": 4168, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 16, "x": 8825.5, "z": -3830.4, "px": 3554.2, "py": 1394.3}, {"loc_id": 4171, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 16, "x": -4031.3, "z": -2490.3, "px": 1360.0, "py": 1623.0}, {"loc_id": 4179, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 16, "x": -7242.2, "z": -4937.2, "px": 812.0, "py": 1205.4}, {"loc_id": 4183, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 16, "x": -7557.0, "z": -4745.1, "px": 758.3, "py": 1238.2}, {"loc_id": 4184, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 16, "x": -1341.5, "z": -1738.7, "px": 1819.1, "py": 1751.3}, {"loc_id": 4211, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 16, "x": 1342.8, "z": -5442.2, "px": 2277.2, "py": 1119.2}, {"loc_id": 4216, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 16, "x": 124.1, "z": -4545.7, "px": 2069.2, "py": 1272.2}, {"loc_id": 4230, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 16, "x": -7741.6, "z": 4344.6, "px": 726.8, "py": 2789.5}, {"loc_id": 4232, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 16, "x": 5628.7, "z": -1013.6, "px": 3008.6, "py": 1875.0}, {"loc_id": 4238, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 16, "x": 9473.5, "z": 201.9, "px": 3664.8, "py": 2082.5}, {"loc_id": 4246, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 16, "x": -5832.1, "z": 1476.6, "px": 1052.7, "py": 2300.0}, {"loc_id": 4249, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 16, "x": 7430.7, "z": -3206.4, "px": 3316.2, "py": 1500.8}, {"loc_id": 4250, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 16, "x": -4867.6, "z": 5757.0, "px": 1217.3, "py": 3030.5}, {"loc_id": 4254, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 16, "x": 2185.2, "z": 1205.6, "px": 2420.9, "py": 2253.8}, {"loc_id": 4260, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 16, "x": -444.3, "z": -4292.0, "px": 1972.2, "py": 1315.5}, {"loc_id": 4268, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 16, "x": 3143.0, "z": -2424.5, "px": 2584.4, "py": 1634.2}, {"loc_id": 4277, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 16, "x": 710.5, "z": -128.2, "px": 2169.3, "py": 2026.1}, {"loc_id": 4281, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 16, "x": -1027.4, "z": -5060.9, "px": 1872.7, "py": 1184.3}, {"loc_id": 4305, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 16, "x": -6663.1, "z": 3777.2, "px": 910.8, "py": 2692.6}, {"loc_id": 4321, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 16, "x": -9207.0, "z": 3143.0, "px": 476.7, "py": 2584.4}, {"loc_id": 4322, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 16, "x": -1535.3, "z": -1858.3, "px": 1786.0, "py": 1730.9}, {"loc_id": 4327, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 16, "x": 959.4, "z": 5365.3, "px": 2211.7, "py": 2963.7}, {"loc_id": 4352, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 16, "x": 2186.2, "z": 3782.1, "px": 2421.1, "py": 2693.5}, {"loc_id": 4361, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 16, "x": -6843.9, "z": 501.8, "px": 880.0, "py": 2133.6}, {"loc_id": 4368, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 16, "x": -9275.3, "z": 3326.7, "px": 465.0, "py": 2615.8}, {"loc_id": 4370, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 16, "x": 3528.1, "z": 3652.7, "px": 2650.1, "py": 2671.4}, {"loc_id": 4372, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 16, "x": 5112.1, "z": 3129.1, "px": 2920.5, "py": 2582.0}, {"loc_id": 4378, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 16, "x": -1334.3, "z": -1916.0, "px": 1820.3, "py": 1721.0}, {"loc_id": 4399, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 16, "x": -9589.9, "z": -183.4, "px": 411.3, "py": 2016.7}, {"loc_id": 4401, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 16, "x": 2939.6, "z": -257.2, "px": 2549.7, "py": 2004.1}, {"loc_id": 4419, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 16, "x": 4991.3, "z": -2122.8, "px": 2899.8, "py": 1685.7}, {"loc_id": 4421, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 16, "x": 5510.4, "z": -969.9, "px": 2988.4, "py": 1882.5}, {"loc_id": 4422, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 16, "x": -1219.5, "z": -1606.9, "px": 1839.9, "py": 1773.8}, {"loc_id": 4435, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 16, "x": 4406.6, "z": 6657.9, "px": 2800.1, "py": 3184.3}, {"loc_id": 4456, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 16, "x": 7751.7, "z": -2687.8, "px": 3371.0, "py": 1589.3}, {"loc_id": 4477, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 16, "x": 2108.3, "z": 1209.2, "px": 2407.8, "py": 2254.4}, {"loc_id": 4478, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 16, "x": -2374.0, "z": -6154.7, "px": 1642.8, "py": 997.6}, {"loc_id": 4479, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 16, "x": -1589.2, "z": -5703.7, "px": 1776.8, "py": 1074.6}, {"loc_id": 4495, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 16, "x": -8956.0, "z": 2882.7, "px": 519.5, "py": 2540.0}, {"loc_id": 4507, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 16, "x": 8121.8, "z": -3975.7, "px": 3434.1, "py": 1369.5}, {"loc_id": 7261, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 756.2, "z": -7291.6, "px": 2177.1, "py": 803.6}, {"loc_id": 7262, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -2305.8, "z": 3718.7, "px": 1654.5, "py": 2682.7}, {"loc_id": 7263, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 3978.3, "z": 4168.3, "px": 2727.0, "py": 2759.4}, {"loc_id": 7264, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -3014.5, "z": 1163.7, "px": 1533.5, "py": 2246.6}, {"loc_id": 7265, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -1990.4, "z": -3062.7, "px": 1708.3, "py": 1525.3}, {"loc_id": 7266, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 3778.4, "z": 1473.6, "px": 2692.8, "py": 2299.5}, {"loc_id": 7267, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -3530.1, "z": -1543.8, "px": 1445.5, "py": 1784.5}, {"loc_id": 7268, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -4541.8, "z": -3587.7, "px": 1272.9, "py": 1435.7}, {"loc_id": 7269, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 3062.4, "z": 3127.5, "px": 2570.6, "py": 2581.8}, {"loc_id": 7270, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 4101.9, "z": 5192.9, "px": 2748.1, "py": 2934.3}, {"loc_id": 7271, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -250.8, "z": -5828.8, "px": 2005.2, "py": 1053.2}, {"loc_id": 7272, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 964.2, "z": 4100.7, "px": 2212.6, "py": 2747.9}, {"loc_id": 7273, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -1911.8, "z": 3008.9, "px": 1721.7, "py": 2561.5}, {"loc_id": 7274, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 3325.4, "z": -1414.9, "px": 2615.5, "py": 1806.5}, {"loc_id": 7275, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -4866.7, "z": -2806.7, "px": 1217.4, "py": 1569.0}, {"loc_id": 7276, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 4803.5, "z": -2240.7, "px": 2867.8, "py": 1665.6}, {"loc_id": 7277, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 3850.4, "z": -649.6, "px": 2705.1, "py": 1937.1}, {"loc_id": 7278, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 4035.5, "z": -905.0, "px": 2736.7, "py": 1893.5}, {"loc_id": 7279, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 4486.6, "z": 1094.6, "px": 2813.7, "py": 2234.8}, {"loc_id": 7280, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -1603.4, "z": -4802.4, "px": 1774.4, "py": 1228.4}, {"loc_id": 7281, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -3834.6, "z": 3766.6, "px": 1393.6, "py": 2690.8}, {"loc_id": 7282, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -3655.8, "z": 2435.1, "px": 1424.1, "py": 2463.6}, {"loc_id": 7283, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -3509.2, "z": 2424.1, "px": 1449.1, "py": 2461.7}, {"loc_id": 7284, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 1280.6, "z": 3190.7, "px": 2266.6, "py": 2592.5}, {"loc_id": 7285, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -2494.8, "z": -2940.1, "px": 1622.2, "py": 1546.2}, {"loc_id": 7286, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -770.1, "z": -6218.5, "px": 1916.6, "py": 986.7}, {"loc_id": 7287, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -710.9, "z": -6076.3, "px": 1926.7, "py": 1011.0}, {"loc_id": 7288, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -951.0, "z": -6260.1, "px": 1885.7, "py": 979.6}, {"loc_id": 7289, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -836.4, "z": -6347.5, "px": 1905.3, "py": 964.7}, {"loc_id": 7290, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -575.4, "z": -6343.8, "px": 1949.8, "py": 965.3}, {"loc_id": 7291, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 1592.8, "z": 3066.7, "px": 2319.8, "py": 2571.4}, {"loc_id": 7292, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 1349.0, "z": -4297.7, "px": 2278.2, "py": 1314.5}, {"loc_id": 7293, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -3771.1, "z": 3592.9, "px": 1404.4, "py": 2661.2}, {"loc_id": 7294, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 649.0, "z": -7366.4, "px": 2158.8, "py": 790.8}, {"loc_id": 7295, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -6.6, "z": -4919.3, "px": 2046.9, "py": 1208.4}, {"loc_id": 7296, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -6467.4, "z": -3707.6, "px": 944.2, "py": 1415.2}, {"loc_id": 7297, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -500.8, "z": 5119.0, "px": 1962.5, "py": 2921.6}, {"loc_id": 7298, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 3460.3, "z": -565.6, "px": 2638.6, "py": 1951.5}, {"loc_id": 7299, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 1020.5, "z": 3572.7, "px": 2222.2, "py": 2657.7}, {"loc_id": 7300, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -137.8, "z": -5764.1, "px": 2024.5, "py": 1064.3}, {"loc_id": 7301, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 6143.1, "z": 1654.9, "px": 3096.4, "py": 2330.4}, {"loc_id": 7302, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 1158.9, "z": 3141.3, "px": 2245.8, "py": 2584.1}, {"loc_id": 7303, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 3842.4, "z": 1670.4, "px": 2703.8, "py": 2333.1}, {"loc_id": 7304, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 4090.8, "z": 1149.1, "px": 2746.2, "py": 2244.1}, {"loc_id": 7305, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 1095.2, "z": 3846.4, "px": 2234.9, "py": 2704.5}, {"loc_id": 7306, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 1718.3, "z": 3254.0, "px": 2341.3, "py": 2603.3}, {"loc_id": 7307, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 1350.2, "z": 3386.9, "px": 2278.4, "py": 2626.0}, {"loc_id": 7308, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -2822.0, "z": 5813.2, "px": 1566.4, "py": 3040.1}, {"loc_id": 7309, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -5058.3, "z": -2805.8, "px": 1184.7, "py": 1569.1}, {"loc_id": 7310, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 6918.1, "z": -2309.6, "px": 3228.7, "py": 1653.8}, {"loc_id": 7311, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 7096.2, "z": -1024.0, "px": 3259.1, "py": 1873.2}, {"loc_id": 7312, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 5493.1, "z": -2234.1, "px": 2985.5, "py": 1666.7}, {"loc_id": 7313, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 2822.1, "z": -5952.5, "px": 2529.6, "py": 1032.1}, {"loc_id": 7314, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 1080.0, "z": 3976.5, "px": 2232.3, "py": 2726.7}, {"loc_id": 7315, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 1020.9, "z": -4155.9, "px": 2222.2, "py": 1338.7}, {"loc_id": 7316, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -1142.0, "z": -4476.7, "px": 1853.1, "py": 1284.0}, {"loc_id": 7317, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 1209.6, "z": -4159.3, "px": 2254.4, "py": 1338.1}, {"loc_id": 7318, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 1606.1, "z": 3337.6, "px": 2322.1, "py": 2617.6}, {"loc_id": 7319, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -4404.4, "z": -6138.5, "px": 1296.3, "py": 1000.4}, {"loc_id": 7320, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -3778.0, "z": 3464.5, "px": 1403.2, "py": 2639.3}, {"loc_id": 7321, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 4094.6, "z": 1726.6, "px": 2746.8, "py": 2342.7}, {"loc_id": 7322, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 4612.1, "z": -1396.2, "px": 2835.1, "py": 1809.7}, {"loc_id": 7323, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -2047.3, "z": 3139.0, "px": 1698.6, "py": 2583.7}, {"loc_id": 7324, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 2304.3, "z": -4997.1, "px": 2441.3, "py": 1195.2}, {"loc_id": 7325, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 198.7, "z": 3516.0, "px": 2081.9, "py": 2648.1}, {"loc_id": 7326, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 5578.6, "z": -2111.9, "px": 3000.1, "py": 1687.6}, {"loc_id": 7327, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 5044.9, "z": -1543.6, "px": 2909.0, "py": 1784.6}, {"loc_id": 7328, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -122.3, "z": -4989.9, "px": 2027.1, "py": 1196.4}, {"loc_id": 7329, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 2825.1, "z": 7160.8, "px": 2530.2, "py": 3270.1}, {"loc_id": 7330, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 3708.7, "z": -574.5, "px": 2681.0, "py": 1950.0}, {"loc_id": 7331, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 3079.4, "z": 4425.1, "px": 2573.6, "py": 2803.2}, {"loc_id": 7332, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -2507.0, "z": 6019.8, "px": 1620.1, "py": 3075.4}, {"loc_id": 7333, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -1865.7, "z": 3380.8, "px": 1729.6, "py": 2625.0}, {"loc_id": 7334, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -4298.8, "z": 4.9, "px": 1314.3, "py": 2048.8}, {"loc_id": 7335, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -2486.5, "z": 3911.6, "px": 1623.6, "py": 2715.6}, {"loc_id": 7336, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -1152.5, "z": -4618.4, "px": 1851.3, "py": 1259.8}, {"loc_id": 7337, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -2891.7, "z": -7226.7, "px": 1554.5, "py": 814.6}, {"loc_id": 7338, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -3061.7, "z": 1289.3, "px": 1525.5, "py": 2268.0}, {"loc_id": 7339, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -2815.3, "z": 2244.9, "px": 1567.5, "py": 2431.1}, {"loc_id": 7340, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 5125.4, "z": -2425.7, "px": 2922.7, "py": 1634.0}, {"loc_id": 7341, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -5054.6, "z": -2941.0, "px": 1185.3, "py": 1546.1}, {"loc_id": 7342, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": 4674.5, "z": -2367.9, "px": 2845.8, "py": 1643.9}, {"loc_id": 7343, "loc_name": "TarPit1", "item": "Pickable: Tar", "count": 16, "x": -5895.2, "z": 2059.9, "px": 1041.9, "py": 2399.6}, {"loc_id": 7450, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 16, "x": 5248.0, "z": 192.0, "px": 2943.7, "py": 2080.8}, {"loc_id": 7462, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 16, "x": -3904.0, "z": 4480.0, "px": 1381.7, "py": 2812.6}, {"loc_id": 7467, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 16, "x": 2688.0, "z": -2688.0, "px": 2506.8, "py": 1589.2}, {"loc_id": 7481, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 16, "x": -832.0, "z": 8512.0, "px": 1906.0, "py": 3500.7}, {"loc_id": 7482, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 16, "x": 4288.0, "z": -5824.0, "px": 2779.8, "py": 1054.0}, {"loc_id": 7485, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 16, "x": -2048.0, "z": -192.0, "px": 1698.5, "py": 2015.2}, {"loc_id": 7499, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 16, "x": 4480.0, "z": -2048.0, "px": 2812.6, "py": 1698.5}, {"loc_id": 7506, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 16, "x": 2048.0, "z": 4736.0, "px": 2397.5, "py": 2856.3}, {"loc_id": 7506, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 16, "x": 2048.0, "z": 4736.0, "px": 2397.5, "py": 2856.3}, {"loc_id": 7508, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 16, "x": 3520.0, "z": 9216.0, "px": 2648.7, "py": 3620.9}, {"loc_id": 7516, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 16, "x": 3008.0, "z": 576.0, "px": 2561.4, "py": 2146.3}, {"loc_id": 7517, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 16, "x": 7488.0, "z": 3968.0, "px": 3326.0, "py": 2725.2}, {"loc_id": 7520, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 16, "x": 512.0, "z": 3776.0, "px": 2135.4, "py": 2692.4}, {"loc_id": 7531, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 16, "x": 6016.0, "z": 4480.0, "px": 3074.7, "py": 2812.6}, {"loc_id": 7535, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 16, "x": -9792.0, "z": -704.0, "px": 376.8, "py": 1927.9}, {"loc_id": 7541, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 16, "x": -320.0, "z": -1280.0, "px": 1993.4, "py": 1829.5}, {"loc_id": 7543, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 16, "x": -3904.0, "z": 1728.0, "px": 1381.7, "py": 2342.9}, {"loc_id": 7547, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 16, "x": 5760.0, "z": 4480.0, "px": 3031.0, "py": 2812.6}, {"loc_id": 7558, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 16, "x": -4416.0, "z": -3840.0, "px": 1294.3, "py": 1392.6}, {"loc_id": 7571, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 16, "x": -7232.0, "z": -1024.0, "px": 813.7, "py": 1873.2}, {"loc_id": 7571, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 16, "x": -7232.0, "z": -1024.0, "px": 813.7, "py": 1873.2}, {"loc_id": 10689, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 16, "x": -4552.2, "z": -7996.7, "px": 1271.1, "py": 683.2}, {"loc_id": 10716, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 16, "x": 3259.1, "z": -8380.7, "px": 2604.2, "py": 617.7}, {"loc_id": 10724, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 16, "x": -4408.4, "z": -8320.3, "px": 1295.6, "py": 628.0}, {"loc_id": 10873, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 16, "x": 1280.0, "z": -9216.0, "px": 2266.5, "py": 475.1}, {"loc_id": 10874, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 16, "x": 2112.0, "z": -9472.0, "px": 2408.4, "py": 431.4}, {"loc_id": 20, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 15, "x": -2682.3, "z": -5191.9, "px": 1590.2, "py": 1161.9}, {"loc_id": 46, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 15, "x": -2351.2, "z": 4805.5, "px": 1646.7, "py": 2868.1}, {"loc_id": 57, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 15, "x": 3789.7, "z": 4478.3, "px": 2694.8, "py": 2812.3}, {"loc_id": 78, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 15, "x": 4463.0, "z": -3019.3, "px": 2809.7, "py": 1532.7}, {"loc_id": 79, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 15, "x": -952.0, "z": -5685.9, "px": 1885.5, "py": 1077.6}, {"loc_id": 95, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 15, "x": -4304.7, "z": 337.4, "px": 1313.3, "py": 2105.6}, {"loc_id": 121, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 15, "x": -4236.9, "z": 465.5, "px": 1324.9, "py": 2127.4}, {"loc_id": 132, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 15, "x": -2767.1, "z": -1805.5, "px": 1575.7, "py": 1739.9}, {"loc_id": 147, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 15, "x": -3130.3, "z": 497.4, "px": 1513.8, "py": 2132.9}, {"loc_id": 154, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 15, "x": -2430.0, "z": 4939.6, "px": 1633.3, "py": 2891.0}, {"loc_id": 173, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 15, "x": 4731.5, "z": -783.9, "px": 2855.5, "py": 1914.2}, {"loc_id": 178, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 15, "x": -4272.5, "z": 3640.1, "px": 1318.8, "py": 2669.2}, {"loc_id": 660, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 15, "x": -6080.0, "z": -896.0, "px": 1010.3, "py": 1895.1}, {"loc_id": 671, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 15, "x": -6400.0, "z": -3968.0, "px": 955.7, "py": 1370.8}, {"loc_id": 673, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 15, "x": 7296.0, "z": -5056.0, "px": 3293.2, "py": 1185.1}, {"loc_id": 682, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 15, "x": 3904.0, "z": -5632.0, "px": 2714.3, "py": 1086.8}, {"loc_id": 695, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 15, "x": 7360.0, "z": -3456.0, "px": 3304.1, "py": 1458.2}, {"loc_id": 698, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 15, "x": 6208.0, "z": 5760.0, "px": 3107.5, "py": 3031.0}, {"loc_id": 698, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 15, "x": 6208.0, "z": 5760.0, "px": 3107.5, "py": 3031.0}, {"loc_id": 709, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 15, "x": -6080.0, "z": -1984.0, "px": 1010.3, "py": 1709.4}, {"loc_id": 721, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 15, "x": -2560.0, "z": -5760.0, "px": 1611.1, "py": 1065.0}, {"loc_id": 741, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 15, "x": 6400.0, "z": 4352.0, "px": 3140.3, "py": 2790.7}, {"loc_id": 747, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 15, "x": -7296.0, "z": 1152.0, "px": 802.8, "py": 2244.6}, {"loc_id": 748, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 15, "x": -4096.0, "z": 4736.0, "px": 1348.9, "py": 2856.3}, {"loc_id": 750, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 15, "x": 3072.0, "z": 7168.0, "px": 2572.3, "py": 3271.3}, {"loc_id": 760, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 15, "x": 4160.0, "z": -4736.0, "px": 2758.0, "py": 1239.7}, {"loc_id": 771, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 15, "x": 2944.0, "z": 5440.0, "px": 2550.4, "py": 2976.4}, {"loc_id": 779, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 15, "x": 2304.0, "z": -5760.0, "px": 2441.2, "py": 1065.0}, {"loc_id": 787, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 15, "x": 3200.0, "z": 5504.0, "px": 2594.1, "py": 2987.3}, {"loc_id": 794, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 15, "x": -8320.0, "z": 64.0, "px": 628.1, "py": 2058.9}, {"loc_id": 803, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 15, "x": -3008.0, "z": -6080.0, "px": 1534.6, "py": 1010.3}, {"loc_id": 806, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 15, "x": 4608.0, "z": 6336.0, "px": 2834.4, "py": 3129.3}, {"loc_id": 818, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 15, "x": -7360.0, "z": 4032.0, "px": 791.9, "py": 2736.1}, {"loc_id": 820, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 15, "x": -7360.0, "z": 3008.0, "px": 791.9, "py": 2561.4}, {"loc_id": 823, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 15, "x": -6720.0, "z": -3328.0, "px": 901.1, "py": 1480.0}, {"loc_id": 830, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 15, "x": 9920.0, "z": -192.0, "px": 3741.0, "py": 2015.2}, {"loc_id": 832, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 15, "x": -9216.0, "z": -64.0, "px": 475.1, "py": 2037.1}, {"loc_id": 882, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 15, "x": 7936.0, "z": 3008.0, "px": 3402.4, "py": 2561.4}, {"loc_id": 890, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 15, "x": -6528.0, "z": -3008.0, "px": 933.9, "py": 1534.6}, {"loc_id": 895, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 15, "x": -7424.0, "z": 4544.0, "px": 781.0, "py": 2823.5}, {"loc_id": 2019, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 15, "x": 1852.0, "z": 7225.8, "px": 2364.1, "py": 3281.2}, {"loc_id": 2029, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 15, "x": 1796.7, "z": 7414.9, "px": 2354.6, "py": 3313.5}, {"loc_id": 2039, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 15, "x": -5571.0, "z": -6197.3, "px": 1097.2, "py": 990.3}, {"loc_id": 2046, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 15, "x": 4928.8, "z": -2241.7, "px": 2889.2, "py": 1665.4}, {"loc_id": 2067, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 15, "x": 8253.5, "z": 198.8, "px": 3456.6, "py": 2081.9}, {"loc_id": 2082, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 15, "x": -1272.0, "z": -2183.0, "px": 1830.9, "py": 1675.4}, {"loc_id": 2091, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 15, "x": -7615.2, "z": -4745.0, "px": 748.3, "py": 1238.2}, {"loc_id": 2091, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 15, "x": -7615.2, "z": -4745.0, "px": 748.3, "py": 1238.2}, {"loc_id": 2096, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 15, "x": -4747.0, "z": 5697.4, "px": 1237.8, "py": 3020.4}, {"loc_id": 2102, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 15, "x": -7167.8, "z": 2488.8, "px": 824.7, "py": 2472.8}, {"loc_id": 2105, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 15, "x": 968.4, "z": 5450.5, "px": 2213.3, "py": 2978.2}, {"loc_id": 2108, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 15, "x": 7680.5, "z": -2887.2, "px": 3358.8, "py": 1555.3}, {"loc_id": 2116, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 15, "x": 5760.1, "z": -827.4, "px": 3031.1, "py": 1906.8}, {"loc_id": 2120, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 15, "x": 2178.0, "z": 1283.9, "px": 2419.7, "py": 2267.1}, {"loc_id": 2123, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 15, "x": -6721.1, "z": 3657.4, "px": 900.9, "py": 2672.2}, {"loc_id": 2126, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 15, "x": -5059.6, "z": -1797.8, "px": 1184.5, "py": 1741.2}, {"loc_id": 2127, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 15, "x": 3769.9, "z": 3914.8, "px": 2691.4, "py": 2716.1}, {"loc_id": 2141, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 15, "x": -1283.3, "z": -1154.5, "px": 1829.0, "py": 1851.0}, {"loc_id": 2148, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 15, "x": 7106.3, "z": 1216.9, "px": 3260.8, "py": 2255.7}, {"loc_id": 2153, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 15, "x": -834.3, "z": -6600.1, "px": 1905.6, "py": 921.6}, {"loc_id": 2160, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 15, "x": -5622.7, "z": 4937.3, "px": 1088.4, "py": 2890.6}, {"loc_id": 2168, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 15, "x": -7164.3, "z": -4734.5, "px": 825.3, "py": 1240.0}, {"loc_id": 2178, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 15, "x": 4361.3, "z": -5052.7, "px": 2792.3, "py": 1185.7}, {"loc_id": 2181, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 15, "x": -9341.1, "z": 3254.4, "px": 453.8, "py": 2603.4}, {"loc_id": 2183, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 15, "x": -9269.2, "z": 3385.5, "px": 466.1, "py": 2625.8}, {"loc_id": 3036, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 15, "x": 3969.5, "z": -1152.7, "px": 2725.5, "py": 1851.3}, {"loc_id": 3046, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 15, "x": 4289.0, "z": 5185.2, "px": 2780.0, "py": 2932.9}, {"loc_id": 3057, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 15, "x": -1534.8, "z": -6655.5, "px": 1786.1, "py": 912.1}, {"loc_id": 3059, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 15, "x": -62.5, "z": -4926.3, "px": 2037.3, "py": 1207.2}, {"loc_id": 3086, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 15, "x": 4032.1, "z": -4990.2, "px": 2736.1, "py": 1196.3}, {"loc_id": 3099, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 15, "x": 3776.9, "z": 1407.8, "px": 2692.6, "py": 2288.3}, {"loc_id": 3110, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 15, "x": -1918.3, "z": -3072.8, "px": 1720.6, "py": 1523.6}, {"loc_id": 3112, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 15, "x": 3009.4, "z": -1473.1, "px": 2561.6, "py": 1796.6}, {"loc_id": 3143, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 15, "x": 3969.5, "z": -639.1, "px": 2725.5, "py": 1938.9}, {"loc_id": 3145, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 15, "x": 7041.8, "z": 1088.1, "px": 3249.8, "py": 2233.7}, {"loc_id": 3154, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 15, "x": -961.8, "z": 4159.9, "px": 1883.9, "py": 2758.0}, {"loc_id": 3217, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 15, "x": -5502.3, "z": 641.6, "px": 1108.9, "py": 2157.5}, {"loc_id": 3226, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 15, "x": 1342.7, "z": 5057.3, "px": 2277.2, "py": 2911.1}, {"loc_id": 3234, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 15, "x": 4031.6, "z": 5118.5, "px": 2736.1, "py": 2921.6}, {"loc_id": 4112, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 15, "x": 513.6, "z": 5365.1, "px": 2135.7, "py": 2963.6}, {"loc_id": 4123, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 15, "x": -7167.3, "z": -1866.0, "px": 824.8, "py": 1729.5}, {"loc_id": 4132, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 15, "x": 1077.3, "z": -5511.5, "px": 2231.9, "py": 1107.4}, {"loc_id": 4134, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 15, "x": 3018.6, "z": -4425.6, "px": 2563.2, "py": 1292.7}, {"loc_id": 4135, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 15, "x": 2434.5, "z": 5052.4, "px": 2463.5, "py": 2910.3}, {"loc_id": 4143, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 15, "x": 3581.2, "z": 3573.3, "px": 2659.2, "py": 2657.8}, {"loc_id": 4144, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 15, "x": 7544.4, "z": -2691.5, "px": 3335.6, "py": 1588.7}, {"loc_id": 4155, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 15, "x": 5321.9, "z": 4856.1, "px": 2956.3, "py": 2876.8}, {"loc_id": 4158, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 15, "x": 1157.1, "z": -5302.3, "px": 2245.5, "py": 1143.1}, {"loc_id": 4172, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 15, "x": -8070.8, "z": 517.7, "px": 670.6, "py": 2136.4}, {"loc_id": 4179, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 15, "x": -7242.2, "z": -4937.2, "px": 812.0, "py": 1205.4}, {"loc_id": 4188, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 15, "x": 3456.5, "z": -2434.8, "px": 2637.9, "py": 1632.5}, {"loc_id": 4190, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 15, "x": 2058.7, "z": 1015.3, "px": 2399.4, "py": 2221.3}, {"loc_id": 4198, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 15, "x": 3829.0, "z": 1215.6, "px": 2701.5, "py": 2255.5}, {"loc_id": 4202, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 15, "x": -8186.5, "z": 2743.4, "px": 650.8, "py": 2516.2}, {"loc_id": 4229, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 15, "x": 907.0, "z": 5564.8, "px": 2202.8, "py": 2997.7}, {"loc_id": 4229, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 15, "x": 907.0, "z": 5564.8, "px": 2202.8, "py": 2997.7}, {"loc_id": 4230, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 15, "x": -7741.6, "z": 4344.6, "px": 726.8, "py": 2789.5}, {"loc_id": 4243, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 15, "x": 579.7, "z": 185.9, "px": 2146.9, "py": 2079.7}, {"loc_id": 4264, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 15, "x": 8056.3, "z": -2882.2, "px": 3422.9, "py": 1556.1}, {"loc_id": 4269, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 15, "x": -1795.6, "z": 3065.6, "px": 1741.6, "py": 2571.2}, {"loc_id": 4303, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 15, "x": -516.3, "z": 325.0, "px": 1959.9, "py": 2103.5}, {"loc_id": 4305, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 15, "x": -6663.1, "z": 3777.2, "px": 910.8, "py": 2692.6}, {"loc_id": 4311, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 15, "x": 2953.2, "z": -2112.1, "px": 2552.0, "py": 1687.5}, {"loc_id": 4314, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 15, "x": -6971.4, "z": 2491.2, "px": 858.2, "py": 2473.2}, {"loc_id": 4331, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 15, "x": -7416.6, "z": 4353.4, "px": 782.2, "py": 2791.0}, {"loc_id": 4338, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 15, "x": -1467.5, "z": -1670.1, "px": 1797.5, "py": 1763.0}, {"loc_id": 4344, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 15, "x": -9541.9, "z": -313.4, "px": 419.5, "py": 1994.5}, {"loc_id": 4358, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 15, "x": 8125.6, "z": -196.7, "px": 3434.8, "py": 2014.4}, {"loc_id": 4362, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 15, "x": 3191.6, "z": -2309.6, "px": 2592.7, "py": 1653.8}, {"loc_id": 4376, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 15, "x": 2488.8, "z": -1352.3, "px": 2472.8, "py": 1817.2}, {"loc_id": 4383, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 15, "x": -1781.4, "z": -4545.8, "px": 1744.0, "py": 1272.2}, {"loc_id": 4386, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 15, "x": 8323.7, "z": 195.3, "px": 3468.6, "py": 2081.3}, {"loc_id": 4392, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 15, "x": 2299.3, "z": 5187.5, "px": 2440.4, "py": 2933.3}, {"loc_id": 4400, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 15, "x": 3450.0, "z": -2686.0, "px": 2636.8, "py": 1589.6}, {"loc_id": 4418, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 15, "x": 3208.8, "z": -2630.5, "px": 2595.6, "py": 1599.1}, {"loc_id": 4427, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 15, "x": 1735.8, "z": -1148.4, "px": 2344.2, "py": 1852.0}, {"loc_id": 4445, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 15, "x": 1988.0, "z": 1414.1, "px": 2387.3, "py": 2289.3}, {"loc_id": 4451, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 15, "x": -3511.8, "z": 4799.5, "px": 1448.7, "py": 2867.1}, {"loc_id": 4455, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 15, "x": 9526.9, "z": 1407.6, "px": 3673.9, "py": 2288.2}, {"loc_id": 4473, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 15, "x": -1352.6, "z": -1536.9, "px": 1817.2, "py": 1785.7}, {"loc_id": 4485, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 15, "x": 3648.4, "z": 197.1, "px": 2670.7, "py": 2081.6}, {"loc_id": 4498, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 15, "x": 1098.3, "z": -5692.8, "px": 2235.4, "py": 1076.4}, {"loc_id": 4502, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 15, "x": 1737.4, "z": -1014.3, "px": 2344.5, "py": 1874.9}, {"loc_id": 4505, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 15, "x": -9609.6, "z": 699.3, "px": 408.0, "py": 2167.3}, {"loc_id": 7449, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 15, "x": -3328.0, "z": -2048.0, "px": 1480.0, "py": 1698.5}, {"loc_id": 7451, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 15, "x": 8384.0, "z": -3904.0, "px": 3478.9, "py": 1381.7}, {"loc_id": 7455, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 15, "x": 6592.0, "z": 6464.0, "px": 3173.0, "py": 3151.2}, {"loc_id": 7456, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 15, "x": -128.0, "z": -1344.0, "px": 2026.2, "py": 1818.6}, {"loc_id": 7460, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 15, "x": -4480.0, "z": -1344.0, "px": 1283.4, "py": 1818.6}, {"loc_id": 7460, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 15, "x": -4480.0, "z": -1344.0, "px": 1283.4, "py": 1818.6}, {"loc_id": 7460, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 15, "x": -4480.0, "z": -1344.0, "px": 1283.4, "py": 1818.6}, {"loc_id": 7461, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 15, "x": 1024.0, "z": -2624.0, "px": 2222.8, "py": 1600.2}, {"loc_id": 7465, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 15, "x": -5184.0, "z": 5440.0, "px": 1163.3, "py": 2976.4}, {"loc_id": 7480, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 15, "x": -3776.0, "z": 1408.0, "px": 1403.6, "py": 2288.3}, {"loc_id": 7484, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 15, "x": 2240.0, "z": -2688.0, "px": 2430.3, "py": 1589.2}, {"loc_id": 7485, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 15, "x": -2048.0, "z": -192.0, "px": 1698.5, "py": 2015.2}, {"loc_id": 7488, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 15, "x": -7616.0, "z": -2368.0, "px": 748.2, "py": 1643.9}, {"loc_id": 7489, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 15, "x": 7040.0, "z": -512.0, "px": 3249.5, "py": 1960.6}, {"loc_id": 7490, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 15, "x": -6848.0, "z": -2176.0, "px": 879.3, "py": 1676.6}, {"loc_id": 7495, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 15, "x": 3328.0, "z": 9280.0, "px": 2616.0, "py": 3631.8}, {"loc_id": 7499, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 15, "x": 4480.0, "z": -2048.0, "px": 2812.6, "py": 1698.5}, {"loc_id": 7500, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 15, "x": -9600.0, "z": -576.0, "px": 409.6, "py": 1949.7}, {"loc_id": 7501, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 15, "x": -3840.0, "z": 4736.0, "px": 1392.6, "py": 2856.3}, {"loc_id": 7507, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 15, "x": -5056.0, "z": 2688.0, "px": 1185.1, "py": 2506.8}, {"loc_id": 7508, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 15, "x": 3520.0, "z": 9216.0, "px": 2648.7, "py": 3620.9}, {"loc_id": 7519, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 15, "x": -7040.0, "z": -2432.0, "px": 846.5, "py": 1632.9}, {"loc_id": 7525, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 15, "x": -4160.0, "z": -4032.0, "px": 1338.0, "py": 1359.9}, {"loc_id": 7531, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 15, "x": 6016.0, "z": 4480.0, "px": 3074.7, "py": 2812.6}, {"loc_id": 7533, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 15, "x": -8576.0, "z": -960.0, "px": 584.4, "py": 1884.2}, {"loc_id": 7535, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 15, "x": -9792.0, "z": -704.0, "px": 376.8, "py": 1927.9}, {"loc_id": 7539, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 15, "x": 1280.0, "z": -4992.0, "px": 2266.5, "py": 1196.0}, {"loc_id": 7542, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 15, "x": 1088.0, "z": 128.0, "px": 2233.7, "py": 2069.8}, {"loc_id": 7544, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 15, "x": -2432.0, "z": 1920.0, "px": 1632.9, "py": 2375.7}, {"loc_id": 7546, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 15, "x": -4480.0, "z": -64.0, "px": 1283.4, "py": 2037.1}, {"loc_id": 7547, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 15, "x": 5760.0, "z": 4480.0, "px": 3031.0, "py": 2812.6}, {"loc_id": 7549, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 15, "x": 2496.0, "z": -2560.0, "px": 2474.0, "py": 1611.1}, {"loc_id": 7551, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 15, "x": -1920.0, "z": -576.0, "px": 1720.3, "py": 1949.7}, {"loc_id": 7553, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 15, "x": -6080.0, "z": -320.0, "px": 1010.3, "py": 1993.4}, {"loc_id": 7554, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 15, "x": 3776.0, "z": -128.0, "px": 2692.4, "py": 2026.2}, {"loc_id": 7556, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 15, "x": -3200.0, "z": 2752.0, "px": 1501.9, "py": 2517.7}, {"loc_id": 7559, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 15, "x": -4096.0, "z": 1600.0, "px": 1348.9, "py": 2321.1}, {"loc_id": 7566, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 15, "x": -4288.0, "z": -1216.0, "px": 1316.2, "py": 1840.5}, {"loc_id": 7567, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 15, "x": 2048.0, "z": -1600.0, "px": 2397.5, "py": 1774.9}, {"loc_id": 7569, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 15, "x": -5376.0, "z": 4992.0, "px": 1130.5, "py": 2900.0}, {"loc_id": 7574, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 15, "x": 5760.0, "z": 4800.0, "px": 3031.0, "py": 2867.2}, {"loc_id": 10045, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 15, "x": -1600.0, "z": -9472.0, "px": 1774.9, "py": 431.4}, {"loc_id": 10685, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 15, "x": 2423.0, "z": -8966.2, "px": 2461.5, "py": 517.8}, {"loc_id": 10702, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 15, "x": 2121.6, "z": -9339.0, "px": 2410.1, "py": 454.1}, {"loc_id": 10709, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 15, "x": 5384.6, "z": -8070.3, "px": 2967.0, "py": 670.7}, {"loc_id": 10720, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 15, "x": -4612.3, "z": -8391.2, "px": 1260.8, "py": 615.9}, {"loc_id": 10732, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 15, "x": 2618.2, "z": -9017.8, "px": 2494.8, "py": 509.0}, {"loc_id": 10733, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 15, "x": 647.3, "z": -9861.7, "px": 2158.5, "py": 364.9}, {"loc_id": 10836, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 15, "x": -1344.0, "z": -9280.0, "px": 1818.6, "py": 464.2}, {"loc_id": 22, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 14, "x": -4353.9, "z": 1157.7, "px": 1304.9, "py": 2245.6}, {"loc_id": 36, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 14, "x": -2570.0, "z": -1520.8, "px": 1609.4, "py": 1788.5}, {"loc_id": 50, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 14, "x": -773.5, "z": -3723.6, "px": 1916.0, "py": 1412.5}, {"loc_id": 63, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 14, "x": 1654.7, "z": 4477.8, "px": 2330.4, "py": 2812.2}, {"loc_id": 64, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 14, "x": -4300.6, "z": 656.9, "px": 1314.0, "py": 2160.1}, {"loc_id": 65, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 14, "x": -4301.0, "z": 516.6, "px": 1314.0, "py": 2136.2}, {"loc_id": 68, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 14, "x": -3123.2, "z": 395.0, "px": 1515.0, "py": 2115.4}, {"loc_id": 69, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 14, "x": 2314.6, "z": -1080.4, "px": 2443.0, "py": 1863.6}, {"loc_id": 75, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 14, "x": -5701.0, "z": -1147.1, "px": 1075.0, "py": 1852.2}, {"loc_id": 94, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 14, "x": 4547.2, "z": -3269.9, "px": 2824.1, "py": 1489.9}, {"loc_id": 104, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 14, "x": 1020.1, "z": 4295.3, "px": 2222.1, "py": 2781.1}, {"loc_id": 139, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 14, "x": 3504.5, "z": 1327.7, "px": 2646.1, "py": 2274.6}, {"loc_id": 158, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 14, "x": -4423.2, "z": 1289.1, "px": 1293.1, "py": 2268.0}, {"loc_id": 169, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 14, "x": -5107.9, "z": 1285.8, "px": 1176.3, "py": 2267.4}, {"loc_id": 172, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 14, "x": -3663.7, "z": 205.0, "px": 1422.7, "py": 2083.0}, {"loc_id": 182, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 14, "x": -2513.9, "z": -4161.4, "px": 1619.0, "py": 1337.8}, {"loc_id": 189, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 14, "x": 1211.9, "z": 2097.1, "px": 2254.8, "py": 2405.9}, {"loc_id": 659, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 14, "x": 3840.0, "z": -5952.0, "px": 2703.4, "py": 1032.2}, {"loc_id": 661, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 14, "x": 9280.0, "z": -1728.0, "px": 3631.8, "py": 1753.1}, {"loc_id": 663, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 14, "x": -1728.0, "z": -7296.0, "px": 1753.1, "py": 802.8}, {"loc_id": 696, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 14, "x": 4672.0, "z": -4672.0, "px": 2845.4, "py": 1250.6}, {"loc_id": 697, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 14, "x": 9600.0, "z": -2368.0, "px": 3686.4, "py": 1643.9}, {"loc_id": 707, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 14, "x": 1024.0, "z": -7360.0, "px": 2222.8, "py": 791.9}, {"loc_id": 719, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 14, "x": 4032.0, "z": -6144.0, "px": 2736.1, "py": 999.4}, {"loc_id": 724, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 14, "x": -6912.0, "z": 5056.0, "px": 868.4, "py": 2910.9}, {"loc_id": 746, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 14, "x": -6592.0, "z": 896.0, "px": 923.0, "py": 2200.9}, {"loc_id": 751, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 14, "x": -1792.0, "z": -5824.0, "px": 1742.2, "py": 1054.0}, {"loc_id": 752, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 14, "x": 8256.0, "z": -2880.0, "px": 3457.0, "py": 1556.5}, {"loc_id": 770, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 14, "x": 7552.0, "z": -4480.0, "px": 3336.9, "py": 1283.4}, {"loc_id": 770, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 14, "x": 7552.0, "z": -4480.0, "px": 3336.9, "py": 1283.4}, {"loc_id": 771, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 14, "x": 2944.0, "z": 5440.0, "px": 2550.4, "py": 2976.4}, {"loc_id": 772, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 14, "x": -7104.0, "z": -2176.0, "px": 835.6, "py": 1676.6}, {"loc_id": 786, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 14, "x": -9472.0, "z": -960.0, "px": 431.4, "py": 1884.2}, {"loc_id": 788, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 14, "x": 4864.0, "z": 5696.0, "px": 2878.1, "py": 3020.1}, {"loc_id": 801, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 14, "x": -5760.0, "z": -5504.0, "px": 1065.0, "py": 1108.7}, {"loc_id": 803, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 14, "x": -3008.0, "z": -6080.0, "px": 1534.6, "py": 1010.3}, {"loc_id": 813, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 14, "x": -8192.0, "z": -3520.0, "px": 649.9, "py": 1447.3}, {"loc_id": 819, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 14, "x": -6592.0, "z": -4992.0, "px": 923.0, "py": 1196.0}, {"loc_id": 819, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 14, "x": -6592.0, "z": -4992.0, "px": 923.0, "py": 1196.0}, {"loc_id": 827, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 14, "x": 6336.0, "z": -1280.0, "px": 3129.3, "py": 1829.5}, {"loc_id": 834, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 14, "x": -8576.0, "z": 1280.0, "px": 584.4, "py": 2266.5}, {"loc_id": 852, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 14, "x": 8512.0, "z": -2688.0, "px": 3500.7, "py": 1589.2}, {"loc_id": 856, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 14, "x": -7168.0, "z": 3840.0, "px": 824.7, "py": 2703.4}, {"loc_id": 867, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 14, "x": -5120.0, "z": 4672.0, "px": 1174.2, "py": 2845.4}, {"loc_id": 872, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 14, "x": -9152.0, "z": -2240.0, "px": 486.1, "py": 1665.7}, {"loc_id": 884, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 14, "x": -7872.0, "z": 4608.0, "px": 704.5, "py": 2834.4}, {"loc_id": 885, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 14, "x": -5184.0, "z": -3840.0, "px": 1163.3, "py": 1392.6}, {"loc_id": 887, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 14, "x": -7616.0, "z": -3328.0, "px": 748.2, "py": 1480.0}, {"loc_id": 916, "loc_name": "Hildir_crypt", "item": "SpawnOnce: Skeleton", "count": 14, "x": 2613.9, "z": 5053.6, "px": 2494.1, "py": 2910.5}, {"loc_id": 2004, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 14, "x": 5893.1, "z": -707.2, "px": 3053.8, "py": 1927.3}, {"loc_id": 2008, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 14, "x": 8127.2, "z": -263.8, "px": 3435.0, "py": 2003.0}, {"loc_id": 2011, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 14, "x": 5431.7, "z": -900.4, "px": 2975.0, "py": 1894.3}, {"loc_id": 2013, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 14, "x": -2295.1, "z": 708.0, "px": 1656.3, "py": 2168.8}, {"loc_id": 2034, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 14, "x": -8262.3, "z": 2627.8, "px": 637.9, "py": 2496.5}, {"loc_id": 2040, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 14, "x": 3391.7, "z": 3514.9, "px": 2626.9, "py": 2647.9}, {"loc_id": 2046, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 14, "x": 4928.8, "z": -2241.7, "px": 2889.2, "py": 1665.4}, {"loc_id": 2064, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 14, "x": 6654.9, "z": 3129.8, "px": 3183.8, "py": 2582.2}, {"loc_id": 2064, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 14, "x": 6654.9, "z": 3129.8, "px": 3183.8, "py": 2582.2}, {"loc_id": 2068, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 14, "x": 7799.0, "z": -261.2, "px": 3379.0, "py": 2003.4}, {"loc_id": 2110, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 14, "x": -7299.5, "z": -3591.5, "px": 802.2, "py": 1435.1}, {"loc_id": 2113, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 14, "x": 502.9, "z": 377.9, "px": 2133.8, "py": 2112.5}, {"loc_id": 2121, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 14, "x": -3338.0, "z": 4485.4, "px": 1478.3, "py": 2813.5}, {"loc_id": 2122, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 14, "x": 1973.5, "z": 3575.7, "px": 2384.8, "py": 2658.3}, {"loc_id": 2122, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 14, "x": 1973.5, "z": 3575.7, "px": 2384.8, "py": 2658.3}, {"loc_id": 2145, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 14, "x": 2491.2, "z": 5062.0, "px": 2473.2, "py": 2911.9}, {"loc_id": 2152, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 14, "x": 1094.5, "z": -5131.0, "px": 2234.8, "py": 1172.3}, {"loc_id": 2153, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 14, "x": -834.3, "z": -6600.1, "px": 1905.6, "py": 921.6}, {"loc_id": 2153, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 14, "x": -834.3, "z": -6600.1, "px": 1905.6, "py": 921.6}, {"loc_id": 2153, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 14, "x": -834.3, "z": -6600.1, "px": 1905.6, "py": 921.6}, {"loc_id": 2166, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 14, "x": -5567.0, "z": 4730.5, "px": 1097.9, "py": 2855.3}, {"loc_id": 2169, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 14, "x": -7622.1, "z": 4287.6, "px": 747.2, "py": 2779.8}, {"loc_id": 2179, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 14, "x": -824.1, "z": 4866.1, "px": 1907.4, "py": 2878.5}, {"loc_id": 3049, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 14, "x": 3265.8, "z": -1407.4, "px": 2605.4, "py": 1807.8}, {"loc_id": 3052, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 14, "x": -6206.2, "z": 1408.8, "px": 988.8, "py": 2288.4}, {"loc_id": 3085, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 14, "x": -4543.6, "z": -6143.1, "px": 1272.6, "py": 999.6}, {"loc_id": 3088, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 14, "x": -3647.2, "z": 2177.6, "px": 1425.5, "py": 2419.6}, {"loc_id": 3116, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 14, "x": 1279.3, "z": 3262.7, "px": 2266.3, "py": 2604.8}, {"loc_id": 3187, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 14, "x": -2942.1, "z": -2560.2, "px": 1545.9, "py": 1611.1}, {"loc_id": 3188, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 14, "x": -5502.5, "z": 5377.2, "px": 1108.9, "py": 2965.7}, {"loc_id": 3218, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 14, "x": 6273.8, "z": 1535.8, "px": 3118.7, "py": 2310.1}, {"loc_id": 3227, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 14, "x": 769.6, "z": 4094.1, "px": 2179.3, "py": 2746.7}, {"loc_id": 4112, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 14, "x": 513.6, "z": 5365.1, "px": 2135.7, "py": 2963.6}, {"loc_id": 4115, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 14, "x": -5001.8, "z": 777.7, "px": 1194.4, "py": 2180.7}, {"loc_id": 4117, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 14, "x": -4740.3, "z": 5570.9, "px": 1239.0, "py": 2998.8}, {"loc_id": 4120, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 14, "x": -6462.9, "z": -4733.3, "px": 945.0, "py": 1240.2}, {"loc_id": 4150, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 14, "x": -9221.4, "z": 2885.5, "px": 474.2, "py": 2540.5}, {"loc_id": 4152, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 14, "x": 5113.9, "z": 5255.2, "px": 2920.8, "py": 2944.9}, {"loc_id": 4154, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 14, "x": -1339.3, "z": -1343.6, "px": 1819.4, "py": 1818.7}, {"loc_id": 4156, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 14, "x": 6653.1, "z": 4920.0, "px": 3183.5, "py": 2887.7}, {"loc_id": 4157, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 14, "x": -9159.0, "z": 3018.4, "px": 484.9, "py": 2563.1}, {"loc_id": 4161, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 14, "x": 6406.0, "z": 3253.2, "px": 3141.3, "py": 2603.2}, {"loc_id": 4166, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 14, "x": 5699.1, "z": 1534.6, "px": 3020.6, "py": 2309.9}, {"loc_id": 4170, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 14, "x": 1734.2, "z": 7416.2, "px": 2344.0, "py": 3313.7}, {"loc_id": 4174, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 14, "x": 1161.6, "z": 5507.9, "px": 2246.2, "py": 2988.0}, {"loc_id": 4189, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 14, "x": 2811.4, "z": -4794.0, "px": 2527.8, "py": 1229.8}, {"loc_id": 4191, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 14, "x": 3893.5, "z": 4862.5, "px": 2712.5, "py": 2877.9}, {"loc_id": 4192, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 14, "x": 7925.4, "z": -2948.4, "px": 3400.6, "py": 1544.8}, {"loc_id": 4209, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 14, "x": 4603.6, "z": -5193.7, "px": 2833.7, "py": 1161.6}, {"loc_id": 4219, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 14, "x": -5114.9, "z": 309.7, "px": 1175.1, "py": 2100.9}, {"loc_id": 4220, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 14, "x": 8705.3, "z": -3714.4, "px": 3533.7, "py": 1414.1}, {"loc_id": 4228, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 14, "x": 2681.5, "z": -4486.6, "px": 2505.6, "py": 1282.3}, {"loc_id": 4235, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 14, "x": 4286.9, "z": -838.4, "px": 2779.6, "py": 1904.9}, {"loc_id": 4236, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 14, "x": -5256.6, "z": 5576.3, "px": 1150.9, "py": 2999.7}, {"loc_id": 4255, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 14, "x": -7035.7, "z": 2438.1, "px": 847.2, "py": 2464.1}, {"loc_id": 4267, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 14, "x": -3721.4, "z": 6782.4, "px": 1412.9, "py": 3205.5}, {"loc_id": 4286, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 14, "x": 772.0, "z": 5308.1, "px": 2179.8, "py": 2953.9}, {"loc_id": 4286, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 14, "x": 772.0, "z": 5308.1, "px": 2179.8, "py": 2953.9}, {"loc_id": 4290, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 14, "x": -8455.7, "z": -1866.4, "px": 604.9, "py": 1729.5}, {"loc_id": 4291, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 14, "x": -9346.4, "z": 3080.4, "px": 452.9, "py": 2573.7}, {"loc_id": 4293, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 14, "x": 2745.6, "z": 455.2, "px": 2516.6, "py": 2125.7}, {"loc_id": 4298, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 14, "x": 6791.1, "z": 4738.8, "px": 3207.0, "py": 2856.8}, {"loc_id": 4300, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 14, "x": 7413.3, "z": -4476.7, "px": 3313.2, "py": 1284.0}, {"loc_id": 4302, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 14, "x": -3838.8, "z": -251.4, "px": 1392.8, "py": 2005.1}, {"loc_id": 4304, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 14, "x": 9.6, "z": -4220.6, "px": 2049.6, "py": 1327.7}, {"loc_id": 4306, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 14, "x": 3400.3, "z": -2175.3, "px": 2628.3, "py": 1676.7}, {"loc_id": 4324, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 14, "x": 3912.6, "z": -507.5, "px": 2715.8, "py": 1961.4}, {"loc_id": 4353, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 14, "x": -3525.6, "z": 6778.0, "px": 1446.3, "py": 3204.8}, {"loc_id": 4367, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 14, "x": -1032.8, "z": 377.8, "px": 1871.7, "py": 2112.5}, {"loc_id": 4373, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 14, "x": 7289.3, "z": -3133.3, "px": 3292.0, "py": 1513.3}, {"loc_id": 4376, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 14, "x": 2488.8, "z": -1352.3, "px": 2472.8, "py": 1817.2}, {"loc_id": 4376, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 14, "x": 2488.8, "z": -1352.3, "px": 2472.8, "py": 1817.2}, {"loc_id": 4378, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 14, "x": -1334.3, "z": -1916.0, "px": 1820.3, "py": 1721.0}, {"loc_id": 4380, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 14, "x": 5123.8, "z": 5194.0, "px": 2922.5, "py": 2934.4}, {"loc_id": 4387, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 14, "x": 5190.4, "z": 5056.9, "px": 2933.8, "py": 2911.0}, {"loc_id": 4388, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 14, "x": 1660.3, "z": -4422.1, "px": 2331.4, "py": 1293.3}, {"loc_id": 4391, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 14, "x": -6849.0, "z": 3786.3, "px": 879.1, "py": 2694.2}, {"loc_id": 4404, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 14, "x": 1985.8, "z": -6334.0, "px": 2386.9, "py": 967.0}, {"loc_id": 4420, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 14, "x": 2427.3, "z": -1475.0, "px": 2462.3, "py": 1796.3}, {"loc_id": 4424, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 14, "x": 7353.4, "z": -4420.3, "px": 3303.0, "py": 1293.6}, {"loc_id": 4426, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 14, "x": 8777.6, "z": -1335.1, "px": 3546.0, "py": 1820.1}, {"loc_id": 4433, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 14, "x": 6602.0, "z": 4795.5, "px": 3174.7, "py": 2866.4}, {"loc_id": 4434, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 14, "x": -9078.9, "z": 3462.7, "px": 498.5, "py": 2639.0}, {"loc_id": 4440, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 14, "x": 4425.2, "z": 6792.0, "px": 2803.2, "py": 3207.2}, {"loc_id": 4449, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 14, "x": -9086.4, "z": 3208.4, "px": 497.3, "py": 2595.6}, {"loc_id": 4455, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 14, "x": 9526.9, "z": 1407.6, "px": 3673.9, "py": 2288.2}, {"loc_id": 4460, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 14, "x": -7484.5, "z": -4990.2, "px": 770.6, "py": 1196.3}, {"loc_id": 4467, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 14, "x": 3511.5, "z": 3513.7, "px": 2647.3, "py": 2647.7}, {"loc_id": 4468, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 14, "x": 3901.0, "z": 1013.6, "px": 2713.8, "py": 2221.0}, {"loc_id": 4472, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 14, "x": 378.2, "z": 5310.1, "px": 2112.5, "py": 2954.3}, {"loc_id": 4475, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 14, "x": 1734.3, "z": -4545.6, "px": 2344.0, "py": 1272.2}, {"loc_id": 4476, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 14, "x": -3898.5, "z": -138.6, "px": 1382.7, "py": 2024.3}, {"loc_id": 4481, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 14, "x": -1911.4, "z": -4671.1, "px": 1721.8, "py": 1250.8}, {"loc_id": 4486, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 14, "x": 3395.3, "z": -2438.4, "px": 2627.5, "py": 1631.8}, {"loc_id": 7446, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 14, "x": 4544.0, "z": -5632.0, "px": 2823.5, "py": 1086.8}, {"loc_id": 7446, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 14, "x": 4544.0, "z": -5632.0, "px": 2823.5, "py": 1086.8}, {"loc_id": 7447, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 14, "x": 9920.0, "z": -1216.0, "px": 3741.0, "py": 1840.5}, {"loc_id": 7458, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 14, "x": 6144.0, "z": 4736.0, "px": 3096.6, "py": 2856.3}, {"loc_id": 7464, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 14, "x": -6656.0, "z": -1984.0, "px": 912.0, "py": 1709.4}, {"loc_id": 7472, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 14, "x": 4608.0, "z": -5440.0, "px": 2834.4, "py": 1119.6}, {"loc_id": 7478, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 14, "x": 4800.0, "z": -5312.0, "px": 2867.2, "py": 1141.4}, {"loc_id": 7486, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 14, "x": 1728.0, "z": 6656.0, "px": 2342.9, "py": 3184.0}, {"loc_id": 7490, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 14, "x": -6848.0, "z": -2176.0, "px": 879.3, "py": 1676.6}, {"loc_id": 7499, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 14, "x": 4480.0, "z": -2048.0, "px": 2812.6, "py": 1698.5}, {"loc_id": 7509, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 14, "x": -2688.0, "z": 7104.0, "px": 1589.2, "py": 3260.4}, {"loc_id": 7516, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 14, "x": 3008.0, "z": 576.0, "px": 2561.4, "py": 2146.3}, {"loc_id": 7520, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 14, "x": 512.0, "z": 3776.0, "px": 2135.4, "py": 2692.4}, {"loc_id": 7522, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 14, "x": -4032.0, "z": 1408.0, "px": 1359.9, "py": 2288.3}, {"loc_id": 7525, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 14, "x": -4160.0, "z": -4032.0, "px": 1338.0, "py": 1359.9}, {"loc_id": 7541, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 14, "x": -320.0, "z": -1280.0, "px": 1993.4, "py": 1829.5}, {"loc_id": 7543, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 14, "x": -3904.0, "z": 1728.0, "px": 1381.7, "py": 2342.9}, {"loc_id": 7543, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 14, "x": -3904.0, "z": 1728.0, "px": 1381.7, "py": 2342.9}, {"loc_id": 7544, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 14, "x": -2432.0, "z": 1920.0, "px": 1632.9, "py": 2375.7}, {"loc_id": 7549, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 14, "x": 2496.0, "z": -2560.0, "px": 2474.0, "py": 1611.1}, {"loc_id": 7551, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 14, "x": -1920.0, "z": -576.0, "px": 1720.3, "py": 1949.7}, {"loc_id": 7553, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 14, "x": -6080.0, "z": -320.0, "px": 1010.3, "py": 1993.4}, {"loc_id": 7554, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 14, "x": 3776.0, "z": -128.0, "px": 2692.4, "py": 2026.2}, {"loc_id": 7560, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 14, "x": 9344.0, "z": -2240.0, "px": 3642.7, "py": 1665.7}, {"loc_id": 7567, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 14, "x": 2048.0, "z": -1600.0, "px": 2397.5, "py": 1774.9}, {"loc_id": 7569, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 14, "x": -5376.0, "z": 4992.0, "px": 1130.5, "py": 2900.0}, {"loc_id": 7573, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 14, "x": 2304.0, "z": -2880.0, "px": 2441.2, "py": 1556.5}, {"loc_id": 9988, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 14, "x": -704.0, "z": -9536.0, "px": 1927.9, "py": 420.5}, {"loc_id": 10040, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 14, "x": -576.0, "z": -9536.0, "px": 1949.7, "py": 420.5}, {"loc_id": 10684, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 14, "x": 3972.4, "z": -8959.6, "px": 2726.0, "py": 518.9}, {"loc_id": 10707, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 14, "x": -3912.4, "z": -8956.6, "px": 1380.3, "py": 519.4}, {"loc_id": 10837, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 14, "x": -576.0, "z": -9920.0, "px": 1949.7, "py": 355.0}, {"loc_id": 10837, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 14, "x": -576.0, "z": -9920.0, "px": 1949.7, "py": 355.0}, {"loc_id": 10859, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 14, "x": -1152.0, "z": -9600.0, "px": 1851.4, "py": 409.6}, {"loc_id": 10861, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 14, "x": -3712.0, "z": -9216.0, "px": 1414.5, "py": 475.1}, {"loc_id": 10901, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 14, "x": -2368.0, "z": -8384.0, "px": 1643.9, "py": 617.1}, {"loc_id": 26, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 13, "x": -3714.0, "z": -4105.5, "px": 1414.1, "py": 1347.3}, {"loc_id": 39, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 13, "x": -562.3, "z": -4030.4, "px": 1952.0, "py": 1360.1}, {"loc_id": 51, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 13, "x": 4555.6, "z": -3149.3, "px": 2825.5, "py": 1510.5}, {"loc_id": 70, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 13, "x": 2613.0, "z": -138.8, "px": 2494.0, "py": 2024.3}, {"loc_id": 94, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 13, "x": 4547.2, "z": -3269.9, "px": 2824.1, "py": 1489.9}, {"loc_id": 98, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 13, "x": 2425.8, "z": -1021.2, "px": 2462.0, "py": 1873.7}, {"loc_id": 105, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 13, "x": 197.3, "z": 2575.2, "px": 2081.7, "py": 2487.5}, {"loc_id": 111, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 13, "x": -264.5, "z": 2509.6, "px": 2002.9, "py": 2476.3}, {"loc_id": 112, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 13, "x": 2361.0, "z": -3273.3, "px": 2450.9, "py": 1489.4}, {"loc_id": 114, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 13, "x": 1607.7, "z": 2117.6, "px": 2322.4, "py": 2409.4}, {"loc_id": 125, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 13, "x": -5361.6, "z": 1717.9, "px": 1133.0, "py": 2341.2}, {"loc_id": 150, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 13, "x": 3631.8, "z": 1023.6, "px": 2667.8, "py": 2222.7}, {"loc_id": 152, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 13, "x": 3722.0, "z": 717.5, "px": 2683.2, "py": 2170.5}, {"loc_id": 165, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 13, "x": 2629.5, "z": 3851.6, "px": 2496.8, "py": 2705.3}, {"loc_id": 186, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 13, "x": -5617.1, "z": -1099.6, "px": 1089.3, "py": 1860.3}, {"loc_id": 187, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 13, "x": 4433.2, "z": -3127.0, "px": 2804.6, "py": 1514.3}, {"loc_id": 191, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 13, "x": -701.9, "z": -3592.2, "px": 1928.2, "py": 1434.9}, {"loc_id": 661, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 13, "x": 9280.0, "z": -1728.0, "px": 3631.8, "py": 1753.1}, {"loc_id": 664, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 13, "x": 5952.0, "z": 5120.0, "px": 3063.8, "py": 2921.8}, {"loc_id": 666, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 13, "x": 3072.0, "z": 6336.0, "px": 2572.3, "py": 3129.3}, {"loc_id": 668, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 13, "x": 5952.0, "z": -4416.0, "px": 3063.8, "py": 1294.3}, {"loc_id": 673, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 13, "x": 7296.0, "z": -5056.0, "px": 3293.2, "py": 1185.1}, {"loc_id": 675, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 13, "x": -6912.0, "z": 1088.0, "px": 868.4, "py": 2233.7}, {"loc_id": 677, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 13, "x": -8000.0, "z": -4288.0, "px": 682.7, "py": 1316.2}, {"loc_id": 678, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 13, "x": -8960.0, "z": 768.0, "px": 518.8, "py": 2179.1}, {"loc_id": 683, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 13, "x": 9088.0, "z": 1472.0, "px": 3599.0, "py": 2299.2}, {"loc_id": 683, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 13, "x": 9088.0, "z": 1472.0, "px": 3599.0, "py": 2299.2}, {"loc_id": 691, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 13, "x": 8960.0, "z": -1024.0, "px": 3577.2, "py": 1873.2}, {"loc_id": 695, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 13, "x": 7360.0, "z": -3456.0, "px": 3304.1, "py": 1458.2}, {"loc_id": 696, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 13, "x": 4672.0, "z": -4672.0, "px": 2845.4, "py": 1250.6}, {"loc_id": 698, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 13, "x": 6208.0, "z": 5760.0, "px": 3107.5, "py": 3031.0}, {"loc_id": 718, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 13, "x": -6336.0, "z": 704.0, "px": 966.7, "py": 2168.1}, {"loc_id": 722, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 13, "x": -4480.0, "z": -4352.0, "px": 1283.4, "py": 1305.3}, {"loc_id": 723, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 13, "x": 8768.0, "z": -2944.0, "px": 3544.4, "py": 1545.6}, {"loc_id": 727, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 13, "x": 6144.0, "z": -4672.0, "px": 3096.6, "py": 1250.6}, {"loc_id": 733, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 13, "x": 8256.0, "z": 2432.0, "px": 3457.0, "py": 2463.1}, {"loc_id": 734, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 13, "x": 2752.0, "z": 5952.0, "px": 2517.7, "py": 3063.8}, {"loc_id": 735, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 13, "x": -9536.0, "z": 832.0, "px": 420.5, "py": 2190.0}, {"loc_id": 743, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 13, "x": -9408.0, "z": -2432.0, "px": 442.4, "py": 1632.9}, {"loc_id": 745, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 13, "x": -5824.0, "z": 3264.0, "px": 1054.0, "py": 2605.1}, {"loc_id": 773, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 13, "x": -4416.0, "z": -6784.0, "px": 1294.3, "py": 890.2}, {"loc_id": 781, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 13, "x": -6144.0, "z": 3520.0, "px": 999.4, "py": 2648.7}, {"loc_id": 782, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 13, "x": -6144.0, "z": 3968.0, "px": 999.4, "py": 2725.2}, {"loc_id": 783, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 13, "x": 6784.0, "z": 1216.0, "px": 3205.8, "py": 2255.5}, {"loc_id": 789, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 13, "x": -704.0, "z": 6848.0, "px": 1927.9, "py": 3216.7}, {"loc_id": 796, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 13, "x": -128.0, "z": 7360.0, "px": 2026.2, "py": 3304.1}, {"loc_id": 799, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 13, "x": -8704.0, "z": -1280.0, "px": 562.5, "py": 1829.5}, {"loc_id": 799, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 13, "x": -8704.0, "z": -1280.0, "px": 562.5, "py": 1829.5}, {"loc_id": 815, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 13, "x": 832.0, "z": 6784.0, "px": 2190.0, "py": 3205.8}, {"loc_id": 815, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 13, "x": 832.0, "z": 6784.0, "px": 2190.0, "py": 3205.8}, {"loc_id": 819, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 13, "x": -6592.0, "z": -4992.0, "px": 923.0, "py": 1196.0}, {"loc_id": 846, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 13, "x": -1152.0, "z": -7488.0, "px": 1851.4, "py": 770.0}, {"loc_id": 856, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 13, "x": -7168.0, "z": 3840.0, "px": 824.7, "py": 2703.4}, {"loc_id": 865, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 13, "x": -6400.0, "z": -2112.0, "px": 955.7, "py": 1687.6}, {"loc_id": 868, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 13, "x": -7040.0, "z": 1344.0, "px": 846.5, "py": 2277.4}, {"loc_id": 873, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 13, "x": 4480.0, "z": 5952.0, "px": 2812.6, "py": 3063.8}, {"loc_id": 874, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 13, "x": 1856.0, "z": -6592.0, "px": 2364.8, "py": 923.0}, {"loc_id": 876, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 13, "x": -2240.0, "z": -7040.0, "px": 1665.7, "py": 846.5}, {"loc_id": 878, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 13, "x": 1344.0, "z": -7296.0, "px": 2277.4, "py": 802.8}, {"loc_id": 902, "loc_name": "Hildir_cave", "item": "SpawnOnce: Bat", "count": 13, "x": -2688.0, "z": 7360.0, "px": 1589.2, "py": 3304.1}, {"loc_id": 903, "loc_name": "Hildir_cave", "item": "SpawnOnce: Fenring_Cultist_Hildir", "count": 13, "x": 6016.0, "z": 4608.0, "px": 3074.7, "py": 2834.4}, {"loc_id": 918, "loc_name": "Hildir_plainsfortress", "item": "SpawnOnce: Goblin", "count": 13, "x": 1728.0, "z": 3200.0, "px": 2342.9, "py": 2594.1}, {"loc_id": 1989, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 13, "x": 3641.8, "z": 3969.8, "px": 2669.5, "py": 2725.5}, {"loc_id": 1994, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 13, "x": -5368.1, "z": -1919.7, "px": 1131.8, "py": 1720.4}, {"loc_id": 2000, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 13, "x": 8261.5, "z": -2503.6, "px": 3458.0, "py": 1620.7}, {"loc_id": 2005, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 13, "x": -6785.2, "z": 514.4, "px": 890.0, "py": 2135.8}, {"loc_id": 2007, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 13, "x": 2754.1, "z": 5051.3, "px": 2518.0, "py": 2910.1}, {"loc_id": 2007, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 13, "x": 2754.1, "z": 5051.3, "px": 2518.0, "py": 2910.1}, {"loc_id": 2018, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 13, "x": 2366.9, "z": -3455.3, "px": 2452.0, "py": 1458.3}, {"loc_id": 2024, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 13, "x": 2300.8, "z": 3847.4, "px": 2440.7, "py": 2704.6}, {"loc_id": 2027, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 13, "x": -1987.5, "z": -5560.2, "px": 1708.8, "py": 1099.1}, {"loc_id": 2038, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 13, "x": 2247.9, "z": -886.9, "px": 2431.6, "py": 1896.6}, {"loc_id": 2041, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 13, "x": -2236.4, "z": 4542.5, "px": 1666.3, "py": 2823.3}, {"loc_id": 2042, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 13, "x": 3908.4, "z": 3896.3, "px": 2715.0, "py": 2713.0}, {"loc_id": 2056, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 13, "x": -8000.9, "z": 393.2, "px": 682.5, "py": 2115.1}, {"loc_id": 2064, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 13, "x": 6654.9, "z": 3129.8, "px": 3183.8, "py": 2582.2}, {"loc_id": 2068, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 13, "x": 7799.0, "z": -261.2, "px": 3379.0, "py": 2003.4}, {"loc_id": 2069, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 13, "x": -134.7, "z": -905.2, "px": 2025.0, "py": 1893.5}, {"loc_id": 2073, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 13, "x": 7548.2, "z": -2743.2, "px": 3336.2, "py": 1579.8}, {"loc_id": 2082, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 13, "x": -1272.0, "z": -2183.0, "px": 1830.9, "py": 1675.4}, {"loc_id": 2089, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 13, "x": 2170.4, "z": -707.7, "px": 2418.4, "py": 1927.2}, {"loc_id": 2099, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 13, "x": -7287.1, "z": 2560.3, "px": 804.3, "py": 2485.0}, {"loc_id": 2101, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 13, "x": -1158.2, "z": -1530.7, "px": 1850.3, "py": 1786.8}, {"loc_id": 2109, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 13, "x": 4553.1, "z": -5122.9, "px": 2825.1, "py": 1173.7}, {"loc_id": 2114, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 13, "x": 8841.5, "z": 123.6, "px": 3556.9, "py": 2069.1}, {"loc_id": 2116, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 13, "x": 5760.1, "z": -827.4, "px": 3031.1, "py": 1906.8}, {"loc_id": 2125, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 13, "x": 2423.3, "z": 3647.1, "px": 2461.6, "py": 2670.4}, {"loc_id": 2126, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 13, "x": -5059.6, "z": -1797.8, "px": 1184.5, "py": 1741.2}, {"loc_id": 2126, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 13, "x": -5059.6, "z": -1797.8, "px": 1184.5, "py": 1741.2}, {"loc_id": 2135, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 13, "x": 8263.2, "z": -2115.4, "px": 3458.3, "py": 1687.0}, {"loc_id": 2149, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 13, "x": 2239.1, "z": 5115.9, "px": 2430.1, "py": 2921.1}, {"loc_id": 2156, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 13, "x": -4855.4, "z": -3010.4, "px": 1219.3, "py": 1534.2}, {"loc_id": 2166, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 13, "x": -5567.0, "z": 4730.5, "px": 1097.9, "py": 2855.3}, {"loc_id": 2170, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 13, "x": 7876.9, "z": -2761.7, "px": 3392.3, "py": 1576.7}, {"loc_id": 2170, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 13, "x": 7876.9, "z": -2761.7, "px": 3392.3, "py": 1576.7}, {"loc_id": 2172, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 13, "x": 7926.2, "z": -3080.1, "px": 3400.7, "py": 1522.3}, {"loc_id": 2173, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 13, "x": 1034.1, "z": -5498.0, "px": 2224.5, "py": 1109.7}, {"loc_id": 2184, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 13, "x": -5509.5, "z": -1928.1, "px": 1107.7, "py": 1718.9}, {"loc_id": 3041, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 13, "x": 3264.9, "z": -319.5, "px": 2605.2, "py": 1993.5}, {"loc_id": 3059, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 13, "x": -62.5, "z": -4926.3, "px": 2037.3, "py": 1207.2}, {"loc_id": 3064, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 13, "x": -5950.0, "z": -4991.2, "px": 1032.5, "py": 1196.2}, {"loc_id": 3092, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 13, "x": -4289.7, "z": -6142.8, "px": 1315.9, "py": 999.6}, {"loc_id": 3093, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 13, "x": -3136.3, "z": 2494.0, "px": 1512.7, "py": 2473.6}, {"loc_id": 3115, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 13, "x": -5121.5, "z": -2880.5, "px": 1173.9, "py": 1556.4}, {"loc_id": 3120, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 13, "x": 960.4, "z": -3967.4, "px": 2211.9, "py": 1370.9}, {"loc_id": 3158, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 13, "x": 3327.5, "z": -1665.3, "px": 2615.9, "py": 1763.8}, {"loc_id": 3159, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 13, "x": -2239.2, "z": -1919.6, "px": 1665.8, "py": 1720.4}, {"loc_id": 3171, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 13, "x": -1023.3, "z": -6271.8, "px": 1873.4, "py": 977.6}, {"loc_id": 3174, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 13, "x": -1601.6, "z": -3134.8, "px": 1774.7, "py": 1513.0}, {"loc_id": 3182, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 13, "x": 5184.7, "z": 4800.3, "px": 2932.9, "py": 2867.3}, {"loc_id": 3199, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 13, "x": -3646.6, "z": 3583.7, "px": 1425.6, "py": 2659.6}, {"loc_id": 3202, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 13, "x": 2688.2, "z": -5121.5, "px": 2506.8, "py": 1173.9}, {"loc_id": 3214, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 13, "x": -3134.9, "z": 7103.2, "px": 1513.0, "py": 3260.3}, {"loc_id": 3216, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 13, "x": 3072.9, "z": -63.5, "px": 2572.4, "py": 2037.2}, {"loc_id": 3224, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 13, "x": -5823.9, "z": 4351.9, "px": 1054.1, "py": 2790.7}, {"loc_id": 3658, "loc_name": "WoodFarm1", "item": "Pickable: Raspberry", "count": 13, "x": -1536.0, "z": -832.0, "px": 1785.9, "py": 1906.0}, {"loc_id": 4108, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 13, "x": 8504.1, "z": -1928.2, "px": 3499.4, "py": 1718.9}, {"loc_id": 4111, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 13, "x": 5448.4, "z": -1157.3, "px": 2977.9, "py": 1850.5}, {"loc_id": 4120, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 13, "x": -6462.9, "z": -4733.3, "px": 945.0, "py": 1240.2}, {"loc_id": 4123, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 13, "x": -7167.3, "z": -1866.0, "px": 824.8, "py": 1729.5}, {"loc_id": 4130, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 13, "x": 4938.7, "z": -2114.9, "px": 2890.9, "py": 1687.1}, {"loc_id": 4132, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 13, "x": 1077.3, "z": -5511.5, "px": 2231.9, "py": 1107.4}, {"loc_id": 4136, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 13, "x": 6022.3, "z": -5886.6, "px": 3075.8, "py": 1043.4}, {"loc_id": 4137, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 13, "x": 1785.0, "z": -1220.8, "px": 2352.6, "py": 1839.7}, {"loc_id": 4146, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 13, "x": 2298.1, "z": 6275.1, "px": 2440.2, "py": 3119.0}, {"loc_id": 4147, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 13, "x": -9157.9, "z": 3333.6, "px": 485.1, "py": 2616.9}, {"loc_id": 4150, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 13, "x": -9221.4, "z": 2885.5, "px": 474.2, "py": 2540.5}, {"loc_id": 4159, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 13, "x": -2231.0, "z": 4486.8, "px": 1667.2, "py": 2813.7}, {"loc_id": 4179, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 13, "x": -7242.2, "z": -4937.2, "px": 812.0, "py": 1205.4}, {"loc_id": 4192, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 13, "x": 7925.4, "z": -2948.4, "px": 3400.6, "py": 1544.8}, {"loc_id": 4193, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 13, "x": 2503.9, "z": -4613.5, "px": 2475.3, "py": 1260.6}, {"loc_id": 4199, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 13, "x": 2884.2, "z": -2239.6, "px": 2540.2, "py": 1665.8}, {"loc_id": 4200, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 13, "x": 2247.2, "z": 6136.8, "px": 2431.5, "py": 3095.3}, {"loc_id": 4209, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 13, "x": 4603.6, "z": -5193.7, "px": 2833.7, "py": 1161.6}, {"loc_id": 4209, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 13, "x": 4603.6, "z": -5193.7, "px": 2833.7, "py": 1161.6}, {"loc_id": 4219, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 13, "x": -5114.9, "z": 309.7, "px": 1175.1, "py": 2100.9}, {"loc_id": 4219, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 13, "x": -5114.9, "z": 309.7, "px": 1175.1, "py": 2100.9}, {"loc_id": 4227, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 13, "x": 1924.7, "z": -830.3, "px": 2376.5, "py": 1906.3}, {"loc_id": 4229, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 13, "x": 907.0, "z": 5564.8, "px": 2202.8, "py": 2997.7}, {"loc_id": 4234, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 13, "x": 2241.6, "z": 5178.2, "px": 2430.6, "py": 2931.7}, {"loc_id": 4247, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 13, "x": 2744.6, "z": 5254.7, "px": 2516.4, "py": 2944.8}, {"loc_id": 4254, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 13, "x": 2185.2, "z": 1205.6, "px": 2420.9, "py": 2253.8}, {"loc_id": 4267, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 13, "x": -3721.4, "z": 6782.4, "px": 1412.9, "py": 3205.5}, {"loc_id": 4267, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 13, "x": -3721.4, "z": 6782.4, "px": 1412.9, "py": 3205.5}, {"loc_id": 4270, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 13, "x": -3338.7, "z": -2428.5, "px": 1478.2, "py": 1633.5}, {"loc_id": 4275, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 13, "x": -4100.0, "z": -2235.3, "px": 1348.3, "py": 1666.5}, {"loc_id": 4277, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 13, "x": 710.5, "z": -128.2, "px": 2169.3, "py": 2026.1}, {"loc_id": 4281, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 13, "x": -1027.4, "z": -5060.9, "px": 1872.7, "py": 1184.3}, {"loc_id": 4291, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 13, "x": -9346.4, "z": 3080.4, "px": 452.9, "py": 2573.7}, {"loc_id": 4291, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 13, "x": -9346.4, "z": 3080.4, "px": 452.9, "py": 2573.7}, {"loc_id": 4298, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 13, "x": 6791.1, "z": 4738.8, "px": 3207.0, "py": 2856.8}, {"loc_id": 4307, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 13, "x": 5049.3, "z": 3338.7, "px": 2909.7, "py": 2617.8}, {"loc_id": 4314, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 13, "x": -6971.4, "z": 2491.2, "px": 858.2, "py": 2473.2}, {"loc_id": 4317, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 13, "x": 2230.8, "z": 1097.7, "px": 2428.7, "py": 2235.3}, {"loc_id": 4328, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 13, "x": -3191.1, "z": 6518.2, "px": 1503.4, "py": 3160.4}, {"loc_id": 4330, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 13, "x": -7228.8, "z": -1924.0, "px": 814.3, "py": 1719.6}, {"loc_id": 4338, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 13, "x": -1467.5, "z": -1670.1, "px": 1797.5, "py": 1763.0}, {"loc_id": 4338, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 13, "x": -1467.5, "z": -1670.1, "px": 1797.5, "py": 1763.0}, {"loc_id": 4350, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 13, "x": -5947.4, "z": 1598.8, "px": 1033.0, "py": 2320.9}, {"loc_id": 4351, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 13, "x": -6072.7, "z": 1407.4, "px": 1011.6, "py": 2288.2}, {"loc_id": 4359, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 13, "x": -568.3, "z": 512.2, "px": 1951.0, "py": 2135.4}, {"loc_id": 4363, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 13, "x": 8010.6, "z": 188.7, "px": 3415.1, "py": 2080.2}, {"loc_id": 4369, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 13, "x": 2044.7, "z": -1077.5, "px": 2397.0, "py": 1864.1}, {"loc_id": 4374, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 13, "x": 506.0, "z": 4674.8, "px": 2134.4, "py": 2845.8}, {"loc_id": 4375, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 13, "x": -8056.8, "z": 2757.5, "px": 673.0, "py": 2518.6}, {"loc_id": 4388, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 13, "x": 1660.3, "z": -4422.1, "px": 2331.4, "py": 1293.3}, {"loc_id": 4388, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 13, "x": 1660.3, "z": -4422.1, "px": 2331.4, "py": 1293.3}, {"loc_id": 4396, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 13, "x": 889.9, "z": 3450.9, "px": 2199.9, "py": 2637.0}, {"loc_id": 4418, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 13, "x": 3208.8, "z": -2630.5, "px": 2595.6, "py": 1599.1}, {"loc_id": 4428, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 13, "x": -59.6, "z": -1013.7, "px": 2037.8, "py": 1875.0}, {"loc_id": 4429, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 13, "x": 5067.0, "z": 377.9, "px": 2912.8, "py": 2112.5}, {"loc_id": 4436, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 13, "x": 1152.8, "z": 5443.9, "px": 2244.7, "py": 2977.1}, {"loc_id": 4454, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 13, "x": 9791.7, "z": -1482.1, "px": 3719.1, "py": 1795.1}, {"loc_id": 4459, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 13, "x": 584.4, "z": 4475.8, "px": 2147.7, "py": 2811.9}, {"loc_id": 4491, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 13, "x": -2042.1, "z": 510.0, "px": 1699.5, "py": 2135.0}, {"loc_id": 4500, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 13, "x": -3201.7, "z": -2365.6, "px": 1501.6, "py": 1644.3}, {"loc_id": 4505, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 13, "x": -9609.6, "z": 699.3, "px": 408.0, "py": 2167.3}, {"loc_id": 4506, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 13, "x": 5060.4, "z": -2244.4, "px": 2911.6, "py": 1665.0}, {"loc_id": 7446, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 13, "x": 4544.0, "z": -5632.0, "px": 2823.5, "py": 1086.8}, {"loc_id": 7449, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 13, "x": -3328.0, "z": -2048.0, "px": 1480.0, "py": 1698.5}, {"loc_id": 7455, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 13, "x": 6592.0, "z": 6464.0, "px": 3173.0, "py": 3151.2}, {"loc_id": 7457, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 13, "x": 2560.0, "z": 896.0, "px": 2484.9, "py": 2200.9}, {"loc_id": 7467, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 13, "x": 2688.0, "z": -2688.0, "px": 2506.8, "py": 1589.2}, {"loc_id": 7471, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 13, "x": -4480.0, "z": -4096.0, "px": 1283.4, "py": 1348.9}, {"loc_id": 7471, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 13, "x": -4480.0, "z": -4096.0, "px": 1283.4, "py": 1348.9}, {"loc_id": 7473, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 13, "x": 0.0, "z": -1152.0, "px": 2048.0, "py": 1851.4}, {"loc_id": 7474, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 13, "x": 4480.0, "z": -1792.0, "px": 2812.6, "py": 1742.2}, {"loc_id": 7481, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 13, "x": -832.0, "z": 8512.0, "px": 1906.0, "py": 3500.7}, {"loc_id": 7483, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 13, "x": -2112.0, "z": -512.0, "px": 1687.6, "py": 1960.6}, {"loc_id": 7483, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 13, "x": -2112.0, "z": -512.0, "px": 1687.6, "py": 1960.6}, {"loc_id": 7487, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 13, "x": -3968.0, "z": 5120.0, "px": 1370.8, "py": 2921.8}, {"loc_id": 7488, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 13, "x": -7616.0, "z": -2368.0, "px": 748.2, "py": 1643.9}, {"loc_id": 7497, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 13, "x": 1984.0, "z": -6784.0, "px": 2386.6, "py": 890.2}, {"loc_id": 7497, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 13, "x": 1984.0, "z": -6784.0, "px": 2386.6, "py": 890.2}, {"loc_id": 7500, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 13, "x": -9600.0, "z": -576.0, "px": 409.6, "py": 1949.7}, {"loc_id": 7505, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 13, "x": 5952.0, "z": 4672.0, "px": 3063.8, "py": 2845.4}, {"loc_id": 7508, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 13, "x": 3520.0, "z": 9216.0, "px": 2648.7, "py": 3620.9}, {"loc_id": 7509, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 13, "x": -2688.0, "z": 7104.0, "px": 1589.2, "py": 3260.4}, {"loc_id": 7512, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 13, "x": 5632.0, "z": -512.0, "px": 3009.2, "py": 1960.6}, {"loc_id": 7516, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 13, "x": 3008.0, "z": 576.0, "px": 2561.4, "py": 2146.3}, {"loc_id": 7517, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 13, "x": 7488.0, "z": 3968.0, "px": 3326.0, "py": 2725.2}, {"loc_id": 7518, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 13, "x": 2560.0, "z": 8768.0, "px": 2484.9, "py": 3544.4}, {"loc_id": 7520, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 13, "x": 512.0, "z": 3776.0, "px": 2135.4, "py": 2692.4}, {"loc_id": 7521, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 13, "x": 2240.0, "z": -3712.0, "px": 2430.3, "py": 1414.5}, {"loc_id": 7523, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 13, "x": 6016.0, "z": 4288.0, "px": 3074.7, "py": 2779.8}, {"loc_id": 7526, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 13, "x": 2560.0, "z": 8960.0, "px": 2484.9, "py": 3577.2}, {"loc_id": 7529, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 13, "x": 2496.0, "z": -3008.0, "px": 2474.0, "py": 1534.6}, {"loc_id": 7538, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 13, "x": 6208.0, "z": 4544.0, "px": 3107.5, "py": 2823.5}, {"loc_id": 7542, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 13, "x": 1088.0, "z": 128.0, "px": 2233.7, "py": 2069.8}, {"loc_id": 7543, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 13, "x": -3904.0, "z": 1728.0, "px": 1381.7, "py": 2342.9}, {"loc_id": 7543, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 13, "x": -3904.0, "z": 1728.0, "px": 1381.7, "py": 2342.9}, {"loc_id": 7546, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 13, "x": -4480.0, "z": -64.0, "px": 1283.4, "py": 2037.1}, {"loc_id": 7550, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 13, "x": 1280.0, "z": 320.0, "px": 2266.5, "py": 2102.6}, {"loc_id": 7551, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 13, "x": -1920.0, "z": -576.0, "px": 1720.3, "py": 1949.7}, {"loc_id": 7553, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 13, "x": -6080.0, "z": -320.0, "px": 1010.3, "py": 1993.4}, {"loc_id": 7560, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 13, "x": 9344.0, "z": -2240.0, "px": 3642.7, "py": 1665.7}, {"loc_id": 7563, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 13, "x": -3584.0, "z": 1472.0, "px": 1436.3, "py": 2299.2}, {"loc_id": 7563, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 13, "x": -3584.0, "z": 1472.0, "px": 1436.3, "py": 2299.2}, {"loc_id": 7564, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 13, "x": 6400.0, "z": 7040.0, "px": 3140.3, "py": 3249.5}, {"loc_id": 7569, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 13, "x": -5376.0, "z": 4992.0, "px": 1130.5, "py": 2900.0}, {"loc_id": 7570, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 13, "x": 1600.0, "z": 7040.0, "px": 2321.1, "py": 3249.5}, {"loc_id": 7574, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 13, "x": 5760.0, "z": 4800.0, "px": 3031.0, "py": 2867.2}, {"loc_id": 9961, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 13, "x": 704.0, "z": -9024.0, "px": 2168.1, "py": 507.9}, {"loc_id": 9968, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 13, "x": -256.0, "z": -9920.0, "px": 2004.3, "py": 355.0}, {"loc_id": 10003, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 13, "x": 384.0, "z": -8768.0, "px": 2113.5, "py": 551.6}, {"loc_id": 10297, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 13, "x": -641.9, "z": -9086.8, "px": 1938.4, "py": 497.2}, {"loc_id": 10356, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 13, "x": 1022.2, "z": -9022.6, "px": 2222.5, "py": 508.1}, {"loc_id": 10681, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 13, "x": -2358.0, "z": -8630.3, "px": 1645.6, "py": 575.1}, {"loc_id": 10694, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 13, "x": -4038.0, "z": -8772.8, "px": 1358.8, "py": 550.8}, {"loc_id": 10736, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 13, "x": 2363.0, "z": -9145.1, "px": 2451.3, "py": 487.2}, {"loc_id": 10819, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 13, "x": 64.0, "z": -9600.0, "px": 2058.9, "py": 409.6}, {"loc_id": 10839, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 13, "x": 2496.0, "z": -9152.0, "px": 2474.0, "py": 486.1}, {"loc_id": 10889, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 13, "x": 2112.0, "z": -9600.0, "px": 2408.4, "py": 409.6}, {"loc_id": 10895, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 13, "x": 1792.0, "z": -8384.0, "px": 2353.8, "py": 617.1}, {"loc_id": 10905, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 13, "x": 2944.0, "z": -9344.0, "px": 2550.4, "py": 453.3}, {"loc_id": 22, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 12, "x": -4353.9, "z": 1157.7, "px": 1304.9, "py": 2245.6}, {"loc_id": 28, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 12, "x": 4720.8, "z": -717.3, "px": 2853.7, "py": 1925.6}, {"loc_id": 29, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 12, "x": -4342.2, "z": 1229.9, "px": 1306.9, "py": 2257.9}, {"loc_id": 43, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 12, "x": -4994.4, "z": 1343.0, "px": 1195.6, "py": 2277.2}, {"loc_id": 47, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 12, "x": -2414.9, "z": 4847.7, "px": 1635.9, "py": 2875.3}, {"loc_id": 63, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 12, "x": 1654.7, "z": 4477.8, "px": 2330.4, "py": 2812.2}, {"loc_id": 89, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 12, "x": -1936.1, "z": 4537.9, "px": 1717.6, "py": 2822.5}, {"loc_id": 97, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 12, "x": 2738.0, "z": 3658.2, "px": 2515.3, "py": 2672.3}, {"loc_id": 108, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 12, "x": 521.3, "z": 2624.5, "px": 2137.0, "py": 2495.9}, {"loc_id": 115, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 12, "x": -61.9, "z": 2612.1, "px": 2037.4, "py": 2493.8}, {"loc_id": 118, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 12, "x": -2309.6, "z": 4288.3, "px": 1653.8, "py": 2779.9}, {"loc_id": 140, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 12, "x": 383.1, "z": 2565.9, "px": 2113.4, "py": 2485.9}, {"loc_id": 146, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 12, "x": -1070.8, "z": -5708.6, "px": 1865.3, "py": 1073.7}, {"loc_id": 149, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 12, "x": 1404.0, "z": 1975.1, "px": 2287.6, "py": 2385.1}, {"loc_id": 150, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 12, "x": 3631.8, "z": 1023.6, "px": 2667.8, "py": 2222.7}, {"loc_id": 153, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 12, "x": -5179.6, "z": 1393.9, "px": 1164.0, "py": 2285.9}, {"loc_id": 167, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 12, "x": 3397.0, "z": -4496.1, "px": 2627.8, "py": 1280.7}, {"loc_id": 179, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 12, "x": 133.5, "z": 2638.3, "px": 2070.8, "py": 2498.3}, {"loc_id": 667, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 12, "x": -2752.0, "z": -6016.0, "px": 1578.3, "py": 1021.3}, {"loc_id": 683, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 12, "x": 9088.0, "z": 1472.0, "px": 3599.0, "py": 2299.2}, {"loc_id": 684, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 12, "x": -8640.0, "z": 1536.0, "px": 573.4, "py": 2310.1}, {"loc_id": 690, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 12, "x": -5440.0, "z": 5760.0, "px": 1119.6, "py": 3031.0}, {"loc_id": 691, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 12, "x": 8960.0, "z": -1024.0, "px": 3577.2, "py": 1873.2}, {"loc_id": 693, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 12, "x": 5440.0, "z": 3328.0, "px": 2976.4, "py": 2616.0}, {"loc_id": 700, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 12, "x": 8448.0, "z": 896.0, "px": 3489.8, "py": 2200.9}, {"loc_id": 700, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 12, "x": 8448.0, "z": 896.0, "px": 3489.8, "py": 2200.9}, {"loc_id": 702, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 12, "x": 7424.0, "z": -2176.0, "px": 3315.0, "py": 1676.6}, {"loc_id": 704, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 12, "x": 1280.0, "z": -6592.0, "px": 2266.5, "py": 923.0}, {"loc_id": 717, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 12, "x": -7360.0, "z": -3392.0, "px": 791.9, "py": 1469.1}, {"loc_id": 719, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 12, "x": 4032.0, "z": -6144.0, "px": 2736.1, "py": 999.4}, {"loc_id": 721, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 12, "x": -2560.0, "z": -5760.0, "px": 1611.1, "py": 1065.0}, {"loc_id": 722, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 12, "x": -4480.0, "z": -4352.0, "px": 1283.4, "py": 1305.3}, {"loc_id": 724, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 12, "x": -6912.0, "z": 5056.0, "px": 868.4, "py": 2910.9}, {"loc_id": 727, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 12, "x": 6144.0, "z": -4672.0, "px": 3096.6, "py": 1250.6}, {"loc_id": 731, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 12, "x": -7744.0, "z": -2880.0, "px": 726.4, "py": 1556.5}, {"loc_id": 731, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 12, "x": -7744.0, "z": -2880.0, "px": 726.4, "py": 1556.5}, {"loc_id": 736, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 12, "x": 9088.0, "z": -3008.0, "px": 3599.0, "py": 1534.6}, {"loc_id": 737, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 12, "x": -9728.0, "z": -1024.0, "px": 387.8, "py": 1873.2}, {"loc_id": 738, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 12, "x": -3072.0, "z": -5760.0, "px": 1523.7, "py": 1065.0}, {"loc_id": 738, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 12, "x": -3072.0, "z": -5760.0, "px": 1523.7, "py": 1065.0}, {"loc_id": 739, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 12, "x": -6912.0, "z": 704.0, "px": 868.4, "py": 2168.1}, {"loc_id": 749, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 12, "x": 192.0, "z": -7424.0, "px": 2080.8, "py": 781.0}, {"loc_id": 767, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 12, "x": 1152.0, "z": 7616.0, "px": 2244.6, "py": 3347.8}, {"loc_id": 778, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 12, "x": -7616.0, "z": 1216.0, "px": 748.2, "py": 2255.5}, {"loc_id": 779, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 12, "x": 2304.0, "z": -5760.0, "px": 2441.2, "py": 1065.0}, {"loc_id": 779, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 12, "x": 2304.0, "z": -5760.0, "px": 2441.2, "py": 1065.0}, {"loc_id": 782, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 12, "x": -6144.0, "z": 3968.0, "px": 999.4, "py": 2725.2}, {"loc_id": 789, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 12, "x": -704.0, "z": 6848.0, "px": 1927.9, "py": 3216.7}, {"loc_id": 790, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 12, "x": 384.0, "z": -7104.0, "px": 2113.5, "py": 835.6}, {"loc_id": 792, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 12, "x": -9152.0, "z": 960.0, "px": 486.1, "py": 2211.8}, {"loc_id": 807, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 12, "x": -2944.0, "z": -6528.0, "px": 1545.6, "py": 933.9}, {"loc_id": 812, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 12, "x": 6848.0, "z": -256.0, "px": 3216.7, "py": 2004.3}, {"loc_id": 814, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 12, "x": 192.0, "z": 7104.0, "px": 2080.8, "py": 3260.4}, {"loc_id": 823, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 12, "x": -6720.0, "z": -3328.0, "px": 901.1, "py": 1480.0}, {"loc_id": 828, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 12, "x": 7168.0, "z": -64.0, "px": 3271.3, "py": 2037.1}, {"loc_id": 831, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 12, "x": 8640.0, "z": -3328.0, "px": 3522.6, "py": 1480.0}, {"loc_id": 838, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 12, "x": -1088.0, "z": -6080.0, "px": 1862.3, "py": 1010.3}, {"loc_id": 838, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 12, "x": -1088.0, "z": -6080.0, "px": 1862.3, "py": 1010.3}, {"loc_id": 853, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 12, "x": -7104.0, "z": 2880.0, "px": 835.6, "py": 2539.5}, {"loc_id": 859, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 12, "x": 4288.0, "z": -6080.0, "px": 2779.8, "py": 1010.3}, {"loc_id": 859, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 12, "x": 4288.0, "z": -6080.0, "px": 2779.8, "py": 1010.3}, {"loc_id": 878, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 12, "x": 1344.0, "z": -7296.0, "px": 2277.4, "py": 802.8}, {"loc_id": 879, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 12, "x": -6592.0, "z": 4032.0, "px": 923.0, "py": 2736.1}, {"loc_id": 883, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 12, "x": 576.0, "z": 6784.0, "px": 2146.3, "py": 3205.8}, {"loc_id": 889, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 12, "x": 7360.0, "z": 4544.0, "px": 3304.1, "py": 2823.5}, {"loc_id": 914, "loc_name": "Hildir_crypt", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": -7097.0, "z": 2614.7, "px": 836.8, "py": 2494.2}, {"loc_id": 915, "loc_name": "Hildir_crypt", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": 2312.6, "z": -4479.1, "px": 2442.7, "py": 1283.6}, {"loc_id": 918, "loc_name": "Hildir_plainsfortress", "item": "SpawnOnce: GoblinArcher", "count": 12, "x": 1728.0, "z": 3200.0, "px": 2342.9, "py": 2594.1}, {"loc_id": 1995, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 12, "x": 7744.4, "z": -2746.7, "px": 3369.7, "py": 1579.2}, {"loc_id": 2002, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 12, "x": 3705.4, "z": 3650.9, "px": 2680.4, "py": 2671.1}, {"loc_id": 2006, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 12, "x": 3589.3, "z": 3712.8, "px": 2660.6, "py": 2681.7}, {"loc_id": 2009, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 12, "x": -2304.6, "z": -3082.4, "px": 1654.7, "py": 1521.9}, {"loc_id": 2014, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 12, "x": 5767.3, "z": 1542.2, "px": 3032.3, "py": 2311.2}, {"loc_id": 2015, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": 4422.3, "z": 6725.0, "px": 2802.7, "py": 3195.7}, {"loc_id": 2017, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 12, "x": 713.6, "z": 4919.8, "px": 2169.8, "py": 2887.6}, {"loc_id": 2021, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 12, "x": 1212.3, "z": -5636.2, "px": 2254.9, "py": 1086.1}, {"loc_id": 2021, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 12, "x": 1212.3, "z": -5636.2, "px": 2254.9, "py": 1086.1}, {"loc_id": 2029, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 12, "x": 1796.7, "z": 7414.9, "px": 2354.6, "py": 3313.5}, {"loc_id": 2042, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": 3908.4, "z": 3896.3, "px": 2715.0, "py": 2713.0}, {"loc_id": 2044, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 12, "x": 1789.0, "z": -6149.7, "px": 2353.3, "py": 998.5}, {"loc_id": 2049, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 12, "x": 832.6, "z": 3465.7, "px": 2190.1, "py": 2639.5}, {"loc_id": 2059, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 12, "x": -5058.0, "z": 821.8, "px": 1184.8, "py": 2188.3}, {"loc_id": 2069, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 12, "x": -134.7, "z": -905.2, "px": 2025.0, "py": 1893.5}, {"loc_id": 2070, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 12, "x": -4618.1, "z": 5752.9, "px": 1259.8, "py": 3029.8}, {"loc_id": 2075, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 12, "x": 508.4, "z": 511.0, "px": 2134.8, "py": 2135.2}, {"loc_id": 2089, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 12, "x": 2170.4, "z": -707.7, "px": 2418.4, "py": 1927.2}, {"loc_id": 2092, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 12, "x": -6474.9, "z": 3722.6, "px": 943.0, "py": 2683.3}, {"loc_id": 2097, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 12, "x": -4027.5, "z": -2360.5, "px": 1360.6, "py": 1645.1}, {"loc_id": 2104, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 12, "x": 835.6, "z": 4856.2, "px": 2190.6, "py": 2876.8}, {"loc_id": 2107, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 12, "x": -9664.7, "z": -321.6, "px": 398.6, "py": 1993.1}, {"loc_id": 2108, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 12, "x": 7680.5, "z": -2887.2, "px": 3358.8, "py": 1555.3}, {"loc_id": 2114, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": 8841.5, "z": 123.6, "px": 3556.9, "py": 2069.1}, {"loc_id": 2118, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 12, "x": 4092.3, "z": 3912.8, "px": 2746.4, "py": 2715.8}, {"loc_id": 2128, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 12, "x": 5510.8, "z": 456.2, "px": 2988.5, "py": 2125.9}, {"loc_id": 2128, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": 5510.8, "z": 456.2, "px": 2988.5, "py": 2125.9}, {"loc_id": 2129, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 12, "x": -2120.9, "z": 694.0, "px": 1686.0, "py": 2166.4}, {"loc_id": 2131, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 12, "x": 3194.2, "z": -2879.3, "px": 2593.1, "py": 1556.6}, {"loc_id": 2138, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 12, "x": -1608.3, "z": 4729.8, "px": 1773.5, "py": 2855.2}, {"loc_id": 2140, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 12, "x": 643.2, "z": 5308.8, "px": 2157.8, "py": 2954.0}, {"loc_id": 2141, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": -1283.3, "z": -1154.5, "px": 1829.0, "py": 1851.0}, {"loc_id": 2148, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 12, "x": 7106.3, "z": 1216.9, "px": 3260.8, "py": 2255.7}, {"loc_id": 2151, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 12, "x": 7352.5, "z": -3254.6, "px": 3302.8, "py": 1492.5}, {"loc_id": 2158, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": 8393.8, "z": 2741.1, "px": 3480.5, "py": 2515.8}, {"loc_id": 2163, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 12, "x": -8955.2, "z": 3272.0, "px": 519.6, "py": 2606.4}, {"loc_id": 2164, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": 644.1, "z": -245.8, "px": 2157.9, "py": 2006.1}, {"loc_id": 2168, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": -7164.3, "z": -4734.5, "px": 825.3, "py": 1240.0}, {"loc_id": 2171, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 12, "x": -5879.9, "z": -5111.8, "px": 1044.5, "py": 1175.6}, {"loc_id": 2175, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 12, "x": 312.2, "z": 5051.0, "px": 2101.3, "py": 2910.0}, {"loc_id": 2180, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 12, "x": -6520.2, "z": -4795.6, "px": 935.2, "py": 1229.6}, {"loc_id": 2181, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": -9341.1, "z": 3254.4, "px": 453.8, "py": 2603.4}, {"loc_id": 3035, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 12, "x": 2302.1, "z": 5886.9, "px": 2440.9, "py": 3052.7}, {"loc_id": 3035, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 2302.1, "z": 5886.9, "px": 2440.9, "py": 3052.7}, {"loc_id": 3036, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 3969.5, "z": -1152.7, "px": 2725.5, "py": 1851.3}, {"loc_id": 3038, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 12, "x": 4542.7, "z": 1025.5, "px": 2823.3, "py": 2223.0}, {"loc_id": 3038, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 4542.7, "z": 1025.5, "px": 2823.3, "py": 2223.0}, {"loc_id": 3039, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 4095.8, "z": -897.4, "px": 2747.0, "py": 1894.8}, {"loc_id": 3040, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 12, "x": -5758.6, "z": 1729.8, "px": 1065.2, "py": 2343.2}, {"loc_id": 3040, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -5758.6, "z": 1729.8, "px": 1065.2, "py": 2343.2}, {"loc_id": 3043, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -4863.5, "z": 3966.2, "px": 1218.0, "py": 2724.9}, {"loc_id": 3045, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 4928.6, "z": 1279.0, "px": 2889.1, "py": 2266.3}, {"loc_id": 3047, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -1985.3, "z": 3584.1, "px": 1709.2, "py": 2659.7}, {"loc_id": 3051, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 3073.0, "z": 3198.7, "px": 2572.5, "py": 2593.9}, {"loc_id": 3053, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -6464.8, "z": -3839.8, "px": 944.7, "py": 1392.7}, {"loc_id": 3054, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 6847.7, "z": 3134.3, "px": 3216.7, "py": 2582.9}, {"loc_id": 3063, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 12, "x": -128.6, "z": -5822.9, "px": 2026.1, "py": 1054.2}, {"loc_id": 3065, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -4544.0, "z": -5568.1, "px": 1272.5, "py": 1097.7}, {"loc_id": 3070, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 12, "x": -2112.0, "z": 3137.1, "px": 1687.6, "py": 2583.4}, {"loc_id": 3070, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -2112.0, "z": 3137.1, "px": 1687.6, "py": 2583.4}, {"loc_id": 3074, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 6720.6, "z": 2302.1, "px": 3195.0, "py": 2440.9}, {"loc_id": 3075, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -6209.3, "z": -4736.0, "px": 988.3, "py": 1239.7}, {"loc_id": 3079, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 4415.1, "z": -1345.8, "px": 2801.5, "py": 1818.3}, {"loc_id": 3082, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -6017.1, "z": 2176.9, "px": 1021.1, "py": 2419.5}, {"loc_id": 3085, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -4543.6, "z": -6143.1, "px": 1272.6, "py": 999.6}, {"loc_id": 3087, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 1024.6, "z": 4097.5, "px": 2222.9, "py": 2747.3}, {"loc_id": 3088, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -3647.2, "z": 2177.6, "px": 1425.5, "py": 2419.6}, {"loc_id": 3089, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 2750.5, "z": -5567.8, "px": 2517.4, "py": 1097.8}, {"loc_id": 3093, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -3136.3, "z": 2494.0, "px": 1512.7, "py": 2473.6}, {"loc_id": 3094, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -641.3, "z": 4094.2, "px": 1938.6, "py": 2746.7}, {"loc_id": 3095, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -7681.2, "z": -1983.8, "px": 737.1, "py": 1709.4}, {"loc_id": 3098, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 3136.5, "z": 2750.3, "px": 2583.3, "py": 2517.4}, {"loc_id": 3101, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -3647.2, "z": -1599.4, "px": 1425.5, "py": 1775.0}, {"loc_id": 3104, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -4094.7, "z": -4352.5, "px": 1349.2, "py": 1305.2}, {"loc_id": 3105, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -2880.0, "z": 5761.0, "px": 1556.5, "py": 3031.2}, {"loc_id": 3113, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 1984.9, "z": 5057.2, "px": 2386.8, "py": 2911.1}, {"loc_id": 3116, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 1279.3, "z": 3262.7, "px": 2266.3, "py": 2604.8}, {"loc_id": 3117, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 320.4, "z": 4033.3, "px": 2102.7, "py": 2736.3}, {"loc_id": 3119, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 5374.1, "z": -2623.4, "px": 2965.2, "py": 1600.3}, {"loc_id": 3123, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -4801.2, "z": 2239.1, "px": 1228.6, "py": 2430.1}, {"loc_id": 3125, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -1470.8, "z": -4353.3, "px": 1797.0, "py": 1305.0}, {"loc_id": 3126, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 7294.1, "z": 1022.7, "px": 3292.9, "py": 2222.5}, {"loc_id": 3133, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 12, "x": 3840.8, "z": 4158.3, "px": 2703.5, "py": 2757.7}, {"loc_id": 3137, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 4862.4, "z": 5057.9, "px": 2877.8, "py": 2911.2}, {"loc_id": 3146, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 2687.8, "z": 7167.6, "px": 2506.7, "py": 3271.3}, {"loc_id": 3147, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -7422.2, "z": -2176.9, "px": 781.3, "py": 1676.5}, {"loc_id": 3148, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 7166.5, "z": -958.4, "px": 3271.1, "py": 1884.4}, {"loc_id": 3152, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 12, "x": -2494.3, "z": -1790.4, "px": 1622.3, "py": 1742.4}, {"loc_id": 3154, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -961.8, "z": 4159.9, "px": 1883.9, "py": 2758.0}, {"loc_id": 3156, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 12, "x": 5568.9, "z": -1793.4, "px": 2998.4, "py": 1741.9}, {"loc_id": 3156, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 5568.9, "z": -1793.4, "px": 2998.4, "py": 1741.9}, {"loc_id": 3157, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 4158.4, "z": 1086.2, "px": 2757.7, "py": 2233.4}, {"loc_id": 3160, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -4481.0, "z": -5823.9, "px": 1283.2, "py": 1054.1}, {"loc_id": 3161, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -3649.1, "z": 3839.6, "px": 1425.2, "py": 2703.3}, {"loc_id": 3162, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 2944.5, "z": 4287.1, "px": 2550.5, "py": 2779.7}, {"loc_id": 3165, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -2496.7, "z": 3073.0, "px": 1621.9, "py": 2572.5}, {"loc_id": 3166, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -2368.6, "z": 4031.0, "px": 1643.8, "py": 2736.0}, {"loc_id": 3170, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 12, "x": 4735.2, "z": -2366.2, "px": 2856.1, "py": 1644.2}, {"loc_id": 3171, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -1023.3, "z": -6271.8, "px": 1873.4, "py": 977.6}, {"loc_id": 3173, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 12, "x": 4096.5, "z": 4351.2, "px": 2747.1, "py": 2790.6}, {"loc_id": 3177, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 6784.1, "z": 2881.4, "px": 3205.8, "py": 2539.8}, {"loc_id": 3180, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 12, "x": 2113.9, "z": -2497.2, "px": 2408.8, "py": 1621.8}, {"loc_id": 3183, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 7424.0, "z": -831.4, "px": 3315.0, "py": 1906.1}, {"loc_id": 3184, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -961.6, "z": 5057.4, "px": 1883.9, "py": 2911.1}, {"loc_id": 3187, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -2942.1, "z": -2560.2, "px": 1545.9, "py": 1611.1}, {"loc_id": 3192, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 1664.9, "z": 7424.3, "px": 2332.1, "py": 3315.1}, {"loc_id": 3198, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -3904.8, "z": 3006.7, "px": 1381.6, "py": 2561.1}, {"loc_id": 3200, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 513.9, "z": -7296.5, "px": 2135.7, "py": 802.7}, {"loc_id": 3201, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -1280.2, "z": -6655.9, "px": 1829.5, "py": 912.1}, {"loc_id": 3202, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 2688.2, "z": -5121.5, "px": 2506.8, "py": 1173.9}, {"loc_id": 3203, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 3519.8, "z": 3262.7, "px": 2648.7, "py": 2604.8}, {"loc_id": 3205, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -2495.7, "z": -3007.5, "px": 1622.1, "py": 1534.7}, {"loc_id": 3207, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -4928.9, "z": -2688.9, "px": 1206.8, "py": 1589.1}, {"loc_id": 3208, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 1983.3, "z": 4098.0, "px": 2386.5, "py": 2747.4}, {"loc_id": 3211, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 12, "x": 2048.1, "z": 4415.5, "px": 2397.5, "py": 2801.6}, {"loc_id": 3217, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -5502.3, "z": 641.6, "px": 1108.9, "py": 2157.5}, {"loc_id": 3219, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -2942.9, "z": 4096.3, "px": 1545.7, "py": 2747.1}, {"loc_id": 3220, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -2750.4, "z": -3711.7, "px": 1578.6, "py": 1414.5}, {"loc_id": 3226, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 1342.7, "z": 5057.3, "px": 2277.2, "py": 2911.1}, {"loc_id": 3228, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 3969.0, "z": 895.5, "px": 2725.4, "py": 2200.8}, {"loc_id": 3230, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -4993.4, "z": 3007.5, "px": 1195.8, "py": 2561.3}, {"loc_id": 3231, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": 4735.4, "z": -2944.6, "px": 2856.2, "py": 1545.5}, {"loc_id": 3232, "loc_name": "GoblinCamp2", "item": "Pickable: Barley", "count": 12, "x": -4610.0, "z": -575.2, "px": 1261.2, "py": 1949.8}, {"loc_id": 3232, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 12, "x": -4610.0, "z": -575.2, "px": 1261.2, "py": 1949.8}, {"loc_id": 3668, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr", "count": 12, "x": -1728.0, "z": -1024.0, "px": 1753.1, "py": 1873.2}, {"loc_id": 3676, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr", "count": 12, "x": 896.0, "z": 3264.0, "px": 2200.9, "py": 2605.1}, {"loc_id": 4112, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 12, "x": 513.6, "z": 5365.1, "px": 2135.7, "py": 2963.6}, {"loc_id": 4114, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 12, "x": -8966.8, "z": 2952.0, "px": 517.7, "py": 2551.8}, {"loc_id": 4116, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 12, "x": -1589.1, "z": -1726.7, "px": 1776.8, "py": 1753.3}, {"loc_id": 4119, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 12, "x": 2236.0, "z": -1290.8, "px": 2429.6, "py": 1827.7}, {"loc_id": 4123, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 12, "x": -7167.3, "z": -1866.0, "px": 824.8, "py": 1729.5}, {"loc_id": 4129, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 12, "x": -6527.9, "z": 5445.1, "px": 933.9, "py": 2977.3}, {"loc_id": 4140, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 12, "x": 5192.8, "z": -2238.7, "px": 2934.2, "py": 1665.9}, {"loc_id": 4143, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": 3581.2, "z": 3573.3, "px": 2659.2, "py": 2657.8}, {"loc_id": 4145, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 12, "x": 761.7, "z": 262.0, "px": 2178.0, "py": 2092.7}, {"loc_id": 4149, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": 3274.6, "z": -2807.2, "px": 2606.9, "py": 1568.9}, {"loc_id": 4155, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 12, "x": 5321.9, "z": 4856.1, "px": 2956.3, "py": 2876.8}, {"loc_id": 4157, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": -9159.0, "z": 3018.4, "px": 484.9, "py": 2563.1}, {"loc_id": 4170, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": 1734.2, "z": 7416.2, "px": 2344.0, "py": 3313.7}, {"loc_id": 4175, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 12, "x": -1674.2, "z": 4799.8, "px": 1762.3, "py": 2867.2}, {"loc_id": 4176, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 12, "x": 899.2, "z": 3392.5, "px": 2201.5, "py": 2627.0}, {"loc_id": 4176, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 12, "x": 899.2, "z": 3392.5, "px": 2201.5, "py": 2627.0}, {"loc_id": 4176, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": 899.2, "z": 3392.5, "px": 2201.5, "py": 2627.0}, {"loc_id": 4177, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 12, "x": -3203.0, "z": 4417.2, "px": 1501.4, "py": 2801.9}, {"loc_id": 4193, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 12, "x": 2503.9, "z": -4613.5, "px": 2475.3, "py": 1260.6}, {"loc_id": 4196, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 12, "x": 1976.2, "z": -957.5, "px": 2385.3, "py": 1884.6}, {"loc_id": 4199, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 12, "x": 2884.2, "z": -2239.6, "px": 2540.2, "py": 1665.8}, {"loc_id": 4203, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 12, "x": 2238.2, "z": 1021.5, "px": 2430.0, "py": 2222.3}, {"loc_id": 4205, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 12, "x": -7223.4, "z": -4729.8, "px": 815.2, "py": 1240.8}, {"loc_id": 4215, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 12, "x": -3967.1, "z": -2613.4, "px": 1370.9, "py": 1602.0}, {"loc_id": 4219, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 12, "x": -5114.9, "z": 309.7, "px": 1175.1, "py": 2100.9}, {"loc_id": 4226, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 12, "x": 8135.3, "z": -2488.2, "px": 3436.4, "py": 1623.3}, {"loc_id": 4227, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 12, "x": 1924.7, "z": -830.3, "px": 2376.5, "py": 1906.3}, {"loc_id": 4231, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 12, "x": 5060.5, "z": -2175.6, "px": 2911.7, "py": 1676.7}, {"loc_id": 4233, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 12, "x": -9029.0, "z": 3203.1, "px": 507.1, "py": 2594.7}, {"loc_id": 4242, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 12, "x": -2167.4, "z": 702.4, "px": 1678.1, "py": 2167.9}, {"loc_id": 4245, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 12, "x": 8067.7, "z": 323.4, "px": 3424.9, "py": 2103.2}, {"loc_id": 4245, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": 8067.7, "z": 323.4, "px": 3424.9, "py": 2103.2}, {"loc_id": 4249, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 12, "x": 7430.7, "z": -3206.4, "px": 3316.2, "py": 1500.8}, {"loc_id": 4249, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 12, "x": 7430.7, "z": -3206.4, "px": 3316.2, "py": 1500.8}, {"loc_id": 4256, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 12, "x": 2299.3, "z": 1538.2, "px": 2440.4, "py": 2310.5}, {"loc_id": 4257, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 12, "x": -649.4, "z": -6517.8, "px": 1937.2, "py": 935.6}, {"loc_id": 4257, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": -649.4, "z": -6517.8, "px": 1937.2, "py": 935.6}, {"loc_id": 4260, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": -444.3, "z": -4292.0, "px": 1972.2, "py": 1315.5}, {"loc_id": 4265, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 12, "x": 2375.4, "z": -1605.8, "px": 2453.4, "py": 1773.9}, {"loc_id": 4275, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": -4100.0, "z": -2235.3, "px": 1348.3, "py": 1666.5}, {"loc_id": 4276, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 12, "x": -1415.9, "z": -2056.9, "px": 1806.4, "py": 1697.0}, {"loc_id": 4282, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 12, "x": -6016.3, "z": 4606.7, "px": 1021.2, "py": 2834.2}, {"loc_id": 4285, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 12, "x": -9146.8, "z": -1529.4, "px": 486.9, "py": 1787.0}, {"loc_id": 4299, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 12, "x": 2947.0, "z": 3833.6, "px": 2551.0, "py": 2702.3}, {"loc_id": 4301, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": 2058.1, "z": -834.7, "px": 2399.2, "py": 1905.5}, {"loc_id": 4309, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 12, "x": -3079.9, "z": 4483.3, "px": 1522.4, "py": 2813.1}, {"loc_id": 4310, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 12, "x": -1786.0, "z": 4667.8, "px": 1743.2, "py": 2844.6}, {"loc_id": 4314, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 12, "x": -6971.4, "z": 2491.2, "px": 858.2, "py": 2473.2}, {"loc_id": 4318, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": -6719.5, "z": -4808.2, "px": 901.2, "py": 1227.4}, {"loc_id": 4319, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 12, "x": 2298.7, "z": -522.1, "px": 2440.3, "py": 1958.9}, {"loc_id": 4326, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 12, "x": 710.8, "z": 5309.7, "px": 2169.3, "py": 2954.2}, {"loc_id": 4344, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": -9541.9, "z": -313.4, "px": 419.5, "py": 1994.5}, {"loc_id": 4348, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 12, "x": 7751.4, "z": -2879.9, "px": 3370.9, "py": 1556.5}, {"loc_id": 4349, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 12, "x": 3638.2, "z": 3256.7, "px": 2668.9, "py": 2603.8}, {"loc_id": 4356, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 12, "x": 4296.6, "z": 6795.0, "px": 2781.3, "py": 3207.7}, {"loc_id": 4358, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 12, "x": 8125.6, "z": -196.7, "px": 3434.8, "py": 2014.4}, {"loc_id": 4362, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": 3191.6, "z": -2309.6, "px": 2592.7, "py": 1653.8}, {"loc_id": 4367, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 12, "x": -1032.8, "z": 377.8, "px": 1871.7, "py": 2112.5}, {"loc_id": 4368, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 12, "x": -9275.3, "z": 3326.7, "px": 465.0, "py": 2615.8}, {"loc_id": 4371, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 12, "x": 2562.5, "z": -4486.3, "px": 2485.3, "py": 1282.3}, {"loc_id": 4378, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 12, "x": -1334.3, "z": -1916.0, "px": 1820.3, "py": 1721.0}, {"loc_id": 4383, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": -1781.4, "z": -4545.8, "px": 1744.0, "py": 1272.2}, {"loc_id": 4383, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 12, "x": -1781.4, "z": -4545.8, "px": 1744.0, "py": 1272.2}, {"loc_id": 4390, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 12, "x": 2373.4, "z": 3769.6, "px": 2453.1, "py": 2691.3}, {"loc_id": 4399, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 12, "x": -9589.9, "z": -183.4, "px": 411.3, "py": 2016.7}, {"loc_id": 4401, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 12, "x": 2939.6, "z": -257.2, "px": 2549.7, "py": 2004.1}, {"loc_id": 4417, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 12, "x": 7298.0, "z": -4547.5, "px": 3293.5, "py": 1271.9}, {"loc_id": 4429, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 12, "x": 5067.0, "z": 377.9, "px": 2912.8, "py": 2112.5}, {"loc_id": 4430, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 12, "x": -4101.4, "z": -2312.7, "px": 1348.0, "py": 1653.3}, {"loc_id": 4431, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 12, "x": 5367.0, "z": 522.6, "px": 2964.0, "py": 2137.2}, {"loc_id": 4438, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 12, "x": -7037.2, "z": 246.7, "px": 847.0, "py": 2090.1}, {"loc_id": 4442, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 12, "x": 2816.5, "z": -136.0, "px": 2528.7, "py": 2024.8}, {"loc_id": 4442, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 12, "x": 2816.5, "z": -136.0, "px": 2528.7, "py": 2024.8}, {"loc_id": 4452, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 12, "x": -5703.6, "z": 4931.1, "px": 1074.6, "py": 2889.6}, {"loc_id": 4463, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 12, "x": 648.8, "z": 309.0, "px": 2158.7, "py": 2100.7}, {"loc_id": 4473, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 12, "x": -1352.6, "z": -1536.9, "px": 1817.2, "py": 1785.7}, {"loc_id": 4473, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 12, "x": -1352.6, "z": -1536.9, "px": 1817.2, "py": 1785.7}, {"loc_id": 4480, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 12, "x": -124.8, "z": -4743.5, "px": 2026.7, "py": 1238.4}, {"loc_id": 4481, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 12, "x": -1911.4, "z": -4671.1, "px": 1721.8, "py": 1250.8}, {"loc_id": 4490, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 12, "x": -5060.1, "z": 761.5, "px": 1184.4, "py": 2178.0}, {"loc_id": 4506, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 12, "x": 5060.4, "z": -2244.4, "px": 2911.6, "py": 1665.0}, {"loc_id": 4507, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 12, "x": 8121.8, "z": -3975.7, "px": 3434.1, "py": 1369.5}, {"loc_id": 7344, "loc_name": "TarPit2", "item": "Pickable: Tar", "count": 12, "x": 634.1, "z": -7233.1, "px": 2156.2, "py": 813.6}, {"loc_id": 7345, "loc_name": "TarPit2", "item": "Pickable: Tar", "count": 12, "x": 4992.3, "z": 4986.5, "px": 2900.0, "py": 2899.0}, {"loc_id": 7346, "loc_name": "TarPit2", "item": "Pickable: Tar", "count": 12, "x": 1723.8, "z": 3001.8, "px": 2342.2, "py": 2560.3}, {"loc_id": 7347, "loc_name": "TarPit2", "item": "Pickable: Tar", "count": 12, "x": -4547.1, "z": -5957.5, "px": 1272.0, "py": 1031.3}, {"loc_id": 7348, "loc_name": "TarPit2", "item": "Pickable: Tar", "count": 12, "x": 5630.9, "z": -1211.4, "px": 3009.0, "py": 1841.3}, {"loc_id": 7349, "loc_name": "TarPit2", "item": "Pickable: Tar", "count": 12, "x": 4676.9, "z": 1156.4, "px": 2846.2, "py": 2245.4}, {"loc_id": 7350, "loc_name": "TarPit2", "item": "Pickable: Tar", "count": 12, "x": 3461.6, "z": 3266.8, "px": 2638.8, "py": 2605.5}, {"loc_id": 7351, "loc_name": "TarPit2", "item": "Pickable: Tar", "count": 12, "x": 3321.6, "z": -1602.9, "px": 2614.9, "py": 1774.4}, {"loc_id": 7352, "loc_name": "TarPit2", "item": "Pickable: Tar", "count": 12, "x": -3205.2, "z": 1285.4, "px": 1501.0, "py": 2267.4}, {"loc_id": 7353, "loc_name": "TarPit2", "item": "Pickable: Tar", "count": 12, "x": 2043.1, "z": 4998.8, "px": 2396.7, "py": 2901.1}, {"loc_id": 7448, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 12, "x": 2240.0, "z": 8768.0, "px": 2430.3, "py": 3544.4}, {"loc_id": 7452, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 12, "x": -2624.0, "z": 7360.0, "px": 1600.2, "py": 3304.1}, {"loc_id": 7452, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 12, "x": -2624.0, "z": 7360.0, "px": 1600.2, "py": 3304.1}, {"loc_id": 7452, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 12, "x": -2624.0, "z": 7360.0, "px": 1600.2, "py": 3304.1}, {"loc_id": 7453, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 12, "x": -3584.0, "z": 6464.0, "px": 1436.3, "py": 3151.2}, {"loc_id": 7455, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 12, "x": 6592.0, "z": 6464.0, "px": 3173.0, "py": 3151.2}, {"loc_id": 7456, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 12, "x": -128.0, "z": -1344.0, "px": 2026.2, "py": 1818.6}, {"loc_id": 7458, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 12, "x": 6144.0, "z": 4736.0, "px": 3096.6, "py": 2856.3}, {"loc_id": 7458, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 12, "x": 6144.0, "z": 4736.0, "px": 3096.6, "py": 2856.3}, {"loc_id": 7460, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 12, "x": -4480.0, "z": -1344.0, "px": 1283.4, "py": 1818.6}, {"loc_id": 7466, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 12, "x": 7296.0, "z": -384.0, "px": 3293.2, "py": 1982.5}, {"loc_id": 7466, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 12, "x": 7296.0, "z": -384.0, "px": 3293.2, "py": 1982.5}, {"loc_id": 7469, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 12, "x": -5312.0, "z": 5184.0, "px": 1141.4, "py": 2932.7}, {"loc_id": 7469, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 12, "x": -5312.0, "z": 5184.0, "px": 1141.4, "py": 2932.7}, {"loc_id": 7471, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 12, "x": -4480.0, "z": -4096.0, "px": 1283.4, "py": 1348.9}, {"loc_id": 7479, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 12, "x": 2688.0, "z": 640.0, "px": 2506.8, "py": 2157.2}, {"loc_id": 7480, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 12, "x": -3776.0, "z": 1408.0, "px": 1403.6, "py": 2288.3}, {"loc_id": 7487, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 12, "x": -3968.0, "z": 5120.0, "px": 1370.8, "py": 2921.8}, {"loc_id": 7493, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 12, "x": 1344.0, "z": 6656.0, "px": 2277.4, "py": 3184.0}, {"loc_id": 7499, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 12, "x": 4480.0, "z": -2048.0, "px": 2812.6, "py": 1698.5}, {"loc_id": 7501, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 12, "x": -3840.0, "z": 4736.0, "px": 1392.6, "py": 2856.3}, {"loc_id": 7503, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 12, "x": 1344.0, "z": 8640.0, "px": 2277.4, "py": 3522.6}, {"loc_id": 7514, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 12, "x": -3584.0, "z": 6080.0, "px": 1436.3, "py": 3085.7}, {"loc_id": 7516, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 12, "x": 3008.0, "z": 576.0, "px": 2561.4, "py": 2146.3}, {"loc_id": 7517, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 12, "x": 7488.0, "z": 3968.0, "px": 3326.0, "py": 2725.2}, {"loc_id": 7521, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 12, "x": 2240.0, "z": -3712.0, "px": 2430.3, "py": 1414.5}, {"loc_id": 7528, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 12, "x": -6848.0, "z": 6848.0, "px": 879.3, "py": 3216.7}, {"loc_id": 7530, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 12, "x": 5312.0, "z": -64.0, "px": 2954.6, "py": 2037.1}, {"loc_id": 7532, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 12, "x": -9984.0, "z": -512.0, "px": 344.1, "py": 1960.6}, {"loc_id": 7533, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 12, "x": -8576.0, "z": -960.0, "px": 584.4, "py": 1884.2}, {"loc_id": 7534, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 12, "x": 896.0, "z": -2432.0, "px": 2200.9, "py": 1632.9}, {"loc_id": 7534, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 12, "x": 896.0, "z": -2432.0, "px": 2200.9, "py": 1632.9}, {"loc_id": 7538, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 12, "x": 6208.0, "z": 4544.0, "px": 3107.5, "py": 2823.5}, {"loc_id": 7540, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 12, "x": 1344.0, "z": 7040.0, "px": 2277.4, "py": 3249.5}, {"loc_id": 7547, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 12, "x": 5760.0, "z": 4480.0, "px": 3031.0, "py": 2812.6}, {"loc_id": 7550, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 12, "x": 1280.0, "z": 320.0, "px": 2266.5, "py": 2102.6}, {"loc_id": 7556, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 12, "x": -3200.0, "z": 2752.0, "px": 1501.9, "py": 2517.7}, {"loc_id": 7560, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 12, "x": 9344.0, "z": -2240.0, "px": 3642.7, "py": 1665.7}, {"loc_id": 7568, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 12, "x": 1536.0, "z": 6592.0, "px": 2310.1, "py": 3173.0}, {"loc_id": 7568, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 12, "x": 1536.0, "z": 6592.0, "px": 2310.1, "py": 3173.0}, {"loc_id": 7571, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 12, "x": -7232.0, "z": -1024.0, "px": 813.7, "py": 1873.2}, {"loc_id": 9947, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 12, "x": -2240.0, "z": -8896.0, "px": 1665.7, "py": 529.7}, {"loc_id": 9971, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 12, "x": 320.0, "z": -8832.0, "px": 2102.6, "py": 540.7}, {"loc_id": 9974, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 12, "x": 320.0, "z": -9024.0, "px": 2102.6, "py": 507.9}, {"loc_id": 9989, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 12, "x": -448.0, "z": -9856.0, "px": 1971.5, "py": 365.9}, {"loc_id": 9990, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 12, "x": -384.0, "z": -9984.0, "px": 1982.5, "py": 344.1}, {"loc_id": 10274, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 12, "x": 65.9, "z": -8960.9, "px": 2059.2, "py": 518.7}, {"loc_id": 10286, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 12, "x": -2559.7, "z": -8640.7, "px": 1611.1, "py": 573.3}, {"loc_id": 10298, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 12, "x": 3712.0, "z": -8448.8, "px": 2681.5, "py": 606.1}, {"loc_id": 10719, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 12, "x": -3585.9, "z": -9031.2, "px": 1436.0, "py": 506.7}, {"loc_id": 10722, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 12, "x": 513.8, "z": -9855.1, "px": 2135.7, "py": 366.1}, {"loc_id": 10811, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 12, "x": -3648.0, "z": -8384.0, "px": 1425.4, "py": 617.1}, {"loc_id": 10824, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 12, "x": -4480.0, "z": -8384.0, "px": 1283.4, "py": 617.1}, {"loc_id": 10834, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 12, "x": 1600.0, "z": -9792.0, "px": 2321.1, "py": 376.8}, {"loc_id": 10847, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 12, "x": -4736.0, "z": -8320.0, "px": 1239.7, "py": 628.1}, {"loc_id": 10876, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 12, "x": -3712.0, "z": -8832.0, "px": 1414.5, "py": 540.7}, {"loc_id": 10878, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 12, "x": -3776.0, "z": -8576.0, "px": 1403.6, "py": 584.4}, {"loc_id": 10886, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 12, "x": -2560.0, "z": -8960.0, "px": 1611.1, "py": 518.8}, {"loc_id": 10890, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 12, "x": 3392.0, "z": -8576.0, "px": 2626.9, "py": 584.4}, {"loc_id": 10896, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 12, "x": 192.0, "z": -9472.0, "px": 2080.8, "py": 431.4}, {"loc_id": 18, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 11, "x": 2438.5, "z": -1087.3, "px": 2464.2, "py": 1862.4}, {"loc_id": 25, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 11, "x": 1095.0, "z": 4349.5, "px": 2234.9, "py": 2790.3}, {"loc_id": 35, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 11, "x": -209.6, "z": 2703.7, "px": 2012.2, "py": 2509.4}, {"loc_id": 59, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 11, "x": -3448.5, "z": 3407.3, "px": 1459.5, "py": 2629.5}, {"loc_id": 60, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 11, "x": -5388.9, "z": 1521.4, "px": 1128.3, "py": 2307.7}, {"loc_id": 62, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 11, "x": -2356.3, "z": -1007.5, "px": 1645.9, "py": 1876.1}, {"loc_id": 67, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 11, "x": -79.4, "z": 2703.3, "px": 2034.4, "py": 2509.4}, {"loc_id": 69, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 11, "x": 2314.6, "z": -1080.4, "px": 2443.0, "py": 1863.6}, {"loc_id": 81, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 11, "x": -888.8, "z": -3716.9, "px": 1896.3, "py": 1413.6}, {"loc_id": 82, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 11, "x": -629.5, "z": -3515.5, "px": 1940.6, "py": 1448.0}, {"loc_id": 84, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 11, "x": 1293.6, "z": 2251.1, "px": 2268.8, "py": 2432.2}, {"loc_id": 85, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 11, "x": -1139.7, "z": -5705.5, "px": 1853.5, "py": 1074.3}, {"loc_id": 88, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 11, "x": 2353.7, "z": 270.7, "px": 2449.7, "py": 2094.2}, {"loc_id": 90, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 11, "x": -582.8, "z": -3968.2, "px": 1948.5, "py": 1370.8}, {"loc_id": 97, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 11, "x": 2738.0, "z": 3658.2, "px": 2515.3, "py": 2672.3}, {"loc_id": 113, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 11, "x": 1402.0, "z": 2222.3, "px": 2287.3, "py": 2427.3}, {"loc_id": 116, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 11, "x": 2291.5, "z": 250.0, "px": 2439.1, "py": 2090.7}, {"loc_id": 136, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 11, "x": 1096.3, "z": -3647.7, "px": 2235.1, "py": 1425.5}, {"loc_id": 138, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 11, "x": -2417.8, "z": -4091.4, "px": 1635.4, "py": 1349.7}, {"loc_id": 143, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 11, "x": 4484.2, "z": -3187.4, "px": 2813.3, "py": 1504.0}, {"loc_id": 159, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 11, "x": -4406.6, "z": 1211.3, "px": 1295.9, "py": 2254.7}, {"loc_id": 192, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 11, "x": -5170.2, "z": -656.1, "px": 1165.6, "py": 1936.0}, {"loc_id": 656, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 11, "x": 3008.0, "z": 6848.0, "px": 2561.4, "py": 3216.7}, {"loc_id": 662, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 11, "x": 1856.0, "z": -7104.0, "px": 2364.8, "py": 835.6}, {"loc_id": 668, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 11, "x": 5952.0, "z": -4416.0, "px": 3063.8, "py": 1294.3}, {"loc_id": 678, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 11, "x": -8960.0, "z": 768.0, "px": 518.8, "py": 2179.1}, {"loc_id": 688, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 11, "x": -1920.0, "z": 7040.0, "px": 1720.3, "py": 3249.5}, {"loc_id": 696, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 11, "x": 4672.0, "z": -4672.0, "px": 2845.4, "py": 1250.6}, {"loc_id": 705, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 11, "x": 6144.0, "z": -1536.0, "px": 3096.6, "py": 1785.9}, {"loc_id": 705, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 11, "x": 6144.0, "z": -1536.0, "px": 3096.6, "py": 1785.9}, {"loc_id": 706, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 11, "x": 9728.0, "z": 1536.0, "px": 3708.2, "py": 2310.1}, {"loc_id": 711, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 11, "x": -5184.0, "z": 6208.0, "px": 1163.3, "py": 3107.5}, {"loc_id": 712, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 11, "x": 9152.0, "z": -1280.0, "px": 3609.9, "py": 1829.5}, {"loc_id": 714, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 11, "x": -896.0, "z": -7616.0, "px": 1895.1, "py": 748.2}, {"loc_id": 718, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 11, "x": -6336.0, "z": 704.0, "px": 966.7, "py": 2168.1}, {"loc_id": 724, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 11, "x": -6912.0, "z": 5056.0, "px": 868.4, "py": 2910.9}, {"loc_id": 730, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 11, "x": 8192.0, "z": -832.0, "px": 3446.1, "py": 1906.0}, {"loc_id": 731, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 11, "x": -7744.0, "z": -2880.0, "px": 726.4, "py": 1556.5}, {"loc_id": 732, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 11, "x": 6464.0, "z": 2880.0, "px": 3151.2, "py": 2539.5}, {"loc_id": 740, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 11, "x": -5760.0, "z": -1984.0, "px": 1065.0, "py": 1709.4}, {"loc_id": 742, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 11, "x": -5376.0, "z": 4736.0, "px": 1130.5, "py": 2856.3}, {"loc_id": 745, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 11, "x": -5824.0, "z": 3264.0, "px": 1054.0, "py": 2605.1}, {"loc_id": 752, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 11, "x": 8256.0, "z": -2880.0, "px": 3457.0, "py": 1556.5}, {"loc_id": 752, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 11, "x": 8256.0, "z": -2880.0, "px": 3457.0, "py": 1556.5}, {"loc_id": 753, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 11, "x": -1408.0, "z": -6016.0, "px": 1807.7, "py": 1021.3}, {"loc_id": 759, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 11, "x": 3968.0, "z": -5312.0, "px": 2725.2, "py": 1141.4}, {"loc_id": 768, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 11, "x": -1856.0, "z": 7488.0, "px": 1731.2, "py": 3326.0}, {"loc_id": 774, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 11, "x": 6016.0, "z": 5952.0, "px": 3074.7, "py": 3063.8}, {"loc_id": 784, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 11, "x": -3776.0, "z": 5440.0, "px": 1403.6, "py": 2976.4}, {"loc_id": 788, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 11, "x": 4864.0, "z": 5696.0, "px": 2878.1, "py": 3020.1}, {"loc_id": 791, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 11, "x": 6720.0, "z": 5376.0, "px": 3194.9, "py": 2965.5}, {"loc_id": 792, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 11, "x": -9152.0, "z": 960.0, "px": 486.1, "py": 2211.8}, {"loc_id": 793, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 11, "x": 4224.0, "z": 6336.0, "px": 2768.9, "py": 3129.3}, {"loc_id": 795, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 11, "x": 8512.0, "z": 576.0, "px": 3500.7, "py": 2146.3}, {"loc_id": 796, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 11, "x": -128.0, "z": 7360.0, "px": 2026.2, "py": 3304.1}, {"loc_id": 798, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 11, "x": -576.0, "z": -6976.0, "px": 1949.7, "py": 857.4}, {"loc_id": 810, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 11, "x": 768.0, "z": 6528.0, "px": 2179.1, "py": 3162.1}, {"loc_id": 811, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 11, "x": -5568.0, "z": 3328.0, "px": 1097.7, "py": 2616.0}, {"loc_id": 820, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 11, "x": -7360.0, "z": 3008.0, "px": 791.9, "py": 2561.4}, {"loc_id": 825, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 11, "x": -8384.0, "z": -448.0, "px": 617.1, "py": 1971.5}, {"loc_id": 828, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 11, "x": 7168.0, "z": -64.0, "px": 3271.3, "py": 2037.1}, {"loc_id": 830, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 11, "x": 9920.0, "z": -192.0, "px": 3741.0, "py": 2015.2}, {"loc_id": 832, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 11, "x": -9216.0, "z": -64.0, "px": 475.1, "py": 2037.1}, {"loc_id": 832, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 11, "x": -9216.0, "z": -64.0, "px": 475.1, "py": 2037.1}, {"loc_id": 833, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 11, "x": 6208.0, "z": 5056.0, "px": 3107.5, "py": 2910.9}, {"loc_id": 837, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 11, "x": -9408.0, "z": 1472.0, "px": 442.4, "py": 2299.2}, {"loc_id": 841, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 11, "x": 3648.0, "z": -6784.0, "px": 2670.6, "py": 890.2}, {"loc_id": 851, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 11, "x": 8000.0, "z": -4480.0, "px": 3413.3, "py": 1283.4}, {"loc_id": 855, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 11, "x": 2560.0, "z": -5824.0, "px": 2484.9, "py": 1054.0}, {"loc_id": 857, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 11, "x": 2368.0, "z": 7296.0, "px": 2452.1, "py": 3293.2}, {"loc_id": 858, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 11, "x": -8384.0, "z": -3072.0, "px": 617.1, "py": 1523.7}, {"loc_id": 873, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 11, "x": 4480.0, "z": 5952.0, "px": 2812.6, "py": 3063.8}, {"loc_id": 876, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 11, "x": -2240.0, "z": -7040.0, "px": 1665.7, "py": 846.5}, {"loc_id": 878, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 11, "x": 1344.0, "z": -7296.0, "px": 2277.4, "py": 802.8}, {"loc_id": 883, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 11, "x": 576.0, "z": 6784.0, "px": 2146.3, "py": 3205.8}, {"loc_id": 890, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 11, "x": -6528.0, "z": -3008.0, "px": 933.9, "py": 1534.6}, {"loc_id": 892, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 11, "x": -6400.0, "z": 5632.0, "px": 955.7, "py": 3009.2}, {"loc_id": 893, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 11, "x": -8384.0, "z": -3776.0, "px": 617.1, "py": 1403.6}, {"loc_id": 893, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 11, "x": -8384.0, "z": -3776.0, "px": 617.1, "py": 1403.6}, {"loc_id": 901, "loc_name": "Hildir_cave", "item": "Pickable: Entrails", "count": 11, "x": 4736.0, "z": -5504.0, "px": 2856.3, "py": 1108.7}, {"loc_id": 902, "loc_name": "Hildir_cave", "item": "SpawnOnce: Ulv", "count": 11, "x": -2688.0, "z": 7360.0, "px": 1589.2, "py": 3304.1}, {"loc_id": 917, "loc_name": "Hildir_plainsfortress", "item": "SpawnOnce: GoblinArcher", "count": 11, "x": 4800.0, "z": -1216.0, "px": 2867.2, "py": 1840.5}, {"loc_id": 1986, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 11, "x": -1784.6, "z": -4355.4, "px": 1743.4, "py": 1304.7}, {"loc_id": 1987, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": -3193.8, "z": 4469.9, "px": 1502.9, "py": 2810.9}, {"loc_id": 1987, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 11, "x": -3193.8, "z": 4469.9, "px": 1502.9, "py": 2810.9}, {"loc_id": 1988, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 11, "x": -1462.0, "z": -1719.2, "px": 1798.5, "py": 1754.6}, {"loc_id": 1991, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 11, "x": -1736.3, "z": -4225.4, "px": 1751.7, "py": 1326.9}, {"loc_id": 1994, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 11, "x": -5368.1, "z": -1919.7, "px": 1131.8, "py": 1720.4}, {"loc_id": 2008, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 11, "x": 8127.2, "z": -263.8, "px": 3435.0, "py": 2003.0}, {"loc_id": 2022, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 11, "x": -5119.0, "z": 704.2, "px": 1174.4, "py": 2168.2}, {"loc_id": 2031, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 11, "x": -1856.3, "z": -4486.1, "px": 1731.2, "py": 1282.4}, {"loc_id": 2052, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 11, "x": -5125.7, "z": 183.2, "px": 1173.2, "py": 2079.3}, {"loc_id": 2059, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 11, "x": -5058.0, "z": 821.8, "px": 1184.8, "py": 2188.3}, {"loc_id": 2059, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": -5058.0, "z": 821.8, "px": 1184.8, "py": 2188.3}, {"loc_id": 2061, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": -2431.5, "z": 4169.7, "px": 1633.0, "py": 2759.6}, {"loc_id": 2065, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 11, "x": 2569.6, "z": -4599.8, "px": 2486.5, "py": 1263.0}, {"loc_id": 2068, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": 7799.0, "z": -261.2, "px": 3379.0, "py": 2003.4}, {"loc_id": 2070, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": -4618.1, "z": 5752.9, "px": 1259.8, "py": 3029.8}, {"loc_id": 2071, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 11, "x": 1793.0, "z": -4478.1, "px": 2354.0, "py": 1283.7}, {"loc_id": 2074, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 11, "x": 2555.5, "z": -4361.4, "px": 2484.1, "py": 1303.7}, {"loc_id": 2075, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 11, "x": 508.4, "z": 511.0, "px": 2134.8, "py": 2135.2}, {"loc_id": 2082, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 11, "x": -1272.0, "z": -2183.0, "px": 1830.9, "py": 1675.4}, {"loc_id": 2096, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 11, "x": -4747.0, "z": 5697.4, "px": 1237.8, "py": 3020.4}, {"loc_id": 2097, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 11, "x": -4027.5, "z": -2360.5, "px": 1360.6, "py": 1645.1}, {"loc_id": 2109, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 11, "x": 4553.1, "z": -5122.9, "px": 2825.1, "py": 1173.7}, {"loc_id": 2113, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": 502.9, "z": 377.9, "px": 2133.8, "py": 2112.5}, {"loc_id": 2128, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 11, "x": 5510.8, "z": 456.2, "px": 2988.5, "py": 2125.9}, {"loc_id": 2132, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 11, "x": 772.8, "z": 4226.6, "px": 2179.9, "py": 2769.3}, {"loc_id": 2133, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 11, "x": 3722.8, "z": -252.1, "px": 2683.4, "py": 2005.0}, {"loc_id": 2137, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 11, "x": 6136.3, "z": -5898.6, "px": 3095.3, "py": 1041.3}, {"loc_id": 2154, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 11, "x": 2556.2, "z": 5818.7, "px": 2484.3, "py": 3041.1}, {"loc_id": 2155, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 11, "x": 2501.3, "z": -3655.8, "px": 2474.9, "py": 1424.1}, {"loc_id": 2158, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 11, "x": 8393.8, "z": 2741.1, "px": 3480.5, "py": 2515.8}, {"loc_id": 2165, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 11, "x": 8135.7, "z": 895.5, "px": 3436.5, "py": 2200.8}, {"loc_id": 2174, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 11, "x": -4168.3, "z": -6390.4, "px": 1336.6, "py": 957.4}, {"loc_id": 2175, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 11, "x": 312.2, "z": 5051.0, "px": 2101.3, "py": 2910.0}, {"loc_id": 2175, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": 312.2, "z": 5051.0, "px": 2101.3, "py": 2910.0}, {"loc_id": 2177, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": 582.5, "z": 60.8, "px": 2147.4, "py": 2058.4}, {"loc_id": 3037, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 11, "x": -2559.0, "z": 6079.3, "px": 1611.3, "py": 3085.5}, {"loc_id": 3037, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -2559.0, "z": 6079.3, "px": 1611.3, "py": 3085.5}, {"loc_id": 3039, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 11, "x": 4095.8, "z": -897.4, "px": 2747.0, "py": 1894.8}, {"loc_id": 3040, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -5758.6, "z": 1729.8, "px": 1065.2, "py": 2343.2}, {"loc_id": 3041, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 3264.9, "z": -319.5, "px": 2605.2, "py": 1993.5}, {"loc_id": 3045, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 4928.6, "z": 1279.0, "px": 2889.1, "py": 2266.3}, {"loc_id": 3048, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 1536.3, "z": -4286.4, "px": 2310.2, "py": 1316.5}, {"loc_id": 3052, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -6206.2, "z": 1408.8, "px": 988.8, "py": 2288.4}, {"loc_id": 3053, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -6464.8, "z": -3839.8, "px": 944.7, "py": 1392.7}, {"loc_id": 3055, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 1215.1, "z": -4097.4, "px": 2255.4, "py": 1348.7}, {"loc_id": 3057, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -1534.8, "z": -6655.5, "px": 1786.1, "py": 912.1}, {"loc_id": 3066, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 5310.5, "z": 3584.0, "px": 2954.3, "py": 2659.7}, {"loc_id": 3068, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 11, "x": -5185.2, "z": -1022.1, "px": 1163.1, "py": 1873.6}, {"loc_id": 3069, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -3393.3, "z": 2305.2, "px": 1468.9, "py": 2441.4}, {"loc_id": 3071, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 3776.6, "z": 1729.7, "px": 2692.5, "py": 2343.2}, {"loc_id": 3075, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -6209.3, "z": -4736.0, "px": 988.3, "py": 1239.7}, {"loc_id": 3082, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -6017.1, "z": 2176.9, "px": 1021.1, "py": 2419.5}, {"loc_id": 3083, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 2753.6, "z": -5953.6, "px": 2517.9, "py": 1031.9}, {"loc_id": 3084, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -3071.2, "z": 1215.7, "px": 1523.8, "py": 2255.5}, {"loc_id": 3085, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -4543.6, "z": -6143.1, "px": 1272.6, "py": 999.6}, {"loc_id": 3088, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -3647.2, "z": 2177.6, "px": 1425.5, "py": 2419.6}, {"loc_id": 3092, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -4289.7, "z": -6142.8, "px": 1315.9, "py": 999.6}, {"loc_id": 3095, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -7681.2, "z": -1983.8, "px": 737.1, "py": 1709.4}, {"loc_id": 3096, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 1982.5, "z": 7040.4, "px": 2386.3, "py": 3249.6}, {"loc_id": 3097, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 11, "x": -7486.5, "z": 2241.7, "px": 770.3, "py": 2430.6}, {"loc_id": 3097, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -7486.5, "z": 2241.7, "px": 770.3, "py": 2430.6}, {"loc_id": 3099, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 3776.9, "z": 1407.8, "px": 2692.6, "py": 2288.3}, {"loc_id": 3102, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -2750.2, "z": -2879.8, "px": 1578.6, "py": 1556.5}, {"loc_id": 3107, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 1664.6, "z": 3393.8, "px": 2332.1, "py": 2627.2}, {"loc_id": 3108, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -3646.9, "z": 2561.5, "px": 1425.6, "py": 2485.2}, {"loc_id": 3109, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 127.2, "z": 3518.4, "px": 2069.7, "py": 2648.5}, {"loc_id": 3110, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -1918.3, "z": -3072.8, "px": 1720.6, "py": 1523.6}, {"loc_id": 3112, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 3009.4, "z": -1473.1, "px": 2561.6, "py": 1796.6}, {"loc_id": 3119, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 11, "x": 5374.1, "z": -2623.4, "px": 2965.2, "py": 1600.3}, {"loc_id": 3123, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -4801.2, "z": 2239.1, "px": 1228.6, "py": 2430.1}, {"loc_id": 3126, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 7294.1, "z": 1022.7, "px": 3292.9, "py": 2222.5}, {"loc_id": 3128, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 11, "x": 2878.7, "z": 5118.9, "px": 2539.3, "py": 2921.6}, {"loc_id": 3128, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 2878.7, "z": 5118.9, "px": 2539.3, "py": 2921.6}, {"loc_id": 3135, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 5634.0, "z": -2047.5, "px": 3009.5, "py": 1698.6}, {"loc_id": 3136, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -1728.2, "z": -4735.4, "px": 1753.1, "py": 1239.8}, {"loc_id": 3137, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 4862.4, "z": 5057.9, "px": 2877.8, "py": 2911.2}, {"loc_id": 3139, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 2879.9, "z": -3647.5, "px": 2539.5, "py": 1425.5}, {"loc_id": 3142, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 3071.4, "z": 191.8, "px": 2572.2, "py": 2080.7}, {"loc_id": 3144, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -4032.3, "z": 3582.0, "px": 1359.8, "py": 2659.3}, {"loc_id": 3149, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -2048.1, "z": -5311.5, "px": 1698.5, "py": 1141.5}, {"loc_id": 3157, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 4158.4, "z": 1086.2, "px": 2757.7, "py": 2233.4}, {"loc_id": 3160, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -4481.0, "z": -5823.9, "px": 1283.2, "py": 1054.1}, {"loc_id": 3161, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -3649.1, "z": 3839.6, "px": 1425.2, "py": 2703.3}, {"loc_id": 3161, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 11, "x": -3649.1, "z": 3839.6, "px": 1425.2, "py": 2703.3}, {"loc_id": 3162, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 2944.5, "z": 4287.1, "px": 2550.5, "py": 2779.7}, {"loc_id": 3163, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 4927.2, "z": 3326.8, "px": 2888.9, "py": 2615.8}, {"loc_id": 3165, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -2496.7, "z": 3073.0, "px": 1621.9, "py": 2572.5}, {"loc_id": 3168, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 11, "x": 3712.5, "z": -448.2, "px": 2681.6, "py": 1971.5}, {"loc_id": 3170, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 4735.2, "z": -2366.2, "px": 2856.1, "py": 1644.2}, {"loc_id": 3173, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 4096.5, "z": 4351.2, "px": 2747.1, "py": 2790.6}, {"loc_id": 3174, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -1601.6, "z": -3134.8, "px": 1774.7, "py": 1513.0}, {"loc_id": 3176, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 318.1, "z": 5502.9, "px": 2102.3, "py": 2987.2}, {"loc_id": 3181, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 2110.8, "z": 6080.7, "px": 2408.2, "py": 3085.8}, {"loc_id": 3185, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 11, "x": 3839.5, "z": 4673.0, "px": 2703.3, "py": 2845.5}, {"loc_id": 3193, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 1982.3, "z": -3329.8, "px": 2386.3, "py": 1479.7}, {"loc_id": 3195, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -4928.4, "z": -1985.0, "px": 1206.9, "py": 1709.2}, {"loc_id": 3198, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -3904.8, "z": 3006.7, "px": 1381.6, "py": 2561.1}, {"loc_id": 3203, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 3519.8, "z": 3262.7, "px": 2648.7, "py": 2604.8}, {"loc_id": 3204, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -4416.6, "z": 6334.7, "px": 1294.2, "py": 3129.1}, {"loc_id": 3207, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -4928.9, "z": -2688.9, "px": 1206.8, "py": 1589.1}, {"loc_id": 3208, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 1983.3, "z": 4098.0, "px": 2386.5, "py": 2747.4}, {"loc_id": 3209, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -5184.6, "z": -1921.3, "px": 1163.2, "py": 1720.1}, {"loc_id": 3214, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -3134.9, "z": 7103.2, "px": 1513.0, "py": 3260.3}, {"loc_id": 3215, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -3198.4, "z": 4030.7, "px": 1502.1, "py": 2735.9}, {"loc_id": 3217, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -5502.3, "z": 641.6, "px": 1108.9, "py": 2157.5}, {"loc_id": 3219, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 11, "x": -2942.9, "z": 4096.3, "px": 1545.7, "py": 2747.1}, {"loc_id": 3219, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -2942.9, "z": 4096.3, "px": 1545.7, "py": 2747.1}, {"loc_id": 3223, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -5888.9, "z": 961.8, "px": 1043.0, "py": 2212.1}, {"loc_id": 3226, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 11, "x": 1342.7, "z": 5057.3, "px": 2277.2, "py": 2911.1}, {"loc_id": 3226, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 1342.7, "z": 5057.3, "px": 2277.2, "py": 2911.1}, {"loc_id": 3227, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": 769.6, "z": 4094.1, "px": 2179.3, "py": 2746.7}, {"loc_id": 3232, "loc_name": "GoblinCamp2", "item": "Pickable: Flax", "count": 11, "x": -4610.0, "z": -575.2, "px": 1261.2, "py": 1949.8}, {"loc_id": 3305, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 11, "x": 2618.7, "z": -7297.7, "px": 2494.9, "py": 802.5}, {"loc_id": 3657, "loc_name": "WoodFarm1", "item": "Pickable: Raspberry", "count": 11, "x": 1088.0, "z": 768.0, "px": 2233.7, "py": 2179.1}, {"loc_id": 3659, "loc_name": "WoodFarm1", "item": "Pickable: Raspberry", "count": 11, "x": 1792.0, "z": 0.0, "px": 2353.8, "py": 2048.0}, {"loc_id": 3672, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr", "count": 11, "x": 3072.0, "z": -2688.0, "px": 2572.3, "py": 1589.2}, {"loc_id": 3678, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr", "count": 11, "x": -2752.0, "z": 1792.0, "px": 1578.3, "py": 2353.8}, {"loc_id": 4110, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 11, "x": -3637.8, "z": 4362.6, "px": 1427.1, "py": 2792.6}, {"loc_id": 4123, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 11, "x": -7167.3, "z": -1866.0, "px": 824.8, "py": 1729.5}, {"loc_id": 4133, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 11, "x": 2500.2, "z": 1219.2, "px": 2474.7, "py": 2256.1}, {"loc_id": 4141, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 11, "x": -8380.7, "z": -710.6, "px": 617.7, "py": 1926.7}, {"loc_id": 4147, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 11, "x": -9157.9, "z": 3333.6, "px": 485.1, "py": 2616.9}, {"loc_id": 4150, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 11, "x": -9221.4, "z": 2885.5, "px": 474.2, "py": 2540.5}, {"loc_id": 4151, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 11, "x": 831.2, "z": -2237.7, "px": 2189.9, "py": 1666.1}, {"loc_id": 4157, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 11, "x": -9159.0, "z": 3018.4, "px": 484.9, "py": 2563.1}, {"loc_id": 4161, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": 6406.0, "z": 3253.2, "px": 3141.3, "py": 2603.2}, {"loc_id": 4165, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 11, "x": -3838.5, "z": -380.1, "px": 1392.9, "py": 1983.1}, {"loc_id": 4172, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 11, "x": -8070.8, "z": 517.7, "px": 670.6, "py": 2136.4}, {"loc_id": 4181, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 11, "x": 842.8, "z": -3.9, "px": 2191.8, "py": 2047.3}, {"loc_id": 4185, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 11, "x": -5579.0, "z": -4997.9, "px": 1095.9, "py": 1195.0}, {"loc_id": 4204, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 11, "x": 3832.5, "z": 3901.3, "px": 2702.1, "py": 2713.8}, {"loc_id": 4206, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": 7049.9, "z": -4285.7, "px": 3251.2, "py": 1316.6}, {"loc_id": 4208, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": 2693.9, "z": -3652.1, "px": 2507.8, "py": 1424.7}, {"loc_id": 4210, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 11, "x": -2503.3, "z": 1718.0, "px": 1620.8, "py": 2341.2}, {"loc_id": 4224, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 11, "x": 1013.1, "z": 5697.9, "px": 2220.9, "py": 3020.4}, {"loc_id": 4224, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 11, "x": 1013.1, "z": 5697.9, "px": 2220.9, "py": 3020.4}, {"loc_id": 4234, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 11, "x": 2241.6, "z": 5178.2, "px": 2430.6, "py": 2931.7}, {"loc_id": 4246, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 11, "x": -5832.1, "z": 1476.6, "px": 1052.7, "py": 2300.0}, {"loc_id": 4252, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 11, "x": -6152.8, "z": 2296.4, "px": 997.9, "py": 2439.9}, {"loc_id": 4255, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 11, "x": -7035.7, "z": 2438.1, "px": 847.2, "py": 2464.1}, {"loc_id": 4265, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": 2375.4, "z": -1605.8, "px": 2453.4, "py": 1773.9}, {"loc_id": 4269, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 11, "x": -1795.6, "z": 3065.6, "px": 1741.6, "py": 2571.2}, {"loc_id": 4278, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 11, "x": 2569.6, "z": 4988.7, "px": 2486.5, "py": 2899.4}, {"loc_id": 4281, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 11, "x": -1027.4, "z": -5060.9, "px": 1872.7, "py": 1184.3}, {"loc_id": 4284, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 11, "x": 3833.1, "z": 894.9, "px": 2702.2, "py": 2200.7}, {"loc_id": 4292, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 11, "x": 1531.7, "z": 6326.6, "px": 2309.4, "py": 3127.7}, {"loc_id": 4296, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 11, "x": -2248.7, "z": 1737.9, "px": 1664.2, "py": 2344.6}, {"loc_id": 4297, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": 968.5, "z": 5317.9, "px": 2213.3, "py": 2955.6}, {"loc_id": 4308, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 11, "x": 5503.2, "z": -2502.2, "px": 2987.2, "py": 1621.0}, {"loc_id": 4311, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 11, "x": 2953.2, "z": -2112.1, "px": 2552.0, "py": 1687.5}, {"loc_id": 4312, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 11, "x": 2168.5, "z": -1334.2, "px": 2418.1, "py": 1820.3}, {"loc_id": 4318, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 11, "x": -6719.5, "z": -4808.2, "px": 901.2, "py": 1227.4}, {"loc_id": 4325, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": -8960.4, "z": 3145.3, "px": 518.8, "py": 2584.8}, {"loc_id": 4327, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 11, "x": 959.4, "z": 5365.3, "px": 2211.7, "py": 2963.7}, {"loc_id": 4331, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": -7416.6, "z": 4353.4, "px": 782.2, "py": 2791.0}, {"loc_id": 4333, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 11, "x": -7349.3, "z": -1663.5, "px": 793.7, "py": 1764.1}, {"loc_id": 4335, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 11, "x": -2042.7, "z": -5630.1, "px": 1699.4, "py": 1087.1}, {"loc_id": 4338, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": -1467.5, "z": -1670.1, "px": 1797.5, "py": 1763.0}, {"loc_id": 4340, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 11, "x": -5185.9, "z": 330.5, "px": 1162.9, "py": 2104.4}, {"loc_id": 4341, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 11, "x": 3324.6, "z": -2746.9, "px": 2615.4, "py": 1579.2}, {"loc_id": 4356, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": 4296.6, "z": 6795.0, "px": 2781.3, "py": 3207.7}, {"loc_id": 4362, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 11, "x": 3191.6, "z": -2309.6, "px": 2592.7, "py": 1653.8}, {"loc_id": 4363, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 11, "x": 8010.6, "z": 188.7, "px": 3415.1, "py": 2080.2}, {"loc_id": 4365, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 11, "x": 1276.2, "z": 5630.3, "px": 2265.8, "py": 3008.9}, {"loc_id": 4367, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 11, "x": -1032.8, "z": 377.8, "px": 1871.7, "py": 2112.5}, {"loc_id": 4367, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": -1032.8, "z": 377.8, "px": 1871.7, "py": 2112.5}, {"loc_id": 4375, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 11, "x": -8056.8, "z": 2757.5, "px": 673.0, "py": 2518.6}, {"loc_id": 4389, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 11, "x": 7416.7, "z": 1096.8, "px": 3313.8, "py": 2235.2}, {"loc_id": 4390, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 11, "x": 2373.4, "z": 3769.6, "px": 2453.1, "py": 2691.3}, {"loc_id": 4396, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": 889.9, "z": 3450.9, "px": 2199.9, "py": 2637.0}, {"loc_id": 4399, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 11, "x": -9589.9, "z": -183.4, "px": 411.3, "py": 2016.7}, {"loc_id": 4399, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": -9589.9, "z": -183.4, "px": 411.3, "py": 2016.7}, {"loc_id": 4402, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 11, "x": 1781.0, "z": 7356.1, "px": 2352.0, "py": 3303.4}, {"loc_id": 4407, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 11, "x": 9546.9, "z": 63.9, "px": 3677.3, "py": 2058.9}, {"loc_id": 4409, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 11, "x": -4025.2, "z": -322.6, "px": 1361.0, "py": 1992.9}, {"loc_id": 4410, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": 3274.8, "z": -4.6, "px": 2606.9, "py": 2047.2}, {"loc_id": 4415, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 11, "x": -5956.5, "z": -70.0, "px": 1031.4, "py": 2036.1}, {"loc_id": 4415, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": -5956.5, "z": -70.0, "px": 1031.4, "py": 2036.1}, {"loc_id": 4417, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 11, "x": 7298.0, "z": -4547.5, "px": 3293.5, "py": 1271.9}, {"loc_id": 4420, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 11, "x": 2427.3, "z": -1475.0, "px": 2462.3, "py": 1796.3}, {"loc_id": 4421, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 11, "x": 5510.4, "z": -969.9, "px": 2988.4, "py": 1882.5}, {"loc_id": 4422, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 11, "x": -1219.5, "z": -1606.9, "px": 1839.9, "py": 1773.8}, {"loc_id": 4425, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 11, "x": 2552.7, "z": 258.9, "px": 2483.7, "py": 2092.2}, {"loc_id": 4440, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 11, "x": 4425.2, "z": 6792.0, "px": 2803.2, "py": 3207.2}, {"loc_id": 4446, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 11, "x": 2169.4, "z": 3962.5, "px": 2418.2, "py": 2724.3}, {"loc_id": 4456, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 11, "x": 7751.7, "z": -2687.8, "px": 3371.0, "py": 1589.3}, {"loc_id": 4459, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 11, "x": 584.4, "z": 4475.8, "px": 2147.7, "py": 2811.9}, {"loc_id": 4462, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 11, "x": 2112.5, "z": -4356.6, "px": 2408.5, "py": 1304.5}, {"loc_id": 4463, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 11, "x": 648.8, "z": 309.0, "px": 2158.7, "py": 2100.7}, {"loc_id": 4468, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 11, "x": 3901.0, "z": 1013.6, "px": 2713.8, "py": 2221.0}, {"loc_id": 4485, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 11, "x": 3648.4, "z": 197.1, "px": 2670.7, "py": 2081.6}, {"loc_id": 4487, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 11, "x": 1917.8, "z": 7177.5, "px": 2375.3, "py": 3273.0}, {"loc_id": 4491, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 11, "x": -2042.1, "z": 510.0, "px": 1699.5, "py": 2135.0}, {"loc_id": 4500, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 11, "x": -3201.7, "z": -2365.6, "px": 1501.6, "py": 1644.3}, {"loc_id": 4501, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 11, "x": 1659.5, "z": -898.7, "px": 2331.2, "py": 1894.6}, {"loc_id": 4504, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 11, "x": 2173.2, "z": -965.9, "px": 2418.9, "py": 1883.2}, {"loc_id": 7444, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 11, "x": 5696.0, "z": 2112.0, "px": 3020.1, "py": 2408.4}, {"loc_id": 7445, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 11, "x": 1280.0, "z": 8448.0, "px": 2266.5, "py": 3489.8}, {"loc_id": 7447, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 11, "x": 9920.0, "z": -1216.0, "px": 3741.0, "py": 1840.5}, {"loc_id": 7449, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 11, "x": -3328.0, "z": -2048.0, "px": 1480.0, "py": 1698.5}, {"loc_id": 7450, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 11, "x": 5248.0, "z": 192.0, "px": 2943.7, "py": 2080.8}, {"loc_id": 7453, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 11, "x": -3584.0, "z": 6464.0, "px": 1436.3, "py": 3151.2}, {"loc_id": 7455, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 11, "x": 6592.0, "z": 6464.0, "px": 3173.0, "py": 3151.2}, {"loc_id": 7455, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 11, "x": 6592.0, "z": 6464.0, "px": 3173.0, "py": 3151.2}, {"loc_id": 7458, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 11, "x": 6144.0, "z": 4736.0, "px": 3096.6, "py": 2856.3}, {"loc_id": 7462, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 11, "x": -3904.0, "z": 4480.0, "px": 1381.7, "py": 2812.6}, {"loc_id": 7466, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 11, "x": 7296.0, "z": -384.0, "px": 3293.2, "py": 1982.5}, {"loc_id": 7468, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 11, "x": 1472.0, "z": 6848.0, "px": 2299.2, "py": 3216.7}, {"loc_id": 7470, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 11, "x": 2624.0, "z": 8576.0, "px": 2495.8, "py": 3511.6}, {"loc_id": 7470, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 11, "x": 2624.0, "z": 8576.0, "px": 2495.8, "py": 3511.6}, {"loc_id": 7472, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 11, "x": 4608.0, "z": -5440.0, "px": 2834.4, "py": 1119.6}, {"loc_id": 7478, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 11, "x": 4800.0, "z": -5312.0, "px": 2867.2, "py": 1141.4}, {"loc_id": 7482, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 11, "x": 4288.0, "z": -5824.0, "px": 2779.8, "py": 1054.0}, {"loc_id": 7483, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 11, "x": -2112.0, "z": -512.0, "px": 1687.6, "py": 1960.6}, {"loc_id": 7488, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 11, "x": -7616.0, "z": -2368.0, "px": 748.2, "py": 1643.9}, {"loc_id": 7493, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 11, "x": 1344.0, "z": 6656.0, "px": 2277.4, "py": 3184.0}, {"loc_id": 7493, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 11, "x": 1344.0, "z": 6656.0, "px": 2277.4, "py": 3184.0}, {"loc_id": 7494, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 11, "x": 9664.0, "z": -1216.0, "px": 3697.3, "py": 1840.5}, {"loc_id": 7497, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 11, "x": 1984.0, "z": -6784.0, "px": 2386.6, "py": 890.2}, {"loc_id": 7499, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 11, "x": 4480.0, "z": -2048.0, "px": 2812.6, "py": 1698.5}, {"loc_id": 7501, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 11, "x": -3840.0, "z": 4736.0, "px": 1392.6, "py": 2856.3}, {"loc_id": 7502, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 11, "x": 4800.0, "z": -5568.0, "px": 2867.2, "py": 1097.7}, {"loc_id": 7508, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 11, "x": 3520.0, "z": 9216.0, "px": 2648.7, "py": 3620.9}, {"loc_id": 7510, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 11, "x": 6592.0, "z": 7104.0, "px": 3173.0, "py": 3260.4}, {"loc_id": 7511, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 11, "x": -6592.0, "z": -2240.0, "px": 923.0, "py": 1665.7}, {"loc_id": 7511, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 11, "x": -6592.0, "z": -2240.0, "px": 923.0, "py": 1665.7}, {"loc_id": 7521, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 11, "x": 2240.0, "z": -3712.0, "px": 2430.3, "py": 1414.5}, {"loc_id": 7526, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 11, "x": 2560.0, "z": 8960.0, "px": 2484.9, "py": 3577.2}, {"loc_id": 7528, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 11, "x": -6848.0, "z": 6848.0, "px": 879.3, "py": 3216.7}, {"loc_id": 7528, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 11, "x": -6848.0, "z": 6848.0, "px": 879.3, "py": 3216.7}, {"loc_id": 7529, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 11, "x": 2496.0, "z": -3008.0, "px": 2474.0, "py": 1534.6}, {"loc_id": 7532, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 11, "x": -9984.0, "z": -512.0, "px": 344.1, "py": 1960.6}, {"loc_id": 7535, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 11, "x": -9792.0, "z": -704.0, "px": 376.8, "py": 1927.9}, {"loc_id": 7544, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 11, "x": -2432.0, "z": 1920.0, "px": 1632.9, "py": 2375.7}, {"loc_id": 7545, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 11, "x": -192.0, "z": -1536.0, "px": 2015.2, "py": 1785.9}, {"loc_id": 7547, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 11, "x": 5760.0, "z": 4480.0, "px": 3031.0, "py": 2812.6}, {"loc_id": 7554, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 11, "x": 3776.0, "z": -128.0, "px": 2692.4, "py": 2026.2}, {"loc_id": 7573, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 11, "x": 2304.0, "z": -2880.0, "px": 2441.2, "py": 1556.5}, {"loc_id": 9958, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 11, "x": -2240.0, "z": -8832.0, "px": 1665.7, "py": 540.7}, {"loc_id": 9960, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 11, "x": -768.0, "z": -9408.0, "px": 1916.9, "py": 442.4}, {"loc_id": 9960, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 11, "x": -768.0, "z": -9408.0, "px": 1916.9, "py": 442.4}, {"loc_id": 9963, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 11, "x": -576.0, "z": -9216.0, "px": 1949.7, "py": 475.1}, {"loc_id": 9975, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 11, "x": 768.0, "z": -9024.0, "px": 2179.1, "py": 507.9}, {"loc_id": 9978, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 11, "x": -448.0, "z": -9920.0, "px": 1971.5, "py": 355.0}, {"loc_id": 9982, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 11, "x": -832.0, "z": -9600.0, "px": 1906.0, "py": 409.6}, {"loc_id": 9988, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 11, "x": -704.0, "z": -9536.0, "px": 1927.9, "py": 420.5}, {"loc_id": 9992, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 11, "x": -832.0, "z": -9216.0, "px": 1906.0, "py": 475.1}, {"loc_id": 10007, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 11, "x": 704.0, "z": -9408.0, "px": 2168.1, "py": 442.4}, {"loc_id": 10009, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 11, "x": 832.0, "z": -9344.0, "px": 2190.0, "py": 453.3}, {"loc_id": 10011, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 11, "x": 384.0, "z": -8640.0, "px": 2113.5, "py": 573.4}, {"loc_id": 10016, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 11, "x": 1600.0, "z": -9472.0, "px": 2321.1, "py": 431.4}, {"loc_id": 10280, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 11, "x": -4415.1, "z": -8190.3, "px": 1294.5, "py": 650.2}, {"loc_id": 10335, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 11, "x": -383.3, "z": -8704.5, "px": 1982.6, "py": 562.4}, {"loc_id": 10340, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 11, "x": -2112.1, "z": -8640.7, "px": 1687.5, "py": 573.3}, {"loc_id": 10341, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 11, "x": -640.3, "z": -9601.3, "px": 1938.7, "py": 409.4}, {"loc_id": 10342, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 11, "x": 895.7, "z": -9087.5, "px": 2200.9, "py": 497.1}, {"loc_id": 10686, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 11, "x": -5496.0, "z": -7877.3, "px": 1110.0, "py": 703.6}, {"loc_id": 10699, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 11, "x": -2056.6, "z": -9028.6, "px": 1697.0, "py": 507.1}, {"loc_id": 10827, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 11, "x": -2496.0, "z": -8768.0, "px": 1622.0, "py": 551.6}, {"loc_id": 10833, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 11, "x": 2240.0, "z": -9152.0, "px": 2430.3, "py": 486.1}, {"loc_id": 10864, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 11, "x": -5248.0, "z": -7744.0, "px": 1152.3, "py": 726.4}, {"loc_id": 10874, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 11, "x": 2112.0, "z": -9472.0, "px": 2408.4, "py": 431.4}, {"loc_id": 10880, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 11, "x": 2176.0, "z": -9280.0, "px": 2419.4, "py": 464.2}, {"loc_id": 10891, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 11, "x": 2240.0, "z": -9088.0, "px": 2430.3, "py": 497.0}, {"loc_id": 10892, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 11, "x": -5376.0, "z": -7808.0, "px": 1130.5, "py": 715.4}, {"loc_id": 10895, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 11, "x": 1792.0, "z": -8384.0, "px": 2353.8, "py": 617.1}, {"loc_id": 10900, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 11, "x": -5120.0, "z": -8064.0, "px": 1174.2, "py": 671.7}, {"loc_id": 10903, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 11, "x": 5184.0, "z": -7808.0, "px": 2932.7, "py": 715.4}, {"loc_id": 10904, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 11, "x": 3648.0, "z": -8192.0, "px": 2670.6, "py": 649.9}, {"loc_id": 10906, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 11, "x": -3520.0, "z": -9024.0, "px": 1447.3, "py": 507.9}, {"loc_id": 10908, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 11, "x": 4032.0, "z": -8768.0, "px": 2736.1, "py": 551.6}, {"loc_id": 23, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 10, "x": -590.9, "z": -3594.7, "px": 1947.2, "py": 1434.5}, {"loc_id": 24, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 10, "x": 2365.0, "z": 184.9, "px": 2451.6, "py": 2079.6}, {"loc_id": 31, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 10, "x": 3723.6, "z": 816.0, "px": 2683.5, "py": 2187.3}, {"loc_id": 32, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 10, "x": 3386.5, "z": -4286.1, "px": 2626.0, "py": 1316.5}, {"loc_id": 36, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 10, "x": -2570.0, "z": -1520.8, "px": 1609.4, "py": 1788.5}, {"loc_id": 48, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 10, "x": -5066.2, "z": 1345.8, "px": 1183.4, "py": 2277.7}, {"loc_id": 53, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 10, "x": -2806.7, "z": -5166.8, "px": 1569.0, "py": 1166.2}, {"loc_id": 54, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 10, "x": 133.7, "z": 2553.3, "px": 2070.8, "py": 2483.8}, {"loc_id": 58, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 10, "x": 1550.5, "z": 2242.3, "px": 2312.6, "py": 2430.7}, {"loc_id": 69, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 10, "x": 2314.6, "z": -1080.4, "px": 2443.0, "py": 1863.6}, {"loc_id": 73, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 10, "x": -2615.5, "z": -950.2, "px": 1601.6, "py": 1885.8}, {"loc_id": 103, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 10, "x": -5489.1, "z": 1993.6, "px": 1111.2, "py": 2388.2}, {"loc_id": 106, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 10, "x": -2182.9, "z": 4304.1, "px": 1675.5, "py": 2782.6}, {"loc_id": 109, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 10, "x": -1078.2, "z": -3658.3, "px": 1864.0, "py": 1423.7}, {"loc_id": 124, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 10, "x": 3454.8, "z": -4349.8, "px": 2637.6, "py": 1305.6}, {"loc_id": 128, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 10, "x": -963.5, "z": -3775.8, "px": 1883.6, "py": 1403.6}, {"loc_id": 128, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 10, "x": -963.5, "z": -3775.8, "px": 1883.6, "py": 1403.6}, {"loc_id": 142, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 10, "x": -5046.4, "z": 1265.2, "px": 1186.7, "py": 2263.9}, {"loc_id": 144, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 10, "x": 1488.4, "z": 1973.9, "px": 2302.0, "py": 2384.9}, {"loc_id": 151, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 10, "x": -3642.6, "z": -4094.0, "px": 1426.3, "py": 1349.3}, {"loc_id": 162, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 10, "x": 3787.7, "z": 697.4, "px": 2694.4, "py": 2167.0}, {"loc_id": 164, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 10, "x": -144.7, "z": 2735.8, "px": 2023.3, "py": 2514.9}, {"loc_id": 166, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 10, "x": -2244.3, "z": 4276.9, "px": 1665.0, "py": 2777.9}, {"loc_id": 184, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 10, "x": -819.9, "z": -3633.2, "px": 1908.1, "py": 1427.9}, {"loc_id": 656, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 10, "x": 3008.0, "z": 6848.0, "px": 2561.4, "py": 3216.7}, {"loc_id": 657, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": -8320.0, "z": 320.0, "px": 628.1, "py": 2102.6}, {"loc_id": 658, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 10, "x": -1856.0, "z": -6976.0, "px": 1731.2, "py": 857.4}, {"loc_id": 659, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 10, "x": 3840.0, "z": -5952.0, "px": 2703.4, "py": 1032.2}, {"loc_id": 670, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": -4736.0, "z": -3968.0, "px": 1239.7, "py": 1370.8}, {"loc_id": 671, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": -6400.0, "z": -3968.0, "px": 955.7, "py": 1370.8}, {"loc_id": 672, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 10, "x": 3776.0, "z": 5952.0, "px": 2692.4, "py": 3063.8}, {"loc_id": 672, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 10, "x": 3776.0, "z": 5952.0, "px": 2692.4, "py": 3063.8}, {"loc_id": 672, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": 3776.0, "z": 5952.0, "px": 2692.4, "py": 3063.8}, {"loc_id": 676, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 10, "x": -7552.0, "z": -2624.0, "px": 759.1, "py": 1600.2}, {"loc_id": 676, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 10, "x": -7552.0, "z": -2624.0, "px": 759.1, "py": 1600.2}, {"loc_id": 677, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 10, "x": -8000.0, "z": -4288.0, "px": 682.7, "py": 1316.2}, {"loc_id": 677, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 10, "x": -8000.0, "z": -4288.0, "px": 682.7, "py": 1316.2}, {"loc_id": 678, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": -8960.0, "z": 768.0, "px": 518.8, "py": 2179.1}, {"loc_id": 679, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 10, "x": 4096.0, "z": -5888.0, "px": 2747.1, "py": 1043.1}, {"loc_id": 683, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 10, "x": 9088.0, "z": 1472.0, "px": 3599.0, "py": 2299.2}, {"loc_id": 684, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 10, "x": -8640.0, "z": 1536.0, "px": 573.4, "py": 2310.1}, {"loc_id": 685, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 10, "x": -3072.0, "z": -7104.0, "px": 1523.7, "py": 835.6}, {"loc_id": 689, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 10, "x": 7040.0, "z": -3712.0, "px": 3249.5, "py": 1414.5}, {"loc_id": 700, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 10, "x": 8448.0, "z": 896.0, "px": 3489.8, "py": 2200.9}, {"loc_id": 703, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": -384.0, "z": -6656.0, "px": 1982.5, "py": 912.0}, {"loc_id": 704, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 10, "x": 1280.0, "z": -6592.0, "px": 2266.5, "py": 923.0}, {"loc_id": 704, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 10, "x": 1280.0, "z": -6592.0, "px": 2266.5, "py": 923.0}, {"loc_id": 708, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 10, "x": 8512.0, "z": 1152.0, "px": 3500.7, "py": 2244.6}, {"loc_id": 708, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 10, "x": 8512.0, "z": 1152.0, "px": 3500.7, "py": 2244.6}, {"loc_id": 709, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 10, "x": -6080.0, "z": -1984.0, "px": 1010.3, "py": 1709.4}, {"loc_id": 711, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 10, "x": -5184.0, "z": 6208.0, "px": 1163.3, "py": 3107.5}, {"loc_id": 716, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": -6336.0, "z": 3328.0, "px": 966.7, "py": 2616.0}, {"loc_id": 722, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 10, "x": -4480.0, "z": -4352.0, "px": 1283.4, "py": 1305.3}, {"loc_id": 722, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": -4480.0, "z": -4352.0, "px": 1283.4, "py": 1305.3}, {"loc_id": 725, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 10, "x": 2816.0, "z": 5696.0, "px": 2528.6, "py": 3020.1}, {"loc_id": 727, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": 6144.0, "z": -4672.0, "px": 3096.6, "py": 1250.6}, {"loc_id": 730, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 10, "x": 8192.0, "z": -832.0, "px": 3446.1, "py": 1906.0}, {"loc_id": 734, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 10, "x": 2752.0, "z": 5952.0, "px": 2517.7, "py": 3063.8}, {"loc_id": 744, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": 1408.0, "z": 7488.0, "px": 2288.3, "py": 3326.0}, {"loc_id": 747, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": -7296.0, "z": 1152.0, "px": 802.8, "py": 2244.6}, {"loc_id": 755, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 10, "x": -9216.0, "z": -640.0, "px": 475.1, "py": 1938.8}, {"loc_id": 759, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": 3968.0, "z": -5312.0, "px": 2725.2, "py": 1141.4}, {"loc_id": 762, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": 4032.0, "z": -6464.0, "px": 2736.1, "py": 944.8}, {"loc_id": 764, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": -7168.0, "z": -1280.0, "px": 824.7, "py": 1829.5}, {"loc_id": 764, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 10, "x": -7168.0, "z": -1280.0, "px": 824.7, "py": 1829.5}, {"loc_id": 767, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": 1152.0, "z": 7616.0, "px": 2244.6, "py": 3347.8}, {"loc_id": 767, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 10, "x": 1152.0, "z": 7616.0, "px": 2244.6, "py": 3347.8}, {"loc_id": 769, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": -6272.0, "z": 3008.0, "px": 977.6, "py": 2561.4}, {"loc_id": 769, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 10, "x": -6272.0, "z": 3008.0, "px": 977.6, "py": 2561.4}, {"loc_id": 773, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 10, "x": -4416.0, "z": -6784.0, "px": 1294.3, "py": 890.2}, {"loc_id": 780, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 10, "x": -5312.0, "z": -4480.0, "px": 1141.4, "py": 1283.4}, {"loc_id": 782, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 10, "x": -6144.0, "z": 3968.0, "px": 999.4, "py": 2725.2}, {"loc_id": 797, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 10, "x": 7424.0, "z": 256.0, "px": 3315.0, "py": 2091.7}, {"loc_id": 802, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 10, "x": -4800.0, "z": 4160.0, "px": 1228.8, "py": 2758.0}, {"loc_id": 805, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": 8640.0, "z": -576.0, "px": 3522.6, "py": 1949.7}, {"loc_id": 808, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": 4928.0, "z": -5696.0, "px": 2889.0, "py": 1075.9}, {"loc_id": 813, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 10, "x": -8192.0, "z": -3520.0, "px": 649.9, "py": 1447.3}, {"loc_id": 826, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 10, "x": 7040.0, "z": 3840.0, "px": 3249.5, "py": 2703.4}, {"loc_id": 827, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 10, "x": 6336.0, "z": -1280.0, "px": 3129.3, "py": 1829.5}, {"loc_id": 833, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 10, "x": 6208.0, "z": 5056.0, "px": 3107.5, "py": 2910.9}, {"loc_id": 840, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 10, "x": -1664.0, "z": 7104.0, "px": 1764.0, "py": 3260.4}, {"loc_id": 842, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 10, "x": -4480.0, "z": -5376.0, "px": 1283.4, "py": 1130.5}, {"loc_id": 844, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 10, "x": 2560.0, "z": -5568.0, "px": 2484.9, "py": 1097.7}, {"loc_id": 846, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 10, "x": -1152.0, "z": -7488.0, "px": 1851.4, "py": 770.0}, {"loc_id": 847, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 10, "x": 1280.0, "z": 6016.0, "px": 2266.5, "py": 3074.7}, {"loc_id": 849, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 10, "x": 4544.0, "z": -6656.0, "px": 2823.5, "py": 912.0}, {"loc_id": 851, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 10, "x": 8000.0, "z": -4480.0, "px": 3413.3, "py": 1283.4}, {"loc_id": 852, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 10, "x": 8512.0, "z": -2688.0, "px": 3500.7, "py": 1589.2}, {"loc_id": 853, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": -7104.0, "z": 2880.0, "px": 835.6, "py": 2539.5}, {"loc_id": 858, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": -8384.0, "z": -3072.0, "px": 617.1, "py": 1523.7}, {"loc_id": 860, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 10, "x": 9664.0, "z": 768.0, "px": 3697.3, "py": 2179.1}, {"loc_id": 861, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": 6656.0, "z": -5504.0, "px": 3184.0, "py": 1108.7}, {"loc_id": 864, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 10, "x": 6592.0, "z": -192.0, "px": 3173.0, "py": 2015.2}, {"loc_id": 866, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 10, "x": 8384.0, "z": -1728.0, "px": 3478.9, "py": 1753.1}, {"loc_id": 868, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 10, "x": -7040.0, "z": 1344.0, "px": 846.5, "py": 2277.4}, {"loc_id": 870, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 10, "x": 5696.0, "z": 3520.0, "px": 3020.1, "py": 2648.7}, {"loc_id": 871, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 10, "x": -6016.0, "z": 2880.0, "px": 1021.3, "py": 2539.5}, {"loc_id": 872, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 10, "x": -9152.0, "z": -2240.0, "px": 486.1, "py": 1665.7}, {"loc_id": 873, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 10, "x": 4480.0, "z": 5952.0, "px": 2812.6, "py": 3063.8}, {"loc_id": 875, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": 1280.0, "z": -6336.0, "px": 2266.5, "py": 966.7}, {"loc_id": 878, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 10, "x": 1344.0, "z": -7296.0, "px": 2277.4, "py": 802.8}, {"loc_id": 890, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 10, "x": -6528.0, "z": -3008.0, "px": 933.9, "py": 1534.6}, {"loc_id": 891, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 10, "x": 9280.0, "z": 1728.0, "px": 3631.8, "py": 2342.9}, {"loc_id": 891, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 10, "x": 9280.0, "z": 1728.0, "px": 3631.8, "py": 2342.9}, {"loc_id": 901, "loc_name": "Hildir_cave", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 10, "x": 4736.0, "z": -5504.0, "px": 2856.3, "py": 1108.7}, {"loc_id": 903, "loc_name": "Hildir_cave", "item": "Pickable: Entrails", "count": 10, "x": 6016.0, "z": 4608.0, "px": 3074.7, "py": 2834.4}, {"loc_id": 915, "loc_name": "Hildir_crypt", "item": "SpawnOnce: Skeleton_Hildir", "count": 10, "x": 2312.6, "z": -4479.1, "px": 2442.7, "py": 1283.6}, {"loc_id": 919, "loc_name": "Hildir_plainsfortress", "item": "SpawnOnce: Goblin", "count": 10, "x": -3264.0, "z": 1344.0, "px": 1490.9, "py": 2277.4}, {"loc_id": 1987, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": -3193.8, "z": 4469.9, "px": 1502.9, "py": 2810.9}, {"loc_id": 1990, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 10, "x": -9021.5, "z": 3142.1, "px": 508.3, "py": 2584.3}, {"loc_id": 1994, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 10, "x": -5368.1, "z": -1919.7, "px": 1131.8, "py": 1720.4}, {"loc_id": 1994, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": -5368.1, "z": -1919.7, "px": 1131.8, "py": 1720.4}, {"loc_id": 1999, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": -6850.3, "z": 5430.7, "px": 878.9, "py": 2974.8}, {"loc_id": 2002, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 10, "x": 3705.4, "z": 3650.9, "px": 2680.4, "py": 2671.1}, {"loc_id": 2003, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 10, "x": 709.3, "z": 4485.9, "px": 2169.1, "py": 2813.6}, {"loc_id": 2004, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 10, "x": 5893.1, "z": -707.2, "px": 3053.8, "py": 1927.3}, {"loc_id": 2005, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": -6785.2, "z": 514.4, "px": 890.0, "py": 2135.8}, {"loc_id": 2007, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": 2754.1, "z": 5051.3, "px": 2518.0, "py": 2910.1}, {"loc_id": 2011, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": 5431.7, "z": -900.4, "px": 2975.0, "py": 1894.3}, {"loc_id": 2015, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 10, "x": 4422.3, "z": 6725.0, "px": 2802.7, "py": 3195.7}, {"loc_id": 2019, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 10, "x": 1852.0, "z": 7225.8, "px": 2364.1, "py": 3281.2}, {"loc_id": 2023, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": -4614.5, "z": 5449.2, "px": 1260.5, "py": 2978.0}, {"loc_id": 2025, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": 5246.9, "z": 4990.5, "px": 2943.5, "py": 2899.7}, {"loc_id": 2026, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 10, "x": 1224.6, "z": -5429.1, "px": 2257.0, "py": 1121.4}, {"loc_id": 2028, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": 9860.3, "z": -1604.7, "px": 3730.8, "py": 1774.1}, {"loc_id": 2036, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": -1159.1, "z": -1664.8, "px": 1850.2, "py": 1763.9}, {"loc_id": 2037, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": 894.0, "z": 320.1, "px": 2200.6, "py": 2102.6}, {"loc_id": 2042, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": 3908.4, "z": 3896.3, "px": 2715.0, "py": 2713.0}, {"loc_id": 2047, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 10, "x": 2934.8, "z": -2054.4, "px": 2548.9, "py": 1697.4}, {"loc_id": 2047, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": 2934.8, "z": -2054.4, "px": 2548.9, "py": 1697.4}, {"loc_id": 2053, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": 5060.9, "z": -2298.6, "px": 2911.7, "py": 1655.7}, {"loc_id": 2055, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": 769.5, "z": 192.1, "px": 2179.3, "py": 2080.8}, {"loc_id": 2060, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 10, "x": 4682.5, "z": -5049.9, "px": 2847.1, "py": 1186.2}, {"loc_id": 2068, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 10, "x": 7799.0, "z": -261.2, "px": 3379.0, "py": 2003.4}, {"loc_id": 2078, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": 8757.2, "z": -1472.7, "px": 3542.6, "py": 1796.7}, {"loc_id": 2081, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 10, "x": -9975.8, "z": -134.2, "px": 345.5, "py": 2025.1}, {"loc_id": 2083, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": -4296.8, "z": -6398.2, "px": 1314.7, "py": 956.0}, {"loc_id": 2084, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": -4355.4, "z": 1795.5, "px": 1304.7, "py": 2354.4}, {"loc_id": 2089, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": 2170.4, "z": -707.7, "px": 2418.4, "py": 1927.2}, {"loc_id": 2096, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": -4747.0, "z": 5697.4, "px": 1237.8, "py": 3020.4}, {"loc_id": 2100, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 10, "x": 4230.3, "z": -191.4, "px": 2770.0, "py": 2015.3}, {"loc_id": 2104, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": 835.6, "z": 4856.2, "px": 2190.6, "py": 2876.8}, {"loc_id": 2111, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": -4411.1, "z": 1666.0, "px": 1295.2, "py": 2332.3}, {"loc_id": 2115, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": -5826.5, "z": -329.0, "px": 1053.6, "py": 1991.9}, {"loc_id": 2129, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": -2120.9, "z": 694.0, "px": 1686.0, "py": 2166.4}, {"loc_id": 2130, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": -1981.4, "z": -5691.3, "px": 1709.8, "py": 1076.7}, {"loc_id": 2134, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 10, "x": -5754.4, "z": 4490.5, "px": 1065.9, "py": 2814.4}, {"loc_id": 2136, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": 2248.8, "z": -1352.8, "px": 2431.8, "py": 1817.1}, {"loc_id": 2145, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 10, "x": 2491.2, "z": 5062.0, "px": 2473.2, "py": 2911.9}, {"loc_id": 2147, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 10, "x": 442.3, "z": 5504.3, "px": 2123.5, "py": 2987.4}, {"loc_id": 2149, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 10, "x": 2239.1, "z": 5115.9, "px": 2430.1, "py": 2921.1}, {"loc_id": 2150, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": -9718.2, "z": 648.1, "px": 389.4, "py": 2158.6}, {"loc_id": 2150, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": -9718.2, "z": 648.1, "px": 389.4, "py": 2158.6}, {"loc_id": 2151, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": 7352.5, "z": -3254.6, "px": 3302.8, "py": 1492.5}, {"loc_id": 2158, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 10, "x": 8393.8, "z": 2741.1, "px": 3480.5, "py": 2515.8}, {"loc_id": 2160, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": -5622.7, "z": 4937.3, "px": 1088.4, "py": 2890.6}, {"loc_id": 2164, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": 644.1, "z": -245.8, "px": 2157.9, "py": 2006.1}, {"loc_id": 2168, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": -7164.3, "z": -4734.5, "px": 825.3, "py": 1240.0}, {"loc_id": 2178, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": 4361.3, "z": -5052.7, "px": 2792.3, "py": 1185.7}, {"loc_id": 2180, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 10, "x": -6520.2, "z": -4795.6, "px": 935.2, "py": 1229.6}, {"loc_id": 3045, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 10, "x": 4928.6, "z": 1279.0, "px": 2889.1, "py": 2266.3}, {"loc_id": 3047, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 10, "x": -1985.3, "z": 3584.1, "px": 1709.2, "py": 2659.7}, {"loc_id": 3061, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 10, "x": -4223.5, "z": 3007.5, "px": 1327.2, "py": 2561.3}, {"loc_id": 3066, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 10, "x": 5310.5, "z": 3584.0, "px": 2954.3, "py": 2659.7}, {"loc_id": 3073, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 10, "x": -3968.4, "z": 1150.8, "px": 1370.7, "py": 2244.4}, {"loc_id": 3098, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 10, "x": 3136.5, "z": 2750.3, "px": 2583.3, "py": 2517.4}, {"loc_id": 3112, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 10, "x": 3009.4, "z": -1473.1, "px": 2561.6, "py": 1796.6}, {"loc_id": 3113, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 10, "x": 1984.9, "z": 5057.2, "px": 2386.8, "py": 2911.1}, {"loc_id": 3122, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 10, "x": 959.4, "z": 4609.2, "px": 2211.7, "py": 2834.6}, {"loc_id": 3122, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 10, "x": 959.4, "z": 4609.2, "px": 2211.7, "py": 2834.6}, {"loc_id": 3123, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 10, "x": -4801.2, "z": 2239.1, "px": 1228.6, "py": 2430.1}, {"loc_id": 3164, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 10, "x": 2370.0, "z": -5121.3, "px": 2452.5, "py": 1174.0}, {"loc_id": 3191, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 10, "x": 6016.2, "z": 1601.9, "px": 3074.8, "py": 2321.4}, {"loc_id": 3197, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 10, "x": 3198.6, "z": 4350.7, "px": 2593.9, "py": 2790.5}, {"loc_id": 3198, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 10, "x": -3904.8, "z": 3006.7, "px": 1381.6, "py": 2561.1}, {"loc_id": 3210, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 10, "x": -3584.7, "z": 7105.2, "px": 1436.2, "py": 3260.6}, {"loc_id": 3212, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 10, "x": -896.0, "z": -4032.1, "px": 1895.1, "py": 1359.9}, {"loc_id": 3228, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 10, "x": 3969.0, "z": 895.5, "px": 2725.4, "py": 2200.8}, {"loc_id": 3231, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 10, "x": 4735.4, "z": -2944.6, "px": 2856.2, "py": 1545.5}, {"loc_id": 3288, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 10, "x": -2036.5, "z": -3262.1, "px": 1700.4, "py": 1491.3}, {"loc_id": 3311, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 10, "x": 3473.3, "z": 1613.6, "px": 2640.8, "py": 2323.4}, {"loc_id": 3665, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr", "count": 10, "x": 4288.0, "z": -1216.0, "px": 2779.8, "py": 1840.5}, {"loc_id": 3673, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr", "count": 10, "x": 3264.0, "z": 2496.0, "px": 2605.1, "py": 2474.0}, {"loc_id": 3706, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 10, "x": -5254.2, "z": 378.8, "px": 1151.3, "py": 2112.6}, {"loc_id": 3712, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 10, "x": -3719.4, "z": 4217.5, "px": 1413.2, "py": 2767.8}, {"loc_id": 3741, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 10, "x": -5753.1, "z": -1594.3, "px": 1066.1, "py": 1775.9}, {"loc_id": 3747, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 10, "x": 2493.6, "z": -4479.4, "px": 2473.6, "py": 1283.5}, {"loc_id": 3808, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 10, "x": -9411.7, "z": -133.3, "px": 441.7, "py": 2025.3}, {"loc_id": 3824, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 10, "x": -5177.3, "z": 708.7, "px": 1164.4, "py": 2169.0}, {"loc_id": 3825, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 10, "x": -9337.1, "z": -2692.8, "px": 454.5, "py": 1588.4}, {"loc_id": 3857, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 10, "x": 6782.9, "z": 4614.1, "px": 3205.6, "py": 2835.5}, {"loc_id": 4118, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 10, "x": -9206.7, "z": 3189.3, "px": 476.7, "py": 2592.3}, {"loc_id": 4130, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 10, "x": 4938.7, "z": -2114.9, "px": 2890.9, "py": 1687.1}, {"loc_id": 4134, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": 3018.6, "z": -4425.6, "px": 2563.2, "py": 1292.7}, {"loc_id": 4135, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 10, "x": 2434.5, "z": 5052.4, "px": 2463.5, "py": 2910.3}, {"loc_id": 4138, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": -3385.4, "z": 4539.1, "px": 1470.2, "py": 2822.7}, {"loc_id": 4139, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 10, "x": -4995.9, "z": 5704.5, "px": 1195.4, "py": 3021.6}, {"loc_id": 4144, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 10, "x": 7544.4, "z": -2691.5, "px": 3335.6, "py": 1588.7}, {"loc_id": 4159, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 10, "x": -2231.0, "z": 4486.8, "px": 1667.2, "py": 2813.7}, {"loc_id": 4163, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 10, "x": -1787.8, "z": -4426.4, "px": 1742.9, "py": 1292.6}, {"loc_id": 4163, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": -1787.8, "z": -4426.4, "px": 1742.9, "py": 1292.6}, {"loc_id": 4164, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 10, "x": -7426.8, "z": -4985.2, "px": 780.5, "py": 1197.2}, {"loc_id": 4165, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 10, "x": -3838.5, "z": -380.1, "px": 1392.9, "py": 1983.1}, {"loc_id": 4168, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 10, "x": 8825.5, "z": -3830.4, "px": 3554.2, "py": 1394.3}, {"loc_id": 4174, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 10, "x": 1161.6, "z": 5507.9, "px": 2246.2, "py": 2988.0}, {"loc_id": 4187, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": 2357.9, "z": -1343.9, "px": 2450.4, "py": 1818.6}, {"loc_id": 4191, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 10, "x": 3893.5, "z": 4862.5, "px": 2712.5, "py": 2877.9}, {"loc_id": 4195, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": 3199.5, "z": -2569.3, "px": 2594.0, "py": 1609.5}, {"loc_id": 4199, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 10, "x": 2884.2, "z": -2239.6, "px": 2540.2, "py": 1665.8}, {"loc_id": 4204, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": 3832.5, "z": 3901.3, "px": 2702.1, "py": 2713.8}, {"loc_id": 4207, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 10, "x": 9654.2, "z": 1404.6, "px": 3695.7, "py": 2287.7}, {"loc_id": 4218, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 10, "x": -2378.8, "z": 4597.9, "px": 1642.0, "py": 2832.7}, {"loc_id": 4223, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 10, "x": 1789.2, "z": 6727.5, "px": 2353.4, "py": 3196.2}, {"loc_id": 4225, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 10, "x": -3832.3, "z": -2556.2, "px": 1394.0, "py": 1611.7}, {"loc_id": 4226, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": 8135.3, "z": -2488.2, "px": 3436.4, "py": 1623.3}, {"loc_id": 4234, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": 2241.6, "z": 5178.2, "px": 2430.6, "py": 2931.7}, {"loc_id": 4237, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 10, "x": 8254.8, "z": -1992.0, "px": 3456.8, "py": 1708.0}, {"loc_id": 4240, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 10, "x": -326.5, "z": -4228.1, "px": 1992.3, "py": 1326.4}, {"loc_id": 4244, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 10, "x": -5828.6, "z": 4542.6, "px": 1053.3, "py": 2823.3}, {"loc_id": 4248, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 10, "x": -5761.9, "z": 1610.3, "px": 1064.6, "py": 2322.8}, {"loc_id": 4250, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 10, "x": -4867.6, "z": 5757.0, "px": 1217.3, "py": 3030.5}, {"loc_id": 4251, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 10, "x": -5947.0, "z": 1400.3, "px": 1033.0, "py": 2287.0}, {"loc_id": 4258, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 10, "x": -1079.5, "z": -5820.3, "px": 1863.8, "py": 1054.7}, {"loc_id": 4265, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 10, "x": 2375.4, "z": -1605.8, "px": 2453.4, "py": 1773.9}, {"loc_id": 4271, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 10, "x": -6662.5, "z": 5429.6, "px": 910.9, "py": 2974.7}, {"loc_id": 4275, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 10, "x": -4100.0, "z": -2235.3, "px": 1348.3, "py": 1666.5}, {"loc_id": 4276, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": -1415.9, "z": -2056.9, "px": 1806.4, "py": 1697.0}, {"loc_id": 4280, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 10, "x": -2302.1, "z": -3017.9, "px": 1655.1, "py": 1532.9}, {"loc_id": 4282, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": -6016.3, "z": 4606.7, "px": 1021.2, "py": 2834.2}, {"loc_id": 4284, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 10, "x": 3833.1, "z": 894.9, "px": 2702.2, "py": 2200.7}, {"loc_id": 4300, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 10, "x": 7413.3, "z": -4476.7, "px": 3313.2, "py": 1284.0}, {"loc_id": 4301, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 10, "x": 2058.1, "z": -834.7, "px": 2399.2, "py": 1905.5}, {"loc_id": 4305, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": -6663.1, "z": 3777.2, "px": 910.8, "py": 2692.6}, {"loc_id": 4315, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 10, "x": 7231.3, "z": 1270.3, "px": 3282.1, "py": 2264.8}, {"loc_id": 4316, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 10, "x": 7689.0, "z": -3067.6, "px": 3360.3, "py": 1524.5}, {"loc_id": 4320, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 10, "x": 1529.8, "z": -6332.0, "px": 2309.1, "py": 967.3}, {"loc_id": 4325, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 10, "x": -8960.4, "z": 3145.3, "px": 518.8, "py": 2584.8}, {"loc_id": 4329, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 10, "x": 7222.2, "z": -4105.2, "px": 3280.6, "py": 1347.4}, {"loc_id": 4331, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 10, "x": -7416.6, "z": 4353.4, "px": 782.2, "py": 2791.0}, {"loc_id": 4343, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 10, "x": 3840.5, "z": 1278.9, "px": 2703.4, "py": 2266.3}, {"loc_id": 4343, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 10, "x": 3840.5, "z": 1278.9, "px": 2703.4, "py": 2266.3}, {"loc_id": 4346, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 10, "x": 5045.5, "z": 2760.5, "px": 2909.1, "py": 2519.1}, {"loc_id": 4360, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 10, "x": -3975.9, "z": -574.4, "px": 1369.4, "py": 1950.0}, {"loc_id": 4362, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 10, "x": 3191.6, "z": -2309.6, "px": 2592.7, "py": 1653.8}, {"loc_id": 4363, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": 8010.6, "z": 188.7, "px": 3415.1, "py": 2080.2}, {"loc_id": 4370, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": 3528.1, "z": 3652.7, "px": 2650.1, "py": 2671.4}, {"loc_id": 4377, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 10, "x": 4170.2, "z": -1086.8, "px": 2759.7, "py": 1862.5}, {"loc_id": 4380, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 10, "x": 5123.8, "z": 5194.0, "px": 2922.5, "py": 2934.4}, {"loc_id": 4393, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 10, "x": -7365.5, "z": -1859.4, "px": 791.0, "py": 1730.7}, {"loc_id": 4407, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 10, "x": 9546.9, "z": 63.9, "px": 3677.3, "py": 2058.9}, {"loc_id": 4414, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 10, "x": -1983.0, "z": -831.7, "px": 1709.6, "py": 1906.1}, {"loc_id": 4416, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 10, "x": -3705.2, "z": 7113.6, "px": 1415.6, "py": 3262.1}, {"loc_id": 4429, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 10, "x": 5067.0, "z": 377.9, "px": 2912.8, "py": 2112.5}, {"loc_id": 4439, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 10, "x": 5825.4, "z": -4736.0, "px": 3042.2, "py": 1239.7}, {"loc_id": 4449, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 10, "x": -9086.4, "z": 3208.4, "px": 497.3, "py": 2595.6}, {"loc_id": 4452, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 10, "x": -5703.6, "z": 4931.1, "px": 1074.6, "py": 2889.6}, {"loc_id": 4457, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": -4149.9, "z": -198.9, "px": 1339.8, "py": 2014.1}, {"loc_id": 4457, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 10, "x": -4149.9, "z": -198.9, "px": 1339.8, "py": 2014.1}, {"loc_id": 4458, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 10, "x": -8120.2, "z": 2564.7, "px": 662.2, "py": 2485.7}, {"loc_id": 4458, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": -8120.2, "z": 2564.7, "px": 662.2, "py": 2485.7}, {"loc_id": 4464, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 10, "x": 3768.6, "z": -386.4, "px": 2691.2, "py": 1982.1}, {"loc_id": 4464, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": 3768.6, "z": -386.4, "px": 2691.2, "py": 1982.1}, {"loc_id": 4467, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 10, "x": 3511.5, "z": 3513.7, "px": 2647.3, "py": 2647.7}, {"loc_id": 4472, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": 378.2, "z": 5310.1, "px": 2112.5, "py": 2954.3}, {"loc_id": 4484, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 10, "x": 9404.2, "z": 56.3, "px": 3653.0, "py": 2057.6}, {"loc_id": 4485, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 10, "x": 3648.4, "z": 197.1, "px": 2670.7, "py": 2081.6}, {"loc_id": 4487, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 10, "x": 1917.8, "z": 7177.5, "px": 2375.3, "py": 3273.0}, {"loc_id": 4489, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 10, "x": 8070.1, "z": 59.3, "px": 3425.3, "py": 2058.1}, {"loc_id": 4490, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 10, "x": -5060.1, "z": 761.5, "px": 1184.4, "py": 2178.0}, {"loc_id": 4499, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 10, "x": 450.4, "z": 440.0, "px": 2124.9, "py": 2123.1}, {"loc_id": 4503, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 10, "x": 8635.6, "z": -1917.6, "px": 3521.8, "py": 1720.7}, {"loc_id": 7451, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 10, "x": 8384.0, "z": -3904.0, "px": 3478.9, "py": 1381.7}, {"loc_id": 7453, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 10, "x": -3584.0, "z": 6464.0, "px": 1436.3, "py": 3151.2}, {"loc_id": 7454, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 10, "x": 1216.0, "z": 6848.0, "px": 2255.5, "py": 3216.7}, {"loc_id": 7456, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 10, "x": -128.0, "z": -1344.0, "px": 2026.2, "py": 1818.6}, {"loc_id": 7467, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 10, "x": 2688.0, "z": -2688.0, "px": 2506.8, "py": 1589.2}, {"loc_id": 7479, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 10, "x": 2688.0, "z": 640.0, "px": 2506.8, "py": 2157.2}, {"loc_id": 7480, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 10, "x": -3776.0, "z": 1408.0, "px": 1403.6, "py": 2288.3}, {"loc_id": 7484, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 10, "x": 2240.0, "z": -2688.0, "px": 2430.3, "py": 1589.2}, {"loc_id": 7485, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 10, "x": -2048.0, "z": -192.0, "px": 1698.5, "py": 2015.2}, {"loc_id": 7489, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 10, "x": 7040.0, "z": -512.0, "px": 3249.5, "py": 1960.6}, {"loc_id": 7494, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 10, "x": 9664.0, "z": -1216.0, "px": 3697.3, "py": 1840.5}, {"loc_id": 7495, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 10, "x": 3328.0, "z": 9280.0, "px": 2616.0, "py": 3631.8}, {"loc_id": 7502, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 10, "x": 4800.0, "z": -5568.0, "px": 2867.2, "py": 1097.7}, {"loc_id": 7505, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 10, "x": 5952.0, "z": 4672.0, "px": 3063.8, "py": 2845.4}, {"loc_id": 7508, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 10, "x": 3520.0, "z": 9216.0, "px": 2648.7, "py": 3620.9}, {"loc_id": 7511, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 10, "x": -6592.0, "z": -2240.0, "px": 923.0, "py": 1665.7}, {"loc_id": 7513, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 10, "x": 3072.0, "z": -1920.0, "px": 2572.3, "py": 1720.3}, {"loc_id": 7513, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 10, "x": 3072.0, "z": -1920.0, "px": 2572.3, "py": 1720.3}, {"loc_id": 7514, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 10, "x": -3584.0, "z": 6080.0, "px": 1436.3, "py": 3085.7}, {"loc_id": 7515, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 10, "x": 1216.0, "z": 4864.0, "px": 2255.5, "py": 2878.1}, {"loc_id": 7517, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 10, "x": 7488.0, "z": 3968.0, "px": 3326.0, "py": 2725.2}, {"loc_id": 7525, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 10, "x": -4160.0, "z": -4032.0, "px": 1338.0, "py": 1359.9}, {"loc_id": 7526, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 10, "x": 2560.0, "z": 8960.0, "px": 2484.9, "py": 3577.2}, {"loc_id": 7526, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 10, "x": 2560.0, "z": 8960.0, "px": 2484.9, "py": 3577.2}, {"loc_id": 7531, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 10, "x": 6016.0, "z": 4480.0, "px": 3074.7, "py": 2812.6}, {"loc_id": 7532, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 10, "x": -9984.0, "z": -512.0, "px": 344.1, "py": 1960.6}, {"loc_id": 7534, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 10, "x": 896.0, "z": -2432.0, "px": 2200.9, "py": 1632.9}, {"loc_id": 7535, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 10, "x": -9792.0, "z": -704.0, "px": 376.8, "py": 1927.9}, {"loc_id": 7546, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 10, "x": -4480.0, "z": -64.0, "px": 1283.4, "py": 2037.1}, {"loc_id": 7548, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 10, "x": -960.0, "z": 8704.0, "px": 1884.2, "py": 3533.5}, {"loc_id": 7551, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 10, "x": -1920.0, "z": -576.0, "px": 1720.3, "py": 1949.7}, {"loc_id": 7555, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 10, "x": -6272.0, "z": -448.0, "px": 977.6, "py": 1971.5}, {"loc_id": 7557, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 10, "x": 3264.0, "z": 256.0, "px": 2605.1, "py": 2091.7}, {"loc_id": 7562, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 10, "x": 5632.0, "z": 2304.0, "px": 3009.2, "py": 2441.2}, {"loc_id": 7563, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 10, "x": -3584.0, "z": 1472.0, "px": 1436.3, "py": 2299.2}, {"loc_id": 7567, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 10, "x": 2048.0, "z": -1600.0, "px": 2397.5, "py": 1774.9}, {"loc_id": 7568, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 10, "x": 1536.0, "z": 6592.0, "px": 2310.1, "py": 3173.0}, {"loc_id": 7573, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 10, "x": 2304.0, "z": -2880.0, "px": 2441.2, "py": 1556.5}, {"loc_id": 7574, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 10, "x": 5760.0, "z": 4800.0, "px": 3031.0, "py": 2867.2}, {"loc_id": 9944, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 10, "x": -1152.0, "z": -9472.0, "px": 1851.4, "py": 431.4}, {"loc_id": 9950, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 10, "x": -320.0, "z": -9920.0, "px": 1993.4, "py": 355.0}, {"loc_id": 9953, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 10, "x": -768.0, "z": -8896.0, "px": 1916.9, "py": 529.7}, {"loc_id": 9964, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 10, "x": 1536.0, "z": -9408.0, "px": 2310.1, "py": 442.4}, {"loc_id": 9968, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 10, "x": -256.0, "z": -9920.0, "px": 2004.3, "py": 355.0}, {"loc_id": 9974, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 10, "x": 320.0, "z": -9024.0, "px": 2102.6, "py": 507.9}, {"loc_id": 9976, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 10, "x": 256.0, "z": -8832.0, "px": 2091.7, "py": 540.7}, {"loc_id": 9989, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 10, "x": -448.0, "z": -9856.0, "px": 1971.5, "py": 365.9}, {"loc_id": 9991, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 10, "x": -640.0, "z": -9472.0, "px": 1938.8, "py": 431.4}, {"loc_id": 9997, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 10, "x": 1152.0, "z": -8896.0, "px": 2244.6, "py": 529.7}, {"loc_id": 10005, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 10, "x": 384.0, "z": -8704.0, "px": 2113.5, "py": 562.5}, {"loc_id": 10006, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 10, "x": 384.0, "z": -9024.0, "px": 2113.5, "py": 507.9}, {"loc_id": 10008, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 10, "x": -832.0, "z": -9344.0, "px": 1906.0, "py": 453.3}, {"loc_id": 10010, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 10, "x": -640.0, "z": -9728.0, "px": 1938.8, "py": 387.8}, {"loc_id": 10015, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 10, "x": 640.0, "z": -8960.0, "px": 2157.2, "py": 518.8}, {"loc_id": 10281, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 10, "x": -3903.8, "z": -9087.4, "px": 1381.8, "py": 497.1}, {"loc_id": 10282, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 10, "x": 1214.7, "z": -9217.2, "px": 2255.3, "py": 474.9}, {"loc_id": 10293, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 10, "x": -766.7, "z": -9790.9, "px": 1917.1, "py": 377.0}, {"loc_id": 10307, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 10, "x": 192.5, "z": -9152.3, "px": 2080.9, "py": 486.0}, {"loc_id": 10310, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 10, "x": 384.0, "z": -9151.3, "px": 2113.5, "py": 486.2}, {"loc_id": 10326, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 10, "x": 2750.6, "z": -9280.9, "px": 2517.4, "py": 464.1}, {"loc_id": 10330, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 10, "x": -2175.2, "z": -8511.7, "px": 1676.8, "py": 595.3}, {"loc_id": 10334, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 10, "x": -1984.0, "z": -8958.7, "px": 1709.4, "py": 519.0}, {"loc_id": 10338, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 10, "x": -769.1, "z": -9151.9, "px": 1916.7, "py": 486.1}, {"loc_id": 10347, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 10, "x": 511.5, "z": -8830.6, "px": 2135.3, "py": 540.9}, {"loc_id": 10349, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 10, "x": -64.1, "z": -8834.0, "px": 2037.1, "py": 540.3}, {"loc_id": 10351, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 10, "x": -1089.8, "z": -9151.3, "px": 1862.0, "py": 486.2}, {"loc_id": 10703, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 10, "x": -1801.1, "z": -9020.0, "px": 1740.6, "py": 508.6}, {"loc_id": 10817, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 10, "x": -5248.0, "z": -7552.0, "px": 1152.3, "py": 759.1}, {"loc_id": 10821, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 10, "x": -5056.0, "z": -8128.0, "px": 1185.1, "py": 660.8}, {"loc_id": 10825, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 10, "x": -2304.0, "z": -8320.0, "px": 1654.8, "py": 628.1}, {"loc_id": 10831, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 10, "x": -5248.0, "z": -8064.0, "px": 1152.3, "py": 671.7}, {"loc_id": 10836, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 10, "x": -1344.0, "z": -9280.0, "px": 1818.6, "py": 464.2}, {"loc_id": 10840, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 10, "x": 3392.0, "z": -8128.0, "px": 2626.9, "py": 660.8}, {"loc_id": 10841, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 10, "x": 3456.0, "z": -8128.0, "px": 2637.8, "py": 660.8}, {"loc_id": 10858, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 10, "x": -5440.0, "z": -7616.0, "px": 1119.6, "py": 748.2}, {"loc_id": 10865, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 10, "x": -64.0, "z": -8896.0, "px": 2037.1, "py": 529.7}, {"loc_id": 10868, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 10, "x": -5120.0, "z": -7744.0, "px": 1174.2, "py": 726.4}, {"loc_id": 10868, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 10, "x": -5120.0, "z": -7744.0, "px": 1174.2, "py": 726.4}, {"loc_id": 10870, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 10, "x": -1152.0, "z": -9664.0, "px": 1851.4, "py": 398.7}, {"loc_id": 10889, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 10, "x": 2112.0, "z": -9600.0, "px": 2408.4, "py": 409.6}, {"loc_id": 10890, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 10, "x": 3392.0, "z": -8576.0, "px": 2626.9, "py": 584.4}, {"loc_id": 10900, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 10, "x": -5120.0, "z": -8064.0, "px": 1174.2, "py": 671.7}, {"loc_id": 10902, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 10, "x": -4672.0, "z": -8384.0, "px": 1250.6, "py": 617.1}, {"loc_id": 10908, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 10, "x": 4032.0, "z": -8768.0, "px": 2736.1, "py": 551.6}, {"loc_id": 27, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 9, "x": -3648.3, "z": -4161.2, "px": 1425.4, "py": 1337.8}, {"loc_id": 30, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 9, "x": -525.6, "z": -3575.0, "px": 1958.3, "py": 1437.9}, {"loc_id": 33, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 9, "x": 1739.5, "z": 4407.1, "px": 2344.9, "py": 2800.1}, {"loc_id": 37, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 9, "x": -384.0, "z": 2571.6, "px": 1982.5, "py": 2486.9}, {"loc_id": 40, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 9, "x": 464.9, "z": 2558.6, "px": 2127.3, "py": 2484.7}, {"loc_id": 48, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 9, "x": -5066.2, "z": 1345.8, "px": 1183.4, "py": 2277.7}, {"loc_id": 59, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 9, "x": -3448.5, "z": 3407.3, "px": 1459.5, "py": 2629.5}, {"loc_id": 62, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 9, "x": -2356.3, "z": -1007.5, "px": 1645.9, "py": 1876.1}, {"loc_id": 71, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 9, "x": 1918.6, "z": 1526.0, "px": 2375.4, "py": 2308.4}, {"loc_id": 72, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 9, "x": 4479.3, "z": -2945.6, "px": 2812.5, "py": 1545.3}, {"loc_id": 76, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 9, "x": -2491.8, "z": -4097.4, "px": 1622.7, "py": 1348.7}, {"loc_id": 77, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 9, "x": 2296.4, "z": -3207.7, "px": 2439.9, "py": 1500.6}, {"loc_id": 86, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 9, "x": -3576.1, "z": 180.7, "px": 1437.7, "py": 2078.8}, {"loc_id": 90, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 9, "x": -582.8, "z": -3968.2, "px": 1948.5, "py": 1370.8}, {"loc_id": 93, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 9, "x": -5688.0, "z": -1080.8, "px": 1077.2, "py": 1863.5}, {"loc_id": 99, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 9, "x": -1920.0, "z": 4600.7, "px": 1720.3, "py": 2833.2}, {"loc_id": 102, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 9, "x": -5252.9, "z": -769.4, "px": 1151.5, "py": 1916.7}, {"loc_id": 106, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 9, "x": -2182.9, "z": 4304.1, "px": 1675.5, "py": 2782.6}, {"loc_id": 116, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 9, "x": 2291.5, "z": 250.0, "px": 2439.1, "py": 2090.7}, {"loc_id": 123, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 9, "x": 2317.7, "z": 334.7, "px": 2443.6, "py": 2105.1}, {"loc_id": 128, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 9, "x": -963.5, "z": -3775.8, "px": 1883.6, "py": 1403.6}, {"loc_id": 134, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 9, "x": -3640.2, "z": 3214.4, "px": 1426.7, "py": 2596.6}, {"loc_id": 148, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 9, "x": 586.4, "z": 2679.5, "px": 2148.1, "py": 2505.3}, {"loc_id": 168, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 9, "x": -889.7, "z": -3644.9, "px": 1896.2, "py": 1425.9}, {"loc_id": 174, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 9, "x": 563.7, "z": 2571.8, "px": 2144.2, "py": 2486.9}, {"loc_id": 182, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 9, "x": -2513.9, "z": -4161.4, "px": 1619.0, "py": 1337.8}, {"loc_id": 191, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 9, "x": -701.9, "z": -3592.2, "px": 1928.2, "py": 1434.9}, {"loc_id": 656, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": 3008.0, "z": 6848.0, "px": 2561.4, "py": 3216.7}, {"loc_id": 665, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 9, "x": -8640.0, "z": 128.0, "px": 573.4, "py": 2069.8}, {"loc_id": 665, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 9, "x": -8640.0, "z": 128.0, "px": 573.4, "py": 2069.8}, {"loc_id": 666, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 9, "x": 3072.0, "z": 6336.0, "px": 2572.3, "py": 3129.3}, {"loc_id": 678, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 9, "x": -8960.0, "z": 768.0, "px": 518.8, "py": 2179.1}, {"loc_id": 679, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 9, "x": 4096.0, "z": -5888.0, "px": 2747.1, "py": 1043.1}, {"loc_id": 681, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": -8576.0, "z": 2112.0, "px": 584.4, "py": 2408.4}, {"loc_id": 689, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 9, "x": 7040.0, "z": -3712.0, "px": 3249.5, "py": 1414.5}, {"loc_id": 690, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 9, "x": -5440.0, "z": 5760.0, "px": 1119.6, "py": 3031.0}, {"loc_id": 691, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 9, "x": 8960.0, "z": -1024.0, "px": 3577.2, "py": 1873.2}, {"loc_id": 692, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 9, "x": -2816.0, "z": 6272.0, "px": 1567.4, "py": 3118.4}, {"loc_id": 694, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 9, "x": 4864.0, "z": -4992.0, "px": 2878.1, "py": 1196.0}, {"loc_id": 707, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 9, "x": 1024.0, "z": -7360.0, "px": 2222.8, "py": 791.9}, {"loc_id": 708, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 9, "x": 8512.0, "z": 1152.0, "px": 3500.7, "py": 2244.6}, {"loc_id": 709, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": -6080.0, "z": -1984.0, "px": 1010.3, "py": 1709.4}, {"loc_id": 709, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 9, "x": -6080.0, "z": -1984.0, "px": 1010.3, "py": 1709.4}, {"loc_id": 711, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 9, "x": -5184.0, "z": 6208.0, "px": 1163.3, "py": 3107.5}, {"loc_id": 713, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 9, "x": 4224.0, "z": 5824.0, "px": 2768.9, "py": 3042.0}, {"loc_id": 715, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 9, "x": 8064.0, "z": 2752.0, "px": 3424.3, "py": 2517.7}, {"loc_id": 718, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 9, "x": -6336.0, "z": 704.0, "px": 966.7, "py": 2168.1}, {"loc_id": 721, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 9, "x": -2560.0, "z": -5760.0, "px": 1611.1, "py": 1065.0}, {"loc_id": 723, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": 8768.0, "z": -2944.0, "px": 3544.4, "py": 1545.6}, {"loc_id": 732, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 9, "x": 6464.0, "z": 2880.0, "px": 3151.2, "py": 2539.5}, {"loc_id": 733, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 9, "x": 8256.0, "z": 2432.0, "px": 3457.0, "py": 2463.1}, {"loc_id": 736, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": 9088.0, "z": -3008.0, "px": 3599.0, "py": 1534.6}, {"loc_id": 740, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 9, "x": -5760.0, "z": -1984.0, "px": 1065.0, "py": 1709.4}, {"loc_id": 741, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 9, "x": 6400.0, "z": 4352.0, "px": 3140.3, "py": 2790.7}, {"loc_id": 741, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 9, "x": 6400.0, "z": 4352.0, "px": 3140.3, "py": 2790.7}, {"loc_id": 745, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 9, "x": -5824.0, "z": 3264.0, "px": 1054.0, "py": 2605.1}, {"loc_id": 750, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 9, "x": 3072.0, "z": 7168.0, "px": 2572.3, "py": 3271.3}, {"loc_id": 753, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": -1408.0, "z": -6016.0, "px": 1807.7, "py": 1021.3}, {"loc_id": 753, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 9, "x": -1408.0, "z": -6016.0, "px": 1807.7, "py": 1021.3}, {"loc_id": 755, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 9, "x": -9216.0, "z": -640.0, "px": 475.1, "py": 1938.8}, {"loc_id": 756, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": 8000.0, "z": 2112.0, "px": 3413.3, "py": 2408.4}, {"loc_id": 757, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 9, "x": 8768.0, "z": 896.0, "px": 3544.4, "py": 2200.9}, {"loc_id": 763, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 9, "x": 3904.0, "z": -7040.0, "px": 2714.3, "py": 846.5}, {"loc_id": 766, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 9, "x": 5760.0, "z": 6080.0, "px": 3031.0, "py": 3085.7}, {"loc_id": 770, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 9, "x": 7552.0, "z": -4480.0, "px": 3336.9, "py": 1283.4}, {"loc_id": 773, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": -4416.0, "z": -6784.0, "px": 1294.3, "py": 890.2}, {"loc_id": 775, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": 5632.0, "z": 2432.0, "px": 3009.2, "py": 2463.1}, {"loc_id": 780, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 9, "x": -5312.0, "z": -4480.0, "px": 1141.4, "py": 1283.4}, {"loc_id": 786, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 9, "x": -9472.0, "z": -960.0, "px": 431.4, "py": 1884.2}, {"loc_id": 793, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 9, "x": 4224.0, "z": 6336.0, "px": 2768.9, "py": 3129.3}, {"loc_id": 797, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": 7424.0, "z": 256.0, "px": 3315.0, "py": 2091.7}, {"loc_id": 800, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": 2368.0, "z": -6592.0, "px": 2452.1, "py": 923.0}, {"loc_id": 801, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 9, "x": -5760.0, "z": -5504.0, "px": 1065.0, "py": 1108.7}, {"loc_id": 802, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 9, "x": -4800.0, "z": 4160.0, "px": 1228.8, "py": 2758.0}, {"loc_id": 804, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 9, "x": 128.0, "z": 6848.0, "px": 2069.8, "py": 3216.7}, {"loc_id": 807, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": -2944.0, "z": -6528.0, "px": 1545.6, "py": 933.9}, {"loc_id": 809, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": 4416.0, "z": 5568.0, "px": 2801.7, "py": 2998.3}, {"loc_id": 821, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 9, "x": 384.0, "z": 7552.0, "px": 2113.5, "py": 3336.9}, {"loc_id": 823, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 9, "x": -6720.0, "z": -3328.0, "px": 901.1, "py": 1480.0}, {"loc_id": 827, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 9, "x": 6336.0, "z": -1280.0, "px": 3129.3, "py": 1829.5}, {"loc_id": 829, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 9, "x": -4992.0, "z": -3648.0, "px": 1196.0, "py": 1425.4}, {"loc_id": 829, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": -4992.0, "z": -3648.0, "px": 1196.0, "py": 1425.4}, {"loc_id": 831, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 9, "x": 8640.0, "z": -3328.0, "px": 3522.6, "py": 1480.0}, {"loc_id": 833, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 9, "x": 6208.0, "z": 5056.0, "px": 3107.5, "py": 2910.9}, {"loc_id": 833, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 9, "x": 6208.0, "z": 5056.0, "px": 3107.5, "py": 2910.9}, {"loc_id": 835, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 9, "x": -8192.0, "z": 2304.0, "px": 649.9, "py": 2441.2}, {"loc_id": 839, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": -8960.0, "z": 1472.0, "px": 518.8, "py": 2299.2}, {"loc_id": 843, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": 9664.0, "z": -768.0, "px": 3697.3, "py": 1916.9}, {"loc_id": 844, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 9, "x": 2560.0, "z": -5568.0, "px": 2484.9, "py": 1097.7}, {"loc_id": 845, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 9, "x": 4672.0, "z": -6080.0, "px": 2845.4, "py": 1010.3}, {"loc_id": 850, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 9, "x": -8576.0, "z": -2816.0, "px": 584.4, "py": 1567.4}, {"loc_id": 851, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 9, "x": 8000.0, "z": -4480.0, "px": 3413.3, "py": 1283.4}, {"loc_id": 851, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 9, "x": 8000.0, "z": -4480.0, "px": 3413.3, "py": 1283.4}, {"loc_id": 857, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": 2368.0, "z": 7296.0, "px": 2452.1, "py": 3293.2}, {"loc_id": 860, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 9, "x": 9664.0, "z": 768.0, "px": 3697.3, "py": 2179.1}, {"loc_id": 863, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 9, "x": -1664.0, "z": -6080.0, "px": 1764.0, "py": 1010.3}, {"loc_id": 865, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 9, "x": -6400.0, "z": -2112.0, "px": 955.7, "py": 1687.6}, {"loc_id": 866, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 9, "x": 8384.0, "z": -1728.0, "px": 3478.9, "py": 1753.1}, {"loc_id": 871, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 9, "x": -6016.0, "z": 2880.0, "px": 1021.3, "py": 2539.5}, {"loc_id": 872, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": -9152.0, "z": -2240.0, "px": 486.1, "py": 1665.7}, {"loc_id": 873, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 9, "x": 4480.0, "z": 5952.0, "px": 2812.6, "py": 3063.8}, {"loc_id": 874, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 9, "x": 1856.0, "z": -6592.0, "px": 2364.8, "py": 923.0}, {"loc_id": 875, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 9, "x": 1280.0, "z": -6336.0, "px": 2266.5, "py": 966.7}, {"loc_id": 885, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 9, "x": -5184.0, "z": -3840.0, "px": 1163.3, "py": 1392.6}, {"loc_id": 888, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": 5056.0, "z": -3840.0, "px": 2910.9, "py": 1392.6}, {"loc_id": 889, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": 7360.0, "z": 4544.0, "px": 3304.1, "py": 2823.5}, {"loc_id": 894, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": 5952.0, "z": 2432.0, "px": 3063.8, "py": 2463.1}, {"loc_id": 894, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 9, "x": 5952.0, "z": 2432.0, "px": 3063.8, "py": 2463.1}, {"loc_id": 895, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 9, "x": -7424.0, "z": 4544.0, "px": 781.0, "py": 2823.5}, {"loc_id": 915, "loc_name": "Hildir_crypt", "item": "SpawnOnce: Skeleton", "count": 9, "x": 2312.6, "z": -4479.1, "px": 2442.7, "py": 1283.6}, {"loc_id": 1986, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -1784.6, "z": -4355.4, "px": 1743.4, "py": 1304.7}, {"loc_id": 1992, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 9, "x": -8265.4, "z": 2494.6, "px": 637.4, "py": 2473.7}, {"loc_id": 1992, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 9, "x": -8265.4, "z": 2494.6, "px": 637.4, "py": 2473.7}, {"loc_id": 1992, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 9, "x": -8265.4, "z": 2494.6, "px": 637.4, "py": 2473.7}, {"loc_id": 1996, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 9, "x": 8580.9, "z": -1732.6, "px": 3512.5, "py": 1752.3}, {"loc_id": 2000, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 9, "x": 8261.5, "z": -2503.6, "px": 3458.0, "py": 1620.7}, {"loc_id": 2000, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": 8261.5, "z": -2503.6, "px": 3458.0, "py": 1620.7}, {"loc_id": 2009, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -2304.6, "z": -3082.4, "px": 1654.7, "py": 1521.9}, {"loc_id": 2010, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -1345.3, "z": -5450.9, "px": 1818.4, "py": 1117.7}, {"loc_id": 2018, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 9, "x": 2366.9, "z": -3455.3, "px": 2452.0, "py": 1458.3}, {"loc_id": 2021, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 9, "x": 1212.3, "z": -5636.2, "px": 2254.9, "py": 1086.1}, {"loc_id": 2024, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 9, "x": 2300.8, "z": 3847.4, "px": 2440.7, "py": 2704.6}, {"loc_id": 2025, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 9, "x": 5246.9, "z": 4990.5, "px": 2943.5, "py": 2899.7}, {"loc_id": 2036, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 9, "x": -1159.1, "z": -1664.8, "px": 1850.2, "py": 1763.9}, {"loc_id": 2039, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 9, "x": -5571.0, "z": -6197.3, "px": 1097.2, "py": 990.3}, {"loc_id": 2046, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 9, "x": 4928.8, "z": -2241.7, "px": 2889.2, "py": 1665.4}, {"loc_id": 2056, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -8000.9, "z": 393.2, "px": 682.5, "py": 2115.1}, {"loc_id": 2057, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 9, "x": -9792.4, "z": -119.9, "px": 376.8, "py": 2027.5}, {"loc_id": 2061, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 9, "x": -2431.5, "z": 4169.7, "px": 1633.0, "py": 2759.6}, {"loc_id": 2071, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": 1793.0, "z": -4478.1, "px": 2354.0, "py": 1283.7}, {"loc_id": 2077, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 9, "x": 2107.7, "z": 1143.7, "px": 2407.7, "py": 2243.2}, {"loc_id": 2079, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 9, "x": -5431.8, "z": -6277.2, "px": 1121.0, "py": 976.7}, {"loc_id": 2088, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 9, "x": -2487.2, "z": -6143.3, "px": 1623.5, "py": 999.5}, {"loc_id": 2093, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 9, "x": 455.5, "z": 5046.0, "px": 2125.7, "py": 2909.2}, {"loc_id": 2099, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -7287.1, "z": 2560.3, "px": 804.3, "py": 2485.0}, {"loc_id": 2103, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 9, "x": 3965.6, "z": -382.1, "px": 2724.8, "py": 1982.8}, {"loc_id": 2107, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -9664.7, "z": -321.6, "px": 398.6, "py": 1993.1}, {"loc_id": 2107, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 9, "x": -9664.7, "z": -321.6, "px": 398.6, "py": 1993.1}, {"loc_id": 2114, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 9, "x": 8841.5, "z": 123.6, "px": 3556.9, "py": 2069.1}, {"loc_id": 2118, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 9, "x": 4092.3, "z": 3912.8, "px": 2746.4, "py": 2715.8}, {"loc_id": 2118, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 9, "x": 4092.3, "z": 3912.8, "px": 2746.4, "py": 2715.8}, {"loc_id": 2119, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": 5123.6, "z": 5438.1, "px": 2922.4, "py": 2976.1}, {"loc_id": 2123, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 9, "x": -6721.1, "z": 3657.4, "px": 900.9, "py": 2672.2}, {"loc_id": 2128, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 9, "x": 5510.8, "z": 456.2, "px": 2988.5, "py": 2125.9}, {"loc_id": 2129, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 9, "x": -2120.9, "z": 694.0, "px": 1686.0, "py": 2166.4}, {"loc_id": 2134, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -5754.4, "z": 4490.5, "px": 1065.9, "py": 2814.4}, {"loc_id": 2137, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 9, "x": 6136.3, "z": -5898.6, "px": 3095.3, "py": 1041.3}, {"loc_id": 2138, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -1608.3, "z": 4729.8, "px": 1773.5, "py": 2855.2}, {"loc_id": 2139, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 9, "x": -5886.6, "z": 4606.1, "px": 1043.4, "py": 2834.1}, {"loc_id": 2141, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 9, "x": -1283.3, "z": -1154.5, "px": 1829.0, "py": 1851.0}, {"loc_id": 2143, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 9, "x": 2561.5, "z": 450.1, "px": 2485.2, "py": 2124.8}, {"loc_id": 2146, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 9, "x": 3189.9, "z": -2681.3, "px": 2592.4, "py": 1590.4}, {"loc_id": 2148, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": 7106.3, "z": 1216.9, "px": 3260.8, "py": 2255.7}, {"loc_id": 2156, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 9, "x": -4855.4, "z": -3010.4, "px": 1219.3, "py": 1534.2}, {"loc_id": 2159, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 9, "x": -3267.2, "z": 4220.0, "px": 1490.4, "py": 2768.2}, {"loc_id": 2163, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 9, "x": -8955.2, "z": 3272.0, "px": 519.6, "py": 2606.4}, {"loc_id": 2166, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 9, "x": -5567.0, "z": 4730.5, "px": 1097.9, "py": 2855.3}, {"loc_id": 2166, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -5567.0, "z": 4730.5, "px": 1097.9, "py": 2855.3}, {"loc_id": 2167, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 9, "x": 2951.2, "z": -4922.7, "px": 2551.7, "py": 1207.9}, {"loc_id": 2169, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 9, "x": -7622.1, "z": 4287.6, "px": 747.2, "py": 2779.8}, {"loc_id": 3092, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 9, "x": -4289.7, "z": -6142.8, "px": 1315.9, "py": 999.6}, {"loc_id": 3105, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 9, "x": -2880.0, "z": 5761.0, "px": 1556.5, "py": 3031.2}, {"loc_id": 3117, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 9, "x": 320.4, "z": 4033.3, "px": 2102.7, "py": 2736.3}, {"loc_id": 3129, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 9, "x": 2816.9, "z": -3392.4, "px": 2528.8, "py": 1469.0}, {"loc_id": 3135, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 9, "x": 5634.0, "z": -2047.5, "px": 3009.5, "py": 1698.6}, {"loc_id": 3155, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 9, "x": -62.3, "z": -5185.2, "px": 2037.4, "py": 1163.1}, {"loc_id": 3166, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 9, "x": -2368.6, "z": 4031.0, "px": 1643.8, "py": 2736.0}, {"loc_id": 3188, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 9, "x": -5502.5, "z": 5377.2, "px": 1108.9, "py": 2965.7}, {"loc_id": 3220, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 9, "x": -2750.4, "z": -3711.7, "px": 1578.6, "py": 1414.5}, {"loc_id": 3326, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 9, "x": -4047.9, "z": -2936.7, "px": 1357.2, "py": 1546.8}, {"loc_id": 3667, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr", "count": 9, "x": -2176.0, "z": -1792.0, "px": 1676.6, "py": 1742.2}, {"loc_id": 3669, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr", "count": 9, "x": -4800.0, "z": 640.0, "px": 1228.8, "py": 2157.2}, {"loc_id": 3671, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Ranged", "count": 9, "x": 2560.0, "z": -3200.0, "px": 2484.9, "py": 1501.9}, {"loc_id": 3672, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Ranged", "count": 9, "x": 3072.0, "z": -2688.0, "px": 2572.3, "py": 1589.2}, {"loc_id": 3687, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 9, "x": 60.5, "z": -1029.2, "px": 2058.3, "py": 1872.3}, {"loc_id": 3694, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 9, "x": -572.7, "z": 582.5, "px": 1950.3, "py": 2147.4}, {"loc_id": 3702, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 9, "x": 8057.5, "z": -2623.5, "px": 3423.1, "py": 1600.3}, {"loc_id": 3725, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -1732.3, "z": -4410.7, "px": 1752.4, "py": 1295.2}, {"loc_id": 3743, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 9, "x": 2500.4, "z": -1413.7, "px": 2474.7, "py": 1806.7}, {"loc_id": 3823, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 9, "x": -6791.2, "z": 3718.5, "px": 889.0, "py": 2682.6}, {"loc_id": 4110, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -3637.8, "z": 4362.6, "px": 1427.1, "py": 2792.6}, {"loc_id": 4110, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 9, "x": -3637.8, "z": 4362.6, "px": 1427.1, "py": 2792.6}, {"loc_id": 4111, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 9, "x": 5448.4, "z": -1157.3, "px": 2977.9, "py": 1850.5}, {"loc_id": 4112, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": 513.6, "z": 5365.1, "px": 2135.7, "py": 2963.6}, {"loc_id": 4115, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -5001.8, "z": 777.7, "px": 1194.4, "py": 2180.7}, {"loc_id": 4116, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -1589.1, "z": -1726.7, "px": 1776.8, "py": 1753.3}, {"loc_id": 4126, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 9, "x": 8251.4, "z": -388.6, "px": 3456.2, "py": 1981.7}, {"loc_id": 4134, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 9, "x": 3018.6, "z": -4425.6, "px": 2563.2, "py": 1292.7}, {"loc_id": 4141, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 9, "x": -8380.7, "z": -710.6, "px": 617.7, "py": 1926.7}, {"loc_id": 4145, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 9, "x": 761.7, "z": 262.0, "px": 2178.0, "py": 2092.7}, {"loc_id": 4149, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 9, "x": 3274.6, "z": -2807.2, "px": 2606.9, "py": 1568.9}, {"loc_id": 4153, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 9, "x": -6601.9, "z": 571.6, "px": 921.3, "py": 2145.6}, {"loc_id": 4159, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -2231.0, "z": 4486.8, "px": 1667.2, "py": 2813.7}, {"loc_id": 4160, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 9, "x": -8074.3, "z": 376.3, "px": 670.0, "py": 2112.2}, {"loc_id": 4165, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -3838.5, "z": -380.1, "px": 1392.9, "py": 1983.1}, {"loc_id": 4166, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": 5699.1, "z": 1534.6, "px": 3020.6, "py": 2309.9}, {"loc_id": 4170, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 9, "x": 1734.2, "z": 7416.2, "px": 2344.0, "py": 3313.7}, {"loc_id": 4172, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -8070.8, "z": 517.7, "px": 670.6, "py": 2136.4}, {"loc_id": 4173, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": 4153.2, "z": 3769.4, "px": 2756.8, "py": 2691.3}, {"loc_id": 4173, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 9, "x": 4153.2, "z": 3769.4, "px": 2756.8, "py": 2691.3}, {"loc_id": 4185, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -5579.0, "z": -4997.9, "px": 1095.9, "py": 1195.0}, {"loc_id": 4189, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 9, "x": 2811.4, "z": -4794.0, "px": 2527.8, "py": 1229.8}, {"loc_id": 4190, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 9, "x": 2058.7, "z": 1015.3, "px": 2399.4, "py": 2221.3}, {"loc_id": 4195, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 9, "x": 3199.5, "z": -2569.3, "px": 2594.0, "py": 1609.5}, {"loc_id": 4201, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 9, "x": 1916.7, "z": 7036.3, "px": 2375.1, "py": 3248.9}, {"loc_id": 4206, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 9, "x": 7049.9, "z": -4285.7, "px": 3251.2, "py": 1316.6}, {"loc_id": 4211, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 9, "x": 1342.8, "z": -5442.2, "px": 2277.2, "py": 1119.2}, {"loc_id": 4215, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 9, "x": -3967.1, "z": -2613.4, "px": 1370.9, "py": 1602.0}, {"loc_id": 4227, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": 1924.7, "z": -830.3, "px": 2376.5, "py": 1906.3}, {"loc_id": 4233, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 9, "x": -9029.0, "z": 3203.1, "px": 507.1, "py": 2594.7}, {"loc_id": 4240, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -326.5, "z": -4228.1, "px": 1992.3, "py": 1326.4}, {"loc_id": 4242, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 9, "x": -2167.4, "z": 702.4, "px": 1678.1, "py": 2167.9}, {"loc_id": 4247, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 9, "x": 2744.6, "z": 5254.7, "px": 2516.4, "py": 2944.8}, {"loc_id": 4253, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -7557.9, "z": -1993.0, "px": 758.1, "py": 1707.9}, {"loc_id": 4254, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 9, "x": 2185.2, "z": 1205.6, "px": 2420.9, "py": 2253.8}, {"loc_id": 4254, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": 2185.2, "z": 1205.6, "px": 2420.9, "py": 2253.8}, {"loc_id": 4263, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 9, "x": -5571.4, "z": 5003.0, "px": 1097.1, "py": 2901.8}, {"loc_id": 4264, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": 8056.3, "z": -2882.2, "px": 3422.9, "py": 1556.1}, {"loc_id": 4274, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 9, "x": -9671.9, "z": -2564.5, "px": 397.3, "py": 1610.3}, {"loc_id": 4284, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": 3833.1, "z": 894.9, "px": 2702.2, "py": 2200.7}, {"loc_id": 4287, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 9, "x": -4214.3, "z": -2304.7, "px": 1328.8, "py": 1654.7}, {"loc_id": 4289, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 9, "x": 7161.4, "z": -4478.0, "px": 3270.2, "py": 1283.8}, {"loc_id": 4290, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -8455.7, "z": -1866.4, "px": 604.9, "py": 1729.5}, {"loc_id": 4294, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 9, "x": -7735.8, "z": -2246.0, "px": 727.8, "py": 1664.7}, {"loc_id": 4299, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 9, "x": 2947.0, "z": 3833.6, "px": 2551.0, "py": 2702.3}, {"loc_id": 4302, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 9, "x": -3838.8, "z": -251.4, "px": 1392.8, "py": 2005.1}, {"loc_id": 4308, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 9, "x": 5503.2, "z": -2502.2, "px": 2987.2, "py": 1621.0}, {"loc_id": 4323, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 9, "x": -5815.7, "z": 4610.4, "px": 1055.5, "py": 2834.8}, {"loc_id": 4324, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 9, "x": 3912.6, "z": -507.5, "px": 2715.8, "py": 1961.4}, {"loc_id": 4324, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 9, "x": 3912.6, "z": -507.5, "px": 2715.8, "py": 1961.4}, {"loc_id": 4330, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 9, "x": -7228.8, "z": -1924.0, "px": 814.3, "py": 1719.6}, {"loc_id": 4331, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 9, "x": -7416.6, "z": 4353.4, "px": 782.2, "py": 2791.0}, {"loc_id": 4332, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 9, "x": -9217.9, "z": -2808.8, "px": 474.8, "py": 1568.6}, {"loc_id": 4343, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 9, "x": 3840.5, "z": 1278.9, "px": 2703.4, "py": 2266.3}, {"loc_id": 4346, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 9, "x": 5045.5, "z": 2760.5, "px": 2909.1, "py": 2519.1}, {"loc_id": 4350, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 9, "x": -5947.4, "z": 1598.8, "px": 1033.0, "py": 2320.9}, {"loc_id": 4354, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 9, "x": -253.6, "z": -4213.8, "px": 2004.7, "py": 1328.8}, {"loc_id": 4357, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 9, "x": 7558.7, "z": -2818.9, "px": 3338.0, "py": 1566.9}, {"loc_id": 4360, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 9, "x": -3975.9, "z": -574.4, "px": 1369.4, "py": 1950.0}, {"loc_id": 4361, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -6843.9, "z": 501.8, "px": 880.0, "py": 2133.6}, {"loc_id": 4372, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 9, "x": 5112.1, "z": 3129.1, "px": 2920.5, "py": 2582.0}, {"loc_id": 4377, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": 4170.2, "z": -1086.8, "px": 2759.7, "py": 1862.5}, {"loc_id": 4379, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": 2684.9, "z": -3701.4, "px": 2506.2, "py": 1416.3}, {"loc_id": 4381, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 9, "x": -8694.4, "z": -828.0, "px": 564.2, "py": 1906.7}, {"loc_id": 4387, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 9, "x": 5190.4, "z": 5056.9, "px": 2933.8, "py": 2911.0}, {"loc_id": 4392, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 9, "x": 2299.3, "z": 5187.5, "px": 2440.4, "py": 2933.3}, {"loc_id": 4395, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 9, "x": 506.6, "z": 5049.8, "px": 2134.5, "py": 2909.8}, {"loc_id": 4402, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 9, "x": 1781.0, "z": 7356.1, "px": 2352.0, "py": 3303.4}, {"loc_id": 4409, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 9, "x": -4025.2, "z": -322.6, "px": 1361.0, "py": 1992.9}, {"loc_id": 4411, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 9, "x": 8574.1, "z": -3708.9, "px": 3511.3, "py": 1415.0}, {"loc_id": 4414, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -1983.0, "z": -831.7, "px": 1709.6, "py": 1906.1}, {"loc_id": 4415, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 9, "x": -5956.5, "z": -70.0, "px": 1031.4, "py": 2036.1}, {"loc_id": 4417, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 9, "x": 7298.0, "z": -4547.5, "px": 3293.5, "py": 1271.9}, {"loc_id": 4426, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 9, "x": 8777.6, "z": -1335.1, "px": 3546.0, "py": 1820.1}, {"loc_id": 4432, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 9, "x": -890.1, "z": -5825.4, "px": 1896.1, "py": 1053.8}, {"loc_id": 4438, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 9, "x": -7037.2, "z": 246.7, "px": 847.0, "py": 2090.1}, {"loc_id": 4442, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": 2816.5, "z": -136.0, "px": 2528.7, "py": 2024.8}, {"loc_id": 4447, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 9, "x": 6773.8, "z": 4795.9, "px": 3204.1, "py": 2866.5}, {"loc_id": 4447, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 9, "x": 6773.8, "z": 4795.9, "px": 3204.1, "py": 2866.5}, {"loc_id": 4456, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 9, "x": 7751.7, "z": -2687.8, "px": 3371.0, "py": 1589.3}, {"loc_id": 4459, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": 584.4, "z": 4475.8, "px": 2147.7, "py": 2811.9}, {"loc_id": 4462, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 9, "x": 2112.5, "z": -4356.6, "px": 2408.5, "py": 1304.5}, {"loc_id": 4462, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": 2112.5, "z": -4356.6, "px": 2408.5, "py": 1304.5}, {"loc_id": 4467, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": 3511.5, "z": 3513.7, "px": 2647.3, "py": 2647.7}, {"loc_id": 4478, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 9, "x": -2374.0, "z": -6154.7, "px": 1642.8, "py": 997.6}, {"loc_id": 4492, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 9, "x": 831.2, "z": 5252.1, "px": 2189.9, "py": 2944.4}, {"loc_id": 4495, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 9, "x": -8956.0, "z": 2882.7, "px": 519.5, "py": 2540.0}, {"loc_id": 4497, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 9, "x": 4920.5, "z": 198.6, "px": 2887.8, "py": 2081.9}, {"loc_id": 4501, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 9, "x": 1659.5, "z": -898.7, "px": 2331.2, "py": 1894.6}, {"loc_id": 4503, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 9, "x": 8635.6, "z": -1917.6, "px": 3521.8, "py": 1720.7}, {"loc_id": 4505, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 9, "x": -9609.6, "z": 699.3, "px": 408.0, "py": 2167.3}, {"loc_id": 5524, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 9, "x": 1093.2, "z": -2564.6, "px": 2234.6, "py": 1610.3}, {"loc_id": 7320, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 9, "x": -3778.0, "z": 3464.5, "px": 1403.2, "py": 2639.3}, {"loc_id": 7354, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -1391.3, "z": -4357.0, "px": 1810.6, "py": 1304.4}, {"loc_id": 7355, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -2677.4, "z": -2992.6, "px": 1591.1, "py": 1537.3}, {"loc_id": 7356, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 3216.0, "z": -528.9, "px": 2596.9, "py": 1957.7}, {"loc_id": 7357, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -5257.4, "z": -2824.1, "px": 1150.7, "py": 1566.0}, {"loc_id": 7358, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 887.8, "z": 3768.1, "px": 2199.5, "py": 2691.1}, {"loc_id": 7359, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 2375.7, "z": 4678.5, "px": 2453.5, "py": 2846.5}, {"loc_id": 7360, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -3706.3, "z": 2121.4, "px": 1415.5, "py": 2410.1}, {"loc_id": 7361, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -4806.9, "z": 2320.9, "px": 1227.6, "py": 2444.1}, {"loc_id": 7362, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -3518.8, "z": -1673.1, "px": 1447.5, "py": 1762.5}, {"loc_id": 7363, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 1073.7, "z": -3958.8, "px": 2231.2, "py": 1372.4}, {"loc_id": 7364, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -558.7, "z": -6205.6, "px": 1952.6, "py": 988.9}, {"loc_id": 7365, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 3141.2, "z": 4303.9, "px": 2584.1, "py": 2782.5}, {"loc_id": 7366, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 4911.8, "z": -1229.2, "px": 2886.3, "py": 1838.2}, {"loc_id": 7367, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 1223.0, "z": 3406.2, "px": 2256.7, "py": 2629.3}, {"loc_id": 7368, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 3759.5, "z": -1228.6, "px": 2689.6, "py": 1838.3}, {"loc_id": 7369, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -5825.9, "z": 1873.8, "px": 1053.7, "py": 2367.8}, {"loc_id": 7370, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 197.0, "z": 5579.7, "px": 2081.6, "py": 3000.3}, {"loc_id": 7371, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -1097.6, "z": -4814.8, "px": 1860.7, "py": 1226.3}, {"loc_id": 7372, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -1521.4, "z": -4531.9, "px": 1788.3, "py": 1274.6}, {"loc_id": 7373, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -709.0, "z": 5264.5, "px": 1927.0, "py": 2946.5}, {"loc_id": 7374, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 4416.6, "z": 1654.4, "px": 2801.8, "py": 2330.4}, {"loc_id": 7375, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 3069.8, "z": -1595.8, "px": 2571.9, "py": 1775.7}, {"loc_id": 7376, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -4335.2, "z": -6027.7, "px": 1308.1, "py": 1019.3}, {"loc_id": 7377, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 4611.8, "z": -1607.2, "px": 2835.1, "py": 1773.7}, {"loc_id": 7378, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -64.5, "z": -5125.7, "px": 2037.0, "py": 1173.2}, {"loc_id": 7379, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 4659.4, "z": 1530.0, "px": 2843.2, "py": 2309.1}, {"loc_id": 7380, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 7087.4, "z": -2481.1, "px": 3257.6, "py": 1624.6}, {"loc_id": 7381, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 4974.0, "z": -2512.2, "px": 2896.9, "py": 1619.3}, {"loc_id": 7382, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 7102.2, "z": -2609.2, "px": 3260.1, "py": 1602.7}, {"loc_id": 7383, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -2868.5, "z": 5965.9, "px": 1558.4, "py": 3066.2}, {"loc_id": 7384, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 430.5, "z": 4032.8, "px": 2121.5, "py": 2736.3}, {"loc_id": 7385, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 4241.3, "z": 976.8, "px": 2771.8, "py": 2214.7}, {"loc_id": 7386, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 4788.2, "z": 3066.7, "px": 2865.2, "py": 2571.4}, {"loc_id": 7387, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 6190.8, "z": 1793.6, "px": 3104.6, "py": 2354.1}, {"loc_id": 7388, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 3600.8, "z": 1540.0, "px": 2662.5, "py": 2310.8}, {"loc_id": 7389, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 3909.0, "z": -1169.4, "px": 2715.1, "py": 1848.4}, {"loc_id": 7390, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -6191.1, "z": -1484.2, "px": 991.4, "py": 1794.7}, {"loc_id": 7391, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -1985.0, "z": 3441.9, "px": 1709.2, "py": 2635.4}, {"loc_id": 7392, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 1972.9, "z": 4491.3, "px": 2384.7, "py": 2814.5}, {"loc_id": 7393, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -5894.5, "z": -1199.6, "px": 1042.0, "py": 1843.3}, {"loc_id": 7394, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -2487.3, "z": 4038.1, "px": 1623.5, "py": 2737.2}, {"loc_id": 7395, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 4465.3, "z": -1402.9, "px": 2810.1, "py": 1808.6}, {"loc_id": 7396, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 4657.3, "z": 1336.6, "px": 2842.8, "py": 2276.1}, {"loc_id": 7397, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 4734.5, "z": 3200.3, "px": 2856.0, "py": 2594.2}, {"loc_id": 7398, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 3834.4, "z": -904.0, "px": 2702.4, "py": 1893.7}, {"loc_id": 7399, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 3633.5, "z": -1010.4, "px": 2668.1, "py": 1875.6}, {"loc_id": 7400, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -706.7, "z": 3977.8, "px": 1927.4, "py": 2726.9}, {"loc_id": 7401, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 3854.4, "z": -1030.9, "px": 2705.8, "py": 1872.1}, {"loc_id": 7402, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 5374.8, "z": -2286.7, "px": 2965.3, "py": 1657.7}, {"loc_id": 7403, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -3829.6, "z": 2247.0, "px": 1394.4, "py": 2431.5}, {"loc_id": 7404, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 5048.7, "z": -1294.9, "px": 2909.6, "py": 1827.0}, {"loc_id": 7405, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 1225.3, "z": -3985.2, "px": 2257.1, "py": 1367.9}, {"loc_id": 7406, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 1484.6, "z": -4304.3, "px": 2301.4, "py": 1313.4}, {"loc_id": 7407, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 6277.3, "z": 1598.3, "px": 3119.3, "py": 2320.8}, {"loc_id": 7408, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -4220.8, "z": 2065.5, "px": 1327.7, "py": 2400.5}, {"loc_id": 7409, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -4046.5, "z": 1155.9, "px": 1357.4, "py": 2245.3}, {"loc_id": 7410, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 4791.3, "z": -1777.8, "px": 2865.7, "py": 1744.6}, {"loc_id": 7411, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -2241.2, "z": 3967.0, "px": 1665.5, "py": 2725.0}, {"loc_id": 7412, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -2512.6, "z": -3086.2, "px": 1619.2, "py": 1521.3}, {"loc_id": 7413, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -2701.2, "z": -2812.1, "px": 1587.0, "py": 1568.1}, {"loc_id": 7414, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 6863.2, "z": 2158.6, "px": 3219.3, "py": 2416.4}, {"loc_id": 7415, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -1266.0, "z": -6712.2, "px": 1831.9, "py": 902.5}, {"loc_id": 7416, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 6768.8, "z": 3190.8, "px": 3203.2, "py": 2592.6}, {"loc_id": 7417, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -3074.0, "z": 2439.7, "px": 1523.4, "py": 2464.4}, {"loc_id": 7418, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -4480.2, "z": -324.1, "px": 1283.4, "py": 1992.7}, {"loc_id": 7419, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -3064.2, "z": 5835.4, "px": 1525.0, "py": 3043.9}, {"loc_id": 7420, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 3260.9, "z": -387.3, "px": 2604.5, "py": 1981.9}, {"loc_id": 7421, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 4527.2, "z": 1468.9, "px": 2820.6, "py": 2298.7}, {"loc_id": 7422, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 1223.8, "z": -3831.8, "px": 2256.9, "py": 1394.0}, {"loc_id": 7423, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 1979.2, "z": 4023.0, "px": 2385.8, "py": 2734.6}, {"loc_id": 7424, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 5054.4, "z": 8.0, "px": 2910.6, "py": 2049.4}, {"loc_id": 7425, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -5050.0, "z": 3698.7, "px": 1186.1, "py": 2679.2}, {"loc_id": 7426, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 6713.1, "z": 2098.7, "px": 3193.7, "py": 2406.2}, {"loc_id": 7427, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 2802.3, "z": 4875.2, "px": 2526.3, "py": 2880.0}, {"loc_id": 7428, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 4859.7, "z": -1417.8, "px": 2877.4, "py": 1806.0}, {"loc_id": 7429, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 4721.4, "z": -2095.5, "px": 2853.8, "py": 1690.4}, {"loc_id": 7430, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -1916.3, "z": 3217.8, "px": 1721.0, "py": 2597.2}, {"loc_id": 7431, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 4869.7, "z": 2896.1, "px": 2879.1, "py": 2542.3}, {"loc_id": 7432, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -4846.1, "z": 3845.6, "px": 1220.9, "py": 2704.3}, {"loc_id": 7433, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -652.9, "z": 5107.5, "px": 1936.6, "py": 2919.7}, {"loc_id": 7434, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 1854.4, "z": -3505.5, "px": 2364.5, "py": 1449.7}, {"loc_id": 7435, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -2064.7, "z": 3278.0, "px": 1695.6, "py": 2607.4}, {"loc_id": 7436, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -2038.0, "z": 2937.2, "px": 1700.2, "py": 2549.3}, {"loc_id": 7437, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -1011.7, "z": 5069.4, "px": 1875.3, "py": 2913.2}, {"loc_id": 7438, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 6925.9, "z": -2445.0, "px": 3230.0, "py": 1630.7}, {"loc_id": 7439, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 1137.3, "z": -4278.0, "px": 2242.1, "py": 1317.9}, {"loc_id": 7440, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": 5261.3, "z": -2510.4, "px": 2945.9, "py": 1619.6}, {"loc_id": 7441, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -3665.2, "z": 2293.8, "px": 1422.5, "py": 2439.5}, {"loc_id": 7442, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -3254.5, "z": 3972.1, "px": 1492.6, "py": 2725.9}, {"loc_id": 7443, "loc_name": "TarPit3", "item": "Pickable: Tar", "count": 9, "x": -1678.9, "z": -4917.2, "px": 1761.5, "py": 1208.8}, {"loc_id": 7444, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 9, "x": 5696.0, "z": 2112.0, "px": 3020.1, "py": 2408.4}, {"loc_id": 7448, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 9, "x": 2240.0, "z": 8768.0, "px": 2430.3, "py": 3544.4}, {"loc_id": 7451, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 9, "x": 8384.0, "z": -3904.0, "px": 3478.9, "py": 1381.7}, {"loc_id": 7453, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 9, "x": -3584.0, "z": 6464.0, "px": 1436.3, "py": 3151.2}, {"loc_id": 7453, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 9, "x": -3584.0, "z": 6464.0, "px": 1436.3, "py": 3151.2}, {"loc_id": 7456, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 9, "x": -128.0, "z": -1344.0, "px": 2026.2, "py": 1818.6}, {"loc_id": 7458, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 9, "x": 6144.0, "z": 4736.0, "px": 3096.6, "py": 2856.3}, {"loc_id": 7465, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 9, "x": -5184.0, "z": 5440.0, "px": 1163.3, "py": 2976.4}, {"loc_id": 7469, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 9, "x": -5312.0, "z": 5184.0, "px": 1141.4, "py": 2932.7}, {"loc_id": 7469, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 9, "x": -5312.0, "z": 5184.0, "px": 1141.4, "py": 2932.7}, {"loc_id": 7474, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 9, "x": 4480.0, "z": -1792.0, "px": 2812.6, "py": 1742.2}, {"loc_id": 7479, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 9, "x": 2688.0, "z": 640.0, "px": 2506.8, "py": 2157.2}, {"loc_id": 7479, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 9, "x": 2688.0, "z": 640.0, "px": 2506.8, "py": 2157.2}, {"loc_id": 7480, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 9, "x": -3776.0, "z": 1408.0, "px": 1403.6, "py": 2288.3}, {"loc_id": 7485, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 9, "x": -2048.0, "z": -192.0, "px": 1698.5, "py": 2015.2}, {"loc_id": 7486, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 9, "x": 1728.0, "z": 6656.0, "px": 2342.9, "py": 3184.0}, {"loc_id": 7487, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 9, "x": -3968.0, "z": 5120.0, "px": 1370.8, "py": 2921.8}, {"loc_id": 7488, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 9, "x": -7616.0, "z": -2368.0, "px": 748.2, "py": 1643.9}, {"loc_id": 7503, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 9, "x": 1344.0, "z": 8640.0, "px": 2277.4, "py": 3522.6}, {"loc_id": 7504, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 9, "x": 5504.0, "z": 64.0, "px": 2987.3, "py": 2058.9}, {"loc_id": 7507, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 9, "x": -5056.0, "z": 2688.0, "px": 1185.1, "py": 2506.8}, {"loc_id": 7510, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 9, "x": 6592.0, "z": 7104.0, "px": 3173.0, "py": 3260.4}, {"loc_id": 7510, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 9, "x": 6592.0, "z": 7104.0, "px": 3173.0, "py": 3260.4}, {"loc_id": 7510, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 9, "x": 6592.0, "z": 7104.0, "px": 3173.0, "py": 3260.4}, {"loc_id": 7513, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 9, "x": 3072.0, "z": -1920.0, "px": 2572.3, "py": 1720.3}, {"loc_id": 7514, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 9, "x": -3584.0, "z": 6080.0, "px": 1436.3, "py": 3085.7}, {"loc_id": 7515, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 9, "x": 1216.0, "z": 4864.0, "px": 2255.5, "py": 2878.1}, {"loc_id": 7517, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 9, "x": 7488.0, "z": 3968.0, "px": 3326.0, "py": 2725.2}, {"loc_id": 7522, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 9, "x": -4032.0, "z": 1408.0, "px": 1359.9, "py": 2288.3}, {"loc_id": 7522, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 9, "x": -4032.0, "z": 1408.0, "px": 1359.9, "py": 2288.3}, {"loc_id": 7527, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 9, "x": -3392.0, "z": 6336.0, "px": 1469.1, "py": 3129.3}, {"loc_id": 7527, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 9, "x": -3392.0, "z": 6336.0, "px": 1469.1, "py": 3129.3}, {"loc_id": 7532, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 9, "x": -9984.0, "z": -512.0, "px": 344.1, "py": 1960.6}, {"loc_id": 7532, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 9, "x": -9984.0, "z": -512.0, "px": 344.1, "py": 1960.6}, {"loc_id": 7534, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 9, "x": 896.0, "z": -2432.0, "px": 2200.9, "py": 1632.9}, {"loc_id": 7540, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 9, "x": 1344.0, "z": 7040.0, "px": 2277.4, "py": 3249.5}, {"loc_id": 7540, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 9, "x": 1344.0, "z": 7040.0, "px": 2277.4, "py": 3249.5}, {"loc_id": 7545, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 9, "x": -192.0, "z": -1536.0, "px": 2015.2, "py": 1785.9}, {"loc_id": 7546, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 9, "x": -4480.0, "z": -64.0, "px": 1283.4, "py": 2037.1}, {"loc_id": 7562, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 9, "x": 5632.0, "z": 2304.0, "px": 3009.2, "py": 2441.2}, {"loc_id": 7567, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 9, "x": 2048.0, "z": -1600.0, "px": 2397.5, "py": 1774.9}, {"loc_id": 9944, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 9, "x": -1152.0, "z": -9472.0, "px": 1851.4, "py": 431.4}, {"loc_id": 9956, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 9, "x": 320.0, "z": -8960.0, "px": 2102.6, "py": 518.8}, {"loc_id": 9965, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 9, "x": 768.0, "z": -9344.0, "px": 2179.1, "py": 453.3}, {"loc_id": 9966, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 9, "x": 1600.0, "z": -9152.0, "px": 2321.1, "py": 486.1}, {"loc_id": 9967, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 9, "x": -832.0, "z": -9536.0, "px": 1906.0, "py": 420.5}, {"loc_id": 9979, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 9, "x": -256.0, "z": -9984.0, "px": 2004.3, "py": 344.1}, {"loc_id": 9981, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 9, "x": -448.0, "z": -8832.0, "px": 1971.5, "py": 540.7}, {"loc_id": 9986, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 9, "x": -704.0, "z": -8960.0, "px": 1927.9, "py": 518.8}, {"loc_id": 10013, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 9, "x": 1216.0, "z": -9344.0, "px": 2255.5, "py": 453.3}, {"loc_id": 10017, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 9, "x": -768.0, "z": -8832.0, "px": 1916.9, "py": 540.7}, {"loc_id": 10264, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 9, "x": -1089.5, "z": -9024.6, "px": 1862.1, "py": 507.8}, {"loc_id": 10265, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 9, "x": -449.7, "z": -8961.3, "px": 1971.3, "py": 518.6}, {"loc_id": 10272, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 9, "x": 769.0, "z": -8766.0, "px": 2179.2, "py": 551.9}, {"loc_id": 10283, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 9, "x": 1662.8, "z": -9217.4, "px": 2331.8, "py": 474.9}, {"loc_id": 10291, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 9, "x": -1214.4, "z": -9663.7, "px": 1840.7, "py": 398.7}, {"loc_id": 10304, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 9, "x": -704.7, "z": -9664.7, "px": 1927.7, "py": 398.6}, {"loc_id": 10354, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 9, "x": -1022.4, "z": -9214.4, "px": 1873.5, "py": 475.4}, {"loc_id": 10360, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 9, "x": -2368.2, "z": -8831.2, "px": 1643.8, "py": 540.8}, {"loc_id": 10361, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 9, "x": -2047.9, "z": -8831.3, "px": 1698.5, "py": 540.8}, {"loc_id": 10811, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 9, "x": -3648.0, "z": -8384.0, "px": 1425.4, "py": 617.1}, {"loc_id": 10813, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 9, "x": 128.0, "z": -9536.0, "px": 2069.8, "py": 420.5}, {"loc_id": 10814, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 9, "x": -3648.0, "z": -8256.0, "px": 1425.4, "py": 639.0}, {"loc_id": 10816, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 9, "x": 1792.0, "z": -8512.0, "px": 2353.8, "py": 595.3}, {"loc_id": 10824, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 9, "x": -4480.0, "z": -8384.0, "px": 1283.4, "py": 617.1}, {"loc_id": 10835, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 9, "x": 1344.0, "z": -9600.0, "px": 2277.4, "py": 409.6}, {"loc_id": 10838, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 9, "x": -576.0, "z": -8704.0, "px": 1949.7, "py": 562.5}, {"loc_id": 10840, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 9, "x": 3392.0, "z": -8128.0, "px": 2626.9, "py": 660.8}, {"loc_id": 10842, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 9, "x": 1088.0, "z": -8832.0, "px": 2233.7, "py": 540.7}, {"loc_id": 10845, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 9, "x": 832.0, "z": -8640.0, "px": 2190.0, "py": 573.4}, {"loc_id": 10849, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 9, "x": 2944.0, "z": -9280.0, "px": 2550.4, "py": 464.2}, {"loc_id": 10852, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 9, "x": 3136.0, "z": -8384.0, "px": 2583.2, "py": 617.1}, {"loc_id": 10862, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 9, "x": -2624.0, "z": -8384.0, "px": 1600.2, "py": 617.1}, {"loc_id": 10866, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 9, "x": 1664.0, "z": -9728.0, "px": 2332.0, "py": 387.8}, {"loc_id": 10869, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 9, "x": -4288.0, "z": -8128.0, "px": 1316.2, "py": 660.8}, {"loc_id": 10875, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 9, "x": 1792.0, "z": -8576.0, "px": 2353.8, "py": 584.4}, {"loc_id": 10880, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 9, "x": 2176.0, "z": -9280.0, "px": 2419.4, "py": 464.2}, {"loc_id": 10882, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 9, "x": -3520.0, "z": -8320.0, "px": 1447.3, "py": 628.1}, {"loc_id": 10885, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 9, "x": -128.0, "z": -8704.0, "px": 2026.2, "py": 562.5}, {"loc_id": 10901, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 9, "x": -2368.0, "z": -8384.0, "px": 1643.9, "py": 617.1}, {"loc_id": 19, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 8, "x": 3320.3, "z": 4792.1, "px": 2614.7, "py": 2865.9}, {"loc_id": 20, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 8, "x": -2682.3, "z": -5191.9, "px": 1590.2, "py": 1161.9}, {"loc_id": 21, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 8, "x": -4146.8, "z": 3646.5, "px": 1340.3, "py": 2670.3}, {"loc_id": 30, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 8, "x": -525.6, "z": -3575.0, "px": 1958.3, "py": 1437.9}, {"loc_id": 31, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 8, "x": 3723.6, "z": 816.0, "px": 2683.5, "py": 2187.3}, {"loc_id": 38, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 8, "x": -2445.9, "z": -4152.3, "px": 1630.6, "py": 1339.3}, {"loc_id": 39, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 8, "x": -562.3, "z": -4030.4, "px": 1952.0, "py": 1360.1}, {"loc_id": 40, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 8, "x": 464.9, "z": 2558.6, "px": 2127.3, "py": 2484.7}, {"loc_id": 43, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 8, "x": -4994.4, "z": 1343.0, "px": 1195.6, "py": 2277.2}, {"loc_id": 43, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 8, "x": -4994.4, "z": 1343.0, "px": 1195.6, "py": 2277.2}, {"loc_id": 44, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 8, "x": -187.0, "z": 2492.5, "px": 2016.1, "py": 2473.4}, {"loc_id": 55, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 8, "x": -5323.0, "z": -1724.1, "px": 1139.5, "py": 1753.8}, {"loc_id": 65, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 8, "x": -4301.0, "z": 516.6, "px": 1314.0, "py": 2136.2}, {"loc_id": 66, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 8, "x": -2736.5, "z": -1736.3, "px": 1581.0, "py": 1751.7}, {"loc_id": 68, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 8, "x": -3123.2, "z": 395.0, "px": 1515.0, "py": 2115.4}, {"loc_id": 74, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 8, "x": 4783.1, "z": -691.7, "px": 2864.3, "py": 1929.9}, {"loc_id": 83, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 8, "x": 1649.5, "z": 4335.2, "px": 2329.5, "py": 2787.9}, {"loc_id": 88, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 8, "x": 2353.7, "z": 270.7, "px": 2449.7, "py": 2094.2}, {"loc_id": 91, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 8, "x": -5102.0, "z": -771.2, "px": 1177.3, "py": 1916.4}, {"loc_id": 96, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 8, "x": -116.2, "z": 2562.7, "px": 2028.2, "py": 2485.4}, {"loc_id": 104, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 8, "x": 1020.1, "z": 4295.3, "px": 2222.1, "py": 2781.1}, {"loc_id": 104, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 8, "x": 1020.1, "z": 4295.3, "px": 2222.1, "py": 2781.1}, {"loc_id": 107, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 8, "x": -2631.9, "z": -882.8, "px": 1598.8, "py": 1897.3}, {"loc_id": 112, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 8, "x": 2361.0, "z": -3273.3, "px": 2450.9, "py": 1489.4}, {"loc_id": 114, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 8, "x": 1607.7, "z": 2117.6, "px": 2322.4, "py": 2409.4}, {"loc_id": 117, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 8, "x": 272.2, "z": 2565.9, "px": 2094.5, "py": 2485.9}, {"loc_id": 118, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 8, "x": -2309.6, "z": 4288.3, "px": 1653.8, "py": 2779.9}, {"loc_id": 120, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 8, "x": -5252.1, "z": -1711.3, "px": 1151.6, "py": 1755.9}, {"loc_id": 124, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 8, "x": 3454.8, "z": -4349.8, "px": 2637.6, "py": 1305.6}, {"loc_id": 127, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 8, "x": 3631.1, "z": 716.1, "px": 2667.7, "py": 2170.2}, {"loc_id": 131, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 8, "x": 64.3, "z": 2610.1, "px": 2059.0, "py": 2493.5}, {"loc_id": 149, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 8, "x": 1404.0, "z": 1975.1, "px": 2287.6, "py": 2385.1}, {"loc_id": 155, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 8, "x": -5362.2, "z": 1582.8, "px": 1132.9, "py": 2318.1}, {"loc_id": 168, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 8, "x": -889.7, "z": -3644.9, "px": 1896.2, "py": 1425.9}, {"loc_id": 170, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 8, "x": -4366.3, "z": 396.5, "px": 1302.8, "py": 2115.7}, {"loc_id": 176, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 8, "x": -1990.7, "z": 4469.7, "px": 1708.3, "py": 2810.8}, {"loc_id": 180, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 8, "x": 3381.3, "z": -4433.3, "px": 2625.1, "py": 1291.4}, {"loc_id": 187, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 8, "x": 4433.2, "z": -3127.0, "px": 2804.6, "py": 1514.3}, {"loc_id": 658, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 8, "x": -1856.0, "z": -6976.0, "px": 1731.2, "py": 857.4}, {"loc_id": 658, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 8, "x": -1856.0, "z": -6976.0, "px": 1731.2, "py": 857.4}, {"loc_id": 660, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 8, "x": -6080.0, "z": -896.0, "px": 1010.3, "py": 1895.1}, {"loc_id": 660, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": -6080.0, "z": -896.0, "px": 1010.3, "py": 1895.1}, {"loc_id": 663, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": -1728.0, "z": -7296.0, "px": 1753.1, "py": 802.8}, {"loc_id": 663, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 8, "x": -1728.0, "z": -7296.0, "px": 1753.1, "py": 802.8}, {"loc_id": 666, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": 3072.0, "z": 6336.0, "px": 2572.3, "py": 3129.3}, {"loc_id": 669, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 8, "x": -2112.0, "z": 7360.0, "px": 1687.6, "py": 3304.1}, {"loc_id": 669, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": -2112.0, "z": 7360.0, "px": 1687.6, "py": 3304.1}, {"loc_id": 671, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 8, "x": -6400.0, "z": -3968.0, "px": 955.7, "py": 1370.8}, {"loc_id": 674, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 8, "x": 1664.0, "z": -6784.0, "px": 2332.0, "py": 890.2}, {"loc_id": 677, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 8, "x": -8000.0, "z": -4288.0, "px": 682.7, "py": 1316.2}, {"loc_id": 678, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 8, "x": -8960.0, "z": 768.0, "px": 518.8, "py": 2179.1}, {"loc_id": 680, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 8, "x": 8128.0, "z": -3136.0, "px": 3435.2, "py": 1512.8}, {"loc_id": 680, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": 8128.0, "z": -3136.0, "px": 3435.2, "py": 1512.8}, {"loc_id": 681, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": -8576.0, "z": 2112.0, "px": 584.4, "py": 2408.4}, {"loc_id": 690, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 8, "x": -5440.0, "z": 5760.0, "px": 1119.6, "py": 3031.0}, {"loc_id": 696, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 8, "x": 4672.0, "z": -4672.0, "px": 2845.4, "py": 1250.6}, {"loc_id": 698, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 8, "x": 6208.0, "z": 5760.0, "px": 3107.5, "py": 3031.0}, {"loc_id": 698, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 8, "x": 6208.0, "z": 5760.0, "px": 3107.5, "py": 3031.0}, {"loc_id": 701, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": -1152.0, "z": -7040.0, "px": 1851.4, "py": 846.5}, {"loc_id": 702, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 8, "x": 7424.0, "z": -2176.0, "px": 3315.0, "py": 1676.6}, {"loc_id": 705, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 8, "x": 6144.0, "z": -1536.0, "px": 3096.6, "py": 1785.9}, {"loc_id": 706, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 8, "x": 9728.0, "z": 1536.0, "px": 3708.2, "py": 2310.1}, {"loc_id": 706, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": 9728.0, "z": 1536.0, "px": 3708.2, "py": 2310.1}, {"loc_id": 707, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": 1024.0, "z": -7360.0, "px": 2222.8, "py": 791.9}, {"loc_id": 708, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": 8512.0, "z": 1152.0, "px": 3500.7, "py": 2244.6}, {"loc_id": 712, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": 9152.0, "z": -1280.0, "px": 3609.9, "py": 1829.5}, {"loc_id": 715, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": 8064.0, "z": 2752.0, "px": 3424.3, "py": 2517.7}, {"loc_id": 718, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 8, "x": -6336.0, "z": 704.0, "px": 966.7, "py": 2168.1}, {"loc_id": 720, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 8, "x": -7168.0, "z": 640.0, "px": 824.7, "py": 2157.2}, {"loc_id": 725, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 8, "x": 2816.0, "z": 5696.0, "px": 2528.6, "py": 3020.1}, {"loc_id": 728, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 8, "x": 7680.0, "z": -2368.0, "px": 3358.7, "py": 1643.9}, {"loc_id": 728, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": 7680.0, "z": -2368.0, "px": 3358.7, "py": 1643.9}, {"loc_id": 729, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": 8064.0, "z": -1728.0, "px": 3424.3, "py": 1753.1}, {"loc_id": 731, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 8, "x": -7744.0, "z": -2880.0, "px": 726.4, "py": 1556.5}, {"loc_id": 732, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": 6464.0, "z": 2880.0, "px": 3151.2, "py": 2539.5}, {"loc_id": 735, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 8, "x": -9536.0, "z": 832.0, "px": 420.5, "py": 2190.0}, {"loc_id": 735, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 8, "x": -9536.0, "z": 832.0, "px": 420.5, "py": 2190.0}, {"loc_id": 745, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 8, "x": -5824.0, "z": 3264.0, "px": 1054.0, "py": 2605.1}, {"loc_id": 747, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 8, "x": -7296.0, "z": 1152.0, "px": 802.8, "py": 2244.6}, {"loc_id": 747, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 8, "x": -7296.0, "z": 1152.0, "px": 802.8, "py": 2244.6}, {"loc_id": 748, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 8, "x": -4096.0, "z": 4736.0, "px": 1348.9, "py": 2856.3}, {"loc_id": 751, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 8, "x": -1792.0, "z": -5824.0, "px": 1742.2, "py": 1054.0}, {"loc_id": 751, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 8, "x": -1792.0, "z": -5824.0, "px": 1742.2, "py": 1054.0}, {"loc_id": 757, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 8, "x": 8768.0, "z": 896.0, "px": 3544.4, "py": 2200.9}, {"loc_id": 758, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": 8896.0, "z": 320.0, "px": 3566.3, "py": 2102.6}, {"loc_id": 760, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": 4160.0, "z": -4736.0, "px": 2758.0, "py": 1239.7}, {"loc_id": 760, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": 4160.0, "z": -4736.0, "px": 2758.0, "py": 1239.7}, {"loc_id": 761, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 8, "x": -2112.0, "z": -6656.0, "px": 1687.6, "py": 912.0}, {"loc_id": 761, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 8, "x": -2112.0, "z": -6656.0, "px": 1687.6, "py": 912.0}, {"loc_id": 762, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": 4032.0, "z": -6464.0, "px": 2736.1, "py": 944.8}, {"loc_id": 762, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 8, "x": 4032.0, "z": -6464.0, "px": 2736.1, "py": 944.8}, {"loc_id": 763, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 8, "x": 3904.0, "z": -7040.0, "px": 2714.3, "py": 846.5}, {"loc_id": 765, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 8, "x": -3712.0, "z": 6656.0, "px": 1414.5, "py": 3184.0}, {"loc_id": 766, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": 5760.0, "z": 6080.0, "px": 3031.0, "py": 3085.7}, {"loc_id": 766, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": 5760.0, "z": 6080.0, "px": 3031.0, "py": 3085.7}, {"loc_id": 767, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 8, "x": 1152.0, "z": 7616.0, "px": 2244.6, "py": 3347.8}, {"loc_id": 771, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 8, "x": 2944.0, "z": 5440.0, "px": 2550.4, "py": 2976.4}, {"loc_id": 772, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": -7104.0, "z": -2176.0, "px": 835.6, "py": 1676.6}, {"loc_id": 775, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": 5632.0, "z": 2432.0, "px": 3009.2, "py": 2463.1}, {"loc_id": 776, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 8, "x": -3200.0, "z": 5376.0, "px": 1501.9, "py": 2965.5}, {"loc_id": 776, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": -3200.0, "z": 5376.0, "px": 1501.9, "py": 2965.5}, {"loc_id": 777, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 8, "x": 4864.0, "z": 6208.0, "px": 2878.1, "py": 3107.5}, {"loc_id": 778, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 8, "x": -7616.0, "z": 1216.0, "px": 748.2, "py": 2255.5}, {"loc_id": 780, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 8, "x": -5312.0, "z": -4480.0, "px": 1141.4, "py": 1283.4}, {"loc_id": 783, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 8, "x": 6784.0, "z": 1216.0, "px": 3205.8, "py": 2255.5}, {"loc_id": 784, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": -3776.0, "z": 5440.0, "px": 1403.6, "py": 2976.4}, {"loc_id": 785, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 8, "x": -192.0, "z": -6400.0, "px": 2015.2, "py": 955.7}, {"loc_id": 786, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": -9472.0, "z": -960.0, "px": 431.4, "py": 1884.2}, {"loc_id": 788, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 8, "x": 4864.0, "z": 5696.0, "px": 2878.1, "py": 3020.1}, {"loc_id": 790, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 8, "x": 384.0, "z": -7104.0, "px": 2113.5, "py": 835.6}, {"loc_id": 790, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": 384.0, "z": -7104.0, "px": 2113.5, "py": 835.6}, {"loc_id": 790, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 8, "x": 384.0, "z": -7104.0, "px": 2113.5, "py": 835.6}, {"loc_id": 790, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 8, "x": 384.0, "z": -7104.0, "px": 2113.5, "py": 835.6}, {"loc_id": 793, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 8, "x": 4224.0, "z": 6336.0, "px": 2768.9, "py": 3129.3}, {"loc_id": 800, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 8, "x": 2368.0, "z": -6592.0, "px": 2452.1, "py": 923.0}, {"loc_id": 800, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": 2368.0, "z": -6592.0, "px": 2452.1, "py": 923.0}, {"loc_id": 802, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": -4800.0, "z": 4160.0, "px": 1228.8, "py": 2758.0}, {"loc_id": 802, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": -4800.0, "z": 4160.0, "px": 1228.8, "py": 2758.0}, {"loc_id": 803, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 8, "x": -3008.0, "z": -6080.0, "px": 1534.6, "py": 1010.3}, {"loc_id": 804, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": 128.0, "z": 6848.0, "px": 2069.8, "py": 3216.7}, {"loc_id": 806, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 8, "x": 4608.0, "z": 6336.0, "px": 2834.4, "py": 3129.3}, {"loc_id": 810, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 8, "x": 768.0, "z": 6528.0, "px": 2179.1, "py": 3162.1}, {"loc_id": 811, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 8, "x": -5568.0, "z": 3328.0, "px": 1097.7, "py": 2616.0}, {"loc_id": 811, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": -5568.0, "z": 3328.0, "px": 1097.7, "py": 2616.0}, {"loc_id": 813, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 8, "x": -8192.0, "z": -3520.0, "px": 649.9, "py": 1447.3}, {"loc_id": 816, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": -7040.0, "z": 5312.0, "px": 846.5, "py": 2954.6}, {"loc_id": 816, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 8, "x": -7040.0, "z": 5312.0, "px": 846.5, "py": 2954.6}, {"loc_id": 821, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 8, "x": 384.0, "z": 7552.0, "px": 2113.5, "py": 3336.9}, {"loc_id": 821, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": 384.0, "z": 7552.0, "px": 2113.5, "py": 3336.9}, {"loc_id": 824, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 8, "x": -2368.0, "z": -6464.0, "px": 1643.9, "py": 944.8}, {"loc_id": 830, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 8, "x": 9920.0, "z": -192.0, "px": 3741.0, "py": 2015.2}, {"loc_id": 834, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 8, "x": -8576.0, "z": 1280.0, "px": 584.4, "py": 2266.5}, {"loc_id": 835, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": -8192.0, "z": 2304.0, "px": 649.9, "py": 2441.2}, {"loc_id": 837, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 8, "x": -9408.0, "z": 1472.0, "px": 442.4, "py": 2299.2}, {"loc_id": 837, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 8, "x": -9408.0, "z": 1472.0, "px": 442.4, "py": 2299.2}, {"loc_id": 838, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 8, "x": -1088.0, "z": -6080.0, "px": 1862.3, "py": 1010.3}, {"loc_id": 840, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": -1664.0, "z": 7104.0, "px": 1764.0, "py": 3260.4}, {"loc_id": 841, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": 3648.0, "z": -6784.0, "px": 2670.6, "py": 890.2}, {"loc_id": 845, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 8, "x": 4672.0, "z": -6080.0, "px": 2845.4, "py": 1010.3}, {"loc_id": 845, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": 4672.0, "z": -6080.0, "px": 2845.4, "py": 1010.3}, {"loc_id": 848, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 8, "x": -6016.0, "z": -5568.0, "px": 1021.3, "py": 1097.7}, {"loc_id": 852, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 8, "x": 8512.0, "z": -2688.0, "px": 3500.7, "py": 1589.2}, {"loc_id": 855, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": 2560.0, "z": -5824.0, "px": 2484.9, "py": 1054.0}, {"loc_id": 856, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": -7168.0, "z": 3840.0, "px": 824.7, "py": 2703.4}, {"loc_id": 857, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 8, "x": 2368.0, "z": 7296.0, "px": 2452.1, "py": 3293.2}, {"loc_id": 857, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 8, "x": 2368.0, "z": 7296.0, "px": 2452.1, "py": 3293.2}, {"loc_id": 864, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": 6592.0, "z": -192.0, "px": 3173.0, "py": 2015.2}, {"loc_id": 865, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 8, "x": -6400.0, "z": -2112.0, "px": 955.7, "py": 1687.6}, {"loc_id": 869, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 8, "x": -6528.0, "z": -4416.0, "px": 933.9, "py": 1294.3}, {"loc_id": 870, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 8, "x": 5696.0, "z": 3520.0, "px": 3020.1, "py": 2648.7}, {"loc_id": 870, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 8, "x": 5696.0, "z": 3520.0, "px": 3020.1, "py": 2648.7}, {"loc_id": 871, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 8, "x": -6016.0, "z": 2880.0, "px": 1021.3, "py": 2539.5}, {"loc_id": 874, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": 1856.0, "z": -6592.0, "px": 2364.8, "py": 923.0}, {"loc_id": 880, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 8, "x": 4352.0, "z": -4416.0, "px": 2790.7, "py": 1294.3}, {"loc_id": 880, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": 4352.0, "z": -4416.0, "px": 2790.7, "py": 1294.3}, {"loc_id": 881, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 8, "x": 4352.0, "z": 4672.0, "px": 2790.7, "py": 2845.4}, {"loc_id": 882, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 8, "x": 7936.0, "z": 3008.0, "px": 3402.4, "py": 2561.4}, {"loc_id": 883, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 8, "x": 576.0, "z": 6784.0, "px": 2146.3, "py": 3205.8}, {"loc_id": 884, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 8, "x": -7872.0, "z": 4608.0, "px": 704.5, "py": 2834.4}, {"loc_id": 914, "loc_name": "Hildir_crypt", "item": "SpawnOnce: Skeleton", "count": 8, "x": -7097.0, "z": 2614.7, "px": 836.8, "py": 2494.2}, {"loc_id": 918, "loc_name": "Hildir_plainsfortress", "item": "SpawnOnce: GoblinShaman", "count": 8, "x": 1728.0, "z": 3200.0, "px": 2342.9, "py": 2594.1}, {"loc_id": 919, "loc_name": "Hildir_plainsfortress", "item": "SpawnOnce: GoblinArcher", "count": 8, "x": -3264.0, "z": 1344.0, "px": 1490.9, "py": 2277.4}, {"loc_id": 1985, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 8, "x": -5749.3, "z": -4995.7, "px": 1066.8, "py": 1195.4}, {"loc_id": 1985, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 8, "x": -5749.3, "z": -4995.7, "px": 1066.8, "py": 1195.4}, {"loc_id": 1992, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": -8265.4, "z": 2494.6, "px": 637.4, "py": 2473.7}, {"loc_id": 1993, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 8, "x": -5949.7, "z": 1468.8, "px": 1032.6, "py": 2298.7}, {"loc_id": 1995, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 7744.4, "z": -2746.7, "px": 3369.7, "py": 1579.2}, {"loc_id": 1995, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 8, "x": 7744.4, "z": -2746.7, "px": 3369.7, "py": 1579.2}, {"loc_id": 1996, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 8, "x": 8580.9, "z": -1732.6, "px": 3512.5, "py": 1752.3}, {"loc_id": 1997, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 8, "x": -5052.2, "z": 585.3, "px": 1185.8, "py": 2147.9}, {"loc_id": 1997, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 8, "x": -5052.2, "z": 585.3, "px": 1185.8, "py": 2147.9}, {"loc_id": 1998, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 8, "x": -1158.1, "z": -1210.7, "px": 1850.4, "py": 1841.4}, {"loc_id": 2003, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 709.3, "z": 4485.9, "px": 2169.1, "py": 2813.6}, {"loc_id": 2010, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 8, "x": -1345.3, "z": -5450.9, "px": 1818.4, "py": 1117.7}, {"loc_id": 2012, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 8, "x": 2615.5, "z": 5691.7, "px": 2494.4, "py": 3019.4}, {"loc_id": 2015, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 8, "x": 4422.3, "z": 6725.0, "px": 2802.7, "py": 3195.7}, {"loc_id": 2016, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 8, "x": 2113.8, "z": 841.5, "px": 2408.8, "py": 2191.6}, {"loc_id": 2019, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 1852.0, "z": 7225.8, "px": 2364.1, "py": 3281.2}, {"loc_id": 2026, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 1224.6, "z": -5429.1, "px": 2257.0, "py": 1121.4}, {"loc_id": 2031, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 8, "x": -1856.3, "z": -4486.1, "px": 1731.2, "py": 1282.4}, {"loc_id": 2034, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": -8262.3, "z": 2627.8, "px": 637.9, "py": 2496.5}, {"loc_id": 2040, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 8, "x": 3391.7, "z": 3514.9, "px": 2626.9, "py": 2647.9}, {"loc_id": 2043, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 8, "x": 7367.4, "z": 3701.7, "px": 3305.4, "py": 2679.8}, {"loc_id": 2044, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 8, "x": 1789.0, "z": -6149.7, "px": 2353.3, "py": 998.5}, {"loc_id": 2049, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 832.6, "z": 3465.7, "px": 2190.1, "py": 2639.5}, {"loc_id": 2055, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 769.5, "z": 192.1, "px": 2179.3, "py": 2080.8}, {"loc_id": 2056, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 8, "x": -8000.9, "z": 393.2, "px": 682.5, "py": 2115.1}, {"loc_id": 2058, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 8, "x": -1343.6, "z": -1865.0, "px": 1818.7, "py": 1729.7}, {"loc_id": 2061, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 8, "x": -2431.5, "z": 4169.7, "px": 1633.0, "py": 2759.6}, {"loc_id": 2063, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 3071.8, "z": 893.7, "px": 2572.3, "py": 2200.5}, {"loc_id": 2066, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 8, "x": 5948.5, "z": 1414.3, "px": 3063.2, "py": 2289.4}, {"loc_id": 2066, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 5948.5, "z": 1414.3, "px": 3063.2, "py": 2289.4}, {"loc_id": 2070, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 8, "x": -4618.1, "z": 5752.9, "px": 1259.8, "py": 3029.8}, {"loc_id": 2080, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": -381.3, "z": -4345.5, "px": 1982.9, "py": 1306.4}, {"loc_id": 2085, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 761.4, "z": 4665.8, "px": 2177.9, "py": 2844.3}, {"loc_id": 2094, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 8, "x": 568.7, "z": 4745.9, "px": 2145.1, "py": 2858.0}, {"loc_id": 2099, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 8, "x": -7287.1, "z": 2560.3, "px": 804.3, "py": 2485.0}, {"loc_id": 2100, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 8, "x": 4230.3, "z": -191.4, "px": 2770.0, "py": 2015.3}, {"loc_id": 2102, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": -7167.8, "z": 2488.8, "px": 824.7, "py": 2472.8}, {"loc_id": 2104, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 835.6, "z": 4856.2, "px": 2190.6, "py": 2876.8}, {"loc_id": 2107, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 8, "x": -9664.7, "z": -321.6, "px": 398.6, "py": 1993.1}, {"loc_id": 2109, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 4553.1, "z": -5122.9, "px": 2825.1, "py": 1173.7}, {"loc_id": 2115, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 8, "x": -5826.5, "z": -329.0, "px": 1053.6, "py": 1991.9}, {"loc_id": 2120, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 8, "x": 2178.0, "z": 1283.9, "px": 2419.7, "py": 2267.1}, {"loc_id": 2120, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 8, "x": 2178.0, "z": 1283.9, "px": 2419.7, "py": 2267.1}, {"loc_id": 2122, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 1973.5, "z": 3575.7, "px": 2384.8, "py": 2658.3}, {"loc_id": 2124, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 8, "x": -3017.7, "z": 4282.1, "px": 1533.0, "py": 2778.8}, {"loc_id": 2127, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 8, "x": 3769.9, "z": 3914.8, "px": 2691.4, "py": 2716.1}, {"loc_id": 2132, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 8, "x": 772.8, "z": 4226.6, "px": 2179.9, "py": 2769.3}, {"loc_id": 2134, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 8, "x": -5754.4, "z": 4490.5, "px": 1065.9, "py": 2814.4}, {"loc_id": 2139, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": -5886.6, "z": 4606.1, "px": 1043.4, "py": 2834.1}, {"loc_id": 2144, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 8, "x": -7431.3, "z": -1848.0, "px": 779.7, "py": 1732.6}, {"loc_id": 2156, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": -4855.4, "z": -3010.4, "px": 1219.3, "py": 1534.2}, {"loc_id": 2159, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": -3267.2, "z": 4220.0, "px": 1490.4, "py": 2768.2}, {"loc_id": 2170, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 8, "x": 7876.9, "z": -2761.7, "px": 3392.3, "py": 1576.7}, {"loc_id": 2171, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 8, "x": -5879.9, "z": -5111.8, "px": 1044.5, "py": 1175.6}, {"loc_id": 2177, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 8, "x": 582.5, "z": 60.8, "px": 2147.4, "py": 2058.4}, {"loc_id": 2181, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 8, "x": -9341.1, "z": 3254.4, "px": 453.8, "py": 2603.4}, {"loc_id": 2182, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 8, "x": -7942.6, "z": 265.7, "px": 692.5, "py": 2093.3}, {"loc_id": 2182, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": -7942.6, "z": 265.7, "px": 692.5, "py": 2093.3}, {"loc_id": 2183, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 8, "x": -9269.2, "z": 3385.5, "px": 466.1, "py": 2625.8}, {"loc_id": 3044, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 8, "x": -1024.1, "z": -4863.7, "px": 1873.2, "py": 1217.9}, {"loc_id": 3073, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 8, "x": -3968.4, "z": 1150.8, "px": 1370.7, "py": 2244.4}, {"loc_id": 3077, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 8, "x": 5889.6, "z": -4990.1, "px": 3053.2, "py": 1196.4}, {"loc_id": 3095, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 8, "x": -7681.2, "z": -1983.8, "px": 737.1, "py": 1709.4}, {"loc_id": 3099, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 8, "x": 3776.9, "z": 1407.8, "px": 2692.6, "py": 2288.3}, {"loc_id": 3102, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 8, "x": -2750.2, "z": -2879.8, "px": 1578.6, "py": 1556.5}, {"loc_id": 3114, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 8, "x": -4097.1, "z": -2687.0, "px": 1348.8, "py": 1589.4}, {"loc_id": 3119, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 8, "x": 5374.1, "z": -2623.4, "px": 2965.2, "py": 1600.3}, {"loc_id": 3127, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 8, "x": 5759.4, "z": -4737.0, "px": 3030.9, "py": 1239.6}, {"loc_id": 3132, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 8, "x": 2369.7, "z": -2238.3, "px": 2452.4, "py": 1666.0}, {"loc_id": 3137, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 8, "x": 4862.4, "z": 5057.9, "px": 2877.8, "py": 2911.2}, {"loc_id": 3144, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 8, "x": -4032.3, "z": 3582.0, "px": 1359.8, "py": 2659.3}, {"loc_id": 3158, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 8, "x": 3327.5, "z": -1665.3, "px": 2615.9, "py": 1763.8}, {"loc_id": 3165, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 8, "x": -2496.7, "z": 3073.0, "px": 1621.9, "py": 2572.5}, {"loc_id": 3172, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 8, "x": 4609.7, "z": 1406.2, "px": 2834.7, "py": 2288.0}, {"loc_id": 3175, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 8, "x": -5185.1, "z": -2624.5, "px": 1163.1, "py": 1600.1}, {"loc_id": 3184, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 8, "x": -961.6, "z": 5057.4, "px": 1883.9, "py": 2911.1}, {"loc_id": 3184, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 8, "x": -961.6, "z": 5057.4, "px": 1883.9, "py": 2911.1}, {"loc_id": 3192, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 8, "x": 1664.9, "z": 7424.3, "px": 2332.1, "py": 3315.1}, {"loc_id": 3197, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 8, "x": 3198.6, "z": 4350.7, "px": 2593.9, "py": 2790.5}, {"loc_id": 3245, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 8, "x": 181.8, "z": 3450.7, "px": 2079.0, "py": 2636.9}, {"loc_id": 3291, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 8, "x": -1611.3, "z": -4625.6, "px": 1773.0, "py": 1258.6}, {"loc_id": 3310, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 8, "x": -5127.7, "z": 5186.4, "px": 1172.9, "py": 2933.1}, {"loc_id": 3318, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 8, "x": -3014.3, "z": 3011.1, "px": 1533.6, "py": 2561.9}, {"loc_id": 3324, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 8, "x": 2824.6, "z": 1084.8, "px": 2530.1, "py": 2233.1}, {"loc_id": 3329, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 8, "x": -1738.1, "z": 2762.5, "px": 1751.4, "py": 2519.5}, {"loc_id": 3662, "loc_name": "WoodFarm1", "item": "Pickable: Raspberry", "count": 8, "x": 448.0, "z": 256.0, "px": 2124.5, "py": 2091.7}, {"loc_id": 3665, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Ranged", "count": 8, "x": 4288.0, "z": -1216.0, "px": 2779.8, "py": 1840.5}, {"loc_id": 3666, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr", "count": 8, "x": -4032.0, "z": -2048.0, "px": 1359.9, "py": 1698.5}, {"loc_id": 3669, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Ranged", "count": 8, "x": -4800.0, "z": 640.0, "px": 1228.8, "py": 2157.2}, {"loc_id": 3670, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr", "count": 8, "x": -2368.0, "z": 384.0, "px": 1643.9, "py": 2113.5}, {"loc_id": 3673, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Ranged", "count": 8, "x": 3264.0, "z": 2496.0, "px": 2605.1, "py": 2474.0}, {"loc_id": 3674, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr", "count": 8, "x": -4928.0, "z": 384.0, "px": 1207.0, "py": 2113.5}, {"loc_id": 3674, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Ranged", "count": 8, "x": -4928.0, "z": 384.0, "px": 1207.0, "py": 2113.5}, {"loc_id": 3675, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr", "count": 8, "x": -2112.0, "z": 320.0, "px": 1687.6, "py": 2102.6}, {"loc_id": 3676, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Ranged", "count": 8, "x": 896.0, "z": 3264.0, "px": 2200.9, "py": 2605.1}, {"loc_id": 3680, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 8, "x": -7490.7, "z": 4796.9, "px": 769.6, "py": 2866.7}, {"loc_id": 3686, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 8, "x": -8383.0, "z": -828.8, "px": 617.3, "py": 1906.6}, {"loc_id": 3704, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 8, "x": 1728.8, "z": 6406.7, "px": 2343.0, "py": 3141.4}, {"loc_id": 3725, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 8, "x": -1732.3, "z": -4410.7, "px": 1752.4, "py": 1295.2}, {"loc_id": 3726, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 8, "x": 709.5, "z": 507.3, "px": 2169.1, "py": 2134.6}, {"loc_id": 3728, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 8, "x": 515.5, "z": 4612.2, "px": 2136.0, "py": 2835.1}, {"loc_id": 3739, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 8, "x": 7045.3, "z": -4227.9, "px": 3250.4, "py": 1326.4}, {"loc_id": 3752, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 8, "x": -8251.8, "z": -2047.4, "px": 639.7, "py": 1698.6}, {"loc_id": 3757, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 8, "x": 9466.6, "z": 1344.4, "px": 3663.6, "py": 2277.4}, {"loc_id": 3758, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 8, "x": 2043.5, "z": 891.3, "px": 2396.8, "py": 2200.1}, {"loc_id": 3765, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 8, "x": -4349.8, "z": 1666.7, "px": 1305.6, "py": 2332.5}, {"loc_id": 3773, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 8, "x": -5755.6, "z": 4868.9, "px": 1065.7, "py": 2879.0}, {"loc_id": 3793, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 8, "x": 9471.5, "z": 5.8, "px": 3664.5, "py": 2049.0}, {"loc_id": 3798, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 8, "x": -8958.8, "z": 3075.5, "px": 519.0, "py": 2572.9}, {"loc_id": 3802, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 8, "x": -2105.1, "z": 1030.1, "px": 1688.7, "py": 2223.8}, {"loc_id": 3811, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 8, "x": 1413.4, "z": -2500.8, "px": 2289.2, "py": 1621.2}, {"loc_id": 3819, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 8, "x": 5374.1, "z": -962.4, "px": 2965.2, "py": 1883.8}, {"loc_id": 3822, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 8, "x": 2750.4, "z": -4601.0, "px": 2517.4, "py": 1262.8}, {"loc_id": 3842, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 8, "x": -955.8, "z": 259.9, "px": 1884.9, "py": 2092.4}, {"loc_id": 3843, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 8, "x": -7354.8, "z": -4988.7, "px": 792.8, "py": 1196.6}, {"loc_id": 3847, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 8, "x": -4216.1, "z": -257.4, "px": 1328.5, "py": 2004.1}, {"loc_id": 3847, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": -4216.1, "z": -257.4, "px": 1328.5, "py": 2004.1}, {"loc_id": 4109, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 8, "x": 2942.1, "z": 903.8, "px": 2550.1, "py": 2202.2}, {"loc_id": 4110, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 8, "x": -3637.8, "z": 4362.6, "px": 1427.1, "py": 2792.6}, {"loc_id": 4113, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 8, "x": 2939.2, "z": -125.2, "px": 2549.6, "py": 2026.6}, {"loc_id": 4115, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 8, "x": -5001.8, "z": 777.7, "px": 1194.4, "py": 2180.7}, {"loc_id": 4116, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 8, "x": -1589.1, "z": -1726.7, "px": 1776.8, "py": 1753.3}, {"loc_id": 4120, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 8, "x": -6462.9, "z": -4733.3, "px": 945.0, "py": 1240.2}, {"loc_id": 4120, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 8, "x": -6462.9, "z": -4733.3, "px": 945.0, "py": 1240.2}, {"loc_id": 4131, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 8, "x": -5766.6, "z": -5058.9, "px": 1063.8, "py": 1184.6}, {"loc_id": 4131, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": -5766.6, "z": -5058.9, "px": 1063.8, "py": 1184.6}, {"loc_id": 4135, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 2434.5, "z": 5052.4, "px": 2463.5, "py": 2910.3}, {"loc_id": 4140, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 8, "x": 5192.8, "z": -2238.7, "px": 2934.2, "py": 1665.9}, {"loc_id": 4141, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": -8380.7, "z": -710.6, "px": 617.7, "py": 1926.7}, {"loc_id": 4143, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 8, "x": 3581.2, "z": 3573.3, "px": 2659.2, "py": 2657.8}, {"loc_id": 4143, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 8, "x": 3581.2, "z": 3573.3, "px": 2659.2, "py": 2657.8}, {"loc_id": 4149, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 8, "x": 3274.6, "z": -2807.2, "px": 2606.9, "py": 1568.9}, {"loc_id": 4152, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 5113.9, "z": 5255.2, "px": 2920.8, "py": 2944.9}, {"loc_id": 4158, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 8, "x": 1157.1, "z": -5302.3, "px": 2245.5, "py": 1143.1}, {"loc_id": 4161, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 8, "x": 6406.0, "z": 3253.2, "px": 3141.3, "py": 2603.2}, {"loc_id": 4162, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 8, "x": 7496.6, "z": -4341.8, "px": 3327.4, "py": 1307.0}, {"loc_id": 4164, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 8, "x": -7426.8, "z": -4985.2, "px": 780.5, "py": 1197.2}, {"loc_id": 4167, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 447.7, "z": 375.2, "px": 2124.4, "py": 2112.0}, {"loc_id": 4167, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 8, "x": 447.7, "z": 375.2, "px": 2124.4, "py": 2112.0}, {"loc_id": 4169, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 8, "x": 1218.9, "z": -2236.2, "px": 2256.0, "py": 1666.4}, {"loc_id": 4169, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 8, "x": 1218.9, "z": -2236.2, "px": 2256.0, "py": 1666.4}, {"loc_id": 4171, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 8, "x": -4031.3, "z": -2490.3, "px": 1360.0, "py": 1623.0}, {"loc_id": 4174, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 8, "x": 1161.6, "z": 5507.9, "px": 2246.2, "py": 2988.0}, {"loc_id": 4182, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 8, "x": 3142.6, "z": -1276.7, "px": 2584.3, "py": 1830.1}, {"loc_id": 4184, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": -1341.5, "z": -1738.7, "px": 1819.1, "py": 1751.3}, {"loc_id": 4187, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 8, "x": 2357.9, "z": -1343.9, "px": 2450.4, "py": 1818.6}, {"loc_id": 4188, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 3456.5, "z": -2434.8, "px": 2637.9, "py": 1632.5}, {"loc_id": 4193, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 8, "x": 2503.9, "z": -4613.5, "px": 2475.3, "py": 1260.6}, {"loc_id": 4194, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 8, "x": 1215.8, "z": -5496.9, "px": 2255.5, "py": 1109.9}, {"loc_id": 4195, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 8, "x": 3199.5, "z": -2569.3, "px": 2594.0, "py": 1609.5}, {"loc_id": 4196, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 8, "x": 1976.2, "z": -957.5, "px": 2385.3, "py": 1884.6}, {"loc_id": 4196, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 8, "x": 1976.2, "z": -957.5, "px": 2385.3, "py": 1884.6}, {"loc_id": 4200, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 8, "x": 2247.2, "z": 6136.8, "px": 2431.5, "py": 3095.3}, {"loc_id": 4208, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 8, "x": 2693.9, "z": -3652.1, "px": 2507.8, "py": 1424.7}, {"loc_id": 4209, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 8, "x": 4603.6, "z": -5193.7, "px": 2833.7, "py": 1161.6}, {"loc_id": 4221, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 8, "x": -4150.3, "z": -117.1, "px": 1339.7, "py": 2028.0}, {"loc_id": 4238, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 9473.5, "z": 201.9, "px": 3664.8, "py": 2082.5}, {"loc_id": 4239, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 1726.7, "z": -4362.4, "px": 2342.7, "py": 1303.5}, {"loc_id": 4243, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 8, "x": 579.7, "z": 185.9, "px": 2146.9, "py": 2079.7}, {"loc_id": 4244, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": -5828.6, "z": 4542.6, "px": 1053.3, "py": 2823.3}, {"loc_id": 4250, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 8, "x": -4867.6, "z": 5757.0, "px": 1217.3, "py": 3030.5}, {"loc_id": 4262, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 8, "x": 713.0, "z": 5437.3, "px": 2169.7, "py": 2976.0}, {"loc_id": 4266, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 8, "x": 632.8, "z": 5047.1, "px": 2156.0, "py": 2909.4}, {"loc_id": 4268, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 8, "x": 3143.0, "z": -2424.5, "px": 2584.4, "py": 1634.2}, {"loc_id": 4269, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": -1795.6, "z": 3065.6, "px": 1741.6, "py": 2571.2}, {"loc_id": 4283, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 8, "x": -1219.6, "z": -1141.5, "px": 1839.9, "py": 1853.2}, {"loc_id": 4285, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": -9146.8, "z": -1529.4, "px": 486.9, "py": 1787.0}, {"loc_id": 4286, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 772.0, "z": 5308.1, "px": 2179.8, "py": 2953.9}, {"loc_id": 4289, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 7161.4, "z": -4478.0, "px": 3270.2, "py": 1283.8}, {"loc_id": 4301, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 8, "x": 2058.1, "z": -834.7, "px": 2399.2, "py": 1905.5}, {"loc_id": 4308, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 5503.2, "z": -2502.2, "px": 2987.2, "py": 1621.0}, {"loc_id": 4311, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 8, "x": 2953.2, "z": -2112.1, "px": 2552.0, "py": 1687.5}, {"loc_id": 4313, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 8, "x": 968.2, "z": 5495.6, "px": 2213.2, "py": 2985.9}, {"loc_id": 4322, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": -1535.3, "z": -1858.3, "px": 1786.0, "py": 1730.9}, {"loc_id": 4325, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 8, "x": -8960.4, "z": 3145.3, "px": 518.8, "py": 2584.8}, {"loc_id": 4328, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 8, "x": -3191.1, "z": 6518.2, "px": 1503.4, "py": 3160.4}, {"loc_id": 4334, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 8, "x": -4345.2, "z": -6326.3, "px": 1306.4, "py": 968.3}, {"loc_id": 4334, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 8, "x": -4345.2, "z": -6326.3, "px": 1306.4, "py": 968.3}, {"loc_id": 4342, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 8, "x": -8323.5, "z": -1738.5, "px": 627.5, "py": 1751.3}, {"loc_id": 4343, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 3840.5, "z": 1278.9, "px": 2703.4, "py": 2266.3}, {"loc_id": 4348, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 8, "x": 7751.4, "z": -2879.9, "px": 3370.9, "py": 1556.5}, {"loc_id": 4352, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 8, "x": 2186.2, "z": 3782.1, "px": 2421.1, "py": 2693.5}, {"loc_id": 4352, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 2186.2, "z": 3782.1, "px": 2421.1, "py": 2693.5}, {"loc_id": 4366, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 8, "x": 1930.9, "z": 1147.1, "px": 2377.5, "py": 2243.8}, {"loc_id": 4379, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 8, "x": 2684.9, "z": -3701.4, "px": 2506.2, "py": 1416.3}, {"loc_id": 4379, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 8, "x": 2684.9, "z": -3701.4, "px": 2506.2, "py": 1416.3}, {"loc_id": 4382, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 8, "x": -7489.9, "z": -4736.3, "px": 769.7, "py": 1239.7}, {"loc_id": 4396, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 8, "x": 889.9, "z": 3450.9, "px": 2199.9, "py": 2637.0}, {"loc_id": 4397, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 8, "x": 7352.3, "z": -3330.0, "px": 3302.8, "py": 1479.7}, {"loc_id": 4403, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 8, "x": -5239.2, "z": 764.2, "px": 1153.8, "py": 2178.4}, {"loc_id": 4403, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 8, "x": -5239.2, "z": 764.2, "px": 1153.8, "py": 2178.4}, {"loc_id": 4404, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 1985.8, "z": -6334.0, "px": 2386.9, "py": 967.0}, {"loc_id": 4410, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 8, "x": 3274.8, "z": -4.6, "px": 2606.9, "py": 2047.2}, {"loc_id": 4419, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 8, "x": 4991.3, "z": -2122.8, "px": 2899.8, "py": 1685.7}, {"loc_id": 4421, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 8, "x": 5510.4, "z": -969.9, "px": 2988.4, "py": 1882.5}, {"loc_id": 4434, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 8, "x": -9078.9, "z": 3462.7, "px": 498.5, "py": 2639.0}, {"loc_id": 4434, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 8, "x": -9078.9, "z": 3462.7, "px": 498.5, "py": 2639.0}, {"loc_id": 4437, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 6726.1, "z": 4922.7, "px": 3195.9, "py": 2888.1}, {"loc_id": 4437, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 8, "x": 6726.1, "z": 4922.7, "px": 3195.9, "py": 2888.1}, {"loc_id": 4450, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 8, "x": -8954.4, "z": 3016.4, "px": 519.8, "py": 2562.8}, {"loc_id": 4460, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": -7484.5, "z": -4990.2, "px": 770.6, "py": 1196.3}, {"loc_id": 4460, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 8, "x": -7484.5, "z": -4990.2, "px": 770.6, "py": 1196.3}, {"loc_id": 4466, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 8, "x": 1162.4, "z": -2230.1, "px": 2246.4, "py": 1667.4}, {"loc_id": 4469, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 8, "x": 4477.9, "z": -5048.3, "px": 2812.2, "py": 1186.4}, {"loc_id": 4470, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 8, "x": -1216.5, "z": 2569.6, "px": 1840.4, "py": 2486.5}, {"loc_id": 4471, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 8, "x": 6596.3, "z": 3146.6, "px": 3173.8, "py": 2585.0}, {"loc_id": 4471, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 6596.3, "z": 3146.6, "px": 3173.8, "py": 2585.0}, {"loc_id": 4472, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 8, "x": 378.2, "z": 5310.1, "px": 2112.5, "py": 2954.3}, {"loc_id": 4476, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 8, "x": -3898.5, "z": -138.6, "px": 1382.7, "py": 2024.3}, {"loc_id": 4482, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 8, "x": 2112.1, "z": 903.8, "px": 2408.5, "py": 2202.2}, {"loc_id": 4483, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 8, "x": -4800.9, "z": 5752.8, "px": 1228.6, "py": 3029.8}, {"loc_id": 4487, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 1917.8, "z": 7177.5, "px": 2375.3, "py": 3273.0}, {"loc_id": 4494, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 8, "x": -4989.8, "z": 5566.0, "px": 1196.4, "py": 2997.9}, {"loc_id": 4496, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": -886.5, "z": 518.3, "px": 1896.7, "py": 2136.5}, {"loc_id": 4496, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 8, "x": -886.5, "z": 518.3, "px": 1896.7, "py": 2136.5}, {"loc_id": 4497, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 4920.5, "z": 198.6, "px": 2887.8, "py": 2081.9}, {"loc_id": 4497, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 8, "x": 4920.5, "z": 198.6, "px": 2887.8, "py": 2081.9}, {"loc_id": 4500, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": -3201.7, "z": -2365.6, "px": 1501.6, "py": 1644.3}, {"loc_id": 4501, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 1659.5, "z": -898.7, "px": 2331.2, "py": 1894.6}, {"loc_id": 4503, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 8, "x": 8635.6, "z": -1917.6, "px": 3521.8, "py": 1720.7}, {"loc_id": 4504, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 8, "x": 2173.2, "z": -965.9, "px": 2418.9, "py": 1883.2}, {"loc_id": 4507, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 8, "x": 8121.8, "z": -3975.7, "px": 3434.1, "py": 1369.5}, {"loc_id": 6887, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 8, "x": 1148.7, "z": -2164.1, "px": 2244.0, "py": 1678.7}, {"loc_id": 6895, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 8, "x": -533.7, "z": -3822.8, "px": 1956.9, "py": 1395.6}, {"loc_id": 7261, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 8, "x": 756.2, "z": -7291.6, "px": 2177.1, "py": 803.6}, {"loc_id": 7271, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 8, "x": -250.8, "z": -5828.8, "px": 2005.2, "py": 1053.2}, {"loc_id": 7272, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 8, "x": 964.2, "z": 4100.7, "px": 2212.6, "py": 2747.9}, {"loc_id": 7286, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 8, "x": -770.1, "z": -6218.5, "px": 1916.6, "py": 986.7}, {"loc_id": 7293, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 8, "x": -3771.1, "z": 3592.9, "px": 1404.4, "py": 2661.2}, {"loc_id": 7303, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 8, "x": 3842.4, "z": 1670.4, "px": 2703.8, "py": 2333.1}, {"loc_id": 7311, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 8, "x": 7096.2, "z": -1024.0, "px": 3259.1, "py": 1873.2}, {"loc_id": 7321, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 8, "x": 4094.6, "z": 1726.6, "px": 2746.8, "py": 2342.7}, {"loc_id": 7325, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 8, "x": 198.7, "z": 3516.0, "px": 2081.9, "py": 2648.1}, {"loc_id": 7335, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 8, "x": -2486.5, "z": 3911.6, "px": 1623.6, "py": 2715.6}, {"loc_id": 7444, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 8, "x": 5696.0, "z": 2112.0, "px": 3020.1, "py": 2408.4}, {"loc_id": 7445, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 8, "x": 1280.0, "z": 8448.0, "px": 2266.5, "py": 3489.8}, {"loc_id": 7446, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 8, "x": 4544.0, "z": -5632.0, "px": 2823.5, "py": 1086.8}, {"loc_id": 7447, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 8, "x": 9920.0, "z": -1216.0, "px": 3741.0, "py": 1840.5}, {"loc_id": 7448, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 8, "x": 2240.0, "z": 8768.0, "px": 2430.3, "py": 3544.4}, {"loc_id": 7453, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 8, "x": -3584.0, "z": 6464.0, "px": 1436.3, "py": 3151.2}, {"loc_id": 7456, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 8, "x": -128.0, "z": -1344.0, "px": 2026.2, "py": 1818.6}, {"loc_id": 7457, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 8, "x": 2560.0, "z": 896.0, "px": 2484.9, "py": 2200.9}, {"loc_id": 7459, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 8, "x": -6848.0, "z": -2368.0, "px": 879.3, "py": 1643.9}, {"loc_id": 7464, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 8, "x": -6656.0, "z": -1984.0, "px": 912.0, "py": 1709.4}, {"loc_id": 7464, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 8, "x": -6656.0, "z": -1984.0, "px": 912.0, "py": 1709.4}, {"loc_id": 7467, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 8, "x": 2688.0, "z": -2688.0, "px": 2506.8, "py": 1589.2}, {"loc_id": 7468, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 8, "x": 1472.0, "z": 6848.0, "px": 2299.2, "py": 3216.7}, {"loc_id": 7470, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 8, "x": 2624.0, "z": 8576.0, "px": 2495.8, "py": 3511.6}, {"loc_id": 7470, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 8, "x": 2624.0, "z": 8576.0, "px": 2495.8, "py": 3511.6}, {"loc_id": 7472, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 8, "x": 4608.0, "z": -5440.0, "px": 2834.4, "py": 1119.6}, {"loc_id": 7474, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 8, "x": 4480.0, "z": -1792.0, "px": 2812.6, "py": 1742.2}, {"loc_id": 7475, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 8, "x": 6656.0, "z": 6784.0, "px": 3184.0, "py": 3205.8}, {"loc_id": 7478, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 8, "x": 4800.0, "z": -5312.0, "px": 2867.2, "py": 1141.4}, {"loc_id": 7480, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 8, "x": -3776.0, "z": 1408.0, "px": 1403.6, "py": 2288.3}, {"loc_id": 7481, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 8, "x": -832.0, "z": 8512.0, "px": 1906.0, "py": 3500.7}, {"loc_id": 7487, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 8, "x": -3968.0, "z": 5120.0, "px": 1370.8, "py": 2921.8}, {"loc_id": 7487, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 8, "x": -3968.0, "z": 5120.0, "px": 1370.8, "py": 2921.8}, {"loc_id": 7495, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 8, "x": 3328.0, "z": 9280.0, "px": 2616.0, "py": 3631.8}, {"loc_id": 7496, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 8, "x": 4608.0, "z": -5824.0, "px": 2834.4, "py": 1054.0}, {"loc_id": 7498, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 8, "x": -3776.0, "z": 5184.0, "px": 1403.6, "py": 2932.7}, {"loc_id": 7501, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 8, "x": -3840.0, "z": 4736.0, "px": 1392.6, "py": 2856.3}, {"loc_id": 7504, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 8, "x": 5504.0, "z": 64.0, "px": 2987.3, "py": 2058.9}, {"loc_id": 7505, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 8, "x": 5952.0, "z": 4672.0, "px": 3063.8, "py": 2845.4}, {"loc_id": 7506, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 8, "x": 2048.0, "z": 4736.0, "px": 2397.5, "py": 2856.3}, {"loc_id": 7510, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 8, "x": 6592.0, "z": 7104.0, "px": 3173.0, "py": 3260.4}, {"loc_id": 7513, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 8, "x": 3072.0, "z": -1920.0, "px": 2572.3, "py": 1720.3}, {"loc_id": 7514, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 8, "x": -3584.0, "z": 6080.0, "px": 1436.3, "py": 3085.7}, {"loc_id": 7515, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 8, "x": 1216.0, "z": 4864.0, "px": 2255.5, "py": 2878.1}, {"loc_id": 7518, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 8, "x": 2560.0, "z": 8768.0, "px": 2484.9, "py": 3544.4}, {"loc_id": 7519, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 8, "x": -7040.0, "z": -2432.0, "px": 846.5, "py": 1632.9}, {"loc_id": 7521, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 8, "x": 2240.0, "z": -3712.0, "px": 2430.3, "py": 1414.5}, {"loc_id": 7522, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 8, "x": -4032.0, "z": 1408.0, "px": 1359.9, "py": 2288.3}, {"loc_id": 7523, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 8, "x": 6016.0, "z": 4288.0, "px": 3074.7, "py": 2779.8}, {"loc_id": 7523, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 8, "x": 6016.0, "z": 4288.0, "px": 3074.7, "py": 2779.8}, {"loc_id": 7523, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 8, "x": 6016.0, "z": 4288.0, "px": 3074.7, "py": 2779.8}, {"loc_id": 7529, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 8, "x": 2496.0, "z": -3008.0, "px": 2474.0, "py": 1534.6}, {"loc_id": 7530, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 8, "x": 5312.0, "z": -64.0, "px": 2954.6, "py": 2037.1}, {"loc_id": 7531, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 8, "x": 6016.0, "z": 4480.0, "px": 3074.7, "py": 2812.6}, {"loc_id": 7533, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 8, "x": -8576.0, "z": -960.0, "px": 584.4, "py": 1884.2}, {"loc_id": 7537, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 8, "x": 6272.0, "z": 6784.0, "px": 3118.4, "py": 3205.8}, {"loc_id": 7537, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 8, "x": 6272.0, "z": 6784.0, "px": 3118.4, "py": 3205.8}, {"loc_id": 7538, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 8, "x": 6208.0, "z": 4544.0, "px": 3107.5, "py": 2823.5}, {"loc_id": 7539, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 8, "x": 1280.0, "z": -4992.0, "px": 2266.5, "py": 1196.0}, {"loc_id": 7542, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 8, "x": 1088.0, "z": 128.0, "px": 2233.7, "py": 2069.8}, {"loc_id": 7543, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 8, "x": -3904.0, "z": 1728.0, "px": 1381.7, "py": 2342.9}, {"loc_id": 7545, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 8, "x": -192.0, "z": -1536.0, "px": 2015.2, "py": 1785.9}, {"loc_id": 7554, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 8, "x": 3776.0, "z": -128.0, "px": 2692.4, "py": 2026.2}, {"loc_id": 7555, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 8, "x": -6272.0, "z": -448.0, "px": 977.6, "py": 1971.5}, {"loc_id": 7558, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 8, "x": -4416.0, "z": -3840.0, "px": 1294.3, "py": 1392.6}, {"loc_id": 7559, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 8, "x": -4096.0, "z": 1600.0, "px": 1348.9, "py": 2321.1}, {"loc_id": 7562, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 8, "x": 5632.0, "z": 2304.0, "px": 3009.2, "py": 2441.2}, {"loc_id": 7564, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 8, "x": 6400.0, "z": 7040.0, "px": 3140.3, "py": 3249.5}, {"loc_id": 7566, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 8, "x": -4288.0, "z": -1216.0, "px": 1316.2, "py": 1840.5}, {"loc_id": 7566, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 8, "x": -4288.0, "z": -1216.0, "px": 1316.2, "py": 1840.5}, {"loc_id": 7569, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 8, "x": -5376.0, "z": 4992.0, "px": 1130.5, "py": 2900.0}, {"loc_id": 7570, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 8, "x": 1600.0, "z": 7040.0, "px": 2321.1, "py": 3249.5}, {"loc_id": 7570, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 8, "x": 1600.0, "z": 7040.0, "px": 2321.1, "py": 3249.5}, {"loc_id": 7574, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 8, "x": 5760.0, "z": 4800.0, "px": 3031.0, "py": 2867.2}, {"loc_id": 7574, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 8, "x": 5760.0, "z": 4800.0, "px": 3031.0, "py": 2867.2}, {"loc_id": 9946, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 8, "x": -640.0, "z": -9408.0, "px": 1938.8, "py": 442.4}, {"loc_id": 9947, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 8, "x": -2240.0, "z": -8896.0, "px": 1665.7, "py": 529.7}, {"loc_id": 9949, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 8, "x": -896.0, "z": -9536.0, "px": 1895.1, "py": 420.5}, {"loc_id": 9950, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 8, "x": -320.0, "z": -9920.0, "px": 1993.4, "py": 355.0}, {"loc_id": 9955, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 8, "x": -704.0, "z": -9472.0, "px": 1927.9, "py": 431.4}, {"loc_id": 9958, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 8, "x": -2240.0, "z": -8832.0, "px": 1665.7, "py": 540.7}, {"loc_id": 9965, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 8, "x": 768.0, "z": -9344.0, "px": 2179.1, "py": 453.3}, {"loc_id": 9969, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 8, "x": 832.0, "z": -9088.0, "px": 2190.0, "py": 497.0}, {"loc_id": 9985, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 8, "x": 256.0, "z": -8768.0, "px": 2091.7, "py": 551.6}, {"loc_id": 9996, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 8, "x": 384.0, "z": -8832.0, "px": 2113.5, "py": 540.7}, {"loc_id": 10004, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 8, "x": 256.0, "z": -8704.0, "px": 2091.7, "py": 562.5}, {"loc_id": 10267, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 8, "x": -4542.9, "z": -8257.5, "px": 1272.7, "py": 638.7}, {"loc_id": 10268, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 8, "x": 1665.4, "z": -9664.2, "px": 2332.2, "py": 398.6}, {"loc_id": 10270, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 8, "x": -2561.0, "z": -8574.4, "px": 1610.9, "py": 584.6}, {"loc_id": 10279, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 8, "x": 1281.2, "z": -9150.9, "px": 2266.7, "py": 486.2}, {"loc_id": 10287, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 8, "x": -2046.5, "z": -9088.1, "px": 1698.7, "py": 497.0}, {"loc_id": 10289, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 8, "x": -449.6, "z": -9024.5, "px": 1971.3, "py": 507.8}, {"loc_id": 10290, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 8, "x": 1601.4, "z": -9537.5, "px": 2321.3, "py": 420.3}, {"loc_id": 10294, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 8, "x": -2431.1, "z": -8831.4, "px": 1633.1, "py": 540.8}, {"loc_id": 10295, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 8, "x": 1472.7, "z": -9279.2, "px": 2299.3, "py": 464.3}, {"loc_id": 10305, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 8, "x": 129.0, "z": -9025.4, "px": 2070.0, "py": 507.7}, {"loc_id": 10312, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 8, "x": -767.5, "z": -9534.6, "px": 1917.0, "py": 420.8}, {"loc_id": 10318, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 8, "x": 1471.1, "z": -9534.2, "px": 2299.1, "py": 420.8}, {"loc_id": 10321, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 8, "x": -3393.7, "z": -8830.1, "px": 1468.8, "py": 541.0}, {"loc_id": 10322, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 8, "x": 3711.4, "z": -8318.9, "px": 2681.4, "py": 628.2}, {"loc_id": 10324, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 8, "x": -319.8, "z": -9023.4, "px": 1993.4, "py": 508.0}, {"loc_id": 10331, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 8, "x": 1407.2, "z": -9214.8, "px": 2288.2, "py": 475.3}, {"loc_id": 10343, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 8, "x": -1982.5, "z": -8897.5, "px": 1709.7, "py": 529.5}, {"loc_id": 10344, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 8, "x": 3966.5, "z": -8830.6, "px": 2724.9, "py": 540.9}, {"loc_id": 10345, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 8, "x": -2111.5, "z": -8894.8, "px": 1687.6, "py": 530.0}, {"loc_id": 10346, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 8, "x": -830.7, "z": -9857.1, "px": 1906.2, "py": 365.7}, {"loc_id": 10359, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 8, "x": 321.1, "z": -9214.1, "px": 2102.8, "py": 475.5}, {"loc_id": 10695, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 8, "x": -3778.4, "z": -8958.1, "px": 1403.2, "py": 519.2}, {"loc_id": 10717, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 8, "x": 1860.6, "z": -9463.3, "px": 2365.5, "py": 432.9}, {"loc_id": 10820, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 8, "x": -4480.0, "z": -8320.0, "px": 1283.4, "py": 628.1}, {"loc_id": 10844, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 8, "x": -3584.0, "z": -8384.0, "px": 1436.3, "py": 617.1}, {"loc_id": 10855, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 8, "x": -3264.0, "z": -8896.0, "px": 1490.9, "py": 529.7}, {"loc_id": 10882, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 8, "x": -3520.0, "z": -8320.0, "px": 1447.3, "py": 628.1}, {"loc_id": 10883, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 8, "x": 5440.0, "z": -7936.0, "px": 2976.4, "py": 693.6}, {"loc_id": 10902, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 8, "x": -4672.0, "z": -8384.0, "px": 1250.6, "py": 617.1}, {"loc_id": 10903, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 8, "x": 5184.0, "z": -7808.0, "px": 2932.7, "py": 715.4}, {"loc_id": 10907, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 8, "x": 3200.0, "z": -8320.0, "px": 2594.1, "py": 628.1}, {"loc_id": 10910, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 8, "x": -1920.0, "z": -9344.0, "px": 1720.3, "py": 453.3}, {"loc_id": 10914, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 8, "x": -71.1, "z": -9667.8, "px": 2035.9, "py": 398.0}, {"loc_id": 10920, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 8, "x": -519.3, "z": -9667.0, "px": 1959.4, "py": 398.2}, {"loc_id": 10997, "loc_name": "MorgenHole3", "item": "Pickable: Entrails", "count": 8, "x": -1978.8, "z": -9283.9, "px": 1710.3, "py": 463.5}, {"loc_id": 1, "loc_name": "StartTemple", "item": "Pickable: Stone", "count": 7, "x": 1.8, "z": 0.0, "px": 2048.3, "py": 2048.0}, {"loc_id": 22, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": -4353.9, "z": 1157.7, "px": 1304.9, "py": 2245.6}, {"loc_id": 23, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": -590.9, "z": -3594.7, "px": 1947.2, "py": 1434.5}, {"loc_id": 31, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 7, "x": 3723.6, "z": 816.0, "px": 2683.5, "py": 2187.3}, {"loc_id": 32, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 7, "x": 3386.5, "z": -4286.1, "px": 2626.0, "py": 1316.5}, {"loc_id": 34, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": 1475.7, "z": 2164.3, "px": 2299.9, "py": 2417.4}, {"loc_id": 41, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": -4227.6, "z": 396.2, "px": 1326.5, "py": 2115.6}, {"loc_id": 46, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": -2351.2, "z": 4805.5, "px": 1646.7, "py": 2868.1}, {"loc_id": 48, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": -5066.2, "z": 1345.8, "px": 1183.4, "py": 2277.7}, {"loc_id": 48, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 7, "x": -5066.2, "z": 1345.8, "px": 1183.4, "py": 2277.7}, {"loc_id": 51, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": 4555.6, "z": -3149.3, "px": 2825.5, "py": 1510.5}, {"loc_id": 52, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 7, "x": 1297.8, "z": 2051.9, "px": 2269.5, "py": 2398.2}, {"loc_id": 56, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 7, "x": 2178.8, "z": -3206.1, "px": 2419.8, "py": 1500.8}, {"loc_id": 61, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 7, "x": -3631.6, "z": 3121.5, "px": 1428.2, "py": 2580.7}, {"loc_id": 62, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 7, "x": -2356.3, "z": -1007.5, "px": 1645.9, "py": 1876.1}, {"loc_id": 64, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": -4300.6, "z": 656.9, "px": 1314.0, "py": 2160.1}, {"loc_id": 64, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": -4300.6, "z": 656.9, "px": 1314.0, "py": 2160.1}, {"loc_id": 72, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": 4479.3, "z": -2945.6, "px": 2812.5, "py": 1545.3}, {"loc_id": 73, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": -2615.5, "z": -950.2, "px": 1601.6, "py": 1885.8}, {"loc_id": 74, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 7, "x": 4783.1, "z": -691.7, "px": 2864.3, "py": 1929.9}, {"loc_id": 78, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": 4463.0, "z": -3019.3, "px": 2809.7, "py": 1532.7}, {"loc_id": 80, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": 2377.0, "z": -1156.8, "px": 2453.7, "py": 1850.6}, {"loc_id": 80, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": 2377.0, "z": -1156.8, "px": 2453.7, "py": 1850.6}, {"loc_id": 81, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": -888.8, "z": -3716.9, "px": 1896.3, "py": 1413.6}, {"loc_id": 85, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 7, "x": -1139.7, "z": -5705.5, "px": 1853.5, "py": 1074.3}, {"loc_id": 88, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": 2353.7, "z": 270.7, "px": 2449.7, "py": 2094.2}, {"loc_id": 94, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": 4547.2, "z": -3269.9, "px": 2824.1, "py": 1489.9}, {"loc_id": 108, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": 521.3, "z": 2624.5, "px": 2137.0, "py": 2495.9}, {"loc_id": 109, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": -1078.2, "z": -3658.3, "px": 1864.0, "py": 1423.7}, {"loc_id": 110, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": 1466.6, "z": 2232.4, "px": 2298.3, "py": 2429.0}, {"loc_id": 111, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": -264.5, "z": 2509.6, "px": 2002.9, "py": 2476.3}, {"loc_id": 119, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 7, "x": -5197.6, "z": 1466.1, "px": 1160.9, "py": 2298.2}, {"loc_id": 120, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": -5252.1, "z": -1711.3, "px": 1151.6, "py": 1755.9}, {"loc_id": 122, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": 2226.5, "z": 268.7, "px": 2428.0, "py": 2093.9}, {"loc_id": 124, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": 3454.8, "z": -4349.8, "px": 2637.6, "py": 1305.6}, {"loc_id": 125, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": -5361.6, "z": 1717.9, "px": 1133.0, "py": 2341.2}, {"loc_id": 132, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": -2767.1, "z": -1805.5, "px": 1575.7, "py": 1739.9}, {"loc_id": 133, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": -2637.3, "z": -5254.9, "px": 1597.9, "py": 1151.2}, {"loc_id": 140, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 7, "x": 383.1, "z": 2565.9, "px": 2113.4, "py": 2485.9}, {"loc_id": 141, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": -3468.1, "z": 180.0, "px": 1456.1, "py": 2078.7}, {"loc_id": 144, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": 1488.4, "z": 1973.9, "px": 2302.0, "py": 2384.9}, {"loc_id": 145, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": -5130.3, "z": 1350.3, "px": 1172.4, "py": 2278.5}, {"loc_id": 146, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": -1070.8, "z": -5708.6, "px": 1865.3, "py": 1073.7}, {"loc_id": 147, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": -3130.3, "z": 497.4, "px": 1513.8, "py": 2132.9}, {"loc_id": 152, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 7, "x": 3722.0, "z": 717.5, "px": 2683.2, "py": 2170.5}, {"loc_id": 153, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": -5179.6, "z": 1393.9, "px": 1164.0, "py": 2285.9}, {"loc_id": 154, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": -2430.0, "z": 4939.6, "px": 1633.3, "py": 2891.0}, {"loc_id": 157, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 7, "x": -51.9, "z": 2544.7, "px": 2039.1, "py": 2482.3}, {"loc_id": 158, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": -4423.2, "z": 1289.1, "px": 1293.1, "py": 2268.0}, {"loc_id": 160, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 7, "x": -2167.4, "z": 4223.9, "px": 1678.1, "py": 2768.9}, {"loc_id": 162, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": 3787.7, "z": 697.4, "px": 2694.4, "py": 2167.0}, {"loc_id": 164, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": -144.7, "z": 2735.8, "px": 2023.3, "py": 2514.9}, {"loc_id": 170, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": -4366.3, "z": 396.5, "px": 1302.8, "py": 2115.7}, {"loc_id": 171, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 7, "x": 633.0, "z": 2548.8, "px": 2156.0, "py": 2483.0}, {"loc_id": 173, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": 4731.5, "z": -783.9, "px": 2855.5, "py": 1914.2}, {"loc_id": 173, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": 4731.5, "z": -783.9, "px": 2855.5, "py": 1914.2}, {"loc_id": 175, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 7, "x": -3717.0, "z": -4233.5, "px": 1413.6, "py": 1325.5}, {"loc_id": 176, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 7, "x": -1990.7, "z": 4469.7, "px": 1708.3, "py": 2810.8}, {"loc_id": 177, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": -3456.5, "z": 3310.3, "px": 1458.1, "py": 2613.0}, {"loc_id": 186, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 7, "x": -5617.1, "z": -1099.6, "px": 1089.3, "py": 1860.3}, {"loc_id": 186, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": -5617.1, "z": -1099.6, "px": 1089.3, "py": 1860.3}, {"loc_id": 187, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": 4433.2, "z": -3127.0, "px": 2804.6, "py": 1514.3}, {"loc_id": 189, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 7, "x": 1211.9, "z": 2097.1, "px": 2254.8, "py": 2405.9}, {"loc_id": 192, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 7, "x": -5170.2, "z": -656.1, "px": 1165.6, "py": 1936.0}, {"loc_id": 656, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 7, "x": 3008.0, "z": 6848.0, "px": 2561.4, "py": 3216.7}, {"loc_id": 657, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 7, "x": -8320.0, "z": 320.0, "px": 628.1, "py": 2102.6}, {"loc_id": 661, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 7, "x": 9280.0, "z": -1728.0, "px": 3631.8, "py": 1753.1}, {"loc_id": 661, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 7, "x": 9280.0, "z": -1728.0, "px": 3631.8, "py": 1753.1}, {"loc_id": 661, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 7, "x": 9280.0, "z": -1728.0, "px": 3631.8, "py": 1753.1}, {"loc_id": 663, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 7, "x": -1728.0, "z": -7296.0, "px": 1753.1, "py": 802.8}, {"loc_id": 664, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 7, "x": 5952.0, "z": 5120.0, "px": 3063.8, "py": 2921.8}, {"loc_id": 664, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 7, "x": 5952.0, "z": 5120.0, "px": 3063.8, "py": 2921.8}, {"loc_id": 665, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 7, "x": -8640.0, "z": 128.0, "px": 573.4, "py": 2069.8}, {"loc_id": 668, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 7, "x": 5952.0, "z": -4416.0, "px": 3063.8, "py": 1294.3}, {"loc_id": 671, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 7, "x": -6400.0, "z": -3968.0, "px": 955.7, "py": 1370.8}, {"loc_id": 674, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 7, "x": 1664.0, "z": -6784.0, "px": 2332.0, "py": 890.2}, {"loc_id": 676, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 7, "x": -7552.0, "z": -2624.0, "px": 759.1, "py": 1600.2}, {"loc_id": 677, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 7, "x": -8000.0, "z": -4288.0, "px": 682.7, "py": 1316.2}, {"loc_id": 679, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 7, "x": 4096.0, "z": -5888.0, "px": 2747.1, "py": 1043.1}, {"loc_id": 680, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 7, "x": 8128.0, "z": -3136.0, "px": 3435.2, "py": 1512.8}, {"loc_id": 680, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 7, "x": 8128.0, "z": -3136.0, "px": 3435.2, "py": 1512.8}, {"loc_id": 682, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 7, "x": 3904.0, "z": -5632.0, "px": 2714.3, "py": 1086.8}, {"loc_id": 685, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 7, "x": -3072.0, "z": -7104.0, "px": 1523.7, "py": 835.6}, {"loc_id": 685, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 7, "x": -3072.0, "z": -7104.0, "px": 1523.7, "py": 835.6}, {"loc_id": 693, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 7, "x": 5440.0, "z": 3328.0, "px": 2976.4, "py": 2616.0}, {"loc_id": 695, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 7, "x": 7360.0, "z": -3456.0, "px": 3304.1, "py": 1458.2}, {"loc_id": 696, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 7, "x": 4672.0, "z": -4672.0, "px": 2845.4, "py": 1250.6}, {"loc_id": 699, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 7, "x": 3392.0, "z": 5696.0, "px": 2626.9, "py": 3020.1}, {"loc_id": 700, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 7, "x": 8448.0, "z": 896.0, "px": 3489.8, "py": 2200.9}, {"loc_id": 701, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 7, "x": -1152.0, "z": -7040.0, "px": 1851.4, "py": 846.5}, {"loc_id": 702, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 7, "x": 7424.0, "z": -2176.0, "px": 3315.0, "py": 1676.6}, {"loc_id": 702, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 7, "x": 7424.0, "z": -2176.0, "px": 3315.0, "py": 1676.6}, {"loc_id": 702, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 7, "x": 7424.0, "z": -2176.0, "px": 3315.0, "py": 1676.6}, {"loc_id": 705, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 7, "x": 6144.0, "z": -1536.0, "px": 3096.6, "py": 1785.9}, {"loc_id": 714, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 7, "x": -896.0, "z": -7616.0, "px": 1895.1, "py": 748.2}, {"loc_id": 721, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 7, "x": -2560.0, "z": -5760.0, "px": 1611.1, "py": 1065.0}, {"loc_id": 726, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 7, "x": 832.0, "z": -7040.0, "px": 2190.0, "py": 846.5}, {"loc_id": 727, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 7, "x": 6144.0, "z": -4672.0, "px": 3096.6, "py": 1250.6}, {"loc_id": 730, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 7, "x": 8192.0, "z": -832.0, "px": 3446.1, "py": 1906.0}, {"loc_id": 739, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 7, "x": -6912.0, "z": 704.0, "px": 868.4, "py": 2168.1}, {"loc_id": 741, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 7, "x": 6400.0, "z": 4352.0, "px": 3140.3, "py": 2790.7}, {"loc_id": 742, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 7, "x": -5376.0, "z": 4736.0, "px": 1130.5, "py": 2856.3}, {"loc_id": 742, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 7, "x": -5376.0, "z": 4736.0, "px": 1130.5, "py": 2856.3}, {"loc_id": 745, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 7, "x": -5824.0, "z": 3264.0, "px": 1054.0, "py": 2605.1}, {"loc_id": 747, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 7, "x": -7296.0, "z": 1152.0, "px": 802.8, "py": 2244.6}, {"loc_id": 758, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 7, "x": 8896.0, "z": 320.0, "px": 3566.3, "py": 2102.6}, {"loc_id": 760, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 7, "x": 4160.0, "z": -4736.0, "px": 2758.0, "py": 1239.7}, {"loc_id": 762, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 7, "x": 4032.0, "z": -6464.0, "px": 2736.1, "py": 944.8}, {"loc_id": 763, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 7, "x": 3904.0, "z": -7040.0, "px": 2714.3, "py": 846.5}, {"loc_id": 763, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 7, "x": 3904.0, "z": -7040.0, "px": 2714.3, "py": 846.5}, {"loc_id": 768, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 7, "x": -1856.0, "z": 7488.0, "px": 1731.2, "py": 3326.0}, {"loc_id": 775, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 7, "x": 5632.0, "z": 2432.0, "px": 3009.2, "py": 2463.1}, {"loc_id": 777, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 7, "x": 4864.0, "z": 6208.0, "px": 2878.1, "py": 3107.5}, {"loc_id": 777, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 7, "x": 4864.0, "z": 6208.0, "px": 2878.1, "py": 3107.5}, {"loc_id": 779, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 7, "x": 2304.0, "z": -5760.0, "px": 2441.2, "py": 1065.0}, {"loc_id": 780, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 7, "x": -5312.0, "z": -4480.0, "px": 1141.4, "py": 1283.4}, {"loc_id": 782, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 7, "x": -6144.0, "z": 3968.0, "px": 999.4, "py": 2725.2}, {"loc_id": 784, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 7, "x": -3776.0, "z": 5440.0, "px": 1403.6, "py": 2976.4}, {"loc_id": 785, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 7, "x": -192.0, "z": -6400.0, "px": 2015.2, "py": 955.7}, {"loc_id": 785, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 7, "x": -192.0, "z": -6400.0, "px": 2015.2, "py": 955.7}, {"loc_id": 787, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 7, "x": 3200.0, "z": 5504.0, "px": 2594.1, "py": 2987.3}, {"loc_id": 794, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 7, "x": -8320.0, "z": 64.0, "px": 628.1, "py": 2058.9}, {"loc_id": 795, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 7, "x": 8512.0, "z": 576.0, "px": 3500.7, "py": 2146.3}, {"loc_id": 805, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 7, "x": 8640.0, "z": -576.0, "px": 3522.6, "py": 1949.7}, {"loc_id": 805, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 7, "x": 8640.0, "z": -576.0, "px": 3522.6, "py": 1949.7}, {"loc_id": 807, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 7, "x": -2944.0, "z": -6528.0, "px": 1545.6, "py": 933.9}, {"loc_id": 809, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 7, "x": 4416.0, "z": 5568.0, "px": 2801.7, "py": 2998.3}, {"loc_id": 812, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 7, "x": 6848.0, "z": -256.0, "px": 3216.7, "py": 2004.3}, {"loc_id": 816, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 7, "x": -7040.0, "z": 5312.0, "px": 846.5, "py": 2954.6}, {"loc_id": 817, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 7, "x": -6976.0, "z": -1728.0, "px": 857.4, "py": 1753.1}, {"loc_id": 817, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 7, "x": -6976.0, "z": -1728.0, "px": 857.4, "py": 1753.1}, {"loc_id": 817, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 7, "x": -6976.0, "z": -1728.0, "px": 857.4, "py": 1753.1}, {"loc_id": 819, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 7, "x": -6592.0, "z": -4992.0, "px": 923.0, "py": 1196.0}, {"loc_id": 823, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 7, "x": -6720.0, "z": -3328.0, "px": 901.1, "py": 1480.0}, {"loc_id": 824, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 7, "x": -2368.0, "z": -6464.0, "px": 1643.9, "py": 944.8}, {"loc_id": 827, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 7, "x": 6336.0, "z": -1280.0, "px": 3129.3, "py": 1829.5}, {"loc_id": 829, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 7, "x": -4992.0, "z": -3648.0, "px": 1196.0, "py": 1425.4}, {"loc_id": 830, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 7, "x": 9920.0, "z": -192.0, "px": 3741.0, "py": 2015.2}, {"loc_id": 832, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 7, "x": -9216.0, "z": -64.0, "px": 475.1, "py": 2037.1}, {"loc_id": 833, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 7, "x": 6208.0, "z": 5056.0, "px": 3107.5, "py": 2910.9}, {"loc_id": 835, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 7, "x": -8192.0, "z": 2304.0, "px": 649.9, "py": 2441.2}, {"loc_id": 836, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 7, "x": -6592.0, "z": 4800.0, "px": 923.0, "py": 2867.2}, {"loc_id": 836, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 7, "x": -6592.0, "z": 4800.0, "px": 923.0, "py": 2867.2}, {"loc_id": 838, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 7, "x": -1088.0, "z": -6080.0, "px": 1862.3, "py": 1010.3}, {"loc_id": 839, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 7, "x": -8960.0, "z": 1472.0, "px": 518.8, "py": 2299.2}, {"loc_id": 839, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 7, "x": -8960.0, "z": 1472.0, "px": 518.8, "py": 2299.2}, {"loc_id": 841, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 7, "x": 3648.0, "z": -6784.0, "px": 2670.6, "py": 890.2}, {"loc_id": 843, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 7, "x": 9664.0, "z": -768.0, "px": 3697.3, "py": 1916.9}, {"loc_id": 844, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 7, "x": 2560.0, "z": -5568.0, "px": 2484.9, "py": 1097.7}, {"loc_id": 844, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 7, "x": 2560.0, "z": -5568.0, "px": 2484.9, "py": 1097.7}, {"loc_id": 848, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 7, "x": -6016.0, "z": -5568.0, "px": 1021.3, "py": 1097.7}, {"loc_id": 857, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 7, "x": 2368.0, "z": 7296.0, "px": 2452.1, "py": 3293.2}, {"loc_id": 859, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 7, "x": 4288.0, "z": -6080.0, "px": 2779.8, "py": 1010.3}, {"loc_id": 859, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 7, "x": 4288.0, "z": -6080.0, "px": 2779.8, "py": 1010.3}, {"loc_id": 861, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 7, "x": 6656.0, "z": -5504.0, "px": 3184.0, "py": 1108.7}, {"loc_id": 862, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 7, "x": -8128.0, "z": -3968.0, "px": 660.8, "py": 1370.8}, {"loc_id": 862, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 7, "x": -8128.0, "z": -3968.0, "px": 660.8, "py": 1370.8}, {"loc_id": 868, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 7, "x": -7040.0, "z": 1344.0, "px": 846.5, "py": 2277.4}, {"loc_id": 869, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 7, "x": -6528.0, "z": -4416.0, "px": 933.9, "py": 1294.3}, {"loc_id": 869, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 7, "x": -6528.0, "z": -4416.0, "px": 933.9, "py": 1294.3}, {"loc_id": 870, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 7, "x": 5696.0, "z": 3520.0, "px": 3020.1, "py": 2648.7}, {"loc_id": 874, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 7, "x": 1856.0, "z": -6592.0, "px": 2364.8, "py": 923.0}, {"loc_id": 874, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 7, "x": 1856.0, "z": -6592.0, "px": 2364.8, "py": 923.0}, {"loc_id": 877, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 7, "x": -6272.0, "z": -5376.0, "px": 977.6, "py": 1130.5}, {"loc_id": 882, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 7, "x": 7936.0, "z": 3008.0, "px": 3402.4, "py": 2561.4}, {"loc_id": 885, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 7, "x": -5184.0, "z": -3840.0, "px": 1163.3, "py": 1392.6}, {"loc_id": 887, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 7, "x": -7616.0, "z": -3328.0, "px": 748.2, "py": 1480.0}, {"loc_id": 887, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 7, "x": -7616.0, "z": -3328.0, "px": 748.2, "py": 1480.0}, {"loc_id": 891, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 7, "x": 9280.0, "z": 1728.0, "px": 3631.8, "py": 2342.9}, {"loc_id": 892, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 7, "x": -6400.0, "z": 5632.0, "px": 955.7, "py": 3009.2}, {"loc_id": 894, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 7, "x": 5952.0, "z": 2432.0, "px": 3063.8, "py": 2463.1}, {"loc_id": 902, "loc_name": "Hildir_cave", "item": "Pickable: Entrails", "count": 7, "x": -2688.0, "z": 7360.0, "px": 1589.2, "py": 3304.1}, {"loc_id": 914, "loc_name": "Hildir_crypt", "item": "SpawnOnce: Skeleton_Hildir", "count": 7, "x": -7097.0, "z": 2614.7, "px": 836.8, "py": 2494.2}, {"loc_id": 1986, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 7, "x": -1784.6, "z": -4355.4, "px": 1743.4, "py": 1304.7}, {"loc_id": 1988, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 7, "x": -1462.0, "z": -1719.2, "px": 1798.5, "py": 1754.6}, {"loc_id": 1991, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 7, "x": -1736.3, "z": -4225.4, "px": 1751.7, "py": 1326.9}, {"loc_id": 1993, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 7, "x": -5949.7, "z": 1468.8, "px": 1032.6, "py": 2298.7}, {"loc_id": 2001, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -6655.6, "z": -4797.9, "px": 912.1, "py": 1229.2}, {"loc_id": 2002, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 7, "x": 3705.4, "z": 3650.9, "px": 2680.4, "py": 2671.1}, {"loc_id": 2002, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 3705.4, "z": 3650.9, "px": 2680.4, "py": 2671.1}, {"loc_id": 2003, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 7, "x": 709.3, "z": 4485.9, "px": 2169.1, "py": 2813.6}, {"loc_id": 2004, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 5893.1, "z": -707.2, "px": 3053.8, "py": 1927.3}, {"loc_id": 2006, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 3589.3, "z": 3712.8, "px": 2660.6, "py": 2681.7}, {"loc_id": 2014, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 7, "x": 5767.3, "z": 1542.2, "px": 3032.3, "py": 2311.2}, {"loc_id": 2014, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 5767.3, "z": 1542.2, "px": 3032.3, "py": 2311.2}, {"loc_id": 2015, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 7, "x": 4422.3, "z": 6725.0, "px": 2802.7, "py": 3195.7}, {"loc_id": 2016, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 2113.8, "z": 841.5, "px": 2408.8, "py": 2191.6}, {"loc_id": 2016, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 7, "x": 2113.8, "z": 841.5, "px": 2408.8, "py": 2191.6}, {"loc_id": 2018, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 7, "x": 2366.9, "z": -3455.3, "px": 2452.0, "py": 1458.3}, {"loc_id": 2021, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 1212.3, "z": -5636.2, "px": 2254.9, "py": 1086.1}, {"loc_id": 2028, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 7, "x": 9860.3, "z": -1604.7, "px": 3730.8, "py": 1774.1}, {"loc_id": 2032, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 7, "x": -9030.2, "z": 3011.1, "px": 506.8, "py": 2561.9}, {"loc_id": 2035, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 7, "x": -3390.5, "z": 4170.9, "px": 1469.4, "py": 2759.8}, {"loc_id": 2040, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 7, "x": 3391.7, "z": 3514.9, "px": 2626.9, "py": 2647.9}, {"loc_id": 2043, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 7, "x": 7367.4, "z": 3701.7, "px": 3305.4, "py": 2679.8}, {"loc_id": 2043, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 7, "x": 7367.4, "z": 3701.7, "px": 3305.4, "py": 2679.8}, {"loc_id": 2044, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 1789.0, "z": -6149.7, "px": 2353.3, "py": 998.5}, {"loc_id": 2057, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 7, "x": -9792.4, "z": -119.9, "px": 376.8, "py": 2027.5}, {"loc_id": 2065, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 7, "x": 2569.6, "z": -4599.8, "px": 2486.5, "py": 1263.0}, {"loc_id": 2068, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 7, "x": 7799.0, "z": -261.2, "px": 3379.0, "py": 2003.4}, {"loc_id": 2069, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -134.7, "z": -905.2, "px": 2025.0, "py": 1893.5}, {"loc_id": 2069, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 7, "x": -134.7, "z": -905.2, "px": 2025.0, "py": 1893.5}, {"loc_id": 2073, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 7, "x": 7548.2, "z": -2743.2, "px": 3336.2, "py": 1579.8}, {"loc_id": 2073, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 7548.2, "z": -2743.2, "px": 3336.2, "py": 1579.8}, {"loc_id": 2074, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 2555.5, "z": -4361.4, "px": 2484.1, "py": 1303.7}, {"loc_id": 2076, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 1978.5, "z": 1274.9, "px": 2385.7, "py": 2265.6}, {"loc_id": 2076, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 7, "x": 1978.5, "z": 1274.9, "px": 2385.7, "py": 2265.6}, {"loc_id": 2077, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 2107.7, "z": 1143.7, "px": 2407.7, "py": 2243.2}, {"loc_id": 2080, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 7, "x": -381.3, "z": -4345.5, "px": 1982.9, "py": 1306.4}, {"loc_id": 2081, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -9975.8, "z": -134.2, "px": 345.5, "py": 2025.1}, {"loc_id": 2083, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 7, "x": -4296.8, "z": -6398.2, "px": 1314.7, "py": 956.0}, {"loc_id": 2084, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -4355.4, "z": 1795.5, "px": 1304.7, "py": 2354.4}, {"loc_id": 2086, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 7, "x": -2122.5, "z": -3076.8, "px": 1685.8, "py": 1522.9}, {"loc_id": 2087, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 7, "x": 2431.1, "z": -1534.2, "px": 2462.9, "py": 1786.2}, {"loc_id": 2089, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 7, "x": 2170.4, "z": -707.7, "px": 2418.4, "py": 1927.2}, {"loc_id": 2091, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 7, "x": -7615.2, "z": -4745.0, "px": 748.3, "py": 1238.2}, {"loc_id": 2093, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 7, "x": 455.5, "z": 5046.0, "px": 2125.7, "py": 2909.2}, {"loc_id": 2095, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -1910.0, "z": -4163.4, "px": 1722.0, "py": 1337.4}, {"loc_id": 2097, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -4027.5, "z": -2360.5, "px": 1360.6, "py": 1645.1}, {"loc_id": 2097, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 7, "x": -4027.5, "z": -2360.5, "px": 1360.6, "py": 1645.1}, {"loc_id": 2102, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 7, "x": -7167.8, "z": 2488.8, "px": 824.7, "py": 2472.8}, {"loc_id": 2106, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 7, "x": 3317.8, "z": -2698.3, "px": 2614.2, "py": 1587.5}, {"loc_id": 2112, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 7, "x": 5188.7, "z": 5240.8, "px": 2933.5, "py": 2942.4}, {"loc_id": 2119, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 7, "x": 5123.6, "z": 5438.1, "px": 2922.4, "py": 2976.1}, {"loc_id": 2119, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 7, "x": 5123.6, "z": 5438.1, "px": 2922.4, "py": 2976.1}, {"loc_id": 2122, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 7, "x": 1973.5, "z": 3575.7, "px": 2384.8, "py": 2658.3}, {"loc_id": 2123, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -6721.1, "z": 3657.4, "px": 900.9, "py": 2672.2}, {"loc_id": 2125, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 2423.3, "z": 3647.1, "px": 2461.6, "py": 2670.4}, {"loc_id": 2127, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 7, "x": 3769.9, "z": 3914.8, "px": 2691.4, "py": 2716.1}, {"loc_id": 2131, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 7, "x": 3194.2, "z": -2879.3, "px": 2593.1, "py": 1556.6}, {"loc_id": 2131, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 3194.2, "z": -2879.3, "px": 2593.1, "py": 1556.6}, {"loc_id": 2131, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 7, "x": 3194.2, "z": -2879.3, "px": 2593.1, "py": 1556.6}, {"loc_id": 2138, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 7, "x": -1608.3, "z": 4729.8, "px": 1773.5, "py": 2855.2}, {"loc_id": 2142, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 7, "x": -3129.8, "z": 4169.0, "px": 1513.8, "py": 2759.5}, {"loc_id": 2148, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 7, "x": 7106.3, "z": 1216.9, "px": 3260.8, "py": 2255.7}, {"loc_id": 2157, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 7, "x": -2947.2, "z": 4168.6, "px": 1545.0, "py": 2759.4}, {"loc_id": 2157, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 7, "x": -2947.2, "z": 4168.6, "px": 1545.0, "py": 2759.4}, {"loc_id": 2157, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 7, "x": -2947.2, "z": 4168.6, "px": 1545.0, "py": 2759.4}, {"loc_id": 2161, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 3962.9, "z": 7040.8, "px": 2724.3, "py": 3249.6}, {"loc_id": 2167, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 7, "x": 2951.2, "z": -4922.7, "px": 2551.7, "py": 1207.9}, {"loc_id": 2174, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 7, "x": -4168.3, "z": -6390.4, "px": 1336.6, "py": 957.4}, {"loc_id": 2184, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -5509.5, "z": -1928.1, "px": 1107.7, "py": 1718.9}, {"loc_id": 2184, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 7, "x": -5509.5, "z": -1928.1, "px": 1107.7, "py": 1718.9}, {"loc_id": 2392, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 3634.2, "z": 3896.1, "px": 2668.2, "py": 2712.9}, {"loc_id": 2394, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": -5743.3, "z": -1788.7, "px": 1067.8, "py": 1742.7}, {"loc_id": 2395, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": -7380.3, "z": -1778.2, "px": 788.4, "py": 1744.5}, {"loc_id": 2405, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 7253.5, "z": -4409.3, "px": 3285.9, "py": 1295.5}, {"loc_id": 2407, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": -7818.0, "z": -2364.9, "px": 713.7, "py": 1644.4}, {"loc_id": 2408, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 5877.1, "z": -189.6, "px": 3051.0, "py": 2015.6}, {"loc_id": 2409, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 3323.5, "z": -2563.9, "px": 2615.2, "py": 1610.4}, {"loc_id": 2412, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": -3075.7, "z": 4179.5, "px": 1523.1, "py": 2761.3}, {"loc_id": 2414, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 8061.5, "z": 271.2, "px": 3423.8, "py": 2094.3}, {"loc_id": 2419, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 3590.6, "z": 3850.9, "px": 2660.8, "py": 2705.2}, {"loc_id": 2423, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 2056.4, "z": -4407.0, "px": 2399.0, "py": 1295.9}, {"loc_id": 2432, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": -4811.6, "z": 5610.1, "px": 1226.8, "py": 3005.5}, {"loc_id": 2433, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 2500.0, "z": 250.6, "px": 2474.7, "py": 2090.8}, {"loc_id": 2434, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 2284.4, "z": -584.2, "px": 2437.9, "py": 1948.3}, {"loc_id": 2435, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 943.1, "z": -5361.2, "px": 2209.0, "py": 1133.0}, {"loc_id": 2440, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": -3453.7, "z": -1796.8, "px": 1458.6, "py": 1741.3}, {"loc_id": 2454, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": -371.5, "z": 402.2, "px": 1984.6, "py": 2116.6}, {"loc_id": 2456, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 2552.4, "z": -1655.1, "px": 2483.6, "py": 1765.5}, {"loc_id": 2459, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 3905.6, "z": 4970.7, "px": 2714.6, "py": 2896.3}, {"loc_id": 2462, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 2483.9, "z": -4411.3, "px": 2471.9, "py": 1295.1}, {"loc_id": 2468, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 2310.8, "z": 5041.9, "px": 2442.4, "py": 2908.5}, {"loc_id": 2469, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": -3078.2, "z": -2064.8, "px": 1522.7, "py": 1695.6}, {"loc_id": 2472, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 3069.6, "z": -188.3, "px": 2571.9, "py": 2015.9}, {"loc_id": 2475, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 3857.2, "z": 3971.9, "px": 2706.3, "py": 2725.9}, {"loc_id": 2481, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": -4034.0, "z": -81.8, "px": 1359.5, "py": 2034.0}, {"loc_id": 2485, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 846.4, "z": 398.4, "px": 2192.5, "py": 2116.0}, {"loc_id": 2486, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 6645.3, "z": 3080.9, "px": 3182.1, "py": 2573.8}, {"loc_id": 2492, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 3903.8, "z": 5112.7, "px": 2714.2, "py": 2920.6}, {"loc_id": 2498, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": -7315.3, "z": -1969.0, "px": 799.5, "py": 1712.0}, {"loc_id": 2502, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": -5141.8, "z": -1044.0, "px": 1170.5, "py": 1869.8}, {"loc_id": 2504, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 2478.1, "z": -2195.7, "px": 2470.9, "py": 1673.3}, {"loc_id": 2522, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": -694.0, "z": -6484.7, "px": 1929.6, "py": 941.3}, {"loc_id": 2534, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": -1847.7, "z": -4177.6, "px": 1732.7, "py": 1335.0}, {"loc_id": 2535, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 8824.8, "z": -1676.7, "px": 3554.1, "py": 1761.8}, {"loc_id": 2545, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 4556.4, "z": -4938.2, "px": 2825.6, "py": 1205.2}, {"loc_id": 2548, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 1836.0, "z": -6339.4, "px": 2361.3, "py": 966.1}, {"loc_id": 2557, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 2248.5, "z": 4036.0, "px": 2431.7, "py": 2736.8}, {"loc_id": 2561, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 1164.8, "z": 5567.5, "px": 2246.8, "py": 2998.2}, {"loc_id": 2569, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 7, "x": 8893.7, "z": 130.4, "px": 3565.9, "py": 2070.3}, {"loc_id": 3043, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 7, "x": -4863.5, "z": 3966.2, "px": 1218.0, "py": 2724.9}, {"loc_id": 3044, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 7, "x": -1024.1, "z": -4863.7, "px": 1873.2, "py": 1217.9}, {"loc_id": 3053, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 7, "x": -6464.8, "z": -3839.8, "px": 944.7, "py": 1392.7}, {"loc_id": 3057, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 7, "x": -1534.8, "z": -6655.5, "px": 1786.1, "py": 912.1}, {"loc_id": 3066, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 7, "x": 5310.5, "z": 3584.0, "px": 2954.3, "py": 2659.7}, {"loc_id": 3072, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 7, "x": -4353.3, "z": -2241.8, "px": 1305.0, "py": 1665.4}, {"loc_id": 3080, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 7, "x": -3967.4, "z": 3841.4, "px": 1370.9, "py": 2703.6}, {"loc_id": 3083, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 7, "x": 2753.6, "z": -5953.6, "px": 2517.9, "py": 1031.9}, {"loc_id": 3093, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 7, "x": -3136.3, "z": 2494.0, "px": 1512.7, "py": 2473.6}, {"loc_id": 3097, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 7, "x": -7486.5, "z": 2241.7, "px": 770.3, "py": 2430.6}, {"loc_id": 3098, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 7, "x": 3136.5, "z": 2750.3, "px": 2583.3, "py": 2517.4}, {"loc_id": 3100, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 7, "x": -704.8, "z": -6207.4, "px": 1927.7, "py": 988.6}, {"loc_id": 3127, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 7, "x": 5759.4, "z": -4737.0, "px": 3030.9, "py": 1239.6}, {"loc_id": 3138, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 7, "x": 1151.3, "z": 3776.1, "px": 2244.5, "py": 2692.5}, {"loc_id": 3141, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 7, "x": 1857.8, "z": 3713.0, "px": 2365.1, "py": 2681.7}, {"loc_id": 3148, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 7, "x": 7166.5, "z": -958.4, "px": 3271.1, "py": 1884.4}, {"loc_id": 3148, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 7, "x": 7166.5, "z": -958.4, "px": 3271.1, "py": 1884.4}, {"loc_id": 3159, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 7, "x": -2239.2, "z": -1919.6, "px": 1665.8, "py": 1720.4}, {"loc_id": 3162, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 7, "x": 2944.5, "z": 4287.1, "px": 2550.5, "py": 2779.7}, {"loc_id": 3163, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 7, "x": 4927.2, "z": 3326.8, "px": 2888.9, "py": 2615.8}, {"loc_id": 3165, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 7, "x": -2496.7, "z": 3073.0, "px": 1621.9, "py": 2572.5}, {"loc_id": 3176, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 7, "x": 318.1, "z": 5502.9, "px": 2102.3, "py": 2987.2}, {"loc_id": 3177, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 7, "x": 6784.1, "z": 2881.4, "px": 3205.8, "py": 2539.8}, {"loc_id": 3187, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 7, "x": -2942.1, "z": -2560.2, "px": 1545.9, "py": 1611.1}, {"loc_id": 3188, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 7, "x": -5502.5, "z": 5377.2, "px": 1108.9, "py": 2965.7}, {"loc_id": 3189, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 7, "x": 2622.6, "z": -7361.3, "px": 2495.6, "py": 791.7}, {"loc_id": 3190, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 7, "x": -1854.6, "z": 3328.0, "px": 1731.5, "py": 2616.0}, {"loc_id": 3192, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 7, "x": 1664.9, "z": 7424.3, "px": 2332.1, "py": 3315.1}, {"loc_id": 3192, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 7, "x": 1664.9, "z": 7424.3, "px": 2332.1, "py": 3315.1}, {"loc_id": 3193, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 7, "x": 1982.3, "z": -3329.8, "px": 2386.3, "py": 1479.7}, {"loc_id": 3194, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 7, "x": -3327.1, "z": -1663.5, "px": 1480.2, "py": 1764.1}, {"loc_id": 3196, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 7, "x": -961.5, "z": -5887.6, "px": 1883.9, "py": 1043.2}, {"loc_id": 3203, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 7, "x": 3519.8, "z": 3262.7, "px": 2648.7, "py": 2604.8}, {"loc_id": 3207, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 7, "x": -4928.9, "z": -2688.9, "px": 1206.8, "py": 1589.1}, {"loc_id": 3223, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 7, "x": -5888.9, "z": 961.8, "px": 1043.0, "py": 2212.1}, {"loc_id": 3225, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 7, "x": 2945.0, "z": -5056.6, "px": 2550.6, "py": 1185.0}, {"loc_id": 3227, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 7, "x": 769.6, "z": 4094.1, "px": 2179.3, "py": 2746.7}, {"loc_id": 3230, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 7, "x": -4993.4, "z": 3007.5, "px": 1195.8, "py": 2561.3}, {"loc_id": 3261, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 7, "x": 2111.3, "z": -2879.5, "px": 2408.3, "py": 1556.6}, {"loc_id": 3270, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 7, "x": -1973.7, "z": -5510.0, "px": 1711.2, "py": 1107.6}, {"loc_id": 3283, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 7, "x": 4090.8, "z": 6842.0, "px": 2746.2, "py": 3215.7}, {"loc_id": 3292, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 7, "x": -4358.2, "z": -6261.6, "px": 1304.2, "py": 979.4}, {"loc_id": 3296, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 7, "x": -7305.0, "z": 1929.2, "px": 801.3, "py": 2377.3}, {"loc_id": 3301, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 7, "x": 2375.7, "z": -2363.8, "px": 2453.5, "py": 1644.6}, {"loc_id": 3302, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 7, "x": -3138.2, "z": 4035.0, "px": 1512.4, "py": 2736.6}, {"loc_id": 3303, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 7, "x": 4166.7, "z": 888.3, "px": 2759.1, "py": 2199.6}, {"loc_id": 3306, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 7, "x": 4558.2, "z": -885.6, "px": 2825.9, "py": 1896.9}, {"loc_id": 3308, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 7, "x": -4804.2, "z": 2381.5, "px": 1228.1, "py": 2454.4}, {"loc_id": 3312, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 7, "x": -4349.3, "z": -814.8, "px": 1305.7, "py": 1908.9}, {"loc_id": 3317, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 7, "x": -4621.8, "z": -3639.7, "px": 1259.2, "py": 1426.8}, {"loc_id": 3320, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 7, "x": -4272.2, "z": 2059.8, "px": 1318.9, "py": 2399.5}, {"loc_id": 3325, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 7, "x": -5005.9, "z": 1103.6, "px": 1193.7, "py": 2236.3}, {"loc_id": 3666, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Ranged", "count": 7, "x": -4032.0, "z": -2048.0, "px": 1359.9, "py": 1698.5}, {"loc_id": 3668, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Ranged", "count": 7, "x": -1728.0, "z": -1024.0, "px": 1753.1, "py": 1873.2}, {"loc_id": 3671, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr", "count": 7, "x": 2560.0, "z": -3200.0, "px": 2484.9, "py": 1501.9}, {"loc_id": 3675, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Ranged", "count": 7, "x": -2112.0, "z": 320.0, "px": 1687.6, "py": 2102.6}, {"loc_id": 3677, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr", "count": 7, "x": -3712.0, "z": -2048.0, "px": 1414.5, "py": 1698.5}, {"loc_id": 3678, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Ranged", "count": 7, "x": -2752.0, "z": 1792.0, "px": 1578.3, "py": 2353.8}, {"loc_id": 3683, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -1272.0, "z": -1862.3, "px": 1830.9, "py": 1730.2}, {"loc_id": 3699, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": 1724.6, "z": -6208.0, "px": 2342.3, "py": 988.5}, {"loc_id": 3699, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 1724.6, "z": -6208.0, "px": 2342.3, "py": 988.5}, {"loc_id": 3705, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -5948.8, "z": 4473.6, "px": 1032.7, "py": 2811.5}, {"loc_id": 3708, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": 5945.5, "z": -572.3, "px": 3062.7, "py": 1950.3}, {"loc_id": 3713, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": 2237.7, "z": 1601.7, "px": 2429.9, "py": 2321.4}, {"loc_id": 3716, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 7809.1, "z": -2757.9, "px": 3380.8, "py": 1577.3}, {"loc_id": 3721, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": 197.6, "z": -4409.8, "px": 2081.7, "py": 1295.4}, {"loc_id": 3728, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 515.5, "z": 4612.2, "px": 2136.0, "py": 2835.1}, {"loc_id": 3731, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": 380.8, "z": 5241.2, "px": 2113.0, "py": 2942.5}, {"loc_id": 3734, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -3832.3, "z": -313.4, "px": 1394.0, "py": 1994.5}, {"loc_id": 3735, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": -1984.4, "z": -4155.2, "px": 1709.3, "py": 1338.8}, {"loc_id": 3738, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": 5118.3, "z": 5370.0, "px": 2921.5, "py": 2964.5}, {"loc_id": 3744, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": -6714.7, "z": 5381.9, "px": 902.0, "py": 2966.5}, {"loc_id": 3748, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": 7356.0, "z": 1215.8, "px": 3303.4, "py": 2255.5}, {"loc_id": 3750, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 8192.4, "z": -3780.4, "px": 3446.2, "py": 1402.8}, {"loc_id": 3757, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 9466.6, "z": 1344.4, "px": 3663.6, "py": 2277.4}, {"loc_id": 3759, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": 8001.0, "z": -2363.9, "px": 3413.5, "py": 1644.6}, {"loc_id": 3768, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": 8256.0, "z": 256.4, "px": 3457.0, "py": 2091.8}, {"loc_id": 3771, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": -2176.7, "z": 769.5, "px": 1676.5, "py": 2179.3}, {"loc_id": 3772, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": 2047.5, "z": -893.5, "px": 2397.4, "py": 1895.5}, {"loc_id": 3772, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 2047.5, "z": -893.5, "px": 2397.4, "py": 1895.5}, {"loc_id": 3776, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": 1080.6, "z": 5436.8, "px": 2232.4, "py": 2975.9}, {"loc_id": 3777, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -3462.0, "z": 4673.6, "px": 1457.2, "py": 2845.6}, {"loc_id": 3787, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 4221.6, "z": -249.2, "px": 2768.5, "py": 2005.5}, {"loc_id": 3788, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": -7622.4, "z": -4869.7, "px": 747.1, "py": 1216.9}, {"loc_id": 3792, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": -2243.9, "z": -3007.8, "px": 1665.0, "py": 1534.7}, {"loc_id": 3796, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": -9791.4, "z": -195.1, "px": 376.9, "py": 2014.7}, {"loc_id": 3796, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -9791.4, "z": -195.1, "px": 376.9, "py": 2014.7}, {"loc_id": 3797, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": -4099.4, "z": -2360.3, "px": 1348.4, "py": 1645.2}, {"loc_id": 3801, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": -5063.5, "z": 5691.7, "px": 1183.8, "py": 3019.4}, {"loc_id": 3806, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": 772.7, "z": 4862.7, "px": 2179.9, "py": 2877.9}, {"loc_id": 3815, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": 4288.4, "z": -963.1, "px": 2779.9, "py": 1883.6}, {"loc_id": 3817, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 9348.1, "z": 321.7, "px": 3643.4, "py": 2102.9}, {"loc_id": 3827, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": 5115.8, "z": 2815.4, "px": 2921.1, "py": 2528.5}, {"loc_id": 3829, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": 2566.7, "z": 323.5, "px": 2486.1, "py": 2103.2}, {"loc_id": 3830, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": -3133.3, "z": 6651.7, "px": 1513.3, "py": 3183.2}, {"loc_id": 3834, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": 3704.4, "z": 3395.4, "px": 2680.2, "py": 2627.5}, {"loc_id": 3835, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": 4600.8, "z": -5114.6, "px": 2833.2, "py": 1175.1}, {"loc_id": 3836, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": -5689.6, "z": 4606.9, "px": 1077.0, "py": 2834.2}, {"loc_id": 3841, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": 450.3, "z": 642.2, "px": 2124.9, "py": 2157.6}, {"loc_id": 3844, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": -6713.3, "z": 445.6, "px": 902.3, "py": 2124.0}, {"loc_id": 3855, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 7, "x": 1528.8, "z": -449.9, "px": 2308.9, "py": 1971.2}, {"loc_id": 3855, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 1528.8, "z": -449.9, "px": 2308.9, "py": 1971.2}, {"loc_id": 4110, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 7, "x": -3637.8, "z": 4362.6, "px": 1427.1, "py": 2792.6}, {"loc_id": 4118, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 7, "x": -9206.7, "z": 3189.3, "px": 476.7, "py": 2592.3}, {"loc_id": 4119, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 7, "x": 2236.0, "z": -1290.8, "px": 2429.6, "py": 1827.7}, {"loc_id": 4122, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 7, "x": 3384.6, "z": -2614.5, "px": 2625.6, "py": 1601.8}, {"loc_id": 4130, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 7, "x": 4938.7, "z": -2114.9, "px": 2890.9, "py": 1687.1}, {"loc_id": 4131, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 7, "x": -5766.6, "z": -5058.9, "px": 1063.8, "py": 1184.6}, {"loc_id": 4135, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 7, "x": 2434.5, "z": 5052.4, "px": 2463.5, "py": 2910.3}, {"loc_id": 4145, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 7, "x": 761.7, "z": 262.0, "px": 2178.0, "py": 2092.7}, {"loc_id": 4146, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 7, "x": 2298.1, "z": 6275.1, "px": 2440.2, "py": 3119.0}, {"loc_id": 4152, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 7, "x": 5113.9, "z": 5255.2, "px": 2920.8, "py": 2944.9}, {"loc_id": 4153, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 7, "x": -6601.9, "z": 571.6, "px": 921.3, "py": 2145.6}, {"loc_id": 4160, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -8074.3, "z": 376.3, "px": 670.0, "py": 2112.2}, {"loc_id": 4160, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 7, "x": -8074.3, "z": 376.3, "px": 670.0, "py": 2112.2}, {"loc_id": 4163, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 7, "x": -1787.8, "z": -4426.4, "px": 1742.9, "py": 1292.6}, {"loc_id": 4164, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -7426.8, "z": -4985.2, "px": 780.5, "py": 1197.2}, {"loc_id": 4167, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 7, "x": 447.7, "z": 375.2, "px": 2124.4, "py": 2112.0}, {"loc_id": 4171, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 7, "x": -4031.3, "z": -2490.3, "px": 1360.0, "py": 1623.0}, {"loc_id": 4177, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 7, "x": -3203.0, "z": 4417.2, "px": 1501.4, "py": 2801.9}, {"loc_id": 4179, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 7, "x": -7242.2, "z": -4937.2, "px": 812.0, "py": 1205.4}, {"loc_id": 4182, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 3142.6, "z": -1276.7, "px": 2584.3, "py": 1830.1}, {"loc_id": 4185, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 7, "x": -5579.0, "z": -4997.9, "px": 1095.9, "py": 1195.0}, {"loc_id": 4186, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 7, "x": 7875.4, "z": -2620.2, "px": 3392.1, "py": 1600.8}, {"loc_id": 4192, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 7925.4, "z": -2948.4, "px": 3400.6, "py": 1544.8}, {"loc_id": 4199, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 2884.2, "z": -2239.6, "px": 2540.2, "py": 1665.8}, {"loc_id": 4200, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 7, "x": 2247.2, "z": 6136.8, "px": 2431.5, "py": 3095.3}, {"loc_id": 4205, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -7223.4, "z": -4729.8, "px": 815.2, "py": 1240.8}, {"loc_id": 4206, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 7, "x": 7049.9, "z": -4285.7, "px": 3251.2, "py": 1316.6}, {"loc_id": 4213, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -9607.3, "z": 584.3, "px": 408.4, "py": 2147.7}, {"loc_id": 4215, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -3967.1, "z": -2613.4, "px": 1370.9, "py": 1602.0}, {"loc_id": 4218, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 7, "x": -2378.8, "z": 4597.9, "px": 1642.0, "py": 2832.7}, {"loc_id": 4218, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -2378.8, "z": 4597.9, "px": 1642.0, "py": 2832.7}, {"loc_id": 4221, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 7, "x": -4150.3, "z": -117.1, "px": 1339.7, "py": 2028.0}, {"loc_id": 4225, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 7, "x": -3832.3, "z": -2556.2, "px": 1394.0, "py": 1611.7}, {"loc_id": 4226, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 7, "x": 8135.3, "z": -2488.2, "px": 3436.4, "py": 1623.3}, {"loc_id": 4229, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 7, "x": 907.0, "z": 5564.8, "px": 2202.8, "py": 2997.7}, {"loc_id": 4230, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -7741.6, "z": 4344.6, "px": 726.8, "py": 2789.5}, {"loc_id": 4231, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 7, "x": 5060.5, "z": -2175.6, "px": 2911.7, "py": 1676.7}, {"loc_id": 4236, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 7, "x": -5256.6, "z": 5576.3, "px": 1150.9, "py": 2999.7}, {"loc_id": 4238, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 7, "x": 9473.5, "z": 201.9, "px": 3664.8, "py": 2082.5}, {"loc_id": 4239, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 7, "x": 1726.7, "z": -4362.4, "px": 2342.7, "py": 1303.5}, {"loc_id": 4239, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 7, "x": 1726.7, "z": -4362.4, "px": 2342.7, "py": 1303.5}, {"loc_id": 4246, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 7, "x": -5832.1, "z": 1476.6, "px": 1052.7, "py": 2300.0}, {"loc_id": 4248, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 7, "x": -5761.9, "z": 1610.3, "px": 1064.6, "py": 2322.8}, {"loc_id": 4252, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 7, "x": -6152.8, "z": 2296.4, "px": 997.9, "py": 2439.9}, {"loc_id": 4252, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -6152.8, "z": 2296.4, "px": 997.9, "py": 2439.9}, {"loc_id": 4253, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 7, "x": -7557.9, "z": -1993.0, "px": 758.1, "py": 1707.9}, {"loc_id": 4254, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 7, "x": 2185.2, "z": 1205.6, "px": 2420.9, "py": 2253.8}, {"loc_id": 4258, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 7, "x": -1079.5, "z": -5820.3, "px": 1863.8, "py": 1054.7}, {"loc_id": 4274, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -9671.9, "z": -2564.5, "px": 397.3, "py": 1610.3}, {"loc_id": 4282, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 7, "x": -6016.3, "z": 4606.7, "px": 1021.2, "py": 2834.2}, {"loc_id": 4282, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 7, "x": -6016.3, "z": 4606.7, "px": 1021.2, "py": 2834.2}, {"loc_id": 4289, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 7, "x": 7161.4, "z": -4478.0, "px": 3270.2, "py": 1283.8}, {"loc_id": 4290, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 7, "x": -8455.7, "z": -1866.4, "px": 604.9, "py": 1729.5}, {"loc_id": 4292, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 7, "x": 1531.7, "z": 6326.6, "px": 2309.4, "py": 3127.7}, {"loc_id": 4297, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 7, "x": 968.5, "z": 5317.9, "px": 2213.3, "py": 2955.6}, {"loc_id": 4312, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 7, "x": 2168.5, "z": -1334.2, "px": 2418.1, "py": 1820.3}, {"loc_id": 4315, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 7231.3, "z": 1270.3, "px": 3282.1, "py": 2264.8}, {"loc_id": 4321, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 7, "x": -9207.0, "z": 3143.0, "px": 476.7, "py": 2584.4}, {"loc_id": 4321, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": -9207.0, "z": 3143.0, "px": 476.7, "py": 2584.4}, {"loc_id": 4328, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -3191.1, "z": 6518.2, "px": 1503.4, "py": 3160.4}, {"loc_id": 4332, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -9217.9, "z": -2808.8, "px": 474.8, "py": 1568.6}, {"loc_id": 4336, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 7, "x": 2820.0, "z": -4873.7, "px": 2529.3, "py": 1216.2}, {"loc_id": 4336, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 2820.0, "z": -4873.7, "px": 2529.3, "py": 1216.2}, {"loc_id": 4344, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": -9541.9, "z": -313.4, "px": 419.5, "py": 1994.5}, {"loc_id": 4346, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 7, "x": 5045.5, "z": 2760.5, "px": 2909.1, "py": 2519.1}, {"loc_id": 4350, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -5947.4, "z": 1598.8, "px": 1033.0, "py": 2320.9}, {"loc_id": 4351, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 7, "x": -6072.7, "z": 1407.4, "px": 1011.6, "py": 2288.2}, {"loc_id": 4351, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -6072.7, "z": 1407.4, "px": 1011.6, "py": 2288.2}, {"loc_id": 4354, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": -253.6, "z": -4213.8, "px": 2004.7, "py": 1328.8}, {"loc_id": 4355, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 2367.4, "z": 1284.3, "px": 2452.0, "py": 2267.2}, {"loc_id": 4356, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 7, "x": 4296.6, "z": 6795.0, "px": 2781.3, "py": 3207.7}, {"loc_id": 4357, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 7558.7, "z": -2818.9, "px": 3338.0, "py": 1566.9}, {"loc_id": 4358, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": 8125.6, "z": -196.7, "px": 3434.8, "py": 2014.4}, {"loc_id": 4361, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 7, "x": -6843.9, "z": 501.8, "px": 880.0, "py": 2133.6}, {"loc_id": 4363, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 7, "x": 8010.6, "z": 188.7, "px": 3415.1, "py": 2080.2}, {"loc_id": 4364, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 7, "x": -6595.0, "z": 5437.6, "px": 922.5, "py": 2976.0}, {"loc_id": 4371, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 7, "x": 2562.5, "z": -4486.3, "px": 2485.3, "py": 1282.3}, {"loc_id": 4375, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": -8056.8, "z": 2757.5, "px": 673.0, "py": 2518.6}, {"loc_id": 4376, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 7, "x": 2488.8, "z": -1352.3, "px": 2472.8, "py": 1817.2}, {"loc_id": 4378, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": -1334.3, "z": -1916.0, "px": 1820.3, "py": 1721.0}, {"loc_id": 4380, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 5123.8, "z": 5194.0, "px": 2922.5, "py": 2934.4}, {"loc_id": 4381, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": -8694.4, "z": -828.0, "px": 564.2, "py": 1906.7}, {"loc_id": 4388, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 7, "x": 1660.3, "z": -4422.1, "px": 2331.4, "py": 1293.3}, {"loc_id": 4396, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": 889.9, "z": 3450.9, "px": 2199.9, "py": 2637.0}, {"loc_id": 4397, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 7352.3, "z": -3330.0, "px": 3302.8, "py": 1479.7}, {"loc_id": 4400, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": 3450.0, "z": -2686.0, "px": 2636.8, "py": 1589.6}, {"loc_id": 4401, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 7, "x": 2939.6, "z": -257.2, "px": 2549.7, "py": 2004.1}, {"loc_id": 4407, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 7, "x": 9546.9, "z": 63.9, "px": 3677.3, "py": 2058.9}, {"loc_id": 4407, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 9546.9, "z": 63.9, "px": 3677.3, "py": 2058.9}, {"loc_id": 4408, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": -68.7, "z": -4600.0, "px": 2036.3, "py": 1262.9}, {"loc_id": 4409, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 7, "x": -4025.2, "z": -322.6, "px": 1361.0, "py": 1992.9}, {"loc_id": 4410, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": 3274.8, "z": -4.6, "px": 2606.9, "py": 2047.2}, {"loc_id": 4414, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": -1983.0, "z": -831.7, "px": 1709.6, "py": 1906.1}, {"loc_id": 4423, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -5955.5, "z": 4667.7, "px": 1031.6, "py": 2844.6}, {"loc_id": 4430, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -4101.4, "z": -2312.7, "px": 1348.0, "py": 1653.3}, {"loc_id": 4430, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 7, "x": -4101.4, "z": -2312.7, "px": 1348.0, "py": 1653.3}, {"loc_id": 4433, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 7, "x": 6602.0, "z": 4795.5, "px": 3174.7, "py": 2866.4}, {"loc_id": 4436, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": 1152.8, "z": 5443.9, "px": 2244.7, "py": 2977.1}, {"loc_id": 4437, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 7, "x": 6726.1, "z": 4922.7, "px": 3195.9, "py": 2888.1}, {"loc_id": 4438, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -7037.2, "z": 246.7, "px": 847.0, "py": 2090.1}, {"loc_id": 4439, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 7, "x": 5825.4, "z": -4736.0, "px": 3042.2, "py": 1239.7}, {"loc_id": 4440, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 4425.2, "z": 6792.0, "px": 2803.2, "py": 3207.2}, {"loc_id": 4441, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": -192.8, "z": 572.5, "px": 2015.1, "py": 2145.7}, {"loc_id": 4441, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 7, "x": -192.8, "z": 572.5, "px": 2015.1, "py": 2145.7}, {"loc_id": 4442, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 7, "x": 2816.5, "z": -136.0, "px": 2528.7, "py": 2024.8}, {"loc_id": 4443, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 1025.3, "z": -5563.5, "px": 2223.0, "py": 1098.5}, {"loc_id": 4447, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 6773.8, "z": 4795.9, "px": 3204.1, "py": 2866.5}, {"loc_id": 4448, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": -6717.4, "z": 5561.0, "px": 901.6, "py": 2997.1}, {"loc_id": 4452, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -5703.6, "z": 4931.1, "px": 1074.6, "py": 2889.6}, {"loc_id": 4453, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 7, "x": -3274.2, "z": 4359.9, "px": 1489.2, "py": 2792.1}, {"loc_id": 4457, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": -4149.9, "z": -198.9, "px": 1339.8, "py": 2014.1}, {"loc_id": 4457, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 7, "x": -4149.9, "z": -198.9, "px": 1339.8, "py": 2014.1}, {"loc_id": 4463, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 7, "x": 648.8, "z": 309.0, "px": 2158.7, "py": 2100.7}, {"loc_id": 4466, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 1162.4, "z": -2230.1, "px": 2246.4, "py": 1667.4}, {"loc_id": 4471, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": 6596.3, "z": 3146.6, "px": 3173.8, "py": 2585.0}, {"loc_id": 4474, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": -6838.8, "z": 5306.6, "px": 880.8, "py": 2953.7}, {"loc_id": 4474, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -6838.8, "z": 5306.6, "px": 880.8, "py": 2953.7}, {"loc_id": 4478, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -2374.0, "z": -6154.7, "px": 1642.8, "py": 997.6}, {"loc_id": 4479, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": -1589.2, "z": -5703.7, "px": 1776.8, "py": 1074.6}, {"loc_id": 4480, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -124.8, "z": -4743.5, "px": 2026.7, "py": 1238.4}, {"loc_id": 4481, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": -1911.4, "z": -4671.1, "px": 1721.8, "py": 1250.8}, {"loc_id": 4483, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": -4800.9, "z": 5752.8, "px": 1228.6, "py": 3029.8}, {"loc_id": 4489, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": 8070.1, "z": 59.3, "px": 3425.3, "py": 2058.1}, {"loc_id": 4493, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": -3957.2, "z": -2552.7, "px": 1372.6, "py": 1612.3}, {"loc_id": 4498, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 7, "x": 1098.3, "z": -5692.8, "px": 2235.4, "py": 1076.4}, {"loc_id": 4499, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 450.4, "z": 440.0, "px": 2124.9, "py": 2123.1}, {"loc_id": 4499, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 7, "x": 450.4, "z": 440.0, "px": 2124.9, "py": 2123.1}, {"loc_id": 4502, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 7, "x": 1737.4, "z": -1014.3, "px": 2344.5, "py": 1874.9}, {"loc_id": 4502, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 1737.4, "z": -1014.3, "px": 2344.5, "py": 1874.9}, {"loc_id": 4505, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 7, "x": -9609.6, "z": 699.3, "px": 408.0, "py": 2167.3}, {"loc_id": 4506, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 5060.4, "z": -2244.4, "px": 2911.6, "py": 1665.0}, {"loc_id": 4507, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 7, "x": 8121.8, "z": -3975.7, "px": 3434.1, "py": 1369.5}, {"loc_id": 5514, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 7, "x": -6846.2, "z": -2309.9, "px": 879.6, "py": 1653.8}, {"loc_id": 5541, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 7, "x": 8440.8, "z": -3972.8, "px": 3488.6, "py": 1370.0}, {"loc_id": 5545, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 7, "x": 6459.0, "z": 6966.4, "px": 3150.3, "py": 3236.9}, {"loc_id": 6852, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 7, "x": -2360.0, "z": 437.1, "px": 1645.2, "py": 2122.6}, {"loc_id": 6855, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 7, "x": 645.7, "z": 3369.7, "px": 2158.2, "py": 2623.1}, {"loc_id": 6870, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 7, "x": 1687.5, "z": -74.2, "px": 2336.0, "py": 2035.3}, {"loc_id": 6872, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 7, "x": 1811.1, "z": 1291.5, "px": 2357.1, "py": 2268.4}, {"loc_id": 6876, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 7, "x": 429.3, "z": -105.2, "px": 2121.3, "py": 2030.0}, {"loc_id": 6880, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 7, "x": -525.3, "z": -1208.9, "px": 1958.3, "py": 1841.7}, {"loc_id": 7264, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 7, "x": -3014.5, "z": 1163.7, "px": 1533.5, "py": 2246.6}, {"loc_id": 7268, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 7, "x": -4541.8, "z": -3587.7, "px": 1272.9, "py": 1435.7}, {"loc_id": 7270, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 7, "x": 4101.9, "z": 5192.9, "px": 2748.1, "py": 2934.3}, {"loc_id": 7273, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 7, "x": -1911.8, "z": 3008.9, "px": 1721.7, "py": 2561.5}, {"loc_id": 7277, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 7, "x": 3850.4, "z": -649.6, "px": 2705.1, "py": 1937.1}, {"loc_id": 7281, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 7, "x": -3834.6, "z": 3766.6, "px": 1393.6, "py": 2690.8}, {"loc_id": 7295, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 7, "x": -6.6, "z": -4919.3, "px": 2046.9, "py": 1208.4}, {"loc_id": 7298, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 7, "x": 3460.3, "z": -565.6, "px": 2638.6, "py": 1951.5}, {"loc_id": 7302, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 7, "x": 1158.9, "z": 3141.3, "px": 2245.8, "py": 2584.1}, {"loc_id": 7307, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 7, "x": 1350.2, "z": 3386.9, "px": 2278.4, "py": 2626.0}, {"loc_id": 7308, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 7, "x": -2822.0, "z": 5813.2, "px": 1566.4, "py": 3040.1}, {"loc_id": 7315, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 7, "x": 1020.9, "z": -4155.9, "px": 2222.2, "py": 1338.7}, {"loc_id": 7324, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 7, "x": 2304.3, "z": -4997.1, "px": 2441.3, "py": 1195.2}, {"loc_id": 7333, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 7, "x": -1865.7, "z": 3380.8, "px": 1729.6, "py": 2625.0}, {"loc_id": 7341, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 7, "x": -5054.6, "z": -2941.0, "px": 1185.3, "py": 1546.1}, {"loc_id": 7345, "loc_name": "TarPit2", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 7, "x": 4992.3, "z": 4986.5, "px": 2900.0, "py": 2899.0}, {"loc_id": 7447, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 7, "x": 9920.0, "z": -1216.0, "px": 3741.0, "py": 1840.5}, {"loc_id": 7447, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 7, "x": 9920.0, "z": -1216.0, "px": 3741.0, "py": 1840.5}, {"loc_id": 7448, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 7, "x": 2240.0, "z": 8768.0, "px": 2430.3, "py": 3544.4}, {"loc_id": 7448, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 7, "x": 2240.0, "z": 8768.0, "px": 2430.3, "py": 3544.4}, {"loc_id": 7449, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 7, "x": -3328.0, "z": -2048.0, "px": 1480.0, "py": 1698.5}, {"loc_id": 7452, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 7, "x": -2624.0, "z": 7360.0, "px": 1600.2, "py": 3304.1}, {"loc_id": 7458, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 7, "x": 6144.0, "z": 4736.0, "px": 3096.6, "py": 2856.3}, {"loc_id": 7459, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 7, "x": -6848.0, "z": -2368.0, "px": 879.3, "py": 1643.9}, {"loc_id": 7459, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 7, "x": -6848.0, "z": -2368.0, "px": 879.3, "py": 1643.9}, {"loc_id": 7463, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 7, "x": 6400.0, "z": 6592.0, "px": 3140.3, "py": 3173.0}, {"loc_id": 7465, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 7, "x": -5184.0, "z": 5440.0, "px": 1163.3, "py": 2976.4}, {"loc_id": 7465, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 7, "x": -5184.0, "z": 5440.0, "px": 1163.3, "py": 2976.4}, {"loc_id": 7468, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 7, "x": 1472.0, "z": 6848.0, "px": 2299.2, "py": 3216.7}, {"loc_id": 7474, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 7, "x": 4480.0, "z": -1792.0, "px": 2812.6, "py": 1742.2}, {"loc_id": 7474, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 7, "x": 4480.0, "z": -1792.0, "px": 2812.6, "py": 1742.2}, {"loc_id": 7478, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 7, "x": 4800.0, "z": -5312.0, "px": 2867.2, "py": 1141.4}, {"loc_id": 7478, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 7, "x": 4800.0, "z": -5312.0, "px": 2867.2, "py": 1141.4}, {"loc_id": 7481, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 7, "x": -832.0, "z": 8512.0, "px": 1906.0, "py": 3500.7}, {"loc_id": 7483, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 7, "x": -2112.0, "z": -512.0, "px": 1687.6, "py": 1960.6}, {"loc_id": 7483, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 7, "x": -2112.0, "z": -512.0, "px": 1687.6, "py": 1960.6}, {"loc_id": 7486, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 7, "x": 1728.0, "z": 6656.0, "px": 2342.9, "py": 3184.0}, {"loc_id": 7490, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 7, "x": -6848.0, "z": -2176.0, "px": 879.3, "py": 1676.6}, {"loc_id": 7493, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 7, "x": 1344.0, "z": 6656.0, "px": 2277.4, "py": 3184.0}, {"loc_id": 7495, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 7, "x": 3328.0, "z": 9280.0, "px": 2616.0, "py": 3631.8}, {"loc_id": 7495, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 7, "x": 3328.0, "z": 9280.0, "px": 2616.0, "py": 3631.8}, {"loc_id": 7498, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 7, "x": -3776.0, "z": 5184.0, "px": 1403.6, "py": 2932.7}, {"loc_id": 7501, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 7, "x": -3840.0, "z": 4736.0, "px": 1392.6, "py": 2856.3}, {"loc_id": 7507, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 7, "x": -5056.0, "z": 2688.0, "px": 1185.1, "py": 2506.8}, {"loc_id": 7512, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 7, "x": 5632.0, "z": -512.0, "px": 3009.2, "py": 1960.6}, {"loc_id": 7516, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 7, "x": 3008.0, "z": 576.0, "px": 2561.4, "py": 2146.3}, {"loc_id": 7519, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 7, "x": -7040.0, "z": -2432.0, "px": 846.5, "py": 1632.9}, {"loc_id": 7520, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 7, "x": 512.0, "z": 3776.0, "px": 2135.4, "py": 2692.4}, {"loc_id": 7524, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 7, "x": 4288.0, "z": -1856.0, "px": 2779.8, "py": 1731.2}, {"loc_id": 7524, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 7, "x": 4288.0, "z": -1856.0, "px": 2779.8, "py": 1731.2}, {"loc_id": 7527, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 7, "x": -3392.0, "z": 6336.0, "px": 1469.1, "py": 3129.3}, {"loc_id": 7536, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 7, "x": 2112.0, "z": -3520.0, "px": 2408.4, "py": 1447.3}, {"loc_id": 7539, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 7, "x": 1280.0, "z": -4992.0, "px": 2266.5, "py": 1196.0}, {"loc_id": 7540, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 7, "x": 1344.0, "z": 7040.0, "px": 2277.4, "py": 3249.5}, {"loc_id": 7542, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 7, "x": 1088.0, "z": 128.0, "px": 2233.7, "py": 2069.8}, {"loc_id": 7544, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 7, "x": -2432.0, "z": 1920.0, "px": 1632.9, "py": 2375.7}, {"loc_id": 7548, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 7, "x": -960.0, "z": 8704.0, "px": 1884.2, "py": 3533.5}, {"loc_id": 7549, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 7, "x": 2496.0, "z": -2560.0, "px": 2474.0, "py": 1611.1}, {"loc_id": 7559, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 7, "x": -4096.0, "z": 1600.0, "px": 1348.9, "py": 2321.1}, {"loc_id": 7562, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 7, "x": 5632.0, "z": 2304.0, "px": 3009.2, "py": 2441.2}, {"loc_id": 7566, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 7, "x": -4288.0, "z": -1216.0, "px": 1316.2, "py": 1840.5}, {"loc_id": 7566, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 7, "x": -4288.0, "z": -1216.0, "px": 1316.2, "py": 1840.5}, {"loc_id": 7567, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 7, "x": 2048.0, "z": -1600.0, "px": 2397.5, "py": 1774.9}, {"loc_id": 7568, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 7, "x": 1536.0, "z": 6592.0, "px": 2310.1, "py": 3173.0}, {"loc_id": 7572, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 7, "x": 3648.0, "z": -704.0, "px": 2670.6, "py": 1927.9}, {"loc_id": 9951, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 7, "x": -384.0, "z": -9920.0, "px": 1982.5, "py": 355.0}, {"loc_id": 9955, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 7, "x": -704.0, "z": -9472.0, "px": 1927.9, "py": 431.4}, {"loc_id": 9959, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 7, "x": 768.0, "z": -9088.0, "px": 2179.1, "py": 497.0}, {"loc_id": 9959, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 7, "x": 768.0, "z": -9088.0, "px": 2179.1, "py": 497.0}, {"loc_id": 9961, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 7, "x": 704.0, "z": -9024.0, "px": 2168.1, "py": 507.9}, {"loc_id": 9962, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 7, "x": 576.0, "z": -9408.0, "px": 2146.3, "py": 442.4}, {"loc_id": 9962, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 7, "x": 576.0, "z": -9408.0, "px": 2146.3, "py": 442.4}, {"loc_id": 9970, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 7, "x": -512.0, "z": -9152.0, "px": 1960.6, "py": 486.1}, {"loc_id": 9973, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 7, "x": -704.0, "z": -9344.0, "px": 1927.9, "py": 453.3}, {"loc_id": 9977, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 7, "x": -768.0, "z": -8960.0, "px": 1916.9, "py": 518.8}, {"loc_id": 9980, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 7, "x": -768.0, "z": -9344.0, "px": 1916.9, "py": 453.3}, {"loc_id": 9981, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 7, "x": -448.0, "z": -8832.0, "px": 1971.5, "py": 540.7}, {"loc_id": 9994, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 7, "x": -640.0, "z": -9280.0, "px": 1938.8, "py": 464.2}, {"loc_id": 9998, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 7, "x": 768.0, "z": -9280.0, "px": 2179.1, "py": 464.2}, {"loc_id": 9999, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 7, "x": 1536.0, "z": -9088.0, "px": 2310.1, "py": 497.0}, {"loc_id": 9999, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 7, "x": 1536.0, "z": -9088.0, "px": 2310.1, "py": 497.0}, {"loc_id": 10005, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 7, "x": 384.0, "z": -8704.0, "px": 2113.5, "py": 562.5}, {"loc_id": 10005, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 7, "x": 384.0, "z": -8704.0, "px": 2113.5, "py": 562.5}, {"loc_id": 10011, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 7, "x": 384.0, "z": -8640.0, "px": 2113.5, "py": 573.4}, {"loc_id": 10012, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 7, "x": 448.0, "z": -9344.0, "px": 2124.5, "py": 453.3}, {"loc_id": 10015, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 7, "x": 640.0, "z": -8960.0, "px": 2157.2, "py": 518.8}, {"loc_id": 10269, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 7, "x": 3326.5, "z": -8382.5, "px": 2615.7, "py": 617.4}, {"loc_id": 10273, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 7, "x": -3968.0, "z": -9087.8, "px": 1370.8, "py": 497.0}, {"loc_id": 10275, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 7, "x": 192.0, "z": -8640.9, "px": 2080.8, "py": 573.3}, {"loc_id": 10277, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 7, "x": -577.4, "z": -9470.8, "px": 1949.5, "py": 431.7}, {"loc_id": 10292, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 7, "x": -1025.5, "z": -9664.1, "px": 1873.0, "py": 398.7}, {"loc_id": 10296, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 7, "x": -1342.8, "z": -9727.3, "px": 1818.8, "py": 387.9}, {"loc_id": 10301, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 7, "x": 768.9, "z": -8895.9, "px": 2179.2, "py": 529.8}, {"loc_id": 10306, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 7, "x": 1664.0, "z": -9280.0, "px": 2332.0, "py": 464.2}, {"loc_id": 10308, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 7, "x": 2944.4, "z": -9218.0, "px": 2550.5, "py": 474.8}, {"loc_id": 10311, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 7, "x": 1025.8, "z": -9216.3, "px": 2223.1, "py": 475.1}, {"loc_id": 10325, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 7, "x": 704.2, "z": -8831.1, "px": 2168.2, "py": 540.8}, {"loc_id": 10327, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 7, "x": 3390.5, "z": -8447.7, "px": 2626.6, "py": 606.3}, {"loc_id": 10336, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 7, "x": 513.8, "z": -8961.7, "px": 2135.7, "py": 518.5}, {"loc_id": 10339, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 7, "x": -1089.6, "z": -9473.9, "px": 1862.0, "py": 431.1}, {"loc_id": 10355, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 7, "x": -2366.3, "z": -8448.3, "px": 1644.2, "py": 606.2}, {"loc_id": 10357, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 7, "x": 2688.7, "z": -9152.5, "px": 2506.9, "py": 486.0}, {"loc_id": 10680, "loc_name": "CharredTowerRuins1", "item": "Pickable: Fiddleheadfern", "count": 7, "x": -3000.9, "z": -9023.3, "px": 1535.8, "py": 508.0}, {"loc_id": 10708, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Fiddleheadfern", "count": 7, "x": 194.0, "z": -8583.6, "px": 2081.1, "py": 583.1}, {"loc_id": 10813, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 7, "x": 128.0, "z": -9536.0, "px": 2069.8, "py": 420.5}, {"loc_id": 10815, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 7, "x": -5376.0, "z": -7552.0, "px": 1130.5, "py": 759.1}, {"loc_id": 10818, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 7, "x": -1216.0, "z": -9728.0, "px": 1840.5, "py": 387.8}, {"loc_id": 10822, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 7, "x": 2240.0, "z": -8384.0, "px": 2430.3, "py": 617.1}, {"loc_id": 10826, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 7, "x": 3904.0, "z": -8704.0, "px": 2714.3, "py": 562.5}, {"loc_id": 10829, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 7, "x": 2112.0, "z": -9664.0, "px": 2408.4, "py": 398.7}, {"loc_id": 10835, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 7, "x": 1344.0, "z": -9600.0, "px": 2277.4, "py": 409.6}, {"loc_id": 10844, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 7, "x": -3584.0, "z": -8384.0, "px": 1436.3, "py": 617.1}, {"loc_id": 10846, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 7, "x": 896.0, "z": -9024.0, "px": 2200.9, "py": 507.9}, {"loc_id": 10858, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 7, "x": -5440.0, "z": -7616.0, "px": 1119.6, "py": 748.2}, {"loc_id": 10860, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 7, "x": 2368.0, "z": -8832.0, "px": 2452.1, "py": 540.7}, {"loc_id": 10863, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 7, "x": 2176.0, "z": -8320.0, "px": 2419.4, "py": 628.1}, {"loc_id": 10872, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 7, "x": 2240.0, "z": -9408.0, "px": 2430.3, "py": 442.4}, {"loc_id": 10875, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 7, "x": 1792.0, "z": -8576.0, "px": 2353.8, "py": 584.4}, {"loc_id": 10879, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 7, "x": 3072.0, "z": -9280.0, "px": 2572.3, "py": 464.2}, {"loc_id": 10884, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 7, "x": -1408.0, "z": -9408.0, "px": 1807.7, "py": 442.4}, {"loc_id": 10891, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 7, "x": 2240.0, "z": -9088.0, "px": 2430.3, "py": 497.0}, {"loc_id": 10896, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 7, "x": 192.0, "z": -9472.0, "px": 2080.8, "py": 431.4}, {"loc_id": 10897, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 7, "x": 1856.0, "z": -8512.0, "px": 2364.8, "py": 595.3}, {"loc_id": 10899, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 7, "x": 3648.0, "z": -8256.0, "px": 2670.6, "py": 639.0}, {"loc_id": 10924, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 7, "x": 2427.9, "z": -8894.9, "px": 2462.4, "py": 529.9}, {"loc_id": 10961, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 7, "x": -2115.5, "z": -8827.0, "px": 1687.0, "py": 541.5}, {"loc_id": 10994, "loc_name": "MorgenHole3", "item": "Pickable: Entrails", "count": 7, "x": 376.8, "z": -9274.9, "px": 2112.3, "py": 465.1}, {"loc_id": 11003, "loc_name": "MorgenHole3", "item": "Pickable: Entrails", "count": 7, "x": -3580.8, "z": -8260.6, "px": 1436.9, "py": 638.2}, {"loc_id": 19, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 6, "x": 3320.3, "z": 4792.1, "px": 2614.7, "py": 2865.9}, {"loc_id": 20, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 6, "x": -2682.3, "z": -5191.9, "px": 1590.2, "py": 1161.9}, {"loc_id": 20, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": -2682.3, "z": -5191.9, "px": 1590.2, "py": 1161.9}, {"loc_id": 21, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 6, "x": -4146.8, "z": 3646.5, "px": 1340.3, "py": 2670.3}, {"loc_id": 25, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": 1095.0, "z": 4349.5, "px": 2234.9, "py": 2790.3}, {"loc_id": 25, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 6, "x": 1095.0, "z": 4349.5, "px": 2234.9, "py": 2790.3}, {"loc_id": 28, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": 4720.8, "z": -717.3, "px": 2853.7, "py": 1925.6}, {"loc_id": 30, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": -525.6, "z": -3575.0, "px": 1958.3, "py": 1437.9}, {"loc_id": 33, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": 1739.5, "z": 4407.1, "px": 2344.9, "py": 2800.1}, {"loc_id": 33, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 6, "x": 1739.5, "z": 4407.1, "px": 2344.9, "py": 2800.1}, {"loc_id": 37, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": -384.0, "z": 2571.6, "px": 1982.5, "py": 2486.9}, {"loc_id": 45, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": -2578.0, "z": -1589.3, "px": 1608.0, "py": 1776.8}, {"loc_id": 45, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": -2578.0, "z": -1589.3, "px": 1608.0, "py": 1776.8}, {"loc_id": 46, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": -2351.2, "z": 4805.5, "px": 1646.7, "py": 2868.1}, {"loc_id": 48, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 6, "x": -5066.2, "z": 1345.8, "px": 1183.4, "py": 2277.7}, {"loc_id": 50, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": -773.5, "z": -3723.6, "px": 1916.0, "py": 1412.5}, {"loc_id": 55, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 6, "x": -5323.0, "z": -1724.1, "px": 1139.5, "py": 1753.8}, {"loc_id": 59, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": -3448.5, "z": 3407.3, "px": 1459.5, "py": 2629.5}, {"loc_id": 62, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": -2356.3, "z": -1007.5, "px": 1645.9, "py": 1876.1}, {"loc_id": 63, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 6, "x": 1654.7, "z": 4477.8, "px": 2330.4, "py": 2812.2}, {"loc_id": 64, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 6, "x": -4300.6, "z": 656.9, "px": 1314.0, "py": 2160.1}, {"loc_id": 67, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": -79.4, "z": 2703.3, "px": 2034.4, "py": 2509.4}, {"loc_id": 75, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": -5701.0, "z": -1147.1, "px": 1075.0, "py": 1852.2}, {"loc_id": 75, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 6, "x": -5701.0, "z": -1147.1, "px": 1075.0, "py": 1852.2}, {"loc_id": 77, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": 2296.4, "z": -3207.7, "px": 2439.9, "py": 1500.6}, {"loc_id": 78, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": 4463.0, "z": -3019.3, "px": 2809.7, "py": 1532.7}, {"loc_id": 80, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 6, "x": 2377.0, "z": -1156.8, "px": 2453.7, "py": 1850.6}, {"loc_id": 81, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 6, "x": -888.8, "z": -3716.9, "px": 1896.3, "py": 1413.6}, {"loc_id": 82, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": -629.5, "z": -3515.5, "px": 1940.6, "py": 1448.0}, {"loc_id": 83, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": 1649.5, "z": 4335.2, "px": 2329.5, "py": 2787.9}, {"loc_id": 86, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": -3576.1, "z": 180.7, "px": 1437.7, "py": 2078.8}, {"loc_id": 87, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 6, "x": 3310.7, "z": -4417.7, "px": 2613.0, "py": 1294.0}, {"loc_id": 89, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 6, "x": -1936.1, "z": 4537.9, "px": 1717.6, "py": 2822.5}, {"loc_id": 89, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": -1936.1, "z": 4537.9, "px": 1717.6, "py": 2822.5}, {"loc_id": 90, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": -582.8, "z": -3968.2, "px": 1948.5, "py": 1370.8}, {"loc_id": 91, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": -5102.0, "z": -771.2, "px": 1177.3, "py": 1916.4}, {"loc_id": 91, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": -5102.0, "z": -771.2, "px": 1177.3, "py": 1916.4}, {"loc_id": 92, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 6, "x": 1287.0, "z": 2118.5, "px": 2267.6, "py": 2409.6}, {"loc_id": 95, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": -4304.7, "z": 337.4, "px": 1313.3, "py": 2105.6}, {"loc_id": 99, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": -1920.0, "z": 4600.7, "px": 1720.3, "py": 2833.2}, {"loc_id": 101, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": -1014.2, "z": -5639.2, "px": 1874.9, "py": 1085.6}, {"loc_id": 106, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": -2182.9, "z": 4304.1, "px": 1675.5, "py": 2782.6}, {"loc_id": 110, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": 1466.6, "z": 2232.4, "px": 2298.3, "py": 2429.0}, {"loc_id": 115, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": -61.9, "z": 2612.1, "px": 2037.4, "py": 2493.8}, {"loc_id": 116, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": 2291.5, "z": 250.0, "px": 2439.1, "py": 2090.7}, {"loc_id": 120, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": -5252.1, "z": -1711.3, "px": 1151.6, "py": 1755.9}, {"loc_id": 123, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 6, "x": 2317.7, "z": 334.7, "px": 2443.6, "py": 2105.1}, {"loc_id": 126, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": 2176.0, "z": 447.6, "px": 2419.4, "py": 2124.4}, {"loc_id": 127, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": 3631.1, "z": 716.1, "px": 2667.7, "py": 2170.2}, {"loc_id": 130, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 6, "x": 4748.1, "z": -509.7, "px": 2858.3, "py": 1961.0}, {"loc_id": 131, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 6, "x": 64.3, "z": 2610.1, "px": 2059.0, "py": 2493.5}, {"loc_id": 136, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 6, "x": 1096.3, "z": -3647.7, "px": 2235.1, "py": 1425.5}, {"loc_id": 137, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": 2561.4, "z": -16.1, "px": 2485.1, "py": 2045.3}, {"loc_id": 137, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 6, "x": 2561.4, "z": -16.1, "px": 2485.1, "py": 2045.3}, {"loc_id": 138, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": -2417.8, "z": -4091.4, "px": 1635.4, "py": 1349.7}, {"loc_id": 139, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": 3504.5, "z": 1327.7, "px": 2646.1, "py": 2274.6}, {"loc_id": 140, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": 383.1, "z": 2565.9, "px": 2113.4, "py": 2485.9}, {"loc_id": 141, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": -3468.1, "z": 180.0, "px": 1456.1, "py": 2078.7}, {"loc_id": 142, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": -5046.4, "z": 1265.2, "px": 1186.7, "py": 2263.9}, {"loc_id": 145, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 6, "x": -5130.3, "z": 1350.3, "px": 1172.4, "py": 2278.5}, {"loc_id": 145, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": -5130.3, "z": 1350.3, "px": 1172.4, "py": 2278.5}, {"loc_id": 147, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": -3130.3, "z": 497.4, "px": 1513.8, "py": 2132.9}, {"loc_id": 150, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": 3631.8, "z": 1023.6, "px": 2667.8, "py": 2222.7}, {"loc_id": 151, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": -3642.6, "z": -4094.0, "px": 1426.3, "py": 1349.3}, {"loc_id": 153, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 6, "x": -5179.6, "z": 1393.9, "px": 1164.0, "py": 2285.9}, {"loc_id": 154, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": -2430.0, "z": 4939.6, "px": 1633.3, "py": 2891.0}, {"loc_id": 155, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 6, "x": -5362.2, "z": 1582.8, "px": 1132.9, "py": 2318.1}, {"loc_id": 158, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": -4423.2, "z": 1289.1, "px": 1293.1, "py": 2268.0}, {"loc_id": 159, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": -4406.6, "z": 1211.3, "px": 1295.9, "py": 2254.7}, {"loc_id": 159, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 6, "x": -4406.6, "z": 1211.3, "px": 1295.9, "py": 2254.7}, {"loc_id": 160, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": -2167.4, "z": 4223.9, "px": 1678.1, "py": 2768.9}, {"loc_id": 160, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": -2167.4, "z": 4223.9, "px": 1678.1, "py": 2768.9}, {"loc_id": 161, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 6, "x": -2701.2, "z": -912.1, "px": 1587.0, "py": 1892.3}, {"loc_id": 162, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": 3787.7, "z": 697.4, "px": 2694.4, "py": 2167.0}, {"loc_id": 163, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 6, "x": 4625.9, "z": -3085.3, "px": 2837.5, "py": 1521.4}, {"loc_id": 164, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 6, "x": -144.7, "z": 2735.8, "px": 2023.3, "py": 2514.9}, {"loc_id": 166, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": -2244.3, "z": 4276.9, "px": 1665.0, "py": 2777.9}, {"loc_id": 166, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 6, "x": -2244.3, "z": 4276.9, "px": 1665.0, "py": 2777.9}, {"loc_id": 170, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 6, "x": -4366.3, "z": 396.5, "px": 1302.8, "py": 2115.7}, {"loc_id": 175, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": -3717.0, "z": -4233.5, "px": 1413.6, "py": 1325.5}, {"loc_id": 176, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 6, "x": -1990.7, "z": 4469.7, "px": 1708.3, "py": 2810.8}, {"loc_id": 177, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 6, "x": -3456.5, "z": 3310.3, "px": 1458.1, "py": 2613.0}, {"loc_id": 185, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 6, "x": 12.0, "z": 2560.5, "px": 2050.0, "py": 2485.0}, {"loc_id": 188, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 6, "x": 4725.5, "z": -880.8, "px": 2854.5, "py": 1897.7}, {"loc_id": 657, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 6, "x": -8320.0, "z": 320.0, "px": 628.1, "py": 2102.6}, {"loc_id": 658, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 6, "x": -1856.0, "z": -6976.0, "px": 1731.2, "py": 857.4}, {"loc_id": 660, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 6, "x": -6080.0, "z": -896.0, "px": 1010.3, "py": 1895.1}, {"loc_id": 661, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 6, "x": 9280.0, "z": -1728.0, "px": 3631.8, "py": 1753.1}, {"loc_id": 665, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 6, "x": -8640.0, "z": 128.0, "px": 573.4, "py": 2069.8}, {"loc_id": 666, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 6, "x": 3072.0, "z": 6336.0, "px": 2572.3, "py": 3129.3}, {"loc_id": 666, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": 3072.0, "z": 6336.0, "px": 2572.3, "py": 3129.3}, {"loc_id": 667, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 6, "x": -2752.0, "z": -6016.0, "px": 1578.3, "py": 1021.3}, {"loc_id": 667, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 6, "x": -2752.0, "z": -6016.0, "px": 1578.3, "py": 1021.3}, {"loc_id": 673, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 6, "x": 7296.0, "z": -5056.0, "px": 3293.2, "py": 1185.1}, {"loc_id": 674, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 6, "x": 1664.0, "z": -6784.0, "px": 2332.0, "py": 890.2}, {"loc_id": 675, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 6, "x": -6912.0, "z": 1088.0, "px": 868.4, "py": 2233.7}, {"loc_id": 677, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": -8000.0, "z": -4288.0, "px": 682.7, "py": 1316.2}, {"loc_id": 679, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 6, "x": 4096.0, "z": -5888.0, "px": 2747.1, "py": 1043.1}, {"loc_id": 680, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 6, "x": 8128.0, "z": -3136.0, "px": 3435.2, "py": 1512.8}, {"loc_id": 681, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 6, "x": -8576.0, "z": 2112.0, "px": 584.4, "py": 2408.4}, {"loc_id": 682, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 6, "x": 3904.0, "z": -5632.0, "px": 2714.3, "py": 1086.8}, {"loc_id": 685, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 6, "x": -3072.0, "z": -7104.0, "px": 1523.7, "py": 835.6}, {"loc_id": 685, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 6, "x": -3072.0, "z": -7104.0, "px": 1523.7, "py": 835.6}, {"loc_id": 687, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 6, "x": 8640.0, "z": -832.0, "px": 3522.6, "py": 1906.0}, {"loc_id": 689, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 6, "x": 7040.0, "z": -3712.0, "px": 3249.5, "py": 1414.5}, {"loc_id": 693, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 6, "x": 5440.0, "z": 3328.0, "px": 2976.4, "py": 2616.0}, {"loc_id": 700, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": 8448.0, "z": 896.0, "px": 3489.8, "py": 2200.9}, {"loc_id": 701, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 6, "x": -1152.0, "z": -7040.0, "px": 1851.4, "py": 846.5}, {"loc_id": 701, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 6, "x": -1152.0, "z": -7040.0, "px": 1851.4, "py": 846.5}, {"loc_id": 703, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 6, "x": -384.0, "z": -6656.0, "px": 1982.5, "py": 912.0}, {"loc_id": 703, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 6, "x": -384.0, "z": -6656.0, "px": 1982.5, "py": 912.0}, {"loc_id": 705, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 6, "x": 6144.0, "z": -1536.0, "px": 3096.6, "py": 1785.9}, {"loc_id": 706, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 6, "x": 9728.0, "z": 1536.0, "px": 3708.2, "py": 2310.1}, {"loc_id": 708, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 6, "x": 8512.0, "z": 1152.0, "px": 3500.7, "py": 2244.6}, {"loc_id": 712, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 6, "x": 9152.0, "z": -1280.0, "px": 3609.9, "py": 1829.5}, {"loc_id": 714, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 6, "x": -896.0, "z": -7616.0, "px": 1895.1, "py": 748.2}, {"loc_id": 714, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": -896.0, "z": -7616.0, "px": 1895.1, "py": 748.2}, {"loc_id": 715, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 6, "x": 8064.0, "z": 2752.0, "px": 3424.3, "py": 2517.7}, {"loc_id": 716, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 6, "x": -6336.0, "z": 3328.0, "px": 966.7, "py": 2616.0}, {"loc_id": 717, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 6, "x": -7360.0, "z": -3392.0, "px": 791.9, "py": 1469.1}, {"loc_id": 719, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": 4032.0, "z": -6144.0, "px": 2736.1, "py": 999.4}, {"loc_id": 723, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 6, "x": 8768.0, "z": -2944.0, "px": 3544.4, "py": 1545.6}, {"loc_id": 724, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 6, "x": -6912.0, "z": 5056.0, "px": 868.4, "py": 2910.9}, {"loc_id": 725, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 6, "x": 2816.0, "z": 5696.0, "px": 2528.6, "py": 3020.1}, {"loc_id": 726, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 6, "x": 832.0, "z": -7040.0, "px": 2190.0, "py": 846.5}, {"loc_id": 732, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 6, "x": 6464.0, "z": 2880.0, "px": 3151.2, "py": 2539.5}, {"loc_id": 732, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 6, "x": 6464.0, "z": 2880.0, "px": 3151.2, "py": 2539.5}, {"loc_id": 733, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 6, "x": 8256.0, "z": 2432.0, "px": 3457.0, "py": 2463.1}, {"loc_id": 736, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 6, "x": 9088.0, "z": -3008.0, "px": 3599.0, "py": 1534.6}, {"loc_id": 740, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 6, "x": -5760.0, "z": -1984.0, "px": 1065.0, "py": 1709.4}, {"loc_id": 741, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 6, "x": 6400.0, "z": 4352.0, "px": 3140.3, "py": 2790.7}, {"loc_id": 741, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 6, "x": 6400.0, "z": 4352.0, "px": 3140.3, "py": 2790.7}, {"loc_id": 743, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 6, "x": -9408.0, "z": -2432.0, "px": 442.4, "py": 1632.9}, {"loc_id": 746, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": -6592.0, "z": 896.0, "px": 923.0, "py": 2200.9}, {"loc_id": 747, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 6, "x": -7296.0, "z": 1152.0, "px": 802.8, "py": 2244.6}, {"loc_id": 749, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": 192.0, "z": -7424.0, "px": 2080.8, "py": 781.0}, {"loc_id": 751, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 6, "x": -1792.0, "z": -5824.0, "px": 1742.2, "py": 1054.0}, {"loc_id": 753, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 6, "x": -1408.0, "z": -6016.0, "px": 1807.7, "py": 1021.3}, {"loc_id": 754, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 6, "x": -9664.0, "z": -2176.0, "px": 398.7, "py": 1676.6}, {"loc_id": 755, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 6, "x": -9216.0, "z": -640.0, "px": 475.1, "py": 1938.8}, {"loc_id": 756, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 6, "x": 8000.0, "z": 2112.0, "px": 3413.3, "py": 2408.4}, {"loc_id": 756, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": 8000.0, "z": 2112.0, "px": 3413.3, "py": 2408.4}, {"loc_id": 756, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 6, "x": 8000.0, "z": 2112.0, "px": 3413.3, "py": 2408.4}, {"loc_id": 757, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 6, "x": 8768.0, "z": 896.0, "px": 3544.4, "py": 2200.9}, {"loc_id": 757, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 6, "x": 8768.0, "z": 896.0, "px": 3544.4, "py": 2200.9}, {"loc_id": 759, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": 3968.0, "z": -5312.0, "px": 2725.2, "py": 1141.4}, {"loc_id": 765, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 6, "x": -3712.0, "z": 6656.0, "px": 1414.5, "py": 3184.0}, {"loc_id": 767, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": 1152.0, "z": 7616.0, "px": 2244.6, "py": 3347.8}, {"loc_id": 770, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 6, "x": 7552.0, "z": -4480.0, "px": 3336.9, "py": 1283.4}, {"loc_id": 771, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": 2944.0, "z": 5440.0, "px": 2550.4, "py": 2976.4}, {"loc_id": 773, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 6, "x": -4416.0, "z": -6784.0, "px": 1294.3, "py": 890.2}, {"loc_id": 774, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 6, "x": 6016.0, "z": 5952.0, "px": 3074.7, "py": 3063.8}, {"loc_id": 777, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 6, "x": 4864.0, "z": 6208.0, "px": 2878.1, "py": 3107.5}, {"loc_id": 782, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 6, "x": -6144.0, "z": 3968.0, "px": 999.4, "py": 2725.2}, {"loc_id": 783, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 6, "x": 6784.0, "z": 1216.0, "px": 3205.8, "py": 2255.5}, {"loc_id": 783, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 6, "x": 6784.0, "z": 1216.0, "px": 3205.8, "py": 2255.5}, {"loc_id": 785, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 6, "x": -192.0, "z": -6400.0, "px": 2015.2, "py": 955.7}, {"loc_id": 787, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 6, "x": 3200.0, "z": 5504.0, "px": 2594.1, "py": 2987.3}, {"loc_id": 788, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": 4864.0, "z": 5696.0, "px": 2878.1, "py": 3020.1}, {"loc_id": 789, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": -704.0, "z": 6848.0, "px": 1927.9, "py": 3216.7}, {"loc_id": 789, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 6, "x": -704.0, "z": 6848.0, "px": 1927.9, "py": 3216.7}, {"loc_id": 792, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 6, "x": -9152.0, "z": 960.0, "px": 486.1, "py": 2211.8}, {"loc_id": 793, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 6, "x": 4224.0, "z": 6336.0, "px": 2768.9, "py": 3129.3}, {"loc_id": 800, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 6, "x": 2368.0, "z": -6592.0, "px": 2452.1, "py": 923.0}, {"loc_id": 801, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 6, "x": -5760.0, "z": -5504.0, "px": 1065.0, "py": 1108.7}, {"loc_id": 801, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 6, "x": -5760.0, "z": -5504.0, "px": 1065.0, "py": 1108.7}, {"loc_id": 802, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 6, "x": -4800.0, "z": 4160.0, "px": 1228.8, "py": 2758.0}, {"loc_id": 804, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 6, "x": 128.0, "z": 6848.0, "px": 2069.8, "py": 3216.7}, {"loc_id": 811, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 6, "x": -5568.0, "z": 3328.0, "px": 1097.7, "py": 2616.0}, {"loc_id": 815, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": 832.0, "z": 6784.0, "px": 2190.0, "py": 3205.8}, {"loc_id": 822, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 6, "x": -5696.0, "z": 3648.0, "px": 1075.9, "py": 2670.6}, {"loc_id": 824, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 6, "x": -2368.0, "z": -6464.0, "px": 1643.9, "py": 944.8}, {"loc_id": 824, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": -2368.0, "z": -6464.0, "px": 1643.9, "py": 944.8}, {"loc_id": 826, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 6, "x": 7040.0, "z": 3840.0, "px": 3249.5, "py": 2703.4}, {"loc_id": 826, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": 7040.0, "z": 3840.0, "px": 3249.5, "py": 2703.4}, {"loc_id": 828, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 6, "x": 7168.0, "z": -64.0, "px": 3271.3, "py": 2037.1}, {"loc_id": 829, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 6, "x": -4992.0, "z": -3648.0, "px": 1196.0, "py": 1425.4}, {"loc_id": 830, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": 9920.0, "z": -192.0, "px": 3741.0, "py": 2015.2}, {"loc_id": 831, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 6, "x": 8640.0, "z": -3328.0, "px": 3522.6, "py": 1480.0}, {"loc_id": 834, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 6, "x": -8576.0, "z": 1280.0, "px": 584.4, "py": 2266.5}, {"loc_id": 837, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": -9408.0, "z": 1472.0, "px": 442.4, "py": 2299.2}, {"loc_id": 838, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 6, "x": -1088.0, "z": -6080.0, "px": 1862.3, "py": 1010.3}, {"loc_id": 841, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 6, "x": 3648.0, "z": -6784.0, "px": 2670.6, "py": 890.2}, {"loc_id": 842, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 6, "x": -4480.0, "z": -5376.0, "px": 1283.4, "py": 1130.5}, {"loc_id": 842, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": -4480.0, "z": -5376.0, "px": 1283.4, "py": 1130.5}, {"loc_id": 843, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 6, "x": 9664.0, "z": -768.0, "px": 3697.3, "py": 1916.9}, {"loc_id": 843, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": 9664.0, "z": -768.0, "px": 3697.3, "py": 1916.9}, {"loc_id": 844, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 6, "x": 2560.0, "z": -5568.0, "px": 2484.9, "py": 1097.7}, {"loc_id": 847, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": 1280.0, "z": 6016.0, "px": 2266.5, "py": 3074.7}, {"loc_id": 847, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 6, "x": 1280.0, "z": 6016.0, "px": 2266.5, "py": 3074.7}, {"loc_id": 847, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 6, "x": 1280.0, "z": 6016.0, "px": 2266.5, "py": 3074.7}, {"loc_id": 849, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 6, "x": 4544.0, "z": -6656.0, "px": 2823.5, "py": 912.0}, {"loc_id": 851, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 6, "x": 8000.0, "z": -4480.0, "px": 3413.3, "py": 1283.4}, {"loc_id": 854, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 6, "x": 5696.0, "z": 5632.0, "px": 3020.1, "py": 3009.2}, {"loc_id": 854, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 6, "x": 5696.0, "z": 5632.0, "px": 3020.1, "py": 3009.2}, {"loc_id": 854, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 6, "x": 5696.0, "z": 5632.0, "px": 3020.1, "py": 3009.2}, {"loc_id": 855, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 6, "x": 2560.0, "z": -5824.0, "px": 2484.9, "py": 1054.0}, {"loc_id": 856, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 6, "x": -7168.0, "z": 3840.0, "px": 824.7, "py": 2703.4}, {"loc_id": 856, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 6, "x": -7168.0, "z": 3840.0, "px": 824.7, "py": 2703.4}, {"loc_id": 856, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 6, "x": -7168.0, "z": 3840.0, "px": 824.7, "py": 2703.4}, {"loc_id": 858, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 6, "x": -8384.0, "z": -3072.0, "px": 617.1, "py": 1523.7}, {"loc_id": 859, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 6, "x": 4288.0, "z": -6080.0, "px": 2779.8, "py": 1010.3}, {"loc_id": 862, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 6, "x": -8128.0, "z": -3968.0, "px": 660.8, "py": 1370.8}, {"loc_id": 863, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 6, "x": -1664.0, "z": -6080.0, "px": 1764.0, "py": 1010.3}, {"loc_id": 864, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 6, "x": 6592.0, "z": -192.0, "px": 3173.0, "py": 2015.2}, {"loc_id": 865, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 6, "x": -6400.0, "z": -2112.0, "px": 955.7, "py": 1687.6}, {"loc_id": 866, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 6, "x": 8384.0, "z": -1728.0, "px": 3478.9, "py": 1753.1}, {"loc_id": 871, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 6, "x": -6016.0, "z": 2880.0, "px": 1021.3, "py": 2539.5}, {"loc_id": 875, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 6, "x": 1280.0, "z": -6336.0, "px": 2266.5, "py": 966.7}, {"loc_id": 879, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 6, "x": -6592.0, "z": 4032.0, "px": 923.0, "py": 2736.1}, {"loc_id": 881, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 6, "x": 4352.0, "z": 4672.0, "px": 2790.7, "py": 2845.4}, {"loc_id": 881, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 6, "x": 4352.0, "z": 4672.0, "px": 2790.7, "py": 2845.4}, {"loc_id": 884, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 6, "x": -7872.0, "z": 4608.0, "px": 704.5, "py": 2834.4}, {"loc_id": 886, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 6, "x": -3904.0, "z": 5888.0, "px": 1381.7, "py": 3052.9}, {"loc_id": 888, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 6, "x": 5056.0, "z": -3840.0, "px": 2910.9, "py": 1392.6}, {"loc_id": 916, "loc_name": "Hildir_crypt", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 2613.9, "z": 5053.6, "px": 2494.1, "py": 2910.5}, {"loc_id": 916, "loc_name": "Hildir_crypt", "item": "SpawnOnce: Skeleton_Hildir", "count": 6, "x": 2613.9, "z": 5053.6, "px": 2494.1, "py": 2910.5}, {"loc_id": 917, "loc_name": "Hildir_plainsfortress", "item": "SpawnOnce: GoblinShaman", "count": 6, "x": 4800.0, "z": -1216.0, "px": 2867.2, "py": 1840.5}, {"loc_id": 919, "loc_name": "Hildir_plainsfortress", "item": "SpawnOnce: GoblinShaman", "count": 6, "x": -3264.0, "z": 1344.0, "px": 1490.9, "py": 2277.4}, {"loc_id": 1985, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -5749.3, "z": -4995.7, "px": 1066.8, "py": 1195.4}, {"loc_id": 1988, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": -1462.0, "z": -1719.2, "px": 1798.5, "py": 1754.6}, {"loc_id": 1988, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -1462.0, "z": -1719.2, "px": 1798.5, "py": 1754.6}, {"loc_id": 1991, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 6, "x": -1736.3, "z": -4225.4, "px": 1751.7, "py": 1326.9}, {"loc_id": 1992, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 6, "x": -8265.4, "z": 2494.6, "px": 637.4, "py": 2473.7}, {"loc_id": 1993, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -5949.7, "z": 1468.8, "px": 1032.6, "py": 2298.7}, {"loc_id": 1995, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 6, "x": 7744.4, "z": -2746.7, "px": 3369.7, "py": 1579.2}, {"loc_id": 1999, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": -6850.3, "z": 5430.7, "px": 878.9, "py": 2974.8}, {"loc_id": 2008, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": 8127.2, "z": -263.8, "px": 3435.0, "py": 2003.0}, {"loc_id": 2009, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": -2304.6, "z": -3082.4, "px": 1654.7, "py": 1521.9}, {"loc_id": 2011, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 5431.7, "z": -900.4, "px": 2975.0, "py": 1894.3}, {"loc_id": 2013, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": -2295.1, "z": 708.0, "px": 1656.3, "py": 2168.8}, {"loc_id": 2024, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 6, "x": 2300.8, "z": 3847.4, "px": 2440.7, "py": 2704.6}, {"loc_id": 2027, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 6, "x": -1987.5, "z": -5560.2, "px": 1708.8, "py": 1099.1}, {"loc_id": 2029, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 6, "x": 1796.7, "z": 7414.9, "px": 2354.6, "py": 3313.5}, {"loc_id": 2032, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": -9030.2, "z": 3011.1, "px": 506.8, "py": 2561.9}, {"loc_id": 2033, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 6, "x": -5258.4, "z": 649.0, "px": 1150.6, "py": 2158.8}, {"loc_id": 2048, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 6, "x": 2177.1, "z": -374.6, "px": 2419.6, "py": 1984.1}, {"loc_id": 2048, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": 2177.1, "z": -374.6, "px": 2419.6, "py": 1984.1}, {"loc_id": 2049, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": 832.6, "z": 3465.7, "px": 2190.1, "py": 2639.5}, {"loc_id": 2050, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": 1149.0, "z": 5321.2, "px": 2244.1, "py": 2956.2}, {"loc_id": 2051, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 6, "x": -5573.1, "z": -5305.9, "px": 1096.9, "py": 1142.5}, {"loc_id": 2051, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": -5573.1, "z": -5305.9, "px": 1096.9, "py": 1142.5}, {"loc_id": 2054, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 6, "x": -5577.5, "z": -5061.9, "px": 1096.1, "py": 1184.1}, {"loc_id": 2058, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 6, "x": -1343.6, "z": -1865.0, "px": 1818.7, "py": 1729.7}, {"loc_id": 2058, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -1343.6, "z": -1865.0, "px": 1818.7, "py": 1729.7}, {"loc_id": 2059, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 6, "x": -5058.0, "z": 821.8, "px": 1184.8, "py": 2188.3}, {"loc_id": 2060, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 6, "x": 4682.5, "z": -5049.9, "px": 2847.1, "py": 1186.2}, {"loc_id": 2060, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": 4682.5, "z": -5049.9, "px": 2847.1, "py": 1186.2}, {"loc_id": 2063, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": 3071.8, "z": 893.7, "px": 2572.3, "py": 2200.5}, {"loc_id": 2063, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": 3071.8, "z": 893.7, "px": 2572.3, "py": 2200.5}, {"loc_id": 2067, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 6, "x": 8253.5, "z": 198.8, "px": 3456.6, "py": 2081.9}, {"loc_id": 2071, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": 1793.0, "z": -4478.1, "px": 2354.0, "py": 1283.7}, {"loc_id": 2072, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 7928.0, "z": -2627.6, "px": 3401.0, "py": 1599.6}, {"loc_id": 2074, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 6, "x": 2555.5, "z": -4361.4, "px": 2484.1, "py": 1303.7}, {"loc_id": 2074, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": 2555.5, "z": -4361.4, "px": 2484.1, "py": 1303.7}, {"loc_id": 2076, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 6, "x": 1978.5, "z": 1274.9, "px": 2385.7, "py": 2265.6}, {"loc_id": 2077, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": 2107.7, "z": 1143.7, "px": 2407.7, "py": 2243.2}, {"loc_id": 2078, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 8757.2, "z": -1472.7, "px": 3542.6, "py": 1796.7}, {"loc_id": 2079, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": -5431.8, "z": -6277.2, "px": 1121.0, "py": 976.7}, {"loc_id": 2081, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": -9975.8, "z": -134.2, "px": 345.5, "py": 2025.1}, {"loc_id": 2084, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": -4355.4, "z": 1795.5, "px": 1304.7, "py": 2354.4}, {"loc_id": 2085, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 6, "x": 761.4, "z": 4665.8, "px": 2177.9, "py": 2844.3}, {"loc_id": 2086, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -2122.5, "z": -3076.8, "px": 1685.8, "py": 1522.9}, {"loc_id": 2092, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 6, "x": -6474.9, "z": 3722.6, "px": 943.0, "py": 2683.3}, {"loc_id": 2095, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 6, "x": -1910.0, "z": -4163.4, "px": 1722.0, "py": 1337.4}, {"loc_id": 2095, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": -1910.0, "z": -4163.4, "px": 1722.0, "py": 1337.4}, {"loc_id": 2096, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 6, "x": -4747.0, "z": 5697.4, "px": 1237.8, "py": 3020.4}, {"loc_id": 2098, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 6, "x": 2933.5, "z": -4341.4, "px": 2548.7, "py": 1307.1}, {"loc_id": 2098, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 6, "x": 2933.5, "z": -4341.4, "px": 2548.7, "py": 1307.1}, {"loc_id": 2101, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -1158.2, "z": -1530.7, "px": 1850.3, "py": 1786.8}, {"loc_id": 2106, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": 3317.8, "z": -2698.3, "px": 2614.2, "py": 1587.5}, {"loc_id": 2117, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 6, "x": -1278.8, "z": -2047.9, "px": 1829.8, "py": 1698.5}, {"loc_id": 2120, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 2178.0, "z": 1283.9, "px": 2419.7, "py": 2267.1}, {"loc_id": 2121, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -3338.0, "z": 4485.4, "px": 1478.3, "py": 2813.5}, {"loc_id": 2121, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": -3338.0, "z": 4485.4, "px": 1478.3, "py": 2813.5}, {"loc_id": 2124, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": -3017.7, "z": 4282.1, "px": 1533.0, "py": 2778.8}, {"loc_id": 2125, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": 2423.3, "z": 3647.1, "px": 2461.6, "py": 2670.4}, {"loc_id": 2130, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": -1981.4, "z": -5691.3, "px": 1709.8, "py": 1076.7}, {"loc_id": 2135, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 8263.2, "z": -2115.4, "px": 3458.3, "py": 1687.0}, {"loc_id": 2135, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": 8263.2, "z": -2115.4, "px": 3458.3, "py": 1687.0}, {"loc_id": 2139, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 6, "x": -5886.6, "z": 4606.1, "px": 1043.4, "py": 2834.1}, {"loc_id": 2140, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 6, "x": 643.2, "z": 5308.8, "px": 2157.8, "py": 2954.0}, {"loc_id": 2145, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 6, "x": 2491.2, "z": 5062.0, "px": 2473.2, "py": 2911.9}, {"loc_id": 2147, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": 442.3, "z": 5504.3, "px": 2123.5, "py": 2987.4}, {"loc_id": 2147, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 442.3, "z": 5504.3, "px": 2123.5, "py": 2987.4}, {"loc_id": 2149, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 2239.1, "z": 5115.9, "px": 2430.1, "py": 2921.1}, {"loc_id": 2150, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": -9718.2, "z": 648.1, "px": 389.4, "py": 2158.6}, {"loc_id": 2151, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": 7352.5, "z": -3254.6, "px": 3302.8, "py": 1492.5}, {"loc_id": 2151, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": 7352.5, "z": -3254.6, "px": 3302.8, "py": 1492.5}, {"loc_id": 2152, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 6, "x": 1094.5, "z": -5131.0, "px": 2234.8, "py": 1172.3}, {"loc_id": 2152, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 1094.5, "z": -5131.0, "px": 2234.8, "py": 1172.3}, {"loc_id": 2154, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 2556.2, "z": 5818.7, "px": 2484.3, "py": 3041.1}, {"loc_id": 2154, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": 2556.2, "z": 5818.7, "px": 2484.3, "py": 3041.1}, {"loc_id": 2156, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": -4855.4, "z": -3010.4, "px": 1219.3, "py": 1534.2}, {"loc_id": 2158, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 6, "x": 8393.8, "z": 2741.1, "px": 3480.5, "py": 2515.8}, {"loc_id": 2163, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": -8955.2, "z": 3272.0, "px": 519.6, "py": 2606.4}, {"loc_id": 2165, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 6, "x": 8135.7, "z": 895.5, "px": 3436.5, "py": 2200.8}, {"loc_id": 2170, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": 7876.9, "z": -2761.7, "px": 3392.3, "py": 1576.7}, {"loc_id": 2176, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 6, "x": -6793.8, "z": 3780.2, "px": 888.5, "py": 2693.2}, {"loc_id": 2177, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": 582.5, "z": 60.8, "px": 2147.4, "py": 2058.4}, {"loc_id": 2178, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 4361.3, "z": -5052.7, "px": 2792.3, "py": 1185.7}, {"loc_id": 2178, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 6, "x": 4361.3, "z": -5052.7, "px": 2792.3, "py": 1185.7}, {"loc_id": 2180, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 6, "x": -6520.2, "z": -4795.6, "px": 935.2, "py": 1229.6}, {"loc_id": 2385, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -4038.3, "z": -6469.5, "px": 1358.8, "py": 943.9}, {"loc_id": 2386, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -5100.6, "z": 499.3, "px": 1177.5, "py": 2133.2}, {"loc_id": 2387, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 6803.3, "z": 4556.6, "px": 3209.1, "py": 2825.7}, {"loc_id": 2388, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 2385.8, "z": 3907.3, "px": 2455.2, "py": 2714.8}, {"loc_id": 2389, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 3828.8, "z": 969.9, "px": 2701.4, "py": 2213.5}, {"loc_id": 2390, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 4619.5, "z": -5070.4, "px": 2836.4, "py": 1182.7}, {"loc_id": 2391, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 954.7, "z": -5485.7, "px": 2210.9, "py": 1111.8}, {"loc_id": 2393, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 1982.3, "z": 3667.3, "px": 2386.3, "py": 2673.9}, {"loc_id": 2396, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -9610.1, "z": -241.6, "px": 407.9, "py": 2006.8}, {"loc_id": 2397, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 2309.7, "z": 453.5, "px": 2442.2, "py": 2125.4}, {"loc_id": 2398, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -1015.5, "z": 269.5, "px": 1874.7, "py": 2094.0}, {"loc_id": 2399, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 8182.8, "z": -2453.8, "px": 3444.5, "py": 1629.2}, {"loc_id": 2400, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -2383.3, "z": 4488.9, "px": 1641.3, "py": 2814.1}, {"loc_id": 2401, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 2316.1, "z": 3759.4, "px": 2443.3, "py": 2689.6}, {"loc_id": 2402, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 8465.5, "z": -2051.1, "px": 3492.8, "py": 1697.9}, {"loc_id": 2403, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -8333.5, "z": -1978.2, "px": 625.7, "py": 1710.4}, {"loc_id": 2404, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -4153.8, "z": -2246.7, "px": 1339.1, "py": 1664.6}, {"loc_id": 2406, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 8236.8, "z": 891.3, "px": 3453.7, "py": 2200.1}, {"loc_id": 2410, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -4356.1, "z": 1737.8, "px": 1304.6, "py": 2344.6}, {"loc_id": 2411, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 8303.9, "z": -2565.2, "px": 3465.2, "py": 1610.2}, {"loc_id": 2413, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -4235.7, "z": -6335.4, "px": 1325.1, "py": 966.8}, {"loc_id": 2415, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 7439.3, "z": -4394.0, "px": 3317.6, "py": 1298.1}, {"loc_id": 2416, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -4246.1, "z": -2180.8, "px": 1323.3, "py": 1675.8}, {"loc_id": 2417, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 8264.9, "z": 134.5, "px": 3458.5, "py": 2071.0}, {"loc_id": 2418, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 2747.7, "z": 333.4, "px": 2516.9, "py": 2104.9}, {"loc_id": 2420, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 3592.3, "z": 3960.4, "px": 2661.1, "py": 2723.9}, {"loc_id": 2421, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -6780.2, "z": 5443.2, "px": 890.8, "py": 2977.0}, {"loc_id": 2422, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 683.2, "z": 5105.9, "px": 2164.6, "py": 2919.4}, {"loc_id": 2424, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 9412.1, "z": 340.4, "px": 3654.3, "py": 2106.1}, {"loc_id": 2425, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 1931.6, "z": 3647.1, "px": 2377.7, "py": 2670.4}, {"loc_id": 2426, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 4459.3, "z": -5188.5, "px": 2809.1, "py": 1162.5}, {"loc_id": 2427, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 8428.2, "z": -1864.4, "px": 3486.4, "py": 1729.8}, {"loc_id": 2428, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 2302.4, "z": 6351.4, "px": 2440.9, "py": 3132.0}, {"loc_id": 2429, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 2324.8, "z": -1345.4, "px": 2444.8, "py": 1818.4}, {"loc_id": 2430, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 1545.4, "z": -6208.6, "px": 2311.7, "py": 988.4}, {"loc_id": 2431, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -3987.8, "z": -2478.5, "px": 1367.4, "py": 1625.0}, {"loc_id": 2436, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 6100.9, "z": 1348.3, "px": 3089.2, "py": 2278.1}, {"loc_id": 2437, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 2946.3, "z": -301.4, "px": 2550.8, "py": 1996.6}, {"loc_id": 2438, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -4918.6, "z": 5811.5, "px": 1208.6, "py": 3039.8}, {"loc_id": 2439, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -2282.1, "z": -3115.5, "px": 1658.5, "py": 1516.3}, {"loc_id": 2441, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -7733.8, "z": -2569.2, "px": 728.1, "py": 1609.5}, {"loc_id": 2442, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 1671.1, "z": -767.1, "px": 2333.2, "py": 1917.1}, {"loc_id": 2443, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 2419.7, "z": 1470.7, "px": 2461.0, "py": 2299.0}, {"loc_id": 2444, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 3456.7, "z": 3691.8, "px": 2637.9, "py": 2678.1}, {"loc_id": 2445, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -1402.1, "z": -1793.2, "px": 1808.7, "py": 1742.0}, {"loc_id": 2446, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -5964.4, "z": 4523.4, "px": 1030.1, "py": 2820.0}, {"loc_id": 2447, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -789.4, "z": 4858.7, "px": 1913.3, "py": 2877.2}, {"loc_id": 2448, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -1420.0, "z": -1858.4, "px": 1805.7, "py": 1730.8}, {"loc_id": 2449, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 7793.5, "z": -2805.4, "px": 3378.1, "py": 1569.2}, {"loc_id": 2450, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -7430.3, "z": -2090.0, "px": 779.9, "py": 1691.3}, {"loc_id": 2451, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 1608.0, "z": -4541.0, "px": 2322.4, "py": 1273.0}, {"loc_id": 2452, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -7169.2, "z": -2061.2, "px": 824.5, "py": 1696.2}, {"loc_id": 2453, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -7247.3, "z": -4787.3, "px": 811.1, "py": 1231.0}, {"loc_id": 2455, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -9234.8, "z": 3275.5, "px": 471.9, "py": 2607.0}, {"loc_id": 2457, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -3249.9, "z": -2030.0, "px": 1493.4, "py": 1701.5}, {"loc_id": 2458, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 8244.4, "z": -2059.2, "px": 3455.0, "py": 1696.6}, {"loc_id": 2460, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -9321.9, "z": 2830.6, "px": 457.1, "py": 2531.1}, {"loc_id": 2461, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 7880.7, "z": -2941.4, "px": 3393.0, "py": 1546.0}, {"loc_id": 2463, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -1518.3, "z": -5557.8, "px": 1788.9, "py": 1099.5}, {"loc_id": 2464, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -6015.1, "z": 4522.4, "px": 1021.4, "py": 2819.8}, {"loc_id": 2465, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -2539.4, "z": 1408.2, "px": 1614.6, "py": 2288.3}, {"loc_id": 2466, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -7280.0, "z": -1724.7, "px": 805.5, "py": 1753.7}, {"loc_id": 2467, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 518.2, "z": 5310.1, "px": 2136.4, "py": 2954.3}, {"loc_id": 2470, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -1364.1, "z": -2032.7, "px": 1815.2, "py": 1701.1}, {"loc_id": 2471, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 8946.2, "z": 182.7, "px": 3574.8, "py": 2079.2}, {"loc_id": 2473, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 2291.0, "z": -879.0, "px": 2439.0, "py": 1898.0}, {"loc_id": 2474, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 4414.5, "z": -445.2, "px": 2801.4, "py": 1972.0}, {"loc_id": 2476, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -2001.1, "z": 370.1, "px": 1706.5, "py": 2111.2}, {"loc_id": 2477, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 8494.9, "z": 2795.5, "px": 3497.8, "py": 2525.1}, {"loc_id": 2478, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 3255.7, "z": -2690.3, "px": 2603.6, "py": 1588.9}, {"loc_id": 2479, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -3568.0, "z": 4660.4, "px": 1439.1, "py": 2843.4}, {"loc_id": 2480, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 6932.8, "z": -4147.5, "px": 3231.2, "py": 1340.2}, {"loc_id": 2482, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -9007.7, "z": 2797.3, "px": 510.7, "py": 2525.4}, {"loc_id": 2483, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -8276.1, "z": -832.6, "px": 635.5, "py": 1905.9}, {"loc_id": 2484, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 8586.1, "z": 127.8, "px": 3513.4, "py": 2069.8}, {"loc_id": 2487, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 3462.2, "z": 5007.8, "px": 2638.9, "py": 2902.7}, {"loc_id": 2488, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -6642.8, "z": -4588.8, "px": 914.3, "py": 1264.8}, {"loc_id": 2489, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 4537.8, "z": -5033.9, "px": 2822.5, "py": 1188.9}, {"loc_id": 2490, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 3960.0, "z": 6986.1, "px": 2723.8, "py": 3240.3}, {"loc_id": 2491, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -1275.2, "z": -1333.2, "px": 1830.4, "py": 1820.5}, {"loc_id": 2493, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -1150.6, "z": -1042.8, "px": 1851.6, "py": 1870.0}, {"loc_id": 2494, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 628.4, "z": 5427.5, "px": 2155.2, "py": 2974.3}, {"loc_id": 2495, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -9275.0, "z": -2773.1, "px": 465.1, "py": 1574.7}, {"loc_id": 2496, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 2301.7, "z": -1263.0, "px": 2440.8, "py": 1832.4}, {"loc_id": 2497, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 9721.6, "z": -1579.0, "px": 3707.2, "py": 1778.5}, {"loc_id": 2499, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -3887.7, "z": -404.6, "px": 1384.5, "py": 1978.9}, {"loc_id": 2500, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 4156.9, "z": -137.9, "px": 2757.4, "py": 2024.5}, {"loc_id": 2501, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -1082.7, "z": -1470.2, "px": 1863.2, "py": 1797.1}, {"loc_id": 2503, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -4018.4, "z": 1917.0, "px": 1362.2, "py": 2375.2}, {"loc_id": 2505, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 1909.1, "z": 3727.0, "px": 2373.8, "py": 2684.1}, {"loc_id": 2506, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 7730.1, "z": -2942.9, "px": 3367.3, "py": 1545.7}, {"loc_id": 2507, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -464.6, "z": 459.6, "px": 1968.7, "py": 2126.4}, {"loc_id": 2508, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 2036.0, "z": 978.2, "px": 2395.5, "py": 2214.9}, {"loc_id": 2509, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 3835.9, "z": 4011.4, "px": 2702.7, "py": 2732.6}, {"loc_id": 2510, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 4307.9, "z": -909.3, "px": 2783.2, "py": 1892.8}, {"loc_id": 2511, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 3850.8, "z": 3766.6, "px": 2705.2, "py": 2690.8}, {"loc_id": 2512, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -2510.9, "z": -272.6, "px": 1619.5, "py": 2001.5}, {"loc_id": 2513, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -6846.9, "z": 5515.0, "px": 879.5, "py": 2989.2}, {"loc_id": 2514, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -5166.1, "z": 5651.3, "px": 1166.3, "py": 3012.5}, {"loc_id": 2515, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -2615.1, "z": -6261.4, "px": 1601.7, "py": 979.4}, {"loc_id": 2516, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 3278.0, "z": -2442.2, "px": 2607.4, "py": 1631.2}, {"loc_id": 2517, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 3477.8, "z": 3443.8, "px": 2641.5, "py": 2635.7}, {"loc_id": 2518, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 198.3, "z": -1066.4, "px": 2081.8, "py": 1866.0}, {"loc_id": 2519, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 774.0, "z": 3504.5, "px": 2180.1, "py": 2646.1}, {"loc_id": 2520, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 1850.6, "z": -1259.7, "px": 2363.8, "py": 1833.0}, {"loc_id": 2521, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -2059.9, "z": 384.0, "px": 1696.4, "py": 2113.5}, {"loc_id": 2523, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 9421.8, "z": -13.3, "px": 3656.0, "py": 2045.7}, {"loc_id": 2524, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -9194.4, "z": 3378.4, "px": 478.8, "py": 2624.6}, {"loc_id": 2525, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -3858.3, "z": -2705.4, "px": 1389.5, "py": 1586.3}, {"loc_id": 2526, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 2452.4, "z": -4368.4, "px": 2466.5, "py": 1302.5}, {"loc_id": 2527, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 8007.5, "z": -56.6, "px": 3414.6, "py": 2038.3}, {"loc_id": 2528, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -5240.2, "z": 263.5, "px": 1153.7, "py": 2093.0}, {"loc_id": 2529, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -58.5, "z": -1645.4, "px": 2038.0, "py": 1767.2}, {"loc_id": 2530, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 2363.8, "z": 5058.5, "px": 2451.4, "py": 2911.3}, {"loc_id": 2531, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -321.8, "z": -4283.4, "px": 1993.1, "py": 1317.0}, {"loc_id": 2532, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -1421.1, "z": -1643.8, "px": 1805.5, "py": 1767.5}, {"loc_id": 2533, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -7113.8, "z": 2430.4, "px": 833.9, "py": 2462.8}, {"loc_id": 2536, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -5701.8, "z": -1785.1, "px": 1074.9, "py": 1743.3}, {"loc_id": 2537, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 973.4, "z": 401.0, "px": 2214.1, "py": 2116.4}, {"loc_id": 2538, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 8389.8, "z": 246.0, "px": 3479.9, "py": 2090.0}, {"loc_id": 2539, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -6649.2, "z": -4718.7, "px": 913.2, "py": 1242.7}, {"loc_id": 2540, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -8127.1, "z": 2798.8, "px": 661.0, "py": 2525.7}, {"loc_id": 2541, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 3473.5, "z": 3773.5, "px": 2640.8, "py": 2692.0}, {"loc_id": 2542, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -182.5, "z": 882.2, "px": 2016.9, "py": 2198.6}, {"loc_id": 2543, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 5614.5, "z": -1071.5, "px": 3006.2, "py": 1865.1}, {"loc_id": 2544, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -384.9, "z": 575.0, "px": 1982.3, "py": 2146.1}, {"loc_id": 2546, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -524.7, "z": 379.9, "px": 1958.5, "py": 2112.8}, {"loc_id": 2547, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 9802.1, "z": -1621.7, "px": 3720.9, "py": 1771.2}, {"loc_id": 2549, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 8212.3, "z": -328.2, "px": 3449.6, "py": 1992.0}, {"loc_id": 2550, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 4335.2, "z": 6862.9, "px": 2787.9, "py": 3219.3}, {"loc_id": 2551, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -6153.9, "z": 2193.4, "px": 997.7, "py": 2422.3}, {"loc_id": 2552, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 1971.7, "z": -692.0, "px": 2384.5, "py": 1929.9}, {"loc_id": 2553, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -4988.7, "z": 907.4, "px": 1196.6, "py": 2202.9}, {"loc_id": 2554, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -1172.9, "z": -1729.7, "px": 1847.8, "py": 1752.8}, {"loc_id": 2555, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -7694.5, "z": -4745.6, "px": 734.8, "py": 1238.1}, {"loc_id": 2556, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 7423.7, "z": 1273.1, "px": 3315.0, "py": 2265.3}, {"loc_id": 2558, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -8188.0, "z": 516.7, "px": 650.6, "py": 2136.2}, {"loc_id": 2559, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 8387.4, "z": -1869.3, "px": 3479.4, "py": 1729.0}, {"loc_id": 2560, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -9749.4, "z": -2261.6, "px": 384.1, "py": 1662.0}, {"loc_id": 2562, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -4176.6, "z": -6321.4, "px": 1335.2, "py": 969.1}, {"loc_id": 2563, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 1986.6, "z": 1455.9, "px": 2387.0, "py": 2296.5}, {"loc_id": 2564, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 1873.3, "z": -836.8, "px": 2367.7, "py": 1905.2}, {"loc_id": 2565, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 5304.9, "z": 490.8, "px": 2953.4, "py": 2131.8}, {"loc_id": 2566, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -7180.7, "z": -4918.3, "px": 822.5, "py": 1208.6}, {"loc_id": 2567, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -6613.7, "z": -4602.4, "px": 919.3, "py": 1262.5}, {"loc_id": 2568, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 2572.1, "z": -3643.1, "px": 2487.0, "py": 1426.2}, {"loc_id": 2570, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 1674.4, "z": -6334.5, "px": 2333.8, "py": 966.9}, {"loc_id": 2571, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -4972.1, "z": 5509.6, "px": 1199.4, "py": 2988.3}, {"loc_id": 2572, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 2833.0, "z": -4970.7, "px": 2531.5, "py": 1199.7}, {"loc_id": 2573, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 3891.9, "z": 3763.3, "px": 2712.2, "py": 2690.3}, {"loc_id": 2574, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 785.6, "z": 4816.0, "px": 2182.1, "py": 2869.9}, {"loc_id": 2575, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 3709.0, "z": 3966.6, "px": 2681.0, "py": 2725.0}, {"loc_id": 2576, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -4842.8, "z": 5566.3, "px": 1221.5, "py": 2998.0}, {"loc_id": 2577, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -9550.3, "z": -210.7, "px": 418.1, "py": 2012.0}, {"loc_id": 2578, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 1098.5, "z": 5781.6, "px": 2235.5, "py": 3034.7}, {"loc_id": 2579, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 7822.4, "z": -2666.3, "px": 3383.0, "py": 1593.0}, {"loc_id": 2580, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -3210.1, "z": 6576.4, "px": 1500.1, "py": 3170.4}, {"loc_id": 2581, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -9420.1, "z": -187.3, "px": 440.3, "py": 2016.0}, {"loc_id": 2582, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": -6460.2, "z": 3837.9, "px": 945.5, "py": 2703.0}, {"loc_id": 2583, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 5874.8, "z": -4758.0, "px": 3050.6, "py": 1236.0}, {"loc_id": 2584, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf", "count": 6, "x": 1791.1, "z": -6352.2, "px": 2353.7, "py": 963.9}, {"loc_id": 3037, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 6, "x": -2559.0, "z": 6079.3, "px": 1611.3, "py": 3085.5}, {"loc_id": 3038, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 6, "x": 4542.7, "z": 1025.5, "px": 2823.3, "py": 2223.0}, {"loc_id": 3041, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 6, "x": 3264.9, "z": -319.5, "px": 2605.2, "py": 1993.5}, {"loc_id": 3050, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 6, "x": 766.5, "z": -7231.9, "px": 2178.8, "py": 813.8}, {"loc_id": 3055, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 6, "x": 1215.1, "z": -4097.4, "px": 2255.4, "py": 1348.7}, {"loc_id": 3056, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 6, "x": -4993.1, "z": 3711.1, "px": 1195.8, "py": 2681.4}, {"loc_id": 3058, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 6, "x": -4290.0, "z": 959.0, "px": 1315.8, "py": 2211.7}, {"loc_id": 3060, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 6, "x": -5758.6, "z": -1345.1, "px": 1065.2, "py": 1818.4}, {"loc_id": 3064, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 6, "x": -5950.0, "z": -4991.2, "px": 1032.5, "py": 1196.2}, {"loc_id": 3066, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 6, "x": 5310.5, "z": 3584.0, "px": 2954.3, "py": 2659.7}, {"loc_id": 3071, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 6, "x": 3776.6, "z": 1729.7, "px": 2692.5, "py": 2343.2}, {"loc_id": 3078, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 6, "x": 1918.4, "z": 3071.5, "px": 2375.4, "py": 2572.2}, {"loc_id": 3080, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 6, "x": -3967.4, "z": 3841.4, "px": 1370.9, "py": 2703.6}, {"loc_id": 3081, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 6, "x": -3137.5, "z": 5951.5, "px": 1512.5, "py": 3063.7}, {"loc_id": 3086, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 6, "x": 4032.1, "z": -4990.2, "px": 2736.1, "py": 1196.3}, {"loc_id": 3096, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 6, "x": 1982.5, "z": 7040.4, "px": 2386.3, "py": 3249.6}, {"loc_id": 3103, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 6, "x": 2238.9, "z": -4798.2, "px": 2430.1, "py": 1229.1}, {"loc_id": 3104, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 6, "x": -4094.7, "z": -4352.5, "px": 1349.2, "py": 1305.2}, {"loc_id": 3105, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 6, "x": -2880.0, "z": 5761.0, "px": 1556.5, "py": 3031.2}, {"loc_id": 3106, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 6, "x": 5758.1, "z": -1023.1, "px": 3030.7, "py": 1873.4}, {"loc_id": 3109, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 6, "x": 127.2, "z": 3518.4, "px": 2069.7, "py": 2648.5}, {"loc_id": 3110, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 6, "x": -1918.3, "z": -3072.8, "px": 1720.6, "py": 1523.6}, {"loc_id": 3112, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 6, "x": 3009.4, "z": -1473.1, "px": 2561.6, "py": 1796.6}, {"loc_id": 3118, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 6, "x": 6975.6, "z": 2366.9, "px": 3238.5, "py": 2452.0}, {"loc_id": 3120, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 6, "x": 960.4, "z": -3967.4, "px": 2211.9, "py": 1370.9}, {"loc_id": 3133, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 6, "x": 3840.8, "z": 4158.3, "px": 2703.5, "py": 2757.7}, {"loc_id": 3136, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 6, "x": -1728.2, "z": -4735.4, "px": 1753.1, "py": 1239.8}, {"loc_id": 3149, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 6, "x": -2048.1, "z": -5311.5, "px": 1698.5, "py": 1141.5}, {"loc_id": 3151, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 6, "x": 4926.9, "z": -1279.3, "px": 2888.9, "py": 1829.7}, {"loc_id": 3157, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 6, "x": 4158.4, "z": 1086.2, "px": 2757.7, "py": 2233.4}, {"loc_id": 3162, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 6, "x": 2944.5, "z": 4287.1, "px": 2550.5, "py": 2779.7}, {"loc_id": 3172, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 6, "x": 4609.7, "z": 1406.2, "px": 2834.7, "py": 2288.0}, {"loc_id": 3179, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 6, "x": -385.1, "z": -3713.6, "px": 1982.3, "py": 1414.2}, {"loc_id": 3181, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 6, "x": 2110.8, "z": 6080.7, "px": 2408.2, "py": 3085.8}, {"loc_id": 3186, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 6, "x": 4673.3, "z": -1086.3, "px": 2845.6, "py": 1862.6}, {"loc_id": 3196, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 6, "x": -961.5, "z": -5887.6, "px": 1883.9, "py": 1043.2}, {"loc_id": 3207, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 6, "x": -4928.9, "z": -2688.9, "px": 1206.8, "py": 1589.1}, {"loc_id": 3208, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 6, "x": 1983.3, "z": 4098.0, "px": 2386.5, "py": 2747.4}, {"loc_id": 3209, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 6, "x": -5184.6, "z": -1921.3, "px": 1163.2, "py": 1720.1}, {"loc_id": 3219, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 6, "x": -2942.9, "z": 4096.3, "px": 1545.7, "py": 2747.1}, {"loc_id": 3221, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 6, "x": 7105.1, "z": 2113.2, "px": 3260.6, "py": 2408.7}, {"loc_id": 3222, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 6, "x": 896.5, "z": 3584.0, "px": 2201.0, "py": 2659.7}, {"loc_id": 3228, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 6, "x": 3969.0, "z": 895.5, "px": 2725.4, "py": 2200.8}, {"loc_id": 3229, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 6, "x": -5441.0, "z": 383.3, "px": 1119.4, "py": 2113.4}, {"loc_id": 3233, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 6, "x": 3134.9, "z": -2943.1, "px": 2583.0, "py": 1545.7}, {"loc_id": 3248, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 6, "x": 3015.8, "z": 249.6, "px": 2562.7, "py": 2090.6}, {"loc_id": 3250, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 6, "x": -2360.9, "z": 5073.2, "px": 1645.1, "py": 2913.8}, {"loc_id": 3287, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 6, "x": 2675.9, "z": 7241.2, "px": 2504.7, "py": 3283.8}, {"loc_id": 3294, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 6, "x": 3529.5, "z": 3958.9, "px": 2650.4, "py": 2723.7}, {"loc_id": 3297, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 6, "x": 4142.0, "z": -2159.1, "px": 2754.9, "py": 1679.5}, {"loc_id": 3298, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 6, "x": 4469.5, "z": 1674.4, "px": 2810.8, "py": 2333.8}, {"loc_id": 3304, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 6, "x": -2293.3, "z": -6334.3, "px": 1656.6, "py": 966.9}, {"loc_id": 3307, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 6, "x": -1102.4, "z": -4493.1, "px": 1859.9, "py": 1281.2}, {"loc_id": 3315, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 6, "x": -5191.2, "z": -963.4, "px": 1162.0, "py": 1883.6}, {"loc_id": 3321, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 6, "x": 2934.1, "z": 4032.5, "px": 2548.8, "py": 2736.2}, {"loc_id": 3327, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 6, "x": -2895.8, "z": -5038.1, "px": 1553.8, "py": 1188.2}, {"loc_id": 3330, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 6, "x": 5623.2, "z": 1912.5, "px": 3007.7, "py": 2374.4}, {"loc_id": 3332, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 6, "x": -6327.3, "z": -1535.2, "px": 968.1, "py": 1786.0}, {"loc_id": 3334, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 6, "x": 6898.6, "z": -4017.4, "px": 3225.4, "py": 1362.4}, {"loc_id": 3435, "loc_name": "WoodHouse3", "item": "Pickable: Stone", "count": 6, "x": -3712.5, "z": -2605.3, "px": 1414.4, "py": 1603.4}, {"loc_id": 3436, "loc_name": "WoodHouse3", "item": "Pickable: Stone", "count": 6, "x": -3436.2, "z": 3017.2, "px": 1461.6, "py": 2562.9}, {"loc_id": 3440, "loc_name": "WoodHouse3", "item": "Pickable: Stone", "count": 6, "x": -4867.2, "z": 341.3, "px": 1217.3, "py": 2106.2}, {"loc_id": 3442, "loc_name": "WoodHouse3", "item": "Pickable: Stone", "count": 6, "x": -3344.6, "z": 2986.3, "px": 1477.2, "py": 2557.7}, {"loc_id": 3443, "loc_name": "WoodHouse3", "item": "Pickable: Stone", "count": 6, "x": -1745.7, "z": -175.2, "px": 1750.1, "py": 2018.1}, {"loc_id": 3444, "loc_name": "WoodHouse3", "item": "Pickable: Stone", "count": 6, "x": -404.7, "z": 54.8, "px": 1978.9, "py": 2057.4}, {"loc_id": 3448, "loc_name": "WoodHouse3", "item": "Pickable: Stone", "count": 6, "x": 1426.6, "z": 508.6, "px": 2291.5, "py": 2134.8}, {"loc_id": 3449, "loc_name": "WoodHouse3", "item": "Pickable: Stone", "count": 6, "x": 1094.8, "z": -117.0, "px": 2234.8, "py": 2028.0}, {"loc_id": 3450, "loc_name": "WoodHouse3", "item": "Pickable: Stone", "count": 6, "x": 4081.3, "z": -1264.8, "px": 2744.5, "py": 1832.1}, {"loc_id": 3453, "loc_name": "WoodHouse3", "item": "Pickable: Stone", "count": 6, "x": 3124.6, "z": -2617.4, "px": 2581.3, "py": 1601.3}, {"loc_id": 3454, "loc_name": "WoodHouse3", "item": "Pickable: Stone", "count": 6, "x": 336.5, "z": -49.2, "px": 2105.4, "py": 2039.6}, {"loc_id": 3660, "loc_name": "WoodFarm1", "item": "Pickable: Raspberry", "count": 6, "x": -1472.0, "z": -1344.0, "px": 1796.8, "py": 1818.6}, {"loc_id": 3665, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows", "count": 6, "x": 4288.0, "z": -1216.0, "px": 2779.8, "py": 1840.5}, {"loc_id": 3668, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows", "count": 6, "x": -1728.0, "z": -1024.0, "px": 1753.1, "py": 1873.2}, {"loc_id": 3670, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Ranged", "count": 6, "x": -2368.0, "z": 384.0, "px": 1643.9, "py": 2113.5}, {"loc_id": 3682, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 8764.5, "z": -3834.4, "px": 3543.8, "py": 1393.6}, {"loc_id": 3684, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 4994.6, "z": -2173.4, "px": 2900.4, "py": 1677.1}, {"loc_id": 3685, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 4484.1, "z": -325.2, "px": 2813.3, "py": 1992.5}, {"loc_id": 3685, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 4484.1, "z": -325.2, "px": 2813.3, "py": 1992.5}, {"loc_id": 3689, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 2756.7, "z": -3714.8, "px": 2518.5, "py": 1414.0}, {"loc_id": 3693, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 3969.6, "z": -444.6, "px": 2725.5, "py": 1972.1}, {"loc_id": 3695, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": -4799.0, "z": 5433.5, "px": 1229.0, "py": 2975.3}, {"loc_id": 3701, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": -8577.0, "z": -1985.8, "px": 584.2, "py": 1709.1}, {"loc_id": 3701, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -8577.0, "z": -1985.8, "px": 584.2, "py": 1709.1}, {"loc_id": 3703, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 7425.8, "z": -4225.3, "px": 3315.3, "py": 1326.9}, {"loc_id": 3703, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 7425.8, "z": -4225.3, "px": 3315.3, "py": 1326.9}, {"loc_id": 3710, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": -9210.6, "z": 3012.9, "px": 476.1, "py": 2562.2}, {"loc_id": 3711, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 1915.7, "z": -4285.6, "px": 2374.9, "py": 1316.6}, {"loc_id": 3714, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 8327.0, "z": -2117.3, "px": 3469.1, "py": 1686.6}, {"loc_id": 3715, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 5818.9, "z": 191.6, "px": 3041.1, "py": 2080.7}, {"loc_id": 3716, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 7809.1, "z": -2757.9, "px": 3380.8, "py": 1577.3}, {"loc_id": 3720, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 2234.2, "z": -1662.2, "px": 2429.3, "py": 1764.3}, {"loc_id": 3729, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -5828.9, "z": -5048.7, "px": 1053.2, "py": 1186.4}, {"loc_id": 3731, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 380.8, "z": 5241.2, "px": 2113.0, "py": 2942.5}, {"loc_id": 3732, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 894.7, "z": 5126.4, "px": 2200.7, "py": 2922.9}, {"loc_id": 3733, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 3451.4, "z": 3584.6, "px": 2637.0, "py": 2659.8}, {"loc_id": 3736, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 1222.7, "z": 5702.9, "px": 2256.7, "py": 3021.3}, {"loc_id": 3736, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 1222.7, "z": 5702.9, "px": 2256.7, "py": 3021.3}, {"loc_id": 3737, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 699.1, "z": 5376.2, "px": 2167.3, "py": 2965.5}, {"loc_id": 3741, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -5753.1, "z": -1594.3, "px": 1066.1, "py": 1775.9}, {"loc_id": 3742, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 1916.6, "z": -1155.5, "px": 2375.1, "py": 1850.8}, {"loc_id": 3742, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 1916.6, "z": -1155.5, "px": 2375.1, "py": 1850.8}, {"loc_id": 3745, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": -5823.3, "z": -192.9, "px": 1054.2, "py": 2015.1}, {"loc_id": 3748, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 7356.0, "z": 1215.8, "px": 3303.4, "py": 2255.5}, {"loc_id": 3751, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 2496.6, "z": 4930.4, "px": 2474.1, "py": 2889.5}, {"loc_id": 3759, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 8001.0, "z": -2363.9, "px": 3413.5, "py": 1644.6}, {"loc_id": 3760, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": -9284.3, "z": -1465.2, "px": 463.5, "py": 1797.9}, {"loc_id": 3762, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": -8130.1, "z": 2744.9, "px": 660.5, "py": 2516.5}, {"loc_id": 3763, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": -5888.7, "z": 1532.4, "px": 1043.0, "py": 2309.5}, {"loc_id": 3766, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -8762.2, "z": -769.8, "px": 552.6, "py": 1916.6}, {"loc_id": 3775, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 3011.2, "z": -2307.9, "px": 2561.9, "py": 1654.1}, {"loc_id": 3777, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": -3462.0, "z": 4673.6, "px": 1457.2, "py": 2845.6}, {"loc_id": 3780, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": -1728.8, "z": 4739.2, "px": 1753.0, "py": 2856.8}, {"loc_id": 3780, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -1728.8, "z": 4739.2, "px": 1753.0, "py": 2856.8}, {"loc_id": 3791, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -3714.2, "z": 6916.4, "px": 1414.1, "py": 3228.4}, {"loc_id": 3792, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -2243.9, "z": -3007.8, "px": 1665.0, "py": 1534.7}, {"loc_id": 3793, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 9471.5, "z": 5.8, "px": 3664.5, "py": 2049.0}, {"loc_id": 3795, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 6850.4, "z": -3901.3, "px": 3217.1, "py": 1382.2}, {"loc_id": 3797, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -4099.4, "z": -2360.3, "px": 1348.4, "py": 1645.2}, {"loc_id": 3799, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 2499.3, "z": 1410.3, "px": 2474.5, "py": 2288.7}, {"loc_id": 3800, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 960.1, "z": 3394.0, "px": 2211.9, "py": 2627.2}, {"loc_id": 3804, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 7549.6, "z": -2883.2, "px": 3336.5, "py": 1555.9}, {"loc_id": 3806, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 772.7, "z": 4862.7, "px": 2179.9, "py": 2877.9}, {"loc_id": 3809, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 8769.6, "z": -1413.0, "px": 3544.7, "py": 1806.8}, {"loc_id": 3812, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": -5566.6, "z": -5180.0, "px": 1098.0, "py": 1163.9}, {"loc_id": 3813, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -826.8, "z": 512.6, "px": 1906.9, "py": 2135.5}, {"loc_id": 3816, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 898.8, "z": -5306.1, "px": 2201.4, "py": 1142.4}, {"loc_id": 3817, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 9348.1, "z": 321.7, "px": 3643.4, "py": 2102.9}, {"loc_id": 3818, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 5308.7, "z": 5052.4, "px": 2954.0, "py": 2910.3}, {"loc_id": 3821, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": -6919.7, "z": 260.0, "px": 867.0, "py": 2092.4}, {"loc_id": 3823, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -6791.2, "z": 3718.5, "px": 889.0, "py": 2682.6}, {"loc_id": 3826, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 2173.8, "z": 3842.8, "px": 2419.0, "py": 2703.8}, {"loc_id": 3827, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 5115.8, "z": 2815.4, "px": 2921.1, "py": 2528.5}, {"loc_id": 3831, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": -3128.5, "z": -1921.5, "px": 1514.1, "py": 1720.1}, {"loc_id": 3831, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -3128.5, "z": -1921.5, "px": 1514.1, "py": 1720.1}, {"loc_id": 3832, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": -1988.7, "z": -4732.3, "px": 1708.6, "py": 1240.4}, {"loc_id": 3832, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -1988.7, "z": -4732.3, "px": 1708.6, "py": 1240.4}, {"loc_id": 3835, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 4600.8, "z": -5114.6, "px": 2833.2, "py": 1175.1}, {"loc_id": 3837, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -1727.8, "z": 4999.6, "px": 1753.1, "py": 2901.3}, {"loc_id": 3839, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 1731.9, "z": -826.9, "px": 2343.6, "py": 1906.9}, {"loc_id": 3840, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": -5499.1, "z": -6213.3, "px": 1109.5, "py": 987.6}, {"loc_id": 3841, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 450.3, "z": 642.2, "px": 2124.9, "py": 2157.6}, {"loc_id": 3845, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 5953.2, "z": -250.6, "px": 3064.0, "py": 2005.2}, {"loc_id": 3846, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": -5510.3, "z": -1859.5, "px": 1107.6, "py": 1730.6}, {"loc_id": 3846, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -5510.3, "z": -1859.5, "px": 1107.6, "py": 1730.6}, {"loc_id": 3848, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 7865.7, "z": -3013.2, "px": 3390.4, "py": 1533.7}, {"loc_id": 3848, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 7865.7, "z": -3013.2, "px": 3390.4, "py": 1533.7}, {"loc_id": 3849, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 9784.1, "z": 1209.0, "px": 3717.8, "py": 2254.3}, {"loc_id": 3850, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": 771.1, "z": -2689.5, "px": 2179.6, "py": 1589.0}, {"loc_id": 3851, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": -1339.4, "z": -1600.6, "px": 1819.4, "py": 1774.8}, {"loc_id": 3852, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 6, "x": -7224.3, "z": -1976.6, "px": 815.1, "py": 1710.7}, {"loc_id": 4109, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": 2942.1, "z": 903.8, "px": 2550.1, "py": 2202.2}, {"loc_id": 4117, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -4740.3, "z": 5570.9, "px": 1239.0, "py": 2998.8}, {"loc_id": 4118, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -9206.7, "z": 3189.3, "px": 476.7, "py": 2592.3}, {"loc_id": 4121, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 3272.7, "z": -4548.3, "px": 2606.5, "py": 1271.8}, {"loc_id": 4123, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": -7167.3, "z": -1866.0, "px": 824.8, "py": 1729.5}, {"loc_id": 4124, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 1994.9, "z": 1141.6, "px": 2388.5, "py": 2242.8}, {"loc_id": 4125, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": -7167.7, "z": 2685.6, "px": 824.7, "py": 2506.3}, {"loc_id": 4128, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 6, "x": -4281.1, "z": 1733.4, "px": 1317.4, "py": 2343.8}, {"loc_id": 4128, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": -4281.1, "z": 1733.4, "px": 1317.4, "py": 2343.8}, {"loc_id": 4129, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -6527.9, "z": 5445.1, "px": 933.9, "py": 2977.3}, {"loc_id": 4129, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": -6527.9, "z": 5445.1, "px": 933.9, "py": 2977.3}, {"loc_id": 4136, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": 6022.3, "z": -5886.6, "px": 3075.8, "py": 1043.4}, {"loc_id": 4137, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": 1785.0, "z": -1220.8, "px": 2352.6, "py": 1839.7}, {"loc_id": 4138, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": -3385.4, "z": 4539.1, "px": 1470.2, "py": 2822.7}, {"loc_id": 4139, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -4995.9, "z": 5704.5, "px": 1195.4, "py": 3021.6}, {"loc_id": 4139, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": -4995.9, "z": 5704.5, "px": 1195.4, "py": 3021.6}, {"loc_id": 4141, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 6, "x": -8380.7, "z": -710.6, "px": 617.7, "py": 1926.7}, {"loc_id": 4144, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 6, "x": 7544.4, "z": -2691.5, "px": 3335.6, "py": 1588.7}, {"loc_id": 4146, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 2298.1, "z": 6275.1, "px": 2440.2, "py": 3119.0}, {"loc_id": 4148, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": 2038.7, "z": -1161.5, "px": 2395.9, "py": 1849.8}, {"loc_id": 4153, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 6, "x": -6601.9, "z": 571.6, "px": 921.3, "py": 2145.6}, {"loc_id": 4155, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 5321.9, "z": 4856.1, "px": 2956.3, "py": 2876.8}, {"loc_id": 4156, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": 6653.1, "z": 4920.0, "px": 3183.5, "py": 2887.7}, {"loc_id": 4157, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 6, "x": -9159.0, "z": 3018.4, "px": 484.9, "py": 2563.1}, {"loc_id": 4164, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 6, "x": -7426.8, "z": -4985.2, "px": 780.5, "py": 1197.2}, {"loc_id": 4165, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 6, "x": -3838.5, "z": -380.1, "px": 1392.9, "py": 1983.1}, {"loc_id": 4169, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 1218.9, "z": -2236.2, "px": 2256.0, "py": 1666.4}, {"loc_id": 4171, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -4031.3, "z": -2490.3, "px": 1360.0, "py": 1623.0}, {"loc_id": 4174, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 1161.6, "z": 5507.9, "px": 2246.2, "py": 2988.0}, {"loc_id": 4175, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": -1674.2, "z": 4799.8, "px": 1762.3, "py": 2867.2}, {"loc_id": 4176, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": 899.2, "z": 3392.5, "px": 2201.5, "py": 2627.0}, {"loc_id": 4182, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": 3142.6, "z": -1276.7, "px": 2584.3, "py": 1830.1}, {"loc_id": 4183, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": -7557.0, "z": -4745.1, "px": 758.3, "py": 1238.2}, {"loc_id": 4190, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": 2058.7, "z": 1015.3, "px": 2399.4, "py": 2221.3}, {"loc_id": 4192, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": 7925.4, "z": -2948.4, "px": 3400.6, "py": 1544.8}, {"loc_id": 4198, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 3829.0, "z": 1215.6, "px": 2701.5, "py": 2255.5}, {"loc_id": 4203, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 2238.2, "z": 1021.5, "px": 2430.0, "py": 2222.3}, {"loc_id": 4207, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": 9654.2, "z": 1404.6, "px": 3695.7, "py": 2287.7}, {"loc_id": 4208, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": 2693.9, "z": -3652.1, "px": 2507.8, "py": 1424.7}, {"loc_id": 4210, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": -2503.3, "z": 1718.0, "px": 1620.8, "py": 2341.2}, {"loc_id": 4210, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -2503.3, "z": 1718.0, "px": 1620.8, "py": 2341.2}, {"loc_id": 4211, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 1342.8, "z": -5442.2, "px": 2277.2, "py": 1119.2}, {"loc_id": 4213, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": -9607.3, "z": 584.3, "px": 408.4, "py": 2147.7}, {"loc_id": 4215, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": -3967.1, "z": -2613.4, "px": 1370.9, "py": 1602.0}, {"loc_id": 4230, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 6, "x": -7741.6, "z": 4344.6, "px": 726.8, "py": 2789.5}, {"loc_id": 4232, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 6, "x": 5628.7, "z": -1013.6, "px": 3008.6, "py": 1875.0}, {"loc_id": 4233, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -9029.0, "z": 3203.1, "px": 507.1, "py": 2594.7}, {"loc_id": 4234, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": 2241.6, "z": 5178.2, "px": 2430.6, "py": 2931.7}, {"loc_id": 4242, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -2167.4, "z": 702.4, "px": 1678.1, "py": 2167.9}, {"loc_id": 4243, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": 579.7, "z": 185.9, "px": 2146.9, "py": 2079.7}, {"loc_id": 4245, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 6, "x": 8067.7, "z": 323.4, "px": 3424.9, "py": 2103.2}, {"loc_id": 4248, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -5761.9, "z": 1610.3, "px": 1064.6, "py": 2322.8}, {"loc_id": 4250, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -4867.6, "z": 5757.0, "px": 1217.3, "py": 3030.5}, {"loc_id": 4251, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -5947.0, "z": 1400.3, "px": 1033.0, "py": 2287.0}, {"loc_id": 4252, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": -6152.8, "z": 2296.4, "px": 997.9, "py": 2439.9}, {"loc_id": 4257, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": -649.4, "z": -6517.8, "px": 1937.2, "py": 935.6}, {"loc_id": 4260, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": -444.3, "z": -4292.0, "px": 1972.2, "py": 1315.5}, {"loc_id": 4264, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": 8056.3, "z": -2882.2, "px": 3422.9, "py": 1556.1}, {"loc_id": 4266, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": 632.8, "z": 5047.1, "px": 2156.0, "py": 2909.4}, {"loc_id": 4268, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 3143.0, "z": -2424.5, "px": 2584.4, "py": 1634.2}, {"loc_id": 4271, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -6662.5, "z": 5429.6, "px": 910.9, "py": 2974.7}, {"loc_id": 4272, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": -9543.9, "z": -2625.6, "px": 419.2, "py": 1599.9}, {"loc_id": 4274, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": -9671.9, "z": -2564.5, "px": 397.3, "py": 1610.3}, {"loc_id": 4279, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": 3849.9, "z": 3584.6, "px": 2705.0, "py": 2659.8}, {"loc_id": 4283, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 6, "x": -1219.6, "z": -1141.5, "px": 1839.9, "py": 1853.2}, {"loc_id": 4283, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 6, "x": -1219.6, "z": -1141.5, "px": 1839.9, "py": 1853.2}, {"loc_id": 4284, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": 3833.1, "z": 894.9, "px": 2702.2, "py": 2200.7}, {"loc_id": 4284, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 6, "x": 3833.1, "z": 894.9, "px": 2702.2, "py": 2200.7}, {"loc_id": 4286, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": 772.0, "z": 5308.1, "px": 2179.8, "py": 2953.9}, {"loc_id": 4286, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 6, "x": 772.0, "z": 5308.1, "px": 2179.8, "py": 2953.9}, {"loc_id": 4288, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 4550.6, "z": -4986.1, "px": 2824.6, "py": 1197.0}, {"loc_id": 4291, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 6, "x": -9346.4, "z": 3080.4, "px": 452.9, "py": 2573.7}, {"loc_id": 4291, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 6, "x": -9346.4, "z": 3080.4, "px": 452.9, "py": 2573.7}, {"loc_id": 4292, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 1531.7, "z": 6326.6, "px": 2309.4, "py": 3127.7}, {"loc_id": 4293, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": 2745.6, "z": 455.2, "px": 2516.6, "py": 2125.7}, {"loc_id": 4300, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 6, "x": 7413.3, "z": -4476.7, "px": 3313.2, "py": 1284.0}, {"loc_id": 4304, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 6, "x": 9.6, "z": -4220.6, "px": 2049.6, "py": 1327.7}, {"loc_id": 4311, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 2953.2, "z": -2112.1, "px": 2552.0, "py": 1687.5}, {"loc_id": 4312, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 2168.5, "z": -1334.2, "px": 2418.1, "py": 1820.3}, {"loc_id": 4316, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 6, "x": 7689.0, "z": -3067.6, "px": 3360.3, "py": 1524.5}, {"loc_id": 4317, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 6, "x": 2230.8, "z": 1097.7, "px": 2428.7, "py": 2235.3}, {"loc_id": 4318, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 6, "x": -6719.5, "z": -4808.2, "px": 901.2, "py": 1227.4}, {"loc_id": 4321, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -9207.0, "z": 3143.0, "px": 476.7, "py": 2584.4}, {"loc_id": 4322, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 6, "x": -1535.3, "z": -1858.3, "px": 1786.0, "py": 1730.9}, {"loc_id": 4323, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 6, "x": -5815.7, "z": 4610.4, "px": 1055.5, "py": 2834.8}, {"loc_id": 4325, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 6, "x": -8960.4, "z": 3145.3, "px": 518.8, "py": 2584.8}, {"loc_id": 4336, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 6, "x": 2820.0, "z": -4873.7, "px": 2529.3, "py": 1216.2}, {"loc_id": 4336, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 6, "x": 2820.0, "z": -4873.7, "px": 2529.3, "py": 1216.2}, {"loc_id": 4339, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": 566.2, "z": 5367.6, "px": 2144.6, "py": 2964.1}, {"loc_id": 4340, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 6, "x": -5185.9, "z": 330.5, "px": 1162.9, "py": 2104.4}, {"loc_id": 4341, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 6, "x": 3324.6, "z": -2746.9, "px": 2615.4, "py": 1579.2}, {"loc_id": 4346, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 5045.5, "z": 2760.5, "px": 2909.1, "py": 2519.1}, {"loc_id": 4348, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 7751.4, "z": -2879.9, "px": 3370.9, "py": 1556.5}, {"loc_id": 4353, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 6, "x": -3525.6, "z": 6778.0, "px": 1446.3, "py": 3204.8}, {"loc_id": 4364, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -6595.0, "z": 5437.6, "px": 922.5, "py": 2976.0}, {"loc_id": 4368, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 6, "x": -9275.3, "z": 3326.7, "px": 465.0, "py": 2615.8}, {"loc_id": 4370, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 6, "x": 3528.1, "z": 3652.7, "px": 2650.1, "py": 2671.4}, {"loc_id": 4373, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 6, "x": 7289.3, "z": -3133.3, "px": 3292.0, "py": 1513.3}, {"loc_id": 4382, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 6, "x": -7489.9, "z": -4736.3, "px": 769.7, "py": 1239.7}, {"loc_id": 4385, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 6, "x": 2042.6, "z": 3914.5, "px": 2396.6, "py": 2716.1}, {"loc_id": 4386, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 6, "x": 8323.7, "z": 195.3, "px": 3468.6, "py": 2081.3}, {"loc_id": 4387, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 5190.4, "z": 5056.9, "px": 2933.8, "py": 2911.0}, {"loc_id": 4392, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 6, "x": 2299.3, "z": 5187.5, "px": 2440.4, "py": 2933.3}, {"loc_id": 4394, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 6, "x": -8376.6, "z": 636.4, "px": 618.4, "py": 2156.6}, {"loc_id": 4395, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 506.6, "z": 5049.8, "px": 2134.5, "py": 2909.8}, {"loc_id": 4399, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": -9589.9, "z": -183.4, "px": 411.3, "py": 2016.7}, {"loc_id": 4400, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 6, "x": 3450.0, "z": -2686.0, "px": 2636.8, "py": 1589.6}, {"loc_id": 4400, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 3450.0, "z": -2686.0, "px": 2636.8, "py": 1589.6}, {"loc_id": 4400, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 6, "x": 3450.0, "z": -2686.0, "px": 2636.8, "py": 1589.6}, {"loc_id": 4402, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 6, "x": 1781.0, "z": 7356.1, "px": 2352.0, "py": 3303.4}, {"loc_id": 4405, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 6, "x": -6005.8, "z": 4800.9, "px": 1023.0, "py": 2867.4}, {"loc_id": 4405, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -6005.8, "z": 4800.9, "px": 1023.0, "py": 2867.4}, {"loc_id": 4408, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 6, "x": -68.7, "z": -4600.0, "px": 2036.3, "py": 1262.9}, {"loc_id": 4408, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 6, "x": -68.7, "z": -4600.0, "px": 2036.3, "py": 1262.9}, {"loc_id": 4411, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 8574.1, "z": -3708.9, "px": 3511.3, "py": 1415.0}, {"loc_id": 4411, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 6, "x": 8574.1, "z": -3708.9, "px": 3511.3, "py": 1415.0}, {"loc_id": 4412, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 6, "x": -1215.7, "z": -1221.1, "px": 1840.5, "py": 1839.6}, {"loc_id": 4413, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 6, "x": -1670.7, "z": -4227.6, "px": 1762.9, "py": 1326.5}, {"loc_id": 4414, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 6, "x": -1983.0, "z": -831.7, "px": 1709.6, "py": 1906.1}, {"loc_id": 4419, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 4991.3, "z": -2122.8, "px": 2899.8, "py": 1685.7}, {"loc_id": 4421, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 5510.4, "z": -969.9, "px": 2988.4, "py": 1882.5}, {"loc_id": 4423, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 6, "x": -5955.5, "z": 4667.7, "px": 1031.6, "py": 2844.6}, {"loc_id": 4424, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 6, "x": 7353.4, "z": -4420.3, "px": 3303.0, "py": 1293.6}, {"loc_id": 4425, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 2552.7, "z": 258.9, "px": 2483.7, "py": 2092.2}, {"loc_id": 4426, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 8777.6, "z": -1335.1, "px": 3546.0, "py": 1820.1}, {"loc_id": 4427, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 6, "x": 1735.8, "z": -1148.4, "px": 2344.2, "py": 1852.0}, {"loc_id": 4428, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 6, "x": -59.6, "z": -1013.7, "px": 2037.8, "py": 1875.0}, {"loc_id": 4436, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 6, "x": 1152.8, "z": 5443.9, "px": 2244.7, "py": 2977.1}, {"loc_id": 4439, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": 5825.4, "z": -4736.0, "px": 3042.2, "py": 1239.7}, {"loc_id": 4441, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -192.8, "z": 572.5, "px": 2015.1, "py": 2145.7}, {"loc_id": 4460, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 6, "x": -7484.5, "z": -4990.2, "px": 770.6, "py": 1196.3}, {"loc_id": 4465, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 6, "x": -584.0, "z": -6463.7, "px": 1948.3, "py": 944.9}, {"loc_id": 4468, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 6, "x": 3901.0, "z": 1013.6, "px": 2713.8, "py": 2221.0}, {"loc_id": 4469, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 6, "x": 4477.9, "z": -5048.3, "px": 2812.2, "py": 1186.4}, {"loc_id": 4474, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 6, "x": -6838.8, "z": 5306.6, "px": 880.8, "py": 2953.7}, {"loc_id": 4479, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 6, "x": -1589.2, "z": -5703.7, "px": 1776.8, "py": 1074.6}, {"loc_id": 4482, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 6, "x": 2112.1, "z": 903.8, "px": 2408.5, "py": 2202.2}, {"loc_id": 4488, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 6, "x": -5891.9, "z": 4474.7, "px": 1042.4, "py": 2811.7}, {"loc_id": 4490, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -5060.1, "z": 761.5, "px": 1184.4, "py": 2178.0}, {"loc_id": 4493, "loc_name": "Crypt4", "item": "Pickable: MushroomYellow", "count": 6, "x": -3957.2, "z": -2552.7, "px": 1372.6, "py": 1612.3}, {"loc_id": 4495, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 6, "x": -8956.0, "z": 2882.7, "px": 519.5, "py": 2540.0}, {"loc_id": 4506, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 6, "x": 5060.4, "z": -2244.4, "px": 2911.6, "py": 1665.0}, {"loc_id": 5518, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 6, "x": 1289.9, "z": -5129.2, "px": 2268.1, "py": 1172.6}, {"loc_id": 5520, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 6, "x": 3333.8, "z": 324.5, "px": 2617.0, "py": 2103.4}, {"loc_id": 5536, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 6, "x": -6596.6, "z": -2053.3, "px": 922.2, "py": 1697.6}, {"loc_id": 5550, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 6, "x": -6906.9, "z": -2433.2, "px": 869.2, "py": 1632.7}, {"loc_id": 5553, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 6, "x": -317.6, "z": -1206.2, "px": 1993.8, "py": 1842.1}, {"loc_id": 5555, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 6, "x": 968.3, "z": -2499.9, "px": 2213.3, "py": 1621.4}, {"loc_id": 5561, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": 8194.2, "z": 135.5, "px": 3446.5, "py": 2071.1}, {"loc_id": 5564, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": -3347.9, "z": -2353.0, "px": 1476.6, "py": 1646.4}, {"loc_id": 5565, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": 2670.0, "z": -3595.2, "px": 2503.7, "py": 1434.4}, {"loc_id": 5566, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": 822.5, "z": 300.3, "px": 2188.4, "py": 2099.3}, {"loc_id": 5577, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": -1589.1, "z": 4845.1, "px": 1776.8, "py": 2874.9}, {"loc_id": 5583, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": -4405.0, "z": 1730.0, "px": 1296.2, "py": 2343.3}, {"loc_id": 5584, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": 8205.2, "z": -3821.3, "px": 3448.4, "py": 1395.8}, {"loc_id": 5585, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": -7296.7, "z": -1848.9, "px": 802.7, "py": 1732.5}, {"loc_id": 5593, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": 7158.7, "z": -3087.2, "px": 3269.8, "py": 1521.1}, {"loc_id": 5594, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": -6702.6, "z": 3572.3, "px": 904.1, "py": 2657.7}, {"loc_id": 5599, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": -815.0, "z": -6652.8, "px": 1908.9, "py": 912.6}, {"loc_id": 5600, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": -6066.3, "z": 2108.0, "px": 1012.7, "py": 2407.8}, {"loc_id": 5604, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": -8703.6, "z": -789.2, "px": 562.6, "py": 1913.3}, {"loc_id": 5608, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": 1749.0, "z": 7281.9, "px": 2346.5, "py": 3290.8}, {"loc_id": 5611, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": 1899.4, "z": -4350.4, "px": 2372.2, "py": 1305.5}, {"loc_id": 5613, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": -1385.5, "z": -5563.8, "px": 1811.5, "py": 1098.4}, {"loc_id": 5616, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": 1073.3, "z": -5632.9, "px": 2231.2, "py": 1086.7}, {"loc_id": 5618, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": 647.2, "z": 5374.5, "px": 2158.5, "py": 2965.2}, {"loc_id": 5620, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": -7026.5, "z": 2361.4, "px": 848.8, "py": 2451.0}, {"loc_id": 5626, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": 8143.5, "z": -366.2, "px": 3437.8, "py": 1985.5}, {"loc_id": 5627, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": 390.4, "z": 5590.9, "px": 2114.6, "py": 3002.2}, {"loc_id": 5635, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Skeleton", "count": 6, "x": 5314.5, "z": -561.1, "px": 2955.0, "py": 1952.2}, {"loc_id": 5673, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 6, "x": 2317.9, "z": 3716.3, "px": 2443.6, "py": 2682.2}, {"loc_id": 6851, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 6, "x": 4308.5, "z": -1259.4, "px": 2783.3, "py": 1833.1}, {"loc_id": 6856, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 6, "x": -3921.8, "z": -2218.9, "px": 1378.7, "py": 1669.3}, {"loc_id": 6857, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 6, "x": 3026.9, "z": -2761.0, "px": 2564.6, "py": 1576.8}, {"loc_id": 6859, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 6, "x": -1768.8, "z": 3195.3, "px": 1746.1, "py": 2593.3}, {"loc_id": 6878, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 6, "x": -2175.0, "z": 198.6, "px": 1676.8, "py": 2081.9}, {"loc_id": 6881, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 6, "x": -70.0, "z": -1791.1, "px": 2036.1, "py": 1742.3}, {"loc_id": 6893, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 6, "x": -1744.1, "z": 3019.0, "px": 1750.3, "py": 2563.2}, {"loc_id": 6898, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 6, "x": -585.5, "z": -3697.0, "px": 1948.1, "py": 1417.0}, {"loc_id": 7265, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": -1990.4, "z": -3062.7, "px": 1708.3, "py": 1525.3}, {"loc_id": 7269, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": 3062.4, "z": 3127.5, "px": 2570.6, "py": 2581.8}, {"loc_id": 7274, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": 3325.4, "z": -1414.9, "px": 2615.5, "py": 1806.5}, {"loc_id": 7276, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": 4803.5, "z": -2240.7, "px": 2867.8, "py": 1665.6}, {"loc_id": 7279, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": 4486.6, "z": 1094.6, "px": 2813.7, "py": 2234.8}, {"loc_id": 7284, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": 1280.6, "z": 3190.7, "px": 2266.6, "py": 2592.5}, {"loc_id": 7289, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": -836.4, "z": -6347.5, "px": 1905.3, "py": 964.7}, {"loc_id": 7292, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": 1349.0, "z": -4297.7, "px": 2278.2, "py": 1314.5}, {"loc_id": 7294, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": 649.0, "z": -7366.4, "px": 2158.8, "py": 790.8}, {"loc_id": 7300, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": -137.8, "z": -5764.1, "px": 2024.5, "py": 1064.3}, {"loc_id": 7310, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": 6918.1, "z": -2309.6, "px": 3228.7, "py": 1653.8}, {"loc_id": 7313, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": 2822.1, "z": -5952.5, "px": 2529.6, "py": 1032.1}, {"loc_id": 7316, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": -1142.0, "z": -4476.7, "px": 1853.1, "py": 1284.0}, {"loc_id": 7319, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": -4404.4, "z": -6138.5, "px": 1296.3, "py": 1000.4}, {"loc_id": 7322, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": 4612.1, "z": -1396.2, "px": 2835.1, "py": 1809.7}, {"loc_id": 7327, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": 5044.9, "z": -1543.6, "px": 2909.0, "py": 1784.6}, {"loc_id": 7328, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": -122.3, "z": -4989.9, "px": 2027.1, "py": 1196.4}, {"loc_id": 7331, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": 3079.4, "z": 4425.1, "px": 2573.6, "py": 2803.2}, {"loc_id": 7336, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": -1152.5, "z": -4618.4, "px": 1851.3, "py": 1259.8}, {"loc_id": 7337, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": -2891.7, "z": -7226.7, "px": 1554.5, "py": 814.6}, {"loc_id": 7338, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": -3061.7, "z": 1289.3, "px": 1525.5, "py": 2268.0}, {"loc_id": 7342, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": 4674.5, "z": -2367.9, "px": 2845.8, "py": 1643.9}, {"loc_id": 7343, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": -5895.2, "z": 2059.9, "px": 1041.9, "py": 2399.6}, {"loc_id": 7349, "loc_name": "TarPit2", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": 4676.9, "z": 1156.4, "px": 2846.2, "py": 2245.4}, {"loc_id": 7350, "loc_name": "TarPit2", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": 3461.6, "z": 3266.8, "px": 2638.8, "py": 2605.5}, {"loc_id": 7393, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": -5894.5, "z": -1199.6, "px": 1042.0, "py": 1843.3}, {"loc_id": 7408, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 6, "x": -4220.8, "z": 2065.5, "px": 1327.7, "py": 2400.5}, {"loc_id": 7444, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 6, "x": 5696.0, "z": 2112.0, "px": 3020.1, "py": 2408.4}, {"loc_id": 7445, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 6, "x": 1280.0, "z": 8448.0, "px": 2266.5, "py": 3489.8}, {"loc_id": 7449, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 6, "x": -3328.0, "z": -2048.0, "px": 1480.0, "py": 1698.5}, {"loc_id": 7450, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 6, "x": 5248.0, "z": 192.0, "px": 2943.7, "py": 2080.8}, {"loc_id": 7457, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 6, "x": 2560.0, "z": 896.0, "px": 2484.9, "py": 2200.9}, {"loc_id": 7460, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 6, "x": -4480.0, "z": -1344.0, "px": 1283.4, "py": 1818.6}, {"loc_id": 7461, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 6, "x": 1024.0, "z": -2624.0, "px": 2222.8, "py": 1600.2}, {"loc_id": 7461, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 6, "x": 1024.0, "z": -2624.0, "px": 2222.8, "py": 1600.2}, {"loc_id": 7466, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 6, "x": 7296.0, "z": -384.0, "px": 3293.2, "py": 1982.5}, {"loc_id": 7467, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 6, "x": 2688.0, "z": -2688.0, "px": 2506.8, "py": 1589.2}, {"loc_id": 7472, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 6, "x": 4608.0, "z": -5440.0, "px": 2834.4, "py": 1119.6}, {"loc_id": 7473, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 6, "x": 0.0, "z": -1152.0, "px": 2048.0, "py": 1851.4}, {"loc_id": 7478, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 6, "x": 4800.0, "z": -5312.0, "px": 2867.2, "py": 1141.4}, {"loc_id": 7482, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 6, "x": 4288.0, "z": -5824.0, "px": 2779.8, "py": 1054.0}, {"loc_id": 7482, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 6, "x": 4288.0, "z": -5824.0, "px": 2779.8, "py": 1054.0}, {"loc_id": 7484, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 6, "x": 2240.0, "z": -2688.0, "px": 2430.3, "py": 1589.2}, {"loc_id": 7485, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 6, "x": -2048.0, "z": -192.0, "px": 1698.5, "py": 2015.2}, {"loc_id": 7488, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 6, "x": -7616.0, "z": -2368.0, "px": 748.2, "py": 1643.9}, {"loc_id": 7494, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 6, "x": 9664.0, "z": -1216.0, "px": 3697.3, "py": 1840.5}, {"loc_id": 7494, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 6, "x": 9664.0, "z": -1216.0, "px": 3697.3, "py": 1840.5}, {"loc_id": 7495, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 6, "x": 3328.0, "z": 9280.0, "px": 2616.0, "py": 3631.8}, {"loc_id": 7495, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 6, "x": 3328.0, "z": 9280.0, "px": 2616.0, "py": 3631.8}, {"loc_id": 7496, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 6, "x": 4608.0, "z": -5824.0, "px": 2834.4, "py": 1054.0}, {"loc_id": 7503, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 6, "x": 1344.0, "z": 8640.0, "px": 2277.4, "py": 3522.6}, {"loc_id": 7506, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 6, "x": 2048.0, "z": 4736.0, "px": 2397.5, "py": 2856.3}, {"loc_id": 7507, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 6, "x": -5056.0, "z": 2688.0, "px": 1185.1, "py": 2506.8}, {"loc_id": 7508, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 6, "x": 3520.0, "z": 9216.0, "px": 2648.7, "py": 3620.9}, {"loc_id": 7515, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 6, "x": 1216.0, "z": 4864.0, "px": 2255.5, "py": 2878.1}, {"loc_id": 7515, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 6, "x": 1216.0, "z": 4864.0, "px": 2255.5, "py": 2878.1}, {"loc_id": 7516, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 6, "x": 3008.0, "z": 576.0, "px": 2561.4, "py": 2146.3}, {"loc_id": 7518, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 6, "x": 2560.0, "z": 8768.0, "px": 2484.9, "py": 3544.4}, {"loc_id": 7521, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 6, "x": 2240.0, "z": -3712.0, "px": 2430.3, "py": 1414.5}, {"loc_id": 7527, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 6, "x": -3392.0, "z": 6336.0, "px": 1469.1, "py": 3129.3}, {"loc_id": 7531, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 6, "x": 6016.0, "z": 4480.0, "px": 3074.7, "py": 2812.6}, {"loc_id": 7533, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 6, "x": -8576.0, "z": -960.0, "px": 584.4, "py": 1884.2}, {"loc_id": 7536, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 6, "x": 2112.0, "z": -3520.0, "px": 2408.4, "py": 1447.3}, {"loc_id": 7536, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 6, "x": 2112.0, "z": -3520.0, "px": 2408.4, "py": 1447.3}, {"loc_id": 7537, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 6, "x": 6272.0, "z": 6784.0, "px": 3118.4, "py": 3205.8}, {"loc_id": 7547, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 6, "x": 5760.0, "z": 4480.0, "px": 3031.0, "py": 2812.6}, {"loc_id": 7548, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 6, "x": -960.0, "z": 8704.0, "px": 1884.2, "py": 3533.5}, {"loc_id": 7550, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 6, "x": 1280.0, "z": 320.0, "px": 2266.5, "py": 2102.6}, {"loc_id": 7550, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 6, "x": 1280.0, "z": 320.0, "px": 2266.5, "py": 2102.6}, {"loc_id": 7553, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 6, "x": -6080.0, "z": -320.0, "px": 1010.3, "py": 1993.4}, {"loc_id": 7557, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 6, "x": 3264.0, "z": 256.0, "px": 2605.1, "py": 2091.7}, {"loc_id": 7557, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 6, "x": 3264.0, "z": 256.0, "px": 2605.1, "py": 2091.7}, {"loc_id": 7559, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 6, "x": -4096.0, "z": 1600.0, "px": 1348.9, "py": 2321.1}, {"loc_id": 7561, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 6, "x": -6208.0, "z": -640.0, "px": 988.5, "py": 1938.8}, {"loc_id": 7561, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 6, "x": -6208.0, "z": -640.0, "px": 988.5, "py": 1938.8}, {"loc_id": 7561, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 6, "x": -6208.0, "z": -640.0, "px": 988.5, "py": 1938.8}, {"loc_id": 7563, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 6, "x": -3584.0, "z": 1472.0, "px": 1436.3, "py": 2299.2}, {"loc_id": 7564, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 6, "x": 6400.0, "z": 7040.0, "px": 3140.3, "py": 3249.5}, {"loc_id": 7566, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 6, "x": -4288.0, "z": -1216.0, "px": 1316.2, "py": 1840.5}, {"loc_id": 7567, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 6, "x": 2048.0, "z": -1600.0, "px": 2397.5, "py": 1774.9}, {"loc_id": 7570, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 6, "x": 1600.0, "z": 7040.0, "px": 2321.1, "py": 3249.5}, {"loc_id": 7572, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 6, "x": 3648.0, "z": -704.0, "px": 2670.6, "py": 1927.9}, {"loc_id": 8035, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 6, "x": 9153.3, "z": -1844.8, "px": 3610.2, "py": 1733.2}, {"loc_id": 8045, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 6, "x": 4737.5, "z": 6008.2, "px": 2856.5, "py": 3073.4}, {"loc_id": 8076, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 6, "x": 2179.7, "z": -6406.5, "px": 2420.0, "py": 954.6}, {"loc_id": 8080, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 6, "x": 3846.4, "z": -6984.5, "px": 2704.5, "py": 856.0}, {"loc_id": 8084, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 6, "x": 8756.1, "z": 564.6, "px": 3542.4, "py": 2144.4}, {"loc_id": 8098, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 6, "x": 4225.1, "z": -5451.5, "px": 2769.1, "py": 1117.6}, {"loc_id": 8120, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 6, "x": 3277.4, "z": 7090.3, "px": 2607.3, "py": 3258.1}, {"loc_id": 9944, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 6, "x": -1152.0, "z": -9472.0, "px": 1851.4, "py": 431.4}, {"loc_id": 9946, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": -640.0, "z": -9408.0, "px": 1938.8, "py": 442.4}, {"loc_id": 9948, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 6, "x": -1216.0, "z": -9472.0, "px": 1840.5, "py": 431.4}, {"loc_id": 9961, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": 704.0, "z": -9024.0, "px": 2168.1, "py": 507.9}, {"loc_id": 9962, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": 576.0, "z": -9408.0, "px": 2146.3, "py": 442.4}, {"loc_id": 9963, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": -576.0, "z": -9216.0, "px": 1949.7, "py": 475.1}, {"loc_id": 9967, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 6, "x": -832.0, "z": -9536.0, "px": 1906.0, "py": 420.5}, {"loc_id": 9970, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 6, "x": -512.0, "z": -9152.0, "px": 1960.6, "py": 486.1}, {"loc_id": 9972, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 6, "x": 1152.0, "z": -8960.0, "px": 2244.6, "py": 518.8}, {"loc_id": 9976, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": 256.0, "z": -8832.0, "px": 2091.7, "py": 540.7}, {"loc_id": 9977, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": -768.0, "z": -8960.0, "px": 1916.9, "py": 518.8}, {"loc_id": 9978, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 6, "x": -448.0, "z": -9920.0, "px": 1971.5, "py": 355.0}, {"loc_id": 9980, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": -768.0, "z": -9344.0, "px": 1916.9, "py": 453.3}, {"loc_id": 9985, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": 256.0, "z": -8768.0, "px": 2091.7, "py": 551.6}, {"loc_id": 9987, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": -384.0, "z": -8768.0, "px": 1982.5, "py": 551.6}, {"loc_id": 9987, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 6, "x": -384.0, "z": -8768.0, "px": 1982.5, "py": 551.6}, {"loc_id": 9994, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 6, "x": -640.0, "z": -9280.0, "px": 1938.8, "py": 464.2}, {"loc_id": 9995, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 6, "x": -320.0, "z": -8832.0, "px": 1993.4, "py": 540.7}, {"loc_id": 9995, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": -320.0, "z": -8832.0, "px": 1993.4, "py": 540.7}, {"loc_id": 9996, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": 384.0, "z": -8832.0, "px": 2113.5, "py": 540.7}, {"loc_id": 9997, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": 1152.0, "z": -8896.0, "px": 2244.6, "py": 529.7}, {"loc_id": 9998, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 6, "x": 768.0, "z": -9280.0, "px": 2179.1, "py": 464.2}, {"loc_id": 10001, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 6, "x": 1536.0, "z": -9216.0, "px": 2310.1, "py": 475.1}, {"loc_id": 10007, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": 704.0, "z": -9408.0, "px": 2168.1, "py": 442.4}, {"loc_id": 10013, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": 1216.0, "z": -9344.0, "px": 2255.5, "py": 453.3}, {"loc_id": 10014, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": -448.0, "z": -8896.0, "px": 1971.5, "py": 529.7}, {"loc_id": 10016, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 6, "x": 1600.0, "z": -9472.0, "px": 2321.1, "py": 431.4}, {"loc_id": 10017, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 6, "x": -768.0, "z": -8832.0, "px": 1916.9, "py": 540.7}, {"loc_id": 10263, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 6, "x": -4608.2, "z": -8127.0, "px": 1261.5, "py": 661.0}, {"loc_id": 10266, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 6, "x": 128.7, "z": -8766.8, "px": 2070.0, "py": 551.8}, {"loc_id": 10271, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 6, "x": 2433.7, "z": -9023.3, "px": 2463.4, "py": 508.0}, {"loc_id": 10284, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 6, "x": 446.2, "z": -8769.6, "px": 2124.2, "py": 551.3}, {"loc_id": 10285, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 6, "x": -1918.6, "z": -9152.1, "px": 1720.6, "py": 486.0}, {"loc_id": 10288, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 6, "x": -2049.1, "z": -9150.7, "px": 1698.3, "py": 486.3}, {"loc_id": 10299, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 6, "x": -4673.3, "z": -8191.6, "px": 1250.4, "py": 650.0}, {"loc_id": 10302, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 6, "x": 1086.7, "z": -8894.1, "px": 2233.5, "py": 530.1}, {"loc_id": 10303, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 6, "x": -3838.9, "z": -9214.5, "px": 1392.8, "py": 475.4}, {"loc_id": 10314, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 6, "x": 831.0, "z": -8897.8, "px": 2189.8, "py": 529.4}, {"loc_id": 10317, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 6, "x": 1088.3, "z": -9152.3, "px": 2233.7, "py": 486.0}, {"loc_id": 10319, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 6, "x": 384.5, "z": -9537.1, "px": 2113.6, "py": 420.3}, {"loc_id": 10320, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 6, "x": -3775.3, "z": -9150.6, "px": 1403.7, "py": 486.3}, {"loc_id": 10332, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 6, "x": -703.1, "z": -9215.8, "px": 1928.0, "py": 475.2}, {"loc_id": 10358, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 6, "x": -2046.5, "z": -8961.3, "px": 1698.7, "py": 518.6}, {"loc_id": 10446, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 6, "x": -2371.4, "z": -8716.1, "px": 1643.3, "py": 560.5}, {"loc_id": 10527, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 6, "x": -8.7, "z": -9587.8, "px": 2046.5, "py": 411.7}, {"loc_id": 10555, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 6, "x": 3196.9, "z": -9226.9, "px": 2593.6, "py": 473.3}, {"loc_id": 10562, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 6, "x": 972.4, "z": -8910.6, "px": 2214.0, "py": 527.3}, {"loc_id": 10570, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 6, "x": -461.8, "z": -9334.4, "px": 1969.2, "py": 454.9}, {"loc_id": 10823, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 6, "x": -5312.0, "z": -7552.0, "px": 1141.4, "py": 759.1}, {"loc_id": 10826, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": 3904.0, "z": -8704.0, "px": 2714.3, "py": 562.5}, {"loc_id": 10827, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 6, "x": -2496.0, "z": -8768.0, "px": 1622.0, "py": 551.6}, {"loc_id": 10832, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 6, "x": 2368.0, "z": -9280.0, "px": 2452.1, "py": 464.2}, {"loc_id": 10843, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": 3840.0, "z": -8896.0, "px": 2703.4, "py": 529.7}, {"loc_id": 10847, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": -4736.0, "z": -8320.0, "px": 1239.7, "py": 628.1}, {"loc_id": 10849, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": 2944.0, "z": -9280.0, "px": 2550.4, "py": 464.2}, {"loc_id": 10853, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 6, "x": -3840.0, "z": -8896.0, "px": 1392.6, "py": 529.7}, {"loc_id": 10854, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": 256.0, "z": -9664.0, "px": 2091.7, "py": 398.7}, {"loc_id": 10856, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": 5248.0, "z": -7936.0, "px": 2943.7, "py": 693.6}, {"loc_id": 10856, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 6, "x": 5248.0, "z": -7936.0, "px": 2943.7, "py": 693.6}, {"loc_id": 10866, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 6, "x": 1664.0, "z": -9728.0, "px": 2332.0, "py": 387.8}, {"loc_id": 10867, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 6, "x": -1792.0, "z": -9152.0, "px": 1742.2, "py": 486.1}, {"loc_id": 10870, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 6, "x": -1152.0, "z": -9664.0, "px": 1851.4, "py": 398.7}, {"loc_id": 10884, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": -1408.0, "z": -9408.0, "px": 1807.7, "py": 442.4}, {"loc_id": 10887, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 6, "x": -832.0, "z": -8768.0, "px": 1906.0, "py": 551.6}, {"loc_id": 10893, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": 4096.0, "z": -8896.0, "px": 2747.1, "py": 529.7}, {"loc_id": 10899, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 6, "x": 3648.0, "z": -8256.0, "px": 2670.6, "py": 639.0}, {"loc_id": 10906, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 6, "x": -3520.0, "z": -9024.0, "px": 1447.3, "py": 507.9}, {"loc_id": 10907, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 6, "x": 3200.0, "z": -8320.0, "px": 2594.1, "py": 628.1}, {"loc_id": 10910, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 6, "x": -1920.0, "z": -9344.0, "px": 1720.3, "py": 453.3}, {"loc_id": 10912, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 6, "x": 1852.2, "z": -8443.0, "px": 2364.1, "py": 607.1}, {"loc_id": 10913, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 6, "x": -697.6, "z": -8707.2, "px": 1928.9, "py": 562.0}, {"loc_id": 10935, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 6, "x": 3525.7, "z": -8574.7, "px": 2649.7, "py": 584.6}, {"loc_id": 10961, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 6, "x": -2115.5, "z": -8827.0, "px": 1687.0, "py": 541.5}, {"loc_id": 10965, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 6, "x": -4356.9, "z": -7998.9, "px": 1304.4, "py": 682.9}, {"loc_id": 10979, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 6, "x": -5434.2, "z": -7745.7, "px": 1120.6, "py": 726.1}, {"loc_id": 10993, "loc_name": "MorgenHole3", "item": "Pickable: Entrails", "count": 6, "x": -5191.9, "z": -7610.9, "px": 1161.9, "py": 749.1}, {"loc_id": 11019, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 6, "x": -3844.5, "z": -8304.9, "px": 1391.9, "py": 630.6}, {"loc_id": 11072, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 6, "x": 2872.1, "z": -9274.0, "px": 2538.2, "py": 465.2}, {"loc_id": 21, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 5, "x": -4146.8, "z": 3646.5, "px": 1340.3, "py": 2670.3}, {"loc_id": 24, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 5, "x": 2365.0, "z": 184.9, "px": 2451.6, "py": 2079.6}, {"loc_id": 24, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": 2365.0, "z": 184.9, "px": 2451.6, "py": 2079.6}, {"loc_id": 26, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": -3714.0, "z": -4105.5, "px": 1414.1, "py": 1347.3}, {"loc_id": 32, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 5, "x": 3386.5, "z": -4286.1, "px": 2626.0, "py": 1316.5}, {"loc_id": 32, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 5, "x": 3386.5, "z": -4286.1, "px": 2626.0, "py": 1316.5}, {"loc_id": 34, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": 1475.7, "z": 2164.3, "px": 2299.9, "py": 2417.4}, {"loc_id": 34, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 5, "x": 1475.7, "z": 2164.3, "px": 2299.9, "py": 2417.4}, {"loc_id": 37, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": -384.0, "z": 2571.6, "px": 1982.5, "py": 2486.9}, {"loc_id": 38, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": -2445.9, "z": -4152.3, "px": 1630.6, "py": 1339.3}, {"loc_id": 42, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": 3699.8, "z": 4355.8, "px": 2679.4, "py": 2791.4}, {"loc_id": 42, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": 3699.8, "z": 4355.8, "px": 2679.4, "py": 2791.4}, {"loc_id": 43, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": -4994.4, "z": 1343.0, "px": 1195.6, "py": 2277.2}, {"loc_id": 44, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": -187.0, "z": 2492.5, "px": 2016.1, "py": 2473.4}, {"loc_id": 44, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": -187.0, "z": 2492.5, "px": 2016.1, "py": 2473.4}, {"loc_id": 45, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 5, "x": -2578.0, "z": -1589.3, "px": 1608.0, "py": 1776.8}, {"loc_id": 46, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": -2351.2, "z": 4805.5, "px": 1646.7, "py": 2868.1}, {"loc_id": 47, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": -2414.9, "z": 4847.7, "px": 1635.9, "py": 2875.3}, {"loc_id": 47, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 5, "x": -2414.9, "z": 4847.7, "px": 1635.9, "py": 2875.3}, {"loc_id": 49, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": -2494.1, "z": 4982.9, "px": 1622.3, "py": 2898.4}, {"loc_id": 50, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": -773.5, "z": -3723.6, "px": 1916.0, "py": 1412.5}, {"loc_id": 54, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": 133.7, "z": 2553.3, "px": 2070.8, "py": 2483.8}, {"loc_id": 57, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": 3789.7, "z": 4478.3, "px": 2694.8, "py": 2812.3}, {"loc_id": 58, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 5, "x": 1550.5, "z": 2242.3, "px": 2312.6, "py": 2430.7}, {"loc_id": 58, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": 1550.5, "z": 2242.3, "px": 2312.6, "py": 2430.7}, {"loc_id": 60, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": -5388.9, "z": 1521.4, "px": 1128.3, "py": 2307.7}, {"loc_id": 61, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": -3631.6, "z": 3121.5, "px": 1428.2, "py": 2580.7}, {"loc_id": 71, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 5, "x": 1918.6, "z": 1526.0, "px": 2375.4, "py": 2308.4}, {"loc_id": 72, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": 4479.3, "z": -2945.6, "px": 2812.5, "py": 1545.3}, {"loc_id": 73, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": -2615.5, "z": -950.2, "px": 1601.6, "py": 1885.8}, {"loc_id": 74, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": 4783.1, "z": -691.7, "px": 2864.3, "py": 1929.9}, {"loc_id": 76, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": -2491.8, "z": -4097.4, "px": 1622.7, "py": 1348.7}, {"loc_id": 79, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 5, "x": -952.0, "z": -5685.9, "px": 1885.5, "py": 1077.6}, {"loc_id": 81, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 5, "x": -888.8, "z": -3716.9, "px": 1896.3, "py": 1413.6}, {"loc_id": 83, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": 1649.5, "z": 4335.2, "px": 2329.5, "py": 2787.9}, {"loc_id": 83, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 5, "x": 1649.5, "z": 4335.2, "px": 2329.5, "py": 2787.9}, {"loc_id": 84, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 5, "x": 1293.6, "z": 2251.1, "px": 2268.8, "py": 2432.2}, {"loc_id": 84, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": 1293.6, "z": 2251.1, "px": 2268.8, "py": 2432.2}, {"loc_id": 87, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": 3310.7, "z": -4417.7, "px": 2613.0, "py": 1294.0}, {"loc_id": 96, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": -116.2, "z": 2562.7, "px": 2028.2, "py": 2485.4}, {"loc_id": 97, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 5, "x": 2738.0, "z": 3658.2, "px": 2515.3, "py": 2672.3}, {"loc_id": 98, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": 2425.8, "z": -1021.2, "px": 2462.0, "py": 1873.7}, {"loc_id": 99, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": -1920.0, "z": 4600.7, "px": 1720.3, "py": 2833.2}, {"loc_id": 100, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": 2508.7, "z": -5306.2, "px": 2476.2, "py": 1142.4}, {"loc_id": 102, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": -5252.9, "z": -769.4, "px": 1151.5, "py": 1916.7}, {"loc_id": 103, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": -5489.1, "z": 1993.6, "px": 1111.2, "py": 2388.2}, {"loc_id": 103, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 5, "x": -5489.1, "z": 1993.6, "px": 1111.2, "py": 2388.2}, {"loc_id": 104, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": 1020.1, "z": 4295.3, "px": 2222.1, "py": 2781.1}, {"loc_id": 105, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 5, "x": 197.3, "z": 2575.2, "px": 2081.7, "py": 2487.5}, {"loc_id": 107, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 5, "x": -2631.9, "z": -882.8, "px": 1598.8, "py": 1897.3}, {"loc_id": 109, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": -1078.2, "z": -3658.3, "px": 1864.0, "py": 1423.7}, {"loc_id": 110, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": 1466.6, "z": 2232.4, "px": 2298.3, "py": 2429.0}, {"loc_id": 113, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": 1402.0, "z": 2222.3, "px": 2287.3, "py": 2427.3}, {"loc_id": 113, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": 1402.0, "z": 2222.3, "px": 2287.3, "py": 2427.3}, {"loc_id": 115, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": -61.9, "z": 2612.1, "px": 2037.4, "py": 2493.8}, {"loc_id": 115, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": -61.9, "z": 2612.1, "px": 2037.4, "py": 2493.8}, {"loc_id": 117, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": 272.2, "z": 2565.9, "px": 2094.5, "py": 2485.9}, {"loc_id": 118, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": -2309.6, "z": 4288.3, "px": 1653.8, "py": 2779.9}, {"loc_id": 126, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": 2176.0, "z": 447.6, "px": 2419.4, "py": 2124.4}, {"loc_id": 127, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": 3631.1, "z": 716.1, "px": 2667.7, "py": 2170.2}, {"loc_id": 129, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": -3081.8, "z": 578.8, "px": 1522.0, "py": 2146.8}, {"loc_id": 130, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": 4748.1, "z": -509.7, "px": 2858.3, "py": 1961.0}, {"loc_id": 132, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": -2767.1, "z": -1805.5, "px": 1575.7, "py": 1739.9}, {"loc_id": 133, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": -2637.3, "z": -5254.9, "px": 1597.9, "py": 1151.2}, {"loc_id": 134, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 5, "x": -3640.2, "z": 3214.4, "px": 1426.7, "py": 2596.6}, {"loc_id": 135, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 5, "x": 2251.6, "z": 335.0, "px": 2432.3, "py": 2105.2}, {"loc_id": 138, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": -2417.8, "z": -4091.4, "px": 1635.4, "py": 1349.7}, {"loc_id": 141, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": -3468.1, "z": 180.0, "px": 1456.1, "py": 2078.7}, {"loc_id": 142, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": -5046.4, "z": 1265.2, "px": 1186.7, "py": 2263.9}, {"loc_id": 144, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 5, "x": 1488.4, "z": 1973.9, "px": 2302.0, "py": 2384.9}, {"loc_id": 153, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 5, "x": -5179.6, "z": 1393.9, "px": 1164.0, "py": 2285.9}, {"loc_id": 154, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": -2430.0, "z": 4939.6, "px": 1633.3, "py": 2891.0}, {"loc_id": 156, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": 3335.7, "z": -4334.9, "px": 2617.3, "py": 1308.2}, {"loc_id": 157, "loc_name": "SunkenCrypt4", "item": "Pickable: MushroomYellow", "count": 5, "x": -51.9, "z": 2544.7, "px": 2039.1, "py": 2482.3}, {"loc_id": 159, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 5, "x": -4406.6, "z": 1211.3, "px": 1295.9, "py": 2254.7}, {"loc_id": 161, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": -2701.2, "z": -912.1, "px": 1587.0, "py": 1892.3}, {"loc_id": 163, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": 4625.9, "z": -3085.3, "px": 2837.5, "py": 1521.4}, {"loc_id": 163, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 5, "x": 4625.9, "z": -3085.3, "px": 2837.5, "py": 1521.4}, {"loc_id": 167, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": 3397.0, "z": -4496.1, "px": 2627.8, "py": 1280.7}, {"loc_id": 167, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": 3397.0, "z": -4496.1, "px": 2627.8, "py": 1280.7}, {"loc_id": 168, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": -889.7, "z": -3644.9, "px": 1896.2, "py": 1425.9}, {"loc_id": 169, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": -5107.9, "z": 1285.8, "px": 1176.3, "py": 2267.4}, {"loc_id": 169, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 5, "x": -5107.9, "z": 1285.8, "px": 1176.3, "py": 2267.4}, {"loc_id": 172, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": -3663.7, "z": 205.0, "px": 1422.7, "py": 2083.0}, {"loc_id": 173, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 5, "x": 4731.5, "z": -783.9, "px": 2855.5, "py": 1914.2}, {"loc_id": 175, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": -3717.0, "z": -4233.5, "px": 1413.6, "py": 1325.5}, {"loc_id": 180, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 5, "x": 3381.3, "z": -4433.3, "px": 2625.1, "py": 1291.4}, {"loc_id": 185, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": 12.0, "z": 2560.5, "px": 2050.0, "py": 2485.0}, {"loc_id": 188, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 5, "x": 4725.5, "z": -880.8, "px": 2854.5, "py": 1897.7}, {"loc_id": 188, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 5, "x": 4725.5, "z": -880.8, "px": 2854.5, "py": 1897.7}, {"loc_id": 190, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 5, "x": 1354.8, "z": 2124.8, "px": 2279.2, "py": 2410.6}, {"loc_id": 206, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8454.4, "z": -588.8, "px": 3490.9, "py": 1947.5}, {"loc_id": 207, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -566.4, "z": -6838.4, "px": 1951.3, "py": 880.9}, {"loc_id": 208, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7340.1, "z": 4618.3, "px": 3300.7, "py": 2836.2}, {"loc_id": 209, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 243.3, "z": -7413.0, "px": 2089.5, "py": 782.8}, {"loc_id": 210, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 318.8, "z": -7120.9, "px": 2102.4, "py": 832.7}, {"loc_id": 211, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 1201.0, "z": 7687.7, "px": 2253.0, "py": 3360.0}, {"loc_id": 212, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 5956.4, "z": -4276.2, "px": 3064.6, "py": 1318.2}, {"loc_id": 213, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 2483.2, "z": -5552.8, "px": 2471.8, "py": 1100.3}, {"loc_id": 214, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -8198.6, "z": -3269.9, "px": 648.8, "py": 1489.9}, {"loc_id": 215, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 148.8, "z": 7149.4, "px": 2073.4, "py": 3268.2}, {"loc_id": 216, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -8559.4, "z": 1399.3, "px": 587.2, "py": 2286.8}, {"loc_id": 217, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 707.9, "z": 6639.0, "px": 2168.8, "py": 3181.1}, {"loc_id": 218, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7435.4, "z": 4501.0, "px": 779.0, "py": 2816.2}, {"loc_id": 219, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7533.9, "z": -2194.8, "px": 3333.8, "py": 1673.4}, {"loc_id": 220, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 9619.1, "z": -1858.6, "px": 3689.7, "py": 1730.8}, {"loc_id": 221, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8132.4, "z": 2428.2, "px": 3435.9, "py": 2462.4}, {"loc_id": 222, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8713.1, "z": -571.5, "px": 3535.0, "py": 1950.5}, {"loc_id": 223, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -1651.3, "z": -7044.6, "px": 1766.2, "py": 845.7}, {"loc_id": 224, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4335.1, "z": 6090.3, "px": 2787.9, "py": 3087.4}, {"loc_id": 225, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 9087.9, "z": 1400.9, "px": 3599.0, "py": 2287.1}, {"loc_id": 226, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8448.2, "z": -3448.4, "px": 3489.8, "py": 1459.5}, {"loc_id": 227, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -5887.2, "z": 3601.8, "px": 1043.3, "py": 2662.7}, {"loc_id": 228, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6395.3, "z": 4154.7, "px": 956.5, "py": 2757.1}, {"loc_id": 229, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 5937.5, "z": -1611.0, "px": 3061.3, "py": 1773.1}, {"loc_id": 230, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4815.5, "z": 6263.5, "px": 2869.8, "py": 3117.0}, {"loc_id": 231, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 9216.9, "z": -1415.0, "px": 3621.0, "py": 1806.5}, {"loc_id": 232, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4351.4, "z": 5515.8, "px": 2790.6, "py": 2989.4}, {"loc_id": 233, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8958.7, "z": -915.4, "px": 3577.0, "py": 1891.8}, {"loc_id": 234, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8839.5, "z": 849.9, "px": 3556.6, "py": 2193.0}, {"loc_id": 235, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -1992.5, "z": -7241.9, "px": 1707.9, "py": 812.0}, {"loc_id": 236, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7313.9, "z": -5108.8, "px": 3296.2, "py": 1176.1}, {"loc_id": 237, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -3250.5, "z": -7220.7, "px": 1493.2, "py": 815.7}, {"loc_id": 238, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -2953.6, "z": -6268.4, "px": 1543.9, "py": 978.2}, {"loc_id": 239, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 2800.5, "z": 6715.3, "px": 2526.0, "py": 3194.1}, {"loc_id": 240, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6927.1, "z": -5387.4, "px": 3230.2, "py": 1128.6}, {"loc_id": 241, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -1090.1, "z": -6010.6, "px": 1862.0, "py": 1022.2}, {"loc_id": 242, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4051.2, "z": -5837.7, "px": 2739.4, "py": 1051.7}, {"loc_id": 243, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 9533.0, "z": 491.9, "px": 3675.0, "py": 2132.0}, {"loc_id": 244, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7623.9, "z": 9.5, "px": 3349.1, "py": 2049.6}, {"loc_id": 245, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 2242.2, "z": -6775.8, "px": 2430.7, "py": 891.6}, {"loc_id": 246, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8557.9, "z": -2878.6, "px": 3508.5, "py": 1556.7}, {"loc_id": 247, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7628.2, "z": -4489.4, "px": 3349.9, "py": 1281.8}, {"loc_id": 248, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -2093.6, "z": 7245.1, "px": 1690.7, "py": 3284.5}, {"loc_id": 249, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -2770.7, "z": 6338.5, "px": 1575.1, "py": 3129.8}, {"loc_id": 250, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4395.1, "z": -6967.7, "px": 2798.1, "py": 858.8}, {"loc_id": 251, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7434.7, "z": -3827.7, "px": 3316.9, "py": 1394.7}, {"loc_id": 252, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6860.4, "z": -1737.4, "px": 877.2, "py": 1751.5}, {"loc_id": 253, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -1482.5, "z": 7363.1, "px": 1795.0, "py": 3304.6}, {"loc_id": 254, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7933.7, "z": -4608.0, "px": 3402.0, "py": 1261.6}, {"loc_id": 255, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7737.8, "z": 4483.7, "px": 727.4, "py": 2813.2}, {"loc_id": 256, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -8382.0, "z": 2254.1, "px": 617.5, "py": 2432.7}, {"loc_id": 257, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8529.4, "z": 1003.7, "px": 3503.7, "py": 2219.3}, {"loc_id": 258, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4395.1, "z": 5833.2, "px": 2798.1, "py": 3043.5}, {"loc_id": 259, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7404.1, "z": 1235.1, "px": 784.4, "py": 2258.8}, {"loc_id": 260, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4370.9, "z": -4745.8, "px": 2794.0, "py": 1238.1}, {"loc_id": 261, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 9043.5, "z": -1724.9, "px": 3591.4, "py": 1753.6}, {"loc_id": 262, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 3820.9, "z": -6924.6, "px": 2700.1, "py": 866.2}, {"loc_id": 263, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 5519.9, "z": 5582.9, "px": 2990.1, "py": 3000.8}, {"loc_id": 264, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 5581.2, "z": 3437.0, "px": 3000.5, "py": 2634.6}, {"loc_id": 265, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6274.3, "z": 706.4, "px": 977.2, "py": 2168.6}, {"loc_id": 266, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 46.1, "z": 7436.6, "px": 2055.9, "py": 3317.2}, {"loc_id": 267, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -9556.1, "z": -2033.5, "px": 417.1, "py": 1700.9}, {"loc_id": 268, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7100.8, "z": 3.5, "px": 3259.9, "py": 2048.6}, {"loc_id": 269, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -2318.4, "z": -6459.0, "px": 1652.3, "py": 945.7}, {"loc_id": 270, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7413.6, "z": -710.8, "px": 3313.3, "py": 1926.7}, {"loc_id": 271, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 9260.2, "z": -2482.4, "px": 3628.4, "py": 1624.3}, {"loc_id": 272, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -5437.2, "z": -4242.4, "px": 1120.1, "py": 1324.0}, {"loc_id": 273, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 9539.3, "z": 1552.2, "px": 3676.0, "py": 2312.9}, {"loc_id": 274, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -3969.6, "z": 5557.6, "px": 1370.5, "py": 2996.5}, {"loc_id": 275, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6387.5, "z": 4401.5, "px": 3138.1, "py": 2799.2}, {"loc_id": 276, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -9522.7, "z": -944.2, "px": 422.8, "py": 1886.9}, {"loc_id": 277, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 450.6, "z": 6976.7, "px": 2124.9, "py": 3238.7}, {"loc_id": 278, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6593.1, "z": -1740.2, "px": 922.8, "py": 1751.0}, {"loc_id": 279, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6797.5, "z": -531.5, "px": 3208.1, "py": 1957.3}, {"loc_id": 280, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -966.6, "z": -7764.7, "px": 1883.0, "py": 722.8}, {"loc_id": 281, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -9108.5, "z": -2348.8, "px": 493.5, "py": 1647.1}, {"loc_id": 282, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 5780.9, "z": 4176.1, "px": 3034.6, "py": 2760.7}, {"loc_id": 283, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7700.3, "z": -3214.2, "px": 733.8, "py": 1499.4}, {"loc_id": 284, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7552.1, "z": 2234.7, "px": 3336.9, "py": 2429.4}, {"loc_id": 285, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 1482.6, "z": -6510.7, "px": 2301.0, "py": 936.8}, {"loc_id": 286, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -1327.8, "z": -6967.4, "px": 1821.4, "py": 858.9}, {"loc_id": 287, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -5512.8, "z": 5906.7, "px": 1107.1, "py": 3056.1}, {"loc_id": 288, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6270.6, "z": 3015.3, "px": 3118.2, "py": 2562.6}, {"loc_id": 289, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6595.5, "z": 2745.2, "px": 3173.6, "py": 2516.5}, {"loc_id": 290, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4992.6, "z": -4738.3, "px": 2900.1, "py": 1239.3}, {"loc_id": 291, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 3980.8, "z": -6099.8, "px": 2727.4, "py": 1007.0}, {"loc_id": 292, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8811.7, "z": -2821.6, "px": 3551.9, "py": 1566.4}, {"loc_id": 293, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -8585.6, "z": 1866.2, "px": 582.7, "py": 2366.5}, {"loc_id": 294, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 1293.4, "z": 6390.9, "px": 2268.7, "py": 3138.7}, {"loc_id": 295, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7469.9, "z": 4358.2, "px": 3322.9, "py": 2791.8}, {"loc_id": 296, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -2951.6, "z": -5895.0, "px": 1544.3, "py": 1041.9}, {"loc_id": 297, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8243.2, "z": 1080.1, "px": 3454.8, "py": 2232.3}, {"loc_id": 298, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6975.0, "z": 586.2, "px": 857.6, "py": 2148.0}, {"loc_id": 299, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 2492.0, "z": -5972.6, "px": 2473.3, "py": 1028.7}, {"loc_id": 300, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -9387.7, "z": 980.5, "px": 445.8, "py": 2215.3}, {"loc_id": 301, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -2414.0, "z": 6721.3, "px": 1636.0, "py": 3195.1}, {"loc_id": 302, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7153.5, "z": 1407.1, "px": 827.1, "py": 2288.1}, {"loc_id": 303, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7437.8, "z": 530.8, "px": 778.6, "py": 2138.6}, {"loc_id": 304, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8330.5, "z": -3053.3, "px": 3469.7, "py": 1526.9}, {"loc_id": 305, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -3911.4, "z": 5954.9, "px": 1380.5, "py": 3064.3}, {"loc_id": 306, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8324.2, "z": -2753.4, "px": 3468.7, "py": 1578.1}, {"loc_id": 307, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7827.5, "z": -2928.3, "px": 712.1, "py": 1548.2}, {"loc_id": 308, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6283.6, "z": -1043.8, "px": 975.6, "py": 1869.9}, {"loc_id": 309, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 3390.3, "z": 5516.9, "px": 2626.6, "py": 2989.6}, {"loc_id": 310, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 5830.1, "z": -2064.1, "px": 3043.0, "py": 1695.7}, {"loc_id": 311, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7363.4, "z": -3311.9, "px": 791.3, "py": 1482.8}, {"loc_id": 312, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8142.6, "z": 2884.2, "px": 3437.7, "py": 2540.2}, {"loc_id": 313, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7854.7, "z": -299.1, "px": 707.5, "py": 1997.0}, {"loc_id": 314, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -3532.1, "z": 5310.3, "px": 1445.2, "py": 2954.3}, {"loc_id": 315, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 3084.2, "z": 6911.0, "px": 2574.4, "py": 3227.5}, {"loc_id": 316, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -5999.7, "z": 1151.9, "px": 1024.1, "py": 2244.6}, {"loc_id": 317, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 9672.4, "z": -850.4, "px": 3698.8, "py": 1902.9}, {"loc_id": 318, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 1801.0, "z": -7120.7, "px": 2355.4, "py": 832.7}, {"loc_id": 319, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4625.0, "z": -6016.1, "px": 2837.3, "py": 1021.3}, {"loc_id": 320, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6836.6, "z": 4922.0, "px": 881.2, "py": 2888.0}, {"loc_id": 321, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6379.9, "z": 2938.3, "px": 959.2, "py": 2549.5}, {"loc_id": 322, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -2288.9, "z": -6925.5, "px": 1657.4, "py": 866.0}, {"loc_id": 323, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -8332.8, "z": -3713.6, "px": 625.9, "py": 1414.2}, {"loc_id": 324, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -5356.7, "z": 4607.0, "px": 1133.8, "py": 2834.3}, {"loc_id": 325, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7986.4, "z": 1590.0, "px": 3411.0, "py": 2319.4}, {"loc_id": 326, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -8453.4, "z": -3194.2, "px": 605.3, "py": 1502.9}, {"loc_id": 327, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -9545.7, "z": -2349.7, "px": 418.9, "py": 1647.0}, {"loc_id": 328, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 9156.0, "z": 1777.9, "px": 3610.6, "py": 2351.4}, {"loc_id": 329, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 2672.6, "z": 5555.1, "px": 2504.1, "py": 2996.1}, {"loc_id": 330, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -9272.3, "z": 622.4, "px": 465.5, "py": 2154.2}, {"loc_id": 331, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -5571.4, "z": -2447.5, "px": 1097.1, "py": 1630.3}, {"loc_id": 332, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6001.6, "z": 2801.6, "px": 1023.7, "py": 2526.1}, {"loc_id": 333, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7881.3, "z": 3819.9, "px": 3393.1, "py": 2699.9}, {"loc_id": 334, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 3210.3, "z": 6292.5, "px": 2595.9, "py": 3121.9}, {"loc_id": 335, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4099.6, "z": -6355.3, "px": 2747.7, "py": 963.4}, {"loc_id": 336, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6899.9, "z": 3963.4, "px": 870.4, "py": 2724.4}, {"loc_id": 337, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8913.0, "z": 587.7, "px": 3569.2, "py": 2148.3}, {"loc_id": 338, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 5560.1, "z": 6217.6, "px": 2996.9, "py": 3109.1}, {"loc_id": 339, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4925.2, "z": 5870.4, "px": 2888.6, "py": 3049.9}, {"loc_id": 340, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4278.0, "z": -6144.0, "px": 2778.1, "py": 999.4}, {"loc_id": 341, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8183.7, "z": 2170.3, "px": 3444.7, "py": 2418.4}, {"loc_id": 342, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 9346.3, "z": -1712.9, "px": 3643.1, "py": 1755.7}, {"loc_id": 343, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -1982.1, "z": 6863.2, "px": 1709.7, "py": 3219.3}, {"loc_id": 344, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -5873.1, "z": -2772.6, "px": 1045.7, "py": 1574.8}, {"loc_id": 345, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -8459.7, "z": 274.5, "px": 604.2, "py": 2094.8}, {"loc_id": 346, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8724.5, "z": 1218.0, "px": 3537.0, "py": 2255.9}, {"loc_id": 347, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -2556.8, "z": -5971.1, "px": 1611.6, "py": 1028.9}, {"loc_id": 348, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7551.6, "z": -884.6, "px": 759.2, "py": 1897.0}, {"loc_id": 349, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -5877.6, "z": -5488.8, "px": 1044.9, "py": 1111.2}, {"loc_id": 350, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 2955.4, "z": 5771.8, "px": 2552.4, "py": 3033.1}, {"loc_id": 351, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -4338.6, "z": -4363.5, "px": 1307.5, "py": 1303.3}, {"loc_id": 352, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4651.8, "z": -4170.7, "px": 2841.9, "py": 1336.2}, {"loc_id": 353, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 2752.4, "z": 6389.7, "px": 2517.7, "py": 3138.5}, {"loc_id": 354, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -3905.6, "z": 6445.7, "px": 1381.4, "py": 3148.1}, {"loc_id": 355, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8569.0, "z": -1140.2, "px": 3510.4, "py": 1853.4}, {"loc_id": 356, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -2882.5, "z": 6723.0, "px": 1556.1, "py": 3195.4}, {"loc_id": 357, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6286.3, "z": -1484.6, "px": 3120.9, "py": 1794.6}, {"loc_id": 358, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7746.4, "z": -2386.1, "px": 3370.1, "py": 1640.8}, {"loc_id": 359, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -8821.9, "z": 1348.4, "px": 542.4, "py": 2278.1}, {"loc_id": 360, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 3770.7, "z": -5742.2, "px": 2691.5, "py": 1068.0}, {"loc_id": 361, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8816.8, "z": -2160.4, "px": 3552.7, "py": 1679.3}, {"loc_id": 362, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 1267.1, "z": 5948.8, "px": 2264.3, "py": 3063.3}, {"loc_id": 363, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 3788.4, "z": 5751.6, "px": 2694.6, "py": 3029.6}, {"loc_id": 364, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7179.5, "z": 3955.2, "px": 822.7, "py": 2723.0}, {"loc_id": 365, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8305.1, "z": -1742.2, "px": 3465.4, "py": 1750.7}, {"loc_id": 366, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4225.9, "z": -5111.9, "px": 2769.2, "py": 1175.6}, {"loc_id": 367, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 2132.2, "z": -6415.7, "px": 2411.9, "py": 953.1}, {"loc_id": 368, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -1347.4, "z": 7098.5, "px": 1818.0, "py": 3259.5}, {"loc_id": 369, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 444.2, "z": 7490.6, "px": 2123.8, "py": 3326.4}, {"loc_id": 370, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4851.4, "z": 4204.1, "px": 2876.0, "py": 2765.5}, {"loc_id": 371, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -8774.3, "z": -1333.5, "px": 550.5, "py": 1820.4}, {"loc_id": 372, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4982.1, "z": -5903.7, "px": 2898.3, "py": 1040.4}, {"loc_id": 373, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -5754.5, "z": 3271.3, "px": 1065.9, "py": 2606.3}, {"loc_id": 374, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 2446.5, "z": -6512.6, "px": 2465.5, "py": 936.5}, {"loc_id": 375, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -1595.6, "z": -5883.7, "px": 1775.7, "py": 1043.8}, {"loc_id": 376, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7230.8, "z": -4786.2, "px": 3282.1, "py": 1231.2}, {"loc_id": 377, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -8340.1, "z": 13.2, "px": 624.6, "py": 2050.3}, {"loc_id": 378, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 5945.1, "z": 6069.2, "px": 3062.6, "py": 3083.8}, {"loc_id": 379, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4027.2, "z": 6206.4, "px": 2735.3, "py": 3107.2}, {"loc_id": 380, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -3019.8, "z": 6280.4, "px": 1532.6, "py": 3119.9}, {"loc_id": 381, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -8264.8, "z": -332.2, "px": 637.5, "py": 1991.3}, {"loc_id": 382, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6413.0, "z": -4555.1, "px": 3142.5, "py": 1270.6}, {"loc_id": 383, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 5821.6, "z": 5755.0, "px": 3041.6, "py": 3030.2}, {"loc_id": 384, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8397.8, "z": -949.9, "px": 3481.2, "py": 1885.9}, {"loc_id": 385, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7222.2, "z": 251.7, "px": 3280.6, "py": 2091.0}, {"loc_id": 386, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7859.0, "z": 3090.6, "px": 3389.3, "py": 2575.5}, {"loc_id": 387, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4734.4, "z": -4593.8, "px": 2856.0, "py": 1264.0}, {"loc_id": 388, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -8720.7, "z": 386.2, "px": 559.7, "py": 2113.9}, {"loc_id": 389, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6471.1, "z": -567.9, "px": 943.6, "py": 1951.1}, {"loc_id": 390, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -1741.0, "z": 7309.8, "px": 1750.9, "py": 3295.5}, {"loc_id": 391, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6393.5, "z": -4468.2, "px": 956.8, "py": 1285.4}, {"loc_id": 392, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -4718.6, "z": -4168.8, "px": 1242.7, "py": 1336.5}, {"loc_id": 393, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 2495.9, "z": 6395.1, "px": 2474.0, "py": 3139.4}, {"loc_id": 394, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 3127.6, "z": 7186.4, "px": 2581.8, "py": 3274.5}, {"loc_id": 395, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7497.7, "z": -2694.8, "px": 768.4, "py": 1588.1}, {"loc_id": 396, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6593.5, "z": -3536.2, "px": 922.7, "py": 1444.5}, {"loc_id": 397, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6794.7, "z": -190.3, "px": 3207.6, "py": 2015.5}, {"loc_id": 398, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7996.7, "z": -4459.9, "px": 683.2, "py": 1286.8}, {"loc_id": 399, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -326.3, "z": -6386.0, "px": 1992.3, "py": 958.1}, {"loc_id": 400, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6393.3, "z": -2357.5, "px": 956.9, "py": 1645.7}, {"loc_id": 401, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7311.9, "z": -3568.1, "px": 3295.9, "py": 1439.0}, {"loc_id": 402, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4982.3, "z": -5624.7, "px": 2898.3, "py": 1088.1}, {"loc_id": 403, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6673.7, "z": 5139.9, "px": 3187.0, "py": 2925.2}, {"loc_id": 404, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6918.9, "z": 1139.0, "px": 867.2, "py": 2242.4}, {"loc_id": 405, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7174.2, "z": 748.0, "px": 823.6, "py": 2175.7}, {"loc_id": 406, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7802.5, "z": 4113.6, "px": 3379.6, "py": 2750.1}, {"loc_id": 407, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 3966.9, "z": -5419.1, "px": 2725.0, "py": 1123.1}, {"loc_id": 408, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4140.8, "z": -4616.0, "px": 2754.7, "py": 1260.2}, {"loc_id": 409, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 5180.7, "z": 3401.7, "px": 2932.2, "py": 2628.6}, {"loc_id": 410, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 1528.7, "z": -6801.9, "px": 2308.9, "py": 887.1}, {"loc_id": 411, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 1139.3, "z": 7413.9, "px": 2242.4, "py": 3313.3}, {"loc_id": 412, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8043.0, "z": -1800.1, "px": 3420.7, "py": 1740.8}, {"loc_id": 413, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8887.7, "z": -1225.4, "px": 3564.8, "py": 1838.9}, {"loc_id": 414, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -1424.3, "z": -6142.7, "px": 1804.9, "py": 999.6}, {"loc_id": 415, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 5933.4, "z": 2000.4, "px": 3060.6, "py": 2389.4}, {"loc_id": 416, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -8847.1, "z": 971.9, "px": 538.1, "py": 2213.9}, {"loc_id": 417, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -2899.4, "z": -6525.9, "px": 1553.2, "py": 934.2}, {"loc_id": 418, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7734.2, "z": 1360.9, "px": 728.0, "py": 2280.3}, {"loc_id": 419, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7874.7, "z": 2764.6, "px": 3391.9, "py": 2519.8}, {"loc_id": 420, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6090.7, "z": 4982.5, "px": 3087.5, "py": 2898.3}, {"loc_id": 421, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 9034.6, "z": -2990.9, "px": 3589.9, "py": 1537.6}, {"loc_id": 422, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -1670.4, "z": -7473.6, "px": 1762.9, "py": 772.5}, {"loc_id": 423, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -4076.2, "z": 4811.0, "px": 1352.3, "py": 2869.1}, {"loc_id": 424, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -5877.6, "z": 3027.6, "px": 1044.9, "py": 2564.7}, {"loc_id": 425, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7883.7, "z": 2167.1, "px": 3393.5, "py": 2417.9}, {"loc_id": 426, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6011.2, "z": 2369.4, "px": 3073.9, "py": 2452.4}, {"loc_id": 427, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7787.8, "z": -4613.1, "px": 718.9, "py": 1260.7}, {"loc_id": 428, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 2044.5, "z": -5908.3, "px": 2396.9, "py": 1039.7}, {"loc_id": 429, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6444.3, "z": 5697.7, "px": 948.2, "py": 3020.4}, {"loc_id": 430, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -4780.3, "z": 4296.1, "px": 1232.2, "py": 2781.2}, {"loc_id": 431, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -4980.5, "z": -3582.8, "px": 1198.0, "py": 1436.5}, {"loc_id": 432, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6253.9, "z": 5631.5, "px": 3115.3, "py": 3009.1}, {"loc_id": 433, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6091.9, "z": -5204.4, "px": 1008.3, "py": 1159.8}, {"loc_id": 434, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 9171.6, "z": -2223.4, "px": 3613.3, "py": 1668.5}, {"loc_id": 435, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -323.5, "z": -6652.1, "px": 1992.8, "py": 912.7}, {"loc_id": 436, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 1410.7, "z": -7379.2, "px": 2288.8, "py": 788.6}, {"loc_id": 437, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8589.8, "z": 395.5, "px": 3514.0, "py": 2115.5}, {"loc_id": 438, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8783.7, "z": -3500.1, "px": 3547.1, "py": 1450.6}, {"loc_id": 439, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6956.4, "z": -3581.5, "px": 3235.2, "py": 1436.8}, {"loc_id": 440, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 1021.2, "z": -7423.9, "px": 2222.3, "py": 781.0}, {"loc_id": 441, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6513.8, "z": 955.6, "px": 936.3, "py": 2211.1}, {"loc_id": 442, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -2244.3, "z": 6932.6, "px": 1665.0, "py": 3231.2}, {"loc_id": 443, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 5683.7, "z": 2446.1, "px": 3018.0, "py": 2465.5}, {"loc_id": 444, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8654.1, "z": 650.9, "px": 3525.0, "py": 2159.1}, {"loc_id": 445, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 392.8, "z": 7232.1, "px": 2115.0, "py": 3282.3}, {"loc_id": 446, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7239.5, "z": -2284.7, "px": 3283.5, "py": 1658.1}, {"loc_id": 447, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -8077.8, "z": 212.2, "px": 669.4, "py": 2084.2}, {"loc_id": 448, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -9361.3, "z": -464.6, "px": 450.3, "py": 1968.7}, {"loc_id": 449, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -5191.3, "z": 6273.8, "px": 1162.0, "py": 3118.7}, {"loc_id": 450, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 5073.1, "z": -5299.3, "px": 2913.8, "py": 1143.6}, {"loc_id": 451, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 271.5, "z": 6778.0, "px": 2094.3, "py": 3204.8}, {"loc_id": 452, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6659.3, "z": 5432.6, "px": 3184.5, "py": 2975.2}, {"loc_id": 453, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6475.5, "z": 3199.6, "px": 942.8, "py": 2594.1}, {"loc_id": 454, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -5774.4, "z": -2044.3, "px": 1062.5, "py": 1699.1}, {"loc_id": 455, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7425.0, "z": 821.5, "px": 780.8, "py": 2188.2}, {"loc_id": 456, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -706.7, "z": 6528.8, "px": 1927.4, "py": 3162.2}, {"loc_id": 457, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7596.6, "z": -1201.3, "px": 751.5, "py": 1843.0}, {"loc_id": 458, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7421.6, "z": 2685.8, "px": 781.4, "py": 2506.4}, {"loc_id": 459, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 1480.5, "z": 7623.7, "px": 2300.7, "py": 3349.1}, {"loc_id": 460, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -9136.9, "z": -193.0, "px": 488.6, "py": 2015.1}, {"loc_id": 461, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6588.1, "z": -3148.0, "px": 923.6, "py": 1510.7}, {"loc_id": 462, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -3565.8, "z": 5056.9, "px": 1439.4, "py": 2911.0}, {"loc_id": 463, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 2689.9, "z": -5772.2, "px": 2507.1, "py": 1062.9}, {"loc_id": 464, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 1682.0, "z": 7184.9, "px": 2335.1, "py": 3274.2}, {"loc_id": 465, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -8299.3, "z": -4175.4, "px": 631.6, "py": 1335.4}, {"loc_id": 466, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4871.7, "z": -5050.3, "px": 2879.4, "py": 1186.1}, {"loc_id": 467, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -4168.8, "z": 5167.7, "px": 1336.5, "py": 2930.0}, {"loc_id": 468, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4608.7, "z": 6077.8, "px": 2834.6, "py": 3085.3}, {"loc_id": 469, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -8398.4, "z": -3451.5, "px": 614.7, "py": 1458.9}, {"loc_id": 470, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -9018.8, "z": 1740.7, "px": 508.8, "py": 2345.1}, {"loc_id": 471, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8978.5, "z": -3727.6, "px": 3580.3, "py": 1411.8}, {"loc_id": 472, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 2101.6, "z": -7106.6, "px": 2406.7, "py": 835.1}, {"loc_id": 473, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8456.5, "z": 3012.4, "px": 3491.2, "py": 2562.1}, {"loc_id": 474, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6956.4, "z": 1724.0, "px": 3235.2, "py": 2342.2}, {"loc_id": 475, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 9283.8, "z": -1983.5, "px": 3632.4, "py": 1709.5}, {"loc_id": 476, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 787.4, "z": 6987.8, "px": 2182.4, "py": 3240.6}, {"loc_id": 477, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 3143.4, "z": 6588.2, "px": 2584.5, "py": 3172.4}, {"loc_id": 478, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6268.7, "z": 3631.0, "px": 978.1, "py": 2667.7}, {"loc_id": 479, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7103.6, "z": -1485.3, "px": 835.7, "py": 1794.5}, {"loc_id": 480, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6210.2, "z": 4160.9, "px": 3107.9, "py": 2758.1}, {"loc_id": 481, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4085.2, "z": -4876.8, "px": 2745.2, "py": 1215.7}, {"loc_id": 482, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6460.1, "z": 4973.6, "px": 3150.5, "py": 2896.8}, {"loc_id": 483, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 5382.9, "z": 3027.9, "px": 2966.7, "py": 2564.8}, {"loc_id": 484, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 3699.2, "z": 6094.5, "px": 2679.3, "py": 3088.1}, {"loc_id": 485, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -9791.8, "z": -971.7, "px": 376.9, "py": 1882.2}, {"loc_id": 486, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7283.7, "z": -820.5, "px": 804.9, "py": 1908.0}, {"loc_id": 487, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8059.3, "z": -3335.7, "px": 3423.5, "py": 1478.7}, {"loc_id": 488, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 1222.1, "z": -6517.5, "px": 2256.6, "py": 935.7}, {"loc_id": 489, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -2440.1, "z": 7172.6, "px": 1631.6, "py": 3272.1}, {"loc_id": 490, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -9456.4, "z": -1727.5, "px": 434.1, "py": 1753.2}, {"loc_id": 491, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -5312.9, "z": -3831.8, "px": 1141.3, "py": 1394.0}, {"loc_id": 492, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4223.2, "z": 4874.3, "px": 2768.8, "py": 2879.9}, {"loc_id": 493, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -8529.5, "z": -367.3, "px": 592.3, "py": 1985.3}, {"loc_id": 494, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8315.0, "z": 1329.1, "px": 3467.1, "py": 2274.8}, {"loc_id": 495, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 9163.1, "z": -1154.1, "px": 3611.8, "py": 1851.0}, {"loc_id": 496, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6096.5, "z": -4493.0, "px": 3088.5, "py": 1281.2}, {"loc_id": 497, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -1968.0, "z": -6659.3, "px": 1712.1, "py": 911.5}, {"loc_id": 498, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -8497.7, "z": -1396.8, "px": 597.7, "py": 1809.6}, {"loc_id": 499, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -5548.1, "z": -2954.3, "px": 1101.1, "py": 1543.8}, {"loc_id": 500, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 5746.7, "z": 3637.8, "px": 3028.8, "py": 2668.9}, {"loc_id": 501, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 5813.7, "z": 5004.9, "px": 3040.2, "py": 2902.2}, {"loc_id": 502, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6958.0, "z": -2042.3, "px": 860.5, "py": 1699.4}, {"loc_id": 503, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7623.6, "z": -3591.0, "px": 3349.1, "py": 1435.1}, {"loc_id": 504, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7352.2, "z": -208.1, "px": 3302.8, "py": 2012.5}, {"loc_id": 505, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6197.8, "z": 3964.5, "px": 990.2, "py": 2724.6}, {"loc_id": 506, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4686.2, "z": 5776.4, "px": 2847.8, "py": 3033.8}, {"loc_id": 507, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 3694.0, "z": -6024.5, "px": 2678.4, "py": 1019.8}, {"loc_id": 508, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -8080.6, "z": -3966.8, "px": 668.9, "py": 1371.0}, {"loc_id": 509, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4146.7, "z": 5901.3, "px": 2755.7, "py": 3055.2}, {"loc_id": 510, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8634.7, "z": -3272.3, "px": 3521.7, "py": 1489.5}, {"loc_id": 511, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8114.3, "z": -912.7, "px": 3432.8, "py": 1892.2}, {"loc_id": 512, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -8711.4, "z": 2098.1, "px": 561.3, "py": 2406.1}, {"loc_id": 513, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7104.2, "z": 5110.1, "px": 835.5, "py": 2920.1}, {"loc_id": 514, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 1799.7, "z": -6584.8, "px": 2355.1, "py": 924.2}, {"loc_id": 515, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7124.8, "z": -2755.3, "px": 832.0, "py": 1577.8}, {"loc_id": 516, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 109.3, "z": -6899.4, "px": 2066.7, "py": 870.5}, {"loc_id": 517, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 3408.2, "z": 5967.2, "px": 2629.7, "py": 3066.4}, {"loc_id": 518, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -9725.7, "z": -1799.7, "px": 388.1, "py": 1740.9}, {"loc_id": 519, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6256.5, "z": 2741.1, "px": 3115.8, "py": 2515.8}, {"loc_id": 520, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6471.9, "z": -4997.2, "px": 943.5, "py": 1195.1}, {"loc_id": 521, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6912.7, "z": -876.0, "px": 3227.8, "py": 1898.5}, {"loc_id": 522, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 5889.3, "z": -1210.8, "px": 3053.1, "py": 1841.4}, {"loc_id": 523, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7601.7, "z": 2539.2, "px": 3345.4, "py": 2481.4}, {"loc_id": 524, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6976.3, "z": -5121.3, "px": 3238.6, "py": 1174.0}, {"loc_id": 525, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -1997.7, "z": 7497.8, "px": 1707.1, "py": 3327.6}, {"loc_id": 526, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -5057.7, "z": 4735.1, "px": 1184.8, "py": 2856.1}, {"loc_id": 527, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -4557.4, "z": -6712.7, "px": 1270.2, "py": 902.4}, {"loc_id": 528, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7185.6, "z": 434.1, "px": 821.7, "py": 2122.1}, {"loc_id": 529, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 4080.3, "z": 4660.3, "px": 2744.4, "py": 2843.4}, {"loc_id": 530, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -894.5, "z": -7476.8, "px": 1895.3, "py": 772.0}, {"loc_id": 531, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -5310.6, "z": 5741.7, "px": 1141.7, "py": 3027.9}, {"loc_id": 532, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 8369.8, "z": 2544.9, "px": 3476.4, "py": 2482.3}, {"loc_id": 533, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 9774.8, "z": -69.7, "px": 3716.2, "py": 2036.1}, {"loc_id": 534, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -2639.3, "z": -6533.1, "px": 1597.6, "py": 933.0}, {"loc_id": 535, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7281.9, "z": 4180.3, "px": 3290.8, "py": 2761.4}, {"loc_id": 536, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7173.7, "z": -2306.5, "px": 823.7, "py": 1654.4}, {"loc_id": 537, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7598.3, "z": 2924.7, "px": 3344.8, "py": 2547.1}, {"loc_id": 538, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -2896.5, "z": 5495.9, "px": 1553.7, "py": 2986.0}, {"loc_id": 539, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -747.8, "z": 6829.4, "px": 1920.4, "py": 3213.6}, {"loc_id": 540, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7151.0, "z": 4417.2, "px": 3268.4, "py": 2801.9}, {"loc_id": 541, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -8820.2, "z": 59.0, "px": 542.7, "py": 2058.1}, {"loc_id": 542, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 876.5, "z": -7659.6, "px": 2197.6, "py": 740.8}, {"loc_id": 543, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -1908.4, "z": -6987.0, "px": 1722.3, "py": 855.6}, {"loc_id": 544, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -9160.3, "z": -1020.4, "px": 484.6, "py": 1873.9}, {"loc_id": 545, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -6035.7, "z": -876.4, "px": 1017.9, "py": 1898.4}, {"loc_id": 546, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -7504.9, "z": -3013.5, "px": 767.2, "py": 1533.7}, {"loc_id": 547, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 7023.3, "z": 3786.3, "px": 3246.6, "py": 2694.2}, {"loc_id": 548, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -9456.8, "z": 1490.6, "px": 434.0, "py": 2302.4}, {"loc_id": 549, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6016.0, "z": 2866.0, "px": 3074.7, "py": 2537.1}, {"loc_id": 550, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -9263.9, "z": -717.3, "px": 467.0, "py": 1925.6}, {"loc_id": 551, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -4277.9, "z": 4405.2, "px": 1317.9, "py": 2799.8}, {"loc_id": 552, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 6582.4, "z": -388.7, "px": 3171.4, "py": 1981.7}, {"loc_id": 553, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -9151.8, "z": 881.4, "px": 486.1, "py": 2198.4}, {"loc_id": 554, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": -1214.1, "z": -7553.5, "px": 1840.8, "py": 758.9}, {"loc_id": 555, "loc_name": "Mistlands_Giant1", "item": "SpawnOnce: Tick", "count": 5, "x": 2667.8, "z": 5950.2, "px": 2503.3, "py": 3063.5}, {"loc_id": 656, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 3008.0, "z": 6848.0, "px": 2561.4, "py": 3216.7}, {"loc_id": 656, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 3008.0, "z": 6848.0, "px": 2561.4, "py": 3216.7}, {"loc_id": 657, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -8320.0, "z": 320.0, "px": 628.1, "py": 2102.6}, {"loc_id": 657, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 5, "x": -8320.0, "z": 320.0, "px": 628.1, "py": 2102.6}, {"loc_id": 657, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 5, "x": -8320.0, "z": 320.0, "px": 628.1, "py": 2102.6}, {"loc_id": 658, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -1856.0, "z": -6976.0, "px": 1731.2, "py": 857.4}, {"loc_id": 658, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 5, "x": -1856.0, "z": -6976.0, "px": 1731.2, "py": 857.4}, {"loc_id": 658, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 5, "x": -1856.0, "z": -6976.0, "px": 1731.2, "py": 857.4}, {"loc_id": 659, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 3840.0, "z": -5952.0, "px": 2703.4, "py": 1032.2}, {"loc_id": 659, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 5, "x": 3840.0, "z": -5952.0, "px": 2703.4, "py": 1032.2}, {"loc_id": 660, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -6080.0, "z": -896.0, "px": 1010.3, "py": 1895.1}, {"loc_id": 661, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 9280.0, "z": -1728.0, "px": 3631.8, "py": 1753.1}, {"loc_id": 661, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 5, "x": 9280.0, "z": -1728.0, "px": 3631.8, "py": 1753.1}, {"loc_id": 662, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 1856.0, "z": -7104.0, "px": 2364.8, "py": 835.6}, {"loc_id": 662, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 5, "x": 1856.0, "z": -7104.0, "px": 2364.8, "py": 835.6}, {"loc_id": 663, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -1728.0, "z": -7296.0, "px": 1753.1, "py": 802.8}, {"loc_id": 664, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 5952.0, "z": 5120.0, "px": 3063.8, "py": 2921.8}, {"loc_id": 665, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -8640.0, "z": 128.0, "px": 573.4, "py": 2069.8}, {"loc_id": 665, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 5, "x": -8640.0, "z": 128.0, "px": 573.4, "py": 2069.8}, {"loc_id": 666, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 3072.0, "z": 6336.0, "px": 2572.3, "py": 3129.3}, {"loc_id": 666, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 5, "x": 3072.0, "z": 6336.0, "px": 2572.3, "py": 3129.3}, {"loc_id": 667, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -2752.0, "z": -6016.0, "px": 1578.3, "py": 1021.3}, {"loc_id": 667, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 5, "x": -2752.0, "z": -6016.0, "px": 1578.3, "py": 1021.3}, {"loc_id": 668, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 5952.0, "z": -4416.0, "px": 3063.8, "py": 1294.3}, {"loc_id": 669, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -2112.0, "z": 7360.0, "px": 1687.6, "py": 3304.1}, {"loc_id": 670, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -4736.0, "z": -3968.0, "px": 1239.7, "py": 1370.8}, {"loc_id": 671, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -6400.0, "z": -3968.0, "px": 955.7, "py": 1370.8}, {"loc_id": 671, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 5, "x": -6400.0, "z": -3968.0, "px": 955.7, "py": 1370.8}, {"loc_id": 672, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 3776.0, "z": 5952.0, "px": 2692.4, "py": 3063.8}, {"loc_id": 672, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 5, "x": 3776.0, "z": 5952.0, "px": 2692.4, "py": 3063.8}, {"loc_id": 673, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 7296.0, "z": -5056.0, "px": 3293.2, "py": 1185.1}, {"loc_id": 673, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 5, "x": 7296.0, "z": -5056.0, "px": 3293.2, "py": 1185.1}, {"loc_id": 673, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 5, "x": 7296.0, "z": -5056.0, "px": 3293.2, "py": 1185.1}, {"loc_id": 674, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 1664.0, "z": -6784.0, "px": 2332.0, "py": 890.2}, {"loc_id": 675, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -6912.0, "z": 1088.0, "px": 868.4, "py": 2233.7}, {"loc_id": 675, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 5, "x": -6912.0, "z": 1088.0, "px": 868.4, "py": 2233.7}, {"loc_id": 676, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -7552.0, "z": -2624.0, "px": 759.1, "py": 1600.2}, {"loc_id": 676, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 5, "x": -7552.0, "z": -2624.0, "px": 759.1, "py": 1600.2}, {"loc_id": 677, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -8000.0, "z": -4288.0, "px": 682.7, "py": 1316.2}, {"loc_id": 678, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -8960.0, "z": 768.0, "px": 518.8, "py": 2179.1}, {"loc_id": 678, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 5, "x": -8960.0, "z": 768.0, "px": 518.8, "py": 2179.1}, {"loc_id": 679, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 4096.0, "z": -5888.0, "px": 2747.1, "py": 1043.1}, {"loc_id": 680, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 8128.0, "z": -3136.0, "px": 3435.2, "py": 1512.8}, {"loc_id": 680, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 5, "x": 8128.0, "z": -3136.0, "px": 3435.2, "py": 1512.8}, {"loc_id": 681, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -8576.0, "z": 2112.0, "px": 584.4, "py": 2408.4}, {"loc_id": 681, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -8576.0, "z": 2112.0, "px": 584.4, "py": 2408.4}, {"loc_id": 682, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 3904.0, "z": -5632.0, "px": 2714.3, "py": 1086.8}, {"loc_id": 683, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 9088.0, "z": 1472.0, "px": 3599.0, "py": 2299.2}, {"loc_id": 684, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -8640.0, "z": 1536.0, "px": 573.4, "py": 2310.1}, {"loc_id": 685, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -3072.0, "z": -7104.0, "px": 1523.7, "py": 835.6}, {"loc_id": 685, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 5, "x": -3072.0, "z": -7104.0, "px": 1523.7, "py": 835.6}, {"loc_id": 686, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 7744.0, "z": 2496.0, "px": 3369.6, "py": 2474.0}, {"loc_id": 686, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 7744.0, "z": 2496.0, "px": 3369.6, "py": 2474.0}, {"loc_id": 686, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 5, "x": 7744.0, "z": 2496.0, "px": 3369.6, "py": 2474.0}, {"loc_id": 686, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 5, "x": 7744.0, "z": 2496.0, "px": 3369.6, "py": 2474.0}, {"loc_id": 687, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 8640.0, "z": -832.0, "px": 3522.6, "py": 1906.0}, {"loc_id": 687, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 5, "x": 8640.0, "z": -832.0, "px": 3522.6, "py": 1906.0}, {"loc_id": 688, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -1920.0, "z": 7040.0, "px": 1720.3, "py": 3249.5}, {"loc_id": 689, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 7040.0, "z": -3712.0, "px": 3249.5, "py": 1414.5}, {"loc_id": 690, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -5440.0, "z": 5760.0, "px": 1119.6, "py": 3031.0}, {"loc_id": 690, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 5, "x": -5440.0, "z": 5760.0, "px": 1119.6, "py": 3031.0}, {"loc_id": 691, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 8960.0, "z": -1024.0, "px": 3577.2, "py": 1873.2}, {"loc_id": 691, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 8960.0, "z": -1024.0, "px": 3577.2, "py": 1873.2}, {"loc_id": 692, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -2816.0, "z": 6272.0, "px": 1567.4, "py": 3118.4}, {"loc_id": 693, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 5440.0, "z": 3328.0, "px": 2976.4, "py": 2616.0}, {"loc_id": 693, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 5, "x": 5440.0, "z": 3328.0, "px": 2976.4, "py": 2616.0}, {"loc_id": 694, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 4864.0, "z": -4992.0, "px": 2878.1, "py": 1196.0}, {"loc_id": 694, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 4864.0, "z": -4992.0, "px": 2878.1, "py": 1196.0}, {"loc_id": 695, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 7360.0, "z": -3456.0, "px": 3304.1, "py": 1458.2}, {"loc_id": 696, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 4672.0, "z": -4672.0, "px": 2845.4, "py": 1250.6}, {"loc_id": 696, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 5, "x": 4672.0, "z": -4672.0, "px": 2845.4, "py": 1250.6}, {"loc_id": 697, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 9600.0, "z": -2368.0, "px": 3686.4, "py": 1643.9}, {"loc_id": 697, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 5, "x": 9600.0, "z": -2368.0, "px": 3686.4, "py": 1643.9}, {"loc_id": 698, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 6208.0, "z": 5760.0, "px": 3107.5, "py": 3031.0}, {"loc_id": 699, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 3392.0, "z": 5696.0, "px": 2626.9, "py": 3020.1}, {"loc_id": 699, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 5, "x": 3392.0, "z": 5696.0, "px": 2626.9, "py": 3020.1}, {"loc_id": 699, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 3392.0, "z": 5696.0, "px": 2626.9, "py": 3020.1}, {"loc_id": 699, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 5, "x": 3392.0, "z": 5696.0, "px": 2626.9, "py": 3020.1}, {"loc_id": 700, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 8448.0, "z": 896.0, "px": 3489.8, "py": 2200.9}, {"loc_id": 701, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -1152.0, "z": -7040.0, "px": 1851.4, "py": 846.5}, {"loc_id": 701, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -1152.0, "z": -7040.0, "px": 1851.4, "py": 846.5}, {"loc_id": 702, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 7424.0, "z": -2176.0, "px": 3315.0, "py": 1676.6}, {"loc_id": 702, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 5, "x": 7424.0, "z": -2176.0, "px": 3315.0, "py": 1676.6}, {"loc_id": 702, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 5, "x": 7424.0, "z": -2176.0, "px": 3315.0, "py": 1676.6}, {"loc_id": 703, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -384.0, "z": -6656.0, "px": 1982.5, "py": 912.0}, {"loc_id": 704, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 1280.0, "z": -6592.0, "px": 2266.5, "py": 923.0}, {"loc_id": 705, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 6144.0, "z": -1536.0, "px": 3096.6, "py": 1785.9}, {"loc_id": 706, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 9728.0, "z": 1536.0, "px": 3708.2, "py": 2310.1}, {"loc_id": 707, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 1024.0, "z": -7360.0, "px": 2222.8, "py": 791.9}, {"loc_id": 708, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 8512.0, "z": 1152.0, "px": 3500.7, "py": 2244.6}, {"loc_id": 709, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -6080.0, "z": -1984.0, "px": 1010.3, "py": 1709.4}, {"loc_id": 710, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 8384.0, "z": -3456.0, "px": 3478.9, "py": 1458.2}, {"loc_id": 710, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 5, "x": 8384.0, "z": -3456.0, "px": 3478.9, "py": 1458.2}, {"loc_id": 711, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -5184.0, "z": 6208.0, "px": 1163.3, "py": 3107.5}, {"loc_id": 711, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -5184.0, "z": 6208.0, "px": 1163.3, "py": 3107.5}, {"loc_id": 712, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 9152.0, "z": -1280.0, "px": 3609.9, "py": 1829.5}, {"loc_id": 713, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 4224.0, "z": 5824.0, "px": 2768.9, "py": 3042.0}, {"loc_id": 713, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 4224.0, "z": 5824.0, "px": 2768.9, "py": 3042.0}, {"loc_id": 713, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 5, "x": 4224.0, "z": 5824.0, "px": 2768.9, "py": 3042.0}, {"loc_id": 714, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -896.0, "z": -7616.0, "px": 1895.1, "py": 748.2}, {"loc_id": 714, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -896.0, "z": -7616.0, "px": 1895.1, "py": 748.2}, {"loc_id": 715, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 8064.0, "z": 2752.0, "px": 3424.3, "py": 2517.7}, {"loc_id": 716, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -6336.0, "z": 3328.0, "px": 966.7, "py": 2616.0}, {"loc_id": 717, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -7360.0, "z": -3392.0, "px": 791.9, "py": 1469.1}, {"loc_id": 717, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 5, "x": -7360.0, "z": -3392.0, "px": 791.9, "py": 1469.1}, {"loc_id": 718, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -6336.0, "z": 704.0, "px": 966.7, "py": 2168.1}, {"loc_id": 719, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 4032.0, "z": -6144.0, "px": 2736.1, "py": 999.4}, {"loc_id": 720, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -7168.0, "z": 640.0, "px": 824.7, "py": 2157.2}, {"loc_id": 721, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -2560.0, "z": -5760.0, "px": 1611.1, "py": 1065.0}, {"loc_id": 722, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -4480.0, "z": -4352.0, "px": 1283.4, "py": 1305.3}, {"loc_id": 722, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 5, "x": -4480.0, "z": -4352.0, "px": 1283.4, "py": 1305.3}, {"loc_id": 723, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 8768.0, "z": -2944.0, "px": 3544.4, "py": 1545.6}, {"loc_id": 723, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 8768.0, "z": -2944.0, "px": 3544.4, "py": 1545.6}, {"loc_id": 724, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -6912.0, "z": 5056.0, "px": 868.4, "py": 2910.9}, {"loc_id": 725, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 2816.0, "z": 5696.0, "px": 2528.6, "py": 3020.1}, {"loc_id": 725, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 2816.0, "z": 5696.0, "px": 2528.6, "py": 3020.1}, {"loc_id": 726, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 832.0, "z": -7040.0, "px": 2190.0, "py": 846.5}, {"loc_id": 727, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 6144.0, "z": -4672.0, "px": 3096.6, "py": 1250.6}, {"loc_id": 727, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 5, "x": 6144.0, "z": -4672.0, "px": 3096.6, "py": 1250.6}, {"loc_id": 728, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 7680.0, "z": -2368.0, "px": 3358.7, "py": 1643.9}, {"loc_id": 729, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 8064.0, "z": -1728.0, "px": 3424.3, "py": 1753.1}, {"loc_id": 730, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 8192.0, "z": -832.0, "px": 3446.1, "py": 1906.0}, {"loc_id": 730, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 5, "x": 8192.0, "z": -832.0, "px": 3446.1, "py": 1906.0}, {"loc_id": 731, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -7744.0, "z": -2880.0, "px": 726.4, "py": 1556.5}, {"loc_id": 732, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 6464.0, "z": 2880.0, "px": 3151.2, "py": 2539.5}, {"loc_id": 733, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 8256.0, "z": 2432.0, "px": 3457.0, "py": 2463.1}, {"loc_id": 734, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 2752.0, "z": 5952.0, "px": 2517.7, "py": 3063.8}, {"loc_id": 734, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 5, "x": 2752.0, "z": 5952.0, "px": 2517.7, "py": 3063.8}, {"loc_id": 734, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 2752.0, "z": 5952.0, "px": 2517.7, "py": 3063.8}, {"loc_id": 735, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -9536.0, "z": 832.0, "px": 420.5, "py": 2190.0}, {"loc_id": 736, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 9088.0, "z": -3008.0, "px": 3599.0, "py": 1534.6}, {"loc_id": 737, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -9728.0, "z": -1024.0, "px": 387.8, "py": 1873.2}, {"loc_id": 737, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 5, "x": -9728.0, "z": -1024.0, "px": 387.8, "py": 1873.2}, {"loc_id": 737, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -9728.0, "z": -1024.0, "px": 387.8, "py": 1873.2}, {"loc_id": 737, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 5, "x": -9728.0, "z": -1024.0, "px": 387.8, "py": 1873.2}, {"loc_id": 737, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 5, "x": -9728.0, "z": -1024.0, "px": 387.8, "py": 1873.2}, {"loc_id": 738, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -3072.0, "z": -5760.0, "px": 1523.7, "py": 1065.0}, {"loc_id": 739, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -6912.0, "z": 704.0, "px": 868.4, "py": 2168.1}, {"loc_id": 739, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 5, "x": -6912.0, "z": 704.0, "px": 868.4, "py": 2168.1}, {"loc_id": 740, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -5760.0, "z": -1984.0, "px": 1065.0, "py": 1709.4}, {"loc_id": 741, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 6400.0, "z": 4352.0, "px": 3140.3, "py": 2790.7}, {"loc_id": 742, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -5376.0, "z": 4736.0, "px": 1130.5, "py": 2856.3}, {"loc_id": 743, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -9408.0, "z": -2432.0, "px": 442.4, "py": 1632.9}, {"loc_id": 743, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -9408.0, "z": -2432.0, "px": 442.4, "py": 1632.9}, {"loc_id": 744, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 1408.0, "z": 7488.0, "px": 2288.3, "py": 3326.0}, {"loc_id": 744, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 5, "x": 1408.0, "z": 7488.0, "px": 2288.3, "py": 3326.0}, {"loc_id": 744, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 1408.0, "z": 7488.0, "px": 2288.3, "py": 3326.0}, {"loc_id": 744, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 5, "x": 1408.0, "z": 7488.0, "px": 2288.3, "py": 3326.0}, {"loc_id": 745, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -5824.0, "z": 3264.0, "px": 1054.0, "py": 2605.1}, {"loc_id": 746, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -6592.0, "z": 896.0, "px": 923.0, "py": 2200.9}, {"loc_id": 747, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -7296.0, "z": 1152.0, "px": 802.8, "py": 2244.6}, {"loc_id": 748, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -4096.0, "z": 4736.0, "px": 1348.9, "py": 2856.3}, {"loc_id": 749, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 192.0, "z": -7424.0, "px": 2080.8, "py": 781.0}, {"loc_id": 750, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 3072.0, "z": 7168.0, "px": 2572.3, "py": 3271.3}, {"loc_id": 750, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 5, "x": 3072.0, "z": 7168.0, "px": 2572.3, "py": 3271.3}, {"loc_id": 751, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -1792.0, "z": -5824.0, "px": 1742.2, "py": 1054.0}, {"loc_id": 751, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 5, "x": -1792.0, "z": -5824.0, "px": 1742.2, "py": 1054.0}, {"loc_id": 752, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 8256.0, "z": -2880.0, "px": 3457.0, "py": 1556.5}, {"loc_id": 752, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 5, "x": 8256.0, "z": -2880.0, "px": 3457.0, "py": 1556.5}, {"loc_id": 753, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -1408.0, "z": -6016.0, "px": 1807.7, "py": 1021.3}, {"loc_id": 753, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 5, "x": -1408.0, "z": -6016.0, "px": 1807.7, "py": 1021.3}, {"loc_id": 754, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -9664.0, "z": -2176.0, "px": 398.7, "py": 1676.6}, {"loc_id": 755, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -9216.0, "z": -640.0, "px": 475.1, "py": 1938.8}, {"loc_id": 755, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 5, "x": -9216.0, "z": -640.0, "px": 475.1, "py": 1938.8}, {"loc_id": 756, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 8000.0, "z": 2112.0, "px": 3413.3, "py": 2408.4}, {"loc_id": 756, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 8000.0, "z": 2112.0, "px": 3413.3, "py": 2408.4}, {"loc_id": 757, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 8768.0, "z": 896.0, "px": 3544.4, "py": 2200.9}, {"loc_id": 758, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 8896.0, "z": 320.0, "px": 3566.3, "py": 2102.6}, {"loc_id": 758, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 5, "x": 8896.0, "z": 320.0, "px": 3566.3, "py": 2102.6}, {"loc_id": 759, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 3968.0, "z": -5312.0, "px": 2725.2, "py": 1141.4}, {"loc_id": 759, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 3968.0, "z": -5312.0, "px": 2725.2, "py": 1141.4}, {"loc_id": 760, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 4160.0, "z": -4736.0, "px": 2758.0, "py": 1239.7}, {"loc_id": 761, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -2112.0, "z": -6656.0, "px": 1687.6, "py": 912.0}, {"loc_id": 761, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 5, "x": -2112.0, "z": -6656.0, "px": 1687.6, "py": 912.0}, {"loc_id": 762, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 4032.0, "z": -6464.0, "px": 2736.1, "py": 944.8}, {"loc_id": 762, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 5, "x": 4032.0, "z": -6464.0, "px": 2736.1, "py": 944.8}, {"loc_id": 763, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 3904.0, "z": -7040.0, "px": 2714.3, "py": 846.5}, {"loc_id": 764, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -7168.0, "z": -1280.0, "px": 824.7, "py": 1829.5}, {"loc_id": 765, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -3712.0, "z": 6656.0, "px": 1414.5, "py": 3184.0}, {"loc_id": 766, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 5760.0, "z": 6080.0, "px": 3031.0, "py": 3085.7}, {"loc_id": 766, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 5, "x": 5760.0, "z": 6080.0, "px": 3031.0, "py": 3085.7}, {"loc_id": 767, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 1152.0, "z": 7616.0, "px": 2244.6, "py": 3347.8}, {"loc_id": 768, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -1856.0, "z": 7488.0, "px": 1731.2, "py": 3326.0}, {"loc_id": 769, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -6272.0, "z": 3008.0, "px": 977.6, "py": 2561.4}, {"loc_id": 769, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -6272.0, "z": 3008.0, "px": 977.6, "py": 2561.4}, {"loc_id": 770, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 7552.0, "z": -4480.0, "px": 3336.9, "py": 1283.4}, {"loc_id": 771, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 2944.0, "z": 5440.0, "px": 2550.4, "py": 2976.4}, {"loc_id": 772, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -7104.0, "z": -2176.0, "px": 835.6, "py": 1676.6}, {"loc_id": 773, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": -4416.0, "z": -6784.0, "px": 1294.3, "py": 890.2}, {"loc_id": 774, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 6016.0, "z": 5952.0, "px": 3074.7, "py": 3063.8}, {"loc_id": 774, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 5, "x": 6016.0, "z": 5952.0, "px": 3074.7, "py": 3063.8}, {"loc_id": 774, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 5, "x": 6016.0, "z": 5952.0, "px": 3074.7, "py": 3063.8}, {"loc_id": 775, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 5, "x": 5632.0, "z": 2432.0, "px": 3009.2, "py": 2463.1}, {"loc_id": 779, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 5, "x": 2304.0, "z": -5760.0, "px": 2441.2, "py": 1065.0}, {"loc_id": 781, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 5, "x": -6144.0, "z": 3520.0, "px": 999.4, "py": 2648.7}, {"loc_id": 784, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 5, "x": -3776.0, "z": 5440.0, "px": 1403.6, "py": 2976.4}, {"loc_id": 786, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 5, "x": -9472.0, "z": -960.0, "px": 431.4, "py": 1884.2}, {"loc_id": 786, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 5, "x": -9472.0, "z": -960.0, "px": 431.4, "py": 1884.2}, {"loc_id": 786, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 5, "x": -9472.0, "z": -960.0, "px": 431.4, "py": 1884.2}, {"loc_id": 791, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 5, "x": 6720.0, "z": 5376.0, "px": 3194.9, "py": 2965.5}, {"loc_id": 795, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 5, "x": 8512.0, "z": 576.0, "px": 3500.7, "py": 2146.3}, {"loc_id": 795, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 5, "x": 8512.0, "z": 576.0, "px": 3500.7, "py": 2146.3}, {"loc_id": 795, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 5, "x": 8512.0, "z": 576.0, "px": 3500.7, "py": 2146.3}, {"loc_id": 796, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 5, "x": -128.0, "z": 7360.0, "px": 2026.2, "py": 3304.1}, {"loc_id": 799, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 5, "x": -8704.0, "z": -1280.0, "px": 562.5, "py": 1829.5}, {"loc_id": 799, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 5, "x": -8704.0, "z": -1280.0, "px": 562.5, "py": 1829.5}, {"loc_id": 799, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 5, "x": -8704.0, "z": -1280.0, "px": 562.5, "py": 1829.5}, {"loc_id": 801, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 5, "x": -5760.0, "z": -5504.0, "px": 1065.0, "py": 1108.7}, {"loc_id": 803, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 5, "x": -3008.0, "z": -6080.0, "px": 1534.6, "py": 1010.3}, {"loc_id": 805, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 5, "x": 8640.0, "z": -576.0, "px": 3522.6, "py": 1949.7}, {"loc_id": 805, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 5, "x": 8640.0, "z": -576.0, "px": 3522.6, "py": 1949.7}, {"loc_id": 806, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 5, "x": 4608.0, "z": 6336.0, "px": 2834.4, "py": 3129.3}, {"loc_id": 808, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 5, "x": 4928.0, "z": -5696.0, "px": 2889.0, "py": 1075.9}, {"loc_id": 808, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 5, "x": 4928.0, "z": -5696.0, "px": 2889.0, "py": 1075.9}, {"loc_id": 809, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 5, "x": 4416.0, "z": 5568.0, "px": 2801.7, "py": 2998.3}, {"loc_id": 809, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 5, "x": 4416.0, "z": 5568.0, "px": 2801.7, "py": 2998.3}, {"loc_id": 809, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 5, "x": 4416.0, "z": 5568.0, "px": 2801.7, "py": 2998.3}, {"loc_id": 814, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 5, "x": 192.0, "z": 7104.0, "px": 2080.8, "py": 3260.4}, {"loc_id": 814, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 5, "x": 192.0, "z": 7104.0, "px": 2080.8, "py": 3260.4}, {"loc_id": 814, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 5, "x": 192.0, "z": 7104.0, "px": 2080.8, "py": 3260.4}, {"loc_id": 815, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 5, "x": 832.0, "z": 6784.0, "px": 2190.0, "py": 3205.8}, {"loc_id": 818, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 5, "x": -7360.0, "z": 4032.0, "px": 791.9, "py": 2736.1}, {"loc_id": 818, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 5, "x": -7360.0, "z": 4032.0, "px": 791.9, "py": 2736.1}, {"loc_id": 821, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 5, "x": 384.0, "z": 7552.0, "px": 2113.5, "py": 3336.9}, {"loc_id": 824, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 5, "x": -2368.0, "z": -6464.0, "px": 1643.9, "py": 944.8}, {"loc_id": 825, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 5, "x": -8384.0, "z": -448.0, "px": 617.1, "py": 1971.5}, {"loc_id": 826, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 5, "x": 7040.0, "z": 3840.0, "px": 3249.5, "py": 2703.4}, {"loc_id": 829, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 5, "x": -4992.0, "z": -3648.0, "px": 1196.0, "py": 1425.4}, {"loc_id": 831, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 5, "x": 8640.0, "z": -3328.0, "px": 3522.6, "py": 1480.0}, {"loc_id": 831, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 5, "x": 8640.0, "z": -3328.0, "px": 3522.6, "py": 1480.0}, {"loc_id": 833, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 5, "x": 6208.0, "z": 5056.0, "px": 3107.5, "py": 2910.9}, {"loc_id": 834, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 5, "x": -8576.0, "z": 1280.0, "px": 584.4, "py": 2266.5}, {"loc_id": 835, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 5, "x": -8192.0, "z": 2304.0, "px": 649.9, "py": 2441.2}, {"loc_id": 837, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 5, "x": -9408.0, "z": 1472.0, "px": 442.4, "py": 2299.2}, {"loc_id": 837, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 5, "x": -9408.0, "z": 1472.0, "px": 442.4, "py": 2299.2}, {"loc_id": 840, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 5, "x": -1664.0, "z": 7104.0, "px": 1764.0, "py": 3260.4}, {"loc_id": 840, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 5, "x": -1664.0, "z": 7104.0, "px": 1764.0, "py": 3260.4}, {"loc_id": 840, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 5, "x": -1664.0, "z": 7104.0, "px": 1764.0, "py": 3260.4}, {"loc_id": 842, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 5, "x": -4480.0, "z": -5376.0, "px": 1283.4, "py": 1130.5}, {"loc_id": 842, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 5, "x": -4480.0, "z": -5376.0, "px": 1283.4, "py": 1130.5}, {"loc_id": 847, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 5, "x": 1280.0, "z": 6016.0, "px": 2266.5, "py": 3074.7}, {"loc_id": 849, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 5, "x": 4544.0, "z": -6656.0, "px": 2823.5, "py": 912.0}, {"loc_id": 851, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 5, "x": 8000.0, "z": -4480.0, "px": 3413.3, "py": 1283.4}, {"loc_id": 851, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 5, "x": 8000.0, "z": -4480.0, "px": 3413.3, "py": 1283.4}, {"loc_id": 852, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 5, "x": 8512.0, "z": -2688.0, "px": 3500.7, "py": 1589.2}, {"loc_id": 854, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 5, "x": 5696.0, "z": 5632.0, "px": 3020.1, "py": 3009.2}, {"loc_id": 856, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 5, "x": -7168.0, "z": 3840.0, "px": 824.7, "py": 2703.4}, {"loc_id": 858, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 5, "x": -8384.0, "z": -3072.0, "px": 617.1, "py": 1523.7}, {"loc_id": 858, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 5, "x": -8384.0, "z": -3072.0, "px": 617.1, "py": 1523.7}, {"loc_id": 860, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 5, "x": 9664.0, "z": 768.0, "px": 3697.3, "py": 2179.1}, {"loc_id": 860, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 5, "x": 9664.0, "z": 768.0, "px": 3697.3, "py": 2179.1}, {"loc_id": 861, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 5, "x": 6656.0, "z": -5504.0, "px": 3184.0, "py": 1108.7}, {"loc_id": 861, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 5, "x": 6656.0, "z": -5504.0, "px": 3184.0, "py": 1108.7}, {"loc_id": 862, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 5, "x": -8128.0, "z": -3968.0, "px": 660.8, "py": 1370.8}, {"loc_id": 863, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 5, "x": -1664.0, "z": -6080.0, "px": 1764.0, "py": 1010.3}, {"loc_id": 863, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 5, "x": -1664.0, "z": -6080.0, "px": 1764.0, "py": 1010.3}, {"loc_id": 863, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 5, "x": -1664.0, "z": -6080.0, "px": 1764.0, "py": 1010.3}, {"loc_id": 863, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 5, "x": -1664.0, "z": -6080.0, "px": 1764.0, "py": 1010.3}, {"loc_id": 867, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 5, "x": -5120.0, "z": 4672.0, "px": 1174.2, "py": 2845.4}, {"loc_id": 870, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 5, "x": 5696.0, "z": 3520.0, "px": 3020.1, "py": 2648.7}, {"loc_id": 873, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 5, "x": 4480.0, "z": 5952.0, "px": 2812.6, "py": 3063.8}, {"loc_id": 874, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 5, "x": 1856.0, "z": -6592.0, "px": 2364.8, "py": 923.0}, {"loc_id": 875, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 5, "x": 1280.0, "z": -6336.0, "px": 2266.5, "py": 966.7}, {"loc_id": 876, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 5, "x": -2240.0, "z": -7040.0, "px": 1665.7, "py": 846.5}, {"loc_id": 879, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 5, "x": -6592.0, "z": 4032.0, "px": 923.0, "py": 2736.1}, {"loc_id": 886, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 5, "x": -3904.0, "z": 5888.0, "px": 1381.7, "py": 3052.9}, {"loc_id": 887, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 5, "x": -7616.0, "z": -3328.0, "px": 748.2, "py": 1480.0}, {"loc_id": 887, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 5, "x": -7616.0, "z": -3328.0, "px": 748.2, "py": 1480.0}, {"loc_id": 888, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 5, "x": 5056.0, "z": -3840.0, "px": 2910.9, "py": 1392.6}, {"loc_id": 888, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 5, "x": 5056.0, "z": -3840.0, "px": 2910.9, "py": 1392.6}, {"loc_id": 889, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 5, "x": 7360.0, "z": 4544.0, "px": 3304.1, "py": 2823.5}, {"loc_id": 891, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 5, "x": 9280.0, "z": 1728.0, "px": 3631.8, "py": 2342.9}, {"loc_id": 892, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 5, "x": -6400.0, "z": 5632.0, "px": 955.7, "py": 3009.2}, {"loc_id": 892, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 5, "x": -6400.0, "z": 5632.0, "px": 955.7, "py": 3009.2}, {"loc_id": 894, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 5, "x": 5952.0, "z": 2432.0, "px": 3063.8, "py": 2463.1}, {"loc_id": 903, "loc_name": "Hildir_cave", "item": "SpawnOnce: Bat", "count": 5, "x": 6016.0, "z": 4608.0, "px": 3074.7, "py": 2834.4}, {"loc_id": 930, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Archer", "count": 5, "x": 256.0, "z": -8896.0, "px": 2091.7, "py": 529.7}, {"loc_id": 935, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Archer", "count": 5, "x": 1152.0, "z": -9024.0, "px": 2244.6, "py": 507.9}, {"loc_id": 942, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Archer", "count": 5, "x": -320.0, "z": -9856.0, "px": 1993.4, "py": 365.9}, {"loc_id": 945, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Archer", "count": 5, "x": -896.0, "z": -9600.0, "px": 1895.1, "py": 409.6}, {"loc_id": 1989, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 5, "x": 3641.8, "z": 3969.8, "px": 2669.5, "py": 2725.5}, {"loc_id": 1990, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -9021.5, "z": 3142.1, "px": 508.3, "py": 2584.3}, {"loc_id": 2001, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": -6655.6, "z": -4797.9, "px": 912.1, "py": 1229.2}, {"loc_id": 2004, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 5, "x": 5893.1, "z": -707.2, "px": 3053.8, "py": 1927.3}, {"loc_id": 2006, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": 3589.3, "z": 3712.8, "px": 2660.6, "py": 2681.7}, {"loc_id": 2006, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 5, "x": 3589.3, "z": 3712.8, "px": 2660.6, "py": 2681.7}, {"loc_id": 2007, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 2754.1, "z": 5051.3, "px": 2518.0, "py": 2910.1}, {"loc_id": 2010, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 5, "x": -1345.3, "z": -5450.9, "px": 1818.4, "py": 1117.7}, {"loc_id": 2010, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -1345.3, "z": -5450.9, "px": 1818.4, "py": 1117.7}, {"loc_id": 2011, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 5431.7, "z": -900.4, "px": 2975.0, "py": 1894.3}, {"loc_id": 2012, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": 2615.5, "z": 5691.7, "px": 2494.4, "py": 3019.4}, {"loc_id": 2020, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": -5828.9, "z": 1534.9, "px": 1053.2, "py": 2310.0}, {"loc_id": 2020, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -5828.9, "z": 1534.9, "px": 1053.2, "py": 2310.0}, {"loc_id": 2021, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 1212.3, "z": -5636.2, "px": 2254.9, "py": 1086.1}, {"loc_id": 2022, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": -5119.0, "z": 704.2, "px": 1174.4, "py": 2168.2}, {"loc_id": 2023, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": -4614.5, "z": 5449.2, "px": 1260.5, "py": 2978.0}, {"loc_id": 2023, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 5, "x": -4614.5, "z": 5449.2, "px": 1260.5, "py": 2978.0}, {"loc_id": 2024, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 2300.8, "z": 3847.4, "px": 2440.7, "py": 2704.6}, {"loc_id": 2025, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": 5246.9, "z": 4990.5, "px": 2943.5, "py": 2899.7}, {"loc_id": 2028, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 5, "x": 9860.3, "z": -1604.7, "px": 3730.8, "py": 1774.1}, {"loc_id": 2032, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -9030.2, "z": 3011.1, "px": 506.8, "py": 2561.9}, {"loc_id": 2032, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": -9030.2, "z": 3011.1, "px": 506.8, "py": 2561.9}, {"loc_id": 2038, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 5, "x": 2247.9, "z": -886.9, "px": 2431.6, "py": 1896.6}, {"loc_id": 2040, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 3391.7, "z": 3514.9, "px": 2626.9, "py": 2647.9}, {"loc_id": 2041, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": -2236.4, "z": 4542.5, "px": 1666.3, "py": 2823.3}, {"loc_id": 2042, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 3908.4, "z": 3896.3, "px": 2715.0, "py": 2713.0}, {"loc_id": 2043, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 7367.4, "z": 3701.7, "px": 3305.4, "py": 2679.8}, {"loc_id": 2044, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": 1789.0, "z": -6149.7, "px": 2353.3, "py": 998.5}, {"loc_id": 2045, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 6264.5, "z": -4358.4, "px": 3117.1, "py": 1304.2}, {"loc_id": 2046, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 4928.8, "z": -2241.7, "px": 2889.2, "py": 1665.4}, {"loc_id": 2050, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 1149.0, "z": 5321.2, "px": 2244.1, "py": 2956.2}, {"loc_id": 2053, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 5060.9, "z": -2298.6, "px": 2911.7, "py": 1655.7}, {"loc_id": 2053, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": 5060.9, "z": -2298.6, "px": 2911.7, "py": 1655.7}, {"loc_id": 2055, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": 769.5, "z": 192.1, "px": 2179.3, "py": 2080.8}, {"loc_id": 2058, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -1343.6, "z": -1865.0, "px": 1818.7, "py": 1729.7}, {"loc_id": 2059, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -5058.0, "z": 821.8, "px": 1184.8, "py": 2188.3}, {"loc_id": 2062, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -5771.0, "z": -1665.8, "px": 1063.1, "py": 1763.7}, {"loc_id": 2062, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 5, "x": -5771.0, "z": -1665.8, "px": 1063.1, "py": 1763.7}, {"loc_id": 2062, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": -5771.0, "z": -1665.8, "px": 1063.1, "py": 1763.7}, {"loc_id": 2065, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 2569.6, "z": -4599.8, "px": 2486.5, "py": 1263.0}, {"loc_id": 2066, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": 5948.5, "z": 1414.3, "px": 3063.2, "py": 2289.4}, {"loc_id": 2072, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 5, "x": 7928.0, "z": -2627.6, "px": 3401.0, "py": 1599.6}, {"loc_id": 2075, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 508.4, "z": 511.0, "px": 2134.8, "py": 2135.2}, {"loc_id": 2075, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 508.4, "z": 511.0, "px": 2134.8, "py": 2135.2}, {"loc_id": 2078, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": 8757.2, "z": -1472.7, "px": 3542.6, "py": 1796.7}, {"loc_id": 2079, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -5431.8, "z": -6277.2, "px": 1121.0, "py": 976.7}, {"loc_id": 2080, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 5, "x": -381.3, "z": -4345.5, "px": 1982.9, "py": 1306.4}, {"loc_id": 2080, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 5, "x": -381.3, "z": -4345.5, "px": 1982.9, "py": 1306.4}, {"loc_id": 2082, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 5, "x": -1272.0, "z": -2183.0, "px": 1830.9, "py": 1675.4}, {"loc_id": 2083, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -4296.8, "z": -6398.2, "px": 1314.7, "py": 956.0}, {"loc_id": 2084, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -4355.4, "z": 1795.5, "px": 1304.7, "py": 2354.4}, {"loc_id": 2086, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": -2122.5, "z": -3076.8, "px": 1685.8, "py": 1522.9}, {"loc_id": 2090, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 5, "x": -1801.2, "z": -4735.1, "px": 1740.6, "py": 1239.9}, {"loc_id": 2101, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": -1158.2, "z": -1530.7, "px": 1850.3, "py": 1786.8}, {"loc_id": 2103, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": 3965.6, "z": -382.1, "px": 2724.8, "py": 1982.8}, {"loc_id": 2104, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 5, "x": 835.6, "z": 4856.2, "px": 2190.6, "py": 2876.8}, {"loc_id": 2105, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 5, "x": 968.4, "z": 5450.5, "px": 2213.3, "py": 2978.2}, {"loc_id": 2108, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 5, "x": 7680.5, "z": -2887.2, "px": 3358.8, "py": 1555.3}, {"loc_id": 2108, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 7680.5, "z": -2887.2, "px": 3358.8, "py": 1555.3}, {"loc_id": 2112, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 5188.7, "z": 5240.8, "px": 2933.5, "py": 2942.4}, {"loc_id": 2113, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 502.9, "z": 377.9, "px": 2133.8, "py": 2112.5}, {"loc_id": 2113, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": 502.9, "z": 377.9, "px": 2133.8, "py": 2112.5}, {"loc_id": 2114, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 5, "x": 8841.5, "z": 123.6, "px": 3556.9, "py": 2069.1}, {"loc_id": 2118, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 4092.3, "z": 3912.8, "px": 2746.4, "py": 2715.8}, {"loc_id": 2119, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 5, "x": 5123.6, "z": 5438.1, "px": 2922.4, "py": 2976.1}, {"loc_id": 2123, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 5, "x": -6721.1, "z": 3657.4, "px": 900.9, "py": 2672.2}, {"loc_id": 2126, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 5, "x": -5059.6, "z": -1797.8, "px": 1184.5, "py": 1741.2}, {"loc_id": 2127, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 3769.9, "z": 3914.8, "px": 2691.4, "py": 2716.1}, {"loc_id": 2130, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": -1981.4, "z": -5691.3, "px": 1709.8, "py": 1076.7}, {"loc_id": 2132, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 772.8, "z": 4226.6, "px": 2179.9, "py": 2769.3}, {"loc_id": 2132, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 5, "x": 772.8, "z": 4226.6, "px": 2179.9, "py": 2769.3}, {"loc_id": 2136, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 2248.8, "z": -1352.8, "px": 2431.8, "py": 1817.1}, {"loc_id": 2136, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": 2248.8, "z": -1352.8, "px": 2431.8, "py": 1817.1}, {"loc_id": 2136, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 2248.8, "z": -1352.8, "px": 2431.8, "py": 1817.1}, {"loc_id": 2145, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 2491.2, "z": 5062.0, "px": 2473.2, "py": 2911.9}, {"loc_id": 2147, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 5, "x": 442.3, "z": 5504.3, "px": 2123.5, "py": 2987.4}, {"loc_id": 2147, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 5, "x": 442.3, "z": 5504.3, "px": 2123.5, "py": 2987.4}, {"loc_id": 2153, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -834.3, "z": -6600.1, "px": 1905.6, "py": 921.6}, {"loc_id": 2157, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -2947.2, "z": 4168.6, "px": 1545.0, "py": 2759.4}, {"loc_id": 2158, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 8393.8, "z": 2741.1, "px": 3480.5, "py": 2515.8}, {"loc_id": 2164, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 5, "x": 644.1, "z": -245.8, "px": 2157.9, "py": 2006.1}, {"loc_id": 2166, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -5567.0, "z": 4730.5, "px": 1097.9, "py": 2855.3}, {"loc_id": 2169, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -7622.1, "z": 4287.6, "px": 747.2, "py": 2779.8}, {"loc_id": 2173, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 5, "x": 1034.1, "z": -5498.0, "px": 2224.5, "py": 1109.7}, {"loc_id": 2174, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 5, "x": -4168.3, "z": -6390.4, "px": 1336.6, "py": 957.4}, {"loc_id": 2175, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 5, "x": 312.2, "z": 5051.0, "px": 2101.3, "py": 2910.0}, {"loc_id": 2181, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 5, "x": -9341.1, "z": 3254.4, "px": 453.8, "py": 2603.4}, {"loc_id": 2182, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 5, "x": -7942.6, "z": 265.7, "px": 692.5, "py": 2093.3}, {"loc_id": 2185, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2287.6, "z": -4367.3, "px": 2438.4, "py": 1302.6}, {"loc_id": 2186, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2258.0, "z": 12.9, "px": 2433.4, "py": 2050.2}, {"loc_id": 2187, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -4223.7, "z": -127.5, "px": 1327.2, "py": 2026.2}, {"loc_id": 2188, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -4595.8, "z": 5576.1, "px": 1263.7, "py": 2999.7}, {"loc_id": 2189, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 5766.8, "z": 1600.8, "px": 3032.2, "py": 2321.2}, {"loc_id": 2190, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 1164.0, "z": -5620.2, "px": 2246.7, "py": 1088.8}, {"loc_id": 2191, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -7095.2, "z": 2573.7, "px": 837.1, "py": 2487.2}, {"loc_id": 2192, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -8365.3, "z": -1414.7, "px": 620.3, "py": 1806.6}, {"loc_id": 2193, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -6861.1, "z": 5377.7, "px": 877.0, "py": 2965.8}, {"loc_id": 2194, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 386.7, "z": 5359.7, "px": 2114.0, "py": 2962.7}, {"loc_id": 2195, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -3885.4, "z": -469.0, "px": 1384.9, "py": 1968.0}, {"loc_id": 2196, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -2413.7, "z": -6267.1, "px": 1636.1, "py": 978.4}, {"loc_id": 2197, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2453.0, "z": -3574.8, "px": 2466.6, "py": 1437.9}, {"loc_id": 2198, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2925.0, "z": -81.4, "px": 2547.2, "py": 2034.1}, {"loc_id": 2199, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 1808.2, "z": -4287.3, "px": 2356.6, "py": 1316.3}, {"loc_id": 2200, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -4398.8, "z": 1776.6, "px": 1297.3, "py": 2351.2}, {"loc_id": 2201, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 879.7, "z": 20.6, "px": 2198.1, "py": 2051.5}, {"loc_id": 2202, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2891.3, "z": 436.1, "px": 2541.4, "py": 2122.4}, {"loc_id": 2203, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -9068.8, "z": 3405.0, "px": 500.3, "py": 2629.1}, {"loc_id": 2204, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -5503.0, "z": 4818.3, "px": 1108.8, "py": 2870.3}, {"loc_id": 2205, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -6000.3, "z": 4754.9, "px": 1023.9, "py": 2859.5}, {"loc_id": 2206, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -6198.5, "z": 2240.2, "px": 990.1, "py": 2430.3}, {"loc_id": 2207, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -8273.0, "z": 2580.5, "px": 636.1, "py": 2488.4}, {"loc_id": 2208, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -4868.3, "z": -3087.9, "px": 1217.1, "py": 1521.0}, {"loc_id": 2209, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -3389.8, "z": 4590.8, "px": 1469.5, "py": 2831.5}, {"loc_id": 2210, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -6706.6, "z": 5433.8, "px": 903.4, "py": 2975.4}, {"loc_id": 2211, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2040.2, "z": 3821.9, "px": 2396.2, "py": 2700.3}, {"loc_id": 2212, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -7122.8, "z": 138.1, "px": 832.4, "py": 2071.6}, {"loc_id": 2213, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -1393.4, "z": 2678.5, "px": 1810.2, "py": 2505.1}, {"loc_id": 2214, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -3644.5, "z": 7054.6, "px": 1426.0, "py": 3252.0}, {"loc_id": 2215, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -1021.4, "z": 430.9, "px": 1873.7, "py": 2121.5}, {"loc_id": 2216, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -4231.9, "z": -6289.4, "px": 1325.8, "py": 974.6}, {"loc_id": 2217, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -452.1, "z": -4340.8, "px": 1970.8, "py": 1307.2}, {"loc_id": 2218, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2239.7, "z": -760.6, "px": 2430.2, "py": 1918.2}, {"loc_id": 2219, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2481.0, "z": -3436.3, "px": 2471.4, "py": 1461.5}, {"loc_id": 2220, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 8651.0, "z": -3662.4, "px": 3524.4, "py": 1423.0}, {"loc_id": 2221, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 8498.9, "z": -2157.6, "px": 3498.5, "py": 1679.8}, {"loc_id": 2222, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 8564.4, "z": -2117.1, "px": 3509.7, "py": 1686.7}, {"loc_id": 2223, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 1453.1, "z": -2305.6, "px": 2296.0, "py": 1654.5}, {"loc_id": 2224, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 820.7, "z": 5203.8, "px": 2188.1, "py": 2936.1}, {"loc_id": 2225, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -5231.9, "z": -1939.7, "px": 1155.1, "py": 1717.0}, {"loc_id": 2226, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 6010.9, "z": -5945.2, "px": 3073.9, "py": 1033.4}, {"loc_id": 2227, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -3892.3, "z": -2706.6, "px": 1383.7, "py": 1586.1}, {"loc_id": 2228, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 399.4, "z": 5517.8, "px": 2116.2, "py": 2989.7}, {"loc_id": 2229, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 7929.7, "z": -3148.0, "px": 3401.3, "py": 1510.7}, {"loc_id": 2230, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -3603.2, "z": 7040.5, "px": 1433.1, "py": 3249.6}, {"loc_id": 2231, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -1675.9, "z": -4354.5, "px": 1762.0, "py": 1304.8}, {"loc_id": 2232, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 8828.0, "z": -3733.3, "px": 3554.6, "py": 1410.9}, {"loc_id": 2233, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -7424.1, "z": -1978.3, "px": 781.0, "py": 1710.4}, {"loc_id": 2234, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -3277.3, "z": -1849.6, "px": 1488.7, "py": 1732.3}, {"loc_id": 2235, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -2245.2, "z": 4618.7, "px": 1664.8, "py": 2836.3}, {"loc_id": 2236, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2362.9, "z": 440.7, "px": 2451.3, "py": 2123.2}, {"loc_id": 2237, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 3512.8, "z": 5323.3, "px": 2647.5, "py": 2956.5}, {"loc_id": 2238, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 5741.8, "z": -899.2, "px": 3027.9, "py": 1894.5}, {"loc_id": 2239, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -2190.4, "z": -5582.9, "px": 1674.2, "py": 1095.2}, {"loc_id": 2240, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 5067.1, "z": 4269.4, "px": 2912.8, "py": 2776.6}, {"loc_id": 2241, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 1352.2, "z": 5631.9, "px": 2278.8, "py": 3009.2}, {"loc_id": 2242, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -5169.1, "z": 5752.4, "px": 1165.8, "py": 3029.7}, {"loc_id": 2243, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 3015.4, "z": -4805.7, "px": 2562.6, "py": 1227.8}, {"loc_id": 2244, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -761.5, "z": 389.2, "px": 1918.0, "py": 2114.4}, {"loc_id": 2245, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -1923.6, "z": -4738.5, "px": 1719.7, "py": 1239.3}, {"loc_id": 2246, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 7308.1, "z": -3258.5, "px": 3295.2, "py": 1491.9}, {"loc_id": 2247, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 4077.2, "z": 3836.6, "px": 2743.8, "py": 2702.8}, {"loc_id": 2248, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -4355.1, "z": -6448.9, "px": 1304.7, "py": 947.4}, {"loc_id": 2249, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 1005.7, "z": 5507.8, "px": 2219.6, "py": 2988.0}, {"loc_id": 2250, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 1014.5, "z": 5419.1, "px": 2221.1, "py": 2972.9}, {"loc_id": 2251, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 8305.9, "z": -3627.3, "px": 3465.5, "py": 1428.9}, {"loc_id": 2252, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 6005.8, "z": -145.0, "px": 3073.0, "py": 2023.3}, {"loc_id": 2253, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -236.7, "z": 517.1, "px": 2007.6, "py": 2136.3}, {"loc_id": 2254, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 4914.8, "z": -2181.5, "px": 2886.8, "py": 1675.7}, {"loc_id": 2255, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 7865.4, "z": -2573.3, "px": 3390.4, "py": 1608.8}, {"loc_id": 2256, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2365.5, "z": -47.5, "px": 2451.7, "py": 2039.9}, {"loc_id": 2257, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -5702.2, "z": -5075.8, "px": 1074.8, "py": 1181.7}, {"loc_id": 2258, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 946.8, "z": 319.0, "px": 2209.6, "py": 2102.4}, {"loc_id": 2259, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -2479.9, "z": -6210.9, "px": 1624.8, "py": 988.0}, {"loc_id": 2260, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 7535.1, "z": -4302.2, "px": 3334.0, "py": 1313.8}, {"loc_id": 2261, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 1606.3, "z": -6412.7, "px": 2322.1, "py": 953.6}, {"loc_id": 2262, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -5895.5, "z": 1665.2, "px": 1041.8, "py": 2332.2}, {"loc_id": 2263, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -4911.2, "z": -3087.6, "px": 1209.8, "py": 1521.0}, {"loc_id": 2264, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 7864.0, "z": -2439.0, "px": 3390.1, "py": 1631.7}, {"loc_id": 2265, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -405.0, "z": 506.1, "px": 1978.9, "py": 2134.4}, {"loc_id": 2266, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -4600.1, "z": 5521.9, "px": 1262.9, "py": 2990.4}, {"loc_id": 2267, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 7235.9, "z": -4627.9, "px": 3282.9, "py": 1258.2}, {"loc_id": 2268, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -3206.9, "z": -2056.3, "px": 1500.7, "py": 1697.1}, {"loc_id": 2269, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2257.6, "z": 3830.7, "px": 2433.3, "py": 2701.8}, {"loc_id": 2270, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 1647.1, "z": -6156.8, "px": 2329.1, "py": 997.2}, {"loc_id": 2271, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -817.4, "z": -6507.6, "px": 1908.5, "py": 937.4}, {"loc_id": 2272, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 5629.9, "z": -943.4, "px": 3008.8, "py": 1887.0}, {"loc_id": 2273, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -7636.7, "z": -4801.8, "px": 744.7, "py": 1228.5}, {"loc_id": 2274, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 3794.7, "z": 1134.5, "px": 2695.6, "py": 2241.6}, {"loc_id": 2275, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 3604.0, "z": 132.5, "px": 2663.1, "py": 2070.6}, {"loc_id": 2276, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 5251.6, "z": -652.5, "px": 2944.3, "py": 1936.6}, {"loc_id": 2277, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 8577.7, "z": -2039.4, "px": 3511.9, "py": 1699.9}, {"loc_id": 2278, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -4660.8, "z": 5717.1, "px": 1252.6, "py": 3023.7}, {"loc_id": 2279, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 8174.4, "z": 321.6, "px": 3443.1, "py": 2102.9}, {"loc_id": 2280, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -6771.6, "z": 567.7, "px": 892.3, "py": 2144.9}, {"loc_id": 2281, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 8690.5, "z": 121.4, "px": 3531.2, "py": 2068.7}, {"loc_id": 2282, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 3640.5, "z": 5323.0, "px": 2669.3, "py": 2956.5}, {"loc_id": 2283, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 4410.0, "z": -722.7, "px": 2800.6, "py": 1924.7}, {"loc_id": 2284, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 4404.3, "z": -5105.3, "px": 2799.7, "py": 1176.7}, {"loc_id": 2285, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 3576.6, "z": 3908.7, "px": 2658.4, "py": 2715.1}, {"loc_id": 2286, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -8272.5, "z": 592.0, "px": 636.2, "py": 2149.0}, {"loc_id": 2287, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 3779.3, "z": 1212.6, "px": 2693.0, "py": 2255.0}, {"loc_id": 2288, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -9514.9, "z": -389.3, "px": 424.1, "py": 1981.6}, {"loc_id": 2289, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -4146.0, "z": -2363.0, "px": 1340.4, "py": 1644.7}, {"loc_id": 2290, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -3642.2, "z": 6795.4, "px": 1426.4, "py": 3207.7}, {"loc_id": 2291, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 1467.7, "z": -5101.5, "px": 2298.5, "py": 1177.3}, {"loc_id": 2292, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -3860.6, "z": -529.7, "px": 1389.1, "py": 1957.6}, {"loc_id": 2293, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2039.8, "z": -1263.5, "px": 2396.1, "py": 1832.4}, {"loc_id": 2294, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 9614.6, "z": 1354.7, "px": 3688.9, "py": 2279.2}, {"loc_id": 2295, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -7308.2, "z": -4795.5, "px": 800.7, "py": 1229.6}, {"loc_id": 2296, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 1616.1, "z": -6449.4, "px": 2323.8, "py": 947.3}, {"loc_id": 2297, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 8069.6, "z": -2688.5, "px": 3425.2, "py": 1589.2}, {"loc_id": 2298, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 4031.6, "z": 6917.5, "px": 2736.1, "py": 3228.6}, {"loc_id": 2299, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -4044.5, "z": -258.9, "px": 1357.7, "py": 2003.8}, {"loc_id": 2300, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 3663.3, "z": 3719.0, "px": 2673.2, "py": 2682.7}, {"loc_id": 2301, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 657.3, "z": 246.9, "px": 2160.2, "py": 2090.1}, {"loc_id": 2302, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -9165.1, "z": 2949.2, "px": 483.8, "py": 2551.3}, {"loc_id": 2303, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 7595.4, "z": -2813.8, "px": 3344.3, "py": 1567.8}, {"loc_id": 2304, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 3792.6, "z": 3661.9, "px": 2695.3, "py": 2673.0}, {"loc_id": 2305, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -702.9, "z": 13.6, "px": 1928.0, "py": 2050.3}, {"loc_id": 2306, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 5589.2, "z": -832.7, "px": 3001.9, "py": 1905.9}, {"loc_id": 2307, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 5135.7, "z": 3194.2, "px": 2924.5, "py": 2593.1}, {"loc_id": 2308, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 5069.7, "z": 3217.8, "px": 2913.2, "py": 2597.2}, {"loc_id": 2309, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 768.4, "z": 3470.0, "px": 2179.1, "py": 2640.2}, {"loc_id": 2310, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2759.7, "z": -3321.4, "px": 2519.0, "py": 1481.1}, {"loc_id": 2311, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 1079.5, "z": 3214.4, "px": 2232.2, "py": 2596.6}, {"loc_id": 2312, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -5703.0, "z": 1040.9, "px": 1074.7, "py": 2225.6}, {"loc_id": 2313, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 845.0, "z": -80.9, "px": 2192.2, "py": 2034.2}, {"loc_id": 2314, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 584.6, "z": 5181.6, "px": 2147.8, "py": 2932.3}, {"loc_id": 2315, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -2066.4, "z": -4359.9, "px": 1695.3, "py": 1303.9}, {"loc_id": 2316, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -6639.6, "z": 556.0, "px": 914.8, "py": 2142.9}, {"loc_id": 2317, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 5315.6, "z": 6336.1, "px": 2955.2, "py": 3129.4}, {"loc_id": 2318, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -1223.4, "z": -1556.4, "px": 1839.2, "py": 1782.4}, {"loc_id": 2319, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 8637.6, "z": -3728.7, "px": 3522.2, "py": 1411.6}, {"loc_id": 2320, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 1539.4, "z": -6258.1, "px": 2310.7, "py": 980.0}, {"loc_id": 2321, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 1855.7, "z": -4364.3, "px": 2364.7, "py": 1303.2}, {"loc_id": 2322, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 700.7, "z": 4590.5, "px": 2167.6, "py": 2831.4}, {"loc_id": 2323, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 911.2, "z": -2235.9, "px": 2203.5, "py": 1666.4}, {"loc_id": 2324, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2745.3, "z": -4847.1, "px": 2516.5, "py": 1220.8}, {"loc_id": 2325, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 3315.9, "z": -2644.4, "px": 2613.9, "py": 1596.7}, {"loc_id": 2326, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 3795.7, "z": 3987.7, "px": 2695.8, "py": 2728.6}, {"loc_id": 2327, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 7993.5, "z": -2563.8, "px": 3412.2, "py": 1610.4}, {"loc_id": 2328, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -3153.0, "z": 4214.4, "px": 1509.9, "py": 2767.3}, {"loc_id": 2329, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -6792.2, "z": 5560.4, "px": 888.8, "py": 2997.0}, {"loc_id": 2330, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -2219.9, "z": -1089.9, "px": 1669.1, "py": 1862.0}, {"loc_id": 2331, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 1989.7, "z": -760.0, "px": 2387.6, "py": 1918.3}, {"loc_id": 2332, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 400.0, "z": 379.4, "px": 2116.3, "py": 2112.8}, {"loc_id": 2333, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -3897.6, "z": -323.7, "px": 1382.8, "py": 1992.8}, {"loc_id": 2334, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 1106.9, "z": -5299.6, "px": 2236.9, "py": 1143.5}, {"loc_id": 2335, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2830.0, "z": -4685.6, "px": 2531.0, "py": 1248.3}, {"loc_id": 2336, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -2503.1, "z": 4418.3, "px": 1620.8, "py": 2802.1}, {"loc_id": 2337, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -3434.8, "z": 4779.7, "px": 1461.8, "py": 2863.7}, {"loc_id": 2338, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -4853.7, "z": 5389.5, "px": 1219.6, "py": 2967.8}, {"loc_id": 2339, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 518.2, "z": 5122.6, "px": 2136.4, "py": 2922.3}, {"loc_id": 2340, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 966.8, "z": 3458.3, "px": 2213.0, "py": 2638.2}, {"loc_id": 2341, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -1779.9, "z": -5677.3, "px": 1744.2, "py": 1079.1}, {"loc_id": 2342, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -9263.2, "z": -2679.8, "px": 467.1, "py": 1590.6}, {"loc_id": 2343, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 3521.4, "z": 3385.7, "px": 2649.0, "py": 2625.8}, {"loc_id": 2344, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 3955.6, "z": 1078.7, "px": 2723.1, "py": 2232.1}, {"loc_id": 2345, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -6863.2, "z": 2092.3, "px": 876.7, "py": 2405.1}, {"loc_id": 2346, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 186.9, "z": -4289.3, "px": 2079.9, "py": 1316.0}, {"loc_id": 2347, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2250.9, "z": 47.1, "px": 2432.2, "py": 2056.0}, {"loc_id": 2348, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 1866.9, "z": -4473.6, "px": 2366.6, "py": 1284.5}, {"loc_id": 2349, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -5689.9, "z": 4875.7, "px": 1076.9, "py": 2880.1}, {"loc_id": 2350, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2866.1, "z": -125.1, "px": 2537.1, "py": 2026.6}, {"loc_id": 2351, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2052.2, "z": 1470.1, "px": 2398.2, "py": 2298.9}, {"loc_id": 2352, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 7164.5, "z": 1223.8, "px": 3270.7, "py": 2256.9}, {"loc_id": 2353, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -2095.5, "z": 516.3, "px": 1690.4, "py": 2136.1}, {"loc_id": 2354, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 1939.3, "z": -957.7, "px": 2379.0, "py": 1884.6}, {"loc_id": 2355, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 5038.4, "z": -2100.7, "px": 2907.9, "py": 1689.5}, {"loc_id": 2356, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 5100.0, "z": 5298.9, "px": 2918.4, "py": 2952.3}, {"loc_id": 2357, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -5770.2, "z": 4546.8, "px": 1063.2, "py": 2824.0}, {"loc_id": 2358, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -6068.5, "z": 2229.5, "px": 1012.3, "py": 2428.5}, {"loc_id": 2359, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 891.4, "z": 491.5, "px": 2200.1, "py": 2131.9}, {"loc_id": 2360, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -9357.7, "z": -2795.6, "px": 451.0, "py": 1570.9}, {"loc_id": 2361, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2706.4, "z": -4626.8, "px": 2509.9, "py": 1258.4}, {"loc_id": 2362, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 5063.1, "z": 5318.6, "px": 2912.1, "py": 2955.7}, {"loc_id": 2363, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -6765.5, "z": 3893.8, "px": 893.4, "py": 2712.5}, {"loc_id": 2364, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -7492.9, "z": -2002.6, "px": 769.2, "py": 1706.2}, {"loc_id": 2365, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 8375.5, "z": 392.4, "px": 3477.4, "py": 2115.0}, {"loc_id": 2366, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2248.5, "z": 3970.2, "px": 2431.7, "py": 2725.6}, {"loc_id": 2367, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -2116.8, "z": -4038.2, "px": 1686.7, "py": 1358.8}, {"loc_id": 2368, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 7112.0, "z": 2155.8, "px": 3261.8, "py": 2415.9}, {"loc_id": 2369, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 5566.8, "z": 1579.6, "px": 2998.1, "py": 2317.6}, {"loc_id": 2370, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -6895.0, "z": 2246.8, "px": 871.3, "py": 2431.5}, {"loc_id": 2371, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -639.0, "z": 516.5, "px": 1938.9, "py": 2136.1}, {"loc_id": 2372, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -9397.3, "z": -2687.9, "px": 444.2, "py": 1589.3}, {"loc_id": 2373, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 8015.7, "z": 364.4, "px": 3416.0, "py": 2110.2}, {"loc_id": 2374, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -8436.5, "z": -757.2, "px": 608.2, "py": 1918.8}, {"loc_id": 2375, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2674.5, "z": -3828.9, "px": 2504.4, "py": 1394.5}, {"loc_id": 2376, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 979.7, "z": -5234.6, "px": 2215.2, "py": 1154.6}, {"loc_id": 2377, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 7544.5, "z": 2692.6, "px": 3335.6, "py": 2507.5}, {"loc_id": 2378, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 7118.0, "z": -4108.0, "px": 3262.8, "py": 1346.9}, {"loc_id": 2379, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2184.5, "z": -1747.0, "px": 2420.8, "py": 1749.8}, {"loc_id": 2380, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -4108.6, "z": -198.4, "px": 1346.8, "py": 2014.1}, {"loc_id": 2381, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -4496.9, "z": 1679.0, "px": 1280.5, "py": 2334.5}, {"loc_id": 2382, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": 2896.0, "z": 7314.1, "px": 2542.3, "py": 3296.3}, {"loc_id": 2383, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -5960.8, "z": -620.9, "px": 1030.7, "py": 1942.0}, {"loc_id": 2384, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf", "count": 5, "x": -3412.9, "z": 4235.5, "px": 1465.5, "py": 2770.9}, {"loc_id": 3035, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 5, "x": 2302.1, "z": 5886.9, "px": 2440.9, "py": 3052.7}, {"loc_id": 3036, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": 3969.5, "z": -1152.7, "px": 2725.5, "py": 1851.3}, {"loc_id": 3039, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": 4095.8, "z": -897.4, "px": 2747.0, "py": 1894.8}, {"loc_id": 3040, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 5, "x": -5758.6, "z": 1729.8, "px": 1065.2, "py": 2343.2}, {"loc_id": 3042, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 5, "x": 5184.1, "z": -2368.4, "px": 2932.8, "py": 1643.8}, {"loc_id": 3043, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 5, "x": -4863.5, "z": 3966.2, "px": 1218.0, "py": 2724.9}, {"loc_id": 3051, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 5, "x": 3073.0, "z": 3198.7, "px": 2572.5, "py": 2593.9}, {"loc_id": 3056, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 5, "x": -4993.1, "z": 3711.1, "px": 1195.8, "py": 2681.4}, {"loc_id": 3057, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 5, "x": -1534.8, "z": -6655.5, "px": 1786.1, "py": 912.1}, {"loc_id": 3072, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 5, "x": -4353.3, "z": -2241.8, "px": 1305.0, "py": 1665.4}, {"loc_id": 3072, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 5, "x": -4353.3, "z": -2241.8, "px": 1305.0, "py": 1665.4}, {"loc_id": 3074, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 5, "x": 6720.6, "z": 2302.1, "px": 3195.0, "py": 2440.9}, {"loc_id": 3079, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": 4415.1, "z": -1345.8, "px": 2801.5, "py": 1818.3}, {"loc_id": 3084, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 5, "x": -3071.2, "z": 1215.7, "px": 1523.8, "py": 2255.5}, {"loc_id": 3085, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": -4543.6, "z": -6143.1, "px": 1272.6, "py": 999.6}, {"loc_id": 3086, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 5, "x": 4032.1, "z": -4990.2, "px": 2736.1, "py": 1196.3}, {"loc_id": 3090, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 5, "x": 1022.6, "z": 5824.3, "px": 2222.5, "py": 3042.0}, {"loc_id": 3091, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 5, "x": -7103.0, "z": -1.0, "px": 835.8, "py": 2047.8}, {"loc_id": 3097, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 5, "x": -7486.5, "z": 2241.7, "px": 770.3, "py": 2430.6}, {"loc_id": 3100, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 5, "x": -704.8, "z": -6207.4, "px": 1927.7, "py": 988.6}, {"loc_id": 3100, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 5, "x": -704.8, "z": -6207.4, "px": 1927.7, "py": 988.6}, {"loc_id": 3101, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 5, "x": -3647.2, "z": -1599.4, "px": 1425.5, "py": 1775.0}, {"loc_id": 3101, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": -3647.2, "z": -1599.4, "px": 1425.5, "py": 1775.0}, {"loc_id": 3103, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": 2238.9, "z": -4798.2, "px": 2430.1, "py": 1229.1}, {"loc_id": 3106, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 5, "x": 5758.1, "z": -1023.1, "px": 3030.7, "py": 1873.4}, {"loc_id": 3108, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 5, "x": -3646.9, "z": 2561.5, "px": 1425.6, "py": 2485.2}, {"loc_id": 3118, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 5, "x": 6975.6, "z": 2366.9, "px": 3238.5, "py": 2452.0}, {"loc_id": 3121, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 5, "x": -2816.6, "z": -7168.1, "px": 1567.3, "py": 824.6}, {"loc_id": 3121, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": -2816.6, "z": -7168.1, "px": 1567.3, "py": 824.6}, {"loc_id": 3124, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 5, "x": -3134.6, "z": -2367.8, "px": 1513.0, "py": 1643.9}, {"loc_id": 3125, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 5, "x": -1470.8, "z": -4353.3, "px": 1797.0, "py": 1305.0}, {"loc_id": 3126, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 5, "x": 7294.1, "z": 1022.7, "px": 3292.9, "py": 2222.5}, {"loc_id": 3130, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 5, "x": 7166.7, "z": 1791.3, "px": 3271.1, "py": 2353.7}, {"loc_id": 3135, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 5, "x": 5634.0, "z": -2047.5, "px": 3009.5, "py": 1698.6}, {"loc_id": 3136, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": -1728.2, "z": -4735.4, "px": 1753.1, "py": 1239.8}, {"loc_id": 3138, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": 1151.3, "z": 3776.1, "px": 2244.5, "py": 2692.5}, {"loc_id": 3140, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": -2879.7, "z": 831.4, "px": 1556.5, "py": 2189.9}, {"loc_id": 3142, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 5, "x": 3071.4, "z": 191.8, "px": 2572.2, "py": 2080.7}, {"loc_id": 3142, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 5, "x": 3071.4, "z": 191.8, "px": 2572.2, "py": 2080.7}, {"loc_id": 3143, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 5, "x": 3969.5, "z": -639.1, "px": 2725.5, "py": 1938.9}, {"loc_id": 3148, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": 7166.5, "z": -958.4, "px": 3271.1, "py": 1884.4}, {"loc_id": 3151, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": 4926.9, "z": -1279.3, "px": 2888.9, "py": 1829.7}, {"loc_id": 3153, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 5, "x": -4353.2, "z": 1984.7, "px": 1305.1, "py": 2386.7}, {"loc_id": 3158, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": 3327.5, "z": -1665.3, "px": 2615.9, "py": 1763.8}, {"loc_id": 3163, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 5, "x": 4927.2, "z": 3326.8, "px": 2888.9, "py": 2615.8}, {"loc_id": 3163, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": 4927.2, "z": 3326.8, "px": 2888.9, "py": 2615.8}, {"loc_id": 3169, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 5, "x": 4735.7, "z": 3071.3, "px": 2856.2, "py": 2572.2}, {"loc_id": 3170, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": 4735.2, "z": -2366.2, "px": 2856.1, "py": 1644.2}, {"loc_id": 3173, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 5, "x": 4096.5, "z": 4351.2, "px": 2747.1, "py": 2790.6}, {"loc_id": 3174, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 5, "x": -1601.6, "z": -3134.8, "px": 1774.7, "py": 1513.0}, {"loc_id": 3176, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": 318.1, "z": 5502.9, "px": 2102.3, "py": 2987.2}, {"loc_id": 3177, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": 6784.1, "z": 2881.4, "px": 3205.8, "py": 2539.8}, {"loc_id": 3178, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 5, "x": 4673.3, "z": 2751.8, "px": 2845.6, "py": 2517.6}, {"loc_id": 3179, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 5, "x": -385.1, "z": -3713.6, "px": 1982.3, "py": 1414.2}, {"loc_id": 3180, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 5, "x": 2113.9, "z": -2497.2, "px": 2408.8, "py": 1621.8}, {"loc_id": 3182, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": 5184.7, "z": 4800.3, "px": 2932.9, "py": 2867.3}, {"loc_id": 3185, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": 3839.5, "z": 4673.0, "px": 2703.3, "py": 2845.5}, {"loc_id": 3193, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 5, "x": 1982.3, "z": -3329.8, "px": 2386.3, "py": 1479.7}, {"loc_id": 3195, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 5, "x": -4928.4, "z": -1985.0, "px": 1206.9, "py": 1709.2}, {"loc_id": 3200, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": 513.9, "z": -7296.5, "px": 2135.7, "py": 802.7}, {"loc_id": 3205, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 5, "x": -2495.7, "z": -3007.5, "px": 1622.1, "py": 1534.7}, {"loc_id": 3206, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 5, "x": -3649.1, "z": -1920.6, "px": 1425.2, "py": 1720.2}, {"loc_id": 3207, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 5, "x": -4928.9, "z": -2688.9, "px": 1206.8, "py": 1589.1}, {"loc_id": 3208, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 5, "x": 1983.3, "z": 4098.0, "px": 2386.5, "py": 2747.4}, {"loc_id": 3213, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": -6656.3, "z": -3646.2, "px": 912.0, "py": 1425.7}, {"loc_id": 3216, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 5, "x": 3072.9, "z": -63.5, "px": 2572.4, "py": 2037.2}, {"loc_id": 3221, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": 7105.1, "z": 2113.2, "px": 3260.6, "py": 2408.7}, {"loc_id": 3225, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 5, "x": 2945.0, "z": -5056.6, "px": 2550.6, "py": 1185.0}, {"loc_id": 3226, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 5, "x": 1342.7, "z": 5057.3, "px": 2277.2, "py": 2911.1}, {"loc_id": 3229, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 5, "x": -5441.0, "z": 383.3, "px": 1119.4, "py": 2113.4}, {"loc_id": 3232, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 5, "x": -4610.0, "z": -575.2, "px": 1261.2, "py": 1949.8}, {"loc_id": 3235, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 5, "x": 3006.8, "z": -3463.3, "px": 2561.2, "py": 1456.9}, {"loc_id": 3242, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 5, "x": 3888.2, "z": -5168.2, "px": 2711.6, "py": 1166.0}, {"loc_id": 3243, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 5, "x": -14.8, "z": -4868.4, "px": 2045.5, "py": 1217.1}, {"loc_id": 3247, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 5, "x": -5118.4, "z": 2937.6, "px": 1174.5, "py": 2549.4}, {"loc_id": 3251, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 5, "x": -5004.6, "z": 3952.7, "px": 1193.9, "py": 2722.6}, {"loc_id": 3256, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 5, "x": -2612.1, "z": 6065.8, "px": 1602.2, "py": 3083.2}, {"loc_id": 3258, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 5, "x": 3894.5, "z": -1284.0, "px": 2712.7, "py": 1828.9}, {"loc_id": 3260, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 5, "x": 3018.7, "z": -1606.4, "px": 2563.2, "py": 1773.8}, {"loc_id": 3262, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 5, "x": -2513.3, "z": 3978.5, "px": 1619.1, "py": 2727.0}, {"loc_id": 3265, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 5, "x": -1846.3, "z": -3970.1, "px": 1732.9, "py": 1370.4}, {"loc_id": 3266, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 5, "x": 3956.6, "z": 4799.5, "px": 2723.3, "py": 2867.1}, {"loc_id": 3268, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 5, "x": -1011.0, "z": -6214.7, "px": 1875.5, "py": 987.4}, {"loc_id": 3277, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 5, "x": -5881.5, "z": -4804.9, "px": 1044.2, "py": 1228.0}, {"loc_id": 3281, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 5, "x": 3125.2, "z": 3145.9, "px": 2581.4, "py": 2584.9}, {"loc_id": 3285, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 5, "x": 302.4, "z": 4176.3, "px": 2099.6, "py": 2760.8}, {"loc_id": 3286, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 5, "x": -3089.0, "z": -2237.1, "px": 1520.8, "py": 1666.2}, {"loc_id": 3293, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 5, "x": 3905.7, "z": 5312.0, "px": 2714.6, "py": 2954.6}, {"loc_id": 3295, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 5, "x": 643.3, "z": -7424.7, "px": 2157.8, "py": 780.9}, {"loc_id": 3300, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 5, "x": -2193.9, "z": -1936.5, "px": 1673.6, "py": 1717.5}, {"loc_id": 3313, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 5, "x": -5746.5, "z": 4412.1, "px": 1067.3, "py": 2801.0}, {"loc_id": 3314, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 5, "x": 5383.8, "z": -373.1, "px": 2966.8, "py": 1984.3}, {"loc_id": 3323, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 5, "x": 960.1, "z": -4977.6, "px": 2211.9, "py": 1198.5}, {"loc_id": 3331, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 5, "x": 5433.8, "z": 3600.3, "px": 2975.4, "py": 2662.5}, {"loc_id": 3333, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 5, "x": -3782.1, "z": -5245.0, "px": 1402.5, "py": 1152.9}, {"loc_id": 3437, "loc_name": "WoodHouse3", "item": "Pickable: Stone", "count": 5, "x": -266.4, "z": -272.9, "px": 2002.5, "py": 2001.4}, {"loc_id": 3438, "loc_name": "WoodHouse3", "item": "Pickable: Stone", "count": 5, "x": 1485.7, "z": -238.5, "px": 2301.6, "py": 2007.3}, {"loc_id": 3439, "loc_name": "WoodHouse3", "item": "Pickable: Stone", "count": 5, "x": -2032.8, "z": -4557.7, "px": 1701.1, "py": 1270.2}, {"loc_id": 3441, "loc_name": "WoodHouse3", "item": "Pickable: Stone", "count": 5, "x": -3246.5, "z": 3275.2, "px": 1493.9, "py": 2607.0}, {"loc_id": 3445, "loc_name": "WoodHouse3", "item": "Pickable: Stone", "count": 5, "x": -3468.2, "z": 2704.5, "px": 1456.1, "py": 2509.6}, {"loc_id": 3447, "loc_name": "WoodHouse3", "item": "Pickable: Stone", "count": 5, "x": -2.5, "z": -1802.1, "px": 2047.6, "py": 1740.4}, {"loc_id": 3452, "loc_name": "WoodHouse3", "item": "Pickable: Stone", "count": 5, "x": 2360.0, "z": -777.5, "px": 2450.8, "py": 1915.3}, {"loc_id": 3661, "loc_name": "WoodFarm1", "item": "Pickable: Raspberry", "count": 5, "x": 1792.0, "z": -128.0, "px": 2353.8, "py": 2026.2}, {"loc_id": 3667, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Ranged", "count": 5, "x": -2176.0, "z": -1792.0, "px": 1676.6, "py": 1742.2}, {"loc_id": 3669, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows", "count": 5, "x": -4800.0, "z": 640.0, "px": 1228.8, "py": 2157.2}, {"loc_id": 3671, "loc_name": "WoodVillage1", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 5, "x": 2560.0, "z": -3200.0, "px": 2484.9, "py": 1501.9}, {"loc_id": 3677, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Ranged", "count": 5, "x": -3712.0, "z": -2048.0, "px": 1414.5, "py": 1698.5}, {"loc_id": 3682, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 8764.5, "z": -3834.4, "px": 3543.8, "py": 1393.6}, {"loc_id": 3683, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": -1272.0, "z": -1862.3, "px": 1830.9, "py": 1730.2}, {"loc_id": 3684, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": 4994.6, "z": -2173.4, "px": 2900.4, "py": 1677.1}, {"loc_id": 3686, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -8383.0, "z": -828.8, "px": 617.3, "py": 1906.6}, {"loc_id": 3687, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 60.5, "z": -1029.2, "px": 2058.3, "py": 1872.3}, {"loc_id": 3688, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": -312.7, "z": -4487.1, "px": 1994.6, "py": 1282.2}, {"loc_id": 3691, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -3460.7, "z": 6716.9, "px": 1457.4, "py": 3194.4}, {"loc_id": 3695, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -4799.0, "z": 5433.5, "px": 1229.0, "py": 2975.3}, {"loc_id": 3697, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 6713.5, "z": 4869.0, "px": 3193.8, "py": 2879.0}, {"loc_id": 3698, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": 1211.3, "z": -5761.3, "px": 2254.7, "py": 1064.7}, {"loc_id": 3707, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": 3845.3, "z": 3655.8, "px": 2704.3, "py": 2671.9}, {"loc_id": 3707, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 3845.3, "z": 3655.8, "px": 2704.3, "py": 2671.9}, {"loc_id": 3708, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 5945.5, "z": -572.3, "px": 3062.7, "py": 1950.3}, {"loc_id": 3715, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 5818.9, "z": 191.6, "px": 3041.1, "py": 2080.7}, {"loc_id": 3719, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": 2298.1, "z": 1216.5, "px": 2440.2, "py": 2255.6}, {"loc_id": 3722, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": -2947.2, "z": 4290.9, "px": 1545.0, "py": 2780.3}, {"loc_id": 3722, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -2947.2, "z": 4290.9, "px": 1545.0, "py": 2780.3}, {"loc_id": 3723, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": 1219.3, "z": -5368.6, "px": 2256.1, "py": 1131.8}, {"loc_id": 3724, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": 8580.7, "z": -2168.7, "px": 3512.4, "py": 1677.9}, {"loc_id": 3727, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": 2051.3, "z": 3580.5, "px": 2398.1, "py": 2659.1}, {"loc_id": 3730, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": -7354.9, "z": -4678.6, "px": 792.8, "py": 1249.5}, {"loc_id": 3733, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 3451.4, "z": 3584.6, "px": 2637.0, "py": 2659.8}, {"loc_id": 3734, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": -3832.3, "z": -313.4, "px": 1394.0, "py": 1994.5}, {"loc_id": 3739, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 7045.3, "z": -4227.9, "px": 3250.4, "py": 1326.4}, {"loc_id": 3744, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -6714.7, "z": 5381.9, "px": 902.0, "py": 2966.5}, {"loc_id": 3746, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": -4097.4, "z": -6395.4, "px": 1348.7, "py": 956.5}, {"loc_id": 3749, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": 764.3, "z": -2429.7, "px": 2178.4, "py": 1633.3}, {"loc_id": 3749, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 764.3, "z": -2429.7, "px": 2178.4, "py": 1633.3}, {"loc_id": 3750, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": 8192.4, "z": -3780.4, "px": 3446.2, "py": 1402.8}, {"loc_id": 3751, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 2496.6, "z": 4930.4, "px": 2474.1, "py": 2889.5}, {"loc_id": 3760, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -9284.3, "z": -1465.2, "px": 463.5, "py": 1797.9}, {"loc_id": 3766, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": -8762.2, "z": -769.8, "px": 552.6, "py": 1916.6}, {"loc_id": 3770, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": -1537.8, "z": -1788.4, "px": 1785.5, "py": 1742.8}, {"loc_id": 3773, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -5755.6, "z": 4868.9, "px": 1065.7, "py": 2879.0}, {"loc_id": 3774, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": 2496.5, "z": 5191.5, "px": 2474.1, "py": 2934.0}, {"loc_id": 3776, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 1080.6, "z": 5436.8, "px": 2232.4, "py": 2975.9}, {"loc_id": 3778, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 2238.2, "z": 5052.9, "px": 2430.0, "py": 2910.4}, {"loc_id": 3779, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": -7864.9, "z": -2428.8, "px": 705.7, "py": 1633.5}, {"loc_id": 3779, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -7864.9, "z": -2428.8, "px": 705.7, "py": 1633.5}, {"loc_id": 3781, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": 2876.8, "z": -5.6, "px": 2539.0, "py": 2047.0}, {"loc_id": 3781, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 2876.8, "z": -5.6, "px": 2539.0, "py": 2047.0}, {"loc_id": 3782, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 895.5, "z": -5562.6, "px": 2200.8, "py": 1098.6}, {"loc_id": 3785, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": 6073.2, "z": -5959.7, "px": 3084.5, "py": 1030.9}, {"loc_id": 3785, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 6073.2, "z": -5959.7, "px": 3084.5, "py": 1030.9}, {"loc_id": 3788, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -7622.4, "z": -4869.7, "px": 747.1, "py": 1216.9}, {"loc_id": 3789, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": -1147.2, "z": -1093.0, "px": 1852.2, "py": 1861.5}, {"loc_id": 3790, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": 8190.4, "z": 1.8, "px": 3445.8, "py": 2048.3}, {"loc_id": 3794, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": 2878.4, "z": -4863.1, "px": 2539.2, "py": 1218.0}, {"loc_id": 3801, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -5063.5, "z": 5691.7, "px": 1183.8, "py": 3019.4}, {"loc_id": 3802, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -2105.1, "z": 1030.1, "px": 1688.7, "py": 2223.8}, {"loc_id": 3803, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -9670.8, "z": 582.3, "px": 397.5, "py": 2147.4}, {"loc_id": 3804, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 7549.6, "z": -2883.2, "px": 3336.5, "py": 1555.9}, {"loc_id": 3807, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -1275.9, "z": -5382.8, "px": 1830.2, "py": 1129.3}, {"loc_id": 3808, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -9411.7, "z": -133.3, "px": 441.7, "py": 2025.3}, {"loc_id": 3809, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 8769.6, "z": -1413.0, "px": 3544.7, "py": 1806.8}, {"loc_id": 3813, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": -826.8, "z": 512.6, "px": 1906.9, "py": 2135.5}, {"loc_id": 3814, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": -8316.8, "z": -1210.1, "px": 628.6, "py": 1841.5}, {"loc_id": 3814, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -8316.8, "z": -1210.1, "px": 628.6, "py": 1841.5}, {"loc_id": 3815, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 4288.4, "z": -963.1, "px": 2779.9, "py": 1883.6}, {"loc_id": 3819, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 5374.1, "z": -962.4, "px": 2965.2, "py": 1883.8}, {"loc_id": 3820, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": -9158.0, "z": 3524.6, "px": 485.0, "py": 2649.5}, {"loc_id": 3820, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -9158.0, "z": 3524.6, "px": 485.0, "py": 2649.5}, {"loc_id": 3824, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -5177.3, "z": 708.7, "px": 1164.4, "py": 2169.0}, {"loc_id": 3829, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 2566.7, "z": 323.5, "px": 2486.1, "py": 2103.2}, {"loc_id": 3834, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 3704.4, "z": 3395.4, "px": 2680.2, "py": 2627.5}, {"loc_id": 3837, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": -1727.8, "z": 4999.6, "px": 1753.1, "py": 2901.3}, {"loc_id": 3838, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 4282.8, "z": 6715.4, "px": 2778.9, "py": 3194.1}, {"loc_id": 3842, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -955.8, "z": 259.9, "px": 1884.9, "py": 2092.4}, {"loc_id": 3843, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -7354.8, "z": -4988.7, "px": 792.8, "py": 1196.6}, {"loc_id": 3849, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 5, "x": 9784.1, "z": 1209.0, "px": 3717.8, "py": 2254.3}, {"loc_id": 3851, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -1339.4, "z": -1600.6, "px": 1819.4, "py": 1774.8}, {"loc_id": 3853, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 9786.0, "z": -1543.8, "px": 3718.1, "py": 1784.5}, {"loc_id": 3857, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 6782.9, "z": 4614.1, "px": 3205.6, "py": 2835.5}, {"loc_id": 4108, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 8504.1, "z": -1928.2, "px": 3499.4, "py": 1718.9}, {"loc_id": 4108, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": 8504.1, "z": -1928.2, "px": 3499.4, "py": 1718.9}, {"loc_id": 4112, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 5, "x": 513.6, "z": 5365.1, "px": 2135.7, "py": 2963.6}, {"loc_id": 4114, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": -8966.8, "z": 2952.0, "px": 517.7, "py": 2551.8}, {"loc_id": 4115, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 5, "x": -5001.8, "z": 777.7, "px": 1194.4, "py": 2180.7}, {"loc_id": 4116, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 5, "x": -1589.1, "z": -1726.7, "px": 1776.8, "py": 1753.3}, {"loc_id": 4117, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 5, "x": -4740.3, "z": 5570.9, "px": 1239.0, "py": 2998.8}, {"loc_id": 4118, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -9206.7, "z": 3189.3, "px": 476.7, "py": 2592.3}, {"loc_id": 4119, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 2236.0, "z": -1290.8, "px": 2429.6, "py": 1827.7}, {"loc_id": 4121, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 3272.7, "z": -4548.3, "px": 2606.5, "py": 1271.8}, {"loc_id": 4133, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": 2500.2, "z": 1219.2, "px": 2474.7, "py": 2256.1}, {"loc_id": 4134, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 5, "x": 3018.6, "z": -4425.6, "px": 2563.2, "py": 1292.7}, {"loc_id": 4136, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 6022.3, "z": -5886.6, "px": 3075.8, "py": 1043.4}, {"loc_id": 4136, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 5, "x": 6022.3, "z": -5886.6, "px": 3075.8, "py": 1043.4}, {"loc_id": 4139, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 5, "x": -4995.9, "z": 5704.5, "px": 1195.4, "py": 3021.6}, {"loc_id": 4142, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 5, "x": -2429.2, "z": -118.6, "px": 1633.4, "py": 2027.8}, {"loc_id": 4145, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 761.7, "z": 262.0, "px": 2178.0, "py": 2092.7}, {"loc_id": 4150, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -9221.4, "z": 2885.5, "px": 474.2, "py": 2540.5}, {"loc_id": 4152, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": 5113.9, "z": 5255.2, "px": 2920.8, "py": 2944.9}, {"loc_id": 4155, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 5321.9, "z": 4856.1, "px": 2956.3, "py": 2876.8}, {"loc_id": 4156, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 5, "x": 6653.1, "z": 4920.0, "px": 3183.5, "py": 2887.7}, {"loc_id": 4164, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -7426.8, "z": -4985.2, "px": 780.5, "py": 1197.2}, {"loc_id": 4166, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": 5699.1, "z": 1534.6, "px": 3020.6, "py": 2309.9}, {"loc_id": 4168, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 8825.5, "z": -3830.4, "px": 3554.2, "py": 1394.3}, {"loc_id": 4169, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 1218.9, "z": -2236.2, "px": 2256.0, "py": 1666.4}, {"loc_id": 4170, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 1734.2, "z": 7416.2, "px": 2344.0, "py": 3313.7}, {"loc_id": 4172, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 5, "x": -8070.8, "z": 517.7, "px": 670.6, "py": 2136.4}, {"loc_id": 4175, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -1674.2, "z": 4799.8, "px": 1762.3, "py": 2867.2}, {"loc_id": 4180, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": 1992.1, "z": -4477.5, "px": 2388.0, "py": 1283.8}, {"loc_id": 4180, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 5, "x": 1992.1, "z": -4477.5, "px": 2388.0, "py": 1283.8}, {"loc_id": 4181, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": 842.8, "z": -3.9, "px": 2191.8, "py": 2047.3}, {"loc_id": 4184, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -1341.5, "z": -1738.7, "px": 1819.1, "py": 1751.3}, {"loc_id": 4184, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 5, "x": -1341.5, "z": -1738.7, "px": 1819.1, "py": 1751.3}, {"loc_id": 4186, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 5, "x": 7875.4, "z": -2620.2, "px": 3392.1, "py": 1600.8}, {"loc_id": 4186, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": 7875.4, "z": -2620.2, "px": 3392.1, "py": 1600.8}, {"loc_id": 4187, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 5, "x": 2357.9, "z": -1343.9, "px": 2450.4, "py": 1818.6}, {"loc_id": 4188, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": 3456.5, "z": -2434.8, "px": 2637.9, "py": 1632.5}, {"loc_id": 4193, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 2503.9, "z": -4613.5, "px": 2475.3, "py": 1260.6}, {"loc_id": 4194, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": 1215.8, "z": -5496.9, "px": 2255.5, "py": 1109.9}, {"loc_id": 4197, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -8693.4, "z": -457.0, "px": 564.3, "py": 1970.0}, {"loc_id": 4197, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": -8693.4, "z": -457.0, "px": 564.3, "py": 1970.0}, {"loc_id": 4199, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 5, "x": 2884.2, "z": -2239.6, "px": 2540.2, "py": 1665.8}, {"loc_id": 4201, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": 1916.7, "z": 7036.3, "px": 2375.1, "py": 3248.9}, {"loc_id": 4202, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -8186.5, "z": 2743.4, "px": 650.8, "py": 2516.2}, {"loc_id": 4202, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": -8186.5, "z": 2743.4, "px": 650.8, "py": 2516.2}, {"loc_id": 4203, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 2238.2, "z": 1021.5, "px": 2430.0, "py": 2222.3}, {"loc_id": 4204, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 5, "x": 3832.5, "z": 3901.3, "px": 2702.1, "py": 2713.8}, {"loc_id": 4207, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 9654.2, "z": 1404.6, "px": 3695.7, "py": 2287.7}, {"loc_id": 4213, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 5, "x": -9607.3, "z": 584.3, "px": 408.4, "py": 2147.7}, {"loc_id": 4215, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -3967.1, "z": -2613.4, "px": 1370.9, "py": 1602.0}, {"loc_id": 4216, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 5, "x": 124.1, "z": -4545.7, "px": 2069.2, "py": 1272.2}, {"loc_id": 4217, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 2361.2, "z": 3838.0, "px": 2451.0, "py": 2703.0}, {"loc_id": 4217, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": 2361.2, "z": 3838.0, "px": 2451.0, "py": 2703.0}, {"loc_id": 4220, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": 8705.3, "z": -3714.4, "px": 3533.7, "py": 1414.1}, {"loc_id": 4221, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -4150.3, "z": -117.1, "px": 1339.7, "py": 2028.0}, {"loc_id": 4223, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": 1789.2, "z": 6727.5, "px": 2353.4, "py": 3196.2}, {"loc_id": 4224, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": 1013.1, "z": 5697.9, "px": 2220.9, "py": 3020.4}, {"loc_id": 4226, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 5, "x": 8135.3, "z": -2488.2, "px": 3436.4, "py": 1623.3}, {"loc_id": 4226, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 8135.3, "z": -2488.2, "px": 3436.4, "py": 1623.3}, {"loc_id": 4228, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 5, "x": 2681.5, "z": -4486.6, "px": 2505.6, "py": 1282.3}, {"loc_id": 4229, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 907.0, "z": 5564.8, "px": 2202.8, "py": 2997.7}, {"loc_id": 4230, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -7741.6, "z": 4344.6, "px": 726.8, "py": 2789.5}, {"loc_id": 4231, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 5060.5, "z": -2175.6, "px": 2911.7, "py": 1676.7}, {"loc_id": 4235, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 4286.9, "z": -838.4, "px": 2779.6, "py": 1904.9}, {"loc_id": 4236, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": -5256.6, "z": 5576.3, "px": 1150.9, "py": 2999.7}, {"loc_id": 4238, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": 9473.5, "z": 201.9, "px": 3664.8, "py": 2082.5}, {"loc_id": 4241, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 6474.4, "z": 4791.9, "px": 3153.0, "py": 2865.8}, {"loc_id": 4241, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": 6474.4, "z": 4791.9, "px": 3153.0, "py": 2865.8}, {"loc_id": 4241, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 6474.4, "z": 4791.9, "px": 3153.0, "py": 2865.8}, {"loc_id": 4242, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -2167.4, "z": 702.4, "px": 1678.1, "py": 2167.9}, {"loc_id": 4246, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -5832.1, "z": 1476.6, "px": 1052.7, "py": 2300.0}, {"loc_id": 4248, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 5, "x": -5761.9, "z": 1610.3, "px": 1064.6, "py": 2322.8}, {"loc_id": 4248, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 5, "x": -5761.9, "z": 1610.3, "px": 1064.6, "py": 2322.8}, {"loc_id": 4249, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 7430.7, "z": -3206.4, "px": 3316.2, "py": 1500.8}, {"loc_id": 4253, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -7557.9, "z": -1993.0, "px": 758.1, "py": 1707.9}, {"loc_id": 4254, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 2185.2, "z": 1205.6, "px": 2420.9, "py": 2253.8}, {"loc_id": 4255, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -7035.7, "z": 2438.1, "px": 847.2, "py": 2464.1}, {"loc_id": 4255, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -7035.7, "z": 2438.1, "px": 847.2, "py": 2464.1}, {"loc_id": 4266, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 632.8, "z": 5047.1, "px": 2156.0, "py": 2909.4}, {"loc_id": 4268, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": 3143.0, "z": -2424.5, "px": 2584.4, "py": 1634.2}, {"loc_id": 4269, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -1795.6, "z": 3065.6, "px": 1741.6, "py": 2571.2}, {"loc_id": 4270, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -3338.7, "z": -2428.5, "px": 1478.2, "py": 1633.5}, {"loc_id": 4278, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": 2569.6, "z": 4988.7, "px": 2486.5, "py": 2899.4}, {"loc_id": 4280, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": -2302.1, "z": -3017.9, "px": 1655.1, "py": 1532.9}, {"loc_id": 4280, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -2302.1, "z": -3017.9, "px": 1655.1, "py": 1532.9}, {"loc_id": 4281, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -1027.4, "z": -5060.9, "px": 1872.7, "py": 1184.3}, {"loc_id": 4285, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 5, "x": -9146.8, "z": -1529.4, "px": 486.9, "py": 1787.0}, {"loc_id": 4285, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": -9146.8, "z": -1529.4, "px": 486.9, "py": 1787.0}, {"loc_id": 4287, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": -4214.3, "z": -2304.7, "px": 1328.8, "py": 1654.7}, {"loc_id": 4288, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": 4550.6, "z": -4986.1, "px": 2824.6, "py": 1197.0}, {"loc_id": 4293, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 5, "x": 2745.6, "z": 455.2, "px": 2516.6, "py": 2125.7}, {"loc_id": 4294, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -7735.8, "z": -2246.0, "px": 727.8, "py": 1664.7}, {"loc_id": 4296, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 5, "x": -2248.7, "z": 1737.9, "px": 1664.2, "py": 2344.6}, {"loc_id": 4297, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 968.5, "z": 5317.9, "px": 2213.3, "py": 2955.6}, {"loc_id": 4297, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 5, "x": 968.5, "z": 5317.9, "px": 2213.3, "py": 2955.6}, {"loc_id": 4298, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 6791.1, "z": 4738.8, "px": 3207.0, "py": 2856.8}, {"loc_id": 4298, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 5, "x": 6791.1, "z": 4738.8, "px": 3207.0, "py": 2856.8}, {"loc_id": 4299, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": 2947.0, "z": 3833.6, "px": 2551.0, "py": 2702.3}, {"loc_id": 4302, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -3838.8, "z": -251.4, "px": 1392.8, "py": 2005.1}, {"loc_id": 4303, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 5, "x": -516.3, "z": 325.0, "px": 1959.9, "py": 2103.5}, {"loc_id": 4304, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 9.6, "z": -4220.6, "px": 2049.6, "py": 1327.7}, {"loc_id": 4305, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 5, "x": -6663.1, "z": 3777.2, "px": 910.8, "py": 2692.6}, {"loc_id": 4305, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 5, "x": -6663.1, "z": 3777.2, "px": 910.8, "py": 2692.6}, {"loc_id": 4312, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 5, "x": 2168.5, "z": -1334.2, "px": 2418.1, "py": 1820.3}, {"loc_id": 4314, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -6971.4, "z": 2491.2, "px": 858.2, "py": 2473.2}, {"loc_id": 4317, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 2230.8, "z": 1097.7, "px": 2428.7, "py": 2235.3}, {"loc_id": 4321, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 5, "x": -9207.0, "z": 3143.0, "px": 476.7, "py": 2584.4}, {"loc_id": 4329, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 7222.2, "z": -4105.2, "px": 3280.6, "py": 1347.4}, {"loc_id": 4330, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -7228.8, "z": -1924.0, "px": 814.3, "py": 1719.6}, {"loc_id": 4330, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 5, "x": -7228.8, "z": -1924.0, "px": 814.3, "py": 1719.6}, {"loc_id": 4332, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 5, "x": -9217.9, "z": -2808.8, "px": 474.8, "py": 1568.6}, {"loc_id": 4338, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -1467.5, "z": -1670.1, "px": 1797.5, "py": 1763.0}, {"loc_id": 4340, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -5185.9, "z": 330.5, "px": 1162.9, "py": 2104.4}, {"loc_id": 4341, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 3324.6, "z": -2746.9, "px": 2615.4, "py": 1579.2}, {"loc_id": 4344, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 5, "x": -9541.9, "z": -313.4, "px": 419.5, "py": 1994.5}, {"loc_id": 4345, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 2618.7, "z": -3525.7, "px": 2494.9, "py": 1446.3}, {"loc_id": 4347, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 5, "x": 2690.0, "z": -4345.6, "px": 2507.1, "py": 1306.4}, {"loc_id": 4348, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 5, "x": 7751.4, "z": -2879.9, "px": 3370.9, "py": 1556.5}, {"loc_id": 4349, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 3638.2, "z": 3256.7, "px": 2668.9, "py": 2603.8}, {"loc_id": 4350, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -5947.4, "z": 1598.8, "px": 1033.0, "py": 2320.9}, {"loc_id": 4352, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 5, "x": 2186.2, "z": 3782.1, "px": 2421.1, "py": 2693.5}, {"loc_id": 4353, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 5, "x": -3525.6, "z": 6778.0, "px": 1446.3, "py": 3204.8}, {"loc_id": 4354, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 5, "x": -253.6, "z": -4213.8, "px": 2004.7, "py": 1328.8}, {"loc_id": 4360, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -3975.9, "z": -574.4, "px": 1369.4, "py": 1950.0}, {"loc_id": 4361, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 5, "x": -6843.9, "z": 501.8, "px": 880.0, "py": 2133.6}, {"loc_id": 4362, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 3191.6, "z": -2309.6, "px": 2592.7, "py": 1653.8}, {"loc_id": 4364, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -6595.0, "z": 5437.6, "px": 922.5, "py": 2976.0}, {"loc_id": 4367, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 5, "x": -1032.8, "z": 377.8, "px": 1871.7, "py": 2112.5}, {"loc_id": 4369, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 2044.7, "z": -1077.5, "px": 2397.0, "py": 1864.1}, {"loc_id": 4370, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 5, "x": 3528.1, "z": 3652.7, "px": 2650.1, "py": 2671.4}, {"loc_id": 4372, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 5112.1, "z": 3129.1, "px": 2920.5, "py": 2582.0}, {"loc_id": 4375, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 5, "x": -8056.8, "z": 2757.5, "px": 673.0, "py": 2518.6}, {"loc_id": 4381, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 5, "x": -8694.4, "z": -828.0, "px": 564.2, "py": 1906.7}, {"loc_id": 4382, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 5, "x": -7489.9, "z": -4736.3, "px": 769.7, "py": 1239.7}, {"loc_id": 4383, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 5, "x": -1781.4, "z": -4545.8, "px": 1744.0, "py": 1272.2}, {"loc_id": 4385, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 2042.6, "z": 3914.5, "px": 2396.6, "py": 2716.1}, {"loc_id": 4390, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 2373.4, "z": 3769.6, "px": 2453.1, "py": 2691.3}, {"loc_id": 4391, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 5, "x": -6849.0, "z": 3786.3, "px": 879.1, "py": 2694.2}, {"loc_id": 4398, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 5, "x": 5256.1, "z": -2236.2, "px": 2945.0, "py": 1666.4}, {"loc_id": 4398, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 5, "x": 5256.1, "z": -2236.2, "px": 2945.0, "py": 1666.4}, {"loc_id": 4401, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 2939.6, "z": -257.2, "px": 2549.7, "py": 2004.1}, {"loc_id": 4402, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 1781.0, "z": 7356.1, "px": 2352.0, "py": 3303.4}, {"loc_id": 4403, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 5, "x": -5239.2, "z": 764.2, "px": 1153.8, "py": 2178.4}, {"loc_id": 4405, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 5, "x": -6005.8, "z": 4800.9, "px": 1023.0, "py": 2867.4}, {"loc_id": 4406, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 5, "x": -6645.1, "z": 3574.4, "px": 913.9, "py": 2658.0}, {"loc_id": 4406, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -6645.1, "z": 3574.4, "px": 913.9, "py": 2658.0}, {"loc_id": 4408, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -68.7, "z": -4600.0, "px": 2036.3, "py": 1262.9}, {"loc_id": 4409, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -4025.2, "z": -322.6, "px": 1361.0, "py": 1992.9}, {"loc_id": 4410, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 5, "x": 3274.8, "z": -4.6, "px": 2606.9, "py": 2047.2}, {"loc_id": 4412, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 5, "x": -1215.7, "z": -1221.1, "px": 1840.5, "py": 1839.6}, {"loc_id": 4413, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -1670.7, "z": -4227.6, "px": 1762.9, "py": 1326.5}, {"loc_id": 4413, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 5, "x": -1670.7, "z": -4227.6, "px": 1762.9, "py": 1326.5}, {"loc_id": 4416, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -3705.2, "z": 7113.6, "px": 1415.6, "py": 3262.1}, {"loc_id": 4418, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 5, "x": 3208.8, "z": -2630.5, "px": 2595.6, "py": 1599.1}, {"loc_id": 4423, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 5, "x": -5955.5, "z": 4667.7, "px": 1031.6, "py": 2844.6}, {"loc_id": 4425, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 5, "x": 2552.7, "z": 258.9, "px": 2483.7, "py": 2092.2}, {"loc_id": 4433, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 6602.0, "z": 4795.5, "px": 3174.7, "py": 2866.4}, {"loc_id": 4435, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 5, "x": 4406.6, "z": 6657.9, "px": 2800.1, "py": 3184.3}, {"loc_id": 4443, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 5, "x": 1025.3, "z": -5563.5, "px": 2223.0, "py": 1098.5}, {"loc_id": 4444, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -9150.6, "z": 2822.4, "px": 486.3, "py": 2529.7}, {"loc_id": 4445, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 5, "x": 1988.0, "z": 1414.1, "px": 2387.3, "py": 2289.3}, {"loc_id": 4448, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -6717.4, "z": 5561.0, "px": 901.6, "py": 2997.1}, {"loc_id": 4451, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -3511.8, "z": 4799.5, "px": 1448.7, "py": 2867.1}, {"loc_id": 4454, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 5, "x": 9791.7, "z": -1482.1, "px": 3719.1, "py": 1795.1}, {"loc_id": 4458, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 5, "x": -8120.2, "z": 2564.7, "px": 662.2, "py": 2485.7}, {"loc_id": 4464, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 3768.6, "z": -386.4, "px": 2691.2, "py": 1982.1}, {"loc_id": 4465, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 5, "x": -584.0, "z": -6463.7, "px": 1948.3, "py": 944.9}, {"loc_id": 4465, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -584.0, "z": -6463.7, "px": 1948.3, "py": 944.9}, {"loc_id": 4466, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 5, "x": 1162.4, "z": -2230.1, "px": 2246.4, "py": 1667.4}, {"loc_id": 4467, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 3511.5, "z": 3513.7, "px": 2647.3, "py": 2647.7}, {"loc_id": 4468, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 3901.0, "z": 1013.6, "px": 2713.8, "py": 2221.0}, {"loc_id": 4472, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 378.2, "z": 5310.1, "px": 2112.5, "py": 2954.3}, {"loc_id": 4473, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -1352.6, "z": -1536.9, "px": 1817.2, "py": 1785.7}, {"loc_id": 4476, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 5, "x": -3898.5, "z": -138.6, "px": 1382.7, "py": 2024.3}, {"loc_id": 4478, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 5, "x": -2374.0, "z": -6154.7, "px": 1642.8, "py": 997.6}, {"loc_id": 4486, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": 3395.3, "z": -2438.4, "px": 2627.5, "py": 1631.8}, {"loc_id": 4487, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 5, "x": 1917.8, "z": 7177.5, "px": 2375.3, "py": 3273.0}, {"loc_id": 4490, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 5, "x": -5060.1, "z": 761.5, "px": 1184.4, "py": 2178.0}, {"loc_id": 4491, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 5, "x": -2042.1, "z": 510.0, "px": 1699.5, "py": 2135.0}, {"loc_id": 4491, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": -2042.1, "z": 510.0, "px": 1699.5, "py": 2135.0}, {"loc_id": 4494, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -4989.8, "z": 5566.0, "px": 1196.4, "py": 2997.9}, {"loc_id": 4498, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 1098.3, "z": -5692.8, "px": 2235.4, "py": 1076.4}, {"loc_id": 4500, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 5, "x": -3201.7, "z": -2365.6, "px": 1501.6, "py": 1644.3}, {"loc_id": 4502, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 5, "x": 1737.4, "z": -1014.3, "px": 2344.5, "py": 1874.9}, {"loc_id": 4503, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 5, "x": 8635.6, "z": -1917.6, "px": 3521.8, "py": 1720.7}, {"loc_id": 4505, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 5, "x": -9609.6, "z": 699.3, "px": 408.0, "py": 2167.3}, {"loc_id": 5516, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 5, "x": 4486.9, "z": -5568.4, "px": 2813.8, "py": 1097.7}, {"loc_id": 5538, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 5, "x": 7164.2, "z": -456.2, "px": 3270.7, "py": 1970.1}, {"loc_id": 5539, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 5, "x": 6665.8, "z": 6588.2, "px": 3185.6, "py": 3172.4}, {"loc_id": 5643, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 5, "x": 3586.7, "z": 3541.0, "px": 2660.1, "py": 2652.3}, {"loc_id": 5644, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 5, "x": -5191.4, "z": 577.6, "px": 1162.0, "py": 2146.6}, {"loc_id": 5668, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 5, "x": -1791.4, "z": -4217.9, "px": 1742.3, "py": 1328.1}, {"loc_id": 5671, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 5, "x": -2561.3, "z": -6089.2, "px": 1610.9, "py": 1008.8}, {"loc_id": 5679, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 5, "x": -5839.7, "z": 4847.3, "px": 1051.4, "py": 2875.3}, {"loc_id": 5694, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 5, "x": 2124.0, "z": -1771.3, "px": 2410.5, "py": 1745.7}, {"loc_id": 5696, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 5, "x": -4846.5, "z": 5710.6, "px": 1220.9, "py": 3022.6}, {"loc_id": 5716, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 5, "x": -7445.5, "z": -4692.9, "px": 777.3, "py": 1247.1}, {"loc_id": 5729, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 5, "x": 6955.8, "z": -4170.2, "px": 3235.1, "py": 1336.3}, {"loc_id": 5731, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 5, "x": -58.7, "z": -4822.7, "px": 2038.0, "py": 1224.9}, {"loc_id": 5770, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 5, "x": -1867.9, "z": 7611.6, "px": 1729.2, "py": 3347.0}, {"loc_id": 5780, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 5, "x": 7408.7, "z": -2813.3, "px": 3312.4, "py": 1567.9}, {"loc_id": 5789, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 5, "x": -4941.3, "z": 5165.3, "px": 1204.7, "py": 2929.5}, {"loc_id": 5905, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 5, "x": -8341.7, "z": -1166.7, "px": 624.3, "py": 1848.9}, {"loc_id": 6861, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 5, "x": -3854.6, "z": -2105.5, "px": 1390.1, "py": 1688.7}, {"loc_id": 6865, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 5, "x": 3371.9, "z": -255.7, "px": 2623.5, "py": 2004.4}, {"loc_id": 6871, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 5, "x": -311.6, "z": 240.6, "px": 1994.8, "py": 2089.1}, {"loc_id": 6877, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 5, "x": 4232.8, "z": -1363.1, "px": 2770.4, "py": 1815.4}, {"loc_id": 6879, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 5, "x": 185.4, "z": 250.0, "px": 2079.6, "py": 2090.7}, {"loc_id": 6883, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 5, "x": -1583.1, "z": -1551.2, "px": 1777.8, "py": 1783.3}, {"loc_id": 6884, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 5, "x": 1687.9, "z": 87.1, "px": 2336.1, "py": 2062.9}, {"loc_id": 6885, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 5, "x": 3027.0, "z": 2698.0, "px": 2564.6, "py": 2508.5}, {"loc_id": 6886, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 5, "x": -2094.9, "z": 1943.5, "px": 1690.5, "py": 2379.7}, {"loc_id": 6897, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 5, "x": -3577.5, "z": -2029.3, "px": 1437.4, "py": 1701.7}, {"loc_id": 7266, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 3778.4, "z": 1473.6, "px": 2692.8, "py": 2299.5}, {"loc_id": 7278, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 4035.5, "z": -905.0, "px": 2736.7, "py": 1893.5}, {"loc_id": 7280, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": -1603.4, "z": -4802.4, "px": 1774.4, "py": 1228.4}, {"loc_id": 7282, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": -3655.8, "z": 2435.1, "px": 1424.1, "py": 2463.6}, {"loc_id": 7283, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": -3509.2, "z": 2424.1, "px": 1449.1, "py": 2461.7}, {"loc_id": 7285, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": -2494.8, "z": -2940.1, "px": 1622.2, "py": 1546.2}, {"loc_id": 7291, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 1592.8, "z": 3066.7, "px": 2319.8, "py": 2571.4}, {"loc_id": 7297, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": -500.8, "z": 5119.0, "px": 1962.5, "py": 2921.6}, {"loc_id": 7299, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 1020.5, "z": 3572.7, "px": 2222.2, "py": 2657.7}, {"loc_id": 7301, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 6143.1, "z": 1654.9, "px": 3096.4, "py": 2330.4}, {"loc_id": 7306, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 1718.3, "z": 3254.0, "px": 2341.3, "py": 2603.3}, {"loc_id": 7309, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": -5058.3, "z": -2805.8, "px": 1184.7, "py": 1569.1}, {"loc_id": 7318, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 1606.1, "z": 3337.6, "px": 2322.1, "py": 2617.6}, {"loc_id": 7326, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 5578.6, "z": -2111.9, "px": 3000.1, "py": 1687.6}, {"loc_id": 7334, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": -4298.8, "z": 4.9, "px": 1314.3, "py": 2048.8}, {"loc_id": 7340, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 5125.4, "z": -2425.7, "px": 2922.7, "py": 1634.0}, {"loc_id": 7344, "loc_name": "TarPit2", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 634.1, "z": -7233.1, "px": 2156.2, "py": 813.6}, {"loc_id": 7346, "loc_name": "TarPit2", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 1723.8, "z": 3001.8, "px": 2342.2, "py": 2560.3}, {"loc_id": 7347, "loc_name": "TarPit2", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": -4547.1, "z": -5957.5, "px": 1272.0, "py": 1031.3}, {"loc_id": 7351, "loc_name": "TarPit2", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 3321.6, "z": -1602.9, "px": 2614.9, "py": 1774.4}, {"loc_id": 7352, "loc_name": "TarPit2", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": -3205.2, "z": 1285.4, "px": 1501.0, "py": 2267.4}, {"loc_id": 7356, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 3216.0, "z": -528.9, "px": 2596.9, "py": 1957.7}, {"loc_id": 7362, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": -3518.8, "z": -1673.1, "px": 1447.5, "py": 1762.5}, {"loc_id": 7366, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 4911.8, "z": -1229.2, "px": 2886.3, "py": 1838.2}, {"loc_id": 7377, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 4611.8, "z": -1607.2, "px": 2835.1, "py": 1773.7}, {"loc_id": 7386, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 4788.2, "z": 3066.7, "px": 2865.2, "py": 2571.4}, {"loc_id": 7394, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": -2487.3, "z": 4038.1, "px": 1623.5, "py": 2737.2}, {"loc_id": 7395, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 4465.3, "z": -1402.9, "px": 2810.1, "py": 1808.6}, {"loc_id": 7406, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 1484.6, "z": -4304.3, "px": 2301.4, "py": 1313.4}, {"loc_id": 7407, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 6277.3, "z": 1598.3, "px": 3119.3, "py": 2320.8}, {"loc_id": 7410, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 4791.3, "z": -1777.8, "px": 2865.7, "py": 1744.6}, {"loc_id": 7412, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": -2512.6, "z": -3086.2, "px": 1619.2, "py": 1521.3}, {"loc_id": 7414, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 6863.2, "z": 2158.6, "px": 3219.3, "py": 2416.4}, {"loc_id": 7419, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": -3064.2, "z": 5835.4, "px": 1525.0, "py": 3043.9}, {"loc_id": 7420, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 3260.9, "z": -387.3, "px": 2604.5, "py": 1981.9}, {"loc_id": 7421, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 4527.2, "z": 1468.9, "px": 2820.6, "py": 2298.7}, {"loc_id": 7429, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": 4721.4, "z": -2095.5, "px": 2853.8, "py": 1690.4}, {"loc_id": 7443, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 5, "x": -1678.9, "z": -4917.2, "px": 1761.5, "py": 1208.8}, {"loc_id": 7444, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 5, "x": 5696.0, "z": 2112.0, "px": 3020.1, "py": 2408.4}, {"loc_id": 7444, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 5, "x": 5696.0, "z": 2112.0, "px": 3020.1, "py": 2408.4}, {"loc_id": 7450, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 5, "x": 5248.0, "z": 192.0, "px": 2943.7, "py": 2080.8}, {"loc_id": 7450, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 5, "x": 5248.0, "z": 192.0, "px": 2943.7, "py": 2080.8}, {"loc_id": 7453, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 5, "x": -3584.0, "z": 6464.0, "px": 1436.3, "py": 3151.2}, {"loc_id": 7454, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 5, "x": 1216.0, "z": 6848.0, "px": 2255.5, "py": 3216.7}, {"loc_id": 7459, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 5, "x": -6848.0, "z": -2368.0, "px": 879.3, "py": 1643.9}, {"loc_id": 7460, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 5, "x": -4480.0, "z": -1344.0, "px": 1283.4, "py": 1818.6}, {"loc_id": 7462, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 5, "x": -3904.0, "z": 4480.0, "px": 1381.7, "py": 2812.6}, {"loc_id": 7463, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 5, "x": 6400.0, "z": 6592.0, "px": 3140.3, "py": 3173.0}, {"loc_id": 7466, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 5, "x": 7296.0, "z": -384.0, "px": 3293.2, "py": 1982.5}, {"loc_id": 7466, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 5, "x": 7296.0, "z": -384.0, "px": 3293.2, "py": 1982.5}, {"loc_id": 7481, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 5, "x": -832.0, "z": 8512.0, "px": 1906.0, "py": 3500.7}, {"loc_id": 7482, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 5, "x": 4288.0, "z": -5824.0, "px": 2779.8, "py": 1054.0}, {"loc_id": 7488, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 5, "x": -7616.0, "z": -2368.0, "px": 748.2, "py": 1643.9}, {"loc_id": 7489, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 5, "x": 7040.0, "z": -512.0, "px": 3249.5, "py": 1960.6}, {"loc_id": 7494, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 5, "x": 9664.0, "z": -1216.0, "px": 3697.3, "py": 1840.5}, {"loc_id": 7496, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 5, "x": 4608.0, "z": -5824.0, "px": 2834.4, "py": 1054.0}, {"loc_id": 7496, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 5, "x": 4608.0, "z": -5824.0, "px": 2834.4, "py": 1054.0}, {"loc_id": 7497, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 5, "x": 1984.0, "z": -6784.0, "px": 2386.6, "py": 890.2}, {"loc_id": 7498, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 5, "x": -3776.0, "z": 5184.0, "px": 1403.6, "py": 2932.7}, {"loc_id": 7502, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 5, "x": 4800.0, "z": -5568.0, "px": 2867.2, "py": 1097.7}, {"loc_id": 7504, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 5, "x": 5504.0, "z": 64.0, "px": 2987.3, "py": 2058.9}, {"loc_id": 7508, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 5, "x": 3520.0, "z": 9216.0, "px": 2648.7, "py": 3620.9}, {"loc_id": 7511, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 5, "x": -6592.0, "z": -2240.0, "px": 923.0, "py": 1665.7}, {"loc_id": 7517, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 5, "x": 7488.0, "z": 3968.0, "px": 3326.0, "py": 2725.2}, {"loc_id": 7519, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 5, "x": -7040.0, "z": -2432.0, "px": 846.5, "py": 1632.9}, {"loc_id": 7519, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 5, "x": -7040.0, "z": -2432.0, "px": 846.5, "py": 1632.9}, {"loc_id": 7523, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 5, "x": 6016.0, "z": 4288.0, "px": 3074.7, "py": 2779.8}, {"loc_id": 7525, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 5, "x": -4160.0, "z": -4032.0, "px": 1338.0, "py": 1359.9}, {"loc_id": 7526, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 5, "x": 2560.0, "z": 8960.0, "px": 2484.9, "py": 3577.2}, {"loc_id": 7529, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 5, "x": 2496.0, "z": -3008.0, "px": 2474.0, "py": 1534.6}, {"loc_id": 7530, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 5, "x": 5312.0, "z": -64.0, "px": 2954.6, "py": 2037.1}, {"loc_id": 7531, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 5, "x": 6016.0, "z": 4480.0, "px": 3074.7, "py": 2812.6}, {"loc_id": 7533, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 5, "x": -8576.0, "z": -960.0, "px": 584.4, "py": 1884.2}, {"loc_id": 7535, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 5, "x": -9792.0, "z": -704.0, "px": 376.8, "py": 1927.9}, {"loc_id": 7537, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 5, "x": 6272.0, "z": 6784.0, "px": 3118.4, "py": 3205.8}, {"loc_id": 7542, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 5, "x": 1088.0, "z": 128.0, "px": 2233.7, "py": 2069.8}, {"loc_id": 7543, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 5, "x": -3904.0, "z": 1728.0, "px": 1381.7, "py": 2342.9}, {"loc_id": 7547, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 5, "x": 5760.0, "z": 4480.0, "px": 3031.0, "py": 2812.6}, {"loc_id": 7548, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 5, "x": -960.0, "z": 8704.0, "px": 1884.2, "py": 3533.5}, {"loc_id": 7552, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 5, "x": -128.0, "z": -4096.0, "px": 2026.2, "py": 1348.9}, {"loc_id": 7553, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 5, "x": -6080.0, "z": -320.0, "px": 1010.3, "py": 1993.4}, {"loc_id": 7555, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 5, "x": -6272.0, "z": -448.0, "px": 977.6, "py": 1971.5}, {"loc_id": 7560, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 5, "x": 9344.0, "z": -2240.0, "px": 3642.7, "py": 1665.7}, {"loc_id": 7561, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 5, "x": -6208.0, "z": -640.0, "px": 988.5, "py": 1938.8}, {"loc_id": 7562, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 5, "x": 5632.0, "z": 2304.0, "px": 3009.2, "py": 2441.2}, {"loc_id": 7565, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 5, "x": -256.0, "z": 9152.0, "px": 2004.3, "py": 3609.9}, {"loc_id": 7565, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 5, "x": -256.0, "z": 9152.0, "px": 2004.3, "py": 3609.9}, {"loc_id": 7569, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 5, "x": -5376.0, "z": 4992.0, "px": 1130.5, "py": 2900.0}, {"loc_id": 7570, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 5, "x": 1600.0, "z": 7040.0, "px": 2321.1, "py": 3249.5}, {"loc_id": 7681, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 5, "x": -843.7, "z": 6978.1, "px": 1904.0, "py": 3238.9}, {"loc_id": 7695, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 5, "x": -7561.3, "z": -954.5, "px": 757.5, "py": 1885.1}, {"loc_id": 7714, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 5, "x": -2498.1, "z": -5948.5, "px": 1621.7, "py": 1032.8}, {"loc_id": 8032, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 5, "x": -1275.4, "z": -6026.3, "px": 1830.3, "py": 1019.5}, {"loc_id": 8033, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 5, "x": -9086.1, "z": 951.4, "px": 497.3, "py": 2210.4}, {"loc_id": 8036, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 5, "x": -5239.5, "z": 5817.9, "px": 1153.8, "py": 3040.9}, {"loc_id": 8038, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 5, "x": 8507.2, "z": -958.8, "px": 3499.9, "py": 1884.4}, {"loc_id": 8039, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 5, "x": -2806.5, "z": -5755.0, "px": 1569.0, "py": 1065.8}, {"loc_id": 8040, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 5, "x": 5629.6, "z": 6022.5, "px": 3008.8, "py": 3075.8}, {"loc_id": 8043, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 5, "x": -6857.8, "z": -1854.1, "px": 877.6, "py": 1731.6}, {"loc_id": 8044, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 5, "x": 9528.3, "z": 1611.5, "px": 3674.2, "py": 2323.0}, {"loc_id": 8054, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 5, "x": 1344.5, "z": 7622.1, "px": 2277.5, "py": 3348.8}, {"loc_id": 8057, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 5, "x": 8314.4, "z": -3402.0, "px": 3467.0, "py": 1467.4}, {"loc_id": 8059, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 5, "x": 9732.6, "z": -838.4, "px": 3709.0, "py": 1904.9}, {"loc_id": 8060, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 5, "x": 6388.6, "z": 2954.0, "px": 3138.3, "py": 2552.1}, {"loc_id": 8071, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 5, "x": -5699.7, "z": 3578.9, "px": 1075.3, "py": 2658.8}, {"loc_id": 8073, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 5, "x": 9540.0, "z": 1789.1, "px": 3676.2, "py": 2353.3}, {"loc_id": 8077, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 5, "x": -1908.5, "z": 7235.3, "px": 1722.3, "py": 3282.8}, {"loc_id": 8079, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 5, "x": 7178.6, "z": 4486.4, "px": 3273.1, "py": 2813.7}, {"loc_id": 8080, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 5, "x": 3846.4, "z": -6984.5, "px": 2704.5, "py": 856.0}, {"loc_id": 8081, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 5, "x": 7236.1, "z": -2176.0, "px": 3283.0, "py": 1676.6}, {"loc_id": 8103, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 5, "x": -8260.5, "z": -391.8, "px": 638.2, "py": 1981.1}, {"loc_id": 8110, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 5, "x": -8500.4, "z": 115.2, "px": 597.3, "py": 2067.7}, {"loc_id": 8111, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 5, "x": -1786.1, "z": -7039.0, "px": 1743.2, "py": 846.7}, {"loc_id": 8126, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 5, "x": 314.1, "z": -7245.6, "px": 2101.6, "py": 811.4}, {"loc_id": 8127, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 5, "x": 8390.0, "z": 1079.3, "px": 3479.9, "py": 2232.2}, {"loc_id": 8132, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 5, "x": 6084.4, "z": -4553.6, "px": 3086.4, "py": 1270.9}, {"loc_id": 8134, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 5, "x": -6025.9, "z": -1024.6, "px": 1019.6, "py": 1873.1}, {"loc_id": 8135, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 5, "x": 3846.1, "z": -6028.7, "px": 2704.4, "py": 1019.1}, {"loc_id": 8141, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 5, "x": -5817.6, "z": -5432.3, "px": 1055.1, "py": 1120.9}, {"loc_id": 8144, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 5, "x": 9466.9, "z": -1662.3, "px": 3663.7, "py": 1764.3}, {"loc_id": 9945, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 5, "x": 640.0, "z": -9344.0, "px": 2157.2, "py": 453.3}, {"loc_id": 9945, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 5, "x": 640.0, "z": -9344.0, "px": 2157.2, "py": 453.3}, {"loc_id": 9945, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": 640.0, "z": -9344.0, "px": 2157.2, "py": 453.3}, {"loc_id": 9947, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": -2240.0, "z": -8896.0, "px": 1665.7, "py": 529.7}, {"loc_id": 9948, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 5, "x": -1216.0, "z": -9472.0, "px": 1840.5, "py": 431.4}, {"loc_id": 9950, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 5, "x": -320.0, "z": -9920.0, "px": 1993.4, "py": 355.0}, {"loc_id": 9952, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 5, "x": 640.0, "z": -9408.0, "px": 2157.2, "py": 442.4}, {"loc_id": 9952, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": 640.0, "z": -9408.0, "px": 2157.2, "py": 442.4}, {"loc_id": 9953, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": -768.0, "z": -8896.0, "px": 1916.9, "py": 529.7}, {"loc_id": 9953, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 5, "x": -768.0, "z": -8896.0, "px": 1916.9, "py": 529.7}, {"loc_id": 9954, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": 320.0, "z": -8896.0, "px": 2102.6, "py": 529.7}, {"loc_id": 9955, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 5, "x": -704.0, "z": -9472.0, "px": 1927.9, "py": 431.4}, {"loc_id": 9960, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 5, "x": -768.0, "z": -9408.0, "px": 1916.9, "py": 442.4}, {"loc_id": 9971, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 5, "x": 320.0, "z": -8832.0, "px": 2102.6, "py": 540.7}, {"loc_id": 9973, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 5, "x": -704.0, "z": -9344.0, "px": 1927.9, "py": 453.3}, {"loc_id": 9974, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 5, "x": 320.0, "z": -9024.0, "px": 2102.6, "py": 507.9}, {"loc_id": 9974, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 5, "x": 320.0, "z": -9024.0, "px": 2102.6, "py": 507.9}, {"loc_id": 9982, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 5, "x": -832.0, "z": -9600.0, "px": 1906.0, "py": 409.6}, {"loc_id": 9983, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 5, "x": -576.0, "z": -9280.0, "px": 1949.7, "py": 464.2}, {"loc_id": 9983, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": -576.0, "z": -9280.0, "px": 1949.7, "py": 464.2}, {"loc_id": 9984, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 5, "x": 704.0, "z": -9152.0, "px": 2168.1, "py": 486.1}, {"loc_id": 9985, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 5, "x": 256.0, "z": -8768.0, "px": 2091.7, "py": 551.6}, {"loc_id": 9986, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": -704.0, "z": -8960.0, "px": 1927.9, "py": 518.8}, {"loc_id": 9991, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": -640.0, "z": -9472.0, "px": 1938.8, "py": 431.4}, {"loc_id": 9993, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 5, "x": 1216.0, "z": -8960.0, "px": 2255.5, "py": 518.8}, {"loc_id": 9999, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 5, "x": 1536.0, "z": -9088.0, "px": 2310.1, "py": 497.0}, {"loc_id": 10000, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 5, "x": 704.0, "z": -8960.0, "px": 2168.1, "py": 518.8}, {"loc_id": 10000, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": 704.0, "z": -8960.0, "px": 2168.1, "py": 518.8}, {"loc_id": 10002, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": -512.0, "z": -9280.0, "px": 1960.6, "py": 464.2}, {"loc_id": 10002, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 5, "x": -512.0, "z": -9280.0, "px": 1960.6, "py": 464.2}, {"loc_id": 10003, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": 384.0, "z": -8768.0, "px": 2113.5, "py": 551.6}, {"loc_id": 10007, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 5, "x": 704.0, "z": -9408.0, "px": 2168.1, "py": 442.4}, {"loc_id": 10010, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 5, "x": -640.0, "z": -9728.0, "px": 1938.8, "py": 387.8}, {"loc_id": 10012, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 5, "x": 448.0, "z": -9344.0, "px": 2124.5, "py": 453.3}, {"loc_id": 10015, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": 640.0, "z": -8960.0, "px": 2157.2, "py": 518.8}, {"loc_id": 10278, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 5, "x": -3841.8, "z": -9150.1, "px": 1392.3, "py": 486.4}, {"loc_id": 10300, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 5, "x": -447.6, "z": -8703.8, "px": 1971.6, "py": 562.6}, {"loc_id": 10313, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 5, "x": 449.0, "z": -9087.3, "px": 2124.6, "py": 497.1}, {"loc_id": 10315, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 5, "x": 1344.5, "z": -9536.7, "px": 2277.5, "py": 420.4}, {"loc_id": 10316, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 5, "x": 638.9, "z": -9023.4, "px": 2157.0, "py": 508.0}, {"loc_id": 10348, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 5, "x": 320.7, "z": -9534.2, "px": 2102.7, "py": 420.8}, {"loc_id": 10350, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 5, "x": 3199.7, "z": -8512.4, "px": 2594.1, "py": 595.2}, {"loc_id": 10353, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 5, "x": 64.2, "z": -9022.9, "px": 2059.0, "py": 508.1}, {"loc_id": 10362, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 5, "x": 3522.0, "z": -8384.8, "px": 2649.1, "py": 617.0}, {"loc_id": 10369, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": -264.5, "z": -9614.6, "px": 2002.9, "py": 407.1}, {"loc_id": 10405, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": 249.8, "z": -8571.0, "px": 2090.6, "py": 585.2}, {"loc_id": 10421, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": 2039.7, "z": -9656.1, "px": 2396.1, "py": 400.0}, {"loc_id": 10442, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": 1329.5, "z": -9103.8, "px": 2274.9, "py": 494.3}, {"loc_id": 10450, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": -2251.6, "z": -8376.6, "px": 1663.7, "py": 618.4}, {"loc_id": 10455, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": 2247.5, "z": -9332.5, "px": 2431.6, "py": 455.3}, {"loc_id": 10458, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": 3982.6, "z": -8766.4, "px": 2727.7, "py": 551.9}, {"loc_id": 10479, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": -4302.5, "z": -8050.2, "px": 1313.7, "py": 674.1}, {"loc_id": 10491, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": 1869.9, "z": -9333.4, "px": 2367.1, "py": 455.1}, {"loc_id": 10522, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": -6223.4, "z": -7619.9, "px": 985.9, "py": 747.5}, {"loc_id": 10536, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": -3594.9, "z": -9074.3, "px": 1434.5, "py": 499.3}, {"loc_id": 10544, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": -5512.6, "z": -7488.9, "px": 1107.2, "py": 769.9}, {"loc_id": 10566, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": 3136.7, "z": -9143.1, "px": 2583.3, "py": 487.6}, {"loc_id": 10569, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": -4618.6, "z": -8001.5, "px": 1259.8, "py": 682.4}, {"loc_id": 10575, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": 585.9, "z": -9144.1, "px": 2148.0, "py": 487.4}, {"loc_id": 10586, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": 2182.3, "z": -9223.5, "px": 2420.4, "py": 473.9}, {"loc_id": 10588, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": 883.4, "z": -8967.0, "px": 2198.8, "py": 517.6}, {"loc_id": 10599, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": -3593.4, "z": -8335.3, "px": 1434.7, "py": 625.4}, {"loc_id": 10614, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": -4081.9, "z": -8960.4, "px": 1351.4, "py": 518.8}, {"loc_id": 10631, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": -3706.9, "z": -8398.7, "px": 1415.4, "py": 614.6}, {"loc_id": 10635, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": 755.1, "z": -9920.4, "px": 2176.9, "py": 354.9}, {"loc_id": 10638, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": -331.7, "z": -9807.9, "px": 1991.4, "py": 374.1}, {"loc_id": 10649, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": -1920.0, "z": -8695.0, "px": 1720.3, "py": 564.1}, {"loc_id": 10667, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 5, "x": -2561.6, "z": -9027.6, "px": 1610.8, "py": 507.3}, {"loc_id": 10708, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 5, "x": 194.0, "z": -8583.6, "px": 2081.1, "py": 583.1}, {"loc_id": 10710, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 5, "x": -3580.8, "z": -8449.6, "px": 1436.9, "py": 605.9}, {"loc_id": 10711, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 5, "x": 3838.3, "z": -8457.0, "px": 2703.1, "py": 604.7}, {"loc_id": 10718, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 5, "x": -1342.7, "z": -9148.4, "px": 1818.8, "py": 486.7}, {"loc_id": 10719, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 5, "x": -3585.9, "z": -9031.2, "px": 1436.0, "py": 506.7}, {"loc_id": 10723, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 5, "x": -3384.7, "z": -8955.3, "px": 1470.3, "py": 519.6}, {"loc_id": 10728, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 5, "x": 1785.2, "z": -9654.1, "px": 2352.7, "py": 400.4}, {"loc_id": 10735, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 5, "x": -3721.3, "z": -8325.0, "px": 1412.9, "py": 627.2}, {"loc_id": 10814, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 5, "x": -3648.0, "z": -8256.0, "px": 1425.4, "py": 639.0}, {"loc_id": 10818, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 5, "x": -1216.0, "z": -9728.0, "px": 1840.5, "py": 387.8}, {"loc_id": 10823, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": -5312.0, "z": -7552.0, "px": 1141.4, "py": 759.1}, {"loc_id": 10829, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": 2112.0, "z": -9664.0, "px": 2408.4, "py": 398.7}, {"loc_id": 10830, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 5, "x": -2624.0, "z": -8768.0, "px": 1600.2, "py": 551.6}, {"loc_id": 10831, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": -5248.0, "z": -8064.0, "px": 1152.3, "py": 671.7}, {"loc_id": 10832, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": 2368.0, "z": -9280.0, "px": 2452.1, "py": 464.2}, {"loc_id": 10833, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": 2240.0, "z": -9152.0, "px": 2430.3, "py": 486.1}, {"loc_id": 10838, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 5, "x": -576.0, "z": -8704.0, "px": 1949.7, "py": 562.5}, {"loc_id": 10839, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 5, "x": 2496.0, "z": -9152.0, "px": 2474.0, "py": 486.1}, {"loc_id": 10841, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 5, "x": 3456.0, "z": -8128.0, "px": 2637.8, "py": 660.8}, {"loc_id": 10851, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": -1472.0, "z": -9408.0, "px": 1796.8, "py": 442.4}, {"loc_id": 10852, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": 3136.0, "z": -8384.0, "px": 2583.2, "py": 617.1}, {"loc_id": 10853, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": -3840.0, "z": -8896.0, "px": 1392.6, "py": 529.7}, {"loc_id": 10859, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": -1152.0, "z": -9600.0, "px": 1851.4, "py": 409.6}, {"loc_id": 10862, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": -2624.0, "z": -8384.0, "px": 1600.2, "py": 617.1}, {"loc_id": 10865, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": -64.0, "z": -8896.0, "px": 2037.1, "py": 529.7}, {"loc_id": 10867, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": -1792.0, "z": -9152.0, "px": 1742.2, "py": 486.1}, {"loc_id": 10872, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 5, "x": 2240.0, "z": -9408.0, "px": 2430.3, "py": 442.4}, {"loc_id": 10876, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": -3712.0, "z": -8832.0, "px": 1414.5, "py": 540.7}, {"loc_id": 10879, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 5, "x": 3072.0, "z": -9280.0, "px": 2572.3, "py": 464.2}, {"loc_id": 10881, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": 3776.0, "z": -8256.0, "px": 2692.4, "py": 639.0}, {"loc_id": 10885, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": -128.0, "z": -8704.0, "px": 2026.2, "py": 562.5}, {"loc_id": 10886, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": -2560.0, "z": -8960.0, "px": 1611.1, "py": 518.8}, {"loc_id": 10887, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": -832.0, "z": -8768.0, "px": 1906.0, "py": 551.6}, {"loc_id": 10893, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 5, "x": 4096.0, "z": -8896.0, "px": 2747.1, "py": 529.7}, {"loc_id": 10898, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": -5504.0, "z": -7744.0, "px": 1108.7, "py": 726.4}, {"loc_id": 10905, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 5, "x": 2944.0, "z": -9344.0, "px": 2550.4, "py": 453.3}, {"loc_id": 10916, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 5, "x": 193.0, "z": -8829.0, "px": 2080.9, "py": 541.2}, {"loc_id": 10916, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 5, "x": 193.0, "z": -8829.0, "px": 2080.9, "py": 541.2}, {"loc_id": 10921, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 5, "x": 1343.9, "z": -9028.9, "px": 2277.4, "py": 507.1}, {"loc_id": 10924, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 5, "x": 2427.9, "z": -8894.9, "px": 2462.4, "py": 529.9}, {"loc_id": 10939, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 5, "x": -1671.4, "z": -9473.9, "px": 1762.7, "py": 431.1}, {"loc_id": 10940, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 5, "x": 199.0, "z": -9403.6, "px": 2082.0, "py": 443.1}, {"loc_id": 10941, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 5, "x": 2628.6, "z": -9406.3, "px": 2496.6, "py": 442.7}, {"loc_id": 10941, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 5, "x": 2628.6, "z": -9406.3, "px": 2496.6, "py": 442.7}, {"loc_id": 10945, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 5, "x": 1594.6, "z": -9732.9, "px": 2320.1, "py": 386.9}, {"loc_id": 10953, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 5, "x": -510.3, "z": -9340.6, "px": 1960.9, "py": 453.9}, {"loc_id": 10962, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 5, "x": 1854.2, "z": -8647.3, "px": 2364.5, "py": 572.2}, {"loc_id": 10962, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 5, "x": 1854.2, "z": -8647.3, "px": 2364.5, "py": 572.2}, {"loc_id": 10971, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 5, "x": -4740.1, "z": -8063.2, "px": 1239.0, "py": 671.9}, {"loc_id": 10972, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 5, "x": 2820.4, "z": -9349.6, "px": 2529.3, "py": 452.3}, {"loc_id": 10986, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 5, "x": 253.9, "z": -9596.2, "px": 2091.3, "py": 410.2}, {"loc_id": 10989, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 5, "x": -2112.8, "z": -8443.5, "px": 1687.4, "py": 607.0}, {"loc_id": 11003, "loc_name": "MorgenHole3", "item": "Pickable: MoltenCore", "count": 5, "x": -3580.8, "z": -8260.6, "px": 1436.9, "py": 638.2}, {"loc_id": 11009, "loc_name": "MorgenHole3", "item": "Pickable: MoltenCore", "count": 5, "x": 1084.2, "z": -9407.6, "px": 2233.0, "py": 442.4}, {"loc_id": 11013, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 5, "x": 3190.6, "z": -8261.6, "px": 2592.5, "py": 638.0}, {"loc_id": 11015, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 5, "x": 1869.3, "z": -9599.8, "px": 2367.0, "py": 409.6}, {"loc_id": 11029, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 5, "x": -3469.2, "z": -8692.2, "px": 1455.9, "py": 564.5}, {"loc_id": 11031, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 5, "x": -3637.0, "z": -8079.1, "px": 1427.3, "py": 669.2}, {"loc_id": 11044, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 5, "x": -5449.9, "z": -8145.0, "px": 1117.9, "py": 657.9}, {"loc_id": 11059, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 5, "x": -898.8, "z": -9400.6, "px": 1894.6, "py": 443.6}, {"loc_id": 11060, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 5, "x": 5752.4, "z": -8007.2, "px": 3029.7, "py": 681.4}, {"loc_id": 11069, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 5, "x": 383.6, "z": -8892.9, "px": 2113.5, "py": 530.3}, {"loc_id": 11083, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 5, "x": -6127.8, "z": -7559.1, "px": 1002.2, "py": 757.9}, {"loc_id": 11087, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 5, "x": -4878.3, "z": -8253.2, "px": 1215.4, "py": 639.5}, {"loc_id": 11090, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 5, "x": 5110.1, "z": -7681.1, "px": 2920.1, "py": 737.1}, {"loc_id": 11091, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 5, "x": 1610.0, "z": -9077.0, "px": 2322.8, "py": 498.9}, {"loc_id": 1, "loc_name": "StartTemple", "item": "Pickable: Wood", "count": 4, "x": 1.8, "z": 0.0, "px": 2048.3, "py": 2048.0}, {"loc_id": 23, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -590.9, "z": -3594.7, "px": 1947.2, "py": 1434.5}, {"loc_id": 26, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": -3714.0, "z": -4105.5, "px": 1414.1, "py": 1347.3}, {"loc_id": 26, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 4, "x": -3714.0, "z": -4105.5, "px": 1414.1, "py": 1347.3}, {"loc_id": 27, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -3648.3, "z": -4161.2, "px": 1425.4, "py": 1337.8}, {"loc_id": 28, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": 4720.8, "z": -717.3, "px": 2853.7, "py": 1925.6}, {"loc_id": 28, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 4, "x": 4720.8, "z": -717.3, "px": 2853.7, "py": 1925.6}, {"loc_id": 29, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 4, "x": -4342.2, "z": 1229.9, "px": 1306.9, "py": 2257.9}, {"loc_id": 29, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 4, "x": -4342.2, "z": 1229.9, "px": 1306.9, "py": 2257.9}, {"loc_id": 31, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 4, "x": 3723.6, "z": 816.0, "px": 2683.5, "py": 2187.3}, {"loc_id": 35, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -209.6, "z": 2703.7, "px": 2012.2, "py": 2509.4}, {"loc_id": 35, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 4, "x": -209.6, "z": 2703.7, "px": 2012.2, "py": 2509.4}, {"loc_id": 36, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 4, "x": -2570.0, "z": -1520.8, "px": 1609.4, "py": 1788.5}, {"loc_id": 38, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": -2445.9, "z": -4152.3, "px": 1630.6, "py": 1339.3}, {"loc_id": 39, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 4, "x": -562.3, "z": -4030.4, "px": 1952.0, "py": 1360.1}, {"loc_id": 42, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": 3699.8, "z": 4355.8, "px": 2679.4, "py": 2791.4}, {"loc_id": 49, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": -2494.1, "z": 4982.9, "px": 1622.3, "py": 2898.4}, {"loc_id": 49, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -2494.1, "z": 4982.9, "px": 1622.3, "py": 2898.4}, {"loc_id": 51, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": 4555.6, "z": -3149.3, "px": 2825.5, "py": 1510.5}, {"loc_id": 52, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": 1297.8, "z": 2051.9, "px": 2269.5, "py": 2398.2}, {"loc_id": 52, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 4, "x": 1297.8, "z": 2051.9, "px": 2269.5, "py": 2398.2}, {"loc_id": 52, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": 1297.8, "z": 2051.9, "px": 2269.5, "py": 2398.2}, {"loc_id": 53, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 4, "x": -2806.7, "z": -5166.8, "px": 1569.0, "py": 1166.2}, {"loc_id": 54, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": 133.7, "z": 2553.3, "px": 2070.8, "py": 2483.8}, {"loc_id": 56, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 4, "x": 2178.8, "z": -3206.1, "px": 2419.8, "py": 1500.8}, {"loc_id": 57, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": 3789.7, "z": 4478.3, "px": 2694.8, "py": 2812.3}, {"loc_id": 60, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": -5388.9, "z": 1521.4, "px": 1128.3, "py": 2307.7}, {"loc_id": 60, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -5388.9, "z": 1521.4, "px": 1128.3, "py": 2307.7}, {"loc_id": 61, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": -3631.6, "z": 3121.5, "px": 1428.2, "py": 2580.7}, {"loc_id": 63, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": 1654.7, "z": 4477.8, "px": 2330.4, "py": 2812.2}, {"loc_id": 65, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -4301.0, "z": 516.6, "px": 1314.0, "py": 2136.2}, {"loc_id": 66, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 4, "x": -2736.5, "z": -1736.3, "px": 1581.0, "py": 1751.7}, {"loc_id": 67, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -79.4, "z": 2703.3, "px": 2034.4, "py": 2509.4}, {"loc_id": 67, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": -79.4, "z": 2703.3, "px": 2034.4, "py": 2509.4}, {"loc_id": 68, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": -3123.2, "z": 395.0, "px": 1515.0, "py": 2115.4}, {"loc_id": 69, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": 2314.6, "z": -1080.4, "px": 2443.0, "py": 1863.6}, {"loc_id": 73, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -2615.5, "z": -950.2, "px": 1601.6, "py": 1885.8}, {"loc_id": 74, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": 4783.1, "z": -691.7, "px": 2864.3, "py": 1929.9}, {"loc_id": 78, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": 4463.0, "z": -3019.3, "px": 2809.7, "py": 1532.7}, {"loc_id": 82, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -629.5, "z": -3515.5, "px": 1940.6, "py": 1448.0}, {"loc_id": 83, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 4, "x": 1649.5, "z": 4335.2, "px": 2329.5, "py": 2787.9}, {"loc_id": 86, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -3576.1, "z": 180.7, "px": 1437.7, "py": 2078.8}, {"loc_id": 87, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": 3310.7, "z": -4417.7, "px": 2613.0, "py": 1294.0}, {"loc_id": 88, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 4, "x": 2353.7, "z": 270.7, "px": 2449.7, "py": 2094.2}, {"loc_id": 90, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -582.8, "z": -3968.2, "px": 1948.5, "py": 1370.8}, {"loc_id": 93, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 4, "x": -5688.0, "z": -1080.8, "px": 1077.2, "py": 1863.5}, {"loc_id": 95, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": -4304.7, "z": 337.4, "px": 1313.3, "py": 2105.6}, {"loc_id": 95, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -4304.7, "z": 337.4, "px": 1313.3, "py": 2105.6}, {"loc_id": 96, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 4, "x": -116.2, "z": 2562.7, "px": 2028.2, "py": 2485.4}, {"loc_id": 97, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 4, "x": 2738.0, "z": 3658.2, "px": 2515.3, "py": 2672.3}, {"loc_id": 98, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": 2425.8, "z": -1021.2, "px": 2462.0, "py": 1873.7}, {"loc_id": 100, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": 2508.7, "z": -5306.2, "px": 2476.2, "py": 1142.4}, {"loc_id": 101, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -1014.2, "z": -5639.2, "px": 1874.9, "py": 1085.6}, {"loc_id": 101, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": -1014.2, "z": -5639.2, "px": 1874.9, "py": 1085.6}, {"loc_id": 105, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 4, "x": 197.3, "z": 2575.2, "px": 2081.7, "py": 2487.5}, {"loc_id": 106, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -2182.9, "z": 4304.1, "px": 1675.5, "py": 2782.6}, {"loc_id": 111, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 4, "x": -264.5, "z": 2509.6, "px": 2002.9, "py": 2476.3}, {"loc_id": 111, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -264.5, "z": 2509.6, "px": 2002.9, "py": 2476.3}, {"loc_id": 113, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": 1402.0, "z": 2222.3, "px": 2287.3, "py": 2427.3}, {"loc_id": 118, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": -2309.6, "z": 4288.3, "px": 1653.8, "py": 2779.9}, {"loc_id": 120, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -5252.1, "z": -1711.3, "px": 1151.6, "py": 1755.9}, {"loc_id": 121, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 4, "x": -4236.9, "z": 465.5, "px": 1324.9, "py": 2127.4}, {"loc_id": 122, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": 2226.5, "z": 268.7, "px": 2428.0, "py": 2093.9}, {"loc_id": 122, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 4, "x": 2226.5, "z": 268.7, "px": 2428.0, "py": 2093.9}, {"loc_id": 123, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 4, "x": 2317.7, "z": 334.7, "px": 2443.6, "py": 2105.1}, {"loc_id": 125, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -5361.6, "z": 1717.9, "px": 1133.0, "py": 2341.2}, {"loc_id": 128, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 4, "x": -963.5, "z": -3775.8, "px": 1883.6, "py": 1403.6}, {"loc_id": 129, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -3081.8, "z": 578.8, "px": 1522.0, "py": 2146.8}, {"loc_id": 132, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 4, "x": -2767.1, "z": -1805.5, "px": 1575.7, "py": 1739.9}, {"loc_id": 137, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": 2561.4, "z": -16.1, "px": 2485.1, "py": 2045.3}, {"loc_id": 138, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -2417.8, "z": -4091.4, "px": 1635.4, "py": 1349.7}, {"loc_id": 144, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": 1488.4, "z": 1973.9, "px": 2302.0, "py": 2384.9}, {"loc_id": 156, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 4, "x": 3335.7, "z": -4334.9, "px": 2617.3, "py": 1308.2}, {"loc_id": 160, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -2167.4, "z": 4223.9, "px": 1678.1, "py": 2768.9}, {"loc_id": 161, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": -2701.2, "z": -912.1, "px": 1587.0, "py": 1892.3}, {"loc_id": 161, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 4, "x": -2701.2, "z": -912.1, "px": 1587.0, "py": 1892.3}, {"loc_id": 164, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -144.7, "z": 2735.8, "px": 2023.3, "py": 2514.9}, {"loc_id": 165, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 4, "x": 2629.5, "z": 3851.6, "px": 2496.8, "py": 2705.3}, {"loc_id": 165, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": 2629.5, "z": 3851.6, "px": 2496.8, "py": 2705.3}, {"loc_id": 169, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -5107.9, "z": 1285.8, "px": 1176.3, "py": 2267.4}, {"loc_id": 172, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -3663.7, "z": 205.0, "px": 1422.7, "py": 2083.0}, {"loc_id": 174, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 4, "x": 563.7, "z": 2571.8, "px": 2144.2, "py": 2486.9}, {"loc_id": 175, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 4, "x": -3717.0, "z": -4233.5, "px": 1413.6, "py": 1325.5}, {"loc_id": 176, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 4, "x": -1990.7, "z": 4469.7, "px": 1708.3, "py": 2810.8}, {"loc_id": 177, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": -3456.5, "z": 3310.3, "px": 1458.1, "py": 2613.0}, {"loc_id": 178, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": -4272.5, "z": 3640.1, "px": 1318.8, "py": 2669.2}, {"loc_id": 178, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 4, "x": -4272.5, "z": 3640.1, "px": 1318.8, "py": 2669.2}, {"loc_id": 179, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": 133.5, "z": 2638.3, "px": 2070.8, "py": 2498.3}, {"loc_id": 179, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 4, "x": 133.5, "z": 2638.3, "px": 2070.8, "py": 2498.3}, {"loc_id": 181, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 4, "x": 2700.5, "z": 3847.2, "px": 2508.9, "py": 2704.6}, {"loc_id": 182, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": -2513.9, "z": -4161.4, "px": 1619.0, "py": 1337.8}, {"loc_id": 183, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -2508.1, "z": 4873.8, "px": 1620.0, "py": 2879.8}, {"loc_id": 183, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 4, "x": -2508.1, "z": 4873.8, "px": 1620.0, "py": 2879.8}, {"loc_id": 184, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 4, "x": -819.9, "z": -3633.2, "px": 1908.1, "py": 1427.9}, {"loc_id": 187, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": 4433.2, "z": -3127.0, "px": 2804.6, "py": 1514.3}, {"loc_id": 189, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": 1211.9, "z": 2097.1, "px": 2254.8, "py": 2405.9}, {"loc_id": 190, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": 1354.8, "z": 2124.8, "px": 2279.2, "py": 2410.6}, {"loc_id": 191, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 4, "x": -701.9, "z": -3592.2, "px": 1928.2, "py": 1434.9}, {"loc_id": 191, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 4, "x": -701.9, "z": -3592.2, "px": 1928.2, "py": 1434.9}, {"loc_id": 192, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 4, "x": -5170.2, "z": -656.1, "px": 1165.6, "py": 1936.0}, {"loc_id": 656, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 4, "x": 3008.0, "z": 6848.0, "px": 2561.4, "py": 3216.7}, {"loc_id": 656, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": 3008.0, "z": 6848.0, "px": 2561.4, "py": 3216.7}, {"loc_id": 660, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 4, "x": -6080.0, "z": -896.0, "px": 1010.3, "py": 1895.1}, {"loc_id": 663, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 4, "x": -1728.0, "z": -7296.0, "px": 1753.1, "py": 802.8}, {"loc_id": 667, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 4, "x": -2752.0, "z": -6016.0, "px": 1578.3, "py": 1021.3}, {"loc_id": 668, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 4, "x": 5952.0, "z": -4416.0, "px": 3063.8, "py": 1294.3}, {"loc_id": 668, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 4, "x": 5952.0, "z": -4416.0, "px": 3063.8, "py": 1294.3}, {"loc_id": 669, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": -2112.0, "z": 7360.0, "px": 1687.6, "py": 3304.1}, {"loc_id": 670, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 4, "x": -4736.0, "z": -3968.0, "px": 1239.7, "py": 1370.8}, {"loc_id": 670, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 4, "x": -4736.0, "z": -3968.0, "px": 1239.7, "py": 1370.8}, {"loc_id": 670, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 4, "x": -4736.0, "z": -3968.0, "px": 1239.7, "py": 1370.8}, {"loc_id": 671, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 4, "x": -6400.0, "z": -3968.0, "px": 955.7, "py": 1370.8}, {"loc_id": 674, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 4, "x": 1664.0, "z": -6784.0, "px": 2332.0, "py": 890.2}, {"loc_id": 676, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 4, "x": -7552.0, "z": -2624.0, "px": 759.1, "py": 1600.2}, {"loc_id": 679, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": 4096.0, "z": -5888.0, "px": 2747.1, "py": 1043.1}, {"loc_id": 679, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 4, "x": 4096.0, "z": -5888.0, "px": 2747.1, "py": 1043.1}, {"loc_id": 682, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 4, "x": 3904.0, "z": -5632.0, "px": 2714.3, "py": 1086.8}, {"loc_id": 682, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 4, "x": 3904.0, "z": -5632.0, "px": 2714.3, "py": 1086.8}, {"loc_id": 682, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": 3904.0, "z": -5632.0, "px": 2714.3, "py": 1086.8}, {"loc_id": 683, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": 9088.0, "z": 1472.0, "px": 3599.0, "py": 2299.2}, {"loc_id": 684, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 4, "x": -8640.0, "z": 1536.0, "px": 573.4, "py": 2310.1}, {"loc_id": 684, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 4, "x": -8640.0, "z": 1536.0, "px": 573.4, "py": 2310.1}, {"loc_id": 688, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": -1920.0, "z": 7040.0, "px": 1720.3, "py": 3249.5}, {"loc_id": 689, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 4, "x": 7040.0, "z": -3712.0, "px": 3249.5, "py": 1414.5}, {"loc_id": 689, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": 7040.0, "z": -3712.0, "px": 3249.5, "py": 1414.5}, {"loc_id": 690, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 4, "x": -5440.0, "z": 5760.0, "px": 1119.6, "py": 3031.0}, {"loc_id": 693, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 4, "x": 5440.0, "z": 3328.0, "px": 2976.4, "py": 2616.0}, {"loc_id": 693, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": 5440.0, "z": 3328.0, "px": 2976.4, "py": 2616.0}, {"loc_id": 694, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 4, "x": 4864.0, "z": -4992.0, "px": 2878.1, "py": 1196.0}, {"loc_id": 694, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 4, "x": 4864.0, "z": -4992.0, "px": 2878.1, "py": 1196.0}, {"loc_id": 695, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 4, "x": 7360.0, "z": -3456.0, "px": 3304.1, "py": 1458.2}, {"loc_id": 695, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": 7360.0, "z": -3456.0, "px": 3304.1, "py": 1458.2}, {"loc_id": 695, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 4, "x": 7360.0, "z": -3456.0, "px": 3304.1, "py": 1458.2}, {"loc_id": 697, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": 9600.0, "z": -2368.0, "px": 3686.4, "py": 1643.9}, {"loc_id": 700, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": 8448.0, "z": 896.0, "px": 3489.8, "py": 2200.9}, {"loc_id": 703, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 4, "x": -384.0, "z": -6656.0, "px": 1982.5, "py": 912.0}, {"loc_id": 708, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 4, "x": 8512.0, "z": 1152.0, "px": 3500.7, "py": 2244.6}, {"loc_id": 708, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 4, "x": 8512.0, "z": 1152.0, "px": 3500.7, "py": 2244.6}, {"loc_id": 709, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 4, "x": -6080.0, "z": -1984.0, "px": 1010.3, "py": 1709.4}, {"loc_id": 709, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 4, "x": -6080.0, "z": -1984.0, "px": 1010.3, "py": 1709.4}, {"loc_id": 709, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 4, "x": -6080.0, "z": -1984.0, "px": 1010.3, "py": 1709.4}, {"loc_id": 712, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": 9152.0, "z": -1280.0, "px": 3609.9, "py": 1829.5}, {"loc_id": 718, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": -6336.0, "z": 704.0, "px": 966.7, "py": 2168.1}, {"loc_id": 719, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": 4032.0, "z": -6144.0, "px": 2736.1, "py": 999.4}, {"loc_id": 720, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 4, "x": -7168.0, "z": 640.0, "px": 824.7, "py": 2157.2}, {"loc_id": 724, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 4, "x": -6912.0, "z": 5056.0, "px": 868.4, "py": 2910.9}, {"loc_id": 724, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": -6912.0, "z": 5056.0, "px": 868.4, "py": 2910.9}, {"loc_id": 725, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": 2816.0, "z": 5696.0, "px": 2528.6, "py": 3020.1}, {"loc_id": 729, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 4, "x": 8064.0, "z": -1728.0, "px": 3424.3, "py": 1753.1}, {"loc_id": 730, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 4, "x": 8192.0, "z": -832.0, "px": 3446.1, "py": 1906.0}, {"loc_id": 732, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": 6464.0, "z": 2880.0, "px": 3151.2, "py": 2539.5}, {"loc_id": 732, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 4, "x": 6464.0, "z": 2880.0, "px": 3151.2, "py": 2539.5}, {"loc_id": 735, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": -9536.0, "z": 832.0, "px": 420.5, "py": 2190.0}, {"loc_id": 736, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 4, "x": 9088.0, "z": -3008.0, "px": 3599.0, "py": 1534.6}, {"loc_id": 736, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": 9088.0, "z": -3008.0, "px": 3599.0, "py": 1534.6}, {"loc_id": 738, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 4, "x": -3072.0, "z": -5760.0, "px": 1523.7, "py": 1065.0}, {"loc_id": 739, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 4, "x": -6912.0, "z": 704.0, "px": 868.4, "py": 2168.1}, {"loc_id": 739, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": -6912.0, "z": 704.0, "px": 868.4, "py": 2168.1}, {"loc_id": 740, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": -5760.0, "z": -1984.0, "px": 1065.0, "py": 1709.4}, {"loc_id": 741, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 4, "x": 6400.0, "z": 4352.0, "px": 3140.3, "py": 2790.7}, {"loc_id": 742, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": -5376.0, "z": 4736.0, "px": 1130.5, "py": 2856.3}, {"loc_id": 743, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 4, "x": -9408.0, "z": -2432.0, "px": 442.4, "py": 1632.9}, {"loc_id": 744, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 4, "x": 1408.0, "z": 7488.0, "px": 2288.3, "py": 3326.0}, {"loc_id": 745, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 4, "x": -5824.0, "z": 3264.0, "px": 1054.0, "py": 2605.1}, {"loc_id": 746, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 4, "x": -6592.0, "z": 896.0, "px": 923.0, "py": 2200.9}, {"loc_id": 746, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 4, "x": -6592.0, "z": 896.0, "px": 923.0, "py": 2200.9}, {"loc_id": 746, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 4, "x": -6592.0, "z": 896.0, "px": 923.0, "py": 2200.9}, {"loc_id": 748, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 4, "x": -4096.0, "z": 4736.0, "px": 1348.9, "py": 2856.3}, {"loc_id": 748, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 4, "x": -4096.0, "z": 4736.0, "px": 1348.9, "py": 2856.3}, {"loc_id": 750, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 4, "x": 3072.0, "z": 7168.0, "px": 2572.3, "py": 3271.3}, {"loc_id": 753, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 4, "x": -1408.0, "z": -6016.0, "px": 1807.7, "py": 1021.3}, {"loc_id": 753, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 4, "x": -1408.0, "z": -6016.0, "px": 1807.7, "py": 1021.3}, {"loc_id": 757, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 4, "x": 8768.0, "z": 896.0, "px": 3544.4, "py": 2200.9}, {"loc_id": 758, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 4, "x": 8896.0, "z": 320.0, "px": 3566.3, "py": 2102.6}, {"loc_id": 759, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 4, "x": 3968.0, "z": -5312.0, "px": 2725.2, "py": 1141.4}, {"loc_id": 760, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 4, "x": 4160.0, "z": -4736.0, "px": 2758.0, "py": 1239.7}, {"loc_id": 761, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 4, "x": -2112.0, "z": -6656.0, "px": 1687.6, "py": 912.0}, {"loc_id": 764, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 4, "x": -7168.0, "z": -1280.0, "px": 824.7, "py": 1829.5}, {"loc_id": 769, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 4, "x": -6272.0, "z": 3008.0, "px": 977.6, "py": 2561.4}, {"loc_id": 771, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 4, "x": 2944.0, "z": 5440.0, "px": 2550.4, "py": 2976.4}, {"loc_id": 774, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 4, "x": 6016.0, "z": 5952.0, "px": 3074.7, "py": 3063.8}, {"loc_id": 776, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 4, "x": -3200.0, "z": 5376.0, "px": 1501.9, "py": 2965.5}, {"loc_id": 778, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": -7616.0, "z": 1216.0, "px": 748.2, "py": 2255.5}, {"loc_id": 778, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 4, "x": -7616.0, "z": 1216.0, "px": 748.2, "py": 2255.5}, {"loc_id": 778, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 4, "x": -7616.0, "z": 1216.0, "px": 748.2, "py": 2255.5}, {"loc_id": 779, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 4, "x": 2304.0, "z": -5760.0, "px": 2441.2, "py": 1065.0}, {"loc_id": 779, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 4, "x": 2304.0, "z": -5760.0, "px": 2441.2, "py": 1065.0}, {"loc_id": 781, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": -6144.0, "z": 3520.0, "px": 999.4, "py": 2648.7}, {"loc_id": 782, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 4, "x": -6144.0, "z": 3968.0, "px": 999.4, "py": 2725.2}, {"loc_id": 783, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 4, "x": 6784.0, "z": 1216.0, "px": 3205.8, "py": 2255.5}, {"loc_id": 783, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 4, "x": 6784.0, "z": 1216.0, "px": 3205.8, "py": 2255.5}, {"loc_id": 784, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": -3776.0, "z": 5440.0, "px": 1403.6, "py": 2976.4}, {"loc_id": 785, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 4, "x": -192.0, "z": -6400.0, "px": 2015.2, "py": 955.7}, {"loc_id": 787, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 4, "x": 3200.0, "z": 5504.0, "px": 2594.1, "py": 2987.3}, {"loc_id": 788, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": 4864.0, "z": 5696.0, "px": 2878.1, "py": 3020.1}, {"loc_id": 788, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 4, "x": 4864.0, "z": 5696.0, "px": 2878.1, "py": 3020.1}, {"loc_id": 790, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 4, "x": 384.0, "z": -7104.0, "px": 2113.5, "py": 835.6}, {"loc_id": 791, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 4, "x": 6720.0, "z": 5376.0, "px": 3194.9, "py": 2965.5}, {"loc_id": 791, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 4, "x": 6720.0, "z": 5376.0, "px": 3194.9, "py": 2965.5}, {"loc_id": 796, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 4, "x": -128.0, "z": 7360.0, "px": 2026.2, "py": 3304.1}, {"loc_id": 797, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": 7424.0, "z": 256.0, "px": 3315.0, "py": 2091.7}, {"loc_id": 797, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": 7424.0, "z": 256.0, "px": 3315.0, "py": 2091.7}, {"loc_id": 801, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 4, "x": -5760.0, "z": -5504.0, "px": 1065.0, "py": 1108.7}, {"loc_id": 801, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 4, "x": -5760.0, "z": -5504.0, "px": 1065.0, "py": 1108.7}, {"loc_id": 802, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 4, "x": -4800.0, "z": 4160.0, "px": 1228.8, "py": 2758.0}, {"loc_id": 804, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": 128.0, "z": 6848.0, "px": 2069.8, "py": 3216.7}, {"loc_id": 805, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 4, "x": 8640.0, "z": -576.0, "px": 3522.6, "py": 1949.7}, {"loc_id": 806, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": 4608.0, "z": 6336.0, "px": 2834.4, "py": 3129.3}, {"loc_id": 807, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 4, "x": -2944.0, "z": -6528.0, "px": 1545.6, "py": 933.9}, {"loc_id": 808, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": 4928.0, "z": -5696.0, "px": 2889.0, "py": 1075.9}, {"loc_id": 808, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 4, "x": 4928.0, "z": -5696.0, "px": 2889.0, "py": 1075.9}, {"loc_id": 809, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 4, "x": 4416.0, "z": 5568.0, "px": 2801.7, "py": 2998.3}, {"loc_id": 810, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 4, "x": 768.0, "z": 6528.0, "px": 2179.1, "py": 3162.1}, {"loc_id": 811, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": -5568.0, "z": 3328.0, "px": 1097.7, "py": 2616.0}, {"loc_id": 811, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 4, "x": -5568.0, "z": 3328.0, "px": 1097.7, "py": 2616.0}, {"loc_id": 812, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": 6848.0, "z": -256.0, "px": 3216.7, "py": 2004.3}, {"loc_id": 812, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": 6848.0, "z": -256.0, "px": 3216.7, "py": 2004.3}, {"loc_id": 813, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": -8192.0, "z": -3520.0, "px": 649.9, "py": 1447.3}, {"loc_id": 813, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 4, "x": -8192.0, "z": -3520.0, "px": 649.9, "py": 1447.3}, {"loc_id": 815, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 4, "x": 832.0, "z": 6784.0, "px": 2190.0, "py": 3205.8}, {"loc_id": 818, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 4, "x": -7360.0, "z": 4032.0, "px": 791.9, "py": 2736.1}, {"loc_id": 819, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 4, "x": -6592.0, "z": -4992.0, "px": 923.0, "py": 1196.0}, {"loc_id": 820, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 4, "x": -7360.0, "z": 3008.0, "px": 791.9, "py": 2561.4}, {"loc_id": 821, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 4, "x": 384.0, "z": 7552.0, "px": 2113.5, "py": 3336.9}, {"loc_id": 822, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": -5696.0, "z": 3648.0, "px": 1075.9, "py": 2670.6}, {"loc_id": 825, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": -8384.0, "z": -448.0, "px": 617.1, "py": 1971.5}, {"loc_id": 827, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 4, "x": 6336.0, "z": -1280.0, "px": 3129.3, "py": 1829.5}, {"loc_id": 829, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": -4992.0, "z": -3648.0, "px": 1196.0, "py": 1425.4}, {"loc_id": 830, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 4, "x": 9920.0, "z": -192.0, "px": 3741.0, "py": 2015.2}, {"loc_id": 832, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 4, "x": -9216.0, "z": -64.0, "px": 475.1, "py": 2037.1}, {"loc_id": 832, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 4, "x": -9216.0, "z": -64.0, "px": 475.1, "py": 2037.1}, {"loc_id": 834, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 4, "x": -8576.0, "z": 1280.0, "px": 584.4, "py": 2266.5}, {"loc_id": 836, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 4, "x": -6592.0, "z": 4800.0, "px": 923.0, "py": 2867.2}, {"loc_id": 841, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": 3648.0, "z": -6784.0, "px": 2670.6, "py": 890.2}, {"loc_id": 841, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 4, "x": 3648.0, "z": -6784.0, "px": 2670.6, "py": 890.2}, {"loc_id": 842, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": -4480.0, "z": -5376.0, "px": 1283.4, "py": 1130.5}, {"loc_id": 845, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 4, "x": 4672.0, "z": -6080.0, "px": 2845.4, "py": 1010.3}, {"loc_id": 846, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 4, "x": -1152.0, "z": -7488.0, "px": 1851.4, "py": 770.0}, {"loc_id": 846, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 4, "x": -1152.0, "z": -7488.0, "px": 1851.4, "py": 770.0}, {"loc_id": 847, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": 1280.0, "z": 6016.0, "px": 2266.5, "py": 3074.7}, {"loc_id": 847, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 4, "x": 1280.0, "z": 6016.0, "px": 2266.5, "py": 3074.7}, {"loc_id": 848, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 4, "x": -6016.0, "z": -5568.0, "px": 1021.3, "py": 1097.7}, {"loc_id": 848, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 4, "x": -6016.0, "z": -5568.0, "px": 1021.3, "py": 1097.7}, {"loc_id": 849, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 4, "x": 4544.0, "z": -6656.0, "px": 2823.5, "py": 912.0}, {"loc_id": 850, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": -8576.0, "z": -2816.0, "px": 584.4, "py": 1567.4}, {"loc_id": 855, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 4, "x": 2560.0, "z": -5824.0, "px": 2484.9, "py": 1054.0}, {"loc_id": 856, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 4, "x": -7168.0, "z": 3840.0, "px": 824.7, "py": 2703.4}, {"loc_id": 858, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": -8384.0, "z": -3072.0, "px": 617.1, "py": 1523.7}, {"loc_id": 859, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 4, "x": 4288.0, "z": -6080.0, "px": 2779.8, "py": 1010.3}, {"loc_id": 860, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 4, "x": 9664.0, "z": 768.0, "px": 3697.3, "py": 2179.1}, {"loc_id": 861, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": 6656.0, "z": -5504.0, "px": 3184.0, "py": 1108.7}, {"loc_id": 862, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": -8128.0, "z": -3968.0, "px": 660.8, "py": 1370.8}, {"loc_id": 865, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 4, "x": -6400.0, "z": -2112.0, "px": 955.7, "py": 1687.6}, {"loc_id": 867, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": -5120.0, "z": 4672.0, "px": 1174.2, "py": 2845.4}, {"loc_id": 867, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 4, "x": -5120.0, "z": 4672.0, "px": 1174.2, "py": 2845.4}, {"loc_id": 869, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": -6528.0, "z": -4416.0, "px": 933.9, "py": 1294.3}, {"loc_id": 870, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": 5696.0, "z": 3520.0, "px": 3020.1, "py": 2648.7}, {"loc_id": 873, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 4, "x": 4480.0, "z": 5952.0, "px": 2812.6, "py": 3063.8}, {"loc_id": 875, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": 1280.0, "z": -6336.0, "px": 2266.5, "py": 966.7}, {"loc_id": 876, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": -2240.0, "z": -7040.0, "px": 1665.7, "py": 846.5}, {"loc_id": 877, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": -6272.0, "z": -5376.0, "px": 977.6, "py": 1130.5}, {"loc_id": 877, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 4, "x": -6272.0, "z": -5376.0, "px": 977.6, "py": 1130.5}, {"loc_id": 877, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 4, "x": -6272.0, "z": -5376.0, "px": 977.6, "py": 1130.5}, {"loc_id": 877, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 4, "x": -6272.0, "z": -5376.0, "px": 977.6, "py": 1130.5}, {"loc_id": 880, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": 4352.0, "z": -4416.0, "px": 2790.7, "py": 1294.3}, {"loc_id": 880, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 4, "x": 4352.0, "z": -4416.0, "px": 2790.7, "py": 1294.3}, {"loc_id": 881, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 4, "x": 4352.0, "z": 4672.0, "px": 2790.7, "py": 2845.4}, {"loc_id": 885, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": -5184.0, "z": -3840.0, "px": 1163.3, "py": 1392.6}, {"loc_id": 886, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": -3904.0, "z": 5888.0, "px": 1381.7, "py": 3052.9}, {"loc_id": 888, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 4, "x": 5056.0, "z": -3840.0, "px": 2910.9, "py": 1392.6}, {"loc_id": 889, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": 7360.0, "z": 4544.0, "px": 3304.1, "py": 2823.5}, {"loc_id": 889, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 4, "x": 7360.0, "z": 4544.0, "px": 3304.1, "py": 2823.5}, {"loc_id": 890, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": -6528.0, "z": -3008.0, "px": 933.9, "py": 1534.6}, {"loc_id": 892, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": -6400.0, "z": 5632.0, "px": 955.7, "py": 3009.2}, {"loc_id": 892, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 4, "x": -6400.0, "z": 5632.0, "px": 955.7, "py": 3009.2}, {"loc_id": 892, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 4, "x": -6400.0, "z": 5632.0, "px": 955.7, "py": 3009.2}, {"loc_id": 893, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 4, "x": -8384.0, "z": -3776.0, "px": 617.1, "py": 1403.6}, {"loc_id": 894, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": 5952.0, "z": 2432.0, "px": 3063.8, "py": 2463.1}, {"loc_id": 894, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 4, "x": 5952.0, "z": 2432.0, "px": 3063.8, "py": 2463.1}, {"loc_id": 895, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 4, "x": -7424.0, "z": 4544.0, "px": 781.0, "py": 2823.5}, {"loc_id": 895, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 4, "x": -7424.0, "z": 4544.0, "px": 781.0, "py": 2823.5}, {"loc_id": 895, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 4, "x": -7424.0, "z": 4544.0, "px": 781.0, "py": 2823.5}, {"loc_id": 896, "loc_name": "Mistlands_DvergrBossEntrance1", "item": "SpawnOnce: Seeker", "count": 4, "x": 7360.0, "z": -3840.0, "px": 3304.1, "py": 1392.6}, {"loc_id": 897, "loc_name": "Mistlands_DvergrBossEntrance1", "item": "SpawnOnce: Seeker", "count": 4, "x": 6976.0, "z": 1536.0, "px": 3238.6, "py": 2310.1}, {"loc_id": 897, "loc_name": "Mistlands_DvergrBossEntrance1", "item": "Pickable: Tankard_dvergr", "count": 4, "x": 6976.0, "z": 1536.0, "px": 3238.6, "py": 2310.1}, {"loc_id": 898, "loc_name": "Mistlands_DvergrBossEntrance1", "item": "SpawnOnce: Seeker", "count": 4, "x": 8768.0, "z": -640.0, "px": 3544.4, "py": 1938.8}, {"loc_id": 899, "loc_name": "Mistlands_DvergrBossEntrance1", "item": "SpawnOnce: Seeker", "count": 4, "x": 3200.0, "z": 5440.0, "px": 2594.1, "py": 2976.4}, {"loc_id": 900, "loc_name": "Mistlands_DvergrBossEntrance1", "item": "SpawnOnce: Seeker", "count": 4, "x": -2176.0, "z": -7104.0, "px": 1676.6, "py": 835.6}, {"loc_id": 903, "loc_name": "Hildir_cave", "item": "SpawnOnce: Ulv", "count": 4, "x": 6016.0, "z": 4608.0, "px": 3074.7, "py": 2834.4}, {"loc_id": 925, "loc_name": "PlaceofMystery1", "item": "Pickable: MoltenCore", "count": 4, "x": -2755.7, "z": -8383.2, "px": 1577.7, "py": 617.3}, {"loc_id": 926, "loc_name": "PlaceofMystery2", "item": "Pickable: MoltenCore", "count": 4, "x": 2681.1, "z": -9350.3, "px": 2505.6, "py": 452.2}, {"loc_id": 927, "loc_name": "PlaceofMystery3", "item": "Pickable: MoltenCore", "count": 4, "x": -258.7, "z": -9018.0, "px": 2003.8, "py": 508.9}, {"loc_id": 928, "loc_name": "CharredFortress", "item": "SpawnOnce: piece_Charred_Balista", "count": 4, "x": -704.0, "z": -9408.0, "px": 1927.9, "py": 442.4}, {"loc_id": 929, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Archer", "count": 4, "x": -2304.0, "z": -8896.0, "px": 1654.8, "py": 529.7}, {"loc_id": 929, "loc_name": "CharredFortress", "item": "SpawnOnce: piece_Charred_Balista", "count": 4, "x": -2304.0, "z": -8896.0, "px": 1654.8, "py": 529.7}, {"loc_id": 931, "loc_name": "CharredFortress", "item": "SpawnOnce: piece_Charred_Balista", "count": 4, "x": -384.0, "z": -8832.0, "px": 1982.5, "py": 540.7}, {"loc_id": 933, "loc_name": "CharredFortress", "item": "SpawnOnce: piece_Charred_Balista", "count": 4, "x": -576.0, "z": -9152.0, "px": 1949.7, "py": 486.1}, {"loc_id": 934, "loc_name": "CharredFortress", "item": "Pickable: MoltenCore", "count": 4, "x": -2240.0, "z": -8576.0, "px": 1665.7, "py": 584.4}, {"loc_id": 935, "loc_name": "CharredFortress", "item": "SpawnOnce: piece_Charred_Balista", "count": 4, "x": 1152.0, "z": -9024.0, "px": 2244.6, "py": 507.9}, {"loc_id": 936, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Archer", "count": 4, "x": 704.0, "z": -9088.0, "px": 2168.1, "py": 497.0}, {"loc_id": 939, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Archer", "count": 4, "x": 1600.0, "z": -9408.0, "px": 2321.1, "py": 442.4}, {"loc_id": 944, "loc_name": "CharredFortress", "item": "SpawnOnce: piece_Charred_Balista", "count": 4, "x": -896.0, "z": -9216.0, "px": 1895.1, "py": 475.1}, {"loc_id": 945, "loc_name": "CharredFortress", "item": "SpawnOnce: piece_Charred_Balista", "count": 4, "x": -896.0, "z": -9600.0, "px": 1895.1, "py": 409.6}, {"loc_id": 947, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Archer", "count": 4, "x": -640.0, "z": -9792.0, "px": 1938.8, "py": 376.8}, {"loc_id": 1986, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -1784.6, "z": -4355.4, "px": 1743.4, "py": 1304.7}, {"loc_id": 1986, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": -1784.6, "z": -4355.4, "px": 1743.4, "py": 1304.7}, {"loc_id": 1989, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 4, "x": 3641.8, "z": 3969.8, "px": 2669.5, "py": 2725.5}, {"loc_id": 1991, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -1736.3, "z": -4225.4, "px": 1751.7, "py": 1326.9}, {"loc_id": 1993, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -5949.7, "z": 1468.8, "px": 1032.6, "py": 2298.7}, {"loc_id": 1994, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -5368.1, "z": -1919.7, "px": 1131.8, "py": 1720.4}, {"loc_id": 1996, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 8580.9, "z": -1732.6, "px": 3512.5, "py": 1752.3}, {"loc_id": 1997, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -5052.2, "z": 585.3, "px": 1185.8, "py": 2147.9}, {"loc_id": 1998, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": -1158.1, "z": -1210.7, "px": 1850.4, "py": 1841.4}, {"loc_id": 1999, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": -6850.3, "z": 5430.7, "px": 878.9, "py": 2974.8}, {"loc_id": 2000, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 8261.5, "z": -2503.6, "px": 3458.0, "py": 1620.7}, {"loc_id": 2001, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 4, "x": -6655.6, "z": -4797.9, "px": 912.1, "py": 1229.2}, {"loc_id": 2003, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 4, "x": 709.3, "z": 4485.9, "px": 2169.1, "py": 2813.6}, {"loc_id": 2009, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -2304.6, "z": -3082.4, "px": 1654.7, "py": 1521.9}, {"loc_id": 2010, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": -1345.3, "z": -5450.9, "px": 1818.4, "py": 1117.7}, {"loc_id": 2013, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -2295.1, "z": 708.0, "px": 1656.3, "py": 2168.8}, {"loc_id": 2013, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -2295.1, "z": 708.0, "px": 1656.3, "py": 2168.8}, {"loc_id": 2014, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 4, "x": 5767.3, "z": 1542.2, "px": 3032.3, "py": 2311.2}, {"loc_id": 2015, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 4422.3, "z": 6725.0, "px": 2802.7, "py": 3195.7}, {"loc_id": 2016, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 4, "x": 2113.8, "z": 841.5, "px": 2408.8, "py": 2191.6}, {"loc_id": 2016, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 4, "x": 2113.8, "z": 841.5, "px": 2408.8, "py": 2191.6}, {"loc_id": 2017, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 713.6, "z": 4919.8, "px": 2169.8, "py": 2887.6}, {"loc_id": 2017, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": 713.6, "z": 4919.8, "px": 2169.8, "py": 2887.6}, {"loc_id": 2018, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 2366.9, "z": -3455.3, "px": 2452.0, "py": 1458.3}, {"loc_id": 2019, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 1852.0, "z": 7225.8, "px": 2364.1, "py": 3281.2}, {"loc_id": 2020, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 4, "x": -5828.9, "z": 1534.9, "px": 1053.2, "py": 2310.0}, {"loc_id": 2022, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": -5119.0, "z": 704.2, "px": 1174.4, "py": 2168.2}, {"loc_id": 2023, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 4, "x": -4614.5, "z": 5449.2, "px": 1260.5, "py": 2978.0}, {"loc_id": 2025, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 5246.9, "z": 4990.5, "px": 2943.5, "py": 2899.7}, {"loc_id": 2028, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 9860.3, "z": -1604.7, "px": 3730.8, "py": 1774.1}, {"loc_id": 2029, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 1796.7, "z": 7414.9, "px": 2354.6, "py": 3313.5}, {"loc_id": 2029, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 1796.7, "z": 7414.9, "px": 2354.6, "py": 3313.5}, {"loc_id": 2034, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 4, "x": -8262.3, "z": 2627.8, "px": 637.9, "py": 2496.5}, {"loc_id": 2036, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -1159.1, "z": -1664.8, "px": 1850.2, "py": 1763.9}, {"loc_id": 2037, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 894.0, "z": 320.1, "px": 2200.6, "py": 2102.6}, {"loc_id": 2037, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 4, "x": 894.0, "z": 320.1, "px": 2200.6, "py": 2102.6}, {"loc_id": 2037, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": 894.0, "z": 320.1, "px": 2200.6, "py": 2102.6}, {"loc_id": 2039, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 4, "x": -5571.0, "z": -6197.3, "px": 1097.2, "py": 990.3}, {"loc_id": 2040, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 4, "x": 3391.7, "z": 3514.9, "px": 2626.9, "py": 2647.9}, {"loc_id": 2041, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -2236.4, "z": 4542.5, "px": 1666.3, "py": 2823.3}, {"loc_id": 2041, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -2236.4, "z": 4542.5, "px": 1666.3, "py": 2823.3}, {"loc_id": 2045, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 6264.5, "z": -4358.4, "px": 3117.1, "py": 1304.2}, {"loc_id": 2048, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 2177.1, "z": -374.6, "px": 2419.6, "py": 1984.1}, {"loc_id": 2050, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": 1149.0, "z": 5321.2, "px": 2244.1, "py": 2956.2}, {"loc_id": 2051, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -5573.1, "z": -5305.9, "px": 1096.9, "py": 1142.5}, {"loc_id": 2056, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -8000.9, "z": 393.2, "px": 682.5, "py": 2115.1}, {"loc_id": 2059, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 4, "x": -5058.0, "z": 821.8, "px": 1184.8, "py": 2188.3}, {"loc_id": 2061, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": -2431.5, "z": 4169.7, "px": 1633.0, "py": 2759.6}, {"loc_id": 2064, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 6654.9, "z": 3129.8, "px": 3183.8, "py": 2582.2}, {"loc_id": 2064, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 4, "x": 6654.9, "z": 3129.8, "px": 3183.8, "py": 2582.2}, {"loc_id": 2066, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 5948.5, "z": 1414.3, "px": 3063.2, "py": 2289.4}, {"loc_id": 2067, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 4, "x": 8253.5, "z": 198.8, "px": 3456.6, "py": 2081.9}, {"loc_id": 2067, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": 8253.5, "z": 198.8, "px": 3456.6, "py": 2081.9}, {"loc_id": 2068, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": 7799.0, "z": -261.2, "px": 3379.0, "py": 2003.4}, {"loc_id": 2070, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -4618.1, "z": 5752.9, "px": 1259.8, "py": 3029.8}, {"loc_id": 2073, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 4, "x": 7548.2, "z": -2743.2, "px": 3336.2, "py": 1579.8}, {"loc_id": 2074, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 2555.5, "z": -4361.4, "px": 2484.1, "py": 1303.7}, {"loc_id": 2076, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 1978.5, "z": 1274.9, "px": 2385.7, "py": 2265.6}, {"loc_id": 2077, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 2107.7, "z": 1143.7, "px": 2407.7, "py": 2243.2}, {"loc_id": 2077, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 4, "x": 2107.7, "z": 1143.7, "px": 2407.7, "py": 2243.2}, {"loc_id": 2078, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": 8757.2, "z": -1472.7, "px": 3542.6, "py": 1796.7}, {"loc_id": 2079, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": -5431.8, "z": -6277.2, "px": 1121.0, "py": 976.7}, {"loc_id": 2082, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -1272.0, "z": -2183.0, "px": 1830.9, "py": 1675.4}, {"loc_id": 2085, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 4, "x": 761.4, "z": 4665.8, "px": 2177.9, "py": 2844.3}, {"loc_id": 2087, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 4, "x": 2431.1, "z": -1534.2, "px": 2462.9, "py": 1786.2}, {"loc_id": 2091, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 4, "x": -7615.2, "z": -4745.0, "px": 748.3, "py": 1238.2}, {"loc_id": 2093, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 455.5, "z": 5046.0, "px": 2125.7, "py": 2909.2}, {"loc_id": 2094, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 568.7, "z": 4745.9, "px": 2145.1, "py": 2858.0}, {"loc_id": 2098, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 4, "x": 2933.5, "z": -4341.4, "px": 2548.7, "py": 1307.1}, {"loc_id": 2098, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 2933.5, "z": -4341.4, "px": 2548.7, "py": 1307.1}, {"loc_id": 2099, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -7287.1, "z": 2560.3, "px": 804.3, "py": 2485.0}, {"loc_id": 2107, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -9664.7, "z": -321.6, "px": 398.6, "py": 1993.1}, {"loc_id": 2108, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": 7680.5, "z": -2887.2, "px": 3358.8, "py": 1555.3}, {"loc_id": 2108, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 4, "x": 7680.5, "z": -2887.2, "px": 3358.8, "py": 1555.3}, {"loc_id": 2110, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 4, "x": -7299.5, "z": -3591.5, "px": 802.2, "py": 1435.1}, {"loc_id": 2111, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": -4411.1, "z": 1666.0, "px": 1295.2, "py": 2332.3}, {"loc_id": 2114, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 8841.5, "z": 123.6, "px": 3556.9, "py": 2069.1}, {"loc_id": 2116, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 5760.1, "z": -827.4, "px": 3031.1, "py": 1906.8}, {"loc_id": 2116, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 5760.1, "z": -827.4, "px": 3031.1, "py": 1906.8}, {"loc_id": 2117, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 4, "x": -1278.8, "z": -2047.9, "px": 1829.8, "py": 1698.5}, {"loc_id": 2118, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": 4092.3, "z": 3912.8, "px": 2746.4, "py": 2715.8}, {"loc_id": 2120, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": 2178.0, "z": 1283.9, "px": 2419.7, "py": 2267.1}, {"loc_id": 2123, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": -6721.1, "z": 3657.4, "px": 900.9, "py": 2672.2}, {"loc_id": 2126, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -5059.6, "z": -1797.8, "px": 1184.5, "py": 1741.2}, {"loc_id": 2127, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 3769.9, "z": 3914.8, "px": 2691.4, "py": 2716.1}, {"loc_id": 2128, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": 5510.8, "z": 456.2, "px": 2988.5, "py": 2125.9}, {"loc_id": 2130, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -1981.4, "z": -5691.3, "px": 1709.8, "py": 1076.7}, {"loc_id": 2135, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 8263.2, "z": -2115.4, "px": 3458.3, "py": 1687.0}, {"loc_id": 2135, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": 8263.2, "z": -2115.4, "px": 3458.3, "py": 1687.0}, {"loc_id": 2137, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 6136.3, "z": -5898.6, "px": 3095.3, "py": 1041.3}, {"loc_id": 2138, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -1608.3, "z": 4729.8, "px": 1773.5, "py": 2855.2}, {"loc_id": 2141, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -1283.3, "z": -1154.5, "px": 1829.0, "py": 1851.0}, {"loc_id": 2142, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 4, "x": -3129.8, "z": 4169.0, "px": 1513.8, "py": 2759.5}, {"loc_id": 2143, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 2561.5, "z": 450.1, "px": 2485.2, "py": 2124.8}, {"loc_id": 2143, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 2561.5, "z": 450.1, "px": 2485.2, "py": 2124.8}, {"loc_id": 2143, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 4, "x": 2561.5, "z": 450.1, "px": 2485.2, "py": 2124.8}, {"loc_id": 2144, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -7431.3, "z": -1848.0, "px": 779.7, "py": 1732.6}, {"loc_id": 2144, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 4, "x": -7431.3, "z": -1848.0, "px": 779.7, "py": 1732.6}, {"loc_id": 2146, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 4, "x": 3189.9, "z": -2681.3, "px": 2592.4, "py": 1590.4}, {"loc_id": 2151, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 7352.5, "z": -3254.6, "px": 3302.8, "py": 1492.5}, {"loc_id": 2155, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 4, "x": 2501.3, "z": -3655.8, "px": 2474.9, "py": 1424.1}, {"loc_id": 2159, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 4, "x": -3267.2, "z": 4220.0, "px": 1490.4, "py": 2768.2}, {"loc_id": 2161, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 3962.9, "z": 7040.8, "px": 2724.3, "py": 3249.6}, {"loc_id": 2162, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 4, "x": 7797.5, "z": -3061.1, "px": 3378.8, "py": 1525.6}, {"loc_id": 2162, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": 7797.5, "z": -3061.1, "px": 3378.8, "py": 1525.6}, {"loc_id": 2163, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -8955.2, "z": 3272.0, "px": 519.6, "py": 2606.4}, {"loc_id": 2164, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 644.1, "z": -245.8, "px": 2157.9, "py": 2006.1}, {"loc_id": 2165, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 8135.7, "z": 895.5, "px": 3436.5, "py": 2200.8}, {"loc_id": 2165, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 4, "x": 8135.7, "z": 895.5, "px": 3436.5, "py": 2200.8}, {"loc_id": 2167, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 4, "x": 2951.2, "z": -4922.7, "px": 2551.7, "py": 1207.9}, {"loc_id": 2169, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -7622.1, "z": 4287.6, "px": 747.2, "py": 2779.8}, {"loc_id": 2171, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 4, "x": -5879.9, "z": -5111.8, "px": 1044.5, "py": 1175.6}, {"loc_id": 2173, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 4, "x": 1034.1, "z": -5498.0, "px": 2224.5, "py": 1109.7}, {"loc_id": 2175, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 312.2, "z": 5051.0, "px": 2101.3, "py": 2910.0}, {"loc_id": 2180, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 4, "x": -6520.2, "z": -4795.6, "px": 935.2, "py": 1229.6}, {"loc_id": 2184, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -5509.5, "z": -1928.1, "px": 1107.7, "py": 1718.9}, {"loc_id": 3036, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": 3969.5, "z": -1152.7, "px": 2725.5, "py": 1851.3}, {"loc_id": 3037, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 4, "x": -2559.0, "z": 6079.3, "px": 1611.3, "py": 3085.5}, {"loc_id": 3038, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 4, "x": 4542.7, "z": 1025.5, "px": 2823.3, "py": 2223.0}, {"loc_id": 3039, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 4, "x": 4095.8, "z": -897.4, "px": 2747.0, "py": 1894.8}, {"loc_id": 3041, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 4, "x": 3264.9, "z": -319.5, "px": 2605.2, "py": 1993.5}, {"loc_id": 3042, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 4, "x": 5184.1, "z": -2368.4, "px": 2932.8, "py": 1643.8}, {"loc_id": 3042, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": 5184.1, "z": -2368.4, "px": 2932.8, "py": 1643.8}, {"loc_id": 3043, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 4, "x": -4863.5, "z": 3966.2, "px": 1218.0, "py": 2724.9}, {"loc_id": 3045, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": 4928.6, "z": 1279.0, "px": 2889.1, "py": 2266.3}, {"loc_id": 3046, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": 4289.0, "z": 5185.2, "px": 2780.0, "py": 2932.9}, {"loc_id": 3050, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 4, "x": 766.5, "z": -7231.9, "px": 2178.8, "py": 813.8}, {"loc_id": 3054, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": 6847.7, "z": 3134.3, "px": 3216.7, "py": 2582.9}, {"loc_id": 3054, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": 6847.7, "z": 3134.3, "px": 3216.7, "py": 2582.9}, {"loc_id": 3056, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 4, "x": -4993.1, "z": 3711.1, "px": 1195.8, "py": 2681.4}, {"loc_id": 3057, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 4, "x": -1534.8, "z": -6655.5, "px": 1786.1, "py": 912.1}, {"loc_id": 3059, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": -62.5, "z": -4926.3, "px": 2037.3, "py": 1207.2}, {"loc_id": 3060, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 4, "x": -5758.6, "z": -1345.1, "px": 1065.2, "py": 1818.4}, {"loc_id": 3062, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 4, "x": -1215.9, "z": -4353.4, "px": 1840.5, "py": 1305.0}, {"loc_id": 3063, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": -128.6, "z": -5822.9, "px": 2026.1, "py": 1054.2}, {"loc_id": 3065, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 4, "x": -4544.0, "z": -5568.1, "px": 1272.5, "py": 1097.7}, {"loc_id": 3067, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 4, "x": -2816.7, "z": 2177.2, "px": 1567.3, "py": 2419.6}, {"loc_id": 3069, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": -3393.3, "z": 2305.2, "px": 1468.9, "py": 2441.4}, {"loc_id": 3073, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 4, "x": -3968.4, "z": 1150.8, "px": 1370.7, "py": 2244.4}, {"loc_id": 3074, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 4, "x": 6720.6, "z": 2302.1, "px": 3195.0, "py": 2440.9}, {"loc_id": 3075, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 4, "x": -6209.3, "z": -4736.0, "px": 988.3, "py": 1239.7}, {"loc_id": 3075, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": -6209.3, "z": -4736.0, "px": 988.3, "py": 1239.7}, {"loc_id": 3078, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": 1918.4, "z": 3071.5, "px": 2375.4, "py": 2572.2}, {"loc_id": 3081, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": -3137.5, "z": 5951.5, "px": 1512.5, "py": 3063.7}, {"loc_id": 3082, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 4, "x": -6017.1, "z": 2176.9, "px": 1021.1, "py": 2419.5}, {"loc_id": 3084, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 4, "x": -3071.2, "z": 1215.7, "px": 1523.8, "py": 2255.5}, {"loc_id": 3084, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 4, "x": -3071.2, "z": 1215.7, "px": 1523.8, "py": 2255.5}, {"loc_id": 3084, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": -3071.2, "z": 1215.7, "px": 1523.8, "py": 2255.5}, {"loc_id": 3087, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": 1024.6, "z": 4097.5, "px": 2222.9, "py": 2747.3}, {"loc_id": 3090, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 4, "x": 1022.6, "z": 5824.3, "px": 2222.5, "py": 3042.0}, {"loc_id": 3093, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 4, "x": -3136.3, "z": 2494.0, "px": 1512.7, "py": 2473.6}, {"loc_id": 3094, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 4, "x": -641.3, "z": 4094.2, "px": 1938.6, "py": 2746.7}, {"loc_id": 3094, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": -641.3, "z": 4094.2, "px": 1938.6, "py": 2746.7}, {"loc_id": 3095, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": -7681.2, "z": -1983.8, "px": 737.1, "py": 1709.4}, {"loc_id": 3100, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 4, "x": -704.8, "z": -6207.4, "px": 1927.7, "py": 988.6}, {"loc_id": 3102, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": -2750.2, "z": -2879.8, "px": 1578.6, "py": 1556.5}, {"loc_id": 3103, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 4, "x": 2238.9, "z": -4798.2, "px": 2430.1, "py": 1229.1}, {"loc_id": 3104, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 4, "x": -4094.7, "z": -4352.5, "px": 1349.2, "py": 1305.2}, {"loc_id": 3105, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": -2880.0, "z": 5761.0, "px": 1556.5, "py": 3031.2}, {"loc_id": 3106, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": 5758.1, "z": -1023.1, "px": 3030.7, "py": 1873.4}, {"loc_id": 3107, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": 1664.6, "z": 3393.8, "px": 2332.1, "py": 2627.2}, {"loc_id": 3110, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": -1918.3, "z": -3072.8, "px": 1720.6, "py": 1523.6}, {"loc_id": 3111, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 4, "x": 5312.2, "z": -1921.8, "px": 2954.6, "py": 1720.0}, {"loc_id": 3111, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 4, "x": 5312.2, "z": -1921.8, "px": 2954.6, "py": 1720.0}, {"loc_id": 3115, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": -5121.5, "z": -2880.5, "px": 1173.9, "py": 1556.4}, {"loc_id": 3117, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 4, "x": 320.4, "z": 4033.3, "px": 2102.7, "py": 2736.3}, {"loc_id": 3119, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": 5374.1, "z": -2623.4, "px": 2965.2, "py": 1600.3}, {"loc_id": 3124, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 4, "x": -3134.6, "z": -2367.8, "px": 1513.0, "py": 1643.9}, {"loc_id": 3124, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 4, "x": -3134.6, "z": -2367.8, "px": 1513.0, "py": 1643.9}, {"loc_id": 3124, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": -3134.6, "z": -2367.8, "px": 1513.0, "py": 1643.9}, {"loc_id": 3125, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": -1470.8, "z": -4353.3, "px": 1797.0, "py": 1305.0}, {"loc_id": 3126, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 4, "x": 7294.1, "z": 1022.7, "px": 3292.9, "py": 2222.5}, {"loc_id": 3129, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": 2816.9, "z": -3392.4, "px": 2528.8, "py": 1469.0}, {"loc_id": 3130, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 4, "x": 7166.7, "z": 1791.3, "px": 3271.1, "py": 2353.7}, {"loc_id": 3133, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 4, "x": 3840.8, "z": 4158.3, "px": 2703.5, "py": 2757.7}, {"loc_id": 3136, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": -1728.2, "z": -4735.4, "px": 1753.1, "py": 1239.8}, {"loc_id": 3139, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 4, "x": 2879.9, "z": -3647.5, "px": 2539.5, "py": 1425.5}, {"loc_id": 3139, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": 2879.9, "z": -3647.5, "px": 2539.5, "py": 1425.5}, {"loc_id": 3141, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": 1857.8, "z": 3713.0, "px": 2365.1, "py": 2681.7}, {"loc_id": 3142, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": 3071.4, "z": 191.8, "px": 2572.2, "py": 2080.7}, {"loc_id": 3146, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 4, "x": 2687.8, "z": 7167.6, "px": 2506.7, "py": 3271.3}, {"loc_id": 3147, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": -7422.2, "z": -2176.9, "px": 781.3, "py": 1676.5}, {"loc_id": 3150, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": 4160.5, "z": 1473.5, "px": 2758.1, "py": 2299.5}, {"loc_id": 3152, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": -2494.3, "z": -1790.4, "px": 1622.3, "py": 1742.4}, {"loc_id": 3155, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 4, "x": -62.3, "z": -5185.2, "px": 2037.4, "py": 1163.1}, {"loc_id": 3157, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": 4158.4, "z": 1086.2, "px": 2757.7, "py": 2233.4}, {"loc_id": 3160, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 4, "x": -4481.0, "z": -5823.9, "px": 1283.2, "py": 1054.1}, {"loc_id": 3161, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 4, "x": -3649.1, "z": 3839.6, "px": 1425.2, "py": 2703.3}, {"loc_id": 3161, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 4, "x": -3649.1, "z": 3839.6, "px": 1425.2, "py": 2703.3}, {"loc_id": 3163, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 4, "x": 4927.2, "z": 3326.8, "px": 2888.9, "py": 2615.8}, {"loc_id": 3164, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": 2370.0, "z": -5121.3, "px": 2452.5, "py": 1174.0}, {"loc_id": 3166, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": -2368.6, "z": 4031.0, "px": 1643.8, "py": 2736.0}, {"loc_id": 3167, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": 2814.4, "z": 1151.4, "px": 2528.3, "py": 2244.5}, {"loc_id": 3168, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 4, "x": 3712.5, "z": -448.2, "px": 2681.6, "py": 1971.5}, {"loc_id": 3169, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": 4735.7, "z": 3071.3, "px": 2856.2, "py": 2572.2}, {"loc_id": 3170, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 4, "x": 4735.2, "z": -2366.2, "px": 2856.1, "py": 1644.2}, {"loc_id": 3170, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 4, "x": 4735.2, "z": -2366.2, "px": 2856.1, "py": 1644.2}, {"loc_id": 3172, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 4, "x": 4609.7, "z": 1406.2, "px": 2834.7, "py": 2288.0}, {"loc_id": 3173, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": 4096.5, "z": 4351.2, "px": 2747.1, "py": 2790.6}, {"loc_id": 3173, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": 4096.5, "z": 4351.2, "px": 2747.1, "py": 2790.6}, {"loc_id": 3173, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 4, "x": 4096.5, "z": 4351.2, "px": 2747.1, "py": 2790.6}, {"loc_id": 3176, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 4, "x": 318.1, "z": 5502.9, "px": 2102.3, "py": 2987.2}, {"loc_id": 3177, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 4, "x": 6784.1, "z": 2881.4, "px": 3205.8, "py": 2539.8}, {"loc_id": 3180, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": 2113.9, "z": -2497.2, "px": 2408.8, "py": 1621.8}, {"loc_id": 3186, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": 4673.3, "z": -1086.3, "px": 2845.6, "py": 1862.6}, {"loc_id": 3187, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": -2942.1, "z": -2560.2, "px": 1545.9, "py": 1611.1}, {"loc_id": 3189, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 4, "x": 2622.6, "z": -7361.3, "px": 2495.6, "py": 791.7}, {"loc_id": 3189, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 4, "x": 2622.6, "z": -7361.3, "px": 2495.6, "py": 791.7}, {"loc_id": 3190, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 4, "x": -1854.6, "z": 3328.0, "px": 1731.5, "py": 2616.0}, {"loc_id": 3193, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": 1982.3, "z": -3329.8, "px": 2386.3, "py": 1479.7}, {"loc_id": 3194, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": -3327.1, "z": -1663.5, "px": 1480.2, "py": 1764.1}, {"loc_id": 3196, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 4, "x": -961.5, "z": -5887.6, "px": 1883.9, "py": 1043.2}, {"loc_id": 3199, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": -3646.6, "z": 3583.7, "px": 1425.6, "py": 2659.6}, {"loc_id": 3199, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": -3646.6, "z": 3583.7, "px": 1425.6, "py": 2659.6}, {"loc_id": 3201, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 4, "x": -1280.2, "z": -6655.9, "px": 1829.5, "py": 912.1}, {"loc_id": 3202, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 4, "x": 2688.2, "z": -5121.5, "px": 2506.8, "py": 1173.9}, {"loc_id": 3202, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 4, "x": 2688.2, "z": -5121.5, "px": 2506.8, "py": 1173.9}, {"loc_id": 3204, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": -4416.6, "z": 6334.7, "px": 1294.2, "py": 3129.1}, {"loc_id": 3208, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 4, "x": 1983.3, "z": 4098.0, "px": 2386.5, "py": 2747.4}, {"loc_id": 3209, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": -5184.6, "z": -1921.3, "px": 1163.2, "py": 1720.1}, {"loc_id": 3210, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 4, "x": -3584.7, "z": 7105.2, "px": 1436.2, "py": 3260.6}, {"loc_id": 3212, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": -896.0, "z": -4032.1, "px": 1895.1, "py": 1359.9}, {"loc_id": 3214, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 4, "x": -3134.9, "z": 7103.2, "px": 1513.0, "py": 3260.3}, {"loc_id": 3216, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 4, "x": 3072.9, "z": -63.5, "px": 2572.4, "py": 2037.2}, {"loc_id": 3216, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 4, "x": 3072.9, "z": -63.5, "px": 2572.4, "py": 2037.2}, {"loc_id": 3218, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": 6273.8, "z": 1535.8, "px": 3118.7, "py": 2310.1}, {"loc_id": 3220, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": -2750.4, "z": -3711.7, "px": 1578.6, "py": 1414.5}, {"loc_id": 3228, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 4, "x": 3969.0, "z": 895.5, "px": 2725.4, "py": 2200.8}, {"loc_id": 3229, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 4, "x": -5441.0, "z": 383.3, "px": 1119.4, "py": 2113.4}, {"loc_id": 3230, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": -4993.4, "z": 3007.5, "px": 1195.8, "py": 2561.3}, {"loc_id": 3231, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 4, "x": 4735.4, "z": -2944.6, "px": 2856.2, "py": 1545.5}, {"loc_id": 3234, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 4, "x": 4031.6, "z": 5118.5, "px": 2736.1, "py": 2921.6}, {"loc_id": 3236, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 4, "x": -5039.8, "z": -5442.1, "px": 1187.9, "py": 1119.2}, {"loc_id": 3237, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 4, "x": 1806.0, "z": 3774.9, "px": 2356.2, "py": 2692.2}, {"loc_id": 3239, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 4, "x": 4723.3, "z": 1155.5, "px": 2854.1, "py": 2245.2}, {"loc_id": 3240, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 4, "x": -2926.6, "z": 835.4, "px": 1548.5, "py": 2190.6}, {"loc_id": 3246, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 4, "x": -4239.4, "z": -2419.6, "px": 1324.5, "py": 1635.1}, {"loc_id": 3249, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 4, "x": -7626.8, "z": -2000.3, "px": 746.4, "py": 1706.6}, {"loc_id": 3253, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 4, "x": -4177.7, "z": -1408.0, "px": 1335.0, "py": 1807.7}, {"loc_id": 3254, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 4, "x": 4606.2, "z": 2943.7, "px": 2834.1, "py": 2550.4}, {"loc_id": 3259, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 4, "x": -5699.2, "z": -1273.3, "px": 1075.3, "py": 1830.7}, {"loc_id": 3269, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 4, "x": -1802.5, "z": 3326.0, "px": 1740.4, "py": 2615.6}, {"loc_id": 3273, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 4, "x": 7984.1, "z": 261.4, "px": 3410.6, "py": 2092.6}, {"loc_id": 3274, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 4, "x": -2890.1, "z": -7102.0, "px": 1554.8, "py": 835.9}, {"loc_id": 3280, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 4, "x": -3597.5, "z": -1584.1, "px": 1434.0, "py": 1777.6}, {"loc_id": 3282, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 4, "x": -2634.1, "z": -3522.3, "px": 1598.4, "py": 1446.9}, {"loc_id": 3284, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 4, "x": -2443.7, "z": 2953.1, "px": 1630.9, "py": 2552.0}, {"loc_id": 3299, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 4, "x": 3726.7, "z": 182.1, "px": 2684.0, "py": 2079.1}, {"loc_id": 3309, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 4, "x": 1482.9, "z": 5129.4, "px": 2301.1, "py": 2923.4}, {"loc_id": 3316, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 4, "x": 775.2, "z": -4154.2, "px": 2180.3, "py": 1339.0}, {"loc_id": 3319, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 4, "x": -2553.9, "z": 2127.0, "px": 1612.1, "py": 2411.0}, {"loc_id": 3322, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 4, "x": -3647.1, "z": 5754.1, "px": 1425.6, "py": 3030.0}, {"loc_id": 3446, "loc_name": "WoodHouse3", "item": "Pickable: Stone", "count": 4, "x": 3440.0, "z": -2029.9, "px": 2635.1, "py": 1701.6}, {"loc_id": 3451, "loc_name": "WoodHouse3", "item": "Pickable: Stone", "count": 4, "x": -146.8, "z": 389.5, "px": 2022.9, "py": 2114.5}, {"loc_id": 3663, "loc_name": "WoodFarm1", "item": "Pickable: Raspberry", "count": 4, "x": 1024.0, "z": 896.0, "px": 2222.8, "py": 2200.9}, {"loc_id": 3665, "loc_name": "WoodVillage1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 4, "x": 4288.0, "z": -1216.0, "px": 2779.8, "py": 1840.5}, {"loc_id": 3672, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Elite", "count": 4, "x": 3072.0, "z": -2688.0, "px": 2572.3, "py": 1589.2}, {"loc_id": 3672, "loc_name": "WoodVillage1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 4, "x": 3072.0, "z": -2688.0, "px": 2572.3, "py": 1589.2}, {"loc_id": 3675, "loc_name": "WoodVillage1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 4, "x": -2112.0, "z": 320.0, "px": 1687.6, "py": 2102.6}, {"loc_id": 3675, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows", "count": 4, "x": -2112.0, "z": 320.0, "px": 1687.6, "py": 2102.6}, {"loc_id": 3678, "loc_name": "WoodVillage1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 4, "x": -2752.0, "z": 1792.0, "px": 1578.3, "py": 2353.8}, {"loc_id": 3689, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 2756.7, "z": -3714.8, "px": 2518.5, "py": 1414.0}, {"loc_id": 3691, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": -3460.7, "z": 6716.9, "px": 1457.4, "py": 3194.4}, {"loc_id": 3692, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": 3386.7, "z": -2688.7, "px": 2626.0, "py": 1589.1}, {"loc_id": 3692, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 3386.7, "z": -2688.7, "px": 2626.0, "py": 1589.1}, {"loc_id": 3694, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -572.7, "z": 582.5, "px": 1950.3, "py": 2147.4}, {"loc_id": 3697, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": 6713.5, "z": 4869.0, "px": 3193.8, "py": 2879.0}, {"loc_id": 3698, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 1211.3, "z": -5761.3, "px": 2254.7, "py": 1064.7}, {"loc_id": 3700, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": -6919.8, "z": 2370.7, "px": 867.0, "py": 2452.6}, {"loc_id": 3705, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": -5948.8, "z": 4473.6, "px": 1032.7, "py": 2811.5}, {"loc_id": 3706, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -5254.2, "z": 378.8, "px": 1151.3, "py": 2112.6}, {"loc_id": 3709, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": 2939.3, "z": 381.0, "px": 2549.6, "py": 2113.0}, {"loc_id": 3709, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 2939.3, "z": 381.0, "px": 2549.6, "py": 2113.0}, {"loc_id": 3713, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 2237.7, "z": 1601.7, "px": 2429.9, "py": 2321.4}, {"loc_id": 3717, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": -2362.6, "z": -69.7, "px": 1644.8, "py": 2036.1}, {"loc_id": 3717, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -2362.6, "z": -69.7, "px": 1644.8, "py": 2036.1}, {"loc_id": 3721, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 197.6, "z": -4409.8, "px": 2081.7, "py": 1295.4}, {"loc_id": 3724, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 8580.7, "z": -2168.7, "px": 3512.4, "py": 1677.9}, {"loc_id": 3727, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 2051.3, "z": 3580.5, "px": 2398.1, "py": 2659.1}, {"loc_id": 3732, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 894.7, "z": 5126.4, "px": 2200.7, "py": 2922.9}, {"loc_id": 3737, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": 699.1, "z": 5376.2, "px": 2167.3, "py": 2965.5}, {"loc_id": 3743, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 2500.4, "z": -1413.7, "px": 2474.7, "py": 1806.7}, {"loc_id": 3746, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -4097.4, "z": -6395.4, "px": 1348.7, "py": 956.5}, {"loc_id": 3747, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 2493.6, "z": -4479.4, "px": 2473.6, "py": 1283.5}, {"loc_id": 3753, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": -7482.5, "z": -1856.3, "px": 771.0, "py": 1731.2}, {"loc_id": 3753, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -7482.5, "z": -1856.3, "px": 771.0, "py": 1731.2}, {"loc_id": 3754, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -1665.4, "z": 7680.5, "px": 1763.8, "py": 3358.8}, {"loc_id": 3755, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": 1793.5, "z": -4609.6, "px": 2354.1, "py": 1261.3}, {"loc_id": 3755, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 1793.5, "z": -4609.6, "px": 2354.1, "py": 1261.3}, {"loc_id": 3756, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": -3385.3, "z": 4344.0, "px": 1470.2, "py": 2789.4}, {"loc_id": 3756, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -3385.3, "z": 4344.0, "px": 1470.2, "py": 2789.4}, {"loc_id": 3758, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 2043.5, "z": 891.3, "px": 2396.8, "py": 2200.1}, {"loc_id": 3761, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": 2617.2, "z": -3463.9, "px": 2494.7, "py": 1456.8}, {"loc_id": 3762, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -8130.1, "z": 2744.9, "px": 660.5, "py": 2516.5}, {"loc_id": 3764, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": -9210.9, "z": 2749.0, "px": 476.0, "py": 2517.2}, {"loc_id": 3764, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -9210.9, "z": 2749.0, "px": 476.0, "py": 2517.2}, {"loc_id": 3767, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": -3910.3, "z": -2556.5, "px": 1380.6, "py": 1611.7}, {"loc_id": 3768, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 8256.0, "z": 256.4, "px": 3457.0, "py": 2091.8}, {"loc_id": 3769, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -4735.0, "z": 5820.1, "px": 1239.9, "py": 3041.3}, {"loc_id": 3770, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -1537.8, "z": -1788.4, "px": 1785.5, "py": 1742.8}, {"loc_id": 3771, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -2176.7, "z": 769.5, "px": 1676.5, "py": 2179.3}, {"loc_id": 3774, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 2496.5, "z": 5191.5, "px": 2474.1, "py": 2934.0}, {"loc_id": 3775, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 3011.2, "z": -2307.9, "px": 2561.9, "py": 1654.1}, {"loc_id": 3783, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": -829.5, "z": -0.2, "px": 1906.4, "py": 2048.0}, {"loc_id": 3783, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -829.5, "z": -0.2, "px": 1906.4, "py": 2048.0}, {"loc_id": 3784, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -8321.6, "z": -1671.9, "px": 627.8, "py": 1762.7}, {"loc_id": 3786, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": -6713.9, "z": -4667.5, "px": 902.2, "py": 1251.4}, {"loc_id": 3786, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -6713.9, "z": -4667.5, "px": 902.2, "py": 1251.4}, {"loc_id": 3787, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": 4221.6, "z": -249.2, "px": 2768.5, "py": 2005.5}, {"loc_id": 3789, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -1147.2, "z": -1093.0, "px": 1852.2, "py": 1861.5}, {"loc_id": 3790, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 8190.4, "z": 1.8, "px": 3445.8, "py": 2048.3}, {"loc_id": 3791, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": -3714.2, "z": 6916.4, "px": 1414.1, "py": 3228.4}, {"loc_id": 3794, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 2878.4, "z": -4863.1, "px": 2539.2, "py": 1218.0}, {"loc_id": 3795, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": 6850.4, "z": -3901.3, "px": 3217.1, "py": 1382.2}, {"loc_id": 3798, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -8958.8, "z": 3075.5, "px": 519.0, "py": 2572.9}, {"loc_id": 3799, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 2499.3, "z": 1410.3, "px": 2474.5, "py": 2288.7}, {"loc_id": 3800, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 960.1, "z": 3394.0, "px": 2211.9, "py": 2627.2}, {"loc_id": 3803, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": -9670.8, "z": 582.3, "px": 397.5, "py": 2147.4}, {"loc_id": 3805, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -4.8, "z": -4738.9, "px": 2047.2, "py": 1239.2}, {"loc_id": 3807, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": -1275.9, "z": -5382.8, "px": 1830.2, "py": 1129.3}, {"loc_id": 3812, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -5566.6, "z": -5180.0, "px": 1098.0, "py": 1163.9}, {"loc_id": 3816, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 898.8, "z": -5306.1, "px": 2201.4, "py": 1142.4}, {"loc_id": 3821, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -6919.7, "z": 260.0, "px": 867.0, "py": 2092.4}, {"loc_id": 3822, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 2750.4, "z": -4601.0, "px": 2517.4, "py": 1262.8}, {"loc_id": 3826, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": 2173.8, "z": 3842.8, "px": 2419.0, "py": 2703.8}, {"loc_id": 3828, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": 7804.1, "z": -765.8, "px": 3379.9, "py": 1917.3}, {"loc_id": 3830, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -3133.3, "z": 6651.7, "px": 1513.3, "py": 3183.2}, {"loc_id": 3833, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": 8258.3, "z": -4158.8, "px": 3457.4, "py": 1338.2}, {"loc_id": 3833, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 8258.3, "z": -4158.8, "px": 3457.4, "py": 1338.2}, {"loc_id": 3836, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -5689.6, "z": 4606.9, "px": 1077.0, "py": 2834.2}, {"loc_id": 3838, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 4, "x": 4282.8, "z": 6715.4, "px": 2778.9, "py": 3194.1}, {"loc_id": 3844, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -6713.3, "z": 445.6, "px": 902.3, "py": 2124.0}, {"loc_id": 3845, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 5953.2, "z": -250.6, "px": 3064.0, "py": 2005.2}, {"loc_id": 3852, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -7224.3, "z": -1976.6, "px": 815.1, "py": 1710.7}, {"loc_id": 3856, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 5306.9, "z": 6399.7, "px": 2953.7, "py": 3140.2}, {"loc_id": 4109, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 4, "x": 2942.1, "z": 903.8, "px": 2550.1, "py": 2202.2}, {"loc_id": 4109, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 2942.1, "z": 903.8, "px": 2550.1, "py": 2202.2}, {"loc_id": 4111, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 5448.4, "z": -1157.3, "px": 2977.9, "py": 1850.5}, {"loc_id": 4112, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 513.6, "z": 5365.1, "px": 2135.7, "py": 2963.6}, {"loc_id": 4113, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 4, "x": 2939.2, "z": -125.2, "px": 2549.6, "py": 2026.6}, {"loc_id": 4114, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -8966.8, "z": 2952.0, "px": 517.7, "py": 2551.8}, {"loc_id": 4114, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 4, "x": -8966.8, "z": 2952.0, "px": 517.7, "py": 2551.8}, {"loc_id": 4115, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 4, "x": -5001.8, "z": 777.7, "px": 1194.4, "py": 2180.7}, {"loc_id": 4120, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -6462.9, "z": -4733.3, "px": 945.0, "py": 1240.2}, {"loc_id": 4120, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 4, "x": -6462.9, "z": -4733.3, "px": 945.0, "py": 1240.2}, {"loc_id": 4125, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -7167.7, "z": 2685.6, "px": 824.7, "py": 2506.3}, {"loc_id": 4127, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 4, "x": -9343.8, "z": 2946.3, "px": 453.3, "py": 2550.8}, {"loc_id": 4128, "loc_name": "Crypt3", "item": "Pickable: MushroomYellow", "count": 4, "x": -4281.1, "z": 1733.4, "px": 1317.4, "py": 2343.8}, {"loc_id": 4128, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -4281.1, "z": 1733.4, "px": 1317.4, "py": 2343.8}, {"loc_id": 4130, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 4938.7, "z": -2114.9, "px": 2890.9, "py": 1687.1}, {"loc_id": 4131, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 4, "x": -5766.6, "z": -5058.9, "px": 1063.8, "py": 1184.6}, {"loc_id": 4132, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 1077.3, "z": -5511.5, "px": 2231.9, "py": 1107.4}, {"loc_id": 4133, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 2500.2, "z": 1219.2, "px": 2474.7, "py": 2256.1}, {"loc_id": 4135, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 2434.5, "z": 5052.4, "px": 2463.5, "py": 2910.3}, {"loc_id": 4137, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 1785.0, "z": -1220.8, "px": 2352.6, "py": 1839.7}, {"loc_id": 4137, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 4, "x": 1785.0, "z": -1220.8, "px": 2352.6, "py": 1839.7}, {"loc_id": 4142, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 4, "x": -2429.2, "z": -118.6, "px": 1633.4, "py": 2027.8}, {"loc_id": 4145, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 4, "x": 761.7, "z": 262.0, "px": 2178.0, "py": 2092.7}, {"loc_id": 4147, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -9157.9, "z": 3333.6, "px": 485.1, "py": 2616.9}, {"loc_id": 4147, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 4, "x": -9157.9, "z": 3333.6, "px": 485.1, "py": 2616.9}, {"loc_id": 4148, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 4, "x": 2038.7, "z": -1161.5, "px": 2395.9, "py": 1849.8}, {"loc_id": 4148, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 4, "x": 2038.7, "z": -1161.5, "px": 2395.9, "py": 1849.8}, {"loc_id": 4156, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 6653.1, "z": 4920.0, "px": 3183.5, "py": 2887.7}, {"loc_id": 4159, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 4, "x": -2231.0, "z": 4486.8, "px": 1667.2, "py": 2813.7}, {"loc_id": 4161, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 6406.0, "z": 3253.2, "px": 3141.3, "py": 2603.2}, {"loc_id": 4162, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 4, "x": 7496.6, "z": -4341.8, "px": 3327.4, "py": 1307.0}, {"loc_id": 4166, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 5699.1, "z": 1534.6, "px": 3020.6, "py": 2309.9}, {"loc_id": 4171, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 4, "x": -4031.3, "z": -2490.3, "px": 1360.0, "py": 1623.0}, {"loc_id": 4173, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 4153.2, "z": 3769.4, "px": 2756.8, "py": 2691.3}, {"loc_id": 4173, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 4, "x": 4153.2, "z": 3769.4, "px": 2756.8, "py": 2691.3}, {"loc_id": 4176, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 4, "x": 899.2, "z": 3392.5, "px": 2201.5, "py": 2627.0}, {"loc_id": 4176, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 4, "x": 899.2, "z": 3392.5, "px": 2201.5, "py": 2627.0}, {"loc_id": 4181, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 4, "x": 842.8, "z": -3.9, "px": 2191.8, "py": 2047.3}, {"loc_id": 4181, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 842.8, "z": -3.9, "px": 2191.8, "py": 2047.3}, {"loc_id": 4181, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 4, "x": 842.8, "z": -3.9, "px": 2191.8, "py": 2047.3}, {"loc_id": 4182, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 4, "x": 3142.6, "z": -1276.7, "px": 2584.3, "py": 1830.1}, {"loc_id": 4183, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -7557.0, "z": -4745.1, "px": 758.3, "py": 1238.2}, {"loc_id": 4186, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 7875.4, "z": -2620.2, "px": 3392.1, "py": 1600.8}, {"loc_id": 4187, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 4, "x": 2357.9, "z": -1343.9, "px": 2450.4, "py": 1818.6}, {"loc_id": 4188, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 3456.5, "z": -2434.8, "px": 2637.9, "py": 1632.5}, {"loc_id": 4189, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 2811.4, "z": -4794.0, "px": 2527.8, "py": 1229.8}, {"loc_id": 4190, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 2058.7, "z": 1015.3, "px": 2399.4, "py": 2221.3}, {"loc_id": 4190, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 2058.7, "z": 1015.3, "px": 2399.4, "py": 2221.3}, {"loc_id": 4191, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 4, "x": 3893.5, "z": 4862.5, "px": 2712.5, "py": 2877.9}, {"loc_id": 4197, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 4, "x": -8693.4, "z": -457.0, "px": 564.3, "py": 1970.0}, {"loc_id": 4199, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 2884.2, "z": -2239.6, "px": 2540.2, "py": 1665.8}, {"loc_id": 4200, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 2247.2, "z": 6136.8, "px": 2431.5, "py": 3095.3}, {"loc_id": 4201, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 4, "x": 1916.7, "z": 7036.3, "px": 2375.1, "py": 3248.9}, {"loc_id": 4202, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 4, "x": -8186.5, "z": 2743.4, "px": 650.8, "py": 2516.2}, {"loc_id": 4204, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 3832.5, "z": 3901.3, "px": 2702.1, "py": 2713.8}, {"loc_id": 4205, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 4, "x": -7223.4, "z": -4729.8, "px": 815.2, "py": 1240.8}, {"loc_id": 4206, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 4, "x": 7049.9, "z": -4285.7, "px": 3251.2, "py": 1316.6}, {"loc_id": 4208, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 2693.9, "z": -3652.1, "px": 2507.8, "py": 1424.7}, {"loc_id": 4209, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 4603.6, "z": -5193.7, "px": 2833.7, "py": 1161.6}, {"loc_id": 4211, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 4, "x": 1342.8, "z": -5442.2, "px": 2277.2, "py": 1119.2}, {"loc_id": 4212, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -5377.4, "z": -2041.4, "px": 1130.3, "py": 1699.6}, {"loc_id": 4213, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 4, "x": -9607.3, "z": 584.3, "px": 408.4, "py": 2147.7}, {"loc_id": 4214, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 4, "x": 8389.3, "z": 330.5, "px": 3479.8, "py": 2104.4}, {"loc_id": 4217, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 4, "x": 2361.2, "z": 3838.0, "px": 2451.0, "py": 2703.0}, {"loc_id": 4218, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -2378.8, "z": 4597.9, "px": 1642.0, "py": 2832.7}, {"loc_id": 4220, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 8705.3, "z": -3714.4, "px": 3533.7, "py": 1414.1}, {"loc_id": 4221, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -4150.3, "z": -117.1, "px": 1339.7, "py": 2028.0}, {"loc_id": 4223, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 1789.2, "z": 6727.5, "px": 2353.4, "py": 3196.2}, {"loc_id": 4223, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 1789.2, "z": 6727.5, "px": 2353.4, "py": 3196.2}, {"loc_id": 4225, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 4, "x": -3832.3, "z": -2556.2, "px": 1394.0, "py": 1611.7}, {"loc_id": 4226, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 4, "x": 8135.3, "z": -2488.2, "px": 3436.4, "py": 1623.3}, {"loc_id": 4228, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 2681.5, "z": -4486.6, "px": 2505.6, "py": 1282.3}, {"loc_id": 4228, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 2681.5, "z": -4486.6, "px": 2505.6, "py": 1282.3}, {"loc_id": 4232, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 4, "x": 5628.7, "z": -1013.6, "px": 3008.6, "py": 1875.0}, {"loc_id": 4232, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 5628.7, "z": -1013.6, "px": 3008.6, "py": 1875.0}, {"loc_id": 4235, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 4286.9, "z": -838.4, "px": 2779.6, "py": 1904.9}, {"loc_id": 4235, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 4, "x": 4286.9, "z": -838.4, "px": 2779.6, "py": 1904.9}, {"loc_id": 4236, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -5256.6, "z": 5576.3, "px": 1150.9, "py": 2999.7}, {"loc_id": 4240, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 4, "x": -326.5, "z": -4228.1, "px": 1992.3, "py": 1326.4}, {"loc_id": 4242, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 4, "x": -2167.4, "z": 702.4, "px": 1678.1, "py": 2167.9}, {"loc_id": 4243, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 579.7, "z": 185.9, "px": 2146.9, "py": 2079.7}, {"loc_id": 4243, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 4, "x": 579.7, "z": 185.9, "px": 2146.9, "py": 2079.7}, {"loc_id": 4244, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -5828.6, "z": 4542.6, "px": 1053.3, "py": 2823.3}, {"loc_id": 4244, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 4, "x": -5828.6, "z": 4542.6, "px": 1053.3, "py": 2823.3}, {"loc_id": 4247, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 4, "x": 2744.6, "z": 5254.7, "px": 2516.4, "py": 2944.8}, {"loc_id": 4247, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 2744.6, "z": 5254.7, "px": 2516.4, "py": 2944.8}, {"loc_id": 4256, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 2299.3, "z": 1538.2, "px": 2440.4, "py": 2310.5}, {"loc_id": 4256, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 4, "x": 2299.3, "z": 1538.2, "px": 2440.4, "py": 2310.5}, {"loc_id": 4259, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 7996.1, "z": -2755.7, "px": 3412.7, "py": 1577.7}, {"loc_id": 4259, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 4, "x": 7996.1, "z": -2755.7, "px": 3412.7, "py": 1577.7}, {"loc_id": 4259, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 4, "x": 7996.1, "z": -2755.7, "px": 3412.7, "py": 1577.7}, {"loc_id": 4265, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 2375.4, "z": -1605.8, "px": 2453.4, "py": 1773.9}, {"loc_id": 4267, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -3721.4, "z": 6782.4, "px": 1412.9, "py": 3205.5}, {"loc_id": 4269, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 4, "x": -1795.6, "z": 3065.6, "px": 1741.6, "py": 2571.2}, {"loc_id": 4270, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -3338.7, "z": -2428.5, "px": 1478.2, "py": 1633.5}, {"loc_id": 4270, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 4, "x": -3338.7, "z": -2428.5, "px": 1478.2, "py": 1633.5}, {"loc_id": 4272, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -9543.9, "z": -2625.6, "px": 419.2, "py": 1599.9}, {"loc_id": 4272, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -9543.9, "z": -2625.6, "px": 419.2, "py": 1599.9}, {"loc_id": 4273, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 4, "x": 1912.7, "z": 6784.9, "px": 2374.4, "py": 3206.0}, {"loc_id": 4276, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -1415.9, "z": -2056.9, "px": 1806.4, "py": 1697.0}, {"loc_id": 4276, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 4, "x": -1415.9, "z": -2056.9, "px": 1806.4, "py": 1697.0}, {"loc_id": 4278, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 4, "x": 2569.6, "z": 4988.7, "px": 2486.5, "py": 2899.4}, {"loc_id": 4279, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 4, "x": 3849.9, "z": 3584.6, "px": 2705.0, "py": 2659.8}, {"loc_id": 4279, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 3849.9, "z": 3584.6, "px": 2705.0, "py": 2659.8}, {"loc_id": 4279, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 4, "x": 3849.9, "z": 3584.6, "px": 2705.0, "py": 2659.8}, {"loc_id": 4280, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -2302.1, "z": -3017.9, "px": 1655.1, "py": 1532.9}, {"loc_id": 4282, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -6016.3, "z": 4606.7, "px": 1021.2, "py": 2834.2}, {"loc_id": 4283, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 4, "x": -1219.6, "z": -1141.5, "px": 1839.9, "py": 1853.2}, {"loc_id": 4287, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -4214.3, "z": -2304.7, "px": 1328.8, "py": 1654.7}, {"loc_id": 4289, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 7161.4, "z": -4478.0, "px": 3270.2, "py": 1283.8}, {"loc_id": 4290, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -8455.7, "z": -1866.4, "px": 604.9, "py": 1729.5}, {"loc_id": 4293, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 2745.6, "z": 455.2, "px": 2516.6, "py": 2125.7}, {"loc_id": 4296, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 4, "x": -2248.7, "z": 1737.9, "px": 1664.2, "py": 2344.6}, {"loc_id": 4303, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 4, "x": -516.3, "z": 325.0, "px": 1959.9, "py": 2103.5}, {"loc_id": 4304, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 4, "x": 9.6, "z": -4220.6, "px": 2049.6, "py": 1327.7}, {"loc_id": 4307, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 5049.3, "z": 3338.7, "px": 2909.7, "py": 2617.8}, {"loc_id": 4308, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": 5503.2, "z": -2502.2, "px": 2987.2, "py": 1621.0}, {"loc_id": 4310, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 4, "x": -1786.0, "z": 4667.8, "px": 1743.2, "py": 2844.6}, {"loc_id": 4311, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": 2953.2, "z": -2112.1, "px": 2552.0, "py": 1687.5}, {"loc_id": 4313, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 4, "x": 968.2, "z": 5495.6, "px": 2213.2, "py": 2985.9}, {"loc_id": 4314, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": -6971.4, "z": 2491.2, "px": 858.2, "py": 2473.2}, {"loc_id": 4315, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 4, "x": 7231.3, "z": 1270.3, "px": 3282.1, "py": 2264.8}, {"loc_id": 4316, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 7689.0, "z": -3067.6, "px": 3360.3, "py": 1524.5}, {"loc_id": 4316, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": 7689.0, "z": -3067.6, "px": 3360.3, "py": 1524.5}, {"loc_id": 4317, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": 2230.8, "z": 1097.7, "px": 2428.7, "py": 2235.3}, {"loc_id": 4327, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 959.4, "z": 5365.3, "px": 2211.7, "py": 2963.7}, {"loc_id": 4329, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 7222.2, "z": -4105.2, "px": 3280.6, "py": 1347.4}, {"loc_id": 4332, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -9217.9, "z": -2808.8, "px": 474.8, "py": 1568.6}, {"loc_id": 4338, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 4, "x": -1467.5, "z": -1670.1, "px": 1797.5, "py": 1763.0}, {"loc_id": 4338, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": -1467.5, "z": -1670.1, "px": 1797.5, "py": 1763.0}, {"loc_id": 4342, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 4, "x": -8323.5, "z": -1738.5, "px": 627.5, "py": 1751.3}, {"loc_id": 4343, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 3840.5, "z": 1278.9, "px": 2703.4, "py": 2266.3}, {"loc_id": 4347, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 4, "x": 2690.0, "z": -4345.6, "px": 2507.1, "py": 1306.4}, {"loc_id": 4351, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 4, "x": -6072.7, "z": 1407.4, "px": 1011.6, "py": 2288.2}, {"loc_id": 4353, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -3525.6, "z": 6778.0, "px": 1446.3, "py": 3204.8}, {"loc_id": 4355, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 2367.4, "z": 1284.3, "px": 2452.0, "py": 2267.2}, {"loc_id": 4355, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 4, "x": 2367.4, "z": 1284.3, "px": 2452.0, "py": 2267.2}, {"loc_id": 4356, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 4, "x": 4296.6, "z": 6795.0, "px": 2781.3, "py": 3207.7}, {"loc_id": 4357, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 4, "x": 7558.7, "z": -2818.9, "px": 3338.0, "py": 1566.9}, {"loc_id": 4358, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 8125.6, "z": -196.7, "px": 3434.8, "py": 2014.4}, {"loc_id": 4360, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -3975.9, "z": -574.4, "px": 1369.4, "py": 1950.0}, {"loc_id": 4360, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": -3975.9, "z": -574.4, "px": 1369.4, "py": 1950.0}, {"loc_id": 4361, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 4, "x": -6843.9, "z": 501.8, "px": 880.0, "py": 2133.6}, {"loc_id": 4366, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 1930.9, "z": 1147.1, "px": 2377.5, "py": 2243.8}, {"loc_id": 4366, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 1930.9, "z": 1147.1, "px": 2377.5, "py": 2243.8}, {"loc_id": 4371, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 4, "x": 2562.5, "z": -4486.3, "px": 2485.3, "py": 1282.3}, {"loc_id": 4372, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 4, "x": 5112.1, "z": 3129.1, "px": 2920.5, "py": 2582.0}, {"loc_id": 4374, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 4, "x": 506.0, "z": 4674.8, "px": 2134.4, "py": 2845.8}, {"loc_id": 4374, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 506.0, "z": 4674.8, "px": 2134.4, "py": 2845.8}, {"loc_id": 4376, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 4, "x": 2488.8, "z": -1352.3, "px": 2472.8, "py": 1817.2}, {"loc_id": 4377, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 4, "x": 4170.2, "z": -1086.8, "px": 2759.7, "py": 1862.5}, {"loc_id": 4378, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": -1334.3, "z": -1916.0, "px": 1820.3, "py": 1721.0}, {"loc_id": 4382, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -7489.9, "z": -4736.3, "px": 769.7, "py": 1239.7}, {"loc_id": 4384, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 4, "x": 1482.1, "z": 6272.2, "px": 2300.9, "py": 3118.5}, {"loc_id": 4385, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 4, "x": 2042.6, "z": 3914.5, "px": 2396.6, "py": 2716.1}, {"loc_id": 4386, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 4, "x": 8323.7, "z": 195.3, "px": 3468.6, "py": 2081.3}, {"loc_id": 4387, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 5190.4, "z": 5056.9, "px": 2933.8, "py": 2911.0}, {"loc_id": 4389, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 4, "x": 7416.7, "z": 1096.8, "px": 3313.8, "py": 2235.2}, {"loc_id": 4390, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 2373.4, "z": 3769.6, "px": 2453.1, "py": 2691.3}, {"loc_id": 4391, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 4, "x": -6849.0, "z": 3786.3, "px": 879.1, "py": 2694.2}, {"loc_id": 4392, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 2299.3, "z": 5187.5, "px": 2440.4, "py": 2933.3}, {"loc_id": 4392, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": 2299.3, "z": 5187.5, "px": 2440.4, "py": 2933.3}, {"loc_id": 4394, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -8376.6, "z": 636.4, "px": 618.4, "py": 2156.6}, {"loc_id": 4404, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 4, "x": 1985.8, "z": -6334.0, "px": 2386.9, "py": 967.0}, {"loc_id": 4405, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 4, "x": -6005.8, "z": 4800.9, "px": 1023.0, "py": 2867.4}, {"loc_id": 4406, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": -6645.1, "z": 3574.4, "px": 913.9, "py": 2658.0}, {"loc_id": 4408, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": -68.7, "z": -4600.0, "px": 2036.3, "py": 1262.9}, {"loc_id": 4409, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -4025.2, "z": -322.6, "px": 1361.0, "py": 1992.9}, {"loc_id": 4409, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": -4025.2, "z": -322.6, "px": 1361.0, "py": 1992.9}, {"loc_id": 4415, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 4, "x": -5956.5, "z": -70.0, "px": 1031.4, "py": 2036.1}, {"loc_id": 4416, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -3705.2, "z": 7113.6, "px": 1415.6, "py": 3262.1}, {"loc_id": 4416, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": -3705.2, "z": 7113.6, "px": 1415.6, "py": 3262.1}, {"loc_id": 4417, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": 7298.0, "z": -4547.5, "px": 3293.5, "py": 1271.9}, {"loc_id": 4421, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 5510.4, "z": -969.9, "px": 2988.4, "py": 1882.5}, {"loc_id": 4423, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -5955.5, "z": 4667.7, "px": 1031.6, "py": 2844.6}, {"loc_id": 4424, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 7353.4, "z": -4420.3, "px": 3303.0, "py": 1293.6}, {"loc_id": 4424, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 4, "x": 7353.4, "z": -4420.3, "px": 3303.0, "py": 1293.6}, {"loc_id": 4425, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 4, "x": 2552.7, "z": 258.9, "px": 2483.7, "py": 2092.2}, {"loc_id": 4426, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 8777.6, "z": -1335.1, "px": 3546.0, "py": 1820.1}, {"loc_id": 4427, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 1735.8, "z": -1148.4, "px": 2344.2, "py": 1852.0}, {"loc_id": 4428, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -59.6, "z": -1013.7, "px": 2037.8, "py": 1875.0}, {"loc_id": 4428, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -59.6, "z": -1013.7, "px": 2037.8, "py": 1875.0}, {"loc_id": 4429, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 5067.0, "z": 377.9, "px": 2912.8, "py": 2112.5}, {"loc_id": 4430, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -4101.4, "z": -2312.7, "px": 1348.0, "py": 1653.3}, {"loc_id": 4431, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 5367.0, "z": 522.6, "px": 2964.0, "py": 2137.2}, {"loc_id": 4431, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 4, "x": 5367.0, "z": 522.6, "px": 2964.0, "py": 2137.2}, {"loc_id": 4432, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 4, "x": -890.1, "z": -5825.4, "px": 1896.1, "py": 1053.8}, {"loc_id": 4433, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 4, "x": 6602.0, "z": 4795.5, "px": 3174.7, "py": 2866.4}, {"loc_id": 4435, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 4406.6, "z": 6657.9, "px": 2800.1, "py": 3184.3}, {"loc_id": 4437, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 6726.1, "z": 4922.7, "px": 3195.9, "py": 2888.1}, {"loc_id": 4438, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 4, "x": -7037.2, "z": 246.7, "px": 847.0, "py": 2090.1}, {"loc_id": 4440, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 4425.2, "z": 6792.0, "px": 2803.2, "py": 3207.2}, {"loc_id": 4447, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": 6773.8, "z": 4795.9, "px": 3204.1, "py": 2866.5}, {"loc_id": 4450, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 4, "x": -8954.4, "z": 3016.4, "px": 519.8, "py": 2562.8}, {"loc_id": 4450, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": -8954.4, "z": 3016.4, "px": 519.8, "py": 2562.8}, {"loc_id": 4451, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 4, "x": -3511.8, "z": 4799.5, "px": 1448.7, "py": 2867.1}, {"loc_id": 4452, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -5703.6, "z": 4931.1, "px": 1074.6, "py": 2889.6}, {"loc_id": 4452, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 4, "x": -5703.6, "z": 4931.1, "px": 1074.6, "py": 2889.6}, {"loc_id": 4453, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 4, "x": -3274.2, "z": 4359.9, "px": 1489.2, "py": 2792.1}, {"loc_id": 4453, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 4, "x": -3274.2, "z": 4359.9, "px": 1489.2, "py": 2792.1}, {"loc_id": 4453, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": -3274.2, "z": 4359.9, "px": 1489.2, "py": 2792.1}, {"loc_id": 4454, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 9791.7, "z": -1482.1, "px": 3719.1, "py": 1795.1}, {"loc_id": 4455, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 9526.9, "z": 1407.6, "px": 3673.9, "py": 2288.2}, {"loc_id": 4455, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": 9526.9, "z": 1407.6, "px": 3673.9, "py": 2288.2}, {"loc_id": 4456, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": 7751.7, "z": -2687.8, "px": 3371.0, "py": 1589.3}, {"loc_id": 4459, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": 584.4, "z": 4475.8, "px": 2147.7, "py": 2811.9}, {"loc_id": 4463, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 648.8, "z": 309.0, "px": 2158.7, "py": 2100.7}, {"loc_id": 4467, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 4, "x": 3511.5, "z": 3513.7, "px": 2647.3, "py": 2647.7}, {"loc_id": 4468, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 4, "x": 3901.0, "z": 1013.6, "px": 2713.8, "py": 2221.0}, {"loc_id": 4470, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -1216.5, "z": 2569.6, "px": 1840.4, "py": 2486.5}, {"loc_id": 4472, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": 378.2, "z": 5310.1, "px": 2112.5, "py": 2954.3}, {"loc_id": 4473, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 4, "x": -1352.6, "z": -1536.9, "px": 1817.2, "py": 1785.7}, {"loc_id": 4474, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": -6838.8, "z": 5306.6, "px": 880.8, "py": 2953.7}, {"loc_id": 4475, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 4, "x": 1734.3, "z": -4545.6, "px": 2344.0, "py": 1272.2}, {"loc_id": 4480, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -124.8, "z": -4743.5, "px": 2026.7, "py": 1238.4}, {"loc_id": 4484, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 9404.2, "z": 56.3, "px": 3653.0, "py": 2057.6}, {"loc_id": 4485, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 4, "x": 3648.4, "z": 197.1, "px": 2670.7, "py": 2081.6}, {"loc_id": 4489, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 4, "x": 8070.1, "z": 59.3, "px": 3425.3, "py": 2058.1}, {"loc_id": 4491, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -2042.1, "z": 510.0, "px": 1699.5, "py": 2135.0}, {"loc_id": 4492, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": 831.2, "z": 5252.1, "px": 2189.9, "py": 2944.4}, {"loc_id": 4495, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 4, "x": -8956.0, "z": 2882.7, "px": 519.5, "py": 2540.0}, {"loc_id": 4495, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": -8956.0, "z": 2882.7, "px": 519.5, "py": 2540.0}, {"loc_id": 4496, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -886.5, "z": 518.3, "px": 1896.7, "py": 2136.5}, {"loc_id": 4496, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 4, "x": -886.5, "z": 518.3, "px": 1896.7, "py": 2136.5}, {"loc_id": 4498, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 1098.3, "z": -5692.8, "px": 2235.4, "py": 1076.4}, {"loc_id": 4499, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": 450.4, "z": 440.0, "px": 2124.9, "py": 2123.1}, {"loc_id": 4501, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 4, "x": 1659.5, "z": -898.7, "px": 2331.2, "py": 1894.6}, {"loc_id": 4504, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 4, "x": 2173.2, "z": -965.9, "px": 2418.9, "py": 1883.2}, {"loc_id": 4505, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 4, "x": -9609.6, "z": 699.3, "px": 408.0, "py": 2167.3}, {"loc_id": 4507, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 4, "x": 8121.8, "z": -3975.7, "px": 3434.1, "py": 1369.5}, {"loc_id": 5517, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 4, "x": 2492.0, "z": -2745.2, "px": 2473.3, "py": 1579.5}, {"loc_id": 5521, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 4, "x": 2564.6, "z": 8828.6, "px": 2485.7, "py": 3554.7}, {"loc_id": 5522, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 4, "x": -2048.4, "z": -314.0, "px": 1698.4, "py": 1994.4}, {"loc_id": 5523, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 4, "x": -131.8, "z": -1275.8, "px": 2025.5, "py": 1830.3}, {"loc_id": 5529, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 4, "x": 4413.0, "z": -1974.5, "px": 2801.2, "py": 1711.0}, {"loc_id": 5530, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 4, "x": 2102.4, "z": 4680.0, "px": 2406.8, "py": 2846.7}, {"loc_id": 5532, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 4, "x": 1283.5, "z": 6792.2, "px": 2267.1, "py": 3207.2}, {"loc_id": 5534, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 4, "x": 6075.1, "z": 4605.5, "px": 3084.8, "py": 2834.0}, {"loc_id": 5547, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 4, "x": -9910.3, "z": -707.8, "px": 356.6, "py": 1927.2}, {"loc_id": 5552, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 4, "x": 2295.8, "z": -2691.5, "px": 2439.8, "py": 1588.7}, {"loc_id": 5554, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 4, "x": 2629.6, "z": 585.4, "px": 2496.8, "py": 2147.9}, {"loc_id": 5558, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 4, "x": -3413.4, "z": -1840.1, "px": 1465.4, "py": 1734.0}, {"loc_id": 5560, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 4, "x": 3695.7, "z": 4028.7, "px": 2678.7, "py": 2735.6}, {"loc_id": 5566, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 4, "x": 822.5, "z": 300.3, "px": 2188.4, "py": 2099.3}, {"loc_id": 5567, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 4, "x": -5378.4, "z": -2002.3, "px": 1130.1, "py": 1706.3}, {"loc_id": 5574, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 4, "x": 8451.1, "z": 213.9, "px": 3490.3, "py": 2084.5}, {"loc_id": 5576, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 4, "x": -1535.1, "z": -1902.5, "px": 1786.0, "py": 1723.3}, {"loc_id": 5582, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 4, "x": 7924.0, "z": -2859.5, "px": 3400.4, "py": 1560.0}, {"loc_id": 5585, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 4, "x": -7296.7, "z": -1848.9, "px": 802.7, "py": 1732.5}, {"loc_id": 5590, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 4, "x": 8134.3, "z": 1797.2, "px": 3436.3, "py": 2354.7}, {"loc_id": 5602, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 4, "x": 2356.3, "z": 4841.7, "px": 2450.1, "py": 2874.3}, {"loc_id": 5605, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 4, "x": -3918.0, "z": -2624.8, "px": 1379.3, "py": 1600.0}, {"loc_id": 5607, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 4, "x": 7684.4, "z": -704.5, "px": 3359.5, "py": 1927.8}, {"loc_id": 5609, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 4, "x": 2965.6, "z": 7252.0, "px": 2554.1, "py": 3285.7}, {"loc_id": 5611, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 4, "x": 1899.4, "z": -4350.4, "px": 2372.2, "py": 1305.5}, {"loc_id": 5619, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 4, "x": 2318.7, "z": 1459.7, "px": 2443.7, "py": 2297.1}, {"loc_id": 5623, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 4, "x": -2253.0, "z": -3079.9, "px": 1663.5, "py": 1522.4}, {"loc_id": 5627, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 4, "x": 390.4, "z": 5590.9, "px": 2114.6, "py": 3002.2}, {"loc_id": 5638, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 4, "x": 2235.4, "z": -3402.5, "px": 2429.5, "py": 1467.3}, {"loc_id": 5640, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 4, "x": 2966.3, "z": -2380.8, "px": 2554.2, "py": 1641.7}, {"loc_id": 5650, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 4, "x": -7349.8, "z": 2545.5, "px": 793.6, "py": 2482.4}, {"loc_id": 5657, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 4, "x": -9290.4, "z": -2609.2, "px": 462.4, "py": 1602.7}, {"loc_id": 5672, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 4, "x": 7699.0, "z": -2691.5, "px": 3362.0, "py": 1588.7}, {"loc_id": 5675, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 4, "x": -2242.6, "z": 726.5, "px": 1665.3, "py": 2172.0}, {"loc_id": 5680, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 4, "x": 847.9, "z": 5369.6, "px": 2192.7, "py": 2964.4}, {"loc_id": 5695, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 4, "x": 1967.5, "z": -887.3, "px": 2383.8, "py": 1896.6}, {"loc_id": 5698, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 4, "x": -4112.1, "z": -108.1, "px": 1346.2, "py": 2029.6}, {"loc_id": 5701, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 4, "x": 8138.3, "z": -2643.6, "px": 3436.9, "py": 1596.8}, {"loc_id": 5702, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 4, "x": 1911.6, "z": 1264.8, "px": 2374.2, "py": 2263.9}, {"loc_id": 5713, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 4, "x": 877.4, "z": 3513.6, "px": 2197.7, "py": 2647.7}, {"loc_id": 5717, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 4, "x": 528.5, "z": 4727.0, "px": 2138.2, "py": 2854.7}, {"loc_id": 5719, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 4, "x": -5059.4, "z": 5834.1, "px": 1184.5, "py": 3043.7}, {"loc_id": 5720, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 4, "x": 528.8, "z": 256.0, "px": 2138.2, "py": 2091.7}, {"loc_id": 5725, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 4, "x": -4547.2, "z": -1494.7, "px": 1271.9, "py": 1792.9}, {"loc_id": 5732, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 4, "x": -4302.3, "z": -6317.8, "px": 1313.7, "py": 969.8}, {"loc_id": 5733, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 4, "x": 7736.4, "z": -3029.2, "px": 3368.3, "py": 1531.0}, {"loc_id": 5734, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 4, "x": -469.5, "z": 316.7, "px": 1967.9, "py": 2102.1}, {"loc_id": 5735, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 4, "x": -4529.8, "z": -4541.3, "px": 1274.9, "py": 1273.0}, {"loc_id": 5738, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 4, "x": 240.2, "z": -4470.4, "px": 2089.0, "py": 1285.1}, {"loc_id": 5739, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 4, "x": -2387.7, "z": 4564.5, "px": 1640.5, "py": 2827.0}, {"loc_id": 5747, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 4, "x": -7596.5, "z": 4332.6, "px": 751.5, "py": 2787.4}, {"loc_id": 5752, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 4, "x": -5649.5, "z": -4995.0, "px": 1083.8, "py": 1195.5}, {"loc_id": 5755, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 4, "x": 2669.2, "z": 1146.5, "px": 2503.5, "py": 2243.7}, {"loc_id": 5762, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 4, "x": -9199.2, "z": 2706.7, "px": 478.0, "py": 2509.9}, {"loc_id": 5767, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 4, "x": -1719.3, "z": -5674.4, "px": 1754.6, "py": 1079.6}, {"loc_id": 5768, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 4, "x": -7410.3, "z": 78.4, "px": 783.3, "py": 2061.4}, {"loc_id": 5771, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 4, "x": -5867.0, "z": 4555.0, "px": 1046.7, "py": 2825.4}, {"loc_id": 5774, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 4, "x": 7531.4, "z": 2795.8, "px": 3333.4, "py": 2525.1}, {"loc_id": 5775, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 4, "x": 8880.9, "z": 51.3, "px": 3563.7, "py": 2056.8}, {"loc_id": 5783, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 4, "x": 8465.8, "z": -1995.0, "px": 3492.8, "py": 1707.5}, {"loc_id": 5788, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 4, "x": 9681.9, "z": 1301.5, "px": 3700.4, "py": 2270.1}, {"loc_id": 5794, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 4, "x": -7097.9, "z": 2675.3, "px": 836.6, "py": 2504.6}, {"loc_id": 5815, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 4, "x": -4036.4, "z": -3716.5, "px": 1359.1, "py": 1413.7}, {"loc_id": 5825, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 4, "x": 984.1, "z": -2690.8, "px": 2216.0, "py": 1588.8}, {"loc_id": 5857, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 4, "x": -8236.3, "z": -952.6, "px": 642.3, "py": 1885.4}, {"loc_id": 5902, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 4, "x": 9557.5, "z": 143.8, "px": 3679.1, "py": 2072.5}, {"loc_id": 5919, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 4, "x": 8392.4, "z": -2191.9, "px": 3480.3, "py": 1673.9}, {"loc_id": 5929, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 4, "x": 4139.8, "z": -1151.5, "px": 2754.5, "py": 1851.5}, {"loc_id": 5950, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 4, "x": 2426.6, "z": -2262.3, "px": 2462.1, "py": 1661.9}, {"loc_id": 6853, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 4, "x": -2994.7, "z": 1837.6, "px": 1536.9, "py": 2361.6}, {"loc_id": 6854, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 4, "x": 108.1, "z": -4167.3, "px": 2066.4, "py": 1336.8}, {"loc_id": 6862, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 4, "x": 982.8, "z": 698.0, "px": 2215.7, "py": 2167.1}, {"loc_id": 6864, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 4, "x": 4271.4, "z": -1486.1, "px": 2777.0, "py": 1794.4}, {"loc_id": 6866, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 4, "x": -3539.2, "z": -1873.6, "px": 1444.0, "py": 1728.2}, {"loc_id": 6868, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 4, "x": 10.6, "z": 276.8, "px": 2049.8, "py": 2095.2}, {"loc_id": 6869, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 4, "x": 124.9, "z": 396.4, "px": 2069.3, "py": 2115.7}, {"loc_id": 6873, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 4, "x": -215.1, "z": 40.0, "px": 2011.3, "py": 2054.8}, {"loc_id": 6874, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 4, "x": 1128.7, "z": 827.0, "px": 2240.6, "py": 2189.1}, {"loc_id": 6889, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 4, "x": 837.4, "z": 893.5, "px": 2190.9, "py": 2200.5}, {"loc_id": 6891, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 4, "x": -127.6, "z": -205.4, "px": 2026.2, "py": 2012.9}, {"loc_id": 6892, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 4, "x": -4988.9, "z": 234.6, "px": 1196.6, "py": 2088.0}, {"loc_id": 6894, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 4, "x": -1577.1, "z": -1394.3, "px": 1778.8, "py": 1810.0}, {"loc_id": 6896, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 4, "x": 66.4, "z": -4045.0, "px": 2059.3, "py": 1357.7}, {"loc_id": 7251, "loc_name": "BigRockClearing", "item": "Pickable: Thistle", "count": 4, "x": 1733.5, "z": -975.8, "px": 2343.9, "py": 1881.5}, {"loc_id": 7252, "loc_name": "BigRockClearing", "item": "Pickable: Thistle", "count": 4, "x": -3378.2, "z": 4400.8, "px": 1471.5, "py": 2799.1}, {"loc_id": 7253, "loc_name": "BigRockClearing", "item": "Pickable: Thistle", "count": 4, "x": 945.2, "z": 5263.8, "px": 2209.3, "py": 2946.4}, {"loc_id": 7254, "loc_name": "BigRockClearing", "item": "Pickable: Thistle", "count": 4, "x": 8141.5, "z": 1.1, "px": 3437.5, "py": 2048.2}, {"loc_id": 7255, "loc_name": "BigRockClearing", "item": "Pickable: Thistle", "count": 4, "x": -8269.2, "z": -1778.7, "px": 636.7, "py": 1744.4}, {"loc_id": 7256, "loc_name": "BigRockClearing", "item": "Pickable: Thistle", "count": 4, "x": -9275.7, "z": 3008.8, "px": 464.9, "py": 2561.5}, {"loc_id": 7257, "loc_name": "BigRockClearing", "item": "Pickable: Thistle", "count": 4, "x": 8075.3, "z": -2377.8, "px": 3426.2, "py": 1642.2}, {"loc_id": 7258, "loc_name": "BigRockClearing", "item": "Pickable: Thistle", "count": 4, "x": 2229.1, "z": 1138.5, "px": 2428.4, "py": 2242.3}, {"loc_id": 7259, "loc_name": "BigRockClearing", "item": "Pickable: Thistle", "count": 4, "x": -1717.3, "z": -4293.8, "px": 1754.9, "py": 1315.2}, {"loc_id": 7260, "loc_name": "BigRockClearing", "item": "Pickable: Thistle", "count": 4, "x": 2567.2, "z": -3590.6, "px": 2486.1, "py": 1435.2}, {"loc_id": 7262, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": -2305.8, "z": 3718.7, "px": 1654.5, "py": 2682.7}, {"loc_id": 7263, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 3978.3, "z": 4168.3, "px": 2727.0, "py": 2759.4}, {"loc_id": 7267, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": -3530.1, "z": -1543.8, "px": 1445.5, "py": 1784.5}, {"loc_id": 7288, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": -951.0, "z": -6260.1, "px": 1885.7, "py": 979.6}, {"loc_id": 7290, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": -575.4, "z": -6343.8, "px": 1949.8, "py": 965.3}, {"loc_id": 7304, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 4090.8, "z": 1149.1, "px": 2746.2, "py": 2244.1}, {"loc_id": 7305, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 1095.2, "z": 3846.4, "px": 2234.9, "py": 2704.5}, {"loc_id": 7314, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 1080.0, "z": 3976.5, "px": 2232.3, "py": 2726.7}, {"loc_id": 7317, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 1209.6, "z": -4159.3, "px": 2254.4, "py": 1338.1}, {"loc_id": 7329, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 2825.1, "z": 7160.8, "px": 2530.2, "py": 3270.1}, {"loc_id": 7339, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": -2815.3, "z": 2244.9, "px": 1567.5, "py": 2431.1}, {"loc_id": 7353, "loc_name": "TarPit2", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 2043.1, "z": 4998.8, "px": 2396.7, "py": 2901.1}, {"loc_id": 7354, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": -1391.3, "z": -4357.0, "px": 1810.6, "py": 1304.4}, {"loc_id": 7361, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": -4806.9, "z": 2320.9, "px": 1227.6, "py": 2444.1}, {"loc_id": 7364, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": -558.7, "z": -6205.6, "px": 1952.6, "py": 988.9}, {"loc_id": 7365, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 3141.2, "z": 4303.9, "px": 2584.1, "py": 2782.5}, {"loc_id": 7367, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 1223.0, "z": 3406.2, "px": 2256.7, "py": 2629.3}, {"loc_id": 7370, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 197.0, "z": 5579.7, "px": 2081.6, "py": 3000.3}, {"loc_id": 7371, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": -1097.6, "z": -4814.8, "px": 1860.7, "py": 1226.3}, {"loc_id": 7374, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 4416.6, "z": 1654.4, "px": 2801.8, "py": 2330.4}, {"loc_id": 7376, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": -4335.2, "z": -6027.7, "px": 1308.1, "py": 1019.3}, {"loc_id": 7378, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": -64.5, "z": -5125.7, "px": 2037.0, "py": 1173.2}, {"loc_id": 7379, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 4659.4, "z": 1530.0, "px": 2843.2, "py": 2309.1}, {"loc_id": 7383, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": -2868.5, "z": 5965.9, "px": 1558.4, "py": 3066.2}, {"loc_id": 7384, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 430.5, "z": 4032.8, "px": 2121.5, "py": 2736.3}, {"loc_id": 7385, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 4241.3, "z": 976.8, "px": 2771.8, "py": 2214.7}, {"loc_id": 7387, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 6190.8, "z": 1793.6, "px": 3104.6, "py": 2354.1}, {"loc_id": 7389, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 3909.0, "z": -1169.4, "px": 2715.1, "py": 1848.4}, {"loc_id": 7392, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 1972.9, "z": 4491.3, "px": 2384.7, "py": 2814.5}, {"loc_id": 7396, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 4657.3, "z": 1336.6, "px": 2842.8, "py": 2276.1}, {"loc_id": 7397, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 4734.5, "z": 3200.3, "px": 2856.0, "py": 2594.2}, {"loc_id": 7399, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 3633.5, "z": -1010.4, "px": 2668.1, "py": 1875.6}, {"loc_id": 7401, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 3854.4, "z": -1030.9, "px": 2705.8, "py": 1872.1}, {"loc_id": 7402, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 5374.8, "z": -2286.7, "px": 2965.3, "py": 1657.7}, {"loc_id": 7403, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": -3829.6, "z": 2247.0, "px": 1394.4, "py": 2431.5}, {"loc_id": 7404, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 5048.7, "z": -1294.9, "px": 2909.6, "py": 1827.0}, {"loc_id": 7405, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 1225.3, "z": -3985.2, "px": 2257.1, "py": 1367.9}, {"loc_id": 7409, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": -4046.5, "z": 1155.9, "px": 1357.4, "py": 2245.3}, {"loc_id": 7423, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 1979.2, "z": 4023.0, "px": 2385.8, "py": 2734.6}, {"loc_id": 7424, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 5054.4, "z": 8.0, "px": 2910.6, "py": 2049.4}, {"loc_id": 7428, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 4859.7, "z": -1417.8, "px": 2877.4, "py": 1806.0}, {"loc_id": 7430, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": -1916.3, "z": 3217.8, "px": 1721.0, "py": 2597.2}, {"loc_id": 7431, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 4869.7, "z": 2896.1, "px": 2879.1, "py": 2542.3}, {"loc_id": 7432, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": -4846.1, "z": 3845.6, "px": 1220.9, "py": 2704.3}, {"loc_id": 7433, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": -652.9, "z": 5107.5, "px": 1936.6, "py": 2919.7}, {"loc_id": 7436, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": -2038.0, "z": 2937.2, "px": 1700.2, "py": 2549.3}, {"loc_id": 7437, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": -1011.7, "z": 5069.4, "px": 1875.3, "py": 2913.2}, {"loc_id": 7438, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": 6925.9, "z": -2445.0, "px": 3230.0, "py": 1630.7}, {"loc_id": 7441, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 4, "x": -3665.2, "z": 2293.8, "px": 1422.5, "py": 2439.5}, {"loc_id": 7445, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 4, "x": 1280.0, "z": 8448.0, "px": 2266.5, "py": 3489.8}, {"loc_id": 7446, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 4, "x": 4544.0, "z": -5632.0, "px": 2823.5, "py": 1086.8}, {"loc_id": 7446, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 4, "x": 4544.0, "z": -5632.0, "px": 2823.5, "py": 1086.8}, {"loc_id": 7447, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": 9920.0, "z": -1216.0, "px": 3741.0, "py": 1840.5}, {"loc_id": 7456, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": -128.0, "z": -1344.0, "px": 2026.2, "py": 1818.6}, {"loc_id": 7456, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 4, "x": -128.0, "z": -1344.0, "px": 2026.2, "py": 1818.6}, {"loc_id": 7457, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 4, "x": 2560.0, "z": 896.0, "px": 2484.9, "py": 2200.9}, {"loc_id": 7459, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 4, "x": -6848.0, "z": -2368.0, "px": 879.3, "py": 1643.9}, {"loc_id": 7464, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 4, "x": -6656.0, "z": -1984.0, "px": 912.0, "py": 1709.4}, {"loc_id": 7466, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 4, "x": 7296.0, "z": -384.0, "px": 3293.2, "py": 1982.5}, {"loc_id": 7468, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": 1472.0, "z": 6848.0, "px": 2299.2, "py": 3216.7}, {"loc_id": 7468, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 4, "x": 1472.0, "z": 6848.0, "px": 2299.2, "py": 3216.7}, {"loc_id": 7469, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 4, "x": -5312.0, "z": 5184.0, "px": 1141.4, "py": 2932.7}, {"loc_id": 7470, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": 2624.0, "z": 8576.0, "px": 2495.8, "py": 3511.6}, {"loc_id": 7471, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 4, "x": -4480.0, "z": -4096.0, "px": 1283.4, "py": 1348.9}, {"loc_id": 7471, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": -4480.0, "z": -4096.0, "px": 1283.4, "py": 1348.9}, {"loc_id": 7471, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 4, "x": -4480.0, "z": -4096.0, "px": 1283.4, "py": 1348.9}, {"loc_id": 7475, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 4, "x": 6656.0, "z": 6784.0, "px": 3184.0, "py": 3205.8}, {"loc_id": 7478, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 4, "x": 4800.0, "z": -5312.0, "px": 2867.2, "py": 1141.4}, {"loc_id": 7479, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 4, "x": 2688.0, "z": 640.0, "px": 2506.8, "py": 2157.2}, {"loc_id": 7483, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": -2112.0, "z": -512.0, "px": 1687.6, "py": 1960.6}, {"loc_id": 7485, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": -2048.0, "z": -192.0, "px": 1698.5, "py": 2015.2}, {"loc_id": 7489, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 4, "x": 7040.0, "z": -512.0, "px": 3249.5, "py": 1960.6}, {"loc_id": 7491, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 4, "x": -4160.0, "z": 3200.0, "px": 1338.0, "py": 2594.1}, {"loc_id": 7492, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 4, "x": -8512.0, "z": -192.0, "px": 595.3, "py": 2015.2}, {"loc_id": 7493, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 4, "x": 1344.0, "z": 6656.0, "px": 2277.4, "py": 3184.0}, {"loc_id": 7496, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 4, "x": 4608.0, "z": -5824.0, "px": 2834.4, "py": 1054.0}, {"loc_id": 7497, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 4, "x": 1984.0, "z": -6784.0, "px": 2386.6, "py": 890.2}, {"loc_id": 7498, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 4, "x": -3776.0, "z": 5184.0, "px": 1403.6, "py": 2932.7}, {"loc_id": 7498, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 4, "x": -3776.0, "z": 5184.0, "px": 1403.6, "py": 2932.7}, {"loc_id": 7502, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 4, "x": 4800.0, "z": -5568.0, "px": 2867.2, "py": 1097.7}, {"loc_id": 7502, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 4, "x": 4800.0, "z": -5568.0, "px": 2867.2, "py": 1097.7}, {"loc_id": 7503, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 4, "x": 1344.0, "z": 8640.0, "px": 2277.4, "py": 3522.6}, {"loc_id": 7503, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 4, "x": 1344.0, "z": 8640.0, "px": 2277.4, "py": 3522.6}, {"loc_id": 7504, "loc_name": "MountainCave02", "item": "Spawner: Fish4_cave (respawn every 10 minutes)", "count": 4, "x": 5504.0, "z": 64.0, "px": 2987.3, "py": 2058.9}, {"loc_id": 7504, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 4, "x": 5504.0, "z": 64.0, "px": 2987.3, "py": 2058.9}, {"loc_id": 7506, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": 2048.0, "z": 4736.0, "px": 2397.5, "py": 2856.3}, {"loc_id": 7507, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 4, "x": -5056.0, "z": 2688.0, "px": 1185.1, "py": 2506.8}, {"loc_id": 7511, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": -6592.0, "z": -2240.0, "px": 923.0, "py": 1665.7}, {"loc_id": 7517, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 4, "x": 7488.0, "z": 3968.0, "px": 3326.0, "py": 2725.2}, {"loc_id": 7518, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 4, "x": 2560.0, "z": 8768.0, "px": 2484.9, "py": 3544.4}, {"loc_id": 7519, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 4, "x": -7040.0, "z": -2432.0, "px": 846.5, "py": 1632.9}, {"loc_id": 7519, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": -7040.0, "z": -2432.0, "px": 846.5, "py": 1632.9}, {"loc_id": 7520, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 4, "x": 512.0, "z": 3776.0, "px": 2135.4, "py": 2692.4}, {"loc_id": 7526, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": 2560.0, "z": 8960.0, "px": 2484.9, "py": 3577.2}, {"loc_id": 7528, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 4, "x": -6848.0, "z": 6848.0, "px": 879.3, "py": 3216.7}, {"loc_id": 7528, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": -6848.0, "z": 6848.0, "px": 879.3, "py": 3216.7}, {"loc_id": 7531, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 4, "x": 6016.0, "z": 4480.0, "px": 3074.7, "py": 2812.6}, {"loc_id": 7534, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": 896.0, "z": -2432.0, "px": 2200.9, "py": 1632.9}, {"loc_id": 7537, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 4, "x": 6272.0, "z": 6784.0, "px": 3118.4, "py": 3205.8}, {"loc_id": 7539, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 4, "x": 1280.0, "z": -4992.0, "px": 2266.5, "py": 1196.0}, {"loc_id": 7540, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 4, "x": 1344.0, "z": 7040.0, "px": 2277.4, "py": 3249.5}, {"loc_id": 7541, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": -320.0, "z": -1280.0, "px": 1993.4, "py": 1829.5}, {"loc_id": 7543, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": -3904.0, "z": 1728.0, "px": 1381.7, "py": 2342.9}, {"loc_id": 7544, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": -2432.0, "z": 1920.0, "px": 1632.9, "py": 2375.7}, {"loc_id": 7545, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": -192.0, "z": -1536.0, "px": 2015.2, "py": 1785.9}, {"loc_id": 7546, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": -4480.0, "z": -64.0, "px": 1283.4, "py": 2037.1}, {"loc_id": 7546, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 4, "x": -4480.0, "z": -64.0, "px": 1283.4, "py": 2037.1}, {"loc_id": 7548, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 4, "x": -960.0, "z": 8704.0, "px": 1884.2, "py": 3533.5}, {"loc_id": 7549, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 4, "x": 2496.0, "z": -2560.0, "px": 2474.0, "py": 1611.1}, {"loc_id": 7549, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": 2496.0, "z": -2560.0, "px": 2474.0, "py": 1611.1}, {"loc_id": 7550, "loc_name": "MountainCave02", "item": "Spawner: Fish4_cave (respawn every 10 minutes)", "count": 4, "x": 1280.0, "z": 320.0, "px": 2266.5, "py": 2102.6}, {"loc_id": 7550, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 4, "x": 1280.0, "z": 320.0, "px": 2266.5, "py": 2102.6}, {"loc_id": 7550, "loc_name": "MountainCave02", "item": "Item: One Of: Coins[3-9]", "count": 4, "x": 1280.0, "z": 320.0, "px": 2266.5, "py": 2102.6}, {"loc_id": 7553, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 4, "x": -6080.0, "z": -320.0, "px": 1010.3, "py": 1993.4}, {"loc_id": 7554, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": 3776.0, "z": -128.0, "px": 2692.4, "py": 2026.2}, {"loc_id": 7554, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 4, "x": 3776.0, "z": -128.0, "px": 2692.4, "py": 2026.2}, {"loc_id": 7557, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 4, "x": 3264.0, "z": 256.0, "px": 2605.1, "py": 2091.7}, {"loc_id": 7558, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": -4416.0, "z": -3840.0, "px": 1294.3, "py": 1392.6}, {"loc_id": 7559, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 4, "x": -4096.0, "z": 1600.0, "px": 1348.9, "py": 2321.1}, {"loc_id": 7562, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 4, "x": 5632.0, "z": 2304.0, "px": 3009.2, "py": 2441.2}, {"loc_id": 7563, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 4, "x": -3584.0, "z": 1472.0, "px": 1436.3, "py": 2299.2}, {"loc_id": 7563, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": -3584.0, "z": 1472.0, "px": 1436.3, "py": 2299.2}, {"loc_id": 7564, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 4, "x": 6400.0, "z": 7040.0, "px": 3140.3, "py": 3249.5}, {"loc_id": 7564, "loc_name": "MountainCave02", "item": "Pickable: WolfHairBundle", "count": 4, "x": 6400.0, "z": 7040.0, "px": 3140.3, "py": 3249.5}, {"loc_id": 7566, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 4, "x": -4288.0, "z": -1216.0, "px": 1316.2, "py": 1840.5}, {"loc_id": 7568, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": 1536.0, "z": 6592.0, "px": 2310.1, "py": 3173.0}, {"loc_id": 7570, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 4, "x": 1600.0, "z": 7040.0, "px": 2321.1, "py": 3249.5}, {"loc_id": 7571, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 4, "x": -7232.0, "z": -1024.0, "px": 813.7, "py": 1873.2}, {"loc_id": 7572, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 4, "x": 3648.0, "z": -704.0, "px": 2670.6, "py": 1927.9}, {"loc_id": 7575, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 7175.8, "z": -4934.8, "px": 3272.7, "py": 1205.8}, {"loc_id": 7576, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 4867.6, "z": 5825.2, "px": 2878.7, "py": 3042.2}, {"loc_id": 7576, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 4, "x": 4867.6, "z": 5825.2, "px": 2878.7, "py": 3042.2}, {"loc_id": 7578, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 4028.3, "z": -6268.0, "px": 2735.5, "py": 978.3}, {"loc_id": 7579, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 318.0, "z": 7367.1, "px": 2102.3, "py": 3305.3}, {"loc_id": 7580, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": -7104.3, "z": -1348.1, "px": 835.5, "py": 1817.9}, {"loc_id": 7582, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 8388.5, "z": -767.9, "px": 3479.6, "py": 1916.9}, {"loc_id": 7585, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 8836.5, "z": 449.9, "px": 3556.1, "py": 2124.8}, {"loc_id": 7589, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -7358.9, "z": 4101.6, "px": 792.1, "py": 2748.0}, {"loc_id": 7590, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 4, "x": 7997.9, "z": -4413.8, "px": 3413.0, "py": 1294.7}, {"loc_id": 7591, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 188.1, "z": 7163.6, "px": 2080.1, "py": 3270.6}, {"loc_id": 7594, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 5496.2, "z": 3141.6, "px": 2986.0, "py": 2584.2}, {"loc_id": 7595, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -7288.5, "z": -3450.5, "px": 804.1, "py": 1459.1}, {"loc_id": 7596, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -6663.6, "z": -1669.4, "px": 910.7, "py": 1763.1}, {"loc_id": 7597, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 3463.3, "z": 5636.8, "px": 2639.1, "py": 3010.0}, {"loc_id": 7598, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": -6402.6, "z": 3135.4, "px": 955.3, "py": 2583.1}, {"loc_id": 7600, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 4870.8, "z": -5825.2, "px": 2879.3, "py": 1053.8}, {"loc_id": 7600, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 4870.8, "z": -5825.2, "px": 2879.3, "py": 1053.8}, {"loc_id": 7601, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 5757.9, "z": -4223.2, "px": 3030.7, "py": 1327.2}, {"loc_id": 7601, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 5757.9, "z": -4223.2, "px": 3030.7, "py": 1327.2}, {"loc_id": 7602, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -9220.2, "z": 571.2, "px": 474.4, "py": 2145.5}, {"loc_id": 7603, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 4160.5, "z": -4542.5, "px": 2758.1, "py": 1272.7}, {"loc_id": 7603, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 4, "x": 4160.5, "z": -4542.5, "px": 2758.1, "py": 1272.7}, {"loc_id": 7605, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 7428.1, "z": 4478.9, "px": 3315.7, "py": 2812.4}, {"loc_id": 7606, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 3716.3, "z": -5627.8, "px": 2682.2, "py": 1087.5}, {"loc_id": 7608, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 7608.3, "z": -2364.8, "px": 3346.5, "py": 1644.4}, {"loc_id": 7609, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 3141.5, "z": 6522.4, "px": 2584.1, "py": 3161.2}, {"loc_id": 7610, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -8314.3, "z": 2296.3, "px": 629.0, "py": 2439.9}, {"loc_id": 7610, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": -8314.3, "z": 2296.3, "px": 629.0, "py": 2439.9}, {"loc_id": 7611, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -7421.9, "z": 709.5, "px": 781.3, "py": 2169.1}, {"loc_id": 7611, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": -7421.9, "z": 709.5, "px": 781.3, "py": 2169.1}, {"loc_id": 7612, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 5817.6, "z": -4349.8, "px": 3040.9, "py": 1305.6}, {"loc_id": 7613, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -6652.9, "z": -3523.4, "px": 912.6, "py": 1446.7}, {"loc_id": 7613, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": -6652.9, "z": -3523.4, "px": 912.6, "py": 1446.7}, {"loc_id": 7613, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 4, "x": -6652.9, "z": -3523.4, "px": 912.6, "py": 1446.7}, {"loc_id": 7614, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 4, "x": -5446.8, "z": 4544.0, "px": 1118.4, "py": 2823.5}, {"loc_id": 7615, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": -7676.6, "z": 1339.0, "px": 737.9, "py": 2276.5}, {"loc_id": 7616, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 1337.3, "z": 6403.2, "px": 2276.2, "py": 3140.8}, {"loc_id": 7616, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 1337.3, "z": 6403.2, "px": 2276.2, "py": 3140.8}, {"loc_id": 7617, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 8383.6, "z": -1600.1, "px": 3478.8, "py": 1774.9}, {"loc_id": 7619, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 4, "x": 2424.1, "z": -6656.8, "px": 2461.7, "py": 911.9}, {"loc_id": 7620, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 8705.0, "z": -1218.1, "px": 3533.7, "py": 1840.1}, {"loc_id": 7621, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": -8381.6, "z": 2180.6, "px": 617.5, "py": 2420.2}, {"loc_id": 7621, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 4, "x": -8381.6, "z": 2180.6, "px": 617.5, "py": 2420.2}, {"loc_id": 7622, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 4731.1, "z": -4736.4, "px": 2855.4, "py": 1239.7}, {"loc_id": 7622, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 4731.1, "z": -4736.4, "px": 2855.4, "py": 1239.7}, {"loc_id": 7624, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 3910.3, "z": -6527.5, "px": 2715.4, "py": 934.0}, {"loc_id": 7624, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 4, "x": 3910.3, "z": -6527.5, "px": 2715.4, "py": 934.0}, {"loc_id": 7625, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 120.3, "z": 6984.0, "px": 2068.5, "py": 3239.9}, {"loc_id": 7626, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 8059.4, "z": 3073.3, "px": 3423.5, "py": 2572.5}, {"loc_id": 7627, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -63.7, "z": -6969.0, "px": 2037.1, "py": 858.6}, {"loc_id": 7628, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 3962.1, "z": -6655.1, "px": 2724.2, "py": 912.2}, {"loc_id": 7628, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 3962.1, "z": -6655.1, "px": 2724.2, "py": 912.2}, {"loc_id": 7630, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -3064.3, "z": -6205.0, "px": 1525.0, "py": 989.0}, {"loc_id": 7630, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": -3064.3, "z": -6205.0, "px": 1525.0, "py": 989.0}, {"loc_id": 7632, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 7611.1, "z": -4603.8, "px": 3347.0, "py": 1262.3}, {"loc_id": 7634, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -8896.7, "z": 1532.4, "px": 529.6, "py": 2309.5}, {"loc_id": 7635, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 6083.5, "z": 3330.8, "px": 3086.3, "py": 2616.5}, {"loc_id": 7635, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 6083.5, "z": 3330.8, "px": 3086.3, "py": 2616.5}, {"loc_id": 7636, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 5755.4, "z": 5696.3, "px": 3030.3, "py": 3020.2}, {"loc_id": 7637, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -9402.0, "z": 581.8, "px": 443.4, "py": 2147.3}, {"loc_id": 7637, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": -9402.0, "z": 581.8, "px": 443.4, "py": 2147.3}, {"loc_id": 7638, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 6338.7, "z": 4281.8, "px": 3129.8, "py": 2778.8}, {"loc_id": 7639, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -4477.5, "z": -6782.7, "px": 1283.8, "py": 890.4}, {"loc_id": 7639, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 4, "x": -4477.5, "z": -6782.7, "px": 1283.8, "py": 890.4}, {"loc_id": 7641, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -9729.3, "z": -1918.9, "px": 387.5, "py": 1720.5}, {"loc_id": 7642, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 8067.5, "z": 2809.4, "px": 3424.9, "py": 2527.5}, {"loc_id": 7644, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 384.2, "z": -7426.2, "px": 2113.6, "py": 780.6}, {"loc_id": 7645, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 4, "x": 6909.1, "z": -133.1, "px": 3227.2, "py": 2025.3}, {"loc_id": 7646, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 9026.7, "z": -1598.2, "px": 3588.6, "py": 1775.2}, {"loc_id": 7647, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 4, "x": 8134.5, "z": -1793.5, "px": 3436.3, "py": 1741.9}, {"loc_id": 7648, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 9094.7, "z": 1535.6, "px": 3600.2, "py": 2310.1}, {"loc_id": 7649, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -8130.9, "z": -3836.9, "px": 660.3, "py": 1393.2}, {"loc_id": 7658, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 4, "x": -8517.5, "z": -3271.6, "px": 594.3, "py": 1489.6}, {"loc_id": 7678, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 4, "x": -1856.1, "z": 7424.9, "px": 1731.2, "py": 3315.2}, {"loc_id": 7688, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 4, "x": 8388.0, "z": -3329.1, "px": 3479.6, "py": 1479.8}, {"loc_id": 7690, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 4, "x": 56.7, "z": 7302.8, "px": 2057.7, "py": 3294.3}, {"loc_id": 7693, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 4, "x": -9600.4, "z": -1975.6, "px": 409.5, "py": 1710.8}, {"loc_id": 7707, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 4, "x": -5637.1, "z": -3010.8, "px": 1085.9, "py": 1534.2}, {"loc_id": 7715, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 4, "x": 4662.5, "z": 6148.3, "px": 2843.7, "py": 3097.3}, {"loc_id": 7750, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": -5698.7, "z": -5447.2, "px": 1075.4, "py": 1118.3}, {"loc_id": 7754, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 1729.4, "z": -6663.5, "px": 2343.2, "py": 910.8}, {"loc_id": 7754, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 1729.4, "z": -6663.5, "px": 2343.2, "py": 910.8}, {"loc_id": 7756, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": -6392.8, "z": 574.2, "px": 957.0, "py": 2146.0}, {"loc_id": 7756, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -6392.8, "z": 574.2, "px": 957.0, "py": 2146.0}, {"loc_id": 7757, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -8248.7, "z": -3140.4, "px": 640.2, "py": 1512.0}, {"loc_id": 7759, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 2877.1, "z": 5818.4, "px": 2539.0, "py": 3041.0}, {"loc_id": 7760, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": -7359.1, "z": -2559.7, "px": 792.0, "py": 1611.1}, {"loc_id": 7760, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -7359.1, "z": -2559.7, "px": 792.0, "py": 1611.1}, {"loc_id": 7761, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 1209.0, "z": 7295.2, "px": 2254.3, "py": 3293.0}, {"loc_id": 7764, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 9464.8, "z": -2424.5, "px": 3663.3, "py": 1634.2}, {"loc_id": 7767, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -7544.7, "z": -3399.0, "px": 760.4, "py": 1467.9}, {"loc_id": 7768, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -1976.4, "z": -5895.9, "px": 1710.7, "py": 1041.8}, {"loc_id": 7770, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 4921.5, "z": 6072.0, "px": 2887.9, "py": 3084.3}, {"loc_id": 7770, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 4921.5, "z": 6072.0, "px": 2887.9, "py": 3084.3}, {"loc_id": 7771, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 7936.6, "z": 1795.6, "px": 3402.5, "py": 2354.4}, {"loc_id": 7771, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 7936.6, "z": 1795.6, "px": 3402.5, "py": 2354.4}, {"loc_id": 7773, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 8442.1, "z": -1081.8, "px": 3488.8, "py": 1863.4}, {"loc_id": 7775, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 6022.2, "z": 1913.3, "px": 3075.8, "py": 2374.5}, {"loc_id": 7775, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 6022.2, "z": 1913.3, "px": 3075.8, "py": 2374.5}, {"loc_id": 7776, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -9468.6, "z": 898.3, "px": 432.0, "py": 2201.3}, {"loc_id": 7777, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 7098.5, "z": 3783.0, "px": 3259.5, "py": 2693.6}, {"loc_id": 7778, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 9095.9, "z": 1351.9, "px": 3600.4, "py": 2278.7}, {"loc_id": 7779, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 4222.3, "z": 6081.1, "px": 2768.6, "py": 3085.8}, {"loc_id": 7779, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 4222.3, "z": 6081.1, "px": 2768.6, "py": 3085.8}, {"loc_id": 7780, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 2239.9, "z": -6663.5, "px": 2430.3, "py": 910.8}, {"loc_id": 7783, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 8510.1, "z": -577.2, "px": 3500.4, "py": 1949.5}, {"loc_id": 7784, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 6333.6, "z": 2887.8, "px": 3128.9, "py": 2540.9}, {"loc_id": 7785, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": -2937.0, "z": 6146.3, "px": 1546.8, "py": 3097.0}, {"loc_id": 7785, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -2937.0, "z": 6146.3, "px": 1546.8, "py": 3097.0}, {"loc_id": 7786, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 4230.0, "z": -6151.6, "px": 2769.9, "py": 998.1}, {"loc_id": 7788, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 3837.1, "z": -5441.0, "px": 2702.9, "py": 1119.4}, {"loc_id": 7789, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 8775.0, "z": 953.4, "px": 3545.6, "py": 2210.7}, {"loc_id": 7789, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 8775.0, "z": 953.4, "px": 3545.6, "py": 2210.7}, {"loc_id": 7790, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -2882.0, "z": -6147.0, "px": 1556.1, "py": 998.9}, {"loc_id": 7791, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 3773.4, "z": 6009.1, "px": 2692.0, "py": 3073.6}, {"loc_id": 7792, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 7684.2, "z": 2815.0, "px": 3359.4, "py": 2528.4}, {"loc_id": 7793, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -7425.8, "z": -762.8, "px": 780.7, "py": 1917.8}, {"loc_id": 7794, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": -9338.8, "z": 825.7, "px": 454.2, "py": 2188.9}, {"loc_id": 7797, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 9018.2, "z": -1029.7, "px": 3587.1, "py": 1872.3}, {"loc_id": 7797, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 9018.2, "z": -1029.7, "px": 3587.1, "py": 1872.3}, {"loc_id": 7798, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 388.6, "z": 6973.8, "px": 2114.3, "py": 3238.2}, {"loc_id": 7801, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -2756.4, "z": -6465.0, "px": 1577.6, "py": 944.6}, {"loc_id": 7802, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 4420.9, "z": 5758.4, "px": 2802.5, "py": 3030.8}, {"loc_id": 7803, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": -7682.5, "z": -2813.7, "px": 736.9, "py": 1567.8}, {"loc_id": 7803, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -7682.5, "z": -2813.7, "px": 736.9, "py": 1567.8}, {"loc_id": 7804, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 4476.4, "z": -4487.3, "px": 2812.0, "py": 1282.2}, {"loc_id": 7805, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": -770.1, "z": 6727.9, "px": 1916.6, "py": 3196.2}, {"loc_id": 7806, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 8259.2, "z": 2555.0, "px": 3457.6, "py": 2484.1}, {"loc_id": 7807, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 7611.2, "z": -2106.1, "px": 3347.0, "py": 1688.6}, {"loc_id": 7808, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 6530.5, "z": 3002.0, "px": 3162.5, "py": 2560.3}, {"loc_id": 7809, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 7302.5, "z": 4222.5, "px": 3294.3, "py": 2768.6}, {"loc_id": 7809, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 7302.5, "z": 4222.5, "px": 3294.3, "py": 2768.6}, {"loc_id": 7810, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -1916.3, "z": -7041.2, "px": 1721.0, "py": 846.3}, {"loc_id": 7811, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 1541.3, "z": -6585.5, "px": 2311.0, "py": 924.1}, {"loc_id": 7812, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": -1471.2, "z": -7427.0, "px": 1796.9, "py": 780.5}, {"loc_id": 7812, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -1471.2, "z": -7427.0, "px": 1796.9, "py": 780.5}, {"loc_id": 7814, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 5953.4, "z": 5882.8, "px": 3064.0, "py": 3052.0}, {"loc_id": 7818, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": -2046.0, "z": -7047.5, "px": 1698.8, "py": 845.2}, {"loc_id": 7818, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -2046.0, "z": -7047.5, "px": 1698.8, "py": 845.2}, {"loc_id": 7819, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 1157.7, "z": 7100.9, "px": 2245.6, "py": 3259.9}, {"loc_id": 7820, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 9084.3, "z": -1732.5, "px": 3598.4, "py": 1752.3}, {"loc_id": 7822, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 2171.7, "z": -6469.5, "px": 2418.6, "py": 943.9}, {"loc_id": 7822, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 2171.7, "z": -6469.5, "px": 2418.6, "py": 943.9}, {"loc_id": 7823, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 7544.4, "z": -3776.5, "px": 3335.6, "py": 1403.5}, {"loc_id": 7823, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 7544.4, "z": -3776.5, "px": 3335.6, "py": 1403.5}, {"loc_id": 7824, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 4, "x": -5061.2, "z": 4793.4, "px": 1184.2, "py": 2866.1}, {"loc_id": 7829, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -8836.4, "z": 1410.3, "px": 539.9, "py": 2288.7}, {"loc_id": 7835, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 1086.9, "z": -7365.5, "px": 2233.5, "py": 791.0}, {"loc_id": 7844, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 7045.3, "z": -131.2, "px": 3250.4, "py": 2025.6}, {"loc_id": 7848, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 6140.1, "z": 2812.1, "px": 3095.9, "py": 2527.9}, {"loc_id": 7849, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -7487.1, "z": 953.5, "px": 770.2, "py": 2210.7}, {"loc_id": 7850, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -9144.3, "z": -2438.5, "px": 487.4, "py": 1631.8}, {"loc_id": 7852, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 3960.1, "z": -5702.6, "px": 2723.9, "py": 1074.8}, {"loc_id": 7853, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 4163.4, "z": -5954.3, "px": 2758.6, "py": 1031.8}, {"loc_id": 7857, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 9208.9, "z": -1153.3, "px": 3619.7, "py": 1851.2}, {"loc_id": 7858, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 9156.7, "z": -2108.2, "px": 3610.7, "py": 1688.2}, {"loc_id": 7862, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -8315.9, "z": -3512.0, "px": 628.8, "py": 1448.6}, {"loc_id": 7865, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 9080.4, "z": -1466.8, "px": 3597.7, "py": 1797.7}, {"loc_id": 7867, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 4, "x": -1607.6, "z": -5959.5, "px": 1773.6, "py": 1030.9}, {"loc_id": 7870, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 4, "x": 9401.5, "z": 1721.6, "px": 3652.5, "py": 2341.8}, {"loc_id": 7877, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 4, "x": -7545.9, "z": 1274.7, "px": 760.2, "py": 2265.5}, {"loc_id": 8027, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 4, "x": 8648.2, "z": -2743.6, "px": 3524.0, "py": 1579.8}, {"loc_id": 8028, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 4, "x": -7047.7, "z": 642.8, "px": 845.2, "py": 2157.7}, {"loc_id": 8028, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 4, "x": -7047.7, "z": 642.8, "px": 845.2, "py": 2157.7}, {"loc_id": 8029, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 4, "x": 4468.8, "z": -6985.4, "px": 2810.7, "py": 855.8}, {"loc_id": 8030, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 4, "x": 3255.1, "z": 6282.9, "px": 2603.5, "py": 3120.3}, {"loc_id": 8030, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 4, "x": 3255.1, "z": 6282.9, "px": 2603.5, "py": 3120.3}, {"loc_id": 8031, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 4, "x": 7306.1, "z": 4414.0, "px": 3294.9, "py": 2801.3}, {"loc_id": 8035, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 4, "x": 9153.3, "z": -1844.8, "px": 3610.2, "py": 1733.2}, {"loc_id": 8038, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 8507.2, "z": -958.8, "px": 3499.9, "py": 1884.4}, {"loc_id": 8040, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 4, "x": 5629.6, "z": 6022.5, "px": 3008.8, "py": 3075.8}, {"loc_id": 8041, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 4, "x": 8381.6, "z": 964.5, "px": 3478.5, "py": 2212.6}, {"loc_id": 8041, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 8381.6, "z": 964.5, "px": 3478.5, "py": 2212.6}, {"loc_id": 8041, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 4, "x": 8381.6, "z": 964.5, "px": 3478.5, "py": 2212.6}, {"loc_id": 8042, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 4, "x": -2868.4, "z": 6462.6, "px": 1558.5, "py": 3151.0}, {"loc_id": 8043, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 4, "x": -6857.8, "z": -1854.1, "px": 877.6, "py": 1731.6}, {"loc_id": 8044, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 9528.3, "z": 1611.5, "px": 3674.2, "py": 2323.0}, {"loc_id": 8046, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 4, "x": 5943.3, "z": 5824.3, "px": 3062.3, "py": 3042.0}, {"loc_id": 8048, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 4, "x": 5634.6, "z": 3466.8, "px": 3009.6, "py": 2639.7}, {"loc_id": 8049, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 4, "x": -6532.7, "z": 5633.6, "px": 933.1, "py": 3009.5}, {"loc_id": 8050, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 4, "x": 2809.1, "z": 5497.7, "px": 2527.4, "py": 2986.3}, {"loc_id": 8051, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 4, "x": 6907.9, "z": -3513.2, "px": 3226.9, "py": 1448.4}, {"loc_id": 8052, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 4, "x": 7562.7, "z": 4278.4, "px": 3338.7, "py": 2778.2}, {"loc_id": 8056, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 4, "x": 9354.2, "z": -1909.8, "px": 3644.5, "py": 1722.1}, {"loc_id": 8058, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 4, "x": 7235.1, "z": -129.9, "px": 3282.8, "py": 2025.8}, {"loc_id": 8059, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 4, "x": 9732.6, "z": -838.4, "px": 3709.0, "py": 1904.9}, {"loc_id": 8061, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 4, "x": -6473.5, "z": -3966.0, "px": 943.2, "py": 1371.1}, {"loc_id": 8064, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 4, "x": -6211.9, "z": 3708.7, "px": 987.8, "py": 2681.0}, {"loc_id": 8065, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 4, "x": 3782.1, "z": -5887.4, "px": 2693.5, "py": 1043.2}, {"loc_id": 8066, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 4, "x": -5320.4, "z": 6068.3, "px": 1140.0, "py": 3083.7}, {"loc_id": 8066, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 4, "x": -5320.4, "z": 6068.3, "px": 1140.0, "py": 3083.7}, {"loc_id": 8068, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 4, "x": 1475.3, "z": -6452.1, "px": 2299.8, "py": 946.8}, {"loc_id": 8070, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 4, "x": -7044.9, "z": 1204.9, "px": 845.7, "py": 2253.6}, {"loc_id": 8074, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 4, "x": -8635.1, "z": 1288.5, "px": 574.3, "py": 2267.9}, {"loc_id": 8075, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 4, "x": 3894.0, "z": 6027.7, "px": 2712.6, "py": 3076.7}, {"loc_id": 8076, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 4, "x": 2179.7, "z": -6406.5, "px": 2420.0, "py": 954.6}, {"loc_id": 8078, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 4, "x": 8631.9, "z": 449.9, "px": 3521.2, "py": 2124.8}, {"loc_id": 8085, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 4, "x": 2378.7, "z": -6465.8, "px": 2454.0, "py": 944.5}, {"loc_id": 8085, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 4, "x": 2378.7, "z": -6465.8, "px": 2454.0, "py": 944.5}, {"loc_id": 8090, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 4, "x": 3905.5, "z": -5505.4, "px": 2714.5, "py": 1108.4}, {"loc_id": 8093, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 4, "x": -2045.3, "z": 7358.7, "px": 1698.9, "py": 3303.9}, {"loc_id": 8096, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 4, "x": 11.4, "z": 7429.3, "px": 2049.9, "py": 3315.9}, {"loc_id": 8097, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 4, "x": -3206.5, "z": 5318.2, "px": 1500.8, "py": 2955.6}, {"loc_id": 8098, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 4, "x": 4225.1, "z": -5451.5, "px": 2769.1, "py": 1117.6}, {"loc_id": 8099, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 4, "x": -7096.6, "z": 1333.7, "px": 836.8, "py": 2275.6}, {"loc_id": 8100, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 4, "x": 6984.1, "z": -774.0, "px": 3240.0, "py": 1915.9}, {"loc_id": 8102, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 4, "x": -6652.7, "z": 5757.6, "px": 912.6, "py": 3030.6}, {"loc_id": 8102, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 4, "x": -6652.7, "z": 5757.6, "px": 912.6, "py": 3030.6}, {"loc_id": 8104, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 4, "x": 4806.9, "z": 6199.7, "px": 2868.4, "py": 3106.1}, {"loc_id": 8105, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 4, "x": 8256.8, "z": -3205.0, "px": 3457.2, "py": 1501.0}, {"loc_id": 8107, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 4, "x": -8526.2, "z": -8.1, "px": 592.9, "py": 2046.6}, {"loc_id": 8109, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 4, "x": -1729.3, "z": -7217.3, "px": 1752.9, "py": 816.2}, {"loc_id": 8112, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 4, "x": 3142.9, "z": 6406.4, "px": 2584.4, "py": 3141.4}, {"loc_id": 8114, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 4, "x": -1923.0, "z": 7483.7, "px": 1719.8, "py": 3325.2}, {"loc_id": 8115, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 4, "x": 4857.0, "z": -6089.8, "px": 2876.9, "py": 1008.7}, {"loc_id": 8117, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 4, "x": 3261.3, "z": 6602.3, "px": 2604.6, "py": 3174.8}, {"loc_id": 8118, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 4, "x": 7541.8, "z": -2424.1, "px": 3335.1, "py": 1634.3}, {"loc_id": 8119, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 4, "x": 6322.0, "z": 4218.0, "px": 3127.0, "py": 2767.9}, {"loc_id": 8122, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 4, "x": 1976.4, "z": -6601.1, "px": 2385.3, "py": 921.4}, {"loc_id": 8128, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 4, "x": 316.2, "z": 7435.3, "px": 2102.0, "py": 3317.0}, {"loc_id": 8131, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 4, "x": 7886.1, "z": 2306.6, "px": 3393.9, "py": 2441.7}, {"loc_id": 9949, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 4, "x": -896.0, "z": -9536.0, "px": 1895.1, "py": 420.5}, {"loc_id": 9957, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 4, "x": 1280.0, "z": -9408.0, "px": 2266.5, "py": 442.4}, {"loc_id": 9959, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 4, "x": 768.0, "z": -9088.0, "px": 2179.1, "py": 497.0}, {"loc_id": 9966, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 4, "x": 1600.0, "z": -9152.0, "px": 2321.1, "py": 486.1}, {"loc_id": 9967, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 4, "x": -832.0, "z": -9536.0, "px": 1906.0, "py": 420.5}, {"loc_id": 9969, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 4, "x": 832.0, "z": -9088.0, "px": 2190.0, "py": 497.0}, {"loc_id": 9972, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 4, "x": 1152.0, "z": -8960.0, "px": 2244.6, "py": 518.8}, {"loc_id": 9975, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 4, "x": 768.0, "z": -9024.0, "px": 2179.1, "py": 507.9}, {"loc_id": 9977, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 4, "x": -768.0, "z": -8960.0, "px": 1916.9, "py": 518.8}, {"loc_id": 9978, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 4, "x": -448.0, "z": -9920.0, "px": 1971.5, "py": 355.0}, {"loc_id": 9979, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 4, "x": -256.0, "z": -9984.0, "px": 2004.3, "py": 344.1}, {"loc_id": 9982, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 4, "x": -832.0, "z": -9600.0, "px": 1906.0, "py": 409.6}, {"loc_id": 9983, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 4, "x": -576.0, "z": -9280.0, "px": 1949.7, "py": 464.2}, {"loc_id": 9988, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 4, "x": -704.0, "z": -9536.0, "px": 1927.9, "py": 420.5}, {"loc_id": 9989, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 4, "x": -448.0, "z": -9856.0, "px": 1971.5, "py": 365.9}, {"loc_id": 9990, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 4, "x": -384.0, "z": -9984.0, "px": 1982.5, "py": 344.1}, {"loc_id": 9992, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 4, "x": -832.0, "z": -9216.0, "px": 1906.0, "py": 475.1}, {"loc_id": 9992, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 4, "x": -832.0, "z": -9216.0, "px": 1906.0, "py": 475.1}, {"loc_id": 9994, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 4, "x": -640.0, "z": -9280.0, "px": 1938.8, "py": 464.2}, {"loc_id": 9997, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 4, "x": 1152.0, "z": -8896.0, "px": 2244.6, "py": 529.7}, {"loc_id": 10000, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 4, "x": 704.0, "z": -8960.0, "px": 2168.1, "py": 518.8}, {"loc_id": 10001, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 4, "x": 1536.0, "z": -9216.0, "px": 2310.1, "py": 475.1}, {"loc_id": 10002, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 4, "x": -512.0, "z": -9280.0, "px": 1960.6, "py": 464.2}, {"loc_id": 10003, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 4, "x": 384.0, "z": -8768.0, "px": 2113.5, "py": 551.6}, {"loc_id": 10003, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 4, "x": 384.0, "z": -8768.0, "px": 2113.5, "py": 551.6}, {"loc_id": 10004, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 4, "x": 256.0, "z": -8704.0, "px": 2091.7, "py": 562.5}, {"loc_id": 10008, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 4, "x": -832.0, "z": -9344.0, "px": 1906.0, "py": 453.3}, {"loc_id": 10009, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 4, "x": 832.0, "z": -9344.0, "px": 2190.0, "py": 453.3}, {"loc_id": 10014, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 4, "x": -448.0, "z": -8896.0, "px": 1971.5, "py": 529.7}, {"loc_id": 10016, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 4, "x": 1600.0, "z": -9472.0, "px": 2321.1, "py": 431.4}, {"loc_id": 10026, "loc_name": "CharredRuins1", "item": "Pickable: Vineberry", "count": 4, "x": 2368.0, "z": -8896.0, "px": 2452.1, "py": 529.7}, {"loc_id": 10276, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 4, "x": 1793.8, "z": -9344.9, "px": 2354.1, "py": 453.1}, {"loc_id": 10323, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 4, "x": -3904.8, "z": -8831.1, "px": 1381.6, "py": 540.8}, {"loc_id": 10328, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 4, "x": -1087.1, "z": -9343.5, "px": 1862.5, "py": 453.4}, {"loc_id": 10329, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 4, "x": -1154.0, "z": -9215.1, "px": 1851.1, "py": 475.3}, {"loc_id": 10333, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 4, "x": 1471.0, "z": -9216.5, "px": 2299.1, "py": 475.1}, {"loc_id": 10337, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 4, "x": -513.1, "z": -8832.4, "px": 1960.4, "py": 540.6}, {"loc_id": 10352, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 4, "x": 3455.5, "z": -8513.9, "px": 2637.7, "py": 595.0}, {"loc_id": 10366, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -331.5, "z": -8945.6, "px": 1991.4, "py": 521.3}, {"loc_id": 10367, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 572.8, "z": -9657.4, "px": 2145.8, "py": 399.8}, {"loc_id": 10372, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -1151.4, "z": -9010.3, "px": 1851.5, "py": 510.2}, {"loc_id": 10379, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": -15.0, "z": -9035.2, "px": 2045.4, "py": 506.0}, {"loc_id": 10380, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -1932.3, "z": -9010.9, "px": 1718.2, "py": 510.1}, {"loc_id": 10386, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -390.4, "z": -9539.1, "px": 1981.4, "py": 420.0}, {"loc_id": 10389, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -2312.8, "z": -8500.5, "px": 1653.3, "py": 597.2}, {"loc_id": 10391, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 2182.1, "z": -9409.7, "px": 2420.4, "py": 442.1}, {"loc_id": 10392, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -3720.1, "z": -8753.1, "px": 1413.1, "py": 554.1}, {"loc_id": 10394, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 2487.7, "z": -8949.6, "px": 2472.6, "py": 520.6}, {"loc_id": 10396, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -2992.7, "z": -9088.6, "px": 1537.2, "py": 496.9}, {"loc_id": 10398, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 576.9, "z": -9851.4, "px": 2146.5, "py": 366.7}, {"loc_id": 10404, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -3454.3, "z": -8498.3, "px": 1458.5, "py": 597.6}, {"loc_id": 10405, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": 249.8, "z": -8571.0, "px": 2090.6, "py": 585.2}, {"loc_id": 10407, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -2227.1, "z": -8975.8, "px": 1667.9, "py": 516.1}, {"loc_id": 10413, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -1486.2, "z": -9662.4, "px": 1794.4, "py": 399.0}, {"loc_id": 10419, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -3782.3, "z": -9217.5, "px": 1402.5, "py": 474.9}, {"loc_id": 10420, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -70.1, "z": -8700.7, "px": 2036.0, "py": 563.1}, {"loc_id": 10423, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 563.6, "z": -8575.6, "px": 2144.2, "py": 584.4}, {"loc_id": 10429, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -2437.7, "z": -8388.7, "px": 1632.0, "py": 616.3}, {"loc_id": 10440, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 2575.3, "z": -9358.6, "px": 2487.5, "py": 450.8}, {"loc_id": 10451, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": -4750.0, "z": -8517.1, "px": 1237.3, "py": 594.4}, {"loc_id": 10452, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 3204.7, "z": -8389.1, "px": 2594.9, "py": 616.3}, {"loc_id": 10455, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": 2247.5, "z": -9332.5, "px": 2431.6, "py": 455.3}, {"loc_id": 10457, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": 3577.1, "z": -8120.9, "px": 2658.5, "py": 662.0}, {"loc_id": 10457, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 3577.1, "z": -8120.9, "px": 2658.5, "py": 662.0}, {"loc_id": 10466, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 2305.7, "z": -8838.6, "px": 2441.5, "py": 539.5}, {"loc_id": 10470, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": 779.4, "z": -8628.8, "px": 2181.0, "py": 575.4}, {"loc_id": 10471, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": -3904.3, "z": -8896.6, "px": 1381.7, "py": 529.6}, {"loc_id": 10475, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": 1653.6, "z": -9778.2, "px": 2330.2, "py": 379.2}, {"loc_id": 10476, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": 3314.8, "z": -9329.4, "px": 2613.7, "py": 455.8}, {"loc_id": 10478, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": 3716.0, "z": -8177.8, "px": 2682.2, "py": 652.3}, {"loc_id": 10480, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -1353.9, "z": -9356.6, "px": 1816.9, "py": 451.1}, {"loc_id": 10483, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 2431.7, "z": -9288.8, "px": 2463.0, "py": 462.7}, {"loc_id": 10487, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -57.9, "z": -9807.8, "px": 2038.1, "py": 374.1}, {"loc_id": 10488, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 1984.7, "z": -8456.9, "px": 2386.7, "py": 604.7}, {"loc_id": 10492, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -586.9, "z": -8967.8, "px": 1947.8, "py": 517.5}, {"loc_id": 10497, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 2871.7, "z": -9209.4, "px": 2538.1, "py": 476.3}, {"loc_id": 10499, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -5006.4, "z": -8143.9, "px": 1193.6, "py": 658.1}, {"loc_id": 10500, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -4813.7, "z": -8133.6, "px": 1226.5, "py": 659.9}, {"loc_id": 10508, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 2802.4, "z": -9291.9, "px": 2526.3, "py": 462.2}, {"loc_id": 10509, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": 2800.2, "z": -8947.2, "px": 2525.9, "py": 521.0}, {"loc_id": 10511, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": 5565.6, "z": -8050.7, "px": 2997.9, "py": 674.0}, {"loc_id": 10514, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -3464.7, "z": -8396.4, "px": 1456.7, "py": 615.0}, {"loc_id": 10517, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 3517.3, "z": -8521.8, "px": 2648.3, "py": 593.6}, {"loc_id": 10519, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": 1799.7, "z": -8644.5, "px": 2355.1, "py": 572.7}, {"loc_id": 10520, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": -4730.1, "z": -8206.1, "px": 1240.7, "py": 647.5}, {"loc_id": 10522, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": -6223.4, "z": -7619.9, "px": 985.9, "py": 747.5}, {"loc_id": 10529, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 768.5, "z": -9209.6, "px": 2179.2, "py": 476.2}, {"loc_id": 10539, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -3580.2, "z": -8837.7, "px": 1437.0, "py": 539.7}, {"loc_id": 10542, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -3280.0, "z": -8774.4, "px": 1488.2, "py": 550.5}, {"loc_id": 10546, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -1100.1, "z": -9656.8, "px": 1860.2, "py": 399.9}, {"loc_id": 10552, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 457.5, "z": -8648.0, "px": 2126.1, "py": 572.1}, {"loc_id": 10566, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": 3136.7, "z": -9143.1, "px": 2583.3, "py": 487.6}, {"loc_id": 10573, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -2891.6, "z": -8332.5, "px": 1554.5, "py": 625.9}, {"loc_id": 10577, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 755.6, "z": -8949.4, "px": 2177.0, "py": 520.6}, {"loc_id": 10578, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 569.0, "z": -8822.9, "px": 2145.1, "py": 542.2}, {"loc_id": 10579, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 118.0, "z": -9611.0, "px": 2068.1, "py": 407.7}, {"loc_id": 10581, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": 2550.0, "z": -9165.5, "px": 2483.2, "py": 483.8}, {"loc_id": 10583, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": -5519.8, "z": -7810.9, "px": 1106.0, "py": 714.9}, {"loc_id": 10584, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 3661.7, "z": -8388.0, "px": 2672.9, "py": 616.4}, {"loc_id": 10587, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 1911.6, "z": -8375.5, "px": 2374.2, "py": 618.6}, {"loc_id": 10591, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": 5242.9, "z": -7796.2, "px": 2942.8, "py": 717.4}, {"loc_id": 10595, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 1423.6, "z": -9672.2, "px": 2291.0, "py": 397.3}, {"loc_id": 10597, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 3891.8, "z": -8385.7, "px": 2712.2, "py": 616.8}, {"loc_id": 10600, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": 332.0, "z": -9603.1, "px": 2104.7, "py": 409.1}, {"loc_id": 10601, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -448.5, "z": -9796.0, "px": 1971.5, "py": 376.1}, {"loc_id": 10604, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -625.3, "z": -9140.9, "px": 1941.3, "py": 488.0}, {"loc_id": 10606, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 5491.3, "z": -7931.8, "px": 2985.2, "py": 694.3}, {"loc_id": 10607, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 3978.1, "z": -8630.0, "px": 2726.9, "py": 575.1}, {"loc_id": 10608, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 1784.3, "z": -9101.6, "px": 2352.5, "py": 494.7}, {"loc_id": 10612, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -4096.3, "z": -8197.3, "px": 1348.9, "py": 649.0}, {"loc_id": 10618, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -4943.7, "z": -8252.5, "px": 1204.3, "py": 639.6}, {"loc_id": 10621, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": 5436.6, "z": -8015.5, "px": 2975.8, "py": 680.0}, {"loc_id": 10624, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -138.3, "z": -9586.1, "px": 2024.4, "py": 412.0}, {"loc_id": 10628, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": -2890.9, "z": -9028.5, "px": 1554.6, "py": 507.1}, {"loc_id": 10629, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": -271.3, "z": -8655.9, "px": 2001.7, "py": 570.7}, {"loc_id": 10634, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -177.2, "z": -8832.3, "px": 2017.8, "py": 540.6}, {"loc_id": 10637, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -5259.6, "z": -7602.7, "px": 1150.4, "py": 750.5}, {"loc_id": 10644, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -5513.7, "z": -7628.2, "px": 1107.0, "py": 746.1}, {"loc_id": 10645, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -1853.1, "z": -9267.8, "px": 1731.7, "py": 466.3}, {"loc_id": 10649, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": -1920.0, "z": -8695.0, "px": 1720.3, "py": 564.1}, {"loc_id": 10652, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": 2812.3, "z": -9076.4, "px": 2528.0, "py": 499.0}, {"loc_id": 10654, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 4, "x": 3062.2, "z": -9020.9, "px": 2570.6, "py": 508.4}, {"loc_id": 10656, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -1014.1, "z": -9469.7, "px": 1874.9, "py": 431.8}, {"loc_id": 10658, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -369.5, "z": -9423.9, "px": 1984.9, "py": 439.7}, {"loc_id": 10666, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -887.5, "z": -9162.4, "px": 1896.5, "py": 484.3}, {"loc_id": 10672, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -5118.2, "z": -7991.2, "px": 1174.5, "py": 684.2}, {"loc_id": 10674, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": 310.6, "z": -9287.8, "px": 2101.0, "py": 462.9}, {"loc_id": 10675, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -501.1, "z": -9999.7, "px": 1962.5, "py": 341.4}, {"loc_id": 10676, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 4, "x": -3784.2, "z": -8646.7, "px": 1402.2, "py": 572.3}, {"loc_id": 10709, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 4, "x": 5384.6, "z": -8070.3, "px": 2967.0, "py": 670.7}, {"loc_id": 10712, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 4, "x": 1910.5, "z": -8440.1, "px": 2374.1, "py": 607.6}, {"loc_id": 10714, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 4, "x": 132.6, "z": -9157.1, "px": 2070.6, "py": 485.2}, {"loc_id": 10715, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 4, "x": -959.7, "z": -9730.7, "px": 1884.2, "py": 387.3}, {"loc_id": 10716, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 4, "x": 3259.1, "z": -8380.7, "px": 2604.2, "py": 617.7}, {"loc_id": 10717, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 4, "x": 1860.6, "z": -9463.3, "px": 2365.5, "py": 432.9}, {"loc_id": 10720, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 4, "x": -4612.3, "z": -8391.2, "px": 1260.8, "py": 615.9}, {"loc_id": 10721, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 4, "x": 2748.2, "z": -9022.6, "px": 2517.0, "py": 508.1}, {"loc_id": 10722, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 4, "x": 513.8, "z": -9855.1, "px": 2135.7, "py": 366.1}, {"loc_id": 10724, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 4, "x": -4408.4, "z": -8320.3, "px": 1295.6, "py": 628.0}, {"loc_id": 10725, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 4, "x": -3583.6, "z": -8570.7, "px": 1436.4, "py": 585.3}, {"loc_id": 10726, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 4, "x": -2614.2, "z": -8834.8, "px": 1601.8, "py": 540.2}, {"loc_id": 10729, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 4, "x": -3260.0, "z": -8824.5, "px": 1491.6, "py": 542.0}, {"loc_id": 10730, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 4, "x": -55.7, "z": -8772.4, "px": 2038.5, "py": 550.8}, {"loc_id": 10733, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 4, "x": 647.3, "z": -9861.7, "px": 2158.5, "py": 364.9}, {"loc_id": 10734, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 4, "x": -185.1, "z": -8767.1, "px": 2016.4, "py": 551.7}, {"loc_id": 10736, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 4, "x": 2363.0, "z": -9145.1, "px": 2451.3, "py": 487.2}, {"loc_id": 10737, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 4, "x": 5193.3, "z": -7740.7, "px": 2934.3, "py": 726.9}, {"loc_id": 10815, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 4, "x": -5376.0, "z": -7552.0, "px": 1130.5, "py": 759.1}, {"loc_id": 10820, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 4, "x": -4480.0, "z": -8320.0, "px": 1283.4, "py": 628.1}, {"loc_id": 10821, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 4, "x": -5056.0, "z": -8128.0, "px": 1185.1, "py": 660.8}, {"loc_id": 10825, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 4, "x": -2304.0, "z": -8320.0, "px": 1654.8, "py": 628.1}, {"loc_id": 10842, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 4, "x": 1088.0, "z": -8832.0, "px": 2233.7, "py": 540.7}, {"loc_id": 10843, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 4, "x": 3840.0, "z": -8896.0, "px": 2703.4, "py": 529.7}, {"loc_id": 10861, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 4, "x": -3712.0, "z": -9216.0, "px": 1414.5, "py": 475.1}, {"loc_id": 10863, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 4, "x": 2176.0, "z": -8320.0, "px": 2419.4, "py": 628.1}, {"loc_id": 10864, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 4, "x": -5248.0, "z": -7744.0, "px": 1152.3, "py": 726.4}, {"loc_id": 10869, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 4, "x": -4288.0, "z": -8128.0, "px": 1316.2, "py": 660.8}, {"loc_id": 10871, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 4, "x": -1472.0, "z": -9728.0, "px": 1796.8, "py": 387.8}, {"loc_id": 10878, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 4, "x": -3776.0, "z": -8576.0, "px": 1403.6, "py": 584.4}, {"loc_id": 10894, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 4, "x": 1408.0, "z": -9152.0, "px": 2288.3, "py": 486.1}, {"loc_id": 10897, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 4, "x": 1856.0, "z": -8512.0, "px": 2364.8, "py": 595.3}, {"loc_id": 10898, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 4, "x": -5504.0, "z": -7744.0, "px": 1108.7, "py": 726.4}, {"loc_id": 10912, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 4, "x": 1852.2, "z": -8443.0, "px": 2364.1, "py": 607.1}, {"loc_id": 10917, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 4, "x": -3975.7, "z": -8892.9, "px": 1369.5, "py": 530.3}, {"loc_id": 10918, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 4, "x": 70.1, "z": -8519.3, "px": 2060.0, "py": 594.0}, {"loc_id": 10920, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 4, "x": -519.3, "z": -9667.0, "px": 1959.4, "py": 398.2}, {"loc_id": 10926, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 4, "x": -4355.3, "z": -8380.1, "px": 1304.7, "py": 617.8}, {"loc_id": 10927, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 4, "x": 518.9, "z": -9599.7, "px": 2136.6, "py": 409.7}, {"loc_id": 10929, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 4, "x": -251.2, "z": -8961.5, "px": 2005.1, "py": 518.6}, {"loc_id": 10931, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 4, "x": 1272.8, "z": -9535.5, "px": 2265.2, "py": 420.6}, {"loc_id": 10933, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 4, "x": -1017.7, "z": -9534.6, "px": 1874.3, "py": 420.8}, {"loc_id": 10940, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 4, "x": 199.0, "z": -9403.6, "px": 2082.0, "py": 443.1}, {"loc_id": 10942, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 4, "x": 1026.0, "z": -8888.6, "px": 2223.1, "py": 531.0}, {"loc_id": 10948, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 4, "x": -576.9, "z": -9017.7, "px": 1949.5, "py": 509.0}, {"loc_id": 10951, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 4, "x": -4803.1, "z": -8384.7, "px": 1228.3, "py": 617.0}, {"loc_id": 10953, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 4, "x": -510.3, "z": -9340.6, "px": 1960.9, "py": 453.9}, {"loc_id": 10958, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 4, "x": -1280.7, "z": -9470.9, "px": 1829.4, "py": 431.6}, {"loc_id": 10960, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 4, "x": -2426.2, "z": -8512.5, "px": 1633.9, "py": 595.2}, {"loc_id": 10967, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 4, "x": -2684.9, "z": -8378.4, "px": 1589.8, "py": 618.1}, {"loc_id": 10969, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 4, "x": 3201.0, "z": -9283.9, "px": 2594.3, "py": 463.5}, {"loc_id": 10971, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 4, "x": -4740.1, "z": -8063.2, "px": 1239.0, "py": 671.9}, {"loc_id": 10980, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 4, "x": -3591.8, "z": -8891.7, "px": 1435.0, "py": 530.5}, {"loc_id": 10980, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 4, "x": -3591.8, "z": -8891.7, "px": 1435.0, "py": 530.5}, {"loc_id": 10983, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 4, "x": -313.5, "z": -9592.6, "px": 1994.5, "py": 410.9}, {"loc_id": 10986, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 4, "x": 253.9, "z": -9596.2, "px": 2091.3, "py": 410.2}, {"loc_id": 10989, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 4, "x": -2112.8, "z": -8443.5, "px": 1687.4, "py": 607.0}, {"loc_id": 11001, "loc_name": "MorgenHole3", "item": "Pickable: Entrails", "count": 4, "x": 128.1, "z": -9215.8, "px": 2069.9, "py": 475.2}, {"loc_id": 11006, "loc_name": "MorgenHole3", "item": "Pickable: MoltenCore", "count": 4, "x": -4609.4, "z": -8324.6, "px": 1261.3, "py": 627.3}, {"loc_id": 11007, "loc_name": "MorgenHole3", "item": "Pickable: Entrails", "count": 4, "x": -5181.1, "z": -8002.8, "px": 1163.8, "py": 682.2}, {"loc_id": 11008, "loc_name": "MorgenHole3", "item": "Pickable: MoltenCore", "count": 4, "x": -2823.0, "z": -8575.7, "px": 1566.2, "py": 584.4}, {"loc_id": 11010, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 4, "x": -579.7, "z": -9417.8, "px": 1949.1, "py": 440.7}, {"loc_id": 11011, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 4, "x": 1425.0, "z": -9844.7, "px": 2291.2, "py": 367.8}, {"loc_id": 11026, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 4, "x": 6278.5, "z": -7118.6, "px": 3119.5, "py": 833.1}, {"loc_id": 11032, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 4, "x": -4022.3, "z": -8637.6, "px": 1361.5, "py": 573.8}, {"loc_id": 11036, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 4, "x": 5499.6, "z": -7741.6, "px": 2986.6, "py": 726.8}, {"loc_id": 11037, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 4, "x": 2958.6, "z": -8842.0, "px": 2552.9, "py": 539.0}, {"loc_id": 11039, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 4, "x": -5445.8, "z": -7939.4, "px": 1118.6, "py": 693.0}, {"loc_id": 11065, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 4, "x": -306.5, "z": -9485.3, "px": 1995.7, "py": 429.2}, {"loc_id": 11066, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 4, "x": -1544.2, "z": -8774.3, "px": 1784.5, "py": 550.5}, {"loc_id": 11068, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 4, "x": -4432.3, "z": -8461.9, "px": 1291.6, "py": 603.8}, {"loc_id": 11071, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 4, "x": 3321.0, "z": -9391.6, "px": 2614.8, "py": 445.2}, {"loc_id": 11075, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 4, "x": -1665.4, "z": -9282.9, "px": 1763.8, "py": 463.7}, {"loc_id": 11078, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 4, "x": 3072.1, "z": -8901.9, "px": 2572.3, "py": 528.7}, {"loc_id": 11079, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 4, "x": -206.2, "z": -9584.8, "px": 2012.8, "py": 412.2}, {"loc_id": 11080, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 4, "x": 2192.0, "z": -9103.5, "px": 2422.1, "py": 494.3}, {"loc_id": 11081, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 4, "x": 3587.3, "z": -8057.1, "px": 2660.2, "py": 672.9}, {"loc_id": 11088, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 4, "x": -2825.9, "z": -9095.6, "px": 1565.7, "py": 495.7}, {"loc_id": 11096, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 4, "x": -2681.4, "z": -9038.8, "px": 1590.4, "py": 505.4}, {"loc_id": 11098, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 4, "x": 3080.9, "z": -8450.6, "px": 2573.8, "py": 605.8}, {"loc_id": 11108, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 4, "x": 1844.1, "z": -8694.4, "px": 2362.7, "py": 564.2}, {"loc_id": 11125, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 4, "x": 1014.5, "z": -9399.5, "px": 2221.1, "py": 443.8}, {"loc_id": 11127, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 4, "x": -4080.9, "z": -8243.6, "px": 1351.5, "py": 641.1}, {"loc_id": 11131, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 4, "x": 1289.3, "z": -9276.4, "px": 2268.0, "py": 464.8}, {"loc_id": 11136, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 4, "x": 454.2, "z": -9803.7, "px": 2125.5, "py": 374.8}, {"loc_id": 11153, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 4, "x": -4946.2, "z": -7740.2, "px": 1203.8, "py": 727.0}, {"loc_id": 11164, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 4, "x": -6350.2, "z": -7672.0, "px": 964.2, "py": 738.6}, {"loc_id": 11165, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 4, "x": -898.1, "z": -8969.8, "px": 1894.7, "py": 517.2}, {"loc_id": 11170, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 4, "x": -2805.8, "z": -8323.3, "px": 1569.1, "py": 627.5}, {"loc_id": 11176, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 4, "x": -5133.4, "z": -8313.6, "px": 1171.9, "py": 629.1}, {"loc_id": 11187, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 4, "x": -5619.6, "z": -7800.3, "px": 1088.9, "py": 716.7}, {"loc_id": 11190, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 4, "x": 6450.9, "z": -7232.1, "px": 3149.0, "py": 813.7}, {"loc_id": 11197, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 4, "x": 3392.2, "z": -9324.5, "px": 2626.9, "py": 456.6}, {"loc_id": 11203, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 4, "x": -389.1, "z": -9459.7, "px": 1981.6, "py": 433.5}, {"loc_id": 11213, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 4, "x": -1710.6, "z": -8946.7, "px": 1756.1, "py": 521.1}, {"loc_id": 11215, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 4, "x": -5546.2, "z": -7921.0, "px": 1101.4, "py": 696.1}, {"loc_id": 11217, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 4, "x": 822.0, "z": -8572.5, "px": 2188.3, "py": 585.0}, {"loc_id": 11223, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 4, "x": -2895.5, "z": -8976.0, "px": 1553.8, "py": 516.1}, {"loc_id": 11226, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 4, "x": -1514.7, "z": -9352.4, "px": 1789.5, "py": 451.9}, {"loc_id": 11227, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 4, "x": -1587.5, "z": -8823.9, "px": 1777.1, "py": 542.1}, {"loc_id": 11234, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 4, "x": -139.4, "z": -8658.0, "px": 2024.2, "py": 570.4}, {"loc_id": 11243, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 4, "x": 2035.3, "z": -8523.0, "px": 2395.4, "py": 593.4}, {"loc_id": 11246, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 4, "x": -61.5, "z": -9074.6, "px": 2037.5, "py": 499.3}, {"loc_id": 11248, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 4, "x": -5499.8, "z": -7572.0, "px": 1109.4, "py": 755.7}, {"loc_id": 11252, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 4, "x": 469.6, "z": -8581.6, "px": 2128.1, "py": 583.4}, {"loc_id": 11253, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 4, "x": 2544.6, "z": -8950.7, "px": 2482.3, "py": 520.4}, {"loc_id": 11256, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 4, "x": -5141.9, "z": -8430.2, "px": 1170.4, "py": 609.2}, {"loc_id": 11265, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 4, "x": -4880.0, "z": -7986.7, "px": 1215.1, "py": 684.9}, {"loc_id": 11297, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 4, "x": 3319.5, "z": -8560.3, "px": 2614.5, "py": 587.0}, {"loc_id": 11303, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 4, "x": -3564.1, "z": -8528.5, "px": 1439.7, "py": 592.5}, {"loc_id": 11307, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 4, "x": 1736.4, "z": -8682.7, "px": 2344.3, "py": 566.2}, {"loc_id": 18, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": 2438.5, "z": -1087.3, "px": 2464.2, "py": 1862.4}, {"loc_id": 18, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 3, "x": 2438.5, "z": -1087.3, "px": 2464.2, "py": 1862.4}, {"loc_id": 19, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 3, "x": 3320.3, "z": 4792.1, "px": 2614.7, "py": 2865.9}, {"loc_id": 22, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": -4353.9, "z": 1157.7, "px": 1304.9, "py": 2245.6}, {"loc_id": 27, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 3, "x": -3648.3, "z": -4161.2, "px": 1425.4, "py": 1337.8}, {"loc_id": 30, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": -525.6, "z": -3575.0, "px": 1958.3, "py": 1437.9}, {"loc_id": 33, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": 1739.5, "z": 4407.1, "px": 2344.9, "py": 2800.1}, {"loc_id": 34, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": 1475.7, "z": 2164.3, "px": 2299.9, "py": 2417.4}, {"loc_id": 35, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": -209.6, "z": 2703.7, "px": 2012.2, "py": 2509.4}, {"loc_id": 36, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": -2570.0, "z": -1520.8, "px": 1609.4, "py": 1788.5}, {"loc_id": 37, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 3, "x": -384.0, "z": 2571.6, "px": 1982.5, "py": 2486.9}, {"loc_id": 39, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": -562.3, "z": -4030.4, "px": 1952.0, "py": 1360.1}, {"loc_id": 40, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": 464.9, "z": 2558.6, "px": 2127.3, "py": 2484.7}, {"loc_id": 40, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": 464.9, "z": 2558.6, "px": 2127.3, "py": 2484.7}, {"loc_id": 41, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": -4227.6, "z": 396.2, "px": 1326.5, "py": 2115.6}, {"loc_id": 41, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": -4227.6, "z": 396.2, "px": 1326.5, "py": 2115.6}, {"loc_id": 44, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 3, "x": -187.0, "z": 2492.5, "px": 2016.1, "py": 2473.4}, {"loc_id": 50, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 3, "x": -773.5, "z": -3723.6, "px": 1916.0, "py": 1412.5}, {"loc_id": 54, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": 133.7, "z": 2553.3, "px": 2070.8, "py": 2483.8}, {"loc_id": 56, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": 2178.8, "z": -3206.1, "px": 2419.8, "py": 1500.8}, {"loc_id": 56, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": 2178.8, "z": -3206.1, "px": 2419.8, "py": 1500.8}, {"loc_id": 58, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": 1550.5, "z": 2242.3, "px": 2312.6, "py": 2430.7}, {"loc_id": 59, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": -3448.5, "z": 3407.3, "px": 1459.5, "py": 2629.5}, {"loc_id": 59, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": -3448.5, "z": 3407.3, "px": 1459.5, "py": 2629.5}, {"loc_id": 61, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": -3631.6, "z": 3121.5, "px": 1428.2, "py": 2580.7}, {"loc_id": 62, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": -2356.3, "z": -1007.5, "px": 1645.9, "py": 1876.1}, {"loc_id": 63, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": 1654.7, "z": 4477.8, "px": 2330.4, "py": 2812.2}, {"loc_id": 64, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 3, "x": -4300.6, "z": 656.9, "px": 1314.0, "py": 2160.1}, {"loc_id": 66, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": -2736.5, "z": -1736.3, "px": 1581.0, "py": 1751.7}, {"loc_id": 66, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": -2736.5, "z": -1736.3, "px": 1581.0, "py": 1751.7}, {"loc_id": 67, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": -79.4, "z": 2703.3, "px": 2034.4, "py": 2509.4}, {"loc_id": 68, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 3, "x": -3123.2, "z": 395.0, "px": 1515.0, "py": 2115.4}, {"loc_id": 69, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": 2314.6, "z": -1080.4, "px": 2443.0, "py": 1863.6}, {"loc_id": 69, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 3, "x": 2314.6, "z": -1080.4, "px": 2443.0, "py": 1863.6}, {"loc_id": 70, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 3, "x": 2613.0, "z": -138.8, "px": 2494.0, "py": 2024.3}, {"loc_id": 71, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 3, "x": 1918.6, "z": 1526.0, "px": 2375.4, "py": 2308.4}, {"loc_id": 76, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": -2491.8, "z": -4097.4, "px": 1622.7, "py": 1348.7}, {"loc_id": 77, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 3, "x": 2296.4, "z": -3207.7, "px": 2439.9, "py": 1500.6}, {"loc_id": 79, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": -952.0, "z": -5685.9, "px": 1885.5, "py": 1077.6}, {"loc_id": 80, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": 2377.0, "z": -1156.8, "px": 2453.7, "py": 1850.6}, {"loc_id": 88, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 3, "x": 2353.7, "z": 270.7, "px": 2449.7, "py": 2094.2}, {"loc_id": 89, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 3, "x": -1936.1, "z": 4537.9, "px": 1717.6, "py": 2822.5}, {"loc_id": 89, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": -1936.1, "z": 4537.9, "px": 1717.6, "py": 2822.5}, {"loc_id": 91, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": -5102.0, "z": -771.2, "px": 1177.3, "py": 1916.4}, {"loc_id": 92, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 3, "x": 1287.0, "z": 2118.5, "px": 2267.6, "py": 2409.6}, {"loc_id": 92, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 3, "x": 1287.0, "z": 2118.5, "px": 2267.6, "py": 2409.6}, {"loc_id": 94, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 3, "x": 4547.2, "z": -3269.9, "px": 2824.1, "py": 1489.9}, {"loc_id": 94, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": 4547.2, "z": -3269.9, "px": 2824.1, "py": 1489.9}, {"loc_id": 97, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 3, "x": 2738.0, "z": 3658.2, "px": 2515.3, "py": 2672.3}, {"loc_id": 100, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": 2508.7, "z": -5306.2, "px": 2476.2, "py": 1142.4}, {"loc_id": 102, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": -5252.9, "z": -769.4, "px": 1151.5, "py": 1916.7}, {"loc_id": 103, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 3, "x": -5489.1, "z": 1993.6, "px": 1111.2, "py": 2388.2}, {"loc_id": 103, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 3, "x": -5489.1, "z": 1993.6, "px": 1111.2, "py": 2388.2}, {"loc_id": 105, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": 197.3, "z": 2575.2, "px": 2081.7, "py": 2487.5}, {"loc_id": 105, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": 197.3, "z": 2575.2, "px": 2081.7, "py": 2487.5}, {"loc_id": 108, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": 521.3, "z": 2624.5, "px": 2137.0, "py": 2495.9}, {"loc_id": 109, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": -1078.2, "z": -3658.3, "px": 1864.0, "py": 1423.7}, {"loc_id": 109, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": -1078.2, "z": -3658.3, "px": 1864.0, "py": 1423.7}, {"loc_id": 110, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": 1466.6, "z": 2232.4, "px": 2298.3, "py": 2429.0}, {"loc_id": 111, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 3, "x": -264.5, "z": 2509.6, "px": 2002.9, "py": 2476.3}, {"loc_id": 112, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": 2361.0, "z": -3273.3, "px": 2450.9, "py": 1489.4}, {"loc_id": 112, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": 2361.0, "z": -3273.3, "px": 2450.9, "py": 1489.4}, {"loc_id": 113, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": 1402.0, "z": 2222.3, "px": 2287.3, "py": 2427.3}, {"loc_id": 114, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": 1607.7, "z": 2117.6, "px": 2322.4, "py": 2409.4}, {"loc_id": 117, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 3, "x": 272.2, "z": 2565.9, "px": 2094.5, "py": 2485.9}, {"loc_id": 118, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": -2309.6, "z": 4288.3, "px": 1653.8, "py": 2779.9}, {"loc_id": 119, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 3, "x": -5197.6, "z": 1466.1, "px": 1160.9, "py": 2298.2}, {"loc_id": 121, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": -4236.9, "z": 465.5, "px": 1324.9, "py": 2127.4}, {"loc_id": 123, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": 2317.7, "z": 334.7, "px": 2443.6, "py": 2105.1}, {"loc_id": 124, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": 3454.8, "z": -4349.8, "px": 2637.6, "py": 1305.6}, {"loc_id": 124, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": 3454.8, "z": -4349.8, "px": 2637.6, "py": 1305.6}, {"loc_id": 125, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": -5361.6, "z": 1717.9, "px": 1133.0, "py": 2341.2}, {"loc_id": 126, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": 2176.0, "z": 447.6, "px": 2419.4, "py": 2124.4}, {"loc_id": 126, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": 2176.0, "z": 447.6, "px": 2419.4, "py": 2124.4}, {"loc_id": 129, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": -3081.8, "z": 578.8, "px": 1522.0, "py": 2146.8}, {"loc_id": 130, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": 4748.1, "z": -509.7, "px": 2858.3, "py": 1961.0}, {"loc_id": 130, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": 4748.1, "z": -509.7, "px": 2858.3, "py": 1961.0}, {"loc_id": 133, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 3, "x": -2637.3, "z": -5254.9, "px": 1597.9, "py": 1151.2}, {"loc_id": 134, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 3, "x": -3640.2, "z": 3214.4, "px": 1426.7, "py": 2596.6}, {"loc_id": 135, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 3, "x": 2251.6, "z": 335.0, "px": 2432.3, "py": 2105.2}, {"loc_id": 135, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": 2251.6, "z": 335.0, "px": 2432.3, "py": 2105.2}, {"loc_id": 135, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": 2251.6, "z": 335.0, "px": 2432.3, "py": 2105.2}, {"loc_id": 137, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": 2561.4, "z": -16.1, "px": 2485.1, "py": 2045.3}, {"loc_id": 139, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": 3504.5, "z": 1327.7, "px": 2646.1, "py": 2274.6}, {"loc_id": 139, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": 3504.5, "z": 1327.7, "px": 2646.1, "py": 2274.6}, {"loc_id": 140, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": 383.1, "z": 2565.9, "px": 2113.4, "py": 2485.9}, {"loc_id": 145, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 3, "x": -5130.3, "z": 1350.3, "px": 1172.4, "py": 2278.5}, {"loc_id": 145, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": -5130.3, "z": 1350.3, "px": 1172.4, "py": 2278.5}, {"loc_id": 148, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": 586.4, "z": 2679.5, "px": 2148.1, "py": 2505.3}, {"loc_id": 149, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 3, "x": 1404.0, "z": 1975.1, "px": 2287.6, "py": 2385.1}, {"loc_id": 150, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": 3631.8, "z": 1023.6, "px": 2667.8, "py": 2222.7}, {"loc_id": 151, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": -3642.6, "z": -4094.0, "px": 1426.3, "py": 1349.3}, {"loc_id": 151, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": -3642.6, "z": -4094.0, "px": 1426.3, "py": 1349.3}, {"loc_id": 155, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 3, "x": -5362.2, "z": 1582.8, "px": 1132.9, "py": 2318.1}, {"loc_id": 155, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": -5362.2, "z": 1582.8, "px": 1132.9, "py": 2318.1}, {"loc_id": 156, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": 3335.7, "z": -4334.9, "px": 2617.3, "py": 1308.2}, {"loc_id": 156, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": 3335.7, "z": -4334.9, "px": 2617.3, "py": 1308.2}, {"loc_id": 158, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": -4423.2, "z": 1289.1, "px": 1293.1, "py": 2268.0}, {"loc_id": 161, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": -2701.2, "z": -912.1, "px": 1587.0, "py": 1892.3}, {"loc_id": 165, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": 2629.5, "z": 3851.6, "px": 2496.8, "py": 2705.3}, {"loc_id": 166, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 3, "x": -2244.3, "z": 4276.9, "px": 1665.0, "py": 2777.9}, {"loc_id": 167, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": 3397.0, "z": -4496.1, "px": 2627.8, "py": 1280.7}, {"loc_id": 167, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": 3397.0, "z": -4496.1, "px": 2627.8, "py": 1280.7}, {"loc_id": 169, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": -5107.9, "z": 1285.8, "px": 1176.3, "py": 2267.4}, {"loc_id": 170, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": -4366.3, "z": 396.5, "px": 1302.8, "py": 2115.7}, {"loc_id": 178, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": -4272.5, "z": 3640.1, "px": 1318.8, "py": 2669.2}, {"loc_id": 178, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": -4272.5, "z": 3640.1, "px": 1318.8, "py": 2669.2}, {"loc_id": 180, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": 3381.3, "z": -4433.3, "px": 2625.1, "py": 1291.4}, {"loc_id": 180, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 3, "x": 3381.3, "z": -4433.3, "px": 2625.1, "py": 1291.4}, {"loc_id": 182, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": -2513.9, "z": -4161.4, "px": 1619.0, "py": 1337.8}, {"loc_id": 183, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": -2508.1, "z": 4873.8, "px": 1620.0, "py": 2879.8}, {"loc_id": 184, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": -819.9, "z": -3633.2, "px": 1908.1, "py": 1427.9}, {"loc_id": 185, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": 12.0, "z": 2560.5, "px": 2050.0, "py": 2485.0}, {"loc_id": 185, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": 12.0, "z": 2560.5, "px": 2050.0, "py": 2485.0}, {"loc_id": 186, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": -5617.1, "z": -1099.6, "px": 1089.3, "py": 1860.3}, {"loc_id": 189, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 3, "x": 1211.9, "z": 2097.1, "px": 2254.8, "py": 2405.9}, {"loc_id": 192, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 3, "x": -5170.2, "z": -656.1, "px": 1165.6, "py": 1936.0}, {"loc_id": 658, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 3, "x": -1856.0, "z": -6976.0, "px": 1731.2, "py": 857.4}, {"loc_id": 659, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": 3840.0, "z": -5952.0, "px": 2703.4, "py": 1032.2}, {"loc_id": 659, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": 3840.0, "z": -5952.0, "px": 2703.4, "py": 1032.2}, {"loc_id": 660, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 3, "x": -6080.0, "z": -896.0, "px": 1010.3, "py": 1895.1}, {"loc_id": 663, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 3, "x": -1728.0, "z": -7296.0, "px": 1753.1, "py": 802.8}, {"loc_id": 663, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 3, "x": -1728.0, "z": -7296.0, "px": 1753.1, "py": 802.8}, {"loc_id": 663, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 3, "x": -1728.0, "z": -7296.0, "px": 1753.1, "py": 802.8}, {"loc_id": 664, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 3, "x": 5952.0, "z": 5120.0, "px": 3063.8, "py": 2921.8}, {"loc_id": 666, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 3, "x": 3072.0, "z": 6336.0, "px": 2572.3, "py": 3129.3}, {"loc_id": 666, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 3, "x": 3072.0, "z": 6336.0, "px": 2572.3, "py": 3129.3}, {"loc_id": 667, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": -2752.0, "z": -6016.0, "px": 1578.3, "py": 1021.3}, {"loc_id": 669, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 3, "x": -2112.0, "z": 7360.0, "px": 1687.6, "py": 3304.1}, {"loc_id": 669, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": -2112.0, "z": 7360.0, "px": 1687.6, "py": 3304.1}, {"loc_id": 670, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 3, "x": -4736.0, "z": -3968.0, "px": 1239.7, "py": 1370.8}, {"loc_id": 672, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 3, "x": 3776.0, "z": 5952.0, "px": 2692.4, "py": 3063.8}, {"loc_id": 674, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 3, "x": 1664.0, "z": -6784.0, "px": 2332.0, "py": 890.2}, {"loc_id": 674, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": 1664.0, "z": -6784.0, "px": 2332.0, "py": 890.2}, {"loc_id": 677, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 3, "x": -8000.0, "z": -4288.0, "px": 682.7, "py": 1316.2}, {"loc_id": 677, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": -8000.0, "z": -4288.0, "px": 682.7, "py": 1316.2}, {"loc_id": 681, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": -8576.0, "z": 2112.0, "px": 584.4, "py": 2408.4}, {"loc_id": 682, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": 3904.0, "z": -5632.0, "px": 2714.3, "py": 1086.8}, {"loc_id": 683, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": 9088.0, "z": 1472.0, "px": 3599.0, "py": 2299.2}, {"loc_id": 684, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 3, "x": -8640.0, "z": 1536.0, "px": 573.4, "py": 2310.1}, {"loc_id": 684, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 3, "x": -8640.0, "z": 1536.0, "px": 573.4, "py": 2310.1}, {"loc_id": 684, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 3, "x": -8640.0, "z": 1536.0, "px": 573.4, "py": 2310.1}, {"loc_id": 684, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": -8640.0, "z": 1536.0, "px": 573.4, "py": 2310.1}, {"loc_id": 686, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 3, "x": 7744.0, "z": 2496.0, "px": 3369.6, "py": 2474.0}, {"loc_id": 688, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 3, "x": -1920.0, "z": 7040.0, "px": 1720.3, "py": 3249.5}, {"loc_id": 688, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 3, "x": -1920.0, "z": 7040.0, "px": 1720.3, "py": 3249.5}, {"loc_id": 689, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": 7040.0, "z": -3712.0, "px": 3249.5, "py": 1414.5}, {"loc_id": 691, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 3, "x": 8960.0, "z": -1024.0, "px": 3577.2, "py": 1873.2}, {"loc_id": 692, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 3, "x": -2816.0, "z": 6272.0, "px": 1567.4, "py": 3118.4}, {"loc_id": 697, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": 9600.0, "z": -2368.0, "px": 3686.4, "py": 1643.9}, {"loc_id": 700, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": 8448.0, "z": 896.0, "px": 3489.8, "py": 2200.9}, {"loc_id": 701, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": -1152.0, "z": -7040.0, "px": 1851.4, "py": 846.5}, {"loc_id": 705, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 3, "x": 6144.0, "z": -1536.0, "px": 3096.6, "py": 1785.9}, {"loc_id": 706, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 3, "x": 9728.0, "z": 1536.0, "px": 3708.2, "py": 2310.1}, {"loc_id": 706, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": 9728.0, "z": 1536.0, "px": 3708.2, "py": 2310.1}, {"loc_id": 709, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 3, "x": -6080.0, "z": -1984.0, "px": 1010.3, "py": 1709.4}, {"loc_id": 709, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": -6080.0, "z": -1984.0, "px": 1010.3, "py": 1709.4}, {"loc_id": 710, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 3, "x": 8384.0, "z": -3456.0, "px": 3478.9, "py": 1458.2}, {"loc_id": 710, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 3, "x": 8384.0, "z": -3456.0, "px": 3478.9, "py": 1458.2}, {"loc_id": 710, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 3, "x": 8384.0, "z": -3456.0, "px": 3478.9, "py": 1458.2}, {"loc_id": 710, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 3, "x": 8384.0, "z": -3456.0, "px": 3478.9, "py": 1458.2}, {"loc_id": 711, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 3, "x": -5184.0, "z": 6208.0, "px": 1163.3, "py": 3107.5}, {"loc_id": 711, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": -5184.0, "z": 6208.0, "px": 1163.3, "py": 3107.5}, {"loc_id": 713, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 3, "x": 4224.0, "z": 5824.0, "px": 2768.9, "py": 3042.0}, {"loc_id": 715, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 3, "x": 8064.0, "z": 2752.0, "px": 3424.3, "py": 2517.7}, {"loc_id": 715, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 3, "x": 8064.0, "z": 2752.0, "px": 3424.3, "py": 2517.7}, {"loc_id": 716, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": -6336.0, "z": 3328.0, "px": 966.7, "py": 2616.0}, {"loc_id": 716, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 3, "x": -6336.0, "z": 3328.0, "px": 966.7, "py": 2616.0}, {"loc_id": 716, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 3, "x": -6336.0, "z": 3328.0, "px": 966.7, "py": 2616.0}, {"loc_id": 717, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 3, "x": -7360.0, "z": -3392.0, "px": 791.9, "py": 1469.1}, {"loc_id": 718, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 3, "x": -6336.0, "z": 704.0, "px": 966.7, "py": 2168.1}, {"loc_id": 719, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 3, "x": 4032.0, "z": -6144.0, "px": 2736.1, "py": 999.4}, {"loc_id": 719, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 3, "x": 4032.0, "z": -6144.0, "px": 2736.1, "py": 999.4}, {"loc_id": 720, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 3, "x": -7168.0, "z": 640.0, "px": 824.7, "py": 2157.2}, {"loc_id": 720, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 3, "x": -7168.0, "z": 640.0, "px": 824.7, "py": 2157.2}, {"loc_id": 721, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 3, "x": -2560.0, "z": -5760.0, "px": 1611.1, "py": 1065.0}, {"loc_id": 721, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": -2560.0, "z": -5760.0, "px": 1611.1, "py": 1065.0}, {"loc_id": 726, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 3, "x": 832.0, "z": -7040.0, "px": 2190.0, "py": 846.5}, {"loc_id": 727, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 3, "x": 6144.0, "z": -4672.0, "px": 3096.6, "py": 1250.6}, {"loc_id": 728, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": 7680.0, "z": -2368.0, "px": 3358.7, "py": 1643.9}, {"loc_id": 729, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Tick", "count": 3, "x": 8064.0, "z": -1728.0, "px": 3424.3, "py": 1753.1}, {"loc_id": 730, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": 8192.0, "z": -832.0, "px": 3446.1, "py": 1906.0}, {"loc_id": 731, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 3, "x": -7744.0, "z": -2880.0, "px": 726.4, "py": 1556.5}, {"loc_id": 731, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": -7744.0, "z": -2880.0, "px": 726.4, "py": 1556.5}, {"loc_id": 733, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 3, "x": 8256.0, "z": 2432.0, "px": 3457.0, "py": 2463.1}, {"loc_id": 733, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": 8256.0, "z": 2432.0, "px": 3457.0, "py": 2463.1}, {"loc_id": 734, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": 2752.0, "z": 5952.0, "px": 2517.7, "py": 3063.8}, {"loc_id": 735, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 3, "x": -9536.0, "z": 832.0, "px": 420.5, "py": 2190.0}, {"loc_id": 735, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": -9536.0, "z": 832.0, "px": 420.5, "py": 2190.0}, {"loc_id": 737, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": -9728.0, "z": -1024.0, "px": 387.8, "py": 1873.2}, {"loc_id": 738, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 3, "x": -3072.0, "z": -5760.0, "px": 1523.7, "py": 1065.0}, {"loc_id": 739, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": -6912.0, "z": 704.0, "px": 868.4, "py": 2168.1}, {"loc_id": 740, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 3, "x": -5760.0, "z": -1984.0, "px": 1065.0, "py": 1709.4}, {"loc_id": 740, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": -5760.0, "z": -1984.0, "px": 1065.0, "py": 1709.4}, {"loc_id": 742, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 3, "x": -5376.0, "z": 4736.0, "px": 1130.5, "py": 2856.3}, {"loc_id": 743, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": -9408.0, "z": -2432.0, "px": 442.4, "py": 1632.9}, {"loc_id": 743, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 3, "x": -9408.0, "z": -2432.0, "px": 442.4, "py": 1632.9}, {"loc_id": 744, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 3, "x": 1408.0, "z": 7488.0, "px": 2288.3, "py": 3326.0}, {"loc_id": 744, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": 1408.0, "z": 7488.0, "px": 2288.3, "py": 3326.0}, {"loc_id": 748, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 3, "x": -4096.0, "z": 4736.0, "px": 1348.9, "py": 2856.3}, {"loc_id": 749, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 3, "x": 192.0, "z": -7424.0, "px": 2080.8, "py": 781.0}, {"loc_id": 750, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 3, "x": 3072.0, "z": 7168.0, "px": 2572.3, "py": 3271.3}, {"loc_id": 750, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 3, "x": 3072.0, "z": 7168.0, "px": 2572.3, "py": 3271.3}, {"loc_id": 751, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": -1792.0, "z": -5824.0, "px": 1742.2, "py": 1054.0}, {"loc_id": 756, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 3, "x": 8000.0, "z": 2112.0, "px": 3413.3, "py": 2408.4}, {"loc_id": 758, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": 8896.0, "z": 320.0, "px": 3566.3, "py": 2102.6}, {"loc_id": 758, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 3, "x": 8896.0, "z": 320.0, "px": 3566.3, "py": 2102.6}, {"loc_id": 758, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 3, "x": 8896.0, "z": 320.0, "px": 3566.3, "py": 2102.6}, {"loc_id": 758, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 3, "x": 8896.0, "z": 320.0, "px": 3566.3, "py": 2102.6}, {"loc_id": 760, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 3, "x": 4160.0, "z": -4736.0, "px": 2758.0, "py": 1239.7}, {"loc_id": 761, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 3, "x": -2112.0, "z": -6656.0, "px": 1687.6, "py": 912.0}, {"loc_id": 761, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 3, "x": -2112.0, "z": -6656.0, "px": 1687.6, "py": 912.0}, {"loc_id": 763, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 3, "x": 3904.0, "z": -7040.0, "px": 2714.3, "py": 846.5}, {"loc_id": 763, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": 3904.0, "z": -7040.0, "px": 2714.3, "py": 846.5}, {"loc_id": 765, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 3, "x": -3712.0, "z": 6656.0, "px": 1414.5, "py": 3184.0}, {"loc_id": 765, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": -3712.0, "z": 6656.0, "px": 1414.5, "py": 3184.0}, {"loc_id": 765, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 3, "x": -3712.0, "z": 6656.0, "px": 1414.5, "py": 3184.0}, {"loc_id": 766, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": 5760.0, "z": 6080.0, "px": 3031.0, "py": 3085.7}, {"loc_id": 767, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": 1152.0, "z": 7616.0, "px": 2244.6, "py": 3347.8}, {"loc_id": 769, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 3, "x": -6272.0, "z": 3008.0, "px": 977.6, "py": 2561.4}, {"loc_id": 769, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 3, "x": -6272.0, "z": 3008.0, "px": 977.6, "py": 2561.4}, {"loc_id": 770, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 3, "x": 7552.0, "z": -4480.0, "px": 3336.9, "py": 1283.4}, {"loc_id": 770, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": 7552.0, "z": -4480.0, "px": 3336.9, "py": 1283.4}, {"loc_id": 771, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 3, "x": 2944.0, "z": 5440.0, "px": 2550.4, "py": 2976.4}, {"loc_id": 772, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 3, "x": -7104.0, "z": -2176.0, "px": 835.6, "py": 1676.6}, {"loc_id": 774, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 3, "x": 6016.0, "z": 5952.0, "px": 3074.7, "py": 3063.8}, {"loc_id": 774, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": 6016.0, "z": 5952.0, "px": 3074.7, "py": 3063.8}, {"loc_id": 774, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 3, "x": 6016.0, "z": 5952.0, "px": 3074.7, "py": 3063.8}, {"loc_id": 775, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 3, "x": 5632.0, "z": 2432.0, "px": 3009.2, "py": 2463.1}, {"loc_id": 775, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 3, "x": 5632.0, "z": 2432.0, "px": 3009.2, "py": 2463.1}, {"loc_id": 776, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -3200.0, "z": 5376.0, "px": 1501.9, "py": 2965.5}, {"loc_id": 777, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 4864.0, "z": 6208.0, "px": 2878.1, "py": 3107.5}, {"loc_id": 777, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": 4864.0, "z": 6208.0, "px": 2878.1, "py": 3107.5}, {"loc_id": 779, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 2304.0, "z": -5760.0, "px": 2441.2, "py": 1065.0}, {"loc_id": 779, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 3, "x": 2304.0, "z": -5760.0, "px": 2441.2, "py": 1065.0}, {"loc_id": 780, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -5312.0, "z": -4480.0, "px": 1141.4, "py": 1283.4}, {"loc_id": 780, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 3, "x": -5312.0, "z": -4480.0, "px": 1141.4, "py": 1283.4}, {"loc_id": 781, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -6144.0, "z": 3520.0, "px": 999.4, "py": 2648.7}, {"loc_id": 781, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": -6144.0, "z": 3520.0, "px": 999.4, "py": 2648.7}, {"loc_id": 783, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 6784.0, "z": 1216.0, "px": 3205.8, "py": 2255.5}, {"loc_id": 783, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 3, "x": 6784.0, "z": 1216.0, "px": 3205.8, "py": 2255.5}, {"loc_id": 784, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": -3776.0, "z": 5440.0, "px": 1403.6, "py": 2976.4}, {"loc_id": 785, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -192.0, "z": -6400.0, "px": 2015.2, "py": 955.7}, {"loc_id": 785, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 3, "x": -192.0, "z": -6400.0, "px": 2015.2, "py": 955.7}, {"loc_id": 786, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -9472.0, "z": -960.0, "px": 431.4, "py": 1884.2}, {"loc_id": 787, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 3200.0, "z": 5504.0, "px": 2594.1, "py": 2987.3}, {"loc_id": 787, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 3, "x": 3200.0, "z": 5504.0, "px": 2594.1, "py": 2987.3}, {"loc_id": 787, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": 3200.0, "z": 5504.0, "px": 2594.1, "py": 2987.3}, {"loc_id": 789, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 3, "x": -704.0, "z": 6848.0, "px": 1927.9, "py": 3216.7}, {"loc_id": 790, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 384.0, "z": -7104.0, "px": 2113.5, "py": 835.6}, {"loc_id": 791, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 6720.0, "z": 5376.0, "px": 3194.9, "py": 2965.5}, {"loc_id": 791, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 6720.0, "z": 5376.0, "px": 3194.9, "py": 2965.5}, {"loc_id": 792, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -9152.0, "z": 960.0, "px": 486.1, "py": 2211.8}, {"loc_id": 792, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": -9152.0, "z": 960.0, "px": 486.1, "py": 2211.8}, {"loc_id": 793, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 4224.0, "z": 6336.0, "px": 2768.9, "py": 3129.3}, {"loc_id": 793, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": 4224.0, "z": 6336.0, "px": 2768.9, "py": 3129.3}, {"loc_id": 794, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -8320.0, "z": 64.0, "px": 628.1, "py": 2058.9}, {"loc_id": 795, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 8512.0, "z": 576.0, "px": 3500.7, "py": 2146.3}, {"loc_id": 797, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": 7424.0, "z": 256.0, "px": 3315.0, "py": 2091.7}, {"loc_id": 798, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -576.0, "z": -6976.0, "px": 1949.7, "py": 857.4}, {"loc_id": 799, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -8704.0, "z": -1280.0, "px": 562.5, "py": 1829.5}, {"loc_id": 799, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 3, "x": -8704.0, "z": -1280.0, "px": 562.5, "py": 1829.5}, {"loc_id": 799, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 3, "x": -8704.0, "z": -1280.0, "px": 562.5, "py": 1829.5}, {"loc_id": 799, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": -8704.0, "z": -1280.0, "px": 562.5, "py": 1829.5}, {"loc_id": 800, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 2368.0, "z": -6592.0, "px": 2452.1, "py": 923.0}, {"loc_id": 801, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -5760.0, "z": -5504.0, "px": 1065.0, "py": 1108.7}, {"loc_id": 801, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 3, "x": -5760.0, "z": -5504.0, "px": 1065.0, "py": 1108.7}, {"loc_id": 802, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -4800.0, "z": 4160.0, "px": 1228.8, "py": 2758.0}, {"loc_id": 803, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": -3008.0, "z": -6080.0, "px": 1534.6, "py": 1010.3}, {"loc_id": 804, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": 128.0, "z": 6848.0, "px": 2069.8, "py": 3216.7}, {"loc_id": 805, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 8640.0, "z": -576.0, "px": 3522.6, "py": 1949.7}, {"loc_id": 806, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 3, "x": 4608.0, "z": 6336.0, "px": 2834.4, "py": 3129.3}, {"loc_id": 807, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -2944.0, "z": -6528.0, "px": 1545.6, "py": 933.9}, {"loc_id": 807, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -2944.0, "z": -6528.0, "px": 1545.6, "py": 933.9}, {"loc_id": 808, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 3, "x": 4928.0, "z": -5696.0, "px": 2889.0, "py": 1075.9}, {"loc_id": 809, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 4416.0, "z": 5568.0, "px": 2801.7, "py": 2998.3}, {"loc_id": 810, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 768.0, "z": 6528.0, "px": 2179.1, "py": 3162.1}, {"loc_id": 810, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": 768.0, "z": 6528.0, "px": 2179.1, "py": 3162.1}, {"loc_id": 811, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": -5568.0, "z": 3328.0, "px": 1097.7, "py": 2616.0}, {"loc_id": 814, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 192.0, "z": 7104.0, "px": 2080.8, "py": 3260.4}, {"loc_id": 814, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 3, "x": 192.0, "z": 7104.0, "px": 2080.8, "py": 3260.4}, {"loc_id": 814, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": 192.0, "z": 7104.0, "px": 2080.8, "py": 3260.4}, {"loc_id": 815, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 832.0, "z": 6784.0, "px": 2190.0, "py": 3205.8}, {"loc_id": 816, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -7040.0, "z": 5312.0, "px": 846.5, "py": 2954.6}, {"loc_id": 817, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -6976.0, "z": -1728.0, "px": 857.4, "py": 1753.1}, {"loc_id": 817, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": -6976.0, "z": -1728.0, "px": 857.4, "py": 1753.1}, {"loc_id": 818, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -7360.0, "z": 4032.0, "px": 791.9, "py": 2736.1}, {"loc_id": 819, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -6592.0, "z": -4992.0, "px": 923.0, "py": 1196.0}, {"loc_id": 820, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -7360.0, "z": 3008.0, "px": 791.9, "py": 2561.4}, {"loc_id": 820, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": -7360.0, "z": 3008.0, "px": 791.9, "py": 2561.4}, {"loc_id": 820, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": -7360.0, "z": 3008.0, "px": 791.9, "py": 2561.4}, {"loc_id": 821, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 384.0, "z": 7552.0, "px": 2113.5, "py": 3336.9}, {"loc_id": 822, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -5696.0, "z": 3648.0, "px": 1075.9, "py": 2670.6}, {"loc_id": 822, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 3, "x": -5696.0, "z": 3648.0, "px": 1075.9, "py": 2670.6}, {"loc_id": 823, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -6720.0, "z": -3328.0, "px": 901.1, "py": 1480.0}, {"loc_id": 823, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": -6720.0, "z": -3328.0, "px": 901.1, "py": 1480.0}, {"loc_id": 824, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -2368.0, "z": -6464.0, "px": 1643.9, "py": 944.8}, {"loc_id": 824, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": -2368.0, "z": -6464.0, "px": 1643.9, "py": 944.8}, {"loc_id": 825, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": -8384.0, "z": -448.0, "px": 617.1, "py": 1971.5}, {"loc_id": 826, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 7040.0, "z": 3840.0, "px": 3249.5, "py": 2703.4}, {"loc_id": 826, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": 7040.0, "z": 3840.0, "px": 3249.5, "py": 2703.4}, {"loc_id": 827, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 6336.0, "z": -1280.0, "px": 3129.3, "py": 1829.5}, {"loc_id": 828, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 3, "x": 7168.0, "z": -64.0, "px": 3271.3, "py": 2037.1}, {"loc_id": 828, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 7168.0, "z": -64.0, "px": 3271.3, "py": 2037.1}, {"loc_id": 828, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": 7168.0, "z": -64.0, "px": 3271.3, "py": 2037.1}, {"loc_id": 829, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 3, "x": -4992.0, "z": -3648.0, "px": 1196.0, "py": 1425.4}, {"loc_id": 830, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 9920.0, "z": -192.0, "px": 3741.0, "py": 2015.2}, {"loc_id": 830, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 3, "x": 9920.0, "z": -192.0, "px": 3741.0, "py": 2015.2}, {"loc_id": 830, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 3, "x": 9920.0, "z": -192.0, "px": 3741.0, "py": 2015.2}, {"loc_id": 831, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 8640.0, "z": -3328.0, "px": 3522.6, "py": 1480.0}, {"loc_id": 832, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -9216.0, "z": -64.0, "px": 475.1, "py": 2037.1}, {"loc_id": 832, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": -9216.0, "z": -64.0, "px": 475.1, "py": 2037.1}, {"loc_id": 833, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 6208.0, "z": 5056.0, "px": 3107.5, "py": 2910.9}, {"loc_id": 834, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -8576.0, "z": 1280.0, "px": 584.4, "py": 2266.5}, {"loc_id": 835, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -8192.0, "z": 2304.0, "px": 649.9, "py": 2441.2}, {"loc_id": 835, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 3, "x": -8192.0, "z": 2304.0, "px": 649.9, "py": 2441.2}, {"loc_id": 835, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 3, "x": -8192.0, "z": 2304.0, "px": 649.9, "py": 2441.2}, {"loc_id": 836, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -6592.0, "z": 4800.0, "px": 923.0, "py": 2867.2}, {"loc_id": 836, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 3, "x": -6592.0, "z": 4800.0, "px": 923.0, "py": 2867.2}, {"loc_id": 837, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 3, "x": -9408.0, "z": 1472.0, "px": 442.4, "py": 2299.2}, {"loc_id": 837, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": -9408.0, "z": 1472.0, "px": 442.4, "py": 2299.2}, {"loc_id": 838, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -1088.0, "z": -6080.0, "px": 1862.3, "py": 1010.3}, {"loc_id": 839, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 3, "x": -8960.0, "z": 1472.0, "px": 518.8, "py": 2299.2}, {"loc_id": 841, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 3648.0, "z": -6784.0, "px": 2670.6, "py": 890.2}, {"loc_id": 843, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": 9664.0, "z": -768.0, "px": 3697.3, "py": 1916.9}, {"loc_id": 844, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": 2560.0, "z": -5568.0, "px": 2484.9, "py": 1097.7}, {"loc_id": 845, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 4672.0, "z": -6080.0, "px": 2845.4, "py": 1010.3}, {"loc_id": 846, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 3, "x": -1152.0, "z": -7488.0, "px": 1851.4, "py": 770.0}, {"loc_id": 846, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": -1152.0, "z": -7488.0, "px": 1851.4, "py": 770.0}, {"loc_id": 848, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -6016.0, "z": -5568.0, "px": 1021.3, "py": 1097.7}, {"loc_id": 849, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 4544.0, "z": -6656.0, "px": 2823.5, "py": 912.0}, {"loc_id": 850, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": -8576.0, "z": -2816.0, "px": 584.4, "py": 1567.4}, {"loc_id": 850, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": -8576.0, "z": -2816.0, "px": 584.4, "py": 1567.4}, {"loc_id": 851, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 8000.0, "z": -4480.0, "px": 3413.3, "py": 1283.4}, {"loc_id": 852, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 8512.0, "z": -2688.0, "px": 3500.7, "py": 1589.2}, {"loc_id": 852, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": 8512.0, "z": -2688.0, "px": 3500.7, "py": 1589.2}, {"loc_id": 853, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -7104.0, "z": 2880.0, "px": 835.6, "py": 2539.5}, {"loc_id": 853, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 3, "x": -7104.0, "z": 2880.0, "px": 835.6, "py": 2539.5}, {"loc_id": 853, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": -7104.0, "z": 2880.0, "px": 835.6, "py": 2539.5}, {"loc_id": 854, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 5696.0, "z": 5632.0, "px": 3020.1, "py": 3009.2}, {"loc_id": 854, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": 5696.0, "z": 5632.0, "px": 3020.1, "py": 3009.2}, {"loc_id": 854, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": 5696.0, "z": 5632.0, "px": 3020.1, "py": 3009.2}, {"loc_id": 855, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 2560.0, "z": -5824.0, "px": 2484.9, "py": 1054.0}, {"loc_id": 855, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": 2560.0, "z": -5824.0, "px": 2484.9, "py": 1054.0}, {"loc_id": 856, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -7168.0, "z": 3840.0, "px": 824.7, "py": 2703.4}, {"loc_id": 857, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 2368.0, "z": 7296.0, "px": 2452.1, "py": 3293.2}, {"loc_id": 857, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": 2368.0, "z": 7296.0, "px": 2452.1, "py": 3293.2}, {"loc_id": 859, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 4288.0, "z": -6080.0, "px": 2779.8, "py": 1010.3}, {"loc_id": 860, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 9664.0, "z": 768.0, "px": 3697.3, "py": 2179.1}, {"loc_id": 861, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 3, "x": 6656.0, "z": -5504.0, "px": 3184.0, "py": 1108.7}, {"loc_id": 863, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -1664.0, "z": -6080.0, "px": 1764.0, "py": 1010.3}, {"loc_id": 863, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 3, "x": -1664.0, "z": -6080.0, "px": 1764.0, "py": 1010.3}, {"loc_id": 863, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": -1664.0, "z": -6080.0, "px": 1764.0, "py": 1010.3}, {"loc_id": 864, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 6592.0, "z": -192.0, "px": 3173.0, "py": 2015.2}, {"loc_id": 864, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": 6592.0, "z": -192.0, "px": 3173.0, "py": 2015.2}, {"loc_id": 864, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 6592.0, "z": -192.0, "px": 3173.0, "py": 2015.2}, {"loc_id": 864, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": 6592.0, "z": -192.0, "px": 3173.0, "py": 2015.2}, {"loc_id": 865, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -6400.0, "z": -2112.0, "px": 955.7, "py": 1687.6}, {"loc_id": 866, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 8384.0, "z": -1728.0, "px": 3478.9, "py": 1753.1}, {"loc_id": 867, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -5120.0, "z": 4672.0, "px": 1174.2, "py": 2845.4}, {"loc_id": 867, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 3, "x": -5120.0, "z": 4672.0, "px": 1174.2, "py": 2845.4}, {"loc_id": 867, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 3, "x": -5120.0, "z": 4672.0, "px": 1174.2, "py": 2845.4}, {"loc_id": 868, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -7040.0, "z": 1344.0, "px": 846.5, "py": 2277.4}, {"loc_id": 868, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 3, "x": -7040.0, "z": 1344.0, "px": 846.5, "py": 2277.4}, {"loc_id": 870, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": 5696.0, "z": 3520.0, "px": 3020.1, "py": 2648.7}, {"loc_id": 871, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -6016.0, "z": 2880.0, "px": 1021.3, "py": 2539.5}, {"loc_id": 872, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -9152.0, "z": -2240.0, "px": 486.1, "py": 1665.7}, {"loc_id": 872, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": -9152.0, "z": -2240.0, "px": 486.1, "py": 1665.7}, {"loc_id": 872, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": -9152.0, "z": -2240.0, "px": 486.1, "py": 1665.7}, {"loc_id": 873, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 3, "x": 4480.0, "z": 5952.0, "px": 2812.6, "py": 3063.8}, {"loc_id": 874, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 1856.0, "z": -6592.0, "px": 2364.8, "py": 923.0}, {"loc_id": 875, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 1280.0, "z": -6336.0, "px": 2266.5, "py": 966.7}, {"loc_id": 876, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -2240.0, "z": -7040.0, "px": 1665.7, "py": 846.5}, {"loc_id": 876, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 3, "x": -2240.0, "z": -7040.0, "px": 1665.7, "py": 846.5}, {"loc_id": 877, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -6272.0, "z": -5376.0, "px": 977.6, "py": 1130.5}, {"loc_id": 877, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": -6272.0, "z": -5376.0, "px": 977.6, "py": 1130.5}, {"loc_id": 878, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 1344.0, "z": -7296.0, "px": 2277.4, "py": 802.8}, {"loc_id": 878, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": 1344.0, "z": -7296.0, "px": 2277.4, "py": 802.8}, {"loc_id": 880, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 4352.0, "z": -4416.0, "px": 2790.7, "py": 1294.3}, {"loc_id": 881, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 3, "x": 4352.0, "z": 4672.0, "px": 2790.7, "py": 2845.4}, {"loc_id": 882, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 7936.0, "z": 3008.0, "px": 3402.4, "py": 2561.4}, {"loc_id": 882, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": 7936.0, "z": 3008.0, "px": 3402.4, "py": 2561.4}, {"loc_id": 883, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 576.0, "z": 6784.0, "px": 2146.3, "py": 3205.8}, {"loc_id": 883, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 3, "x": 576.0, "z": 6784.0, "px": 2146.3, "py": 3205.8}, {"loc_id": 884, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -7872.0, "z": 4608.0, "px": 704.5, "py": 2834.4}, {"loc_id": 884, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": -7872.0, "z": 4608.0, "px": 704.5, "py": 2834.4}, {"loc_id": 884, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": -7872.0, "z": 4608.0, "px": 704.5, "py": 2834.4}, {"loc_id": 886, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 3, "x": -3904.0, "z": 5888.0, "px": 1381.7, "py": 3052.9}, {"loc_id": 888, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 5056.0, "z": -3840.0, "px": 2910.9, "py": 1392.6}, {"loc_id": 890, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": -6528.0, "z": -3008.0, "px": 933.9, "py": 1534.6}, {"loc_id": 891, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 9280.0, "z": 1728.0, "px": 3631.8, "py": 2342.9}, {"loc_id": 891, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": 9280.0, "z": 1728.0, "px": 3631.8, "py": 2342.9}, {"loc_id": 893, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -8384.0, "z": -3776.0, "px": 617.1, "py": 1403.6}, {"loc_id": 893, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": -8384.0, "z": -3776.0, "px": 617.1, "py": 1403.6}, {"loc_id": 893, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 3, "x": -8384.0, "z": -3776.0, "px": 617.1, "py": 1403.6}, {"loc_id": 895, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 3, "x": -7424.0, "z": 4544.0, "px": 781.0, "py": 2823.5}, {"loc_id": 895, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 3, "x": -7424.0, "z": 4544.0, "px": 781.0, "py": 2823.5}, {"loc_id": 899, "loc_name": "Mistlands_DvergrBossEntrance1", "item": "Pickable: Tankard_dvergr", "count": 3, "x": 3200.0, "z": 5440.0, "px": 2594.1, "py": 2976.4}, {"loc_id": 901, "loc_name": "Hildir_cave", "item": "Spawner: Fish4_cave (respawn every 10 minutes)", "count": 3, "x": 4736.0, "z": -5504.0, "px": 2856.3, "py": 1108.7}, {"loc_id": 901, "loc_name": "Hildir_cave", "item": "Container: TreasureChest_mountaincave", "count": 3, "x": 4736.0, "z": -5504.0, "px": 2856.3, "py": 1108.7}, {"loc_id": 901, "loc_name": "Hildir_cave", "item": "Pickable: BoneFragments", "count": 3, "x": 4736.0, "z": -5504.0, "px": 2856.3, "py": 1108.7}, {"loc_id": 902, "loc_name": "Hildir_cave", "item": "Spawner: Fish4_cave (respawn every 10 minutes)", "count": 3, "x": -2688.0, "z": 7360.0, "px": 1589.2, "py": 3304.1}, {"loc_id": 914, "loc_name": "Hildir_crypt", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7097.0, "z": 2614.7, "px": 836.8, "py": 2494.2}, {"loc_id": 915, "loc_name": "Hildir_crypt", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2312.6, "z": -4479.1, "px": 2442.7, "py": 1283.6}, {"loc_id": 916, "loc_name": "Hildir_crypt", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2613.9, "z": 5053.6, "px": 2494.1, "py": 2910.5}, {"loc_id": 928, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Archer", "count": 3, "x": -704.0, "z": -9408.0, "px": 1927.9, "py": 442.4}, {"loc_id": 931, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Archer", "count": 3, "x": -384.0, "z": -8832.0, "px": 1982.5, "py": 540.7}, {"loc_id": 932, "loc_name": "CharredFortress", "item": "Pickable: MoltenCore", "count": 3, "x": 704.0, "z": -9344.0, "px": 2168.1, "py": 453.3}, {"loc_id": 932, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Archer", "count": 3, "x": 704.0, "z": -9344.0, "px": 2168.1, "py": 453.3}, {"loc_id": 932, "loc_name": "CharredFortress", "item": "SpawnOnce: piece_Charred_Balista", "count": 3, "x": 704.0, "z": -9344.0, "px": 2168.1, "py": 453.3}, {"loc_id": 933, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Archer", "count": 3, "x": -576.0, "z": -9152.0, "px": 1949.7, "py": 486.1}, {"loc_id": 934, "loc_name": "CharredFortress", "item": "SpawnOnce: piece_Charred_Balista", "count": 3, "x": -2240.0, "z": -8576.0, "px": 1665.7, "py": 584.4}, {"loc_id": 935, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Mage", "count": 3, "x": 1152.0, "z": -9024.0, "px": 2244.6, "py": 507.9}, {"loc_id": 936, "loc_name": "CharredFortress", "item": "SpawnOnce: piece_Charred_Balista", "count": 3, "x": 704.0, "z": -9088.0, "px": 2168.1, "py": 497.0}, {"loc_id": 937, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Archer", "count": 3, "x": -832.0, "z": -8896.0, "px": 1906.0, "py": 529.7}, {"loc_id": 937, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Mage", "count": 3, "x": -832.0, "z": -8896.0, "px": 1906.0, "py": 529.7}, {"loc_id": 937, "loc_name": "CharredFortress", "item": "SpawnOnce: piece_Charred_Balista", "count": 3, "x": -832.0, "z": -8896.0, "px": 1906.0, "py": 529.7}, {"loc_id": 938, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Archer", "count": 3, "x": 1536.0, "z": -9152.0, "px": 2310.1, "py": 486.1}, {"loc_id": 938, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Mage", "count": 3, "x": 1536.0, "z": -9152.0, "px": 2310.1, "py": 486.1}, {"loc_id": 938, "loc_name": "CharredFortress", "item": "SpawnOnce: piece_Charred_Balista", "count": 3, "x": 1536.0, "z": -9152.0, "px": 2310.1, "py": 486.1}, {"loc_id": 939, "loc_name": "CharredFortress", "item": "SpawnOnce: piece_Charred_Balista", "count": 3, "x": 1600.0, "z": -9408.0, "px": 2321.1, "py": 442.4}, {"loc_id": 940, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Archer", "count": 3, "x": -1152.0, "z": -9536.0, "px": 1851.4, "py": 420.5}, {"loc_id": 940, "loc_name": "CharredFortress", "item": "SpawnOnce: piece_Charred_Balista", "count": 3, "x": -1152.0, "z": -9536.0, "px": 1851.4, "py": 420.5}, {"loc_id": 941, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Archer", "count": 3, "x": 384.0, "z": -9344.0, "px": 2113.5, "py": 453.3}, {"loc_id": 941, "loc_name": "CharredFortress", "item": "SpawnOnce: piece_Charred_Balista", "count": 3, "x": 384.0, "z": -9344.0, "px": 2113.5, "py": 453.3}, {"loc_id": 942, "loc_name": "CharredFortress", "item": "Pickable: MoltenCore", "count": 3, "x": -320.0, "z": -9856.0, "px": 1993.4, "py": 365.9}, {"loc_id": 942, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Mage", "count": 3, "x": -320.0, "z": -9856.0, "px": 1993.4, "py": 365.9}, {"loc_id": 942, "loc_name": "CharredFortress", "item": "SpawnOnce: piece_Charred_Balista", "count": 3, "x": -320.0, "z": -9856.0, "px": 1993.4, "py": 365.9}, {"loc_id": 943, "loc_name": "CharredFortress", "item": "Pickable: MoltenCore", "count": 3, "x": 1280.0, "z": -9344.0, "px": 2266.5, "py": 453.3}, {"loc_id": 943, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Archer", "count": 3, "x": 1280.0, "z": -9344.0, "px": 2266.5, "py": 453.3}, {"loc_id": 944, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Archer", "count": 3, "x": -896.0, "z": -9216.0, "px": 1895.1, "py": 475.1}, {"loc_id": 946, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Archer", "count": 3, "x": 1024.0, "z": -9344.0, "px": 2222.8, "py": 453.3}, {"loc_id": 946, "loc_name": "CharredFortress", "item": "SpawnOnce: piece_Charred_Balista", "count": 3, "x": 1024.0, "z": -9344.0, "px": 2222.8, "py": 453.3}, {"loc_id": 947, "loc_name": "CharredFortress", "item": "SpawnOnce: piece_Charred_Balista", "count": 3, "x": -640.0, "z": -9792.0, "px": 1938.8, "py": 376.8}, {"loc_id": 1876, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 2834.4, "z": 3568.1, "px": 2531.7, "py": 2657.0}, {"loc_id": 1877, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -4242.4, "z": 329.1, "px": 1324.0, "py": 2104.2}, {"loc_id": 1878, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -3185.2, "z": 405.8, "px": 1504.4, "py": 2117.3}, {"loc_id": 1879, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -115.1, "z": 2497.0, "px": 2028.4, "py": 2474.2}, {"loc_id": 1880, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 3686.3, "z": 4419.2, "px": 2677.1, "py": 2802.2}, {"loc_id": 1881, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -4006.2, "z": 232.3, "px": 1364.3, "py": 2087.6}, {"loc_id": 1882, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -837.3, "z": -3751.7, "px": 1905.1, "py": 1407.7}, {"loc_id": 1883, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -3261.2, "z": 334.4, "px": 1491.4, "py": 2105.1}, {"loc_id": 1884, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 4171.0, "z": 405.9, "px": 2759.9, "py": 2117.3}, {"loc_id": 1885, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 2703.3, "z": 3593.1, "px": 2509.4, "py": 2661.2}, {"loc_id": 1886, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 4677.3, "z": -769.9, "px": 2846.3, "py": 1916.6}, {"loc_id": 1887, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 1716.8, "z": 4246.9, "px": 2341.0, "py": 2772.8}, {"loc_id": 1888, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 1449.7, "z": 2119.2, "px": 2295.4, "py": 2409.7}, {"loc_id": 1889, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 2511.4, "z": -86.2, "px": 2476.6, "py": 2033.3}, {"loc_id": 1890, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -4228.0, "z": 549.4, "px": 1326.4, "py": 2141.8}, {"loc_id": 1891, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -4439.1, "z": 326.9, "px": 1290.4, "py": 2103.8}, {"loc_id": 1892, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -4330.6, "z": 549.3, "px": 1308.9, "py": 2141.7}, {"loc_id": 1893, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 2579.8, "z": 3621.7, "px": 2488.3, "py": 2666.1}, {"loc_id": 1894, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 2178.0, "z": 4310.0, "px": 2419.7, "py": 2783.6}, {"loc_id": 1895, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -5185.5, "z": -754.1, "px": 1163.0, "py": 1919.3}, {"loc_id": 1896, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -791.4, "z": -3669.3, "px": 1912.9, "py": 1421.8}, {"loc_id": 1897, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 2485.4, "z": 3929.7, "px": 2472.2, "py": 2718.7}, {"loc_id": 1898, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 3202.5, "z": -4339.2, "px": 2594.6, "py": 1307.4}, {"loc_id": 1899, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -263.3, "z": 2710.7, "px": 2003.1, "py": 2510.6}, {"loc_id": 1900, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -630.1, "z": -4005.2, "px": 1940.5, "py": 1364.4}, {"loc_id": 1901, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -4336.9, "z": 327.0, "px": 1307.8, "py": 2103.8}, {"loc_id": 1902, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -677.3, "z": -3630.3, "px": 1932.4, "py": 1428.4}, {"loc_id": 1903, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 1491.3, "z": 2379.7, "px": 2302.5, "py": 2454.1}, {"loc_id": 1904, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -7.3, "z": 2635.4, "px": 2046.8, "py": 2497.8}, {"loc_id": 1905, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 2470.3, "z": 3967.2, "px": 2469.6, "py": 2725.1}, {"loc_id": 1906, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 3472.5, "z": 1369.5, "px": 2640.6, "py": 2281.7}, {"loc_id": 1907, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 1558.0, "z": 2192.1, "px": 2313.9, "py": 2422.1}, {"loc_id": 1908, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 2582.6, "z": 3837.7, "px": 2488.8, "py": 2703.0}, {"loc_id": 1909, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -2668.1, "z": -980.8, "px": 1592.6, "py": 1880.6}, {"loc_id": 1910, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -793.1, "z": -3835.6, "px": 1912.6, "py": 1393.4}, {"loc_id": 1911, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 2794.0, "z": 3727.9, "px": 2524.8, "py": 2684.2}, {"loc_id": 1912, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 3792.9, "z": 4534.9, "px": 2695.3, "py": 2822.0}, {"loc_id": 1913, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 1548.2, "z": 2112.0, "px": 2312.2, "py": 2408.4}, {"loc_id": 1914, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -4284.9, "z": 448.9, "px": 1316.7, "py": 2124.6}, {"loc_id": 1915, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -313.5, "z": 2670.4, "px": 1994.5, "py": 2503.7}, {"loc_id": 1916, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -3316.1, "z": 165.3, "px": 1482.1, "py": 2076.2}, {"loc_id": 1917, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 2650.5, "z": 3793.5, "px": 2500.4, "py": 2695.4}, {"loc_id": 1918, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 2284.4, "z": 200.2, "px": 2437.9, "py": 2082.2}, {"loc_id": 1919, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -5335.1, "z": 1778.4, "px": 1137.5, "py": 2351.5}, {"loc_id": 1920, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 2889.6, "z": 3623.6, "px": 2541.2, "py": 2666.4}, {"loc_id": 1921, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 2186.8, "z": 488.6, "px": 2421.2, "py": 2131.4}, {"loc_id": 1922, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 2473.0, "z": 87.7, "px": 2470.1, "py": 2063.0}, {"loc_id": 1923, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 3188.5, "z": -4266.0, "px": 2592.2, "py": 1319.9}, {"loc_id": 1924, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 4593.2, "z": -2991.9, "px": 2831.9, "py": 1537.4}, {"loc_id": 1925, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 1393.8, "z": 2032.1, "px": 2285.9, "py": 2394.8}, {"loc_id": 1926, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -4225.9, "z": 3649.3, "px": 1326.8, "py": 2670.8}, {"loc_id": 1927, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -1945.1, "z": 4479.5, "px": 1716.0, "py": 2812.5}, {"loc_id": 1928, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -2455.3, "z": -975.5, "px": 1629.0, "py": 1881.5}, {"loc_id": 1929, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -5255.6, "z": 1453.0, "px": 1151.0, "py": 2296.0}, {"loc_id": 1930, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 2106.5, "z": 4314.7, "px": 2407.5, "py": 2784.4}, {"loc_id": 1931, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": 657.5, "z": 2611.5, "px": 2160.2, "py": 2493.7}, {"loc_id": 1932, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -788.9, "z": -3900.7, "px": 1913.4, "py": 1382.3}, {"loc_id": 1933, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -3332.6, "z": 279.0, "px": 1479.2, "py": 2095.6}, {"loc_id": 1934, "loc_name": "FireHole", "item": "Spawner: Surtling (respawn every 5 minutes)", "count": 3, "x": -2709.1, "z": -5268.0, "px": 1585.6, "py": 1148.9}, {"loc_id": 1935, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 1356.3, "z": 2313.8, "px": 2279.5, "py": 2442.9}, {"loc_id": 1936, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 1784.2, "z": 4816.0, "px": 2352.5, "py": 2869.9}, {"loc_id": 1937, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": -4494.8, "z": 3642.9, "px": 1280.9, "py": 2669.7}, {"loc_id": 1938, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": -2808.3, "z": -1855.7, "px": 1568.7, "py": 1731.3}, {"loc_id": 1939, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 182.1, "z": 4224.0, "px": 2079.1, "py": 2768.9}, {"loc_id": 1940, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 4798.5, "z": -513.2, "px": 2866.9, "py": 1960.4}, {"loc_id": 1941, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 4113.8, "z": 466.5, "px": 2750.1, "py": 2127.6}, {"loc_id": 1942, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": -2425.2, "z": 4463.2, "px": 1634.1, "py": 2809.7}, {"loc_id": 1943, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 2744.9, "z": 3836.5, "px": 2516.5, "py": 2702.8}, {"loc_id": 1944, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 2511.7, "z": -5184.7, "px": 2476.7, "py": 1163.1}, {"loc_id": 1945, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 2797.7, "z": -557.7, "px": 2525.5, "py": 1952.8}, {"loc_id": 1946, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 2441.9, "z": -874.2, "px": 2464.8, "py": 1898.8}, {"loc_id": 1947, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 3833.7, "z": 573.0, "px": 2702.3, "py": 2145.8}, {"loc_id": 1948, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": -2115.7, "z": -4275.8, "px": 1686.9, "py": 1318.3}, {"loc_id": 1949, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 1158.4, "z": 4243.8, "px": 2245.7, "py": 2772.3}, {"loc_id": 1950, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 2216.9, "z": 562.2, "px": 2426.4, "py": 2143.9}, {"loc_id": 1951, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": -2577.3, "z": -847.8, "px": 1608.1, "py": 1903.3}, {"loc_id": 1952, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 2119.3, "z": 319.5, "px": 2409.7, "py": 2102.5}, {"loc_id": 1953, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": -5054.3, "z": -704.5, "px": 1185.4, "py": 1927.8}, {"loc_id": 1954, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 3464.3, "z": -4627.9, "px": 2639.2, "py": 1258.2}, {"loc_id": 1955, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": -2562.5, "z": -4099.2, "px": 1610.7, "py": 1348.4}, {"loc_id": 1956, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 726.0, "z": 2625.4, "px": 2171.9, "py": 2496.1}, {"loc_id": 1957, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": -1038.8, "z": -3765.1, "px": 1870.7, "py": 1405.4}, {"loc_id": 1958, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 3392.1, "z": 4778.1, "px": 2626.9, "py": 2863.5}, {"loc_id": 1959, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": -2668.4, "z": -1519.5, "px": 1592.6, "py": 1788.7}, {"loc_id": 1960, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 70.6, "z": -5205.3, "px": 2060.0, "py": 1159.6}, {"loc_id": 1961, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": -503.0, "z": -4113.6, "px": 1962.2, "py": 1345.9}, {"loc_id": 1962, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": -5300.1, "z": -842.9, "px": 1143.4, "py": 1904.1}, {"loc_id": 1963, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 3514.0, "z": -4274.9, "px": 2647.7, "py": 1318.4}, {"loc_id": 1964, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": -2510.2, "z": -1602.4, "px": 1619.6, "py": 1774.5}, {"loc_id": 1965, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 4602.2, "z": -3305.9, "px": 2833.4, "py": 1483.8}, {"loc_id": 1966, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": -2600.7, "z": -454.6, "px": 1604.1, "py": 1970.4}, {"loc_id": 1967, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": -2700.4, "z": -4115.6, "px": 1587.1, "py": 1345.6}, {"loc_id": 1968, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 3567.2, "z": 629.7, "px": 2656.8, "py": 2155.5}, {"loc_id": 1969, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 5715.9, "z": 1422.9, "px": 3023.5, "py": 2290.8}, {"loc_id": 1970, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": -4409.2, "z": 3764.8, "px": 1295.5, "py": 2690.5}, {"loc_id": 1971, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": -2606.4, "z": 2188.6, "px": 1603.2, "py": 2421.5}, {"loc_id": 1972, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 73.9, "z": 2700.5, "px": 2060.6, "py": 2508.9}, {"loc_id": 1973, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 1268.7, "z": 2005.0, "px": 2264.5, "py": 2390.2}, {"loc_id": 1974, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 3253.0, "z": 4744.7, "px": 2603.2, "py": 2857.8}, {"loc_id": 1975, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": -3785.2, "z": -4104.2, "px": 1402.0, "py": 1347.5}, {"loc_id": 1976, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": -3529.0, "z": 2580.7, "px": 1445.7, "py": 2488.4}, {"loc_id": 1977, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 1657.5, "z": 1424.1, "px": 2330.9, "py": 2291.0}, {"loc_id": 1978, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 3530.6, "z": 772.4, "px": 2650.6, "py": 2179.8}, {"loc_id": 1979, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": -3638.0, "z": 3028.6, "px": 1427.1, "py": 2564.9}, {"loc_id": 1980, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": -2539.5, "z": 5181.8, "px": 1614.6, "py": 2932.4}, {"loc_id": 1981, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 701.2, "z": 4724.6, "px": 2167.7, "py": 2854.3}, {"loc_id": 1982, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 2386.1, "z": 4032.3, "px": 2455.2, "py": 2736.2}, {"loc_id": 1983, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 1786.1, "z": 1488.0, "px": 2352.8, "py": 2302.0}, {"loc_id": 1984, "loc_name": "Runestone_Draugr", "item": "SpawnOnce: Draugr", "count": 3, "x": 5113.6, "z": -210.0, "px": 2920.7, "py": 2012.2}, {"loc_id": 1985, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5749.3, "z": -4995.7, "px": 1066.8, "py": 1195.4}, {"loc_id": 1985, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -5749.3, "z": -4995.7, "px": 1066.8, "py": 1195.4}, {"loc_id": 1986, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1784.6, "z": -4355.4, "px": 1743.4, "py": 1304.7}, {"loc_id": 1987, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3193.8, "z": 4469.9, "px": 1502.9, "py": 2810.9}, {"loc_id": 1987, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -3193.8, "z": 4469.9, "px": 1502.9, "py": 2810.9}, {"loc_id": 1987, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": -3193.8, "z": 4469.9, "px": 1502.9, "py": 2810.9}, {"loc_id": 1988, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1462.0, "z": -1719.2, "px": 1798.5, "py": 1754.6}, {"loc_id": 1988, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 3, "x": -1462.0, "z": -1719.2, "px": 1798.5, "py": 1754.6}, {"loc_id": 1989, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3641.8, "z": 3969.8, "px": 2669.5, "py": 2725.5}, {"loc_id": 1989, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 3641.8, "z": 3969.8, "px": 2669.5, "py": 2725.5}, {"loc_id": 1990, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9021.5, "z": 3142.1, "px": 508.3, "py": 2584.3}, {"loc_id": 1990, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": -9021.5, "z": 3142.1, "px": 508.3, "py": 2584.3}, {"loc_id": 1991, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1736.3, "z": -4225.4, "px": 1751.7, "py": 1326.9}, {"loc_id": 1992, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8265.4, "z": 2494.6, "px": 637.4, "py": 2473.7}, {"loc_id": 1993, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5949.7, "z": 1468.8, "px": 1032.6, "py": 2298.7}, {"loc_id": 1993, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": -5949.7, "z": 1468.8, "px": 1032.6, "py": 2298.7}, {"loc_id": 1994, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5368.1, "z": -1919.7, "px": 1131.8, "py": 1720.4}, {"loc_id": 1995, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7744.4, "z": -2746.7, "px": 3369.7, "py": 1579.2}, {"loc_id": 1996, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8580.9, "z": -1732.6, "px": 3512.5, "py": 1752.3}, {"loc_id": 1997, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5052.2, "z": 585.3, "px": 1185.8, "py": 2147.9}, {"loc_id": 1997, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": -5052.2, "z": 585.3, "px": 1185.8, "py": 2147.9}, {"loc_id": 1998, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1158.1, "z": -1210.7, "px": 1850.4, "py": 1841.4}, {"loc_id": 1999, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6850.3, "z": 5430.7, "px": 878.9, "py": 2974.8}, {"loc_id": 1999, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -6850.3, "z": 5430.7, "px": 878.9, "py": 2974.8}, {"loc_id": 2000, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8261.5, "z": -2503.6, "px": 3458.0, "py": 1620.7}, {"loc_id": 2000, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": 8261.5, "z": -2503.6, "px": 3458.0, "py": 1620.7}, {"loc_id": 2001, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6655.6, "z": -4797.9, "px": 912.1, "py": 1229.2}, {"loc_id": 2001, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -6655.6, "z": -4797.9, "px": 912.1, "py": 1229.2}, {"loc_id": 2002, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3705.4, "z": 3650.9, "px": 2680.4, "py": 2671.1}, {"loc_id": 2002, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": 3705.4, "z": 3650.9, "px": 2680.4, "py": 2671.1}, {"loc_id": 2003, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 709.3, "z": 4485.9, "px": 2169.1, "py": 2813.6}, {"loc_id": 2004, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5893.1, "z": -707.2, "px": 3053.8, "py": 1927.3}, {"loc_id": 2004, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 5893.1, "z": -707.2, "px": 3053.8, "py": 1927.3}, {"loc_id": 2005, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6785.2, "z": 514.4, "px": 890.0, "py": 2135.8}, {"loc_id": 2006, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3589.3, "z": 3712.8, "px": 2660.6, "py": 2681.7}, {"loc_id": 2006, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 3589.3, "z": 3712.8, "px": 2660.6, "py": 2681.7}, {"loc_id": 2007, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2754.1, "z": 5051.3, "px": 2518.0, "py": 2910.1}, {"loc_id": 2007, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 2754.1, "z": 5051.3, "px": 2518.0, "py": 2910.1}, {"loc_id": 2008, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8127.2, "z": -263.8, "px": 3435.0, "py": 2003.0}, {"loc_id": 2008, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": 8127.2, "z": -263.8, "px": 3435.0, "py": 2003.0}, {"loc_id": 2009, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2304.6, "z": -3082.4, "px": 1654.7, "py": 1521.9}, {"loc_id": 2010, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1345.3, "z": -5450.9, "px": 1818.4, "py": 1117.7}, {"loc_id": 2011, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5431.7, "z": -900.4, "px": 2975.0, "py": 1894.3}, {"loc_id": 2012, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2615.5, "z": 5691.7, "px": 2494.4, "py": 3019.4}, {"loc_id": 2013, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2295.1, "z": 708.0, "px": 1656.3, "py": 2168.8}, {"loc_id": 2013, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": -2295.1, "z": 708.0, "px": 1656.3, "py": 2168.8}, {"loc_id": 2014, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5767.3, "z": 1542.2, "px": 3032.3, "py": 2311.2}, {"loc_id": 2014, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 5767.3, "z": 1542.2, "px": 3032.3, "py": 2311.2}, {"loc_id": 2015, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4422.3, "z": 6725.0, "px": 2802.7, "py": 3195.7}, {"loc_id": 2016, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2113.8, "z": 841.5, "px": 2408.8, "py": 2191.6}, {"loc_id": 2017, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 713.6, "z": 4919.8, "px": 2169.8, "py": 2887.6}, {"loc_id": 2017, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 713.6, "z": 4919.8, "px": 2169.8, "py": 2887.6}, {"loc_id": 2017, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 3, "x": 713.6, "z": 4919.8, "px": 2169.8, "py": 2887.6}, {"loc_id": 2018, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2366.9, "z": -3455.3, "px": 2452.0, "py": 1458.3}, {"loc_id": 2018, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 2366.9, "z": -3455.3, "px": 2452.0, "py": 1458.3}, {"loc_id": 2019, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1852.0, "z": 7225.8, "px": 2364.1, "py": 3281.2}, {"loc_id": 2019, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 1852.0, "z": 7225.8, "px": 2364.1, "py": 3281.2}, {"loc_id": 2020, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5828.9, "z": 1534.9, "px": 1053.2, "py": 2310.0}, {"loc_id": 2021, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1212.3, "z": -5636.2, "px": 2254.9, "py": 1086.1}, {"loc_id": 2022, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5119.0, "z": 704.2, "px": 1174.4, "py": 2168.2}, {"loc_id": 2023, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4614.5, "z": 5449.2, "px": 1260.5, "py": 2978.0}, {"loc_id": 2024, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2300.8, "z": 3847.4, "px": 2440.7, "py": 2704.6}, {"loc_id": 2025, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5246.9, "z": 4990.5, "px": 2943.5, "py": 2899.7}, {"loc_id": 2026, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1224.6, "z": -5429.1, "px": 2257.0, "py": 1121.4}, {"loc_id": 2026, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1224.6, "z": -5429.1, "px": 2257.0, "py": 1121.4}, {"loc_id": 2027, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1987.5, "z": -5560.2, "px": 1708.8, "py": 1099.1}, {"loc_id": 2027, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": -1987.5, "z": -5560.2, "px": 1708.8, "py": 1099.1}, {"loc_id": 2028, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 9860.3, "z": -1604.7, "px": 3730.8, "py": 1774.1}, {"loc_id": 2029, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1796.7, "z": 7414.9, "px": 2354.6, "py": 3313.5}, {"loc_id": 2030, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8439.3, "z": -1721.8, "px": 607.7, "py": 1754.1}, {"loc_id": 2031, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1856.3, "z": -4486.1, "px": 1731.2, "py": 1282.4}, {"loc_id": 2031, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -1856.3, "z": -4486.1, "px": 1731.2, "py": 1282.4}, {"loc_id": 2032, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9030.2, "z": 3011.1, "px": 506.8, "py": 2561.9}, {"loc_id": 2033, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5258.4, "z": 649.0, "px": 1150.6, "py": 2158.8}, {"loc_id": 2034, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8262.3, "z": 2627.8, "px": 637.9, "py": 2496.5}, {"loc_id": 2035, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3390.5, "z": 4170.9, "px": 1469.4, "py": 2759.8}, {"loc_id": 2036, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1159.1, "z": -1664.8, "px": 1850.2, "py": 1763.9}, {"loc_id": 2036, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": -1159.1, "z": -1664.8, "px": 1850.2, "py": 1763.9}, {"loc_id": 2037, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 894.0, "z": 320.1, "px": 2200.6, "py": 2102.6}, {"loc_id": 2038, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2247.9, "z": -886.9, "px": 2431.6, "py": 1896.6}, {"loc_id": 2038, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 2247.9, "z": -886.9, "px": 2431.6, "py": 1896.6}, {"loc_id": 2039, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5571.0, "z": -6197.3, "px": 1097.2, "py": 990.3}, {"loc_id": 2039, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -5571.0, "z": -6197.3, "px": 1097.2, "py": 990.3}, {"loc_id": 2040, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3391.7, "z": 3514.9, "px": 2626.9, "py": 2647.9}, {"loc_id": 2041, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2236.4, "z": 4542.5, "px": 1666.3, "py": 2823.3}, {"loc_id": 2042, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3908.4, "z": 3896.3, "px": 2715.0, "py": 2713.0}, {"loc_id": 2042, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 3908.4, "z": 3896.3, "px": 2715.0, "py": 2713.0}, {"loc_id": 2043, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7367.4, "z": 3701.7, "px": 3305.4, "py": 2679.8}, {"loc_id": 2044, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1789.0, "z": -6149.7, "px": 2353.3, "py": 998.5}, {"loc_id": 2044, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 1789.0, "z": -6149.7, "px": 2353.3, "py": 998.5}, {"loc_id": 2045, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 6264.5, "z": -4358.4, "px": 3117.1, "py": 1304.2}, {"loc_id": 2046, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4928.8, "z": -2241.7, "px": 2889.2, "py": 1665.4}, {"loc_id": 2046, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 4928.8, "z": -2241.7, "px": 2889.2, "py": 1665.4}, {"loc_id": 2046, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": 4928.8, "z": -2241.7, "px": 2889.2, "py": 1665.4}, {"loc_id": 2047, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2934.8, "z": -2054.4, "px": 2548.9, "py": 1697.4}, {"loc_id": 2047, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 2934.8, "z": -2054.4, "px": 2548.9, "py": 1697.4}, {"loc_id": 2047, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 3, "x": 2934.8, "z": -2054.4, "px": 2548.9, "py": 1697.4}, {"loc_id": 2048, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2177.1, "z": -374.6, "px": 2419.6, "py": 1984.1}, {"loc_id": 2049, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 832.6, "z": 3465.7, "px": 2190.1, "py": 2639.5}, {"loc_id": 2049, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 832.6, "z": 3465.7, "px": 2190.1, "py": 2639.5}, {"loc_id": 2049, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": 832.6, "z": 3465.7, "px": 2190.1, "py": 2639.5}, {"loc_id": 2050, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1149.0, "z": 5321.2, "px": 2244.1, "py": 2956.2}, {"loc_id": 2050, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 3, "x": 1149.0, "z": 5321.2, "px": 2244.1, "py": 2956.2}, {"loc_id": 2051, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5573.1, "z": -5305.9, "px": 1096.9, "py": 1142.5}, {"loc_id": 2052, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5125.7, "z": 183.2, "px": 1173.2, "py": 2079.3}, {"loc_id": 2052, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -5125.7, "z": 183.2, "px": 1173.2, "py": 2079.3}, {"loc_id": 2053, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5060.9, "z": -2298.6, "px": 2911.7, "py": 1655.7}, {"loc_id": 2054, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5577.5, "z": -5061.9, "px": 1096.1, "py": 1184.1}, {"loc_id": 2054, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": -5577.5, "z": -5061.9, "px": 1096.1, "py": 1184.1}, {"loc_id": 2055, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 769.5, "z": 192.1, "px": 2179.3, "py": 2080.8}, {"loc_id": 2056, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8000.9, "z": 393.2, "px": 682.5, "py": 2115.1}, {"loc_id": 2056, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": -8000.9, "z": 393.2, "px": 682.5, "py": 2115.1}, {"loc_id": 2056, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8000.9, "z": 393.2, "px": 682.5, "py": 2115.1}, {"loc_id": 2057, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9792.4, "z": -119.9, "px": 376.8, "py": 2027.5}, {"loc_id": 2058, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1343.6, "z": -1865.0, "px": 1818.7, "py": 1729.7}, {"loc_id": 2058, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": -1343.6, "z": -1865.0, "px": 1818.7, "py": 1729.7}, {"loc_id": 2059, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5058.0, "z": 821.8, "px": 1184.8, "py": 2188.3}, {"loc_id": 2060, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4682.5, "z": -5049.9, "px": 2847.1, "py": 1186.2}, {"loc_id": 2061, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2431.5, "z": 4169.7, "px": 1633.0, "py": 2759.6}, {"loc_id": 2062, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5771.0, "z": -1665.8, "px": 1063.1, "py": 1763.7}, {"loc_id": 2063, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3071.8, "z": 893.7, "px": 2572.3, "py": 2200.5}, {"loc_id": 2064, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 6654.9, "z": 3129.8, "px": 3183.8, "py": 2582.2}, {"loc_id": 2064, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 3, "x": 6654.9, "z": 3129.8, "px": 3183.8, "py": 2582.2}, {"loc_id": 2065, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2569.6, "z": -4599.8, "px": 2486.5, "py": 1263.0}, {"loc_id": 2065, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 2569.6, "z": -4599.8, "px": 2486.5, "py": 1263.0}, {"loc_id": 2066, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5948.5, "z": 1414.3, "px": 3063.2, "py": 2289.4}, {"loc_id": 2067, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8253.5, "z": 198.8, "px": 3456.6, "py": 2081.9}, {"loc_id": 2068, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7799.0, "z": -261.2, "px": 3379.0, "py": 2003.4}, {"loc_id": 2069, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -134.7, "z": -905.2, "px": 2025.0, "py": 1893.5}, {"loc_id": 2069, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -134.7, "z": -905.2, "px": 2025.0, "py": 1893.5}, {"loc_id": 2070, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4618.1, "z": 5752.9, "px": 1259.8, "py": 3029.8}, {"loc_id": 2071, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1793.0, "z": -4478.1, "px": 2354.0, "py": 1283.7}, {"loc_id": 2071, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": 1793.0, "z": -4478.1, "px": 2354.0, "py": 1283.7}, {"loc_id": 2072, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7928.0, "z": -2627.6, "px": 3401.0, "py": 1599.6}, {"loc_id": 2072, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 7928.0, "z": -2627.6, "px": 3401.0, "py": 1599.6}, {"loc_id": 2072, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 3, "x": 7928.0, "z": -2627.6, "px": 3401.0, "py": 1599.6}, {"loc_id": 2073, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7548.2, "z": -2743.2, "px": 3336.2, "py": 1579.8}, {"loc_id": 2073, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 7548.2, "z": -2743.2, "px": 3336.2, "py": 1579.8}, {"loc_id": 2074, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2555.5, "z": -4361.4, "px": 2484.1, "py": 1303.7}, {"loc_id": 2075, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 508.4, "z": 511.0, "px": 2134.8, "py": 2135.2}, {"loc_id": 2076, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1978.5, "z": 1274.9, "px": 2385.7, "py": 2265.6}, {"loc_id": 2076, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": 1978.5, "z": 1274.9, "px": 2385.7, "py": 2265.6}, {"loc_id": 2077, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2107.7, "z": 1143.7, "px": 2407.7, "py": 2243.2}, {"loc_id": 2078, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8757.2, "z": -1472.7, "px": 3542.6, "py": 1796.7}, {"loc_id": 2079, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5431.8, "z": -6277.2, "px": 1121.0, "py": 976.7}, {"loc_id": 2080, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -381.3, "z": -4345.5, "px": 1982.9, "py": 1306.4}, {"loc_id": 2081, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9975.8, "z": -134.2, "px": 345.5, "py": 2025.1}, {"loc_id": 2082, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1272.0, "z": -2183.0, "px": 1830.9, "py": 1675.4}, {"loc_id": 2082, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": -1272.0, "z": -2183.0, "px": 1830.9, "py": 1675.4}, {"loc_id": 2083, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4296.8, "z": -6398.2, "px": 1314.7, "py": 956.0}, {"loc_id": 2083, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": -4296.8, "z": -6398.2, "px": 1314.7, "py": 956.0}, {"loc_id": 2083, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 3, "x": -4296.8, "z": -6398.2, "px": 1314.7, "py": 956.0}, {"loc_id": 2084, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4355.4, "z": 1795.5, "px": 1304.7, "py": 2354.4}, {"loc_id": 2085, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 761.4, "z": 4665.8, "px": 2177.9, "py": 2844.3}, {"loc_id": 2086, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2122.5, "z": -3076.8, "px": 1685.8, "py": 1522.9}, {"loc_id": 2086, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -2122.5, "z": -3076.8, "px": 1685.8, "py": 1522.9}, {"loc_id": 2086, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": -2122.5, "z": -3076.8, "px": 1685.8, "py": 1522.9}, {"loc_id": 2086, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": -2122.5, "z": -3076.8, "px": 1685.8, "py": 1522.9}, {"loc_id": 2087, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2431.1, "z": -1534.2, "px": 2462.9, "py": 1786.2}, {"loc_id": 2088, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2487.2, "z": -6143.3, "px": 1623.5, "py": 999.5}, {"loc_id": 2089, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2170.4, "z": -707.7, "px": 2418.4, "py": 1927.2}, {"loc_id": 2090, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1801.2, "z": -4735.1, "px": 1740.6, "py": 1239.9}, {"loc_id": 2090, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1801.2, "z": -4735.1, "px": 1740.6, "py": 1239.9}, {"loc_id": 2090, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 3, "x": -1801.2, "z": -4735.1, "px": 1740.6, "py": 1239.9}, {"loc_id": 2091, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7615.2, "z": -4745.0, "px": 748.3, "py": 1238.2}, {"loc_id": 2092, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6474.9, "z": 3722.6, "px": 943.0, "py": 2683.3}, {"loc_id": 2092, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 3, "x": -6474.9, "z": 3722.6, "px": 943.0, "py": 2683.3}, {"loc_id": 2093, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 455.5, "z": 5046.0, "px": 2125.7, "py": 2909.2}, {"loc_id": 2093, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 455.5, "z": 5046.0, "px": 2125.7, "py": 2909.2}, {"loc_id": 2094, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 568.7, "z": 4745.9, "px": 2145.1, "py": 2858.0}, {"loc_id": 2094, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 568.7, "z": 4745.9, "px": 2145.1, "py": 2858.0}, {"loc_id": 2094, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 3, "x": 568.7, "z": 4745.9, "px": 2145.1, "py": 2858.0}, {"loc_id": 2094, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": 568.7, "z": 4745.9, "px": 2145.1, "py": 2858.0}, {"loc_id": 2095, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1910.0, "z": -4163.4, "px": 1722.0, "py": 1337.4}, {"loc_id": 2096, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4747.0, "z": 5697.4, "px": 1237.8, "py": 3020.4}, {"loc_id": 2097, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4027.5, "z": -2360.5, "px": 1360.6, "py": 1645.1}, {"loc_id": 2097, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -4027.5, "z": -2360.5, "px": 1360.6, "py": 1645.1}, {"loc_id": 2098, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2933.5, "z": -4341.4, "px": 2548.7, "py": 1307.1}, {"loc_id": 2099, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7287.1, "z": 2560.3, "px": 804.3, "py": 2485.0}, {"loc_id": 2099, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": -7287.1, "z": 2560.3, "px": 804.3, "py": 2485.0}, {"loc_id": 2100, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4230.3, "z": -191.4, "px": 2770.0, "py": 2015.3}, {"loc_id": 2101, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1158.2, "z": -1530.7, "px": 1850.3, "py": 1786.8}, {"loc_id": 2101, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -1158.2, "z": -1530.7, "px": 1850.3, "py": 1786.8}, {"loc_id": 2102, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7167.8, "z": 2488.8, "px": 824.7, "py": 2472.8}, {"loc_id": 2102, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -7167.8, "z": 2488.8, "px": 824.7, "py": 2472.8}, {"loc_id": 2102, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": -7167.8, "z": 2488.8, "px": 824.7, "py": 2472.8}, {"loc_id": 2103, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3965.6, "z": -382.1, "px": 2724.8, "py": 1982.8}, {"loc_id": 2103, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 3965.6, "z": -382.1, "px": 2724.8, "py": 1982.8}, {"loc_id": 2104, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 835.6, "z": 4856.2, "px": 2190.6, "py": 2876.8}, {"loc_id": 2104, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 835.6, "z": 4856.2, "px": 2190.6, "py": 2876.8}, {"loc_id": 2105, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 968.4, "z": 5450.5, "px": 2213.3, "py": 2978.2}, {"loc_id": 2106, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3317.8, "z": -2698.3, "px": 2614.2, "py": 1587.5}, {"loc_id": 2106, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 3317.8, "z": -2698.3, "px": 2614.2, "py": 1587.5}, {"loc_id": 2107, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9664.7, "z": -321.6, "px": 398.6, "py": 1993.1}, {"loc_id": 2108, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7680.5, "z": -2887.2, "px": 3358.8, "py": 1555.3}, {"loc_id": 2108, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 7680.5, "z": -2887.2, "px": 3358.8, "py": 1555.3}, {"loc_id": 2109, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4553.1, "z": -5122.9, "px": 2825.1, "py": 1173.7}, {"loc_id": 2109, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 4553.1, "z": -5122.9, "px": 2825.1, "py": 1173.7}, {"loc_id": 2109, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 4553.1, "z": -5122.9, "px": 2825.1, "py": 1173.7}, {"loc_id": 2110, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7299.5, "z": -3591.5, "px": 802.2, "py": 1435.1}, {"loc_id": 2110, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -7299.5, "z": -3591.5, "px": 802.2, "py": 1435.1}, {"loc_id": 2111, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4411.1, "z": 1666.0, "px": 1295.2, "py": 2332.3}, {"loc_id": 2111, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 3, "x": -4411.1, "z": 1666.0, "px": 1295.2, "py": 2332.3}, {"loc_id": 2112, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5188.7, "z": 5240.8, "px": 2933.5, "py": 2942.4}, {"loc_id": 2112, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": 5188.7, "z": 5240.8, "px": 2933.5, "py": 2942.4}, {"loc_id": 2113, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 502.9, "z": 377.9, "px": 2133.8, "py": 2112.5}, {"loc_id": 2114, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8841.5, "z": 123.6, "px": 3556.9, "py": 2069.1}, {"loc_id": 2115, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5826.5, "z": -329.0, "px": 1053.6, "py": 1991.9}, {"loc_id": 2115, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -5826.5, "z": -329.0, "px": 1053.6, "py": 1991.9}, {"loc_id": 2116, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5760.1, "z": -827.4, "px": 3031.1, "py": 1906.8}, {"loc_id": 2116, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 3, "x": 5760.1, "z": -827.4, "px": 3031.1, "py": 1906.8}, {"loc_id": 2117, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1278.8, "z": -2047.9, "px": 1829.8, "py": 1698.5}, {"loc_id": 2117, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 3, "x": -1278.8, "z": -2047.9, "px": 1829.8, "py": 1698.5}, {"loc_id": 2118, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4092.3, "z": 3912.8, "px": 2746.4, "py": 2715.8}, {"loc_id": 2119, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5123.6, "z": 5438.1, "px": 2922.4, "py": 2976.1}, {"loc_id": 2120, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2178.0, "z": 1283.9, "px": 2419.7, "py": 2267.1}, {"loc_id": 2121, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3338.0, "z": 4485.4, "px": 1478.3, "py": 2813.5}, {"loc_id": 2121, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -3338.0, "z": 4485.4, "px": 1478.3, "py": 2813.5}, {"loc_id": 2122, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1973.5, "z": 3575.7, "px": 2384.8, "py": 2658.3}, {"loc_id": 2122, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 1973.5, "z": 3575.7, "px": 2384.8, "py": 2658.3}, {"loc_id": 2123, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6721.1, "z": 3657.4, "px": 900.9, "py": 2672.2}, {"loc_id": 2124, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3017.7, "z": 4282.1, "px": 1533.0, "py": 2778.8}, {"loc_id": 2124, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -3017.7, "z": 4282.1, "px": 1533.0, "py": 2778.8}, {"loc_id": 2124, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -3017.7, "z": 4282.1, "px": 1533.0, "py": 2778.8}, {"loc_id": 2125, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2423.3, "z": 3647.1, "px": 2461.6, "py": 2670.4}, {"loc_id": 2126, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5059.6, "z": -1797.8, "px": 1184.5, "py": 1741.2}, {"loc_id": 2126, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": -5059.6, "z": -1797.8, "px": 1184.5, "py": 1741.2}, {"loc_id": 2127, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3769.9, "z": 3914.8, "px": 2691.4, "py": 2716.1}, {"loc_id": 2128, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5510.8, "z": 456.2, "px": 2988.5, "py": 2125.9}, {"loc_id": 2128, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 5510.8, "z": 456.2, "px": 2988.5, "py": 2125.9}, {"loc_id": 2129, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2120.9, "z": 694.0, "px": 1686.0, "py": 2166.4}, {"loc_id": 2129, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -2120.9, "z": 694.0, "px": 1686.0, "py": 2166.4}, {"loc_id": 2129, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": -2120.9, "z": 694.0, "px": 1686.0, "py": 2166.4}, {"loc_id": 2130, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1981.4, "z": -5691.3, "px": 1709.8, "py": 1076.7}, {"loc_id": 2131, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3194.2, "z": -2879.3, "px": 2593.1, "py": 1556.6}, {"loc_id": 2132, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 772.8, "z": 4226.6, "px": 2179.9, "py": 2769.3}, {"loc_id": 2133, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3722.8, "z": -252.1, "px": 2683.4, "py": 2005.0}, {"loc_id": 2134, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5754.4, "z": 4490.5, "px": 1065.9, "py": 2814.4}, {"loc_id": 2134, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -5754.4, "z": 4490.5, "px": 1065.9, "py": 2814.4}, {"loc_id": 2134, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": -5754.4, "z": 4490.5, "px": 1065.9, "py": 2814.4}, {"loc_id": 2135, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8263.2, "z": -2115.4, "px": 3458.3, "py": 1687.0}, {"loc_id": 2136, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2248.8, "z": -1352.8, "px": 2431.8, "py": 1817.1}, {"loc_id": 2137, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 6136.3, "z": -5898.6, "px": 3095.3, "py": 1041.3}, {"loc_id": 2137, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 6136.3, "z": -5898.6, "px": 3095.3, "py": 1041.3}, {"loc_id": 2138, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1608.3, "z": 4729.8, "px": 1773.5, "py": 2855.2}, {"loc_id": 2139, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5886.6, "z": 4606.1, "px": 1043.4, "py": 2834.1}, {"loc_id": 2139, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": -5886.6, "z": 4606.1, "px": 1043.4, "py": 2834.1}, {"loc_id": 2140, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 643.2, "z": 5308.8, "px": 2157.8, "py": 2954.0}, {"loc_id": 2140, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 3, "x": 643.2, "z": 5308.8, "px": 2157.8, "py": 2954.0}, {"loc_id": 2141, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1283.3, "z": -1154.5, "px": 1829.0, "py": 1851.0}, {"loc_id": 2141, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1283.3, "z": -1154.5, "px": 1829.0, "py": 1851.0}, {"loc_id": 2141, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": -1283.3, "z": -1154.5, "px": 1829.0, "py": 1851.0}, {"loc_id": 2142, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3129.8, "z": 4169.0, "px": 1513.8, "py": 2759.5}, {"loc_id": 2142, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 3, "x": -3129.8, "z": 4169.0, "px": 1513.8, "py": 2759.5}, {"loc_id": 2142, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -3129.8, "z": 4169.0, "px": 1513.8, "py": 2759.5}, {"loc_id": 2143, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2561.5, "z": 450.1, "px": 2485.2, "py": 2124.8}, {"loc_id": 2144, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7431.3, "z": -1848.0, "px": 779.7, "py": 1732.6}, {"loc_id": 2144, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -7431.3, "z": -1848.0, "px": 779.7, "py": 1732.6}, {"loc_id": 2145, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2491.2, "z": 5062.0, "px": 2473.2, "py": 2911.9}, {"loc_id": 2145, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": 2491.2, "z": 5062.0, "px": 2473.2, "py": 2911.9}, {"loc_id": 2146, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3189.9, "z": -2681.3, "px": 2592.4, "py": 1590.4}, {"loc_id": 2147, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 442.3, "z": 5504.3, "px": 2123.5, "py": 2987.4}, {"loc_id": 2148, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7106.3, "z": 1216.9, "px": 3260.8, "py": 2255.7}, {"loc_id": 2148, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 7106.3, "z": 1216.9, "px": 3260.8, "py": 2255.7}, {"loc_id": 2149, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2239.1, "z": 5115.9, "px": 2430.1, "py": 2921.1}, {"loc_id": 2149, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2239.1, "z": 5115.9, "px": 2430.1, "py": 2921.1}, {"loc_id": 2149, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 2239.1, "z": 5115.9, "px": 2430.1, "py": 2921.1}, {"loc_id": 2150, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9718.2, "z": 648.1, "px": 389.4, "py": 2158.6}, {"loc_id": 2150, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -9718.2, "z": 648.1, "px": 389.4, "py": 2158.6}, {"loc_id": 2150, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": -9718.2, "z": 648.1, "px": 389.4, "py": 2158.6}, {"loc_id": 2150, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 3, "x": -9718.2, "z": 648.1, "px": 389.4, "py": 2158.6}, {"loc_id": 2151, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7352.5, "z": -3254.6, "px": 3302.8, "py": 1492.5}, {"loc_id": 2151, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": 7352.5, "z": -3254.6, "px": 3302.8, "py": 1492.5}, {"loc_id": 2152, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1094.5, "z": -5131.0, "px": 2234.8, "py": 1172.3}, {"loc_id": 2152, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 3, "x": 1094.5, "z": -5131.0, "px": 2234.8, "py": 1172.3}, {"loc_id": 2153, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -834.3, "z": -6600.1, "px": 1905.6, "py": 921.6}, {"loc_id": 2153, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": -834.3, "z": -6600.1, "px": 1905.6, "py": 921.6}, {"loc_id": 2154, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2556.2, "z": 5818.7, "px": 2484.3, "py": 3041.1}, {"loc_id": 2154, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 2556.2, "z": 5818.7, "px": 2484.3, "py": 3041.1}, {"loc_id": 2154, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": 2556.2, "z": 5818.7, "px": 2484.3, "py": 3041.1}, {"loc_id": 2155, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2501.3, "z": -3655.8, "px": 2474.9, "py": 1424.1}, {"loc_id": 2155, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": 2501.3, "z": -3655.8, "px": 2474.9, "py": 1424.1}, {"loc_id": 2156, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4855.4, "z": -3010.4, "px": 1219.3, "py": 1534.2}, {"loc_id": 2157, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2947.2, "z": 4168.6, "px": 1545.0, "py": 2759.4}, {"loc_id": 2158, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8393.8, "z": 2741.1, "px": 3480.5, "py": 2515.8}, {"loc_id": 2158, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 8393.8, "z": 2741.1, "px": 3480.5, "py": 2515.8}, {"loc_id": 2159, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3267.2, "z": 4220.0, "px": 1490.4, "py": 2768.2}, {"loc_id": 2159, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -3267.2, "z": 4220.0, "px": 1490.4, "py": 2768.2}, {"loc_id": 2160, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5622.7, "z": 4937.3, "px": 1088.4, "py": 2890.6}, {"loc_id": 2161, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3962.9, "z": 7040.8, "px": 2724.3, "py": 3249.6}, {"loc_id": 2162, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7797.5, "z": -3061.1, "px": 3378.8, "py": 1525.6}, {"loc_id": 2162, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 3, "x": 7797.5, "z": -3061.1, "px": 3378.8, "py": 1525.6}, {"loc_id": 2163, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8955.2, "z": 3272.0, "px": 519.6, "py": 2606.4}, {"loc_id": 2163, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -8955.2, "z": 3272.0, "px": 519.6, "py": 2606.4}, {"loc_id": 2164, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 644.1, "z": -245.8, "px": 2157.9, "py": 2006.1}, {"loc_id": 2165, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8135.7, "z": 895.5, "px": 3436.5, "py": 2200.8}, {"loc_id": 2165, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 8135.7, "z": 895.5, "px": 3436.5, "py": 2200.8}, {"loc_id": 2166, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5567.0, "z": 4730.5, "px": 1097.9, "py": 2855.3}, {"loc_id": 2167, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2951.2, "z": -4922.7, "px": 2551.7, "py": 1207.9}, {"loc_id": 2167, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 2951.2, "z": -4922.7, "px": 2551.7, "py": 1207.9}, {"loc_id": 2168, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7164.3, "z": -4734.5, "px": 825.3, "py": 1240.0}, {"loc_id": 2168, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -7164.3, "z": -4734.5, "px": 825.3, "py": 1240.0}, {"loc_id": 2169, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7622.1, "z": 4287.6, "px": 747.2, "py": 2779.8}, {"loc_id": 2170, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7876.9, "z": -2761.7, "px": 3392.3, "py": 1576.7}, {"loc_id": 2170, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 7876.9, "z": -2761.7, "px": 3392.3, "py": 1576.7}, {"loc_id": 2171, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5879.9, "z": -5111.8, "px": 1044.5, "py": 1175.6}, {"loc_id": 2171, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -5879.9, "z": -5111.8, "px": 1044.5, "py": 1175.6}, {"loc_id": 2172, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7926.2, "z": -3080.1, "px": 3400.7, "py": 1522.3}, {"loc_id": 2173, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1034.1, "z": -5498.0, "px": 2224.5, "py": 1109.7}, {"loc_id": 2174, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4168.3, "z": -6390.4, "px": 1336.6, "py": 957.4}, {"loc_id": 2174, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 3, "x": -4168.3, "z": -6390.4, "px": 1336.6, "py": 957.4}, {"loc_id": 2174, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -4168.3, "z": -6390.4, "px": 1336.6, "py": 957.4}, {"loc_id": 2175, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 312.2, "z": 5051.0, "px": 2101.3, "py": 2910.0}, {"loc_id": 2175, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 312.2, "z": 5051.0, "px": 2101.3, "py": 2910.0}, {"loc_id": 2176, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6793.8, "z": 3780.2, "px": 888.5, "py": 2693.2}, {"loc_id": 2176, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6793.8, "z": 3780.2, "px": 888.5, "py": 2693.2}, {"loc_id": 2176, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 3, "x": -6793.8, "z": 3780.2, "px": 888.5, "py": 2693.2}, {"loc_id": 2177, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 582.5, "z": 60.8, "px": 2147.4, "py": 2058.4}, {"loc_id": 2178, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4361.3, "z": -5052.7, "px": 2792.3, "py": 1185.7}, {"loc_id": 2179, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -824.1, "z": 4866.1, "px": 1907.4, "py": 2878.5}, {"loc_id": 2180, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6520.2, "z": -4795.6, "px": 935.2, "py": 1229.6}, {"loc_id": 2180, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -6520.2, "z": -4795.6, "px": 935.2, "py": 1229.6}, {"loc_id": 2181, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9341.1, "z": 3254.4, "px": 453.8, "py": 2603.4}, {"loc_id": 2181, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -9341.1, "z": 3254.4, "px": 453.8, "py": 2603.4}, {"loc_id": 2182, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7942.6, "z": 265.7, "px": 692.5, "py": 2093.3}, {"loc_id": 2182, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 3, "x": -7942.6, "z": 265.7, "px": 692.5, "py": 2093.3}, {"loc_id": 2183, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9269.2, "z": 3385.5, "px": 466.1, "py": 2625.8}, {"loc_id": 2183, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -9269.2, "z": 3385.5, "px": 466.1, "py": 2625.8}, {"loc_id": 2183, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 3, "x": -9269.2, "z": 3385.5, "px": 466.1, "py": 2625.8}, {"loc_id": 2184, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5509.5, "z": -1928.1, "px": 1107.7, "py": 1718.9}, {"loc_id": 3035, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": 2302.1, "z": 5886.9, "px": 2440.9, "py": 3052.7}, {"loc_id": 3035, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 2302.1, "z": 5886.9, "px": 2440.9, "py": 3052.7}, {"loc_id": 3036, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 3969.5, "z": -1152.7, "px": 2725.5, "py": 1851.3}, {"loc_id": 3037, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 3, "x": -2559.0, "z": 6079.3, "px": 1611.3, "py": 3085.5}, {"loc_id": 3037, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": -2559.0, "z": 6079.3, "px": 1611.3, "py": 3085.5}, {"loc_id": 3037, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": -2559.0, "z": 6079.3, "px": 1611.3, "py": 3085.5}, {"loc_id": 3038, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": 4542.7, "z": 1025.5, "px": 2823.3, "py": 2223.0}, {"loc_id": 3040, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": -5758.6, "z": 1729.8, "px": 1065.2, "py": 2343.2}, {"loc_id": 3043, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -4863.5, "z": 3966.2, "px": 1218.0, "py": 2724.9}, {"loc_id": 3044, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": -1024.1, "z": -4863.7, "px": 1873.2, "py": 1217.9}, {"loc_id": 3045, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 4928.6, "z": 1279.0, "px": 2889.1, "py": 2266.3}, {"loc_id": 3045, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 4928.6, "z": 1279.0, "px": 2889.1, "py": 2266.3}, {"loc_id": 3047, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": -1985.3, "z": 3584.1, "px": 1709.2, "py": 2659.7}, {"loc_id": 3047, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -1985.3, "z": 3584.1, "px": 1709.2, "py": 2659.7}, {"loc_id": 3047, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -1985.3, "z": 3584.1, "px": 1709.2, "py": 2659.7}, {"loc_id": 3050, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 766.5, "z": -7231.9, "px": 2178.8, "py": 813.8}, {"loc_id": 3050, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 766.5, "z": -7231.9, "px": 2178.8, "py": 813.8}, {"loc_id": 3051, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": 3073.0, "z": 3198.7, "px": 2572.5, "py": 2593.9}, {"loc_id": 3051, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": 3073.0, "z": 3198.7, "px": 2572.5, "py": 2593.9}, {"loc_id": 3054, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 6847.7, "z": 3134.3, "px": 3216.7, "py": 2582.9}, {"loc_id": 3057, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -1534.8, "z": -6655.5, "px": 1786.1, "py": 912.1}, {"loc_id": 3057, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 3, "x": -1534.8, "z": -6655.5, "px": 1786.1, "py": 912.1}, {"loc_id": 3060, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": -5758.6, "z": -1345.1, "px": 1065.2, "py": 1818.4}, {"loc_id": 3061, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -4223.5, "z": 3007.5, "px": 1327.2, "py": 2561.3}, {"loc_id": 3061, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -4223.5, "z": 3007.5, "px": 1327.2, "py": 2561.3}, {"loc_id": 3062, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 3, "x": -1215.9, "z": -4353.4, "px": 1840.5, "py": 1305.0}, {"loc_id": 3063, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -128.6, "z": -5822.9, "px": 2026.1, "py": 1054.2}, {"loc_id": 3064, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -5950.0, "z": -4991.2, "px": 1032.5, "py": 1196.2}, {"loc_id": 3064, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": -5950.0, "z": -4991.2, "px": 1032.5, "py": 1196.2}, {"loc_id": 3066, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 5310.5, "z": 3584.0, "px": 2954.3, "py": 2659.7}, {"loc_id": 3066, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 5310.5, "z": 3584.0, "px": 2954.3, "py": 2659.7}, {"loc_id": 3067, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": -2816.7, "z": 2177.2, "px": 1567.3, "py": 2419.6}, {"loc_id": 3068, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": -5185.2, "z": -1022.1, "px": 1163.1, "py": 1873.6}, {"loc_id": 3069, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": -3393.3, "z": 2305.2, "px": 1468.9, "py": 2441.4}, {"loc_id": 3069, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -3393.3, "z": 2305.2, "px": 1468.9, "py": 2441.4}, {"loc_id": 3070, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -2112.0, "z": 3137.1, "px": 1687.6, "py": 2583.4}, {"loc_id": 3070, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": -2112.0, "z": 3137.1, "px": 1687.6, "py": 2583.4}, {"loc_id": 3071, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": 3776.6, "z": 1729.7, "px": 2692.5, "py": 2343.2}, {"loc_id": 3071, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 3776.6, "z": 1729.7, "px": 2692.5, "py": 2343.2}, {"loc_id": 3072, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -4353.3, "z": -2241.8, "px": 1305.0, "py": 1665.4}, {"loc_id": 3072, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": -4353.3, "z": -2241.8, "px": 1305.0, "py": 1665.4}, {"loc_id": 3072, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -4353.3, "z": -2241.8, "px": 1305.0, "py": 1665.4}, {"loc_id": 3074, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": 6720.6, "z": 2302.1, "px": 3195.0, "py": 2440.9}, {"loc_id": 3075, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -6209.3, "z": -4736.0, "px": 988.3, "py": 1239.7}, {"loc_id": 3075, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": -6209.3, "z": -4736.0, "px": 988.3, "py": 1239.7}, {"loc_id": 3076, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 6849.0, "z": -2369.3, "px": 3216.9, "py": 1643.6}, {"loc_id": 3076, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": 6849.0, "z": -2369.3, "px": 3216.9, "py": 1643.6}, {"loc_id": 3079, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 4415.1, "z": -1345.8, "px": 2801.5, "py": 1818.3}, {"loc_id": 3079, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 4415.1, "z": -1345.8, "px": 2801.5, "py": 1818.3}, {"loc_id": 3080, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -3967.4, "z": 3841.4, "px": 1370.9, "py": 2703.6}, {"loc_id": 3082, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": -6017.1, "z": 2176.9, "px": 1021.1, "py": 2419.5}, {"loc_id": 3083, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": 2753.6, "z": -5953.6, "px": 2517.9, "py": 1031.9}, {"loc_id": 3083, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 2753.6, "z": -5953.6, "px": 2517.9, "py": 1031.9}, {"loc_id": 3085, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -4543.6, "z": -6143.1, "px": 1272.6, "py": 999.6}, {"loc_id": 3087, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": 1024.6, "z": 4097.5, "px": 2222.9, "py": 2747.3}, {"loc_id": 3089, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 3, "x": 2750.5, "z": -5567.8, "px": 2517.4, "py": 1097.8}, {"loc_id": 3091, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -7103.0, "z": -1.0, "px": 835.8, "py": 2047.8}, {"loc_id": 3091, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": -7103.0, "z": -1.0, "px": 835.8, "py": 2047.8}, {"loc_id": 3092, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -4289.7, "z": -6142.8, "px": 1315.9, "py": 999.6}, {"loc_id": 3093, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": -3136.3, "z": 2494.0, "px": 1512.7, "py": 2473.6}, {"loc_id": 3095, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -7681.2, "z": -1983.8, "px": 737.1, "py": 1709.4}, {"loc_id": 3095, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -7681.2, "z": -1983.8, "px": 737.1, "py": 1709.4}, {"loc_id": 3096, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": 1982.5, "z": 7040.4, "px": 2386.3, "py": 3249.6}, {"loc_id": 3096, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": 1982.5, "z": 7040.4, "px": 2386.3, "py": 3249.6}, {"loc_id": 3098, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 3136.5, "z": 2750.3, "px": 2583.3, "py": 2517.4}, {"loc_id": 3099, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": 3776.9, "z": 1407.8, "px": 2692.6, "py": 2288.3}, {"loc_id": 3099, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 3776.9, "z": 1407.8, "px": 2692.6, "py": 2288.3}, {"loc_id": 3099, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 3776.9, "z": 1407.8, "px": 2692.6, "py": 2288.3}, {"loc_id": 3100, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": -704.8, "z": -6207.4, "px": 1927.7, "py": 988.6}, {"loc_id": 3101, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -3647.2, "z": -1599.4, "px": 1425.5, "py": 1775.0}, {"loc_id": 3101, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -3647.2, "z": -1599.4, "px": 1425.5, "py": 1775.0}, {"loc_id": 3104, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -4094.7, "z": -4352.5, "px": 1349.2, "py": 1305.2}, {"loc_id": 3107, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 1664.6, "z": 3393.8, "px": 2332.1, "py": 2627.2}, {"loc_id": 3107, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 1664.6, "z": 3393.8, "px": 2332.1, "py": 2627.2}, {"loc_id": 3109, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 127.2, "z": 3518.4, "px": 2069.7, "py": 2648.5}, {"loc_id": 3109, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": 127.2, "z": 3518.4, "px": 2069.7, "py": 2648.5}, {"loc_id": 3111, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": 5312.2, "z": -1921.8, "px": 2954.6, "py": 1720.0}, {"loc_id": 3111, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": 5312.2, "z": -1921.8, "px": 2954.6, "py": 1720.0}, {"loc_id": 3112, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 3009.4, "z": -1473.1, "px": 2561.6, "py": 1796.6}, {"loc_id": 3113, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 1984.9, "z": 5057.2, "px": 2386.8, "py": 2911.1}, {"loc_id": 3115, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": -5121.5, "z": -2880.5, "px": 1173.9, "py": 1556.4}, {"loc_id": 3115, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -5121.5, "z": -2880.5, "px": 1173.9, "py": 1556.4}, {"loc_id": 3116, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": 1279.3, "z": 3262.7, "px": 2266.3, "py": 2604.8}, {"loc_id": 3117, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 320.4, "z": 4033.3, "px": 2102.7, "py": 2736.3}, {"loc_id": 3118, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": 6975.6, "z": 2366.9, "px": 3238.5, "py": 2452.0}, {"loc_id": 3119, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 5374.1, "z": -2623.4, "px": 2965.2, "py": 1600.3}, {"loc_id": 3121, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -2816.6, "z": -7168.1, "px": 1567.3, "py": 824.6}, {"loc_id": 3122, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 959.4, "z": 4609.2, "px": 2211.7, "py": 2834.6}, {"loc_id": 3123, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": -4801.2, "z": 2239.1, "px": 1228.6, "py": 2430.1}, {"loc_id": 3127, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": 5759.4, "z": -4737.0, "px": 3030.9, "py": 1239.6}, {"loc_id": 3127, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 5759.4, "z": -4737.0, "px": 3030.9, "py": 1239.6}, {"loc_id": 3129, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 2816.9, "z": -3392.4, "px": 2528.8, "py": 1469.0}, {"loc_id": 3129, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 2816.9, "z": -3392.4, "px": 2528.8, "py": 1469.0}, {"loc_id": 3132, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 2369.7, "z": -2238.3, "px": 2452.4, "py": 1666.0}, {"loc_id": 3133, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": 3840.8, "z": 4158.3, "px": 2703.5, "py": 2757.7}, {"loc_id": 3134, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": 4606.7, "z": -1534.5, "px": 2834.2, "py": 1786.1}, {"loc_id": 3135, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 5634.0, "z": -2047.5, "px": 3009.5, "py": 1698.6}, {"loc_id": 3135, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": 5634.0, "z": -2047.5, "px": 3009.5, "py": 1698.6}, {"loc_id": 3137, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": 4862.4, "z": 5057.9, "px": 2877.8, "py": 2911.2}, {"loc_id": 3138, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 3, "x": 1151.3, "z": 3776.1, "px": 2244.5, "py": 2692.5}, {"loc_id": 3138, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": 1151.3, "z": 3776.1, "px": 2244.5, "py": 2692.5}, {"loc_id": 3138, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": 1151.3, "z": 3776.1, "px": 2244.5, "py": 2692.5}, {"loc_id": 3138, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 1151.3, "z": 3776.1, "px": 2244.5, "py": 2692.5}, {"loc_id": 3139, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": 2879.9, "z": -3647.5, "px": 2539.5, "py": 1425.5}, {"loc_id": 3140, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -2879.7, "z": 831.4, "px": 1556.5, "py": 2189.9}, {"loc_id": 3140, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -2879.7, "z": 831.4, "px": 1556.5, "py": 2189.9}, {"loc_id": 3141, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 1857.8, "z": 3713.0, "px": 2365.1, "py": 2681.7}, {"loc_id": 3141, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": 1857.8, "z": 3713.0, "px": 2365.1, "py": 2681.7}, {"loc_id": 3142, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": 3071.4, "z": 191.8, "px": 2572.2, "py": 2080.7}, {"loc_id": 3143, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 3, "x": 3969.5, "z": -639.1, "px": 2725.5, "py": 1938.9}, {"loc_id": 3143, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": 3969.5, "z": -639.1, "px": 2725.5, "py": 1938.9}, {"loc_id": 3145, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": 7041.8, "z": 1088.1, "px": 3249.8, "py": 2233.7}, {"loc_id": 3145, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 7041.8, "z": 1088.1, "px": 3249.8, "py": 2233.7}, {"loc_id": 3145, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 7041.8, "z": 1088.1, "px": 3249.8, "py": 2233.7}, {"loc_id": 3146, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": 2687.8, "z": 7167.6, "px": 2506.7, "py": 3271.3}, {"loc_id": 3146, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": 2687.8, "z": 7167.6, "px": 2506.7, "py": 3271.3}, {"loc_id": 3147, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -7422.2, "z": -2176.9, "px": 781.3, "py": 1676.5}, {"loc_id": 3148, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 7166.5, "z": -958.4, "px": 3271.1, "py": 1884.4}, {"loc_id": 3149, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": -2048.1, "z": -5311.5, "px": 1698.5, "py": 1141.5}, {"loc_id": 3153, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 3, "x": -4353.2, "z": 1984.7, "px": 1305.1, "py": 2386.7}, {"loc_id": 3154, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -961.8, "z": 4159.9, "px": 1883.9, "py": 2758.0}, {"loc_id": 3155, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -62.3, "z": -5185.2, "px": 2037.4, "py": 1163.1}, {"loc_id": 3155, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": -62.3, "z": -5185.2, "px": 2037.4, "py": 1163.1}, {"loc_id": 3158, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 3327.5, "z": -1665.3, "px": 2615.9, "py": 1763.8}, {"loc_id": 3160, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": -4481.0, "z": -5823.9, "px": 1283.2, "py": 1054.1}, {"loc_id": 3162, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 2944.5, "z": 4287.1, "px": 2550.5, "py": 2779.7}, {"loc_id": 3164, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 2370.0, "z": -5121.3, "px": 2452.5, "py": 1174.0}, {"loc_id": 3166, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 3, "x": -2368.6, "z": 4031.0, "px": 1643.8, "py": 2736.0}, {"loc_id": 3166, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -2368.6, "z": 4031.0, "px": 1643.8, "py": 2736.0}, {"loc_id": 3167, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 2814.4, "z": 1151.4, "px": 2528.3, "py": 2244.5}, {"loc_id": 3168, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 3712.5, "z": -448.2, "px": 2681.6, "py": 1971.5}, {"loc_id": 3169, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 4735.7, "z": 3071.3, "px": 2856.2, "py": 2572.2}, {"loc_id": 3171, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": -1023.3, "z": -6271.8, "px": 1873.4, "py": 977.6}, {"loc_id": 3171, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": -1023.3, "z": -6271.8, "px": 1873.4, "py": 977.6}, {"loc_id": 3171, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": -1023.3, "z": -6271.8, "px": 1873.4, "py": 977.6}, {"loc_id": 3172, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 4609.7, "z": 1406.2, "px": 2834.7, "py": 2288.0}, {"loc_id": 3172, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 4609.7, "z": 1406.2, "px": 2834.7, "py": 2288.0}, {"loc_id": 3173, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": 4096.5, "z": 4351.2, "px": 2747.1, "py": 2790.6}, {"loc_id": 3174, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": -1601.6, "z": -3134.8, "px": 1774.7, "py": 1513.0}, {"loc_id": 3174, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -1601.6, "z": -3134.8, "px": 1774.7, "py": 1513.0}, {"loc_id": 3177, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 6784.1, "z": 2881.4, "px": 3205.8, "py": 2539.8}, {"loc_id": 3181, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": 2110.8, "z": 6080.7, "px": 2408.2, "py": 3085.8}, {"loc_id": 3181, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": 2110.8, "z": 6080.7, "px": 2408.2, "py": 3085.8}, {"loc_id": 3182, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": 5184.7, "z": 4800.3, "px": 2932.9, "py": 2867.3}, {"loc_id": 3183, "loc_name": "GoblinCamp2", "item": "SpawnOnce: Goblin", "count": 3, "x": 7424.0, "z": -831.4, "px": 3315.0, "py": 1906.1}, {"loc_id": 3190, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -1854.6, "z": 3328.0, "px": 1731.5, "py": 2616.0}, {"loc_id": 3191, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 6016.2, "z": 1601.9, "px": 3074.8, "py": 2321.4}, {"loc_id": 3191, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": 6016.2, "z": 1601.9, "px": 3074.8, "py": 2321.4}, {"loc_id": 3194, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -3327.1, "z": -1663.5, "px": 1480.2, "py": 1764.1}, {"loc_id": 3195, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": -4928.4, "z": -1985.0, "px": 1206.9, "py": 1709.2}, {"loc_id": 3195, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": -4928.4, "z": -1985.0, "px": 1206.9, "py": 1709.2}, {"loc_id": 3196, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -961.5, "z": -5887.6, "px": 1883.9, "py": 1043.2}, {"loc_id": 3198, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": -3904.8, "z": 3006.7, "px": 1381.6, "py": 2561.1}, {"loc_id": 3198, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": -3904.8, "z": 3006.7, "px": 1381.6, "py": 2561.1}, {"loc_id": 3200, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 513.9, "z": -7296.5, "px": 2135.7, "py": 802.7}, {"loc_id": 3201, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": -1280.2, "z": -6655.9, "px": 1829.5, "py": 912.1}, {"loc_id": 3203, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": 3519.8, "z": 3262.7, "px": 2648.7, "py": 2604.8}, {"loc_id": 3203, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": 3519.8, "z": 3262.7, "px": 2648.7, "py": 2604.8}, {"loc_id": 3204, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -4416.6, "z": 6334.7, "px": 1294.2, "py": 3129.1}, {"loc_id": 3204, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": -4416.6, "z": 6334.7, "px": 1294.2, "py": 3129.1}, {"loc_id": 3206, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 3, "x": -3649.1, "z": -1920.6, "px": 1425.2, "py": 1720.2}, {"loc_id": 3206, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -3649.1, "z": -1920.6, "px": 1425.2, "py": 1720.2}, {"loc_id": 3206, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": -3649.1, "z": -1920.6, "px": 1425.2, "py": 1720.2}, {"loc_id": 3208, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 1983.3, "z": 4098.0, "px": 2386.5, "py": 2747.4}, {"loc_id": 3208, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": 1983.3, "z": 4098.0, "px": 2386.5, "py": 2747.4}, {"loc_id": 3210, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -3584.7, "z": 7105.2, "px": 1436.2, "py": 3260.6}, {"loc_id": 3212, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -896.0, "z": -4032.1, "px": 1895.1, "py": 1359.9}, {"loc_id": 3213, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -6656.3, "z": -3646.2, "px": 912.0, "py": 1425.7}, {"loc_id": 3214, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -3134.9, "z": 7103.2, "px": 1513.0, "py": 3260.3}, {"loc_id": 3216, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": 3072.9, "z": -63.5, "px": 2572.4, "py": 2037.2}, {"loc_id": 3217, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": -5502.3, "z": 641.6, "px": 1108.9, "py": 2157.5}, {"loc_id": 3217, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -5502.3, "z": 641.6, "px": 1108.9, "py": 2157.5}, {"loc_id": 3218, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": 6273.8, "z": 1535.8, "px": 3118.7, "py": 2310.1}, {"loc_id": 3218, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": 6273.8, "z": 1535.8, "px": 3118.7, "py": 2310.1}, {"loc_id": 3218, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 6273.8, "z": 1535.8, "px": 3118.7, "py": 2310.1}, {"loc_id": 3219, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": -2942.9, "z": 4096.3, "px": 1545.7, "py": 2747.1}, {"loc_id": 3219, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -2942.9, "z": 4096.3, "px": 1545.7, "py": 2747.1}, {"loc_id": 3220, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -2750.4, "z": -3711.7, "px": 1578.6, "py": 1414.5}, {"loc_id": 3221, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 7105.1, "z": 2113.2, "px": 3260.6, "py": 2408.7}, {"loc_id": 3221, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": 7105.1, "z": 2113.2, "px": 3260.6, "py": 2408.7}, {"loc_id": 3222, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": 896.5, "z": 3584.0, "px": 2201.0, "py": 2659.7}, {"loc_id": 3222, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 896.5, "z": 3584.0, "px": 2201.0, "py": 2659.7}, {"loc_id": 3223, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -5888.9, "z": 961.8, "px": 1043.0, "py": 2212.1}, {"loc_id": 3223, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 3, "x": -5888.9, "z": 961.8, "px": 1043.0, "py": 2212.1}, {"loc_id": 3224, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": -5823.9, "z": 4351.9, "px": 1054.1, "py": 2790.7}, {"loc_id": 3224, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": -5823.9, "z": 4351.9, "px": 1054.1, "py": 2790.7}, {"loc_id": 3226, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 3, "x": 1342.7, "z": 5057.3, "px": 2277.2, "py": 2911.1}, {"loc_id": 3228, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 3, "x": 3969.0, "z": 895.5, "px": 2725.4, "py": 2200.8}, {"loc_id": 3229, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": -5441.0, "z": 383.3, "px": 1119.4, "py": 2113.4}, {"loc_id": 3231, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": 4735.4, "z": -2944.6, "px": 2856.2, "py": 1545.5}, {"loc_id": 3234, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 3, "x": 4031.6, "z": 5118.5, "px": 2736.1, "py": 2921.6}, {"loc_id": 3244, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 3, "x": -4339.2, "z": 6088.6, "px": 1307.4, "py": 3087.1}, {"loc_id": 3252, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 3, "x": 2828.2, "z": -6146.1, "px": 2530.7, "py": 999.1}, {"loc_id": 3255, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 3, "x": 6918.8, "z": -2478.2, "px": 3228.8, "py": 1625.1}, {"loc_id": 3267, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 3, "x": -17.6, "z": -3847.1, "px": 2045.0, "py": 1391.4}, {"loc_id": 3272, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 3, "x": 3255.2, "z": 4480.1, "px": 2603.6, "py": 2812.6}, {"loc_id": 3275, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 3, "x": 5113.0, "z": -1093.7, "px": 2920.6, "py": 1861.3}, {"loc_id": 3278, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 3, "x": -5513.4, "z": 1738.8, "px": 1107.0, "py": 2344.8}, {"loc_id": 3279, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 3, "x": -5313.8, "z": -2119.8, "px": 1141.1, "py": 1686.2}, {"loc_id": 3328, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 3, "x": 3014.8, "z": 4986.2, "px": 2562.5, "py": 2899.0}, {"loc_id": 3337, "loc_name": "StoneHenge1", "item": "SpawnOnce: GoblinBrute", "count": 3, "x": 7039.0, "z": -2432.9, "px": 3249.3, "py": 1632.8}, {"loc_id": 3366, "loc_name": "StoneHenge5", "item": "SpawnOnce: Goblin", "count": 3, "x": 960.2, "z": -4087.9, "px": 2211.9, "py": 1350.3}, {"loc_id": 3435, "loc_name": "WoodHouse3", "item": "Pickable: Wood", "count": 3, "x": -3712.5, "z": -2605.3, "px": 1414.4, "py": 1603.4}, {"loc_id": 3436, "loc_name": "WoodHouse3", "item": "Pickable: Wood", "count": 3, "x": -3436.2, "z": 3017.2, "px": 1461.6, "py": 2562.9}, {"loc_id": 3438, "loc_name": "WoodHouse3", "item": "Pickable: Wood", "count": 3, "x": 1485.7, "z": -238.5, "px": 2301.6, "py": 2007.3}, {"loc_id": 3439, "loc_name": "WoodHouse3", "item": "Pickable: Wood", "count": 3, "x": -2032.8, "z": -4557.7, "px": 1701.1, "py": 1270.2}, {"loc_id": 3440, "loc_name": "WoodHouse3", "item": "Pickable: Wood", "count": 3, "x": -4867.2, "z": 341.3, "px": 1217.3, "py": 2106.2}, {"loc_id": 3442, "loc_name": "WoodHouse3", "item": "Pickable: Wood", "count": 3, "x": -3344.6, "z": 2986.3, "px": 1477.2, "py": 2557.7}, {"loc_id": 3443, "loc_name": "WoodHouse3", "item": "Pickable: Wood", "count": 3, "x": -1745.7, "z": -175.2, "px": 1750.1, "py": 2018.1}, {"loc_id": 3444, "loc_name": "WoodHouse3", "item": "Pickable: Wood", "count": 3, "x": -404.7, "z": 54.8, "px": 1978.9, "py": 2057.4}, {"loc_id": 3445, "loc_name": "WoodHouse3", "item": "Pickable: Wood", "count": 3, "x": -3468.2, "z": 2704.5, "px": 1456.1, "py": 2509.6}, {"loc_id": 3447, "loc_name": "WoodHouse3", "item": "Pickable: Wood", "count": 3, "x": -2.5, "z": -1802.1, "px": 2047.6, "py": 1740.4}, {"loc_id": 3448, "loc_name": "WoodHouse3", "item": "Pickable: Wood", "count": 3, "x": 1426.6, "z": 508.6, "px": 2291.5, "py": 2134.8}, {"loc_id": 3449, "loc_name": "WoodHouse3", "item": "Pickable: Wood", "count": 3, "x": 1094.8, "z": -117.0, "px": 2234.8, "py": 2028.0}, {"loc_id": 3450, "loc_name": "WoodHouse3", "item": "Pickable: Wood", "count": 3, "x": 4081.3, "z": -1264.8, "px": 2744.5, "py": 1832.1}, {"loc_id": 3452, "loc_name": "WoodHouse3", "item": "Pickable: Wood", "count": 3, "x": 2360.0, "z": -777.5, "px": 2450.8, "py": 1915.3}, {"loc_id": 3453, "loc_name": "WoodHouse3", "item": "Pickable: Wood", "count": 3, "x": 3124.6, "z": -2617.4, "px": 2581.3, "py": 1601.3}, {"loc_id": 3454, "loc_name": "WoodHouse3", "item": "Pickable: Wood", "count": 3, "x": 336.5, "z": -49.2, "px": 2105.4, "py": 2039.6}, {"loc_id": 3547, "loc_name": "WoodHouse8", "item": "Pickable: Dandelion", "count": 3, "x": 324.9, "z": 3828.3, "px": 2103.4, "py": 2701.4}, {"loc_id": 3551, "loc_name": "WoodHouse8", "item": "Pickable: Dandelion", "count": 3, "x": -2807.4, "z": 1578.8, "px": 1568.9, "py": 2317.4}, {"loc_id": 3627, "loc_name": "WoodHouse12", "item": "Pickable: Mushroom", "count": 3, "x": 901.1, "z": 3305.6, "px": 2201.8, "py": 2612.2}, {"loc_id": 3629, "loc_name": "WoodHouse12", "item": "Pickable: Mushroom", "count": 3, "x": -113.3, "z": 551.4, "px": 2028.7, "py": 2142.1}, {"loc_id": 3655, "loc_name": "WoodFarm1", "item": "Pickable: Raspberry", "count": 3, "x": -1408.0, "z": -1152.0, "px": 1807.7, "py": 1851.4}, {"loc_id": 3657, "loc_name": "WoodFarm1", "item": "SpawnOnce: Boar", "count": 3, "x": 1088.0, "z": 768.0, "px": 2233.7, "py": 2179.1}, {"loc_id": 3658, "loc_name": "WoodFarm1", "item": "SpawnOnce: Boar", "count": 3, "x": -1536.0, "z": -832.0, "px": 1785.9, "py": 1906.0}, {"loc_id": 3663, "loc_name": "WoodFarm1", "item": "Container: TreasureChest_meadows", "count": 3, "x": 1024.0, "z": 896.0, "px": 2222.8, "py": 2200.9}, {"loc_id": 3665, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Elite", "count": 3, "x": 4288.0, "z": -1216.0, "px": 2779.8, "py": 1840.5}, {"loc_id": 3666, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows", "count": 3, "x": -4032.0, "z": -2048.0, "px": 1359.9, "py": 1698.5}, {"loc_id": 3667, "loc_name": "WoodVillage1", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 3, "x": -2176.0, "z": -1792.0, "px": 1676.6, "py": 1742.2}, {"loc_id": 3668, "loc_name": "WoodVillage1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": -1728.0, "z": -1024.0, "px": 1753.1, "py": 1873.2}, {"loc_id": 3668, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Elite", "count": 3, "x": -1728.0, "z": -1024.0, "px": 1753.1, "py": 1873.2}, {"loc_id": 3672, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows", "count": 3, "x": 3072.0, "z": -2688.0, "px": 2572.3, "py": 1589.2}, {"loc_id": 3672, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows (1)", "count": 3, "x": 3072.0, "z": -2688.0, "px": 2572.3, "py": 1589.2}, {"loc_id": 3674, "loc_name": "WoodVillage1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": -4928.0, "z": 384.0, "px": 1207.0, "py": 2113.5}, {"loc_id": 3676, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Elite", "count": 3, "x": 896.0, "z": 3264.0, "px": 2200.9, "py": 2605.1}, {"loc_id": 3676, "loc_name": "WoodVillage1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 3, "x": 896.0, "z": 3264.0, "px": 2200.9, "py": 2605.1}, {"loc_id": 3678, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Elite", "count": 3, "x": -2752.0, "z": 1792.0, "px": 1578.3, "py": 2353.8}, {"loc_id": 3678, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows", "count": 3, "x": -2752.0, "z": 1792.0, "px": 1578.3, "py": 2353.8}, {"loc_id": 3678, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows (2)", "count": 3, "x": -2752.0, "z": 1792.0, "px": 1578.3, "py": 2353.8}, {"loc_id": 3679, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Ranged", "count": 3, "x": 3072.0, "z": 2304.0, "px": 2572.3, "py": 2441.2}, {"loc_id": 3679, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr", "count": 3, "x": 3072.0, "z": 2304.0, "px": 2572.3, "py": 2441.2}, {"loc_id": 3680, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -7490.7, "z": 4796.9, "px": 769.6, "py": 2866.7}, {"loc_id": 3684, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 4994.6, "z": -2173.4, "px": 2900.4, "py": 1677.1}, {"loc_id": 3686, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -8383.0, "z": -828.8, "px": 617.3, "py": 1906.6}, {"loc_id": 3688, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -312.7, "z": -4487.1, "px": 1994.6, "py": 1282.2}, {"loc_id": 3690, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 5637.1, "z": -893.0, "px": 3010.1, "py": 1895.6}, {"loc_id": 3692, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 3386.7, "z": -2688.7, "px": 2626.0, "py": 1589.1}, {"loc_id": 3693, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 3969.6, "z": -444.6, "px": 2725.5, "py": 1972.1}, {"loc_id": 3695, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -4799.0, "z": 5433.5, "px": 1229.0, "py": 2975.3}, {"loc_id": 3696, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 3, "x": -9145.4, "z": 3265.8, "px": 487.2, "py": 2605.4}, {"loc_id": 3698, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 1211.3, "z": -5761.3, "px": 2254.7, "py": 1064.7}, {"loc_id": 3700, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -6919.8, "z": 2370.7, "px": 867.0, "py": 2452.6}, {"loc_id": 3707, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 3845.3, "z": 3655.8, "px": 2704.3, "py": 2671.9}, {"loc_id": 3709, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 2939.3, "z": 381.0, "px": 2549.6, "py": 2113.0}, {"loc_id": 3710, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -9210.6, "z": 3012.9, "px": 476.1, "py": 2562.2}, {"loc_id": 3711, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 1915.7, "z": -4285.6, "px": 2374.9, "py": 1316.6}, {"loc_id": 3711, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 1915.7, "z": -4285.6, "px": 2374.9, "py": 1316.6}, {"loc_id": 3712, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -3719.4, "z": 4217.5, "px": 1413.2, "py": 2767.8}, {"loc_id": 3714, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 8327.0, "z": -2117.3, "px": 3469.1, "py": 1686.6}, {"loc_id": 3718, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 3, "x": -1093.3, "z": -1345.6, "px": 1861.4, "py": 1818.4}, {"loc_id": 3718, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -1093.3, "z": -1345.6, "px": 1861.4, "py": 1818.4}, {"loc_id": 3719, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 2298.1, "z": 1216.5, "px": 2440.2, "py": 2255.6}, {"loc_id": 3720, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 2234.2, "z": -1662.2, "px": 2429.3, "py": 1764.3}, {"loc_id": 3722, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -2947.2, "z": 4290.9, "px": 1545.0, "py": 2780.3}, {"loc_id": 3725, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -1732.3, "z": -4410.7, "px": 1752.4, "py": 1295.2}, {"loc_id": 3729, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 3, "x": -5828.9, "z": -5048.7, "px": 1053.2, "py": 1186.4}, {"loc_id": 3729, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -5828.9, "z": -5048.7, "px": 1053.2, "py": 1186.4}, {"loc_id": 3730, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -7354.9, "z": -4678.6, "px": 792.8, "py": 1249.5}, {"loc_id": 3730, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -7354.9, "z": -4678.6, "px": 792.8, "py": 1249.5}, {"loc_id": 3733, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 3451.4, "z": 3584.6, "px": 2637.0, "py": 2659.8}, {"loc_id": 3735, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -1984.4, "z": -4155.2, "px": 1709.3, "py": 1338.8}, {"loc_id": 3736, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 1222.7, "z": 5702.9, "px": 2256.7, "py": 3021.3}, {"loc_id": 3737, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 699.1, "z": 5376.2, "px": 2167.3, "py": 2965.5}, {"loc_id": 3738, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 5118.3, "z": 5370.0, "px": 2921.5, "py": 2964.5}, {"loc_id": 3740, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 3, "x": 1927.7, "z": 6714.1, "px": 2377.0, "py": 3193.9}, {"loc_id": 3740, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 1927.7, "z": 6714.1, "px": 2377.0, "py": 3193.9}, {"loc_id": 3744, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -6714.7, "z": 5381.9, "px": 902.0, "py": 2966.5}, {"loc_id": 3745, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -5823.3, "z": -192.9, "px": 1054.2, "py": 2015.1}, {"loc_id": 3746, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -4097.4, "z": -6395.4, "px": 1348.7, "py": 956.5}, {"loc_id": 3747, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 2493.6, "z": -4479.4, "px": 2473.6, "py": 1283.5}, {"loc_id": 3749, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 764.3, "z": -2429.7, "px": 2178.4, "py": 1633.3}, {"loc_id": 3754, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 3, "x": -1665.4, "z": 7680.5, "px": 1763.8, "py": 3358.8}, {"loc_id": 3754, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -1665.4, "z": 7680.5, "px": 1763.8, "py": 3358.8}, {"loc_id": 3755, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 1793.5, "z": -4609.6, "px": 2354.1, "py": 1261.3}, {"loc_id": 3760, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -9284.3, "z": -1465.2, "px": 463.5, "py": 1797.9}, {"loc_id": 3761, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 2617.2, "z": -3463.9, "px": 2494.7, "py": 1456.8}, {"loc_id": 3763, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -5888.7, "z": 1532.4, "px": 1043.0, "py": 2309.5}, {"loc_id": 3765, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -4349.8, "z": 1666.7, "px": 1305.6, "py": 2332.5}, {"loc_id": 3767, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -3910.3, "z": -2556.5, "px": 1380.6, "py": 1611.7}, {"loc_id": 3768, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 8256.0, "z": 256.4, "px": 3457.0, "py": 2091.8}, {"loc_id": 3769, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 3, "x": -4735.0, "z": 5820.1, "px": 1239.9, "py": 3041.3}, {"loc_id": 3769, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -4735.0, "z": 5820.1, "px": 1239.9, "py": 3041.3}, {"loc_id": 3771, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -2176.7, "z": 769.5, "px": 1676.5, "py": 2179.3}, {"loc_id": 3777, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -3462.0, "z": 4673.6, "px": 1457.2, "py": 2845.6}, {"loc_id": 3778, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 3, "x": 2238.2, "z": 5052.9, "px": 2430.0, "py": 2910.4}, {"loc_id": 3778, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 2238.2, "z": 5052.9, "px": 2430.0, "py": 2910.4}, {"loc_id": 3782, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 3, "x": 895.5, "z": -5562.6, "px": 2200.8, "py": 1098.6}, {"loc_id": 3783, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -829.5, "z": -0.2, "px": 1906.4, "py": 2048.0}, {"loc_id": 3784, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 3, "x": -8321.6, "z": -1671.9, "px": 627.8, "py": 1762.7}, {"loc_id": 3786, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -6713.9, "z": -4667.5, "px": 902.2, "py": 1251.4}, {"loc_id": 3798, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -8958.8, "z": 3075.5, "px": 519.0, "py": 2572.9}, {"loc_id": 3801, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -5063.5, "z": 5691.7, "px": 1183.8, "py": 3019.4}, {"loc_id": 3802, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -2105.1, "z": 1030.1, "px": 1688.7, "py": 2223.8}, {"loc_id": 3805, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 3, "x": -4.8, "z": -4738.9, "px": 2047.2, "py": 1239.2}, {"loc_id": 3805, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -4.8, "z": -4738.9, "px": 2047.2, "py": 1239.2}, {"loc_id": 3806, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 772.7, "z": 4862.7, "px": 2179.9, "py": 2877.9}, {"loc_id": 3808, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -9411.7, "z": -133.3, "px": 441.7, "py": 2025.3}, {"loc_id": 3809, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 8769.6, "z": -1413.0, "px": 3544.7, "py": 1806.8}, {"loc_id": 3810, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 7425.5, "z": -3262.8, "px": 3315.3, "py": 1491.1}, {"loc_id": 3811, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 1413.4, "z": -2500.8, "px": 2289.2, "py": 1621.2}, {"loc_id": 3816, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 898.8, "z": -5306.1, "px": 2201.4, "py": 1142.4}, {"loc_id": 3818, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 5308.7, "z": 5052.4, "px": 2954.0, "py": 2910.3}, {"loc_id": 3818, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 5308.7, "z": 5052.4, "px": 2954.0, "py": 2910.3}, {"loc_id": 3822, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 2750.4, "z": -4601.0, "px": 2517.4, "py": 1262.8}, {"loc_id": 3825, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -9337.1, "z": -2692.8, "px": 454.5, "py": 1588.4}, {"loc_id": 3828, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 7804.1, "z": -765.8, "px": 3379.9, "py": 1917.3}, {"loc_id": 3828, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 7804.1, "z": -765.8, "px": 3379.9, "py": 1917.3}, {"loc_id": 3830, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -3133.3, "z": 6651.7, "px": 1513.3, "py": 3183.2}, {"loc_id": 3835, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 4600.8, "z": -5114.6, "px": 2833.2, "py": 1175.1}, {"loc_id": 3839, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 1731.9, "z": -826.9, "px": 2343.6, "py": 1906.9}, {"loc_id": 3840, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -5499.1, "z": -6213.3, "px": 1109.5, "py": 987.6}, {"loc_id": 3841, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 450.3, "z": 642.2, "px": 2124.9, "py": 2157.6}, {"loc_id": 3842, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -955.8, "z": 259.9, "px": 1884.9, "py": 2092.4}, {"loc_id": 3844, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -6713.3, "z": 445.6, "px": 902.3, "py": 2124.0}, {"loc_id": 3849, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 9784.1, "z": 1209.0, "px": 3717.8, "py": 2254.3}, {"loc_id": 3852, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -7224.3, "z": -1976.6, "px": 815.1, "py": 1710.7}, {"loc_id": 3854, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 3, "x": 7613.6, "z": 3776.7, "px": 3347.4, "py": 2692.6}, {"loc_id": 3855, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 1528.8, "z": -449.9, "px": 2308.9, "py": 1971.2}, {"loc_id": 3856, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 3, "x": 5306.9, "z": 6399.7, "px": 2953.7, "py": 3140.2}, {"loc_id": 4108, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8504.1, "z": -1928.2, "px": 3499.4, "py": 1718.9}, {"loc_id": 4108, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 8504.1, "z": -1928.2, "px": 3499.4, "py": 1718.9}, {"loc_id": 4108, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 8504.1, "z": -1928.2, "px": 3499.4, "py": 1718.9}, {"loc_id": 4109, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2942.1, "z": 903.8, "px": 2550.1, "py": 2202.2}, {"loc_id": 4109, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 2942.1, "z": 903.8, "px": 2550.1, "py": 2202.2}, {"loc_id": 4110, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3637.8, "z": 4362.6, "px": 1427.1, "py": 2792.6}, {"loc_id": 4111, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5448.4, "z": -1157.3, "px": 2977.9, "py": 1850.5}, {"loc_id": 4111, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 3, "x": 5448.4, "z": -1157.3, "px": 2977.9, "py": 1850.5}, {"loc_id": 4112, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 513.6, "z": 5365.1, "px": 2135.7, "py": 2963.6}, {"loc_id": 4113, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2939.2, "z": -125.2, "px": 2549.6, "py": 2026.6}, {"loc_id": 4113, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 2939.2, "z": -125.2, "px": 2549.6, "py": 2026.6}, {"loc_id": 4114, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8966.8, "z": 2952.0, "px": 517.7, "py": 2551.8}, {"loc_id": 4115, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5001.8, "z": 777.7, "px": 1194.4, "py": 2180.7}, {"loc_id": 4115, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -5001.8, "z": 777.7, "px": 1194.4, "py": 2180.7}, {"loc_id": 4116, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1589.1, "z": -1726.7, "px": 1776.8, "py": 1753.3}, {"loc_id": 4116, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -1589.1, "z": -1726.7, "px": 1776.8, "py": 1753.3}, {"loc_id": 4117, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4740.3, "z": 5570.9, "px": 1239.0, "py": 2998.8}, {"loc_id": 4117, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -4740.3, "z": 5570.9, "px": 1239.0, "py": 2998.8}, {"loc_id": 4118, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9206.7, "z": 3189.3, "px": 476.7, "py": 2592.3}, {"loc_id": 4119, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2236.0, "z": -1290.8, "px": 2429.6, "py": 1827.7}, {"loc_id": 4119, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": 2236.0, "z": -1290.8, "px": 2429.6, "py": 1827.7}, {"loc_id": 4119, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 2236.0, "z": -1290.8, "px": 2429.6, "py": 1827.7}, {"loc_id": 4120, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6462.9, "z": -4733.3, "px": 945.0, "py": 1240.2}, {"loc_id": 4121, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3272.7, "z": -4548.3, "px": 2606.5, "py": 1271.8}, {"loc_id": 4122, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3384.6, "z": -2614.5, "px": 2625.6, "py": 1601.8}, {"loc_id": 4123, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7167.3, "z": -1866.0, "px": 824.8, "py": 1729.5}, {"loc_id": 4123, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": -7167.3, "z": -1866.0, "px": 824.8, "py": 1729.5}, {"loc_id": 4123, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": -7167.3, "z": -1866.0, "px": 824.8, "py": 1729.5}, {"loc_id": 4124, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1994.9, "z": 1141.6, "px": 2388.5, "py": 2242.8}, {"loc_id": 4124, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": 1994.9, "z": 1141.6, "px": 2388.5, "py": 2242.8}, {"loc_id": 4125, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7167.7, "z": 2685.6, "px": 824.7, "py": 2506.3}, {"loc_id": 4125, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 3, "x": -7167.7, "z": 2685.6, "px": 824.7, "py": 2506.3}, {"loc_id": 4126, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8251.4, "z": -388.6, "px": 3456.2, "py": 1981.7}, {"loc_id": 4126, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 8251.4, "z": -388.6, "px": 3456.2, "py": 1981.7}, {"loc_id": 4127, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9343.8, "z": 2946.3, "px": 453.3, "py": 2550.8}, {"loc_id": 4128, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4281.1, "z": 1733.4, "px": 1317.4, "py": 2343.8}, {"loc_id": 4128, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -4281.1, "z": 1733.4, "px": 1317.4, "py": 2343.8}, {"loc_id": 4129, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6527.9, "z": 5445.1, "px": 933.9, "py": 2977.3}, {"loc_id": 4129, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -6527.9, "z": 5445.1, "px": 933.9, "py": 2977.3}, {"loc_id": 4130, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4938.7, "z": -2114.9, "px": 2890.9, "py": 1687.1}, {"loc_id": 4130, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 4938.7, "z": -2114.9, "px": 2890.9, "py": 1687.1}, {"loc_id": 4131, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5766.6, "z": -5058.9, "px": 1063.8, "py": 1184.6}, {"loc_id": 4131, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -5766.6, "z": -5058.9, "px": 1063.8, "py": 1184.6}, {"loc_id": 4132, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1077.3, "z": -5511.5, "px": 2231.9, "py": 1107.4}, {"loc_id": 4132, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 1077.3, "z": -5511.5, "px": 2231.9, "py": 1107.4}, {"loc_id": 4133, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2500.2, "z": 1219.2, "px": 2474.7, "py": 2256.1}, {"loc_id": 4133, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 2500.2, "z": 1219.2, "px": 2474.7, "py": 2256.1}, {"loc_id": 4134, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3018.6, "z": -4425.6, "px": 2563.2, "py": 1292.7}, {"loc_id": 4134, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 3018.6, "z": -4425.6, "px": 2563.2, "py": 1292.7}, {"loc_id": 4134, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 3018.6, "z": -4425.6, "px": 2563.2, "py": 1292.7}, {"loc_id": 4135, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2434.5, "z": 5052.4, "px": 2463.5, "py": 2910.3}, {"loc_id": 4136, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 6022.3, "z": -5886.6, "px": 3075.8, "py": 1043.4}, {"loc_id": 4136, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 6022.3, "z": -5886.6, "px": 3075.8, "py": 1043.4}, {"loc_id": 4137, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1785.0, "z": -1220.8, "px": 2352.6, "py": 1839.7}, {"loc_id": 4138, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3385.4, "z": 4539.1, "px": 1470.2, "py": 2822.7}, {"loc_id": 4138, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": -3385.4, "z": 4539.1, "px": 1470.2, "py": 2822.7}, {"loc_id": 4139, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4995.9, "z": 5704.5, "px": 1195.4, "py": 3021.6}, {"loc_id": 4139, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -4995.9, "z": 5704.5, "px": 1195.4, "py": 3021.6}, {"loc_id": 4139, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": -4995.9, "z": 5704.5, "px": 1195.4, "py": 3021.6}, {"loc_id": 4140, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5192.8, "z": -2238.7, "px": 2934.2, "py": 1665.9}, {"loc_id": 4140, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 5192.8, "z": -2238.7, "px": 2934.2, "py": 1665.9}, {"loc_id": 4141, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8380.7, "z": -710.6, "px": 617.7, "py": 1926.7}, {"loc_id": 4142, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2429.2, "z": -118.6, "px": 1633.4, "py": 2027.8}, {"loc_id": 4143, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3581.2, "z": 3573.3, "px": 2659.2, "py": 2657.8}, {"loc_id": 4143, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 3581.2, "z": 3573.3, "px": 2659.2, "py": 2657.8}, {"loc_id": 4144, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7544.4, "z": -2691.5, "px": 3335.6, "py": 1588.7}, {"loc_id": 4144, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 7544.4, "z": -2691.5, "px": 3335.6, "py": 1588.7}, {"loc_id": 4145, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 761.7, "z": 262.0, "px": 2178.0, "py": 2092.7}, {"loc_id": 4145, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 761.7, "z": 262.0, "px": 2178.0, "py": 2092.7}, {"loc_id": 4146, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2298.1, "z": 6275.1, "px": 2440.2, "py": 3119.0}, {"loc_id": 4147, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9157.9, "z": 3333.6, "px": 485.1, "py": 2616.9}, {"loc_id": 4147, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -9157.9, "z": 3333.6, "px": 485.1, "py": 2616.9}, {"loc_id": 4148, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2038.7, "z": -1161.5, "px": 2395.9, "py": 1849.8}, {"loc_id": 4148, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": 2038.7, "z": -1161.5, "px": 2395.9, "py": 1849.8}, {"loc_id": 4149, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3274.6, "z": -2807.2, "px": 2606.9, "py": 1568.9}, {"loc_id": 4149, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 3274.6, "z": -2807.2, "px": 2606.9, "py": 1568.9}, {"loc_id": 4149, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 3274.6, "z": -2807.2, "px": 2606.9, "py": 1568.9}, {"loc_id": 4150, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9221.4, "z": 2885.5, "px": 474.2, "py": 2540.5}, {"loc_id": 4150, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": -9221.4, "z": 2885.5, "px": 474.2, "py": 2540.5}, {"loc_id": 4150, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": -9221.4, "z": 2885.5, "px": 474.2, "py": 2540.5}, {"loc_id": 4151, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 831.2, "z": -2237.7, "px": 2189.9, "py": 1666.1}, {"loc_id": 4152, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5113.9, "z": 5255.2, "px": 2920.8, "py": 2944.9}, {"loc_id": 4153, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6601.9, "z": 571.6, "px": 921.3, "py": 2145.6}, {"loc_id": 4153, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -6601.9, "z": 571.6, "px": 921.3, "py": 2145.6}, {"loc_id": 4154, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1339.3, "z": -1343.6, "px": 1819.4, "py": 1818.7}, {"loc_id": 4154, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -1339.3, "z": -1343.6, "px": 1819.4, "py": 1818.7}, {"loc_id": 4154, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 3, "x": -1339.3, "z": -1343.6, "px": 1819.4, "py": 1818.7}, {"loc_id": 4155, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5321.9, "z": 4856.1, "px": 2956.3, "py": 2876.8}, {"loc_id": 4156, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 6653.1, "z": 4920.0, "px": 3183.5, "py": 2887.7}, {"loc_id": 4157, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9159.0, "z": 3018.4, "px": 484.9, "py": 2563.1}, {"loc_id": 4157, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -9159.0, "z": 3018.4, "px": 484.9, "py": 2563.1}, {"loc_id": 4158, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1157.1, "z": -5302.3, "px": 2245.5, "py": 1143.1}, {"loc_id": 4159, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2231.0, "z": 4486.8, "px": 1667.2, "py": 2813.7}, {"loc_id": 4159, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -2231.0, "z": 4486.8, "px": 1667.2, "py": 2813.7}, {"loc_id": 4159, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": -2231.0, "z": 4486.8, "px": 1667.2, "py": 2813.7}, {"loc_id": 4160, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8074.3, "z": 376.3, "px": 670.0, "py": 2112.2}, {"loc_id": 4160, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -8074.3, "z": 376.3, "px": 670.0, "py": 2112.2}, {"loc_id": 4161, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 6406.0, "z": 3253.2, "px": 3141.3, "py": 2603.2}, {"loc_id": 4161, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 6406.0, "z": 3253.2, "px": 3141.3, "py": 2603.2}, {"loc_id": 4161, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": 6406.0, "z": 3253.2, "px": 3141.3, "py": 2603.2}, {"loc_id": 4162, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7496.6, "z": -4341.8, "px": 3327.4, "py": 1307.0}, {"loc_id": 4162, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 7496.6, "z": -4341.8, "px": 3327.4, "py": 1307.0}, {"loc_id": 4163, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1787.8, "z": -4426.4, "px": 1742.9, "py": 1292.6}, {"loc_id": 4163, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -1787.8, "z": -4426.4, "px": 1742.9, "py": 1292.6}, {"loc_id": 4163, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": -1787.8, "z": -4426.4, "px": 1742.9, "py": 1292.6}, {"loc_id": 4164, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7426.8, "z": -4985.2, "px": 780.5, "py": 1197.2}, {"loc_id": 4165, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3838.5, "z": -380.1, "px": 1392.9, "py": 1983.1}, {"loc_id": 4166, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5699.1, "z": 1534.6, "px": 3020.6, "py": 2309.9}, {"loc_id": 4167, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 447.7, "z": 375.2, "px": 2124.4, "py": 2112.0}, {"loc_id": 4167, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 447.7, "z": 375.2, "px": 2124.4, "py": 2112.0}, {"loc_id": 4168, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8825.5, "z": -3830.4, "px": 3554.2, "py": 1394.3}, {"loc_id": 4169, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1218.9, "z": -2236.2, "px": 2256.0, "py": 1666.4}, {"loc_id": 4170, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1734.2, "z": 7416.2, "px": 2344.0, "py": 3313.7}, {"loc_id": 4170, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 1734.2, "z": 7416.2, "px": 2344.0, "py": 3313.7}, {"loc_id": 4171, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4031.3, "z": -2490.3, "px": 1360.0, "py": 1623.0}, {"loc_id": 4172, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8070.8, "z": 517.7, "px": 670.6, "py": 2136.4}, {"loc_id": 4173, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4153.2, "z": 3769.4, "px": 2756.8, "py": 2691.3}, {"loc_id": 4174, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1161.6, "z": 5507.9, "px": 2246.2, "py": 2988.0}, {"loc_id": 4174, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": 1161.6, "z": 5507.9, "px": 2246.2, "py": 2988.0}, {"loc_id": 4175, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1674.2, "z": 4799.8, "px": 1762.3, "py": 2867.2}, {"loc_id": 4176, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 899.2, "z": 3392.5, "px": 2201.5, "py": 2627.0}, {"loc_id": 4177, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3203.0, "z": 4417.2, "px": 1501.4, "py": 2801.9}, {"loc_id": 4178, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5053.1, "z": 5444.3, "px": 2910.4, "py": 2977.2}, {"loc_id": 4179, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7242.2, "z": -4937.2, "px": 812.0, "py": 1205.4}, {"loc_id": 4179, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -7242.2, "z": -4937.2, "px": 812.0, "py": 1205.4}, {"loc_id": 4180, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1992.1, "z": -4477.5, "px": 2388.0, "py": 1283.8}, {"loc_id": 4180, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 1992.1, "z": -4477.5, "px": 2388.0, "py": 1283.8}, {"loc_id": 4181, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 842.8, "z": -3.9, "px": 2191.8, "py": 2047.3}, {"loc_id": 4182, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3142.6, "z": -1276.7, "px": 2584.3, "py": 1830.1}, {"loc_id": 4182, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 3142.6, "z": -1276.7, "px": 2584.3, "py": 1830.1}, {"loc_id": 4183, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7557.0, "z": -4745.1, "px": 758.3, "py": 1238.2}, {"loc_id": 4184, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1341.5, "z": -1738.7, "px": 1819.1, "py": 1751.3}, {"loc_id": 4185, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5579.0, "z": -4997.9, "px": 1095.9, "py": 1195.0}, {"loc_id": 4186, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7875.4, "z": -2620.2, "px": 3392.1, "py": 1600.8}, {"loc_id": 4186, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": 7875.4, "z": -2620.2, "px": 3392.1, "py": 1600.8}, {"loc_id": 4187, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2357.9, "z": -1343.9, "px": 2450.4, "py": 1818.6}, {"loc_id": 4187, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 3, "x": 2357.9, "z": -1343.9, "px": 2450.4, "py": 1818.6}, {"loc_id": 4188, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3456.5, "z": -2434.8, "px": 2637.9, "py": 1632.5}, {"loc_id": 4189, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2811.4, "z": -4794.0, "px": 2527.8, "py": 1229.8}, {"loc_id": 4189, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 2811.4, "z": -4794.0, "px": 2527.8, "py": 1229.8}, {"loc_id": 4190, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2058.7, "z": 1015.3, "px": 2399.4, "py": 2221.3}, {"loc_id": 4191, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3893.5, "z": 4862.5, "px": 2712.5, "py": 2877.9}, {"loc_id": 4191, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 3893.5, "z": 4862.5, "px": 2712.5, "py": 2877.9}, {"loc_id": 4192, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7925.4, "z": -2948.4, "px": 3400.6, "py": 1544.8}, {"loc_id": 4193, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2503.9, "z": -4613.5, "px": 2475.3, "py": 1260.6}, {"loc_id": 4193, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 3, "x": 2503.9, "z": -4613.5, "px": 2475.3, "py": 1260.6}, {"loc_id": 4194, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1215.8, "z": -5496.9, "px": 2255.5, "py": 1109.9}, {"loc_id": 4194, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1215.8, "z": -5496.9, "px": 2255.5, "py": 1109.9}, {"loc_id": 4195, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3199.5, "z": -2569.3, "px": 2594.0, "py": 1609.5}, {"loc_id": 4195, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 3199.5, "z": -2569.3, "px": 2594.0, "py": 1609.5}, {"loc_id": 4196, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1976.2, "z": -957.5, "px": 2385.3, "py": 1884.6}, {"loc_id": 4196, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 1976.2, "z": -957.5, "px": 2385.3, "py": 1884.6}, {"loc_id": 4196, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": 1976.2, "z": -957.5, "px": 2385.3, "py": 1884.6}, {"loc_id": 4197, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8693.4, "z": -457.0, "px": 564.3, "py": 1970.0}, {"loc_id": 4198, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3829.0, "z": 1215.6, "px": 2701.5, "py": 2255.5}, {"loc_id": 4198, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 3829.0, "z": 1215.6, "px": 2701.5, "py": 2255.5}, {"loc_id": 4198, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 3, "x": 3829.0, "z": 1215.6, "px": 2701.5, "py": 2255.5}, {"loc_id": 4199, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2884.2, "z": -2239.6, "px": 2540.2, "py": 1665.8}, {"loc_id": 4200, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2247.2, "z": 6136.8, "px": 2431.5, "py": 3095.3}, {"loc_id": 4201, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1916.7, "z": 7036.3, "px": 2375.1, "py": 3248.9}, {"loc_id": 4201, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 1916.7, "z": 7036.3, "px": 2375.1, "py": 3248.9}, {"loc_id": 4202, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8186.5, "z": 2743.4, "px": 650.8, "py": 2516.2}, {"loc_id": 4202, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -8186.5, "z": 2743.4, "px": 650.8, "py": 2516.2}, {"loc_id": 4203, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2238.2, "z": 1021.5, "px": 2430.0, "py": 2222.3}, {"loc_id": 4203, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 3, "x": 2238.2, "z": 1021.5, "px": 2430.0, "py": 2222.3}, {"loc_id": 4204, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3832.5, "z": 3901.3, "px": 2702.1, "py": 2713.8}, {"loc_id": 4205, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7223.4, "z": -4729.8, "px": 815.2, "py": 1240.8}, {"loc_id": 4205, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -7223.4, "z": -4729.8, "px": 815.2, "py": 1240.8}, {"loc_id": 4205, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 3, "x": -7223.4, "z": -4729.8, "px": 815.2, "py": 1240.8}, {"loc_id": 4206, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7049.9, "z": -4285.7, "px": 3251.2, "py": 1316.6}, {"loc_id": 4206, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 7049.9, "z": -4285.7, "px": 3251.2, "py": 1316.6}, {"loc_id": 4207, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 9654.2, "z": 1404.6, "px": 3695.7, "py": 2287.7}, {"loc_id": 4208, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2693.9, "z": -3652.1, "px": 2507.8, "py": 1424.7}, {"loc_id": 4208, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 2693.9, "z": -3652.1, "px": 2507.8, "py": 1424.7}, {"loc_id": 4209, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4603.6, "z": -5193.7, "px": 2833.7, "py": 1161.6}, {"loc_id": 4209, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 4603.6, "z": -5193.7, "px": 2833.7, "py": 1161.6}, {"loc_id": 4210, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2503.3, "z": 1718.0, "px": 1620.8, "py": 2341.2}, {"loc_id": 4211, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1342.8, "z": -5442.2, "px": 2277.2, "py": 1119.2}, {"loc_id": 4211, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 1342.8, "z": -5442.2, "px": 2277.2, "py": 1119.2}, {"loc_id": 4212, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5377.4, "z": -2041.4, "px": 1130.3, "py": 1699.6}, {"loc_id": 4213, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9607.3, "z": 584.3, "px": 408.4, "py": 2147.7}, {"loc_id": 4213, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 3, "x": -9607.3, "z": 584.3, "px": 408.4, "py": 2147.7}, {"loc_id": 4214, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8389.3, "z": 330.5, "px": 3479.8, "py": 2104.4}, {"loc_id": 4215, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3967.1, "z": -2613.4, "px": 1370.9, "py": 1602.0}, {"loc_id": 4216, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 124.1, "z": -4545.7, "px": 2069.2, "py": 1272.2}, {"loc_id": 4217, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2361.2, "z": 3838.0, "px": 2451.0, "py": 2703.0}, {"loc_id": 4217, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 2361.2, "z": 3838.0, "px": 2451.0, "py": 2703.0}, {"loc_id": 4218, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2378.8, "z": 4597.9, "px": 1642.0, "py": 2832.7}, {"loc_id": 4218, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": -2378.8, "z": 4597.9, "px": 1642.0, "py": 2832.7}, {"loc_id": 4219, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5114.9, "z": 309.7, "px": 1175.1, "py": 2100.9}, {"loc_id": 4219, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": -5114.9, "z": 309.7, "px": 1175.1, "py": 2100.9}, {"loc_id": 4219, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -5114.9, "z": 309.7, "px": 1175.1, "py": 2100.9}, {"loc_id": 4220, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8705.3, "z": -3714.4, "px": 3533.7, "py": 1414.1}, {"loc_id": 4220, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 8705.3, "z": -3714.4, "px": 3533.7, "py": 1414.1}, {"loc_id": 4221, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4150.3, "z": -117.1, "px": 1339.7, "py": 2028.0}, {"loc_id": 4222, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 833.8, "z": -2569.4, "px": 2190.3, "py": 1609.5}, {"loc_id": 4222, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": 833.8, "z": -2569.4, "px": 2190.3, "py": 1609.5}, {"loc_id": 4223, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1789.2, "z": 6727.5, "px": 2353.4, "py": 3196.2}, {"loc_id": 4224, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1013.1, "z": 5697.9, "px": 2220.9, "py": 3020.4}, {"loc_id": 4224, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 1013.1, "z": 5697.9, "px": 2220.9, "py": 3020.4}, {"loc_id": 4225, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3832.3, "z": -2556.2, "px": 1394.0, "py": 1611.7}, {"loc_id": 4225, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -3832.3, "z": -2556.2, "px": 1394.0, "py": 1611.7}, {"loc_id": 4225, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -3832.3, "z": -2556.2, "px": 1394.0, "py": 1611.7}, {"loc_id": 4226, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8135.3, "z": -2488.2, "px": 3436.4, "py": 1623.3}, {"loc_id": 4226, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 8135.3, "z": -2488.2, "px": 3436.4, "py": 1623.3}, {"loc_id": 4227, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1924.7, "z": -830.3, "px": 2376.5, "py": 1906.3}, {"loc_id": 4228, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2681.5, "z": -4486.6, "px": 2505.6, "py": 1282.3}, {"loc_id": 4229, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 907.0, "z": 5564.8, "px": 2202.8, "py": 2997.7}, {"loc_id": 4229, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 907.0, "z": 5564.8, "px": 2202.8, "py": 2997.7}, {"loc_id": 4230, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7741.6, "z": 4344.6, "px": 726.8, "py": 2789.5}, {"loc_id": 4231, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5060.5, "z": -2175.6, "px": 2911.7, "py": 1676.7}, {"loc_id": 4231, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5060.5, "z": -2175.6, "px": 2911.7, "py": 1676.7}, {"loc_id": 4232, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5628.7, "z": -1013.6, "px": 3008.6, "py": 1875.0}, {"loc_id": 4232, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": 5628.7, "z": -1013.6, "px": 3008.6, "py": 1875.0}, {"loc_id": 4233, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9029.0, "z": 3203.1, "px": 507.1, "py": 2594.7}, {"loc_id": 4233, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": -9029.0, "z": 3203.1, "px": 507.1, "py": 2594.7}, {"loc_id": 4234, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2241.6, "z": 5178.2, "px": 2430.6, "py": 2931.7}, {"loc_id": 4234, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": 2241.6, "z": 5178.2, "px": 2430.6, "py": 2931.7}, {"loc_id": 4235, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4286.9, "z": -838.4, "px": 2779.6, "py": 1904.9}, {"loc_id": 4235, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": 4286.9, "z": -838.4, "px": 2779.6, "py": 1904.9}, {"loc_id": 4236, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5256.6, "z": 5576.3, "px": 1150.9, "py": 2999.7}, {"loc_id": 4236, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -5256.6, "z": 5576.3, "px": 1150.9, "py": 2999.7}, {"loc_id": 4237, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8254.8, "z": -1992.0, "px": 3456.8, "py": 1708.0}, {"loc_id": 4237, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 8254.8, "z": -1992.0, "px": 3456.8, "py": 1708.0}, {"loc_id": 4238, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 9473.5, "z": 201.9, "px": 3664.8, "py": 2082.5}, {"loc_id": 4239, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1726.7, "z": -4362.4, "px": 2342.7, "py": 1303.5}, {"loc_id": 4240, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -326.5, "z": -4228.1, "px": 1992.3, "py": 1326.4}, {"loc_id": 4240, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -326.5, "z": -4228.1, "px": 1992.3, "py": 1326.4}, {"loc_id": 4240, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": -326.5, "z": -4228.1, "px": 1992.3, "py": 1326.4}, {"loc_id": 4241, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 6474.4, "z": 4791.9, "px": 3153.0, "py": 2865.8}, {"loc_id": 4241, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": 6474.4, "z": 4791.9, "px": 3153.0, "py": 2865.8}, {"loc_id": 4242, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2167.4, "z": 702.4, "px": 1678.1, "py": 2167.9}, {"loc_id": 4242, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 3, "x": -2167.4, "z": 702.4, "px": 1678.1, "py": 2167.9}, {"loc_id": 4243, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 579.7, "z": 185.9, "px": 2146.9, "py": 2079.7}, {"loc_id": 4244, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5828.6, "z": 4542.6, "px": 1053.3, "py": 2823.3}, {"loc_id": 4244, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": -5828.6, "z": 4542.6, "px": 1053.3, "py": 2823.3}, {"loc_id": 4245, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8067.7, "z": 323.4, "px": 3424.9, "py": 2103.2}, {"loc_id": 4245, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 8067.7, "z": 323.4, "px": 3424.9, "py": 2103.2}, {"loc_id": 4246, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5832.1, "z": 1476.6, "px": 1052.7, "py": 2300.0}, {"loc_id": 4246, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -5832.1, "z": 1476.6, "px": 1052.7, "py": 2300.0}, {"loc_id": 4247, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2744.6, "z": 5254.7, "px": 2516.4, "py": 2944.8}, {"loc_id": 4247, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 2744.6, "z": 5254.7, "px": 2516.4, "py": 2944.8}, {"loc_id": 4248, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5761.9, "z": 1610.3, "px": 1064.6, "py": 2322.8}, {"loc_id": 4249, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7430.7, "z": -3206.4, "px": 3316.2, "py": 1500.8}, {"loc_id": 4249, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 7430.7, "z": -3206.4, "px": 3316.2, "py": 1500.8}, {"loc_id": 4250, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4867.6, "z": 5757.0, "px": 1217.3, "py": 3030.5}, {"loc_id": 4250, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -4867.6, "z": 5757.0, "px": 1217.3, "py": 3030.5}, {"loc_id": 4251, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5947.0, "z": 1400.3, "px": 1033.0, "py": 2287.0}, {"loc_id": 4251, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -5947.0, "z": 1400.3, "px": 1033.0, "py": 2287.0}, {"loc_id": 4251, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 3, "x": -5947.0, "z": 1400.3, "px": 1033.0, "py": 2287.0}, {"loc_id": 4252, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6152.8, "z": 2296.4, "px": 997.9, "py": 2439.9}, {"loc_id": 4253, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7557.9, "z": -1993.0, "px": 758.1, "py": 1707.9}, {"loc_id": 4254, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2185.2, "z": 1205.6, "px": 2420.9, "py": 2253.8}, {"loc_id": 4255, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7035.7, "z": 2438.1, "px": 847.2, "py": 2464.1}, {"loc_id": 4256, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2299.3, "z": 1538.2, "px": 2440.4, "py": 2310.5}, {"loc_id": 4256, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2299.3, "z": 1538.2, "px": 2440.4, "py": 2310.5}, {"loc_id": 4257, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -649.4, "z": -6517.8, "px": 1937.2, "py": 935.6}, {"loc_id": 4257, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": -649.4, "z": -6517.8, "px": 1937.2, "py": 935.6}, {"loc_id": 4258, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1079.5, "z": -5820.3, "px": 1863.8, "py": 1054.7}, {"loc_id": 4259, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7996.1, "z": -2755.7, "px": 3412.7, "py": 1577.7}, {"loc_id": 4259, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 3, "x": 7996.1, "z": -2755.7, "px": 3412.7, "py": 1577.7}, {"loc_id": 4260, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -444.3, "z": -4292.0, "px": 1972.2, "py": 1315.5}, {"loc_id": 4261, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2549.6, "z": -3462.5, "px": 2483.1, "py": 1457.1}, {"loc_id": 4261, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 2549.6, "z": -3462.5, "px": 2483.1, "py": 1457.1}, {"loc_id": 4261, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 2549.6, "z": -3462.5, "px": 2483.1, "py": 1457.1}, {"loc_id": 4261, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 3, "x": 2549.6, "z": -3462.5, "px": 2483.1, "py": 1457.1}, {"loc_id": 4262, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 713.0, "z": 5437.3, "px": 2169.7, "py": 2976.0}, {"loc_id": 4263, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5571.4, "z": 5003.0, "px": 1097.1, "py": 2901.8}, {"loc_id": 4264, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8056.3, "z": -2882.2, "px": 3422.9, "py": 1556.1}, {"loc_id": 4264, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 8056.3, "z": -2882.2, "px": 3422.9, "py": 1556.1}, {"loc_id": 4265, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2375.4, "z": -1605.8, "px": 2453.4, "py": 1773.9}, {"loc_id": 4266, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 632.8, "z": 5047.1, "px": 2156.0, "py": 2909.4}, {"loc_id": 4266, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 632.8, "z": 5047.1, "px": 2156.0, "py": 2909.4}, {"loc_id": 4267, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3721.4, "z": 6782.4, "px": 1412.9, "py": 3205.5}, {"loc_id": 4267, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": -3721.4, "z": 6782.4, "px": 1412.9, "py": 3205.5}, {"loc_id": 4268, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3143.0, "z": -2424.5, "px": 2584.4, "py": 1634.2}, {"loc_id": 4268, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": 3143.0, "z": -2424.5, "px": 2584.4, "py": 1634.2}, {"loc_id": 4269, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1795.6, "z": 3065.6, "px": 1741.6, "py": 2571.2}, {"loc_id": 4270, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3338.7, "z": -2428.5, "px": 1478.2, "py": 1633.5}, {"loc_id": 4271, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6662.5, "z": 5429.6, "px": 910.9, "py": 2974.7}, {"loc_id": 4271, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -6662.5, "z": 5429.6, "px": 910.9, "py": 2974.7}, {"loc_id": 4272, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9543.9, "z": -2625.6, "px": 419.2, "py": 1599.9}, {"loc_id": 4273, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1912.7, "z": 6784.9, "px": 2374.4, "py": 3206.0}, {"loc_id": 4274, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9671.9, "z": -2564.5, "px": 397.3, "py": 1610.3}, {"loc_id": 4275, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4100.0, "z": -2235.3, "px": 1348.3, "py": 1666.5}, {"loc_id": 4275, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": -4100.0, "z": -2235.3, "px": 1348.3, "py": 1666.5}, {"loc_id": 4276, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1415.9, "z": -2056.9, "px": 1806.4, "py": 1697.0}, {"loc_id": 4277, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 710.5, "z": -128.2, "px": 2169.3, "py": 2026.1}, {"loc_id": 4277, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 710.5, "z": -128.2, "px": 2169.3, "py": 2026.1}, {"loc_id": 4277, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": 710.5, "z": -128.2, "px": 2169.3, "py": 2026.1}, {"loc_id": 4278, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2569.6, "z": 4988.7, "px": 2486.5, "py": 2899.4}, {"loc_id": 4278, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 2569.6, "z": 4988.7, "px": 2486.5, "py": 2899.4}, {"loc_id": 4279, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3849.9, "z": 3584.6, "px": 2705.0, "py": 2659.8}, {"loc_id": 4280, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2302.1, "z": -3017.9, "px": 1655.1, "py": 1532.9}, {"loc_id": 4281, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1027.4, "z": -5060.9, "px": 1872.7, "py": 1184.3}, {"loc_id": 4281, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": -1027.4, "z": -5060.9, "px": 1872.7, "py": 1184.3}, {"loc_id": 4281, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": -1027.4, "z": -5060.9, "px": 1872.7, "py": 1184.3}, {"loc_id": 4282, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6016.3, "z": 4606.7, "px": 1021.2, "py": 2834.2}, {"loc_id": 4282, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": -6016.3, "z": 4606.7, "px": 1021.2, "py": 2834.2}, {"loc_id": 4283, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1219.6, "z": -1141.5, "px": 1839.9, "py": 1853.2}, {"loc_id": 4284, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3833.1, "z": 894.9, "px": 2702.2, "py": 2200.7}, {"loc_id": 4284, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 3833.1, "z": 894.9, "px": 2702.2, "py": 2200.7}, {"loc_id": 4285, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9146.8, "z": -1529.4, "px": 486.9, "py": 1787.0}, {"loc_id": 4285, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -9146.8, "z": -1529.4, "px": 486.9, "py": 1787.0}, {"loc_id": 4286, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 772.0, "z": 5308.1, "px": 2179.8, "py": 2953.9}, {"loc_id": 4287, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4214.3, "z": -2304.7, "px": 1328.8, "py": 1654.7}, {"loc_id": 4287, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -4214.3, "z": -2304.7, "px": 1328.8, "py": 1654.7}, {"loc_id": 4288, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4550.6, "z": -4986.1, "px": 2824.6, "py": 1197.0}, {"loc_id": 4288, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4550.6, "z": -4986.1, "px": 2824.6, "py": 1197.0}, {"loc_id": 4289, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7161.4, "z": -4478.0, "px": 3270.2, "py": 1283.8}, {"loc_id": 4290, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8455.7, "z": -1866.4, "px": 604.9, "py": 1729.5}, {"loc_id": 4290, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 3, "x": -8455.7, "z": -1866.4, "px": 604.9, "py": 1729.5}, {"loc_id": 4291, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9346.4, "z": 3080.4, "px": 452.9, "py": 2573.7}, {"loc_id": 4291, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 3, "x": -9346.4, "z": 3080.4, "px": 452.9, "py": 2573.7}, {"loc_id": 4292, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1531.7, "z": 6326.6, "px": 2309.4, "py": 3127.7}, {"loc_id": 4292, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 1531.7, "z": 6326.6, "px": 2309.4, "py": 3127.7}, {"loc_id": 4293, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2745.6, "z": 455.2, "px": 2516.6, "py": 2125.7}, {"loc_id": 4293, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 2745.6, "z": 455.2, "px": 2516.6, "py": 2125.7}, {"loc_id": 4294, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7735.8, "z": -2246.0, "px": 727.8, "py": 1664.7}, {"loc_id": 4294, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 3, "x": -7735.8, "z": -2246.0, "px": 727.8, "py": 1664.7}, {"loc_id": 4295, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8200.0, "z": 2570.1, "px": 648.5, "py": 2486.6}, {"loc_id": 4295, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 3, "x": -8200.0, "z": 2570.1, "px": 648.5, "py": 2486.6}, {"loc_id": 4295, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": -8200.0, "z": 2570.1, "px": 648.5, "py": 2486.6}, {"loc_id": 4296, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2248.7, "z": 1737.9, "px": 1664.2, "py": 2344.6}, {"loc_id": 4297, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 968.5, "z": 5317.9, "px": 2213.3, "py": 2955.6}, {"loc_id": 4298, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 6791.1, "z": 4738.8, "px": 3207.0, "py": 2856.8}, {"loc_id": 4299, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2947.0, "z": 3833.6, "px": 2551.0, "py": 2702.3}, {"loc_id": 4300, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7413.3, "z": -4476.7, "px": 3313.2, "py": 1284.0}, {"loc_id": 4300, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 7413.3, "z": -4476.7, "px": 3313.2, "py": 1284.0}, {"loc_id": 4301, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2058.1, "z": -834.7, "px": 2399.2, "py": 1905.5}, {"loc_id": 4301, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 2058.1, "z": -834.7, "px": 2399.2, "py": 1905.5}, {"loc_id": 4302, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3838.8, "z": -251.4, "px": 1392.8, "py": 2005.1}, {"loc_id": 4302, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 3, "x": -3838.8, "z": -251.4, "px": 1392.8, "py": 2005.1}, {"loc_id": 4303, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -516.3, "z": 325.0, "px": 1959.9, "py": 2103.5}, {"loc_id": 4304, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 9.6, "z": -4220.6, "px": 2049.6, "py": 1327.7}, {"loc_id": 4305, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6663.1, "z": 3777.2, "px": 910.8, "py": 2692.6}, {"loc_id": 4305, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -6663.1, "z": 3777.2, "px": 910.8, "py": 2692.6}, {"loc_id": 4306, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3400.3, "z": -2175.3, "px": 2628.3, "py": 1676.7}, {"loc_id": 4306, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 3400.3, "z": -2175.3, "px": 2628.3, "py": 1676.7}, {"loc_id": 4306, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 3, "x": 3400.3, "z": -2175.3, "px": 2628.3, "py": 1676.7}, {"loc_id": 4307, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5049.3, "z": 3338.7, "px": 2909.7, "py": 2617.8}, {"loc_id": 4307, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 3, "x": 5049.3, "z": 3338.7, "px": 2909.7, "py": 2617.8}, {"loc_id": 4308, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5503.2, "z": -2502.2, "px": 2987.2, "py": 1621.0}, {"loc_id": 4309, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3079.9, "z": 4483.3, "px": 1522.4, "py": 2813.1}, {"loc_id": 4309, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 3, "x": -3079.9, "z": 4483.3, "px": 1522.4, "py": 2813.1}, {"loc_id": 4309, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -3079.9, "z": 4483.3, "px": 1522.4, "py": 2813.1}, {"loc_id": 4310, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1786.0, "z": 4667.8, "px": 1743.2, "py": 2844.6}, {"loc_id": 4310, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -1786.0, "z": 4667.8, "px": 1743.2, "py": 2844.6}, {"loc_id": 4310, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -1786.0, "z": 4667.8, "px": 1743.2, "py": 2844.6}, {"loc_id": 4311, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2953.2, "z": -2112.1, "px": 2552.0, "py": 1687.5}, {"loc_id": 4312, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2168.5, "z": -1334.2, "px": 2418.1, "py": 1820.3}, {"loc_id": 4313, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 968.2, "z": 5495.6, "px": 2213.2, "py": 2985.9}, {"loc_id": 4313, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 968.2, "z": 5495.6, "px": 2213.2, "py": 2985.9}, {"loc_id": 4314, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6971.4, "z": 2491.2, "px": 858.2, "py": 2473.2}, {"loc_id": 4314, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": -6971.4, "z": 2491.2, "px": 858.2, "py": 2473.2}, {"loc_id": 4314, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 3, "x": -6971.4, "z": 2491.2, "px": 858.2, "py": 2473.2}, {"loc_id": 4315, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7231.3, "z": 1270.3, "px": 3282.1, "py": 2264.8}, {"loc_id": 4316, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7689.0, "z": -3067.6, "px": 3360.3, "py": 1524.5}, {"loc_id": 4317, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2230.8, "z": 1097.7, "px": 2428.7, "py": 2235.3}, {"loc_id": 4318, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6719.5, "z": -4808.2, "px": 901.2, "py": 1227.4}, {"loc_id": 4318, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -6719.5, "z": -4808.2, "px": 901.2, "py": 1227.4}, {"loc_id": 4319, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2298.7, "z": -522.1, "px": 2440.3, "py": 1958.9}, {"loc_id": 4320, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1529.8, "z": -6332.0, "px": 2309.1, "py": 967.3}, {"loc_id": 4320, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 1529.8, "z": -6332.0, "px": 2309.1, "py": 967.3}, {"loc_id": 4321, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9207.0, "z": 3143.0, "px": 476.7, "py": 2584.4}, {"loc_id": 4322, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1535.3, "z": -1858.3, "px": 1786.0, "py": 1730.9}, {"loc_id": 4322, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -1535.3, "z": -1858.3, "px": 1786.0, "py": 1730.9}, {"loc_id": 4323, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5815.7, "z": 4610.4, "px": 1055.5, "py": 2834.8}, {"loc_id": 4323, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -5815.7, "z": 4610.4, "px": 1055.5, "py": 2834.8}, {"loc_id": 4323, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 3, "x": -5815.7, "z": 4610.4, "px": 1055.5, "py": 2834.8}, {"loc_id": 4324, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3912.6, "z": -507.5, "px": 2715.8, "py": 1961.4}, {"loc_id": 4324, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 3912.6, "z": -507.5, "px": 2715.8, "py": 1961.4}, {"loc_id": 4325, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8960.4, "z": 3145.3, "px": 518.8, "py": 2584.8}, {"loc_id": 4325, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8960.4, "z": 3145.3, "px": 518.8, "py": 2584.8}, {"loc_id": 4326, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 710.8, "z": 5309.7, "px": 2169.3, "py": 2954.2}, {"loc_id": 4326, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 710.8, "z": 5309.7, "px": 2169.3, "py": 2954.2}, {"loc_id": 4326, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": 710.8, "z": 5309.7, "px": 2169.3, "py": 2954.2}, {"loc_id": 4327, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 959.4, "z": 5365.3, "px": 2211.7, "py": 2963.7}, {"loc_id": 4327, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 959.4, "z": 5365.3, "px": 2211.7, "py": 2963.7}, {"loc_id": 4327, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": 959.4, "z": 5365.3, "px": 2211.7, "py": 2963.7}, {"loc_id": 4328, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3191.1, "z": 6518.2, "px": 1503.4, "py": 3160.4}, {"loc_id": 4328, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -3191.1, "z": 6518.2, "px": 1503.4, "py": 3160.4}, {"loc_id": 4329, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7222.2, "z": -4105.2, "px": 3280.6, "py": 1347.4}, {"loc_id": 4330, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7228.8, "z": -1924.0, "px": 814.3, "py": 1719.6}, {"loc_id": 4331, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7416.6, "z": 4353.4, "px": 782.2, "py": 2791.0}, {"loc_id": 4332, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9217.9, "z": -2808.8, "px": 474.8, "py": 1568.6}, {"loc_id": 4333, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7349.3, "z": -1663.5, "px": 793.7, "py": 1764.1}, {"loc_id": 4334, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4345.2, "z": -6326.3, "px": 1306.4, "py": 968.3}, {"loc_id": 4335, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2042.7, "z": -5630.1, "px": 1699.4, "py": 1087.1}, {"loc_id": 4335, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -2042.7, "z": -5630.1, "px": 1699.4, "py": 1087.1}, {"loc_id": 4335, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": -2042.7, "z": -5630.1, "px": 1699.4, "py": 1087.1}, {"loc_id": 4336, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2820.0, "z": -4873.7, "px": 2529.3, "py": 1216.2}, {"loc_id": 4337, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8387.1, "z": -1974.8, "px": 616.6, "py": 1711.0}, {"loc_id": 4337, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -8387.1, "z": -1974.8, "px": 616.6, "py": 1711.0}, {"loc_id": 4337, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -8387.1, "z": -1974.8, "px": 616.6, "py": 1711.0}, {"loc_id": 4338, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1467.5, "z": -1670.1, "px": 1797.5, "py": 1763.0}, {"loc_id": 4339, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 566.2, "z": 5367.6, "px": 2144.6, "py": 2964.1}, {"loc_id": 4340, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5185.9, "z": 330.5, "px": 1162.9, "py": 2104.4}, {"loc_id": 4340, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5185.9, "z": 330.5, "px": 1162.9, "py": 2104.4}, {"loc_id": 4341, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3324.6, "z": -2746.9, "px": 2615.4, "py": 1579.2}, {"loc_id": 4341, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 3324.6, "z": -2746.9, "px": 2615.4, "py": 1579.2}, {"loc_id": 4342, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8323.5, "z": -1738.5, "px": 627.5, "py": 1751.3}, {"loc_id": 4342, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -8323.5, "z": -1738.5, "px": 627.5, "py": 1751.3}, {"loc_id": 4343, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3840.5, "z": 1278.9, "px": 2703.4, "py": 2266.3}, {"loc_id": 4344, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9541.9, "z": -313.4, "px": 419.5, "py": 1994.5}, {"loc_id": 4344, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -9541.9, "z": -313.4, "px": 419.5, "py": 1994.5}, {"loc_id": 4345, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2618.7, "z": -3525.7, "px": 2494.9, "py": 1446.3}, {"loc_id": 4345, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 2618.7, "z": -3525.7, "px": 2494.9, "py": 1446.3}, {"loc_id": 4346, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5045.5, "z": 2760.5, "px": 2909.1, "py": 2519.1}, {"loc_id": 4347, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2690.0, "z": -4345.6, "px": 2507.1, "py": 1306.4}, {"loc_id": 4347, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 2690.0, "z": -4345.6, "px": 2507.1, "py": 1306.4}, {"loc_id": 4347, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 2690.0, "z": -4345.6, "px": 2507.1, "py": 1306.4}, {"loc_id": 4348, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7751.4, "z": -2879.9, "px": 3370.9, "py": 1556.5}, {"loc_id": 4348, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 7751.4, "z": -2879.9, "px": 3370.9, "py": 1556.5}, {"loc_id": 4349, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3638.2, "z": 3256.7, "px": 2668.9, "py": 2603.8}, {"loc_id": 4349, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 3638.2, "z": 3256.7, "px": 2668.9, "py": 2603.8}, {"loc_id": 4350, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5947.4, "z": 1598.8, "px": 1033.0, "py": 2320.9}, {"loc_id": 4350, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": -5947.4, "z": 1598.8, "px": 1033.0, "py": 2320.9}, {"loc_id": 4351, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6072.7, "z": 1407.4, "px": 1011.6, "py": 2288.2}, {"loc_id": 4351, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -6072.7, "z": 1407.4, "px": 1011.6, "py": 2288.2}, {"loc_id": 4351, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": -6072.7, "z": 1407.4, "px": 1011.6, "py": 2288.2}, {"loc_id": 4352, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2186.2, "z": 3782.1, "px": 2421.1, "py": 2693.5}, {"loc_id": 4352, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": 2186.2, "z": 3782.1, "px": 2421.1, "py": 2693.5}, {"loc_id": 4353, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3525.6, "z": 6778.0, "px": 1446.3, "py": 3204.8}, {"loc_id": 4353, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -3525.6, "z": 6778.0, "px": 1446.3, "py": 3204.8}, {"loc_id": 4354, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -253.6, "z": -4213.8, "px": 2004.7, "py": 1328.8}, {"loc_id": 4354, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": -253.6, "z": -4213.8, "px": 2004.7, "py": 1328.8}, {"loc_id": 4355, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2367.4, "z": 1284.3, "px": 2452.0, "py": 2267.2}, {"loc_id": 4356, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4296.6, "z": 6795.0, "px": 2781.3, "py": 3207.7}, {"loc_id": 4356, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 4296.6, "z": 6795.0, "px": 2781.3, "py": 3207.7}, {"loc_id": 4356, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": 4296.6, "z": 6795.0, "px": 2781.3, "py": 3207.7}, {"loc_id": 4357, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7558.7, "z": -2818.9, "px": 3338.0, "py": 1566.9}, {"loc_id": 4357, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 7558.7, "z": -2818.9, "px": 3338.0, "py": 1566.9}, {"loc_id": 4358, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8125.6, "z": -196.7, "px": 3434.8, "py": 2014.4}, {"loc_id": 4358, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 8125.6, "z": -196.7, "px": 3434.8, "py": 2014.4}, {"loc_id": 4358, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": 8125.6, "z": -196.7, "px": 3434.8, "py": 2014.4}, {"loc_id": 4359, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -568.3, "z": 512.2, "px": 1951.0, "py": 2135.4}, {"loc_id": 4359, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": -568.3, "z": 512.2, "px": 1951.0, "py": 2135.4}, {"loc_id": 4360, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3975.9, "z": -574.4, "px": 1369.4, "py": 1950.0}, {"loc_id": 4361, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6843.9, "z": 501.8, "px": 880.0, "py": 2133.6}, {"loc_id": 4362, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3191.6, "z": -2309.6, "px": 2592.7, "py": 1653.8}, {"loc_id": 4362, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 3191.6, "z": -2309.6, "px": 2592.7, "py": 1653.8}, {"loc_id": 4362, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": 3191.6, "z": -2309.6, "px": 2592.7, "py": 1653.8}, {"loc_id": 4363, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8010.6, "z": 188.7, "px": 3415.1, "py": 2080.2}, {"loc_id": 4363, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 8010.6, "z": 188.7, "px": 3415.1, "py": 2080.2}, {"loc_id": 4364, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6595.0, "z": 5437.6, "px": 922.5, "py": 2976.0}, {"loc_id": 4365, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1276.2, "z": 5630.3, "px": 2265.8, "py": 3008.9}, {"loc_id": 4366, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1930.9, "z": 1147.1, "px": 2377.5, "py": 2243.8}, {"loc_id": 4367, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1032.8, "z": 377.8, "px": 1871.7, "py": 2112.5}, {"loc_id": 4367, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -1032.8, "z": 377.8, "px": 1871.7, "py": 2112.5}, {"loc_id": 4368, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9275.3, "z": 3326.7, "px": 465.0, "py": 2615.8}, {"loc_id": 4368, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -9275.3, "z": 3326.7, "px": 465.0, "py": 2615.8}, {"loc_id": 4368, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": -9275.3, "z": 3326.7, "px": 465.0, "py": 2615.8}, {"loc_id": 4368, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": -9275.3, "z": 3326.7, "px": 465.0, "py": 2615.8}, {"loc_id": 4369, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2044.7, "z": -1077.5, "px": 2397.0, "py": 1864.1}, {"loc_id": 4369, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 3, "x": 2044.7, "z": -1077.5, "px": 2397.0, "py": 1864.1}, {"loc_id": 4370, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3528.1, "z": 3652.7, "px": 2650.1, "py": 2671.4}, {"loc_id": 4370, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": 3528.1, "z": 3652.7, "px": 2650.1, "py": 2671.4}, {"loc_id": 4370, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 3528.1, "z": 3652.7, "px": 2650.1, "py": 2671.4}, {"loc_id": 4371, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2562.5, "z": -4486.3, "px": 2485.3, "py": 1282.3}, {"loc_id": 4372, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5112.1, "z": 3129.1, "px": 2920.5, "py": 2582.0}, {"loc_id": 4373, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7289.3, "z": -3133.3, "px": 3292.0, "py": 1513.3}, {"loc_id": 4373, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 7289.3, "z": -3133.3, "px": 3292.0, "py": 1513.3}, {"loc_id": 4373, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 7289.3, "z": -3133.3, "px": 3292.0, "py": 1513.3}, {"loc_id": 4374, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 506.0, "z": 4674.8, "px": 2134.4, "py": 2845.8}, {"loc_id": 4375, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8056.8, "z": 2757.5, "px": 673.0, "py": 2518.6}, {"loc_id": 4375, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -8056.8, "z": 2757.5, "px": 673.0, "py": 2518.6}, {"loc_id": 4375, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -8056.8, "z": 2757.5, "px": 673.0, "py": 2518.6}, {"loc_id": 4376, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2488.8, "z": -1352.3, "px": 2472.8, "py": 1817.2}, {"loc_id": 4377, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4170.2, "z": -1086.8, "px": 2759.7, "py": 1862.5}, {"loc_id": 4378, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1334.3, "z": -1916.0, "px": 1820.3, "py": 1721.0}, {"loc_id": 4379, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2684.9, "z": -3701.4, "px": 2506.2, "py": 1416.3}, {"loc_id": 4379, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 2684.9, "z": -3701.4, "px": 2506.2, "py": 1416.3}, {"loc_id": 4379, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": 2684.9, "z": -3701.4, "px": 2506.2, "py": 1416.3}, {"loc_id": 4380, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5123.8, "z": 5194.0, "px": 2922.5, "py": 2934.4}, {"loc_id": 4381, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8694.4, "z": -828.0, "px": 564.2, "py": 1906.7}, {"loc_id": 4381, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -8694.4, "z": -828.0, "px": 564.2, "py": 1906.7}, {"loc_id": 4382, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7489.9, "z": -4736.3, "px": 769.7, "py": 1239.7}, {"loc_id": 4382, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -7489.9, "z": -4736.3, "px": 769.7, "py": 1239.7}, {"loc_id": 4383, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1781.4, "z": -4545.8, "px": 1744.0, "py": 1272.2}, {"loc_id": 4384, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1482.1, "z": 6272.2, "px": 2300.9, "py": 3118.5}, {"loc_id": 4385, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2042.6, "z": 3914.5, "px": 2396.6, "py": 2716.1}, {"loc_id": 4386, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8323.7, "z": 195.3, "px": 3468.6, "py": 2081.3}, {"loc_id": 4386, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 8323.7, "z": 195.3, "px": 3468.6, "py": 2081.3}, {"loc_id": 4387, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5190.4, "z": 5056.9, "px": 2933.8, "py": 2911.0}, {"loc_id": 4388, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1660.3, "z": -4422.1, "px": 2331.4, "py": 1293.3}, {"loc_id": 4388, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 1660.3, "z": -4422.1, "px": 2331.4, "py": 1293.3}, {"loc_id": 4389, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7416.7, "z": 1096.8, "px": 3313.8, "py": 2235.2}, {"loc_id": 4389, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 3, "x": 7416.7, "z": 1096.8, "px": 3313.8, "py": 2235.2}, {"loc_id": 4390, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2373.4, "z": 3769.6, "px": 2453.1, "py": 2691.3}, {"loc_id": 4391, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6849.0, "z": 3786.3, "px": 879.1, "py": 2694.2}, {"loc_id": 4391, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -6849.0, "z": 3786.3, "px": 879.1, "py": 2694.2}, {"loc_id": 4392, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2299.3, "z": 5187.5, "px": 2440.4, "py": 2933.3}, {"loc_id": 4393, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7365.5, "z": -1859.4, "px": 791.0, "py": 1730.7}, {"loc_id": 4393, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -7365.5, "z": -1859.4, "px": 791.0, "py": 1730.7}, {"loc_id": 4393, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 3, "x": -7365.5, "z": -1859.4, "px": 791.0, "py": 1730.7}, {"loc_id": 4394, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8376.6, "z": 636.4, "px": 618.4, "py": 2156.6}, {"loc_id": 4394, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -8376.6, "z": 636.4, "px": 618.4, "py": 2156.6}, {"loc_id": 4394, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 3, "x": -8376.6, "z": 636.4, "px": 618.4, "py": 2156.6}, {"loc_id": 4395, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 506.6, "z": 5049.8, "px": 2134.5, "py": 2909.8}, {"loc_id": 4395, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 506.6, "z": 5049.8, "px": 2134.5, "py": 2909.8}, {"loc_id": 4396, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 889.9, "z": 3450.9, "px": 2199.9, "py": 2637.0}, {"loc_id": 4396, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 889.9, "z": 3450.9, "px": 2199.9, "py": 2637.0}, {"loc_id": 4396, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 3, "x": 889.9, "z": 3450.9, "px": 2199.9, "py": 2637.0}, {"loc_id": 4397, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7352.3, "z": -3330.0, "px": 3302.8, "py": 1479.7}, {"loc_id": 4397, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 3, "x": 7352.3, "z": -3330.0, "px": 3302.8, "py": 1479.7}, {"loc_id": 4398, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5256.1, "z": -2236.2, "px": 2945.0, "py": 1666.4}, {"loc_id": 4398, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": 5256.1, "z": -2236.2, "px": 2945.0, "py": 1666.4}, {"loc_id": 4399, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9589.9, "z": -183.4, "px": 411.3, "py": 2016.7}, {"loc_id": 4399, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": -9589.9, "z": -183.4, "px": 411.3, "py": 2016.7}, {"loc_id": 4400, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3450.0, "z": -2686.0, "px": 2636.8, "py": 1589.6}, {"loc_id": 4400, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 3450.0, "z": -2686.0, "px": 2636.8, "py": 1589.6}, {"loc_id": 4401, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2939.6, "z": -257.2, "px": 2549.7, "py": 2004.1}, {"loc_id": 4401, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 2939.6, "z": -257.2, "px": 2549.7, "py": 2004.1}, {"loc_id": 4402, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1781.0, "z": 7356.1, "px": 2352.0, "py": 3303.4}, {"loc_id": 4403, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5239.2, "z": 764.2, "px": 1153.8, "py": 2178.4}, {"loc_id": 4404, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1985.8, "z": -6334.0, "px": 2386.9, "py": 967.0}, {"loc_id": 4404, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1985.8, "z": -6334.0, "px": 2386.9, "py": 967.0}, {"loc_id": 4405, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6005.8, "z": 4800.9, "px": 1023.0, "py": 2867.4}, {"loc_id": 4406, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6645.1, "z": 3574.4, "px": 913.9, "py": 2658.0}, {"loc_id": 4406, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 3, "x": -6645.1, "z": 3574.4, "px": 913.9, "py": 2658.0}, {"loc_id": 4407, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 9546.9, "z": 63.9, "px": 3677.3, "py": 2058.9}, {"loc_id": 4407, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 3, "x": 9546.9, "z": 63.9, "px": 3677.3, "py": 2058.9}, {"loc_id": 4408, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -68.7, "z": -4600.0, "px": 2036.3, "py": 1262.9}, {"loc_id": 4409, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4025.2, "z": -322.6, "px": 1361.0, "py": 1992.9}, {"loc_id": 4410, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3274.8, "z": -4.6, "px": 2606.9, "py": 2047.2}, {"loc_id": 4411, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8574.1, "z": -3708.9, "px": 3511.3, "py": 1415.0}, {"loc_id": 4411, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 8574.1, "z": -3708.9, "px": 3511.3, "py": 1415.0}, {"loc_id": 4412, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1215.7, "z": -1221.1, "px": 1840.5, "py": 1839.6}, {"loc_id": 4413, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1670.7, "z": -4227.6, "px": 1762.9, "py": 1326.5}, {"loc_id": 4414, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1983.0, "z": -831.7, "px": 1709.6, "py": 1906.1}, {"loc_id": 4414, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -1983.0, "z": -831.7, "px": 1709.6, "py": 1906.1}, {"loc_id": 4414, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": -1983.0, "z": -831.7, "px": 1709.6, "py": 1906.1}, {"loc_id": 4415, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5956.5, "z": -70.0, "px": 1031.4, "py": 2036.1}, {"loc_id": 4415, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -5956.5, "z": -70.0, "px": 1031.4, "py": 2036.1}, {"loc_id": 4416, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3705.2, "z": 7113.6, "px": 1415.6, "py": 3262.1}, {"loc_id": 4417, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7298.0, "z": -4547.5, "px": 3293.5, "py": 1271.9}, {"loc_id": 4418, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3208.8, "z": -2630.5, "px": 2595.6, "py": 1599.1}, {"loc_id": 4418, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 3208.8, "z": -2630.5, "px": 2595.6, "py": 1599.1}, {"loc_id": 4418, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 3208.8, "z": -2630.5, "px": 2595.6, "py": 1599.1}, {"loc_id": 4418, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": 3208.8, "z": -2630.5, "px": 2595.6, "py": 1599.1}, {"loc_id": 4419, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4991.3, "z": -2122.8, "px": 2899.8, "py": 1685.7}, {"loc_id": 4419, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 4991.3, "z": -2122.8, "px": 2899.8, "py": 1685.7}, {"loc_id": 4419, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 4991.3, "z": -2122.8, "px": 2899.8, "py": 1685.7}, {"loc_id": 4420, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2427.3, "z": -1475.0, "px": 2462.3, "py": 1796.3}, {"loc_id": 4421, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5510.4, "z": -969.9, "px": 2988.4, "py": 1882.5}, {"loc_id": 4422, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1219.5, "z": -1606.9, "px": 1839.9, "py": 1773.8}, {"loc_id": 4422, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -1219.5, "z": -1606.9, "px": 1839.9, "py": 1773.8}, {"loc_id": 4423, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5955.5, "z": 4667.7, "px": 1031.6, "py": 2844.6}, {"loc_id": 4424, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7353.4, "z": -4420.3, "px": 3303.0, "py": 1293.6}, {"loc_id": 4425, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2552.7, "z": 258.9, "px": 2483.7, "py": 2092.2}, {"loc_id": 4425, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 2552.7, "z": 258.9, "px": 2483.7, "py": 2092.2}, {"loc_id": 4426, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8777.6, "z": -1335.1, "px": 3546.0, "py": 1820.1}, {"loc_id": 4427, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1735.8, "z": -1148.4, "px": 2344.2, "py": 1852.0}, {"loc_id": 4428, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -59.6, "z": -1013.7, "px": 2037.8, "py": 1875.0}, {"loc_id": 4428, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": -59.6, "z": -1013.7, "px": 2037.8, "py": 1875.0}, {"loc_id": 4429, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5067.0, "z": 377.9, "px": 2912.8, "py": 2112.5}, {"loc_id": 4429, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 5067.0, "z": 377.9, "px": 2912.8, "py": 2112.5}, {"loc_id": 4430, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4101.4, "z": -2312.7, "px": 1348.0, "py": 1653.3}, {"loc_id": 4430, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": -4101.4, "z": -2312.7, "px": 1348.0, "py": 1653.3}, {"loc_id": 4431, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5367.0, "z": 522.6, "px": 2964.0, "py": 2137.2}, {"loc_id": 4431, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 5367.0, "z": 522.6, "px": 2964.0, "py": 2137.2}, {"loc_id": 4432, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -890.1, "z": -5825.4, "px": 1896.1, "py": 1053.8}, {"loc_id": 4432, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -890.1, "z": -5825.4, "px": 1896.1, "py": 1053.8}, {"loc_id": 4433, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 6602.0, "z": 4795.5, "px": 3174.7, "py": 2866.4}, {"loc_id": 4434, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9078.9, "z": 3462.7, "px": 498.5, "py": 2639.0}, {"loc_id": 4434, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -9078.9, "z": 3462.7, "px": 498.5, "py": 2639.0}, {"loc_id": 4435, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4406.6, "z": 6657.9, "px": 2800.1, "py": 3184.3}, {"loc_id": 4435, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": 4406.6, "z": 6657.9, "px": 2800.1, "py": 3184.3}, {"loc_id": 4436, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1152.8, "z": 5443.9, "px": 2244.7, "py": 2977.1}, {"loc_id": 4436, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 1152.8, "z": 5443.9, "px": 2244.7, "py": 2977.1}, {"loc_id": 4436, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": 1152.8, "z": 5443.9, "px": 2244.7, "py": 2977.1}, {"loc_id": 4437, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 6726.1, "z": 4922.7, "px": 3195.9, "py": 2888.1}, {"loc_id": 4438, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7037.2, "z": 246.7, "px": 847.0, "py": 2090.1}, {"loc_id": 4439, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5825.4, "z": -4736.0, "px": 3042.2, "py": 1239.7}, {"loc_id": 4439, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 5825.4, "z": -4736.0, "px": 3042.2, "py": 1239.7}, {"loc_id": 4440, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4425.2, "z": 6792.0, "px": 2803.2, "py": 3207.2}, {"loc_id": 4441, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -192.8, "z": 572.5, "px": 2015.1, "py": 2145.7}, {"loc_id": 4441, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": -192.8, "z": 572.5, "px": 2015.1, "py": 2145.7}, {"loc_id": 4442, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2816.5, "z": -136.0, "px": 2528.7, "py": 2024.8}, {"loc_id": 4442, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 2816.5, "z": -136.0, "px": 2528.7, "py": 2024.8}, {"loc_id": 4443, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1025.3, "z": -5563.5, "px": 2223.0, "py": 1098.5}, {"loc_id": 4443, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 3, "x": 1025.3, "z": -5563.5, "px": 2223.0, "py": 1098.5}, {"loc_id": 4444, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9150.6, "z": 2822.4, "px": 486.3, "py": 2529.7}, {"loc_id": 4444, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9150.6, "z": 2822.4, "px": 486.3, "py": 2529.7}, {"loc_id": 4445, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1988.0, "z": 1414.1, "px": 2387.3, "py": 2289.3}, {"loc_id": 4446, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2169.4, "z": 3962.5, "px": 2418.2, "py": 2724.3}, {"loc_id": 4446, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 2169.4, "z": 3962.5, "px": 2418.2, "py": 2724.3}, {"loc_id": 4447, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 6773.8, "z": 4795.9, "px": 3204.1, "py": 2866.5}, {"loc_id": 4447, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 6773.8, "z": 4795.9, "px": 3204.1, "py": 2866.5}, {"loc_id": 4448, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6717.4, "z": 5561.0, "px": 901.6, "py": 2997.1}, {"loc_id": 4448, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -6717.4, "z": 5561.0, "px": 901.6, "py": 2997.1}, {"loc_id": 4448, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 3, "x": -6717.4, "z": 5561.0, "px": 901.6, "py": 2997.1}, {"loc_id": 4449, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9086.4, "z": 3208.4, "px": 497.3, "py": 2595.6}, {"loc_id": 4450, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8954.4, "z": 3016.4, "px": 519.8, "py": 2562.8}, {"loc_id": 4451, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3511.8, "z": 4799.5, "px": 1448.7, "py": 2867.1}, {"loc_id": 4452, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5703.6, "z": 4931.1, "px": 1074.6, "py": 2889.6}, {"loc_id": 4453, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3274.2, "z": 4359.9, "px": 1489.2, "py": 2792.1}, {"loc_id": 4453, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -3274.2, "z": 4359.9, "px": 1489.2, "py": 2792.1}, {"loc_id": 4454, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 9791.7, "z": -1482.1, "px": 3719.1, "py": 1795.1}, {"loc_id": 4454, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 9791.7, "z": -1482.1, "px": 3719.1, "py": 1795.1}, {"loc_id": 4454, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 3, "x": 9791.7, "z": -1482.1, "px": 3719.1, "py": 1795.1}, {"loc_id": 4455, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 9526.9, "z": 1407.6, "px": 3673.9, "py": 2288.2}, {"loc_id": 4456, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7751.7, "z": -2687.8, "px": 3371.0, "py": 1589.3}, {"loc_id": 4456, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 7751.7, "z": -2687.8, "px": 3371.0, "py": 1589.3}, {"loc_id": 4457, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4149.9, "z": -198.9, "px": 1339.8, "py": 2014.1}, {"loc_id": 4458, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8120.2, "z": 2564.7, "px": 662.2, "py": 2485.7}, {"loc_id": 4458, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": -8120.2, "z": 2564.7, "px": 662.2, "py": 2485.7}, {"loc_id": 4459, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 584.4, "z": 4475.8, "px": 2147.7, "py": 2811.9}, {"loc_id": 4459, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 584.4, "z": 4475.8, "px": 2147.7, "py": 2811.9}, {"loc_id": 4460, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7484.5, "z": -4990.2, "px": 770.6, "py": 1196.3}, {"loc_id": 4461, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8072.0, "z": -2489.1, "px": 3425.6, "py": 1623.2}, {"loc_id": 4461, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8072.0, "z": -2489.1, "px": 3425.6, "py": 1623.2}, {"loc_id": 4462, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2112.5, "z": -4356.6, "px": 2408.5, "py": 1304.5}, {"loc_id": 4462, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 2112.5, "z": -4356.6, "px": 2408.5, "py": 1304.5}, {"loc_id": 4463, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 648.8, "z": 309.0, "px": 2158.7, "py": 2100.7}, {"loc_id": 4463, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 648.8, "z": 309.0, "px": 2158.7, "py": 2100.7}, {"loc_id": 4463, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": 648.8, "z": 309.0, "px": 2158.7, "py": 2100.7}, {"loc_id": 4464, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3768.6, "z": -386.4, "px": 2691.2, "py": 1982.1}, {"loc_id": 4464, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 3, "x": 3768.6, "z": -386.4, "px": 2691.2, "py": 1982.1}, {"loc_id": 4465, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -584.0, "z": -6463.7, "px": 1948.3, "py": 944.9}, {"loc_id": 4465, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": -584.0, "z": -6463.7, "px": 1948.3, "py": 944.9}, {"loc_id": 4465, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": -584.0, "z": -6463.7, "px": 1948.3, "py": 944.9}, {"loc_id": 4466, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1162.4, "z": -2230.1, "px": 2246.4, "py": 1667.4}, {"loc_id": 4467, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3511.5, "z": 3513.7, "px": 2647.3, "py": 2647.7}, {"loc_id": 4467, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 3511.5, "z": 3513.7, "px": 2647.3, "py": 2647.7}, {"loc_id": 4467, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": 3511.5, "z": 3513.7, "px": 2647.3, "py": 2647.7}, {"loc_id": 4468, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3901.0, "z": 1013.6, "px": 2713.8, "py": 2221.0}, {"loc_id": 4469, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4477.9, "z": -5048.3, "px": 2812.2, "py": 1186.4}, {"loc_id": 4469, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": 4477.9, "z": -5048.3, "px": 2812.2, "py": 1186.4}, {"loc_id": 4470, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1216.5, "z": 2569.6, "px": 1840.4, "py": 2486.5}, {"loc_id": 4471, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 6596.3, "z": 3146.6, "px": 3173.8, "py": 2585.0}, {"loc_id": 4471, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 6596.3, "z": 3146.6, "px": 3173.8, "py": 2585.0}, {"loc_id": 4471, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 6596.3, "z": 3146.6, "px": 3173.8, "py": 2585.0}, {"loc_id": 4472, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 378.2, "z": 5310.1, "px": 2112.5, "py": 2954.3}, {"loc_id": 4473, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1352.6, "z": -1536.9, "px": 1817.2, "py": 1785.7}, {"loc_id": 4474, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6838.8, "z": 5306.6, "px": 880.8, "py": 2953.7}, {"loc_id": 4475, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1734.3, "z": -4545.6, "px": 2344.0, "py": 1272.2}, {"loc_id": 4475, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1734.3, "z": -4545.6, "px": 2344.0, "py": 1272.2}, {"loc_id": 4475, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 1734.3, "z": -4545.6, "px": 2344.0, "py": 1272.2}, {"loc_id": 4475, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 1734.3, "z": -4545.6, "px": 2344.0, "py": 1272.2}, {"loc_id": 4476, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3898.5, "z": -138.6, "px": 1382.7, "py": 2024.3}, {"loc_id": 4477, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2108.3, "z": 1209.2, "px": 2407.8, "py": 2254.4}, {"loc_id": 4477, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 2108.3, "z": 1209.2, "px": 2407.8, "py": 2254.4}, {"loc_id": 4477, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 3, "x": 2108.3, "z": 1209.2, "px": 2407.8, "py": 2254.4}, {"loc_id": 4478, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2374.0, "z": -6154.7, "px": 1642.8, "py": 997.6}, {"loc_id": 4478, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -2374.0, "z": -6154.7, "px": 1642.8, "py": 997.6}, {"loc_id": 4479, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1589.2, "z": -5703.7, "px": 1776.8, "py": 1074.6}, {"loc_id": 4480, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -124.8, "z": -4743.5, "px": 2026.7, "py": 1238.4}, {"loc_id": 4481, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1911.4, "z": -4671.1, "px": 1721.8, "py": 1250.8}, {"loc_id": 4482, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2112.1, "z": 903.8, "px": 2408.5, "py": 2202.2}, {"loc_id": 4482, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": 2112.1, "z": 903.8, "px": 2408.5, "py": 2202.2}, {"loc_id": 4483, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4800.9, "z": 5752.8, "px": 1228.6, "py": 3029.8}, {"loc_id": 4483, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -4800.9, "z": 5752.8, "px": 1228.6, "py": 3029.8}, {"loc_id": 4483, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": -4800.9, "z": 5752.8, "px": 1228.6, "py": 3029.8}, {"loc_id": 4484, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 9404.2, "z": 56.3, "px": 3653.0, "py": 2057.6}, {"loc_id": 4484, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 3, "x": 9404.2, "z": 56.3, "px": 3653.0, "py": 2057.6}, {"loc_id": 4485, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3648.4, "z": 197.1, "px": 2670.7, "py": 2081.6}, {"loc_id": 4486, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3395.3, "z": -2438.4, "px": 2627.5, "py": 1631.8}, {"loc_id": 4486, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 3, "x": 3395.3, "z": -2438.4, "px": 2627.5, "py": 1631.8}, {"loc_id": 4486, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 3, "x": 3395.3, "z": -2438.4, "px": 2627.5, "py": 1631.8}, {"loc_id": 4487, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1917.8, "z": 7177.5, "px": 2375.3, "py": 3273.0}, {"loc_id": 4487, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 3, "x": 1917.8, "z": 7177.5, "px": 2375.3, "py": 3273.0}, {"loc_id": 4488, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5891.9, "z": 4474.7, "px": 1042.4, "py": 2811.7}, {"loc_id": 4489, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8070.1, "z": 59.3, "px": 3425.3, "py": 2058.1}, {"loc_id": 4490, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5060.1, "z": 761.5, "px": 1184.4, "py": 2178.0}, {"loc_id": 4490, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": -5060.1, "z": 761.5, "px": 1184.4, "py": 2178.0}, {"loc_id": 4491, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2042.1, "z": 510.0, "px": 1699.5, "py": 2135.0}, {"loc_id": 4492, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 831.2, "z": 5252.1, "px": 2189.9, "py": 2944.4}, {"loc_id": 4492, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 831.2, "z": 5252.1, "px": 2189.9, "py": 2944.4}, {"loc_id": 4492, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 3, "x": 831.2, "z": 5252.1, "px": 2189.9, "py": 2944.4}, {"loc_id": 4493, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3957.2, "z": -2552.7, "px": 1372.6, "py": 1612.3}, {"loc_id": 4494, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4989.8, "z": 5566.0, "px": 1196.4, "py": 2997.9}, {"loc_id": 4494, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 3, "x": -4989.8, "z": 5566.0, "px": 1196.4, "py": 2997.9}, {"loc_id": 4495, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8956.0, "z": 2882.7, "px": 519.5, "py": 2540.0}, {"loc_id": 4496, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -886.5, "z": 518.3, "px": 1896.7, "py": 2136.5}, {"loc_id": 4497, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4920.5, "z": 198.6, "px": 2887.8, "py": 2081.9}, {"loc_id": 4497, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 4920.5, "z": 198.6, "px": 2887.8, "py": 2081.9}, {"loc_id": 4498, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1098.3, "z": -5692.8, "px": 2235.4, "py": 1076.4}, {"loc_id": 4498, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1098.3, "z": -5692.8, "px": 2235.4, "py": 1076.4}, {"loc_id": 4499, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 450.4, "z": 440.0, "px": 2124.9, "py": 2123.1}, {"loc_id": 4500, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3201.7, "z": -2365.6, "px": 1501.6, "py": 1644.3}, {"loc_id": 4501, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1659.5, "z": -898.7, "px": 2331.2, "py": 1894.6}, {"loc_id": 4501, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 1659.5, "z": -898.7, "px": 2331.2, "py": 1894.6}, {"loc_id": 4502, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1737.4, "z": -1014.3, "px": 2344.5, "py": 1874.9}, {"loc_id": 4502, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 1737.4, "z": -1014.3, "px": 2344.5, "py": 1874.9}, {"loc_id": 4503, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8635.6, "z": -1917.6, "px": 3521.8, "py": 1720.7}, {"loc_id": 4503, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 3, "x": 8635.6, "z": -1917.6, "px": 3521.8, "py": 1720.7}, {"loc_id": 4504, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2173.2, "z": -965.9, "px": 2418.9, "py": 1883.2}, {"loc_id": 4505, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9609.6, "z": 699.3, "px": 408.0, "py": 2167.3}, {"loc_id": 4506, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5060.4, "z": -2244.4, "px": 2911.6, "py": 1665.0}, {"loc_id": 4507, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8121.8, "z": -3975.7, "px": 3434.1, "py": 1369.5}, {"loc_id": 4507, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 3, "x": 8121.8, "z": -3975.7, "px": 3434.1, "py": 1369.5}, {"loc_id": 5458, "loc_name": "StoneTowerRuins04", "item": "SpawnOnce: Draugr", "count": 3, "x": 4739.1, "z": -5379.6, "px": 2856.8, "py": 1129.9}, {"loc_id": 5460, "loc_name": "StoneTowerRuins04", "item": "SpawnOnce: Draugr", "count": 3, "x": 2991.8, "z": 685.4, "px": 2558.6, "py": 2165.0}, {"loc_id": 5465, "loc_name": "StoneTowerRuins04", "item": "SpawnOnce: Draugr", "count": 3, "x": -274.0, "z": -1332.4, "px": 2001.2, "py": 1820.6}, {"loc_id": 5467, "loc_name": "StoneTowerRuins04", "item": "SpawnOnce: Draugr", "count": 3, "x": -2680.8, "z": 7410.5, "px": 1590.5, "py": 3312.7}, {"loc_id": 5470, "loc_name": "StoneTowerRuins04", "item": "SpawnOnce: Draugr", "count": 3, "x": -3831.3, "z": 1467.3, "px": 1394.1, "py": 2298.4}, {"loc_id": 5474, "loc_name": "StoneTowerRuins04", "item": "SpawnOnce: Draugr", "count": 3, "x": -200.0, "z": -1134.2, "px": 2013.9, "py": 1854.4}, {"loc_id": 5479, "loc_name": "StoneTowerRuins04", "item": "SpawnOnce: Draugr", "count": 3, "x": 5770.0, "z": 4555.7, "px": 3032.7, "py": 2825.5}, {"loc_id": 5480, "loc_name": "StoneTowerRuins04", "item": "SpawnOnce: Draugr", "count": 3, "x": 1420.2, "z": 6661.7, "px": 2290.4, "py": 3184.9}, {"loc_id": 5484, "loc_name": "StoneTowerRuins04", "item": "SpawnOnce: Draugr", "count": 3, "x": -3842.2, "z": 1589.1, "px": 1392.3, "py": 2319.2}, {"loc_id": 5487, "loc_name": "StoneTowerRuins04", "item": "SpawnOnce: Draugr", "count": 3, "x": 4541.5, "z": -5705.8, "px": 2823.1, "py": 1074.2}, {"loc_id": 5489, "loc_name": "StoneTowerRuins04", "item": "SpawnOnce: Draugr", "count": 3, "x": -2186.6, "z": -429.3, "px": 1674.8, "py": 1974.7}, {"loc_id": 5496, "loc_name": "StoneTowerRuins04", "item": "SpawnOnce: Draugr", "count": 3, "x": 4282.2, "z": -1786.9, "px": 2778.8, "py": 1743.0}, {"loc_id": 5497, "loc_name": "StoneTowerRuins04", "item": "SpawnOnce: Draugr", "count": 3, "x": -6717.2, "z": -2257.6, "px": 901.6, "py": 1662.7}, {"loc_id": 5507, "loc_name": "StoneTowerRuins04", "item": "SpawnOnce: Draugr", "count": 3, "x": -4478.7, "z": -3898.5, "px": 1283.6, "py": 1382.7}, {"loc_id": 5515, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1353.3, "z": 8516.8, "px": 2279.0, "py": 3501.5}, {"loc_id": 5531, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2116.0, "z": -3586.8, "px": 2409.1, "py": 1435.9}, {"loc_id": 5543, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 3, "x": 6337.3, "z": 6792.8, "px": 3129.6, "py": 3207.3}, {"loc_id": 5556, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2821.5, "z": 7364.9, "px": 1566.5, "py": 3304.9}, {"loc_id": 5559, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": 821.8, "z": 4425.4, "px": 2188.3, "py": 2803.3}, {"loc_id": 5562, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": 7190.1, "z": 1270.7, "px": 3275.1, "py": 2264.9}, {"loc_id": 5577, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": -1589.1, "z": 4845.1, "px": 1776.8, "py": 2874.9}, {"loc_id": 5579, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": 7466.1, "z": 3690.7, "px": 3322.2, "py": 2677.9}, {"loc_id": 5583, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": -4405.0, "z": 1730.0, "px": 1296.2, "py": 2343.3}, {"loc_id": 5586, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": -109.7, "z": -4563.7, "px": 2029.3, "py": 1269.1}, {"loc_id": 5587, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": -4915.7, "z": 5390.9, "px": 1209.1, "py": 2968.0}, {"loc_id": 5589, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": 5292.9, "z": 5119.7, "px": 2951.3, "py": 2921.8}, {"loc_id": 5592, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": 1684.1, "z": -6206.7, "px": 2335.4, "py": 988.7}, {"loc_id": 5595, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": 2429.6, "z": -1653.5, "px": 2462.7, "py": 1765.8}, {"loc_id": 5597, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": -430.9, "z": -4226.6, "px": 1974.5, "py": 1326.7}, {"loc_id": 5610, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": 3987.3, "z": -518.6, "px": 2728.5, "py": 1959.5}, {"loc_id": 5613, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": -1385.5, "z": -5563.8, "px": 1811.5, "py": 1098.4}, {"loc_id": 5614, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": -6151.6, "z": 1453.2, "px": 998.1, "py": 2296.0}, {"loc_id": 5615, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": 4495.5, "z": -374.5, "px": 2815.2, "py": 1984.1}, {"loc_id": 5620, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": -7026.5, "z": 2361.4, "px": 848.8, "py": 2451.0}, {"loc_id": 5621, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": -3844.6, "z": -466.9, "px": 1391.9, "py": 1968.3}, {"loc_id": 5622, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": 1173.9, "z": -4934.5, "px": 2248.3, "py": 1205.8}, {"loc_id": 5628, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": -3086.9, "z": 4402.8, "px": 1521.2, "py": 2799.4}, {"loc_id": 5632, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": -7755.2, "z": -2105.9, "px": 724.4, "py": 1688.6}, {"loc_id": 5635, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": 5314.5, "z": -561.1, "px": 2955.0, "py": 1952.2}, {"loc_id": 5637, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 3, "x": -5123.5, "z": 367.7, "px": 1173.6, "py": 2110.8}, {"loc_id": 5639, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4848.3, "z": -2960.7, "px": 1220.6, "py": 1542.7}, {"loc_id": 5641, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8212.3, "z": 2516.2, "px": 646.4, "py": 2477.4}, {"loc_id": 5642, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 894.6, "z": -5161.2, "px": 2200.7, "py": 1167.2}, {"loc_id": 5645, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 6595.5, "z": 4865.4, "px": 3173.6, "py": 2878.4}, {"loc_id": 5646, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5696.8, "z": -818.4, "px": 3020.3, "py": 1908.3}, {"loc_id": 5649, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2761.1, "z": -4912.1, "px": 2519.2, "py": 1209.7}, {"loc_id": 5651, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2249.7, "z": 5313.3, "px": 2431.9, "py": 2954.8}, {"loc_id": 5653, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8016.2, "z": 305.4, "px": 3416.1, "py": 2100.1}, {"loc_id": 5655, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5905.9, "z": 1458.2, "px": 1040.1, "py": 2296.9}, {"loc_id": 5658, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1038.0, "z": 3380.9, "px": 2225.2, "py": 2625.0}, {"loc_id": 5660, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7797.1, "z": -392.0, "px": 3378.7, "py": 1981.1}, {"loc_id": 5661, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1085.5, "z": 5299.2, "px": 2233.3, "py": 2952.4}, {"loc_id": 5662, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2104.7, "z": 1471.3, "px": 2407.2, "py": 2299.1}, {"loc_id": 5664, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4216.0, "z": 1801.5, "px": 1328.5, "py": 2355.5}, {"loc_id": 5665, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7371.8, "z": 1131.1, "px": 3306.1, "py": 2241.0}, {"loc_id": 5670, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5515.8, "z": -6323.7, "px": 1106.6, "py": 968.8}, {"loc_id": 5676, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1494.2, "z": -2444.7, "px": 2303.0, "py": 1630.8}, {"loc_id": 5678, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5696.1, "z": -1842.2, "px": 1075.9, "py": 1733.6}, {"loc_id": 5682, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 317.4, "z": 5108.4, "px": 2102.2, "py": 2919.8}, {"loc_id": 5684, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3563.1, "z": 5381.7, "px": 2656.1, "py": 2966.5}, {"loc_id": 5685, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2181.0, "z": 976.1, "px": 2420.2, "py": 2214.6}, {"loc_id": 5688, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8911.6, "z": 3090.0, "px": 527.1, "py": 2575.4}, {"loc_id": 5690, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1110.5, "z": -5426.9, "px": 2237.5, "py": 1121.8}, {"loc_id": 5691, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1771.6, "z": -969.4, "px": 2350.4, "py": 1882.6}, {"loc_id": 5697, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2826.6, "z": -3843.8, "px": 2530.4, "py": 1392.0}, {"loc_id": 5699, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4649.1, "z": -5116.3, "px": 2841.4, "py": 1174.8}, {"loc_id": 5700, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 716.0, "z": -2623.7, "px": 2170.2, "py": 1600.2}, {"loc_id": 5703, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5675.5, "z": -1032.7, "px": 3016.6, "py": 1871.8}, {"loc_id": 5707, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4024.4, "z": -2436.4, "px": 1361.2, "py": 1632.2}, {"loc_id": 5710, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": -439.6, "z": 570.9, "px": 1973.0, "py": 2145.4}, {"loc_id": 5715, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7091.6, "z": 2322.0, "px": 3258.3, "py": 2444.3}, {"loc_id": 5718, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7574.9, "z": -1814.5, "px": 755.2, "py": 1738.3}, {"loc_id": 5721, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1846.6, "z": -4531.6, "px": 1732.8, "py": 1274.6}, {"loc_id": 5722, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 495.8, "z": 4974.6, "px": 2132.6, "py": 2897.0}, {"loc_id": 5723, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2217.4, "z": 1787.8, "px": 1669.6, "py": 2353.1}, {"loc_id": 5724, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9424.0, "z": 2817.4, "px": 439.6, "py": 2528.8}, {"loc_id": 5726, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 563.2, "z": 7145.6, "px": 2144.1, "py": 3267.5}, {"loc_id": 5727, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5812.3, "z": 1587.6, "px": 3040.0, "py": 2319.0}, {"loc_id": 5728, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2504.4, "z": -1220.9, "px": 2475.4, "py": 1839.6}, {"loc_id": 5730, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9387.6, "z": 3060.5, "px": 445.8, "py": 2570.3}, {"loc_id": 5736, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -6125.9, "z": -41.6, "px": 1002.5, "py": 2040.9}, {"loc_id": 5737, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5740.8, "z": 1654.0, "px": 1068.2, "py": 2330.3}, {"loc_id": 5740, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2174.6, "z": -4437.7, "px": 2419.1, "py": 1290.6}, {"loc_id": 5741, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1547.4, "z": -7662.5, "px": 2312.1, "py": 740.3}, {"loc_id": 5742, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4306.9, "z": 1528.4, "px": 1313.0, "py": 2308.8}, {"loc_id": 5743, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2175.4, "z": 533.5, "px": 1676.7, "py": 2139.1}, {"loc_id": 5744, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7283.2, "z": -4916.0, "px": 805.0, "py": 1209.0}, {"loc_id": 5745, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 76.6, "z": -4273.8, "px": 2061.1, "py": 1318.6}, {"loc_id": 5746, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2047.8, "z": -1233.5, "px": 2397.5, "py": 1837.5}, {"loc_id": 5748, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4533.7, "z": 1551.4, "px": 1274.2, "py": 2312.8}, {"loc_id": 5749, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2482.4, "z": 1652.7, "px": 1624.3, "py": 2330.1}, {"loc_id": 5750, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3508.1, "z": 4404.3, "px": 1449.3, "py": 2799.7}, {"loc_id": 5751, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5264.3, "z": 5645.9, "px": 1149.6, "py": 3011.6}, {"loc_id": 5753, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8888.4, "z": -1533.8, "px": 3565.0, "py": 1786.2}, {"loc_id": 5754, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9008.5, "z": 3377.8, "px": 510.5, "py": 2624.5}, {"loc_id": 5756, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 631.8, "z": 22.8, "px": 2155.8, "py": 2051.9}, {"loc_id": 5757, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9336.5, "z": -146.9, "px": 454.6, "py": 2022.9}, {"loc_id": 5758, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 7950.5, "z": -2351.7, "px": 3404.9, "py": 1646.6}, {"loc_id": 5759, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3369.3, "z": -2540.0, "px": 2623.0, "py": 1614.5}, {"loc_id": 5760, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7172.5, "z": -2004.4, "px": 823.9, "py": 1705.9}, {"loc_id": 5761, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1781.1, "z": -1275.4, "px": 2352.0, "py": 1830.3}, {"loc_id": 5763, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1285.7, "z": -5718.8, "px": 2267.4, "py": 1072.0}, {"loc_id": 5764, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1232.3, "z": -1392.6, "px": 1837.7, "py": 1810.3}, {"loc_id": 5765, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4625.7, "z": 5654.3, "px": 1258.5, "py": 3013.0}, {"loc_id": 5766, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 6898.1, "z": -3848.4, "px": 3225.3, "py": 1391.2}, {"loc_id": 5769, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4993.7, "z": 274.2, "px": 2900.3, "py": 2094.8}, {"loc_id": 5772, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9713.6, "z": -179.1, "px": 390.2, "py": 2017.4}, {"loc_id": 5773, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3884.1, "z": 3853.9, "px": 2710.9, "py": 2705.7}, {"loc_id": 5776, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5888.0, "z": -1547.9, "px": 1043.1, "py": 1783.8}, {"loc_id": 5777, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4501.2, "z": -5257.6, "px": 2816.2, "py": 1150.7}, {"loc_id": 5778, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5910.7, "z": -56.1, "px": 3056.8, "py": 2038.4}, {"loc_id": 5779, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2422.6, "z": -263.9, "px": 1634.5, "py": 2003.0}, {"loc_id": 5781, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3202.9, "z": -2823.5, "px": 2594.6, "py": 1566.1}, {"loc_id": 5782, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2963.6, "z": -5049.8, "px": 1542.2, "py": 1186.2}, {"loc_id": 5784, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1798.6, "z": 6825.0, "px": 2355.0, "py": 3212.8}, {"loc_id": 5785, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5583.8, "z": 4589.0, "px": 1095.0, "py": 2831.2}, {"loc_id": 5786, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2158.9, "z": 4534.2, "px": 1679.5, "py": 2821.8}, {"loc_id": 5787, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -470.9, "z": -7097.9, "px": 1967.6, "py": 836.6}, {"loc_id": 5790, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 621.2, "z": -2438.7, "px": 2154.0, "py": 1631.8}, {"loc_id": 5791, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3060.3, "z": -4399.8, "px": 2570.3, "py": 1297.1}, {"loc_id": 5792, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3063.3, "z": 3947.5, "px": 2570.8, "py": 2721.7}, {"loc_id": 5793, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1326.7, "z": -2105.9, "px": 1821.6, "py": 1688.6}, {"loc_id": 5795, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 528.8, "z": 576.3, "px": 2138.2, "py": 2146.4}, {"loc_id": 5796, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5485.9, "z": -913.2, "px": 2984.3, "py": 1892.1}, {"loc_id": 5797, "loc_name": "StoneTowerRuins08", "item": "SpawnOnce: Skeleton", "count": 3, "x": -8463.5, "z": -1973.4, "px": 603.6, "py": 1711.2}, {"loc_id": 5799, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 3, "x": -938.1, "z": -5833.8, "px": 1887.9, "py": 1052.4}, {"loc_id": 5803, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8062.1, "z": 984.5, "px": 3423.9, "py": 2216.0}, {"loc_id": 5804, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5040.1, "z": 5566.3, "px": 1187.8, "py": 2998.0}, {"loc_id": 5805, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3013.0, "z": 6659.9, "px": 1533.8, "py": 3184.6}, {"loc_id": 5828, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 3, "x": -4243.6, "z": 4235.5, "px": 1323.8, "py": 2770.9}, {"loc_id": 5833, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 3, "x": -3976.4, "z": -6359.5, "px": 1369.4, "py": 962.6}, {"loc_id": 5834, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 3, "x": 5142.3, "z": 2763.7, "px": 2925.6, "py": 2519.7}, {"loc_id": 5835, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2554.7, "z": 1464.4, "px": 1612.0, "py": 2297.9}, {"loc_id": 5849, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2631.3, "z": 5747.5, "px": 2497.1, "py": 3028.9}, {"loc_id": 5853, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2696.6, "z": -4719.6, "px": 2508.2, "py": 1242.5}, {"loc_id": 5862, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 3, "x": -7357.0, "z": -2131.9, "px": 792.4, "py": 1684.2}, {"loc_id": 5871, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5463.4, "z": -5241.0, "px": 1115.6, "py": 1153.5}, {"loc_id": 5876, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 3, "x": -1448.8, "z": 7624.2, "px": 1800.7, "py": 3349.2}, {"loc_id": 5884, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 3, "x": -5265.4, "z": -1555.4, "px": 1149.4, "py": 1782.5}, {"loc_id": 5889, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 3, "x": 4474.5, "z": 6760.9, "px": 2811.6, "py": 3201.9}, {"loc_id": 5895, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3265.2, "z": -4753.9, "px": 2605.3, "py": 1236.7}, {"loc_id": 5909, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 3, "x": 976.7, "z": 5105.9, "px": 2214.7, "py": 2919.4}, {"loc_id": 5910, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 3, "x": -9304.7, "z": 3269.6, "px": 460.0, "py": 2606.0}, {"loc_id": 5912, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 3, "x": 3777.5, "z": 1324.0, "px": 2692.7, "py": 2274.0}, {"loc_id": 5916, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 3, "x": 2564.0, "z": 503.9, "px": 2485.6, "py": 2134.0}, {"loc_id": 5927, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 3, "x": 364.5, "z": 2729.2, "px": 2110.2, "py": 2513.8}, {"loc_id": 5938, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 3, "x": 8688.5, "z": -2089.0, "px": 3530.8, "py": 1691.5}, {"loc_id": 5941, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2134.4, "z": -1915.1, "px": 1683.7, "py": 1721.2}, {"loc_id": 5949, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 3, "x": 1926.7, "z": 3601.7, "px": 2376.8, "py": 2662.7}, {"loc_id": 5951, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 3, "x": 9774.7, "z": -1639.7, "px": 3716.2, "py": 1768.2}, {"loc_id": 5952, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2087.2, "z": 1063.5, "px": 1691.8, "py": 2229.5}, {"loc_id": 5956, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 3, "x": -2295.6, "z": 4169.7, "px": 1656.2, "py": 2759.6}, {"loc_id": 6061, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -9882.9, "z": -468.6, "px": 361.3, "py": 1968.0}, {"loc_id": 6067, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -6872.0, "z": 6762.7, "px": 875.2, "py": 3202.2}, {"loc_id": 6069, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 2443.3, "z": 777.7, "px": 2465.0, "py": 2180.7}, {"loc_id": 6071, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -6959.1, "z": -2408.6, "px": 860.3, "py": 1636.9}, {"loc_id": 6074, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 462.0, "z": 4296.7, "px": 2126.8, "py": 2781.3}, {"loc_id": 6078, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 2433.0, "z": -2710.2, "px": 2463.2, "py": 1585.5}, {"loc_id": 6080, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 7340.7, "z": 3953.7, "px": 3300.8, "py": 2722.8}, {"loc_id": 6087, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 2071.8, "z": -3539.6, "px": 2401.6, "py": 1443.9}, {"loc_id": 6088, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -7293.1, "z": -1010.8, "px": 803.3, "py": 1875.5}, {"loc_id": 6093, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -3783.9, "z": 5143.5, "px": 1402.2, "py": 2925.8}, {"loc_id": 6095, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 6650.9, "z": 7126.6, "px": 3183.1, "py": 3264.3}, {"loc_id": 6108, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -3913.0, "z": 1422.9, "px": 1380.2, "py": 2290.8}, {"loc_id": 6110, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 1363.8, "z": 6783.7, "px": 2280.8, "py": 3205.8}, {"loc_id": 6111, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 6602.4, "z": 6864.9, "px": 3174.8, "py": 3219.6}, {"loc_id": 6113, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 6455.5, "z": 6740.0, "px": 3149.7, "py": 3198.3}, {"loc_id": 6118, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -6807.5, "z": -2233.2, "px": 886.2, "py": 1666.9}, {"loc_id": 6121, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -3854.0, "z": 4495.3, "px": 1390.3, "py": 2815.2}, {"loc_id": 6125, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 1133.3, "z": 111.3, "px": 2241.4, "py": 2067.0}, {"loc_id": 6129, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -3888.7, "z": 4688.1, "px": 1384.3, "py": 2848.1}, {"loc_id": 6134, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 3603.1, "z": -88.4, "px": 2662.9, "py": 2032.9}, {"loc_id": 6140, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 9874.4, "z": -1158.7, "px": 3733.2, "py": 1850.2}, {"loc_id": 6142, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 4242.3, "z": -2047.0, "px": 2772.0, "py": 1698.6}, {"loc_id": 6152, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 7247.3, "z": -429.2, "px": 3284.9, "py": 1974.7}, {"loc_id": 6158, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -8574.9, "z": -1002.3, "px": 584.6, "py": 1876.9}, {"loc_id": 6165, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -6616.6, "z": -1928.5, "px": 918.8, "py": 1718.9}, {"loc_id": 6166, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -3864.4, "z": 1553.5, "px": 1388.5, "py": 2313.1}, {"loc_id": 6167, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -4990.1, "z": 2597.7, "px": 1196.4, "py": 2491.3}, {"loc_id": 6168, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 7451.0, "z": 4010.1, "px": 3319.6, "py": 2732.4}, {"loc_id": 6169, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 6730.8, "z": 6953.5, "px": 3196.7, "py": 3234.7}, {"loc_id": 6172, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 6120.1, "z": 4343.9, "px": 3092.5, "py": 2789.4}, {"loc_id": 6177, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 7255.0, "z": -557.9, "px": 3286.2, "py": 1952.8}, {"loc_id": 6181, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 6213.5, "z": 4661.2, "px": 3108.4, "py": 2843.5}, {"loc_id": 6183, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 1321.5, "z": 6585.9, "px": 2273.5, "py": 3172.0}, {"loc_id": 6189, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -1290.0, "z": -4882.6, "px": 1827.8, "py": 1214.7}, {"loc_id": 6190, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -2289.7, "z": -294.6, "px": 1657.2, "py": 1997.7}, {"loc_id": 6195, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -8534.4, "z": -1111.5, "px": 591.5, "py": 1858.3}, {"loc_id": 6199, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 6600.1, "z": 6972.0, "px": 3174.4, "py": 3237.9}, {"loc_id": 6207, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 1174.2, "z": -2455.9, "px": 2248.4, "py": 1628.9}, {"loc_id": 6208, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 5416.3, "z": -25.7, "px": 2972.4, "py": 2043.6}, {"loc_id": 6218, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -4949.5, "z": 2713.7, "px": 1203.3, "py": 2511.1}, {"loc_id": 6223, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -6008.7, "z": -1744.0, "px": 1022.5, "py": 1750.4}, {"loc_id": 6225, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -6125.2, "z": -1685.1, "px": 1002.6, "py": 1760.4}, {"loc_id": 6228, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -6146.9, "z": -530.7, "px": 998.9, "py": 1957.4}, {"loc_id": 6239, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -3224.8, "z": 2672.8, "px": 1497.6, "py": 2504.2}, {"loc_id": 6240, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 5631.6, "z": 90.4, "px": 3009.1, "py": 2063.4}, {"loc_id": 6244, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": 2632.3, "z": 8691.8, "px": 2497.2, "py": 3531.4}, {"loc_id": 6245, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -4352.0, "z": -4117.1, "px": 1305.3, "py": 1345.3}, {"loc_id": 6252, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -3409.6, "z": -2154.3, "px": 1466.1, "py": 1680.3}, {"loc_id": 6253, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 3, "x": -9852.5, "z": -694.0, "px": 366.5, "py": 1929.6}, {"loc_id": 6850, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 3, "x": -3883.3, "z": -2345.0, "px": 1385.3, "py": 1647.8}, {"loc_id": 6858, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 3, "x": 3435.6, "z": -146.9, "px": 2634.3, "py": 2022.9}, {"loc_id": 6863, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 3, "x": 4136.0, "z": -1237.1, "px": 2753.9, "py": 1836.9}, {"loc_id": 6867, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 3, "x": -2101.9, "z": 382.7, "px": 1689.3, "py": 2113.3}, {"loc_id": 6875, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 3, "x": -2730.9, "z": 1686.8, "px": 1581.9, "py": 2335.9}, {"loc_id": 6882, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 3, "x": -3539.4, "z": 2793.2, "px": 1443.9, "py": 2524.7}, {"loc_id": 6888, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 3, "x": -1585.5, "z": -821.5, "px": 1777.4, "py": 1907.8}, {"loc_id": 7275, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": -4866.7, "z": -2806.7, "px": 1217.4, "py": 1569.0}, {"loc_id": 7287, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": -710.9, "z": -6076.3, "px": 1926.7, "py": 1011.0}, {"loc_id": 7296, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": -6467.4, "z": -3707.6, "px": 944.2, "py": 1415.2}, {"loc_id": 7312, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": 5493.1, "z": -2234.1, "px": 2985.5, "py": 1666.7}, {"loc_id": 7323, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": -2047.3, "z": 3139.0, "px": 1698.6, "py": 2583.7}, {"loc_id": 7330, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": 3708.7, "z": -574.5, "px": 2681.0, "py": 1950.0}, {"loc_id": 7332, "loc_name": "TarPit1", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": -2507.0, "z": 6019.8, "px": 1620.1, "py": 3075.4}, {"loc_id": 7348, "loc_name": "TarPit2", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": 5630.9, "z": -1211.4, "px": 3009.0, "py": 1841.3}, {"loc_id": 7355, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": -2677.4, "z": -2992.6, "px": 1591.1, "py": 1537.3}, {"loc_id": 7357, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": -5257.4, "z": -2824.1, "px": 1150.7, "py": 1566.0}, {"loc_id": 7358, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": 887.8, "z": 3768.1, "px": 2199.5, "py": 2691.1}, {"loc_id": 7359, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": 2375.7, "z": 4678.5, "px": 2453.5, "py": 2846.5}, {"loc_id": 7363, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": 1073.7, "z": -3958.8, "px": 2231.2, "py": 1372.4}, {"loc_id": 7368, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": 3759.5, "z": -1228.6, "px": 2689.6, "py": 1838.3}, {"loc_id": 7369, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": -5825.9, "z": 1873.8, "px": 1053.7, "py": 2367.8}, {"loc_id": 7372, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": -1521.4, "z": -4531.9, "px": 1788.3, "py": 1274.6}, {"loc_id": 7373, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": -709.0, "z": 5264.5, "px": 1927.0, "py": 2946.5}, {"loc_id": 7375, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": 3069.8, "z": -1595.8, "px": 2571.9, "py": 1775.7}, {"loc_id": 7380, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": 7087.4, "z": -2481.1, "px": 3257.6, "py": 1624.6}, {"loc_id": 7381, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": 4974.0, "z": -2512.2, "px": 2896.9, "py": 1619.3}, {"loc_id": 7382, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": 7102.2, "z": -2609.2, "px": 3260.1, "py": 1602.7}, {"loc_id": 7388, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": 3600.8, "z": 1540.0, "px": 2662.5, "py": 2310.8}, {"loc_id": 7390, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": -6191.1, "z": -1484.2, "px": 991.4, "py": 1794.7}, {"loc_id": 7391, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": -1985.0, "z": 3441.9, "px": 1709.2, "py": 2635.4}, {"loc_id": 7398, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": 3834.4, "z": -904.0, "px": 2702.4, "py": 1893.7}, {"loc_id": 7411, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": -2241.2, "z": 3967.0, "px": 1665.5, "py": 2725.0}, {"loc_id": 7413, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": -2701.2, "z": -2812.1, "px": 1587.0, "py": 1568.1}, {"loc_id": 7415, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": -1266.0, "z": -6712.2, "px": 1831.9, "py": 902.5}, {"loc_id": 7416, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": 6768.8, "z": 3190.8, "px": 3203.2, "py": 2592.6}, {"loc_id": 7417, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": -3074.0, "z": 2439.7, "px": 1523.4, "py": 2464.4}, {"loc_id": 7418, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": -4480.2, "z": -324.1, "px": 1283.4, "py": 1992.7}, {"loc_id": 7422, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": 1223.8, "z": -3831.8, "px": 2256.9, "py": 1394.0}, {"loc_id": 7425, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": -5050.0, "z": 3698.7, "px": 1186.1, "py": 2679.2}, {"loc_id": 7434, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": 1854.4, "z": -3505.5, "px": 2364.5, "py": 1449.7}, {"loc_id": 7439, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": 1137.3, "z": -4278.0, "px": 2242.1, "py": 1317.9}, {"loc_id": 7440, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": 5261.3, "z": -2510.4, "px": 2945.9, "py": 1619.6}, {"loc_id": 7442, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 3, "x": -3254.5, "z": 3972.1, "px": 1492.6, "py": 2725.9}, {"loc_id": 7445, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 1280.0, "z": 8448.0, "px": 2266.5, "py": 3489.8}, {"loc_id": 7446, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": 4544.0, "z": -5632.0, "px": 2823.5, "py": 1086.8}, {"loc_id": 7448, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": 2240.0, "z": 8768.0, "px": 2430.3, "py": 3544.4}, {"loc_id": 7449, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": -3328.0, "z": -2048.0, "px": 1480.0, "py": 1698.5}, {"loc_id": 7454, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 3, "x": 1216.0, "z": 6848.0, "px": 2255.5, "py": 3216.7}, {"loc_id": 7454, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 3, "x": 1216.0, "z": 6848.0, "px": 2255.5, "py": 3216.7}, {"loc_id": 7455, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": 6592.0, "z": 6464.0, "px": 3173.0, "py": 3151.2}, {"loc_id": 7456, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 3, "x": -128.0, "z": -1344.0, "px": 2026.2, "py": 1818.6}, {"loc_id": 7458, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": 6144.0, "z": 4736.0, "px": 3096.6, "py": 2856.3}, {"loc_id": 7458, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 3, "x": 6144.0, "z": 4736.0, "px": 3096.6, "py": 2856.3}, {"loc_id": 7459, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": -6848.0, "z": -2368.0, "px": 879.3, "py": 1643.9}, {"loc_id": 7461, "loc_name": "MountainCave02", "item": "Spawner: Fish4_cave (respawn every 10 minutes)", "count": 3, "x": 1024.0, "z": -2624.0, "px": 2222.8, "py": 1600.2}, {"loc_id": 7461, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 3, "x": 1024.0, "z": -2624.0, "px": 2222.8, "py": 1600.2}, {"loc_id": 7461, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": 1024.0, "z": -2624.0, "px": 2222.8, "py": 1600.2}, {"loc_id": 7461, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 3, "x": 1024.0, "z": -2624.0, "px": 2222.8, "py": 1600.2}, {"loc_id": 7462, "loc_name": "MountainCave02", "item": "Spawner: Fish4_cave (respawn every 10 minutes)", "count": 3, "x": -3904.0, "z": 4480.0, "px": 1381.7, "py": 2812.6}, {"loc_id": 7462, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -3904.0, "z": 4480.0, "px": 1381.7, "py": 2812.6}, {"loc_id": 7462, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 3, "x": -3904.0, "z": 4480.0, "px": 1381.7, "py": 2812.6}, {"loc_id": 7463, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 3, "x": 6400.0, "z": 6592.0, "px": 3140.3, "py": 3173.0}, {"loc_id": 7463, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": 6400.0, "z": 6592.0, "px": 3140.3, "py": 3173.0}, {"loc_id": 7465, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": -5184.0, "z": 5440.0, "px": 1163.3, "py": 2976.4}, {"loc_id": 7474, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 3, "x": 4480.0, "z": -1792.0, "px": 2812.6, "py": 1742.2}, {"loc_id": 7475, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 3, "x": 6656.0, "z": 6784.0, "px": 3184.0, "py": 3205.8}, {"loc_id": 7475, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 3, "x": 6656.0, "z": 6784.0, "px": 3184.0, "py": 3205.8}, {"loc_id": 7477, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 3, "x": 2880.0, "z": 768.0, "px": 2539.5, "py": 2179.1}, {"loc_id": 7479, "loc_name": "MountainCave02", "item": "Spawner: Fish4_cave (respawn every 10 minutes)", "count": 3, "x": 2688.0, "z": 640.0, "px": 2506.8, "py": 2157.2}, {"loc_id": 7482, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 3, "x": 4288.0, "z": -5824.0, "px": 2779.8, "py": 1054.0}, {"loc_id": 7483, "loc_name": "MountainCave02", "item": "Spawner: Fish4_cave (respawn every 10 minutes)", "count": 3, "x": -2112.0, "z": -512.0, "px": 1687.6, "py": 1960.6}, {"loc_id": 7485, "loc_name": "MountainCave02", "item": "Spawner: Fish4_cave (respawn every 10 minutes)", "count": 3, "x": -2048.0, "z": -192.0, "px": 1698.5, "py": 2015.2}, {"loc_id": 7487, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": -3968.0, "z": 5120.0, "px": 1370.8, "py": 2921.8}, {"loc_id": 7488, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 3, "x": -7616.0, "z": -2368.0, "px": 748.2, "py": 1643.9}, {"loc_id": 7490, "loc_name": "MountainCave02", "item": "Spawner: Fish4_cave (respawn every 10 minutes)", "count": 3, "x": -6848.0, "z": -2176.0, "px": 879.3, "py": 1676.6}, {"loc_id": 7490, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": -6848.0, "z": -2176.0, "px": 879.3, "py": 1676.6}, {"loc_id": 7491, "loc_name": "MountainCave02", "item": "Spawner: Fish4_cave (respawn every 10 minutes)", "count": 3, "x": -4160.0, "z": 3200.0, "px": 1338.0, "py": 2594.1}, {"loc_id": 7492, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 3, "x": -8512.0, "z": -192.0, "px": 595.3, "py": 2015.2}, {"loc_id": 7494, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 9664.0, "z": -1216.0, "px": 3697.3, "py": 1840.5}, {"loc_id": 7497, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 3, "x": 1984.0, "z": -6784.0, "px": 2386.6, "py": 890.2}, {"loc_id": 7498, "loc_name": "MountainCave02", "item": "Item: One Of: Coins[3-9]", "count": 3, "x": -3776.0, "z": 5184.0, "px": 1403.6, "py": 2932.7}, {"loc_id": 7499, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": 4480.0, "z": -2048.0, "px": 2812.6, "py": 1698.5}, {"loc_id": 7500, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 3, "x": -9600.0, "z": -576.0, "px": 409.6, "py": 1949.7}, {"loc_id": 7500, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 3, "x": -9600.0, "z": -576.0, "px": 409.6, "py": 1949.7}, {"loc_id": 7501, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": -3840.0, "z": 4736.0, "px": 1392.6, "py": 2856.3}, {"loc_id": 7502, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 4800.0, "z": -5568.0, "px": 2867.2, "py": 1097.7}, {"loc_id": 7503, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": 1344.0, "z": 8640.0, "px": 2277.4, "py": 3522.6}, {"loc_id": 7504, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 3, "x": 5504.0, "z": 64.0, "px": 2987.3, "py": 2058.9}, {"loc_id": 7505, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": 5952.0, "z": 4672.0, "px": 3063.8, "py": 2845.4}, {"loc_id": 7506, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 3, "x": 2048.0, "z": 4736.0, "px": 2397.5, "py": 2856.3}, {"loc_id": 7507, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 3, "x": -5056.0, "z": 2688.0, "px": 1185.1, "py": 2506.8}, {"loc_id": 7509, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 3, "x": -2688.0, "z": 7104.0, "px": 1589.2, "py": 3260.4}, {"loc_id": 7512, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 3, "x": 5632.0, "z": -512.0, "px": 3009.2, "py": 1960.6}, {"loc_id": 7513, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 3, "x": 3072.0, "z": -1920.0, "px": 2572.3, "py": 1720.3}, {"loc_id": 7514, "loc_name": "MountainCave02", "item": "Spawner: Fish4_cave (respawn every 10 minutes)", "count": 3, "x": -3584.0, "z": 6080.0, "px": 1436.3, "py": 3085.7}, {"loc_id": 7515, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": 1216.0, "z": 4864.0, "px": 2255.5, "py": 2878.1}, {"loc_id": 7515, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 3, "x": 1216.0, "z": 4864.0, "px": 2255.5, "py": 2878.1}, {"loc_id": 7516, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 3, "x": 3008.0, "z": 576.0, "px": 2561.4, "py": 2146.3}, {"loc_id": 7521, "loc_name": "MountainCave02", "item": "Spawner: Fish4_cave (respawn every 10 minutes)", "count": 3, "x": 2240.0, "z": -3712.0, "px": 2430.3, "py": 1414.5}, {"loc_id": 7521, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 2240.0, "z": -3712.0, "px": 2430.3, "py": 1414.5}, {"loc_id": 7522, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 3, "x": -4032.0, "z": 1408.0, "px": 1359.9, "py": 2288.3}, {"loc_id": 7524, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 3, "x": 4288.0, "z": -1856.0, "px": 2779.8, "py": 1731.2}, {"loc_id": 7525, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 3, "x": -4160.0, "z": -4032.0, "px": 1338.0, "py": 1359.9}, {"loc_id": 7525, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -4160.0, "z": -4032.0, "px": 1338.0, "py": 1359.9}, {"loc_id": 7526, "loc_name": "MountainCave02", "item": "Spawner: Fish4_cave (respawn every 10 minutes)", "count": 3, "x": 2560.0, "z": 8960.0, "px": 2484.9, "py": 3577.2}, {"loc_id": 7527, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": -3392.0, "z": 6336.0, "px": 1469.1, "py": 3129.3}, {"loc_id": 7528, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 3, "x": -6848.0, "z": 6848.0, "px": 879.3, "py": 3216.7}, {"loc_id": 7529, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 2496.0, "z": -3008.0, "px": 2474.0, "py": 1534.6}, {"loc_id": 7533, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 3, "x": -8576.0, "z": -960.0, "px": 584.4, "py": 1884.2}, {"loc_id": 7536, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 3, "x": 2112.0, "z": -3520.0, "px": 2408.4, "py": 1447.3}, {"loc_id": 7537, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": 6272.0, "z": 6784.0, "px": 3118.4, "py": 3205.8}, {"loc_id": 7537, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 6272.0, "z": 6784.0, "px": 3118.4, "py": 3205.8}, {"loc_id": 7538, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 3, "x": 6208.0, "z": 4544.0, "px": 3107.5, "py": 2823.5}, {"loc_id": 7539, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 3, "x": 1280.0, "z": -4992.0, "px": 2266.5, "py": 1196.0}, {"loc_id": 7544, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 3, "x": -2432.0, "z": 1920.0, "px": 1632.9, "py": 2375.7}, {"loc_id": 7548, "loc_name": "MountainCave02", "item": "Spawner: Fish4_cave (respawn every 10 minutes)", "count": 3, "x": -960.0, "z": 8704.0, "px": 1884.2, "py": 3533.5}, {"loc_id": 7551, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": -1920.0, "z": -576.0, "px": 1720.3, "py": 1949.7}, {"loc_id": 7551, "loc_name": "MountainCave02", "item": "Spawner: Fish4_cave (respawn every 10 minutes)", "count": 3, "x": -1920.0, "z": -576.0, "px": 1720.3, "py": 1949.7}, {"loc_id": 7552, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 3, "x": -128.0, "z": -4096.0, "px": 2026.2, "py": 1348.9}, {"loc_id": 7556, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -3200.0, "z": 2752.0, "px": 1501.9, "py": 2517.7}, {"loc_id": 7556, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 3, "x": -3200.0, "z": 2752.0, "px": 1501.9, "py": 2517.7}, {"loc_id": 7558, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -4416.0, "z": -3840.0, "px": 1294.3, "py": 1392.6}, {"loc_id": 7558, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 3, "x": -4416.0, "z": -3840.0, "px": 1294.3, "py": 1392.6}, {"loc_id": 7559, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 3, "x": -4096.0, "z": 1600.0, "px": 1348.9, "py": 2321.1}, {"loc_id": 7561, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 3, "x": -6208.0, "z": -640.0, "px": 988.5, "py": 1938.8}, {"loc_id": 7561, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 3, "x": -6208.0, "z": -640.0, "px": 988.5, "py": 1938.8}, {"loc_id": 7562, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": 5632.0, "z": 2304.0, "px": 3009.2, "py": 2441.2}, {"loc_id": 7565, "loc_name": "MountainCave02", "item": "Spawner: Fish4_cave (respawn every 10 minutes)", "count": 3, "x": -256.0, "z": 9152.0, "px": 2004.3, "py": 3609.9}, {"loc_id": 7568, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 1536.0, "z": 6592.0, "px": 2310.1, "py": 3173.0}, {"loc_id": 7570, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": 1600.0, "z": 7040.0, "px": 2321.1, "py": 3249.5}, {"loc_id": 7571, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 3, "x": -7232.0, "z": -1024.0, "px": 813.7, "py": 1873.2}, {"loc_id": 7572, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 3, "x": 3648.0, "z": -704.0, "px": 2670.6, "py": 1927.9}, {"loc_id": 7572, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 3, "x": 3648.0, "z": -704.0, "px": 2670.6, "py": 1927.9}, {"loc_id": 7573, "loc_name": "MountainCave02", "item": "Spawner: Fish4_cave (respawn every 10 minutes)", "count": 3, "x": 2304.0, "z": -2880.0, "px": 2441.2, "py": 1556.5}, {"loc_id": 7573, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": 2304.0, "z": -2880.0, "px": 2441.2, "py": 1556.5}, {"loc_id": 7573, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 3, "x": 2304.0, "z": -2880.0, "px": 2441.2, "py": 1556.5}, {"loc_id": 7574, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 3, "x": 5760.0, "z": 4800.0, "px": 3031.0, "py": 2867.2}, {"loc_id": 7575, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7175.8, "z": -4934.8, "px": 3272.7, "py": 1205.8}, {"loc_id": 7576, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 4867.6, "z": 5825.2, "px": 2878.7, "py": 3042.2}, {"loc_id": 7577, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 7423.4, "z": -255.7, "px": 3314.9, "py": 2004.4}, {"loc_id": 7577, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7423.4, "z": -255.7, "px": 3314.9, "py": 2004.4}, {"loc_id": 7578, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 4028.3, "z": -6268.0, "px": 2735.5, "py": 978.3}, {"loc_id": 7580, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -7104.3, "z": -1348.1, "px": 835.5, "py": 1817.9}, {"loc_id": 7580, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": -7104.3, "z": -1348.1, "px": 835.5, "py": 1817.9}, {"loc_id": 7581, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -6137.4, "z": -5446.9, "px": 1000.6, "py": 1118.4}, {"loc_id": 7581, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": -6137.4, "z": -5446.9, "px": 1000.6, "py": 1118.4}, {"loc_id": 7582, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 8388.5, "z": -767.9, "px": 3479.6, "py": 1916.9}, {"loc_id": 7583, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 8440.6, "z": -2753.2, "px": 3488.5, "py": 1578.1}, {"loc_id": 7583, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 8440.6, "z": -2753.2, "px": 3488.5, "py": 1578.1}, {"loc_id": 7583, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": 8440.6, "z": -2753.2, "px": 3488.5, "py": 1578.1}, {"loc_id": 7584, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 7550.0, "z": 2433.8, "px": 3336.5, "py": 2463.4}, {"loc_id": 7584, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7550.0, "z": 2433.8, "px": 3336.5, "py": 2463.4}, {"loc_id": 7585, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 8836.5, "z": 449.9, "px": 3556.1, "py": 2124.8}, {"loc_id": 7585, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": 8836.5, "z": 449.9, "px": 3556.1, "py": 2124.8}, {"loc_id": 7586, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 6266.9, "z": -1346.4, "px": 3117.6, "py": 1818.2}, {"loc_id": 7586, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": 6266.9, "z": -1346.4, "px": 3117.6, "py": 1818.2}, {"loc_id": 7587, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 5250.1, "z": 3334.0, "px": 2944.0, "py": 2617.0}, {"loc_id": 7587, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 5250.1, "z": 3334.0, "px": 2944.0, "py": 2617.0}, {"loc_id": 7588, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 7172.7, "z": 128.2, "px": 3272.1, "py": 2069.9}, {"loc_id": 7588, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7172.7, "z": 128.2, "px": 3272.1, "py": 2069.9}, {"loc_id": 7588, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": 7172.7, "z": 128.2, "px": 3272.1, "py": 2069.9}, {"loc_id": 7589, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": -7358.9, "z": 4101.6, "px": 792.1, "py": 2748.0}, {"loc_id": 7590, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 7997.9, "z": -4413.8, "px": 3413.0, "py": 1294.7}, {"loc_id": 7590, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7997.9, "z": -4413.8, "px": 3413.0, "py": 1294.7}, {"loc_id": 7591, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 188.1, "z": 7163.6, "px": 2080.1, "py": 3270.6}, {"loc_id": 7591, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": 188.1, "z": 7163.6, "px": 2080.1, "py": 3270.6}, {"loc_id": 7592, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -7490.1, "z": 1083.3, "px": 769.7, "py": 2232.9}, {"loc_id": 7592, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -7490.1, "z": 1083.3, "px": 769.7, "py": 2232.9}, {"loc_id": 7593, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -7486.3, "z": 2878.4, "px": 770.3, "py": 2539.2}, {"loc_id": 7593, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -7486.3, "z": 2878.4, "px": 770.3, "py": 2539.2}, {"loc_id": 7594, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 5496.2, "z": 3141.6, "px": 2986.0, "py": 2584.2}, {"loc_id": 7594, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": 5496.2, "z": 3141.6, "px": 2986.0, "py": 2584.2}, {"loc_id": 7595, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -7288.5, "z": -3450.5, "px": 804.1, "py": 1459.1}, {"loc_id": 7595, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": -7288.5, "z": -3450.5, "px": 804.1, "py": 1459.1}, {"loc_id": 7596, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": -6663.6, "z": -1669.4, "px": 910.7, "py": 1763.1}, {"loc_id": 7597, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 3463.3, "z": 5636.8, "px": 2639.1, "py": 3010.0}, {"loc_id": 7598, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -6402.6, "z": 3135.4, "px": 955.3, "py": 2583.1}, {"loc_id": 7599, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 5496.3, "z": 5636.5, "px": 2986.0, "py": 3010.0}, {"loc_id": 7599, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 5496.3, "z": 5636.5, "px": 2986.0, "py": 3010.0}, {"loc_id": 7602, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -9220.2, "z": 571.2, "px": 474.4, "py": 2145.5}, {"loc_id": 7603, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 4160.5, "z": -4542.5, "px": 2758.1, "py": 1272.7}, {"loc_id": 7604, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 4031.6, "z": -6404.4, "px": 2736.1, "py": 955.0}, {"loc_id": 7604, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 4031.6, "z": -6404.4, "px": 2736.1, "py": 955.0}, {"loc_id": 7605, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7428.1, "z": 4478.9, "px": 3315.7, "py": 2812.4}, {"loc_id": 7605, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": 7428.1, "z": 4478.9, "px": 3315.7, "py": 2812.4}, {"loc_id": 7606, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 3716.3, "z": -5627.8, "px": 2682.2, "py": 1087.5}, {"loc_id": 7607, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -2183.2, "z": -6781.6, "px": 1675.4, "py": 890.6}, {"loc_id": 7607, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -2183.2, "z": -6781.6, "px": 1675.4, "py": 890.6}, {"loc_id": 7608, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7608.3, "z": -2364.8, "px": 3346.5, "py": 1644.4}, {"loc_id": 7608, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": 7608.3, "z": -2364.8, "px": 3346.5, "py": 1644.4}, {"loc_id": 7609, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": 3141.5, "z": 6522.4, "px": 2584.1, "py": 3161.2}, {"loc_id": 7610, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": -8314.3, "z": 2296.3, "px": 629.0, "py": 2439.9}, {"loc_id": 7612, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 5817.6, "z": -4349.8, "px": 3040.9, "py": 1305.6}, {"loc_id": 7612, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": 5817.6, "z": -4349.8, "px": 3040.9, "py": 1305.6}, {"loc_id": 7614, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -5446.8, "z": 4544.0, "px": 1118.4, "py": 2823.5}, {"loc_id": 7614, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -5446.8, "z": 4544.0, "px": 1118.4, "py": 2823.5}, {"loc_id": 7615, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -7676.6, "z": 1339.0, "px": 737.9, "py": 2276.5}, {"loc_id": 7616, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": 1337.3, "z": 6403.2, "px": 2276.2, "py": 3140.8}, {"loc_id": 7617, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 8383.6, "z": -1600.1, "px": 3478.8, "py": 1774.9}, {"loc_id": 7617, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": 8383.6, "z": -1600.1, "px": 3478.8, "py": 1774.9}, {"loc_id": 7618, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 8773.5, "z": -893.6, "px": 3545.3, "py": 1895.5}, {"loc_id": 7619, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 2424.1, "z": -6656.8, "px": 2461.7, "py": 911.9}, {"loc_id": 7619, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 2424.1, "z": -6656.8, "px": 2461.7, "py": 911.9}, {"loc_id": 7620, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 8705.0, "z": -1218.1, "px": 3533.7, "py": 1840.1}, {"loc_id": 7621, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -8381.6, "z": 2180.6, "px": 617.5, "py": 2420.2}, {"loc_id": 7623, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -967.4, "z": -7804.5, "px": 1882.9, "py": 716.0}, {"loc_id": 7623, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -967.4, "z": -7804.5, "px": 1882.9, "py": 716.0}, {"loc_id": 7624, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 3910.3, "z": -6527.5, "px": 2715.4, "py": 934.0}, {"loc_id": 7625, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 120.3, "z": 6984.0, "px": 2068.5, "py": 3239.9}, {"loc_id": 7626, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 8059.4, "z": 3073.3, "px": 3423.5, "py": 2572.5}, {"loc_id": 7626, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": 8059.4, "z": 3073.3, "px": 3423.5, "py": 2572.5}, {"loc_id": 7628, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": 3962.1, "z": -6655.1, "px": 2724.2, "py": 912.2}, {"loc_id": 7629, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 4926.1, "z": -5959.1, "px": 2888.7, "py": 1031.0}, {"loc_id": 7629, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": 4926.1, "z": -5959.1, "px": 2888.7, "py": 1031.0}, {"loc_id": 7631, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -6405.4, "z": -2241.4, "px": 954.8, "py": 1665.5}, {"loc_id": 7631, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -6405.4, "z": -2241.4, "px": 954.8, "py": 1665.5}, {"loc_id": 7631, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": -6405.4, "z": -2241.4, "px": 954.8, "py": 1665.5}, {"loc_id": 7632, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": 7611.1, "z": -4603.8, "px": 3347.0, "py": 1262.3}, {"loc_id": 7633, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -9276.9, "z": 703.2, "px": 464.7, "py": 2168.0}, {"loc_id": 7634, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -8896.7, "z": 1532.4, "px": 529.6, "py": 2309.5}, {"loc_id": 7634, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": -8896.7, "z": 1532.4, "px": 529.6, "py": 2309.5}, {"loc_id": 7636, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 5755.4, "z": 5696.3, "px": 3030.3, "py": 3020.2}, {"loc_id": 7636, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": 5755.4, "z": 5696.3, "px": 3030.3, "py": 3020.2}, {"loc_id": 7637, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": -9402.0, "z": 581.8, "px": 443.4, "py": 2147.3}, {"loc_id": 7638, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 6338.7, "z": 4281.8, "px": 3129.8, "py": 2778.8}, {"loc_id": 7639, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -4477.5, "z": -6782.7, "px": 1283.8, "py": 890.4}, {"loc_id": 7640, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 5563.4, "z": 5509.5, "px": 2997.5, "py": 2988.3}, {"loc_id": 7642, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 8067.5, "z": 2809.4, "px": 3424.9, "py": 2527.5}, {"loc_id": 7643, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 314.3, "z": 7555.7, "px": 2101.6, "py": 3337.5}, {"loc_id": 7643, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 314.3, "z": 7555.7, "px": 2101.6, "py": 3337.5}, {"loc_id": 7643, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": 314.3, "z": 7555.7, "px": 2101.6, "py": 3337.5}, {"loc_id": 7644, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": 384.2, "z": -7426.2, "px": 2113.6, "py": 780.6}, {"loc_id": 7645, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 6909.1, "z": -133.1, "px": 3227.2, "py": 2025.3}, {"loc_id": 7645, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 6909.1, "z": -133.1, "px": 3227.2, "py": 2025.3}, {"loc_id": 7646, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 9026.7, "z": -1598.2, "px": 3588.6, "py": 1775.2}, {"loc_id": 7646, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": 9026.7, "z": -1598.2, "px": 3588.6, "py": 1775.2}, {"loc_id": 7647, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 8134.5, "z": -1793.5, "px": 3436.3, "py": 1741.9}, {"loc_id": 7648, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 9094.7, "z": 1535.6, "px": 3600.2, "py": 2310.1}, {"loc_id": 7648, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": 9094.7, "z": 1535.6, "px": 3600.2, "py": 2310.1}, {"loc_id": 7649, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 3, "x": -8130.9, "z": -3836.9, "px": 660.3, "py": 1393.2}, {"loc_id": 7651, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": -9417.5, "z": -886.6, "px": 440.7, "py": 1896.7}, {"loc_id": 7660, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": 7751.6, "z": 2250.1, "px": 3370.9, "py": 2432.0}, {"loc_id": 7661, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": -7542.2, "z": 4475.4, "px": 760.8, "py": 2811.8}, {"loc_id": 7667, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": 9227.9, "z": -1352.2, "px": 3622.9, "py": 1817.2}, {"loc_id": 7679, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": 7998.2, "z": -1792.3, "px": 3413.0, "py": 1742.1}, {"loc_id": 7685, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": -6459.2, "z": -838.9, "px": 945.6, "py": 1904.8}, {"loc_id": 7689, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": -5949.0, "z": 1094.4, "px": 1032.7, "py": 2234.8}, {"loc_id": 7692, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": 8636.5, "z": -1018.2, "px": 3522.0, "py": 1874.2}, {"loc_id": 7694, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": 2998.6, "z": 5766.6, "px": 2559.8, "py": 3032.2}, {"loc_id": 7710, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": 948.9, "z": -7544.0, "px": 2209.9, "py": 760.5}, {"loc_id": 7721, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": -8007.8, "z": -4414.0, "px": 681.3, "py": 1294.7}, {"loc_id": 7722, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": -7028.9, "z": 756.2, "px": 848.4, "py": 2177.1}, {"loc_id": 7739, "loc_name": "Mistlands_GuardTower1_ruined_new2", "item": "SpawnOnce: Seeker", "count": 3, "x": -263.4, "z": -6455.5, "px": 2003.0, "py": 946.3}, {"loc_id": 7742, "loc_name": "Mistlands_GuardTower1_ruined_new2", "item": "SpawnOnce: Seeker", "count": 3, "x": 457.0, "z": 6837.4, "px": 2126.0, "py": 3214.9}, {"loc_id": 7750, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -5698.7, "z": -5447.2, "px": 1075.4, "py": 1118.3}, {"loc_id": 7751, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -5956.9, "z": 1222.3, "px": 1031.4, "py": 2256.6}, {"loc_id": 7751, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -5956.9, "z": 1222.3, "px": 1031.4, "py": 2256.6}, {"loc_id": 7752, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 6842.2, "z": -702.6, "px": 3215.7, "py": 1928.1}, {"loc_id": 7752, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 6842.2, "z": -702.6, "px": 3215.7, "py": 1928.1}, {"loc_id": 7753, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 3132.9, "z": 7103.4, "px": 2582.7, "py": 3260.3}, {"loc_id": 7753, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 3132.9, "z": 7103.4, "px": 2582.7, "py": 3260.3}, {"loc_id": 7755, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -3847.5, "z": 6335.2, "px": 1391.4, "py": 3129.2}, {"loc_id": 7755, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -3847.5, "z": 6335.2, "px": 1391.4, "py": 3129.2}, {"loc_id": 7755, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 3, "x": -3847.5, "z": 6335.2, "px": 1391.4, "py": 3129.2}, {"loc_id": 7757, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -8248.7, "z": -3140.4, "px": 640.2, "py": 1512.0}, {"loc_id": 7758, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -1407.2, "z": 7363.1, "px": 1807.8, "py": 3304.6}, {"loc_id": 7758, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -1407.2, "z": 7363.1, "px": 1807.8, "py": 3304.6}, {"loc_id": 7759, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 2877.1, "z": 5818.4, "px": 2539.0, "py": 3041.0}, {"loc_id": 7761, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 1209.0, "z": 7295.2, "px": 2254.3, "py": 3293.0}, {"loc_id": 7761, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 3, "x": 1209.0, "z": 7295.2, "px": 2254.3, "py": 3293.0}, {"loc_id": 7762, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 8322.9, "z": -3010.1, "px": 3468.4, "py": 1534.3}, {"loc_id": 7762, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 8322.9, "z": -3010.1, "px": 3468.4, "py": 1534.3}, {"loc_id": 7763, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 2622.0, "z": 6073.6, "px": 2495.5, "py": 3084.6}, {"loc_id": 7764, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 9464.8, "z": -2424.5, "px": 3663.3, "py": 1634.2}, {"loc_id": 7765, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -1720.6, "z": -7111.2, "px": 1754.4, "py": 834.4}, {"loc_id": 7765, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -1720.6, "z": -7111.2, "px": 1754.4, "py": 834.4}, {"loc_id": 7766, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -9530.3, "z": -1852.9, "px": 421.5, "py": 1731.8}, {"loc_id": 7767, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -7544.7, "z": -3399.0, "px": 760.4, "py": 1467.9}, {"loc_id": 7768, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -1976.4, "z": -5895.9, "px": 1710.7, "py": 1041.8}, {"loc_id": 7768, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 3, "x": -1976.4, "z": -5895.9, "px": 1710.7, "py": 1041.8}, {"loc_id": 7769, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 379.3, "z": 7164.6, "px": 2112.7, "py": 3270.8}, {"loc_id": 7770, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 3, "x": 4921.5, "z": 6072.0, "px": 2887.9, "py": 3084.3}, {"loc_id": 7771, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 3, "x": 7936.6, "z": 1795.6, "px": 3402.5, "py": 2354.4}, {"loc_id": 7772, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -2758.7, "z": 6525.8, "px": 1577.2, "py": 3161.7}, {"loc_id": 7773, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 8442.1, "z": -1081.8, "px": 3488.8, "py": 1863.4}, {"loc_id": 7774, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 5820.3, "z": 2557.6, "px": 3041.3, "py": 2484.5}, {"loc_id": 7774, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 3, "x": 5820.3, "z": 2557.6, "px": 3041.3, "py": 2484.5}, {"loc_id": 7776, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -9468.6, "z": 898.3, "px": 432.0, "py": 2201.3}, {"loc_id": 7776, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 3, "x": -9468.6, "z": 898.3, "px": 432.0, "py": 2201.3}, {"loc_id": 7777, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 7098.5, "z": 3783.0, "px": 3259.5, "py": 2693.6}, {"loc_id": 7778, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 9095.9, "z": 1351.9, "px": 3600.4, "py": 2278.7}, {"loc_id": 7780, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 2239.9, "z": -6663.5, "px": 2430.3, "py": 910.8}, {"loc_id": 7781, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 2045.0, "z": -6590.9, "px": 2397.0, "py": 923.2}, {"loc_id": 7781, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 2045.0, "z": -6590.9, "px": 2397.0, "py": 923.2}, {"loc_id": 7782, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -8200.0, "z": -3392.3, "px": 648.5, "py": 1469.0}, {"loc_id": 7782, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -8200.0, "z": -3392.3, "px": 648.5, "py": 1469.0}, {"loc_id": 7783, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 8510.1, "z": -577.2, "px": 3500.4, "py": 1949.5}, {"loc_id": 7784, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 6333.6, "z": 2887.8, "px": 3128.9, "py": 2540.9}, {"loc_id": 7787, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -5306.6, "z": 4800.3, "px": 1142.3, "py": 2867.3}, {"loc_id": 7787, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -5306.6, "z": 4800.3, "px": 1142.3, "py": 2867.3}, {"loc_id": 7788, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 3, "x": 3837.1, "z": -5441.0, "px": 2702.9, "py": 1119.4}, {"loc_id": 7789, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 3, "x": 8775.0, "z": 953.4, "px": 3545.6, "py": 2210.7}, {"loc_id": 7790, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -2882.0, "z": -6147.0, "px": 1556.1, "py": 998.9}, {"loc_id": 7791, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 3773.4, "z": 6009.1, "px": 2692.0, "py": 3073.6}, {"loc_id": 7792, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7684.2, "z": 2815.0, "px": 3359.4, "py": 2528.4}, {"loc_id": 7792, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 3, "x": 7684.2, "z": 2815.0, "px": 3359.4, "py": 2528.4}, {"loc_id": 7793, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -7425.8, "z": -762.8, "px": 780.7, "py": 1917.8}, {"loc_id": 7794, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -9338.8, "z": 825.7, "px": 454.2, "py": 2188.9}, {"loc_id": 7795, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 4154.6, "z": -5051.2, "px": 2757.1, "py": 1185.9}, {"loc_id": 7796, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 3963.4, "z": -5382.0, "px": 2724.4, "py": 1129.5}, {"loc_id": 7796, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 3963.4, "z": -5382.0, "px": 2724.4, "py": 1129.5}, {"loc_id": 7798, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 388.6, "z": 6973.8, "px": 2114.3, "py": 3238.2}, {"loc_id": 7799, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 9279.2, "z": -1912.1, "px": 3631.7, "py": 1721.7}, {"loc_id": 7799, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 9279.2, "z": -1912.1, "px": 3631.7, "py": 1721.7}, {"loc_id": 7799, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 3, "x": 9279.2, "z": -1912.1, "px": 3631.7, "py": 1721.7}, {"loc_id": 7800, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7097.4, "z": -5062.8, "px": 3259.3, "py": 1183.9}, {"loc_id": 7800, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 7097.4, "z": -5062.8, "px": 3259.3, "py": 1183.9}, {"loc_id": 7801, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -2756.4, "z": -6465.0, "px": 1577.6, "py": 944.6}, {"loc_id": 7804, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 4476.4, "z": -4487.3, "px": 2812.0, "py": 1282.2}, {"loc_id": 7805, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -770.1, "z": 6727.9, "px": 1916.6, "py": 3196.2}, {"loc_id": 7806, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 8259.2, "z": 2555.0, "px": 3457.6, "py": 2484.1}, {"loc_id": 7807, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7611.2, "z": -2106.1, "px": 3347.0, "py": 1688.6}, {"loc_id": 7807, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 3, "x": 7611.2, "z": -2106.1, "px": 3347.0, "py": 1688.6}, {"loc_id": 7808, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 6530.5, "z": 3002.0, "px": 3162.5, "py": 2560.3}, {"loc_id": 7810, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -1916.3, "z": -7041.2, "px": 1721.0, "py": 846.3}, {"loc_id": 7811, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 3, "x": 1541.3, "z": -6585.5, "px": 2311.0, "py": 924.1}, {"loc_id": 7813, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -5432.7, "z": 5880.4, "px": 1120.8, "py": 3051.6}, {"loc_id": 7813, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -5432.7, "z": 5880.4, "px": 1120.8, "py": 3051.6}, {"loc_id": 7814, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 5953.4, "z": 5882.8, "px": 3064.0, "py": 3052.0}, {"loc_id": 7815, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7557.4, "z": -4741.1, "px": 3337.8, "py": 1238.9}, {"loc_id": 7815, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 7557.4, "z": -4741.1, "px": 3337.8, "py": 1238.9}, {"loc_id": 7816, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 2809.6, "z": 5628.1, "px": 2527.5, "py": 3008.5}, {"loc_id": 7816, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 3, "x": 2809.6, "z": 5628.1, "px": 2527.5, "py": 3008.5}, {"loc_id": 7817, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -7237.5, "z": 1347.3, "px": 812.8, "py": 2277.9}, {"loc_id": 7817, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 3, "x": -7237.5, "z": 1347.3, "px": 812.8, "py": 2277.9}, {"loc_id": 7820, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 9084.3, "z": -1732.5, "px": 3598.4, "py": 1752.3}, {"loc_id": 7821, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 4161.1, "z": 4676.5, "px": 2758.2, "py": 2846.1}, {"loc_id": 7821, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 4161.1, "z": 4676.5, "px": 2758.2, "py": 2846.1}, {"loc_id": 7823, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 3, "x": 7544.4, "z": -3776.5, "px": 3335.6, "py": 1403.5}, {"loc_id": 7824, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -5061.2, "z": 4793.4, "px": 1184.2, "py": 2866.1}, {"loc_id": 7825, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 5954.4, "z": 5050.3, "px": 3064.2, "py": 2909.9}, {"loc_id": 7825, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 5954.4, "z": 5050.3, "px": 3064.2, "py": 2909.9}, {"loc_id": 7826, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -2691.8, "z": 6400.1, "px": 1588.6, "py": 3140.3}, {"loc_id": 7826, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -2691.8, "z": 6400.1, "px": 1588.6, "py": 3140.3}, {"loc_id": 7827, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 8698.8, "z": -2936.1, "px": 3532.6, "py": 1546.9}, {"loc_id": 7827, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 8698.8, "z": -2936.1, "px": 3532.6, "py": 1546.9}, {"loc_id": 7828, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 9606.1, "z": -761.8, "px": 3687.4, "py": 1918.0}, {"loc_id": 7829, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -8836.4, "z": 1410.3, "px": 539.9, "py": 2288.7}, {"loc_id": 7830, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 6138.7, "z": -4474.4, "px": 3095.7, "py": 1284.4}, {"loc_id": 7832, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -6340.2, "z": 3705.0, "px": 965.9, "py": 2680.3}, {"loc_id": 7833, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 4282.2, "z": -4616.0, "px": 2778.8, "py": 1260.2}, {"loc_id": 7833, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 4282.2, "z": -4616.0, "px": 2778.8, "py": 1260.2}, {"loc_id": 7834, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -8130.2, "z": -313.4, "px": 660.4, "py": 1994.5}, {"loc_id": 7834, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -8130.2, "z": -313.4, "px": 660.4, "py": 1994.5}, {"loc_id": 7836, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 5821.2, "z": 5185.0, "px": 3041.5, "py": 2932.9}, {"loc_id": 7837, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -1339.3, "z": -6266.3, "px": 1819.4, "py": 978.6}, {"loc_id": 7838, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 7615.0, "z": -66.6, "px": 3347.6, "py": 2036.6}, {"loc_id": 7838, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7615.0, "z": -66.6, "px": 3347.6, "py": 2036.6}, {"loc_id": 7840, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 8773.2, "z": -2819.3, "px": 3545.3, "py": 1566.8}, {"loc_id": 7840, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 8773.2, "z": -2819.3, "px": 3545.3, "py": 1566.8}, {"loc_id": 7841, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -8250.8, "z": -444.8, "px": 639.9, "py": 1972.1}, {"loc_id": 7842, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 5891.8, "z": 2438.2, "px": 3053.5, "py": 2464.1}, {"loc_id": 7842, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 5891.8, "z": 2438.2, "px": 3053.5, "py": 2464.1}, {"loc_id": 7843, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7746.3, "z": 4220.3, "px": 3370.0, "py": 2768.3}, {"loc_id": 7844, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7045.3, "z": -131.2, "px": 3250.4, "py": 2025.6}, {"loc_id": 7845, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -8578.1, "z": 192.6, "px": 584.0, "py": 2080.9}, {"loc_id": 7846, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -3136.3, "z": 6151.6, "px": 1512.7, "py": 3097.9}, {"loc_id": 7849, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -7487.1, "z": 953.5, "px": 770.2, "py": 2210.7}, {"loc_id": 7851, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 8763.7, "z": -1026.8, "px": 3543.7, "py": 1872.8}, {"loc_id": 7853, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 4163.4, "z": -5954.3, "px": 2758.6, "py": 1031.8}, {"loc_id": 7856, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -8707.7, "z": -1596.1, "px": 561.9, "py": 1775.6}, {"loc_id": 7856, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -8707.7, "z": -1596.1, "px": 561.9, "py": 1775.6}, {"loc_id": 7859, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -1080.3, "z": -7545.9, "px": 1863.6, "py": 760.2}, {"loc_id": 7860, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 2566.9, "z": -5887.5, "px": 2486.1, "py": 1043.2}, {"loc_id": 7860, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 2566.9, "z": -5887.5, "px": 2486.1, "py": 1043.2}, {"loc_id": 7861, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -6533.8, "z": -4475.4, "px": 932.9, "py": 1284.2}, {"loc_id": 7863, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -7357.7, "z": 1403.5, "px": 792.3, "py": 2287.5}, {"loc_id": 7864, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 8198.8, "z": -2879.2, "px": 3447.3, "py": 1556.6}, {"loc_id": 7865, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 9080.4, "z": -1466.8, "px": 3597.7, "py": 1797.7}, {"loc_id": 7866, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 3905.0, "z": -5562.7, "px": 2714.5, "py": 1098.6}, {"loc_id": 7870, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 9401.5, "z": 1721.6, "px": 3652.5, "py": 2341.8}, {"loc_id": 7873, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 3012.5, "z": 6393.2, "px": 2562.1, "py": 3139.1}, {"loc_id": 7876, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": -9083.8, "z": -2299.1, "px": 497.7, "py": 1655.6}, {"loc_id": 7879, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": 9354.0, "z": -1608.3, "px": 3644.4, "py": 1773.5}, {"loc_id": 7884, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": -844.0, "z": -7736.5, "px": 1904.0, "py": 727.6}, {"loc_id": 7885, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": 9604.7, "z": -893.3, "px": 3687.2, "py": 1895.5}, {"loc_id": 7892, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": 7549.6, "z": -3511.6, "px": 3336.5, "py": 1448.7}, {"loc_id": 7906, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": 7924.8, "z": 2251.0, "px": 3400.5, "py": 2432.2}, {"loc_id": 7910, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": 7418.3, "z": 4298.3, "px": 3314.1, "py": 2781.6}, {"loc_id": 7915, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": 4812.0, "z": 6148.4, "px": 2869.2, "py": 3097.3}, {"loc_id": 7916, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": -8649.1, "z": 1341.7, "px": 571.9, "py": 2277.0}, {"loc_id": 7921, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 3, "x": 9211.3, "z": -1797.1, "px": 3620.1, "py": 1741.3}, {"loc_id": 7925, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 4921.5, "z": -4345.8, "px": 2887.9, "py": 1306.3}, {"loc_id": 7925, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 4921.5, "z": -4345.8, "px": 2887.9, "py": 1306.3}, {"loc_id": 7926, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -7032.6, "z": 4983.8, "px": 847.8, "py": 2898.6}, {"loc_id": 7926, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -7032.6, "z": 4983.8, "px": 847.8, "py": 2898.6}, {"loc_id": 7927, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -8194.9, "z": -3575.9, "px": 649.4, "py": 1437.7}, {"loc_id": 7927, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -8194.9, "z": -3575.9, "px": 649.4, "py": 1437.7}, {"loc_id": 7928, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 6657.5, "z": -249.3, "px": 3184.2, "py": 2005.5}, {"loc_id": 7928, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": 6657.5, "z": -249.3, "px": 3184.2, "py": 2005.5}, {"loc_id": 7929, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -2240.2, "z": -6463.7, "px": 1665.7, "py": 944.9}, {"loc_id": 7929, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": -2240.2, "z": -6463.7, "px": 1665.7, "py": 944.9}, {"loc_id": 7930, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 5758.7, "z": 4035.2, "px": 3030.8, "py": 2736.7}, {"loc_id": 7930, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 5758.7, "z": 4035.2, "px": 3030.8, "py": 2736.7}, {"loc_id": 7931, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 6153.5, "z": -1154.9, "px": 3098.2, "py": 1850.9}, {"loc_id": 7932, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 4099.1, "z": -5370.7, "px": 2747.6, "py": 1131.4}, {"loc_id": 7932, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 4099.1, "z": -5370.7, "px": 2747.6, "py": 1131.4}, {"loc_id": 7933, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -7740.3, "z": -3261.6, "px": 727.0, "py": 1491.4}, {"loc_id": 7933, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": -7740.3, "z": -3261.6, "px": 727.0, "py": 1491.4}, {"loc_id": 7934, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -6462.5, "z": 5570.0, "px": 945.1, "py": 2998.6}, {"loc_id": 7935, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -5949.6, "z": -5620.3, "px": 1032.6, "py": 1088.8}, {"loc_id": 7935, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": -5949.6, "z": -5620.3, "px": 1032.6, "py": 1088.8}, {"loc_id": 7936, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 8056.0, "z": 1141.6, "px": 3422.9, "py": 2242.8}, {"loc_id": 7937, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 3204.7, "z": 6842.7, "px": 2594.9, "py": 3215.8}, {"loc_id": 7938, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -7412.7, "z": -1348.6, "px": 782.9, "py": 1817.8}, {"loc_id": 7939, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -8516.0, "z": 1993.4, "px": 594.6, "py": 2388.2}, {"loc_id": 7939, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": -8516.0, "z": 1993.4, "px": 594.6, "py": 2388.2}, {"loc_id": 7940, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7740.7, "z": 2677.2, "px": 3369.1, "py": 2504.9}, {"loc_id": 7941, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 383.9, "z": 6721.7, "px": 2113.5, "py": 3195.2}, {"loc_id": 7941, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 383.9, "z": 6721.7, "px": 2113.5, "py": 3195.2}, {"loc_id": 7942, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 4927.2, "z": -5640.8, "px": 2888.9, "py": 1085.3}, {"loc_id": 7942, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 4927.2, "z": -5640.8, "px": 2888.9, "py": 1085.3}, {"loc_id": 7943, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -7425.2, "z": -3452.2, "px": 780.8, "py": 1458.8}, {"loc_id": 7943, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": -7425.2, "z": -3452.2, "px": 780.8, "py": 1458.8}, {"loc_id": 7944, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -7554.8, "z": 1477.4, "px": 758.6, "py": 2300.1}, {"loc_id": 7944, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -7554.8, "z": 1477.4, "px": 758.6, "py": 2300.1}, {"loc_id": 7945, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 6154.2, "z": -1603.4, "px": 3098.3, "py": 1774.4}, {"loc_id": 7945, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 6154.2, "z": -1603.4, "px": 3098.3, "py": 1774.4}, {"loc_id": 7946, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7235.2, "z": -2113.4, "px": 3282.8, "py": 1687.3}, {"loc_id": 7947, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -8948.8, "z": 1023.5, "px": 520.7, "py": 2222.7}, {"loc_id": 7947, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": -8948.8, "z": 1023.5, "px": 520.7, "py": 2222.7}, {"loc_id": 7948, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 6788.4, "z": 1290.5, "px": 3206.6, "py": 2268.2}, {"loc_id": 7948, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 6788.4, "z": 1290.5, "px": 3206.6, "py": 2268.2}, {"loc_id": 7949, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 136.6, "z": -6856.0, "px": 2071.3, "py": 877.9}, {"loc_id": 7950, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 2376.3, "z": -6920.7, "px": 2453.6, "py": 866.9}, {"loc_id": 7951, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 6079.8, "z": 2429.8, "px": 3085.6, "py": 2462.7}, {"loc_id": 7951, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": 6079.8, "z": 2429.8, "px": 3085.6, "py": 2462.7}, {"loc_id": 7952, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -9341.6, "z": -583.4, "px": 453.7, "py": 1948.4}, {"loc_id": 7952, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": -9341.6, "z": -583.4, "px": 453.7, "py": 1948.4}, {"loc_id": 7953, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -3769.0, "z": 5574.2, "px": 1404.8, "py": 2999.3}, {"loc_id": 7953, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -3769.0, "z": 5574.2, "px": 1404.8, "py": 2999.3}, {"loc_id": 7954, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 4726.9, "z": 6411.7, "px": 2854.7, "py": 3142.3}, {"loc_id": 7954, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 4726.9, "z": 6411.7, "px": 2854.7, "py": 3142.3}, {"loc_id": 7954, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": 4726.9, "z": 6411.7, "px": 2854.7, "py": 3142.3}, {"loc_id": 7955, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -1605.7, "z": -7239.3, "px": 1774.0, "py": 812.5}, {"loc_id": 7956, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 1923.4, "z": -7229.2, "px": 2376.3, "py": 814.2}, {"loc_id": 7957, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -9658.2, "z": 2228.6, "px": 399.7, "py": 2428.3}, {"loc_id": 7958, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 8136.9, "z": -843.7, "px": 3436.7, "py": 1904.0}, {"loc_id": 7958, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 8136.9, "z": -843.7, "px": 3436.7, "py": 1904.0}, {"loc_id": 7958, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": 8136.9, "z": -843.7, "px": 3436.7, "py": 1904.0}, {"loc_id": 7959, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -133.0, "z": 7233.9, "px": 2025.3, "py": 3282.6}, {"loc_id": 7960, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -5110.0, "z": 4553.5, "px": 1175.9, "py": 2825.1}, {"loc_id": 7960, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": -5110.0, "z": 4553.5, "px": 1175.9, "py": 2825.1}, {"loc_id": 7961, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 6274.7, "z": 2692.6, "px": 3118.9, "py": 2507.5}, {"loc_id": 7962, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -9525.2, "z": -2486.1, "px": 422.4, "py": 1623.7}, {"loc_id": 7962, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -9525.2, "z": -2486.1, "px": 422.4, "py": 1623.7}, {"loc_id": 7963, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 5886.8, "z": 5698.7, "px": 3052.7, "py": 3020.6}, {"loc_id": 7964, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -2628.0, "z": -6646.2, "px": 1599.5, "py": 913.7}, {"loc_id": 7964, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -2628.0, "z": -6646.2, "px": 1599.5, "py": 913.7}, {"loc_id": 7964, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": -2628.0, "z": -6646.2, "px": 1599.5, "py": 913.7}, {"loc_id": 7965, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7095.5, "z": -4788.4, "px": 3259.0, "py": 1230.8}, {"loc_id": 7965, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 7095.5, "z": -4788.4, "px": 3259.0, "py": 1230.8}, {"loc_id": 7965, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": 7095.5, "z": -4788.4, "px": 3259.0, "py": 1230.8}, {"loc_id": 7966, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 2567.3, "z": 6402.0, "px": 2486.2, "py": 3140.6}, {"loc_id": 7966, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 2567.3, "z": 6402.0, "px": 2486.2, "py": 3140.6}, {"loc_id": 7967, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -6270.2, "z": 4107.7, "px": 977.9, "py": 2749.0}, {"loc_id": 7968, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -3074.7, "z": 5386.2, "px": 1523.3, "py": 2967.2}, {"loc_id": 7968, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -3074.7, "z": 5386.2, "px": 1523.3, "py": 2967.2}, {"loc_id": 7969, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -5945.1, "z": 2754.6, "px": 1033.4, "py": 2518.1}, {"loc_id": 7970, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -9220.9, "z": -380.2, "px": 474.3, "py": 1983.1}, {"loc_id": 7970, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -9220.9, "z": -380.2, "px": 474.3, "py": 1983.1}, {"loc_id": 7970, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": -9220.9, "z": -380.2, "px": 474.3, "py": 1983.1}, {"loc_id": 7971, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 6581.4, "z": 5442.4, "px": 3171.2, "py": 2976.8}, {"loc_id": 7972, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -8826.2, "z": -1275.6, "px": 541.7, "py": 1830.3}, {"loc_id": 7972, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": -8826.2, "z": -1275.6, "px": 541.7, "py": 1830.3}, {"loc_id": 7973, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 5496.1, "z": 6260.6, "px": 2986.0, "py": 3116.5}, {"loc_id": 7973, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 5496.1, "z": 6260.6, "px": 2986.0, "py": 3116.5}, {"loc_id": 7974, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -6527.8, "z": 5685.1, "px": 933.9, "py": 3018.3}, {"loc_id": 7975, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -2878.1, "z": -5888.8, "px": 1556.8, "py": 1043.0}, {"loc_id": 7976, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 9156.5, "z": -1018.0, "px": 3610.7, "py": 1874.3}, {"loc_id": 7976, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 9156.5, "z": -1018.0, "px": 3610.7, "py": 1874.3}, {"loc_id": 7977, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -6458.6, "z": -5058.7, "px": 945.7, "py": 1184.6}, {"loc_id": 7978, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 6922.9, "z": 1524.1, "px": 3229.5, "py": 2308.1}, {"loc_id": 7979, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 6155.4, "z": 4995.2, "px": 3098.5, "py": 2900.5}, {"loc_id": 7979, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 6155.4, "z": 4995.2, "px": 3098.5, "py": 2900.5}, {"loc_id": 7980, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -9660.3, "z": 1145.3, "px": 399.3, "py": 2243.5}, {"loc_id": 7980, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -9660.3, "z": 1145.3, "px": 399.3, "py": 2243.5}, {"loc_id": 7981, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -6658.2, "z": -3259.7, "px": 911.7, "py": 1491.7}, {"loc_id": 7981, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -6658.2, "z": -3259.7, "px": 911.7, "py": 1491.7}, {"loc_id": 7982, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7093.3, "z": 4102.9, "px": 3258.6, "py": 2748.2}, {"loc_id": 7982, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 7093.3, "z": 4102.9, "px": 3258.6, "py": 2748.2}, {"loc_id": 7983, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -6794.7, "z": 4982.3, "px": 888.4, "py": 2898.3}, {"loc_id": 7983, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -6794.7, "z": 4982.3, "px": 888.4, "py": 2898.3}, {"loc_id": 7984, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7689.0, "z": 2108.7, "px": 3360.3, "py": 2407.9}, {"loc_id": 7984, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 7689.0, "z": 2108.7, "px": 3360.3, "py": 2407.9}, {"loc_id": 7985, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 6590.3, "z": -69.4, "px": 3172.7, "py": 2036.2}, {"loc_id": 7986, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -707.2, "z": 6590.9, "px": 1927.3, "py": 3172.8}, {"loc_id": 7987, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -7228.2, "z": 2890.9, "px": 814.4, "py": 2541.4}, {"loc_id": 7987, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -7228.2, "z": 2890.9, "px": 814.4, "py": 2541.4}, {"loc_id": 7988, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 2947.1, "z": 6922.2, "px": 2551.0, "py": 3229.4}, {"loc_id": 7989, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 4990.2, "z": 4408.6, "px": 2899.7, "py": 2800.4}, {"loc_id": 7990, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7235.0, "z": -4731.6, "px": 3282.8, "py": 1240.5}, {"loc_id": 7990, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": 7235.0, "z": -4731.6, "px": 3282.8, "py": 1240.5}, {"loc_id": 7991, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 5000.9, "z": -5515.9, "px": 2901.5, "py": 1106.6}, {"loc_id": 7992, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -4159.5, "z": 4920.8, "px": 1338.1, "py": 2887.8}, {"loc_id": 7992, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -4159.5, "z": 4920.8, "px": 1338.1, "py": 2887.8}, {"loc_id": 7993, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 9789.8, "z": -695.5, "px": 3718.8, "py": 1929.3}, {"loc_id": 7994, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -7613.4, "z": -1091.1, "px": 748.6, "py": 1861.8}, {"loc_id": 7994, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -7613.4, "z": -1091.1, "px": 748.6, "py": 1861.8}, {"loc_id": 7995, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 1208.3, "z": -6472.7, "px": 2254.2, "py": 943.3}, {"loc_id": 7995, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 1208.3, "z": -6472.7, "px": 2254.2, "py": 943.3}, {"loc_id": 7996, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -9404.7, "z": 387.6, "px": 442.9, "py": 2114.2}, {"loc_id": 7996, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": -9404.7, "z": 387.6, "px": 442.9, "py": 2114.2}, {"loc_id": 7997, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -9350.6, "z": -713.8, "px": 452.2, "py": 1926.2}, {"loc_id": 7998, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -6517.2, "z": -640.3, "px": 935.7, "py": 1938.7}, {"loc_id": 7998, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -6517.2, "z": -640.3, "px": 935.7, "py": 1938.7}, {"loc_id": 7998, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": -6517.2, "z": -640.3, "px": 935.7, "py": 1938.7}, {"loc_id": 7999, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 1091.9, "z": 7488.8, "px": 2234.4, "py": 3326.1}, {"loc_id": 7999, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 1091.9, "z": 7488.8, "px": 2234.4, "py": 3326.1}, {"loc_id": 8000, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 8522.8, "z": 1332.2, "px": 3502.6, "py": 2275.4}, {"loc_id": 8000, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 8522.8, "z": 1332.2, "px": 3502.6, "py": 2275.4}, {"loc_id": 8000, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": 8522.8, "z": 1332.2, "px": 3502.6, "py": 2275.4}, {"loc_id": 8001, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -9413.3, "z": 1286.4, "px": 441.5, "py": 2267.5}, {"loc_id": 8001, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -9413.3, "z": 1286.4, "px": 441.5, "py": 2267.5}, {"loc_id": 8002, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 9663.5, "z": -449.5, "px": 3697.2, "py": 1971.3}, {"loc_id": 8002, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": 9663.5, "z": -449.5, "px": 3697.2, "py": 1971.3}, {"loc_id": 8003, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 8447.3, "z": -3071.9, "px": 3489.7, "py": 1523.7}, {"loc_id": 8003, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 8447.3, "z": -3071.9, "px": 3489.7, "py": 1523.7}, {"loc_id": 8003, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": 8447.3, "z": -3071.9, "px": 3489.7, "py": 1523.7}, {"loc_id": 8004, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 8971.6, "z": 1847.6, "px": 3579.2, "py": 2363.3}, {"loc_id": 8004, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 8971.6, "z": 1847.6, "px": 3579.2, "py": 2363.3}, {"loc_id": 8005, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7686.3, "z": -4294.3, "px": 3359.8, "py": 1315.1}, {"loc_id": 8005, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 7686.3, "z": -4294.3, "px": 3359.8, "py": 1315.1}, {"loc_id": 8006, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 3837.3, "z": -5770.4, "px": 2702.9, "py": 1063.2}, {"loc_id": 8006, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 3837.3, "z": -5770.4, "px": 2702.9, "py": 1063.2}, {"loc_id": 8007, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 4470.6, "z": 6138.3, "px": 2811.0, "py": 3095.6}, {"loc_id": 8008, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -3188.4, "z": -6456.8, "px": 1503.8, "py": 946.0}, {"loc_id": 8008, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -3188.4, "z": -6456.8, "px": 1503.8, "py": 946.0}, {"loc_id": 8008, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": -3188.4, "z": -6456.8, "px": 1503.8, "py": 946.0}, {"loc_id": 8009, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -1212.0, "z": -5946.4, "px": 1841.2, "py": 1033.1}, {"loc_id": 8009, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -1212.0, "z": -5946.4, "px": 1841.2, "py": 1033.1}, {"loc_id": 8010, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 4922.6, "z": 4736.7, "px": 2888.1, "py": 2856.4}, {"loc_id": 8011, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -3338.1, "z": -6215.1, "px": 1478.3, "py": 987.3}, {"loc_id": 8012, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7284.2, "z": 1912.2, "px": 3291.2, "py": 2374.3}, {"loc_id": 8012, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": 7284.2, "z": 1912.2, "px": 3291.2, "py": 2374.3}, {"loc_id": 8013, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7173.3, "z": -3384.0, "px": 3272.2, "py": 1470.5}, {"loc_id": 8013, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 7173.3, "z": -3384.0, "px": 3272.2, "py": 1470.5}, {"loc_id": 8014, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 3262.8, "z": 6525.2, "px": 2604.9, "py": 3161.6}, {"loc_id": 8014, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 3262.8, "z": 6525.2, "px": 2604.9, "py": 3161.6}, {"loc_id": 8014, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": 3262.8, "z": 6525.2, "px": 2604.9, "py": 3161.6}, {"loc_id": 8015, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -9546.2, "z": -1668.2, "px": 418.8, "py": 1763.3}, {"loc_id": 8015, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": -9546.2, "z": -1668.2, "px": 418.8, "py": 1763.3}, {"loc_id": 8015, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": -9546.2, "z": -1668.2, "px": 418.8, "py": 1763.3}, {"loc_id": 8016, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 3903.2, "z": -6388.4, "px": 2714.1, "py": 957.7}, {"loc_id": 8016, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 3903.2, "z": -6388.4, "px": 2714.1, "py": 957.7}, {"loc_id": 8017, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -2298.7, "z": -6710.6, "px": 1655.7, "py": 902.7}, {"loc_id": 8018, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7032.2, "z": -4920.3, "px": 3248.2, "py": 1208.3}, {"loc_id": 8019, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7284.4, "z": 57.1, "px": 3291.2, "py": 2057.7}, {"loc_id": 8020, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -4929.2, "z": 4341.8, "px": 1206.7, "py": 2789.0}, {"loc_id": 8020, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": -4929.2, "z": 4341.8, "px": 1206.7, "py": 2789.0}, {"loc_id": 8021, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -9736.1, "z": -1092.3, "px": 386.4, "py": 1861.6}, {"loc_id": 8022, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7363.2, "z": -2109.5, "px": 3304.7, "py": 1688.0}, {"loc_id": 8022, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 3, "x": 7363.2, "z": -2109.5, "px": 3304.7, "py": 1688.0}, {"loc_id": 8023, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 8649.2, "z": 1224.7, "px": 3524.1, "py": 2257.0}, {"loc_id": 8024, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 6263.8, "z": -4683.6, "px": 3117.0, "py": 1248.7}, {"loc_id": 8024, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 3, "x": 6263.8, "z": -4683.6, "px": 3117.0, "py": 1248.7}, {"loc_id": 8025, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 3, "x": 7684.5, "z": -4542.3, "px": 3359.5, "py": 1272.8}, {"loc_id": 8026, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7808.6, "z": -2315.8, "px": 3380.7, "py": 1652.8}, {"loc_id": 8026, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 3, "x": 7808.6, "z": -2315.8, "px": 3380.7, "py": 1652.8}, {"loc_id": 8028, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -7047.7, "z": 642.8, "px": 845.2, "py": 2157.7}, {"loc_id": 8029, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 4468.8, "z": -6985.4, "px": 2810.7, "py": 855.8}, {"loc_id": 8033, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -9086.1, "z": 951.4, "px": 497.3, "py": 2210.4}, {"loc_id": 8033, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 3, "x": -9086.1, "z": 951.4, "px": 497.3, "py": 2210.4}, {"loc_id": 8034, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 3, "x": 3451.1, "z": 5556.0, "px": 2637.0, "py": 2996.2}, {"loc_id": 8034, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 3, "x": 3451.1, "z": 5556.0, "px": 2637.0, "py": 2996.2}, {"loc_id": 8035, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 9153.3, "z": -1844.8, "px": 3610.2, "py": 1733.2}, {"loc_id": 8037, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 3, "x": -2807.6, "z": 6133.8, "px": 1568.8, "py": 3094.8}, {"loc_id": 8039, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 3, "x": -2806.5, "z": -5755.0, "px": 1569.0, "py": 1065.8}, {"loc_id": 8042, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 3, "x": -2868.4, "z": 6462.6, "px": 1558.5, "py": 3151.0}, {"loc_id": 8046, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 3, "x": 5943.3, "z": 5824.3, "px": 3062.3, "py": 3042.0}, {"loc_id": 8047, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 3, "x": 9667.4, "z": 1608.9, "px": 3697.9, "py": 2322.6}, {"loc_id": 8049, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -6532.7, "z": 5633.6, "px": 933.1, "py": 3009.5}, {"loc_id": 8050, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 2809.1, "z": 5497.7, "px": 2527.4, "py": 2986.3}, {"loc_id": 8051, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 3, "x": 6907.9, "z": -3513.2, "px": 3226.9, "py": 1448.4}, {"loc_id": 8051, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 6907.9, "z": -3513.2, "px": 3226.9, "py": 1448.4}, {"loc_id": 8053, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 3, "x": 3908.6, "z": 5878.8, "px": 2715.1, "py": 3051.3}, {"loc_id": 8053, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 3, "x": 3908.6, "z": 5878.8, "px": 2715.1, "py": 3051.3}, {"loc_id": 8056, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 3, "x": 9354.2, "z": -1909.8, "px": 3644.5, "py": 1722.1}, {"loc_id": 8058, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 7235.1, "z": -129.9, "px": 3282.8, "py": 2025.8}, {"loc_id": 8058, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 3, "x": 7235.1, "z": -129.9, "px": 3282.8, "py": 2025.8}, {"loc_id": 8060, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 3, "x": 6388.6, "z": 2954.0, "px": 3138.3, "py": 2552.1}, {"loc_id": 8061, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 3, "x": -6473.5, "z": -3966.0, "px": 943.2, "py": 1371.1}, {"loc_id": 8063, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 3, "x": -1927.0, "z": -7109.1, "px": 1719.1, "py": 834.7}, {"loc_id": 8064, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 3, "x": -6211.9, "z": 3708.7, "px": 987.8, "py": 2681.0}, {"loc_id": 8066, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -5320.4, "z": 6068.3, "px": 1140.0, "py": 3083.7}, {"loc_id": 8067, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -393.3, "z": -6396.6, "px": 1980.9, "py": 956.3}, {"loc_id": 8068, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 1475.3, "z": -6452.1, "px": 2299.8, "py": 946.8}, {"loc_id": 8069, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 3, "x": -8636.0, "z": 2037.8, "px": 574.1, "py": 2395.8}, {"loc_id": 8070, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -7044.9, "z": 1204.9, "px": 845.7, "py": 2253.6}, {"loc_id": 8071, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 3, "x": -5699.7, "z": 3578.9, "px": 1075.3, "py": 2658.8}, {"loc_id": 8071, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -5699.7, "z": 3578.9, "px": 1075.3, "py": 2658.8}, {"loc_id": 8072, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 3, "x": -7224.3, "z": 3907.0, "px": 815.1, "py": 2714.8}, {"loc_id": 8074, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 3, "x": -8635.1, "z": 1288.5, "px": 574.3, "py": 2267.9}, {"loc_id": 8077, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 3, "x": -1908.5, "z": 7235.3, "px": 1722.3, "py": 3282.8}, {"loc_id": 8081, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 3, "x": 7236.1, "z": -2176.0, "px": 3283.0, "py": 1676.6}, {"loc_id": 8082, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 3, "x": -1158.6, "z": -5956.1, "px": 1850.3, "py": 1031.5}, {"loc_id": 8083, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -7028.9, "z": -2113.9, "px": 848.4, "py": 1687.2}, {"loc_id": 8083, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 3, "x": -7028.9, "z": -2113.9, "px": 848.4, "py": 1687.2}, {"loc_id": 8084, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 3, "x": 8756.1, "z": 564.6, "px": 3542.4, "py": 2144.4}, {"loc_id": 8084, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 8756.1, "z": 564.6, "px": 3542.4, "py": 2144.4}, {"loc_id": 8085, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 2378.7, "z": -6465.8, "px": 2454.0, "py": 944.5}, {"loc_id": 8086, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 3, "x": 4415.9, "z": -6012.9, "px": 2801.6, "py": 1021.8}, {"loc_id": 8086, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 3, "x": 4415.9, "z": -6012.9, "px": 2801.6, "py": 1021.8}, {"loc_id": 8087, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 3, "x": 266.8, "z": 7100.9, "px": 2093.5, "py": 3259.9}, {"loc_id": 8088, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 3, "x": 197.6, "z": 7223.1, "px": 2081.7, "py": 3280.7}, {"loc_id": 8088, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 3, "x": 197.6, "z": 7223.1, "px": 2081.7, "py": 3280.7}, {"loc_id": 8089, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 3, "x": -2167.1, "z": 7156.8, "px": 1678.1, "py": 3269.4}, {"loc_id": 8090, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 3, "x": 3905.5, "z": -5505.4, "px": 2714.5, "py": 1108.4}, {"loc_id": 8091, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 3, "x": -7432.2, "z": 1163.5, "px": 779.6, "py": 2246.6}, {"loc_id": 8092, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 3, "x": -835.0, "z": -7482.1, "px": 1905.5, "py": 771.1}, {"loc_id": 8092, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 3, "x": -835.0, "z": -7482.1, "px": 1905.5, "py": 771.1}, {"loc_id": 8094, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 3721.6, "z": -5574.1, "px": 2683.2, "py": 1096.7}, {"loc_id": 8095, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 3, "x": 6197.6, "z": -4550.0, "px": 3105.7, "py": 1271.5}, {"loc_id": 8095, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 3, "x": 6197.6, "z": -4550.0, "px": 3105.7, "py": 1271.5}, {"loc_id": 8097, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 3, "x": -3206.5, "z": 5318.2, "px": 1500.8, "py": 2955.6}, {"loc_id": 8097, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -3206.5, "z": 5318.2, "px": 1500.8, "py": 2955.6}, {"loc_id": 8099, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -7096.6, "z": 1333.7, "px": 836.8, "py": 2275.6}, {"loc_id": 8100, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 3, "x": 6984.1, "z": -774.0, "px": 3240.0, "py": 1915.9}, {"loc_id": 8101, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 3, "x": 2946.3, "z": 6714.7, "px": 2550.8, "py": 3194.0}, {"loc_id": 8102, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -6652.7, "z": 5757.6, "px": 912.6, "py": 3030.6}, {"loc_id": 8104, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 3, "x": 4806.9, "z": 6199.7, "px": 2868.4, "py": 3106.1}, {"loc_id": 8104, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 3, "x": 4806.9, "z": 6199.7, "px": 2868.4, "py": 3106.1}, {"loc_id": 8106, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 3, "x": 8755.7, "z": -1073.3, "px": 3542.3, "py": 1864.8}, {"loc_id": 8108, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 3, "x": 6842.8, "z": 5301.4, "px": 3215.8, "py": 2952.8}, {"loc_id": 8113, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 3, "x": 8371.2, "z": -1034.0, "px": 3476.7, "py": 1871.5}, {"loc_id": 8121, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 3, "x": -4429.1, "z": -4401.2, "px": 1292.1, "py": 1296.9}, {"loc_id": 8123, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 3, "x": 3319.5, "z": 5628.3, "px": 2614.5, "py": 3008.6}, {"loc_id": 8124, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 3, "x": 5703.9, "z": 6198.7, "px": 3021.5, "py": 3105.9}, {"loc_id": 8125, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 3, "x": 7879.3, "z": 2802.0, "px": 3392.7, "py": 2526.2}, {"loc_id": 8129, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 3, "x": -7050.4, "z": -1550.8, "px": 844.7, "py": 1783.3}, {"loc_id": 8130, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 3, "x": 7925.9, "z": 1977.3, "px": 3400.7, "py": 2385.5}, {"loc_id": 8133, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 3, "x": 5254.4, "z": 6131.6, "px": 2944.8, "py": 3094.5}, {"loc_id": 8136, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 3, "x": -1909.2, "z": 6854.3, "px": 1722.2, "py": 3217.8}, {"loc_id": 8137, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 3, "x": 2237.2, "z": -6518.3, "px": 2429.8, "py": 935.5}, {"loc_id": 8138, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 3, "x": 8708.3, "z": -3320.1, "px": 3534.2, "py": 1481.4}, {"loc_id": 8139, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 3, "x": -6526.1, "z": 3137.6, "px": 934.2, "py": 2583.5}, {"loc_id": 8142, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 3, "x": 7820.8, "z": 4211.8, "px": 3382.7, "py": 2766.8}, {"loc_id": 8143, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 3, "x": 3068.7, "z": 7097.4, "px": 2571.7, "py": 3259.3}, {"loc_id": 8151, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -3974.9, "z": -5302.6, "px": 1369.6, "py": 1143.0}, {"loc_id": 8163, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 3, "x": -2185.7, "z": -7299.6, "px": 1675.0, "py": 802.2}, {"loc_id": 9946, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 3, "x": -640.0, "z": -9408.0, "px": 1938.8, "py": 442.4}, {"loc_id": 9946, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 3, "x": -640.0, "z": -9408.0, "px": 1938.8, "py": 442.4}, {"loc_id": 9947, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 3, "x": -2240.0, "z": -8896.0, "px": 1665.7, "py": 529.7}, {"loc_id": 9948, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 3, "x": -1216.0, "z": -9472.0, "px": 1840.5, "py": 431.4}, {"loc_id": 9949, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 3, "x": -896.0, "z": -9536.0, "px": 1895.1, "py": 420.5}, {"loc_id": 9952, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 3, "x": 640.0, "z": -9408.0, "px": 2157.2, "py": 442.4}, {"loc_id": 9954, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 3, "x": 320.0, "z": -8896.0, "px": 2102.6, "py": 529.7}, {"loc_id": 9956, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 3, "x": 320.0, "z": -8960.0, "px": 2102.6, "py": 518.8}, {"loc_id": 9960, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 3, "x": -768.0, "z": -9408.0, "px": 1916.9, "py": 442.4}, {"loc_id": 9961, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 3, "x": 704.0, "z": -9024.0, "px": 2168.1, "py": 507.9}, {"loc_id": 9965, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 3, "x": 768.0, "z": -9344.0, "px": 2179.1, "py": 453.3}, {"loc_id": 9966, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 3, "x": 1600.0, "z": -9152.0, "px": 2321.1, "py": 486.1}, {"loc_id": 9966, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 3, "x": 1600.0, "z": -9152.0, "px": 2321.1, "py": 486.1}, {"loc_id": 9968, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 3, "x": -256.0, "z": -9920.0, "px": 2004.3, "py": 355.0}, {"loc_id": 9968, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 3, "x": -256.0, "z": -9920.0, "px": 2004.3, "py": 355.0}, {"loc_id": 9971, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 3, "x": 320.0, "z": -8832.0, "px": 2102.6, "py": 540.7}, {"loc_id": 9976, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 3, "x": 256.0, "z": -8832.0, "px": 2091.7, "py": 540.7}, {"loc_id": 9976, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 3, "x": 256.0, "z": -8832.0, "px": 2091.7, "py": 540.7}, {"loc_id": 9979, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 3, "x": -256.0, "z": -9984.0, "px": 2004.3, "py": 344.1}, {"loc_id": 9980, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 3, "x": -768.0, "z": -9344.0, "px": 1916.9, "py": 453.3}, {"loc_id": 9981, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 3, "x": -448.0, "z": -8832.0, "px": 1971.5, "py": 540.7}, {"loc_id": 9982, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 3, "x": -832.0, "z": -9600.0, "px": 1906.0, "py": 409.6}, {"loc_id": 9984, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 3, "x": 704.0, "z": -9152.0, "px": 2168.1, "py": 486.1}, {"loc_id": 9984, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 3, "x": 704.0, "z": -9152.0, "px": 2168.1, "py": 486.1}, {"loc_id": 9985, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 3, "x": 256.0, "z": -8768.0, "px": 2091.7, "py": 551.6}, {"loc_id": 9987, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 3, "x": -384.0, "z": -8768.0, "px": 1982.5, "py": 551.6}, {"loc_id": 9988, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 3, "x": -704.0, "z": -9536.0, "px": 1927.9, "py": 420.5}, {"loc_id": 9990, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 3, "x": -384.0, "z": -9984.0, "px": 1982.5, "py": 344.1}, {"loc_id": 9990, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 3, "x": -384.0, "z": -9984.0, "px": 1982.5, "py": 344.1}, {"loc_id": 9991, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 3, "x": -640.0, "z": -9472.0, "px": 1938.8, "py": 431.4}, {"loc_id": 9991, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 3, "x": -640.0, "z": -9472.0, "px": 1938.8, "py": 431.4}, {"loc_id": 9994, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 3, "x": -640.0, "z": -9280.0, "px": 1938.8, "py": 464.2}, {"loc_id": 9995, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 3, "x": -320.0, "z": -8832.0, "px": 1993.4, "py": 540.7}, {"loc_id": 9996, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 3, "x": 384.0, "z": -8832.0, "px": 2113.5, "py": 540.7}, {"loc_id": 9998, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 3, "x": 768.0, "z": -9280.0, "px": 2179.1, "py": 464.2}, {"loc_id": 10001, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 3, "x": 1536.0, "z": -9216.0, "px": 2310.1, "py": 475.1}, {"loc_id": 10004, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 3, "x": 256.0, "z": -8704.0, "px": 2091.7, "py": 562.5}, {"loc_id": 10007, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 3, "x": 704.0, "z": -9408.0, "px": 2168.1, "py": 442.4}, {"loc_id": 10008, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 3, "x": -832.0, "z": -9344.0, "px": 1906.0, "py": 453.3}, {"loc_id": 10012, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 3, "x": 448.0, "z": -9344.0, "px": 2124.5, "py": 453.3}, {"loc_id": 10014, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 3, "x": -448.0, "z": -8896.0, "px": 1971.5, "py": 529.7}, {"loc_id": 10017, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 3, "x": -768.0, "z": -8832.0, "px": 1916.9, "py": 540.7}, {"loc_id": 10309, "loc_name": "SulfurArch", "item": "Pickable: SulfurStone", "count": 3, "x": -191.4, "z": -8897.6, "px": 2015.3, "py": 529.5}, {"loc_id": 10363, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -178.8, "z": -9678.8, "px": 2017.5, "py": 396.2}, {"loc_id": 10364, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -3726.4, "z": -8563.2, "px": 1412.0, "py": 586.5}, {"loc_id": 10365, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -2063.5, "z": -8460.3, "px": 1695.8, "py": 604.1}, {"loc_id": 10365, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -2063.5, "z": -8460.3, "px": 1695.8, "py": 604.1}, {"loc_id": 10366, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -331.5, "z": -8945.6, "px": 1991.4, "py": 521.3}, {"loc_id": 10370, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -5363.1, "z": -7603.3, "px": 1132.7, "py": 750.4}, {"loc_id": 10371, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 962.4, "z": -9403.4, "px": 2212.2, "py": 443.2}, {"loc_id": 10373, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -4978.9, "z": -8394.5, "px": 1198.3, "py": 615.3}, {"loc_id": 10374, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -3765.5, "z": -9097.9, "px": 1405.4, "py": 495.3}, {"loc_id": 10375, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -3715.5, "z": -8186.1, "px": 1413.9, "py": 650.9}, {"loc_id": 10375, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -3715.5, "z": -8186.1, "px": 1413.9, "py": 650.9}, {"loc_id": 10376, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 312.0, "z": -9487.9, "px": 2101.2, "py": 428.7}, {"loc_id": 10377, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -4428.4, "z": -8077.1, "px": 1292.2, "py": 669.5}, {"loc_id": 10377, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -4428.4, "z": -8077.1, "px": 1292.2, "py": 669.5}, {"loc_id": 10380, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -1932.3, "z": -9010.9, "px": 1718.2, "py": 510.1}, {"loc_id": 10381, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -896.0, "z": -9331.5, "px": 1895.1, "py": 455.4}, {"loc_id": 10382, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 3701.1, "z": -8573.0, "px": 2679.7, "py": 584.9}, {"loc_id": 10384, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 137.7, "z": -8588.7, "px": 2071.5, "py": 582.2}, {"loc_id": 10384, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 137.7, "z": -8588.7, "px": 2071.5, "py": 582.2}, {"loc_id": 10385, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 2689.8, "z": -9009.8, "px": 2507.1, "py": 510.3}, {"loc_id": 10385, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 2689.8, "z": -9009.8, "px": 2507.1, "py": 510.3}, {"loc_id": 10386, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -390.4, "z": -9539.1, "px": 1981.4, "py": 420.0}, {"loc_id": 10387, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 399.7, "z": -9723.1, "px": 2116.2, "py": 388.6}, {"loc_id": 10388, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -1227.5, "z": -9805.4, "px": 1838.5, "py": 374.5}, {"loc_id": 10389, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -2312.8, "z": -8500.5, "px": 1653.3, "py": 597.2}, {"loc_id": 10391, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 2182.1, "z": -9409.7, "px": 2420.4, "py": 442.1}, {"loc_id": 10393, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -5235.7, "z": -7989.9, "px": 1154.4, "py": 684.4}, {"loc_id": 10393, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -5235.7, "z": -7989.9, "px": 1154.4, "py": 684.4}, {"loc_id": 10395, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 3189.0, "z": -9417.1, "px": 2592.3, "py": 440.8}, {"loc_id": 10395, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 3189.0, "z": -9417.1, "px": 2592.3, "py": 440.8}, {"loc_id": 10397, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -714.9, "z": -8821.4, "px": 1926.0, "py": 542.5}, {"loc_id": 10399, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 1664.3, "z": -9478.6, "px": 2332.0, "py": 430.3}, {"loc_id": 10400, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 1676.6, "z": -9329.5, "px": 2334.1, "py": 455.8}, {"loc_id": 10401, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 2306.0, "z": -8389.1, "px": 2441.6, "py": 616.3}, {"loc_id": 10403, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 189.0, "z": -9527.4, "px": 2080.3, "py": 422.0}, {"loc_id": 10404, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -3454.3, "z": -8498.3, "px": 1458.5, "py": 597.6}, {"loc_id": 10407, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -2227.1, "z": -8975.8, "px": 1667.9, "py": 516.1}, {"loc_id": 10408, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 3260.2, "z": -8566.6, "px": 2604.4, "py": 586.0}, {"loc_id": 10409, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -1861.2, "z": -9164.1, "px": 1730.4, "py": 484.0}, {"loc_id": 10410, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -3518.8, "z": -8713.9, "px": 1447.5, "py": 560.8}, {"loc_id": 10412, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 1017.0, "z": -8768.9, "px": 2221.6, "py": 551.4}, {"loc_id": 10413, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -1486.2, "z": -9662.4, "px": 1794.4, "py": 399.0}, {"loc_id": 10414, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 2765.4, "z": -9397.3, "px": 2520.0, "py": 444.2}, {"loc_id": 10414, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 2765.4, "z": -9397.3, "px": 2520.0, "py": 444.2}, {"loc_id": 10415, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -4303.0, "z": -8258.8, "px": 1313.6, "py": 638.5}, {"loc_id": 10416, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 3462.5, "z": -8376.2, "px": 2638.9, "py": 618.5}, {"loc_id": 10416, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 3462.5, "z": -8376.2, "px": 2638.9, "py": 618.5}, {"loc_id": 10417, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -2802.5, "z": -8379.1, "px": 1569.7, "py": 618.0}, {"loc_id": 10418, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 5321.0, "z": -7875.7, "px": 2956.1, "py": 703.9}, {"loc_id": 10421, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 2039.7, "z": -9656.1, "px": 2396.1, "py": 400.0}, {"loc_id": 10425, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -5061.7, "z": -7682.4, "px": 1184.1, "py": 736.9}, {"loc_id": 10426, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -432.9, "z": -8636.1, "px": 1974.1, "py": 574.1}, {"loc_id": 10427, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -3975.9, "z": -8756.2, "px": 1369.4, "py": 553.6}, {"loc_id": 10428, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -1932.8, "z": -8893.4, "px": 1718.1, "py": 530.2}, {"loc_id": 10432, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -3774.0, "z": -8316.7, "px": 1403.9, "py": 628.6}, {"loc_id": 10434, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -191.7, "z": -9855.6, "px": 2015.3, "py": 366.0}, {"loc_id": 10434, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -191.7, "z": -9855.6, "px": 2015.3, "py": 366.0}, {"loc_id": 10435, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -2245.3, "z": -9082.9, "px": 1664.8, "py": 497.9}, {"loc_id": 10436, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -3636.7, "z": -9165.9, "px": 1427.3, "py": 483.7}, {"loc_id": 10438, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -2370.6, "z": -8899.1, "px": 1643.4, "py": 529.2}, {"loc_id": 10439, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -3913.0, "z": -8241.8, "px": 1380.2, "py": 641.4}, {"loc_id": 10440, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 2575.3, "z": -9358.6, "px": 2487.5, "py": 450.8}, {"loc_id": 10441, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 3318.3, "z": -8311.0, "px": 2614.3, "py": 629.6}, {"loc_id": 10443, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 2166.8, "z": -8451.4, "px": 2417.8, "py": 605.6}, {"loc_id": 10444, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 3446.6, "z": -8053.2, "px": 2636.2, "py": 673.6}, {"loc_id": 10447, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -4429.8, "z": -7933.1, "px": 1292.0, "py": 694.1}, {"loc_id": 10449, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 4083.4, "z": -8968.4, "px": 2744.9, "py": 517.4}, {"loc_id": 10452, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 3204.7, "z": -8389.1, "px": 2594.9, "py": 616.3}, {"loc_id": 10454, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -5374.5, "z": -7741.8, "px": 1130.8, "py": 726.7}, {"loc_id": 10454, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -5374.5, "z": -7741.8, "px": 1130.8, "py": 726.7}, {"loc_id": 10456, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -316.3, "z": -9088.7, "px": 1994.0, "py": 496.9}, {"loc_id": 10458, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 3982.6, "z": -8766.4, "px": 2727.7, "py": 551.9}, {"loc_id": 10459, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -3466.1, "z": -8944.4, "px": 1456.5, "py": 521.5}, {"loc_id": 10460, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -1410.6, "z": -9741.7, "px": 1807.3, "py": 385.4}, {"loc_id": 10461, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 973.3, "z": -9139.2, "px": 2214.1, "py": 488.2}, {"loc_id": 10462, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 2300.9, "z": -9147.2, "px": 2440.7, "py": 486.9}, {"loc_id": 10463, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -588.6, "z": -9796.0, "px": 1947.5, "py": 376.1}, {"loc_id": 10463, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -588.6, "z": -9796.0, "px": 1947.5, "py": 376.1}, {"loc_id": 10464, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 435.4, "z": -9531.2, "px": 2122.3, "py": 421.3}, {"loc_id": 10465, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -1796.4, "z": -9359.1, "px": 1741.4, "py": 450.7}, {"loc_id": 10468, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 1792.7, "z": -8449.5, "px": 2354.0, "py": 606.0}, {"loc_id": 10469, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -4539.5, "z": -7938.6, "px": 1273.3, "py": 693.1}, {"loc_id": 10470, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 779.4, "z": -8628.8, "px": 2181.0, "py": 575.4}, {"loc_id": 10471, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -3904.3, "z": -8896.6, "px": 1381.7, "py": 529.6}, {"loc_id": 10472, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -1274.0, "z": -9136.2, "px": 1830.6, "py": 488.8}, {"loc_id": 10473, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -5119.9, "z": -8140.3, "px": 1174.2, "py": 658.7}, {"loc_id": 10474, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 4150.6, "z": -8881.0, "px": 2756.4, "py": 532.3}, {"loc_id": 10474, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 4150.6, "z": -8881.0, "px": 2756.4, "py": 532.3}, {"loc_id": 10475, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 1653.6, "z": -9778.2, "px": 2330.2, "py": 379.2}, {"loc_id": 10476, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 3314.8, "z": -9329.4, "px": 2613.7, "py": 455.8}, {"loc_id": 10477, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 3378.8, "z": -8186.8, "px": 2624.6, "py": 650.8}, {"loc_id": 10480, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -1353.9, "z": -9356.6, "px": 1816.9, "py": 451.1}, {"loc_id": 10483, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 2431.7, "z": -9288.8, "px": 2463.0, "py": 462.7}, {"loc_id": 10484, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 5071.4, "z": -7743.2, "px": 2913.5, "py": 726.5}, {"loc_id": 10486, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 186.5, "z": -8778.8, "px": 2079.8, "py": 549.8}, {"loc_id": 10489, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -4429.7, "z": -8268.4, "px": 1292.0, "py": 636.9}, {"loc_id": 10489, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -4429.7, "z": -8268.4, "px": 1292.0, "py": 636.9}, {"loc_id": 10492, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -586.9, "z": -8967.8, "px": 1947.8, "py": 517.5}, {"loc_id": 10493, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 3.2, "z": -8630.2, "px": 2048.5, "py": 575.1}, {"loc_id": 10493, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 3.2, "z": -8630.2, "px": 2048.5, "py": 575.1}, {"loc_id": 10495, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 972.8, "z": -8649.6, "px": 2214.0, "py": 571.8}, {"loc_id": 10496, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 4237.2, "z": -8704.7, "px": 2771.1, "py": 562.4}, {"loc_id": 10497, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 2871.7, "z": -9209.4, "px": 2538.1, "py": 476.3}, {"loc_id": 10498, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -1414.6, "z": -9533.3, "px": 1806.6, "py": 421.0}, {"loc_id": 10499, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -5006.4, "z": -8143.9, "px": 1193.6, "py": 658.1}, {"loc_id": 10500, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -4813.7, "z": -8133.6, "px": 1226.5, "py": 659.9}, {"loc_id": 10501, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 1408.0, "z": -9008.4, "px": 2288.3, "py": 510.6}, {"loc_id": 10503, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -3312.5, "z": -8910.4, "px": 1482.7, "py": 527.3}, {"loc_id": 10503, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -3312.5, "z": -8910.4, "px": 1482.7, "py": 527.3}, {"loc_id": 10506, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 3.1, "z": -8880.6, "px": 2048.5, "py": 532.4}, {"loc_id": 10506, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 3.1, "z": -8880.6, "px": 2048.5, "py": 532.4}, {"loc_id": 10507, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -1609.6, "z": -9616.0, "px": 1773.3, "py": 406.9}, {"loc_id": 10508, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 2802.4, "z": -9291.9, "px": 2526.3, "py": 462.2}, {"loc_id": 10509, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 2800.2, "z": -8947.2, "px": 2525.9, "py": 521.0}, {"loc_id": 10510, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -3830.2, "z": -8179.8, "px": 1394.3, "py": 652.0}, {"loc_id": 10512, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -5617.0, "z": -7558.3, "px": 1089.4, "py": 758.1}, {"loc_id": 10513, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 2037.7, "z": -8333.8, "px": 2395.8, "py": 625.7}, {"loc_id": 10513, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 2037.7, "z": -8333.8, "px": 2395.8, "py": 625.7}, {"loc_id": 10514, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -3464.7, "z": -8396.4, "px": 1456.7, "py": 615.0}, {"loc_id": 10515, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -1405.3, "z": -9269.4, "px": 1808.2, "py": 466.0}, {"loc_id": 10516, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 1468.9, "z": -9473.7, "px": 2298.7, "py": 431.2}, {"loc_id": 10516, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 1468.9, "z": -9473.7, "px": 2298.7, "py": 431.2}, {"loc_id": 10517, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 3517.3, "z": -8521.8, "px": 2648.3, "py": 593.6}, {"loc_id": 10518, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -5109.5, "z": -7802.5, "px": 1176.0, "py": 716.4}, {"loc_id": 10521, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 2041.5, "z": -8564.6, "px": 2396.4, "py": 586.3}, {"loc_id": 10521, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 2041.5, "z": -8564.6, "px": 2396.4, "py": 586.3}, {"loc_id": 10523, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -199.0, "z": -9038.8, "px": 2014.0, "py": 505.4}, {"loc_id": 10524, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 5324.2, "z": -8112.6, "px": 2956.7, "py": 663.4}, {"loc_id": 10528, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -891.9, "z": -8756.7, "px": 1895.8, "py": 553.5}, {"loc_id": 10531, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -2098.1, "z": -9275.6, "px": 1689.9, "py": 465.0}, {"loc_id": 10532, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 179.4, "z": -9094.2, "px": 2078.6, "py": 495.9}, {"loc_id": 10532, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 179.4, "z": -9094.2, "px": 2078.6, "py": 495.9}, {"loc_id": 10534, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -770.8, "z": -8646.5, "px": 1916.5, "py": 572.3}, {"loc_id": 10535, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 5684.0, "z": -8113.0, "px": 3018.1, "py": 663.4}, {"loc_id": 10537, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -3636.5, "z": -8688.3, "px": 1427.4, "py": 565.2}, {"loc_id": 10538, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 1543.3, "z": -9784.6, "px": 2311.4, "py": 378.1}, {"loc_id": 10538, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 1543.3, "z": -9784.6, "px": 2311.4, "py": 378.1}, {"loc_id": 10540, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 1794.0, "z": -8328.2, "px": 2354.2, "py": 626.7}, {"loc_id": 10540, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 1794.0, "z": -8328.2, "px": 2354.2, "py": 626.7}, {"loc_id": 10541, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -635.8, "z": -9913.0, "px": 1939.5, "py": 356.2}, {"loc_id": 10542, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -3280.0, "z": -8774.4, "px": 1488.2, "py": 550.5}, {"loc_id": 10543, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 502.8, "z": -9732.7, "px": 2133.8, "py": 387.0}, {"loc_id": 10544, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -5512.6, "z": -7488.9, "px": 1107.2, "py": 769.9}, {"loc_id": 10546, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -1100.1, "z": -9656.8, "px": 1860.2, "py": 399.9}, {"loc_id": 10547, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 72.9, "z": -8757.4, "px": 2060.4, "py": 553.4}, {"loc_id": 10548, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 2998.2, "z": -9335.5, "px": 2559.7, "py": 454.7}, {"loc_id": 10549, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 270.1, "z": -9038.6, "px": 2094.1, "py": 505.4}, {"loc_id": 10554, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 2563.8, "z": -9016.6, "px": 2485.6, "py": 509.2}, {"loc_id": 10555, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 3196.9, "z": -9226.9, "px": 2593.6, "py": 473.3}, {"loc_id": 10556, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 654.7, "z": -9933.5, "px": 2159.7, "py": 352.7}, {"loc_id": 10557, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -2674.5, "z": -8432.1, "px": 1591.6, "py": 608.9}, {"loc_id": 10558, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 1348.5, "z": -8911.4, "px": 2278.1, "py": 527.1}, {"loc_id": 10559, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 590.4, "z": -8960.3, "px": 2148.8, "py": 518.8}, {"loc_id": 10560, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -4422.9, "z": -8390.6, "px": 1293.2, "py": 616.0}, {"loc_id": 10561, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 5242.1, "z": -7996.3, "px": 2942.7, "py": 683.3}, {"loc_id": 10562, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 972.4, "z": -8910.6, "px": 2214.0, "py": 527.3}, {"loc_id": 10563, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 397.2, "z": -9231.7, "px": 2115.8, "py": 472.5}, {"loc_id": 10563, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 397.2, "z": -9231.7, "px": 2115.8, "py": 472.5}, {"loc_id": 10564, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -2370.9, "z": -9029.4, "px": 1643.4, "py": 507.0}, {"loc_id": 10565, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -2509.3, "z": -8318.0, "px": 1619.7, "py": 628.4}, {"loc_id": 10567, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 1801.0, "z": -9717.5, "px": 2355.4, "py": 389.5}, {"loc_id": 10567, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 1801.0, "z": -9717.5, "px": 2355.4, "py": 389.5}, {"loc_id": 10569, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -4618.6, "z": -8001.5, "px": 1259.8, "py": 682.4}, {"loc_id": 10570, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -461.8, "z": -9334.4, "px": 1969.2, "py": 454.9}, {"loc_id": 10571, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -2055.8, "z": -8718.5, "px": 1697.1, "py": 560.0}, {"loc_id": 10571, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -2055.8, "z": -8718.5, "px": 1697.1, "py": 560.0}, {"loc_id": 10572, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -1200.2, "z": -9608.9, "px": 1843.2, "py": 408.1}, {"loc_id": 10574, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 1481.8, "z": -9096.9, "px": 2300.9, "py": 495.5}, {"loc_id": 10575, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 585.9, "z": -9144.1, "px": 2148.0, "py": 487.4}, {"loc_id": 10576, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 3767.6, "z": -8460.4, "px": 2691.0, "py": 604.1}, {"loc_id": 10577, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 755.6, "z": -8949.4, "px": 2177.0, "py": 520.6}, {"loc_id": 10578, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 569.0, "z": -8822.9, "px": 2145.1, "py": 542.2}, {"loc_id": 10580, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 2877.0, "z": -8846.3, "px": 2539.0, "py": 538.2}, {"loc_id": 10580, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 2877.0, "z": -8846.3, "px": 2539.0, "py": 538.2}, {"loc_id": 10581, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 2550.0, "z": -9165.5, "px": 2483.2, "py": 483.8}, {"loc_id": 10582, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -506.5, "z": -8710.1, "px": 1961.6, "py": 561.5}, {"loc_id": 10584, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 3661.7, "z": -8388.0, "px": 2672.9, "py": 616.4}, {"loc_id": 10588, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 883.4, "z": -8967.0, "px": 2198.8, "py": 517.6}, {"loc_id": 10589, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -1861.7, "z": -8780.2, "px": 1730.3, "py": 549.5}, {"loc_id": 10589, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -1861.7, "z": -8780.2, "px": 1730.3, "py": 549.5}, {"loc_id": 10590, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 2314.5, "z": -9023.1, "px": 2443.0, "py": 508.1}, {"loc_id": 10591, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 5242.9, "z": -7796.2, "px": 2942.8, "py": 717.4}, {"loc_id": 10593, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -4747.3, "z": -8382.0, "px": 1237.8, "py": 617.5}, {"loc_id": 10594, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 2232.4, "z": -8947.4, "px": 2429.0, "py": 521.0}, {"loc_id": 10596, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 3134.8, "z": -8560.2, "px": 2583.0, "py": 587.1}, {"loc_id": 10598, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -4539.0, "z": -8129.2, "px": 1273.3, "py": 660.6}, {"loc_id": 10598, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -4539.0, "z": -8129.2, "px": 1273.3, "py": 660.6}, {"loc_id": 10599, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -3593.4, "z": -8335.3, "px": 1434.7, "py": 625.4}, {"loc_id": 10601, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -448.5, "z": -9796.0, "px": 1971.5, "py": 376.1}, {"loc_id": 10602, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 4144.6, "z": -8780.7, "px": 2755.3, "py": 549.4}, {"loc_id": 10603, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 653.9, "z": -9482.6, "px": 2159.6, "py": 429.6}, {"loc_id": 10605, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 2432.3, "z": -9137.9, "px": 2463.1, "py": 488.5}, {"loc_id": 10609, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -889.6, "z": -9023.0, "px": 1896.2, "py": 508.1}, {"loc_id": 10610, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 2188.7, "z": -9530.3, "px": 2421.5, "py": 421.5}, {"loc_id": 10610, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 2188.7, "z": -9530.3, "px": 2421.5, "py": 421.5}, {"loc_id": 10611, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -463.2, "z": -9457.2, "px": 1968.9, "py": 434.0}, {"loc_id": 10613, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -391.6, "z": -9652.7, "px": 1981.2, "py": 400.6}, {"loc_id": 10617, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -904.2, "z": -9727.6, "px": 1893.7, "py": 387.8}, {"loc_id": 10620, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -3596.4, "z": -9273.5, "px": 1434.2, "py": 465.3}, {"loc_id": 10620, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -3596.4, "z": -9273.5, "px": 1434.2, "py": 465.3}, {"loc_id": 10622, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -3711.3, "z": -9289.5, "px": 1414.6, "py": 462.6}, {"loc_id": 10622, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -3711.3, "z": -9289.5, "px": 1414.6, "py": 462.6}, {"loc_id": 10623, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 3062.3, "z": -9218.5, "px": 2570.6, "py": 474.7}, {"loc_id": 10623, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 3062.3, "z": -9218.5, "px": 2570.6, "py": 474.7}, {"loc_id": 10625, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -2892.6, "z": -8450.4, "px": 1554.3, "py": 605.8}, {"loc_id": 10626, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 3982.0, "z": -9024.0, "px": 2727.6, "py": 507.9}, {"loc_id": 10630, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -1022.9, "z": -9805.5, "px": 1873.4, "py": 374.5}, {"loc_id": 10631, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -3706.9, "z": -8398.7, "px": 1415.4, "py": 614.6}, {"loc_id": 10633, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -2672.6, "z": -8755.6, "px": 1591.9, "py": 553.7}, {"loc_id": 10633, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -2672.6, "z": -8755.6, "px": 1591.9, "py": 553.7}, {"loc_id": 10634, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -177.2, "z": -8832.3, "px": 2017.8, "py": 540.6}, {"loc_id": 10636, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -626.3, "z": -8752.7, "px": 1941.1, "py": 554.2}, {"loc_id": 10638, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -331.7, "z": -9807.9, "px": 1991.4, "py": 374.1}, {"loc_id": 10640, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 3120.3, "z": -8322.5, "px": 2580.5, "py": 627.6}, {"loc_id": 10641, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 3122.1, "z": -9332.3, "px": 2580.8, "py": 455.3}, {"loc_id": 10642, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -3843.8, "z": -8767.9, "px": 1392.0, "py": 551.6}, {"loc_id": 10643, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 206.5, "z": -9675.7, "px": 2083.2, "py": 396.7}, {"loc_id": 10644, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -5513.7, "z": -7628.2, "px": 1107.0, "py": 746.1}, {"loc_id": 10646, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 3889.7, "z": -8828.8, "px": 2711.8, "py": 541.2}, {"loc_id": 10646, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 3889.7, "z": -8828.8, "px": 2711.8, "py": 541.2}, {"loc_id": 10647, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -2041.0, "z": -9358.9, "px": 1699.7, "py": 450.7}, {"loc_id": 10648, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 5319.7, "z": -7731.1, "px": 2955.9, "py": 728.6}, {"loc_id": 10648, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 5319.7, "z": -7731.1, "px": 2955.9, "py": 728.6}, {"loc_id": 10650, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -2767.3, "z": -8514.5, "px": 1575.7, "py": 594.9}, {"loc_id": 10651, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -2254.9, "z": -8628.9, "px": 1663.2, "py": 575.3}, {"loc_id": 10652, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 2812.3, "z": -9076.4, "px": 2528.0, "py": 499.0}, {"loc_id": 10653, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -1020.9, "z": -8907.0, "px": 1873.8, "py": 527.9}, {"loc_id": 10653, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -1020.9, "z": -8907.0, "px": 1873.8, "py": 527.9}, {"loc_id": 10656, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -1014.1, "z": -9469.7, "px": 1874.9, "py": 431.8}, {"loc_id": 10657, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 1520.0, "z": -9585.6, "px": 2307.4, "py": 412.1}, {"loc_id": 10659, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -712.2, "z": -9282.4, "px": 1926.5, "py": 463.8}, {"loc_id": 10663, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 2992.0, "z": -9103.1, "px": 2558.6, "py": 494.4}, {"loc_id": 10664, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -397.4, "z": -9207.0, "px": 1980.2, "py": 476.7}, {"loc_id": 10665, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 1285.9, "z": -9584.4, "px": 2267.5, "py": 412.3}, {"loc_id": 10667, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -2561.6, "z": -9027.6, "px": 1610.8, "py": 507.3}, {"loc_id": 10669, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 525.1, "z": -9347.0, "px": 2137.6, "py": 452.8}, {"loc_id": 10669, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 525.1, "z": -9347.0, "px": 2137.6, "py": 452.8}, {"loc_id": 10671, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -1972.3, "z": -8561.0, "px": 1711.4, "py": 586.9}, {"loc_id": 10671, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": -1972.3, "z": -8561.0, "px": 1711.4, "py": 586.9}, {"loc_id": 10673, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 1358.8, "z": -9461.1, "px": 2279.9, "py": 433.3}, {"loc_id": 10674, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": 310.6, "z": -9287.8, "px": 2101.0, "py": 462.9}, {"loc_id": 10675, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -501.1, "z": -9999.7, "px": 1962.5, "py": 341.4}, {"loc_id": 10676, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 3, "x": -3784.2, "z": -8646.7, "px": 1402.2, "py": 572.3}, {"loc_id": 10677, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 3, "x": 2999.9, "z": -8905.4, "px": 2560.0, "py": 528.1}, {"loc_id": 10683, "loc_name": "CharredTowerRuins1", "item": "Pickable: MushroomSmokePuff", "count": 3, "x": -3460.0, "z": -8441.9, "px": 1457.5, "py": 607.2}, {"loc_id": 10709, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 3, "x": 5384.6, "z": -8070.3, "px": 2967.0, "py": 670.7}, {"loc_id": 10711, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 3, "x": 3838.3, "z": -8457.0, "px": 2703.1, "py": 604.7}, {"loc_id": 10713, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 3, "x": -5309.5, "z": -7751.3, "px": 1141.8, "py": 725.1}, {"loc_id": 10727, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 3, "x": -4535.3, "z": -8322.3, "px": 1274.0, "py": 627.7}, {"loc_id": 10728, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 3, "x": 1785.2, "z": -9654.1, "px": 2352.7, "py": 400.4}, {"loc_id": 10731, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 3, "x": 3521.8, "z": -8055.7, "px": 2649.1, "py": 673.2}, {"loc_id": 10731, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 3, "x": 3521.8, "z": -8055.7, "px": 2649.1, "py": 673.2}, {"loc_id": 10732, "loc_name": "CharredTowerRuins1_dvergr", "item": "SpawnOnce: DvergerAshlands", "count": 3, "x": 2618.2, "z": -9017.8, "px": 2494.8, "py": 509.0}, {"loc_id": 10737, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 3, "x": 5193.3, "z": -7740.7, "px": 2934.3, "py": 726.9}, {"loc_id": 10812, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 3, "x": -3520.0, "z": -8640.0, "px": 1447.3, "py": 573.4}, {"loc_id": 10819, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 3, "x": 64.0, "z": -9600.0, "px": 2058.9, "py": 409.6}, {"loc_id": 10822, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 3, "x": 2240.0, "z": -8384.0, "px": 2430.3, "py": 617.1}, {"loc_id": 10828, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 3, "x": -512.0, "z": -9024.0, "px": 1960.6, "py": 507.9}, {"loc_id": 10834, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 3, "x": 1600.0, "z": -9792.0, "px": 2321.1, "py": 376.8}, {"loc_id": 10846, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 3, "x": 896.0, "z": -9024.0, "px": 2200.9, "py": 507.9}, {"loc_id": 10851, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 3, "x": -1472.0, "z": -9408.0, "px": 1796.8, "py": 442.4}, {"loc_id": 10854, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 3, "x": 256.0, "z": -9664.0, "px": 2091.7, "py": 398.7}, {"loc_id": 10855, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 3, "x": -3264.0, "z": -8896.0, "px": 1490.9, "py": 529.7}, {"loc_id": 10872, "loc_name": "AshlandRuins", "item": "SpawnOnce: Morgen", "count": 3, "x": 2240.0, "z": -9408.0, "px": 2430.3, "py": 442.4}, {"loc_id": 10881, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 3, "x": 3776.0, "z": -8256.0, "px": 2692.4, "py": 639.0}, {"loc_id": 10883, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 3, "x": 5440.0, "z": -7936.0, "px": 2976.4, "py": 693.6}, {"loc_id": 10894, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 3, "x": 1408.0, "z": -9152.0, "px": 2288.3, "py": 486.1}, {"loc_id": 10914, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 3, "x": -71.1, "z": -9667.8, "px": 2035.9, "py": 398.0}, {"loc_id": 10915, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 3, "x": -2108.9, "z": -9082.8, "px": 1688.1, "py": 497.9}, {"loc_id": 10919, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 3, "x": -3718.4, "z": -8452.7, "px": 1413.4, "py": 605.4}, {"loc_id": 10922, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 3, "x": -1787.0, "z": -8892.5, "px": 1743.0, "py": 530.3}, {"loc_id": 10930, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 3, "x": -2938.4, "z": -8390.5, "px": 1546.5, "py": 616.0}, {"loc_id": 10938, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 3, "x": 2301.9, "z": -9218.0, "px": 2440.9, "py": 474.8}, {"loc_id": 10938, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 3, "x": 2301.9, "z": -9218.0, "px": 2440.9, "py": 474.8}, {"loc_id": 10943, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 3, "x": 1656.2, "z": -9411.2, "px": 2330.7, "py": 441.8}, {"loc_id": 10944, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 3, "x": 3591.4, "z": -8261.3, "px": 2660.9, "py": 638.1}, {"loc_id": 10945, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 3, "x": 1594.6, "z": -9732.9, "px": 2320.1, "py": 386.9}, {"loc_id": 10947, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 3, "x": 4092.9, "z": -8702.1, "px": 2746.5, "py": 562.8}, {"loc_id": 10951, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 3, "x": -4803.1, "z": -8384.7, "px": 1228.3, "py": 617.0}, {"loc_id": 10957, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 3, "x": -903.9, "z": -9784.0, "px": 1893.7, "py": 378.2}, {"loc_id": 10957, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 3, "x": -903.9, "z": -9784.0, "px": 1893.7, "py": 378.2}, {"loc_id": 10959, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 3, "x": -2373.6, "z": -8955.5, "px": 1642.9, "py": 519.6}, {"loc_id": 10964, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 3, "x": -4993.3, "z": -8254.4, "px": 1195.8, "py": 639.2}, {"loc_id": 10967, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 3, "x": -2684.9, "z": -8378.4, "px": 1589.8, "py": 618.1}, {"loc_id": 10968, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 3, "x": 441.9, "z": -8902.7, "px": 2123.4, "py": 528.6}, {"loc_id": 10969, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 3, "x": 3201.0, "z": -9283.9, "px": 2594.3, "py": 463.5}, {"loc_id": 10973, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 3, "x": 3143.3, "z": -8516.3, "px": 2584.5, "py": 594.6}, {"loc_id": 10975, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 3, "x": -4990.4, "z": -7620.3, "px": 1196.3, "py": 747.5}, {"loc_id": 10977, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 3, "x": -3779.8, "z": -8195.9, "px": 1402.9, "py": 649.2}, {"loc_id": 10978, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 3, "x": 2881.7, "z": -9082.6, "px": 2539.8, "py": 497.9}, {"loc_id": 10985, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 3, "x": -3776.8, "z": -8707.2, "px": 1403.4, "py": 562.0}, {"loc_id": 10988, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 3, "x": -5241.2, "z": -7808.0, "px": 1153.5, "py": 715.4}, {"loc_id": 10990, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 3, "x": 2054.7, "z": -9336.5, "px": 2398.7, "py": 454.6}, {"loc_id": 10991, "loc_name": "MorgenHole3", "item": "Pickable: Entrails", "count": 3, "x": 2237.7, "z": -9472.3, "px": 2429.9, "py": 431.4}, {"loc_id": 10992, "loc_name": "MorgenHole3", "item": "Pickable: Entrails", "count": 3, "x": -3324.4, "z": -8834.4, "px": 1480.6, "py": 540.3}, {"loc_id": 10993, "loc_name": "MorgenHole3", "item": "Pickable: MoltenCore", "count": 3, "x": -5191.9, "z": -7610.9, "px": 1161.9, "py": 749.1}, {"loc_id": 10994, "loc_name": "MorgenHole3", "item": "Pickable: MoltenCore", "count": 3, "x": 376.8, "z": -9274.9, "px": 2112.3, "py": 465.1}, {"loc_id": 10995, "loc_name": "MorgenHole3", "item": "Pickable: Entrails", "count": 3, "x": 891.8, "z": -9279.3, "px": 2200.2, "py": 464.3}, {"loc_id": 10995, "loc_name": "MorgenHole3", "item": "Pickable: MoltenCore", "count": 3, "x": 891.8, "z": -9279.3, "px": 2200.2, "py": 464.3}, {"loc_id": 10999, "loc_name": "MorgenHole3", "item": "Pickable: MoltenCore", "count": 3, "x": -134.7, "z": -8764.2, "px": 2025.0, "py": 552.2}, {"loc_id": 11000, "loc_name": "MorgenHole3", "item": "Pickable: Entrails", "count": 3, "x": 1852.3, "z": -9215.7, "px": 2364.1, "py": 475.2}, {"loc_id": 11000, "loc_name": "MorgenHole3", "item": "Pickable: MoltenCore", "count": 3, "x": 1852.3, "z": -9215.7, "px": 2364.1, "py": 475.2}, {"loc_id": 11009, "loc_name": "MorgenHole3", "item": "Pickable: Entrails", "count": 3, "x": 1084.2, "z": -9407.6, "px": 2233.0, "py": 442.4}, {"loc_id": 11018, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": -5046.7, "z": -7927.1, "px": 1186.7, "py": 695.1}, {"loc_id": 11022, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": 5497.2, "z": -8176.3, "px": 2986.2, "py": 652.6}, {"loc_id": 11023, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": 3518.2, "z": -8645.3, "px": 2648.4, "py": 572.5}, {"loc_id": 11027, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": -3256.1, "z": -8710.5, "px": 1492.3, "py": 561.4}, {"loc_id": 11028, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": 5064.1, "z": -7872.1, "px": 2912.3, "py": 704.5}, {"loc_id": 11034, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": -128.6, "z": -9090.1, "px": 2026.1, "py": 496.6}, {"loc_id": 11035, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": -3585.1, "z": -8774.4, "px": 1436.1, "py": 550.5}, {"loc_id": 11042, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": 1348.9, "z": -9161.7, "px": 2278.2, "py": 484.4}, {"loc_id": 11043, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": -7028.2, "z": -6017.9, "px": 848.5, "py": 1020.9}, {"loc_id": 11048, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": -3327.3, "z": -9288.3, "px": 1480.1, "py": 462.8}, {"loc_id": 11054, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": -438.8, "z": -9594.9, "px": 1973.1, "py": 410.5}, {"loc_id": 11056, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": -5257.6, "z": -8367.3, "px": 1150.7, "py": 620.0}, {"loc_id": 11063, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": -4978.9, "z": -8061.0, "px": 1198.3, "py": 672.3}, {"loc_id": 11064, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": 329.3, "z": -9163.9, "px": 2104.2, "py": 484.0}, {"loc_id": 11067, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": -4595.5, "z": -7931.2, "px": 1263.7, "py": 694.4}, {"loc_id": 11074, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": -4792.1, "z": -8580.7, "px": 1230.1, "py": 583.6}, {"loc_id": 11092, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": -5444.3, "z": -7412.3, "px": 1118.8, "py": 783.0}, {"loc_id": 11093, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": 4280.9, "z": -8885.5, "px": 2778.6, "py": 531.5}, {"loc_id": 11094, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": 3780.0, "z": -8568.2, "px": 2693.1, "py": 585.7}, {"loc_id": 11095, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": -1933.5, "z": -8623.4, "px": 1718.0, "py": 576.3}, {"loc_id": 11099, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": -6349.6, "z": -7486.2, "px": 964.3, "py": 770.4}, {"loc_id": 11100, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": 2753.9, "z": -8501.1, "px": 2518.0, "py": 597.1}, {"loc_id": 11101, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": -953.9, "z": -9904.5, "px": 1885.2, "py": 357.6}, {"loc_id": 11109, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 3, "x": 5624.3, "z": -8199.3, "px": 3007.9, "py": 648.7}, {"loc_id": 11113, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -1163.7, "z": -9263.6, "px": 1849.4, "py": 467.0}, {"loc_id": 11116, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 70.7, "z": -8915.3, "px": 2060.1, "py": 526.5}, {"loc_id": 11117, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -2579.9, "z": -8300.5, "px": 1607.7, "py": 631.4}, {"loc_id": 11119, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -813.9, "z": -8594.9, "px": 1909.1, "py": 581.1}, {"loc_id": 11121, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 6343.8, "z": -7117.4, "px": 3130.7, "py": 833.3}, {"loc_id": 11122, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 186.1, "z": -9797.2, "px": 2079.8, "py": 375.9}, {"loc_id": 11123, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 5557.8, "z": -7933.0, "px": 2996.5, "py": 694.1}, {"loc_id": 11128, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 2489.4, "z": -9023.1, "px": 2472.9, "py": 508.1}, {"loc_id": 11130, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 716.8, "z": -8577.9, "px": 2170.3, "py": 584.0}, {"loc_id": 11132, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 1542.7, "z": -9351.5, "px": 2311.3, "py": 452.0}, {"loc_id": 11133, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 1352.8, "z": -9774.6, "px": 2278.9, "py": 379.8}, {"loc_id": 11135, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -1087.7, "z": -8898.8, "px": 1862.4, "py": 529.3}, {"loc_id": 11137, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -3460.5, "z": -8652.4, "px": 1457.4, "py": 571.3}, {"loc_id": 11138, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 326.5, "z": -9786.5, "px": 2103.7, "py": 377.8}, {"loc_id": 11139, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -4986.1, "z": -8457.3, "px": 1197.0, "py": 604.6}, {"loc_id": 11141, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -1774.3, "z": -9396.9, "px": 1745.2, "py": 444.3}, {"loc_id": 11142, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -392.3, "z": -9325.7, "px": 1981.0, "py": 456.4}, {"loc_id": 11143, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 1901.1, "z": -9647.9, "px": 2372.5, "py": 401.4}, {"loc_id": 11146, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -2802.1, "z": -8120.9, "px": 1569.8, "py": 662.0}, {"loc_id": 11147, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -5130.7, "z": -7945.5, "px": 1172.4, "py": 692.0}, {"loc_id": 11155, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -1665.3, "z": -9644.5, "px": 1763.8, "py": 402.0}, {"loc_id": 11156, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -1789.3, "z": -8785.0, "px": 1742.6, "py": 548.7}, {"loc_id": 11157, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 4101.6, "z": -9009.9, "px": 2748.0, "py": 510.3}, {"loc_id": 11158, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 3125.6, "z": -9278.4, "px": 2581.4, "py": 464.5}, {"loc_id": 11160, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 2119.5, "z": -9723.9, "px": 2409.7, "py": 388.5}, {"loc_id": 11161, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 2479.5, "z": -8850.7, "px": 2471.2, "py": 537.5}, {"loc_id": 11162, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -3152.7, "z": -8909.0, "px": 1509.9, "py": 527.5}, {"loc_id": 11166, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 889.1, "z": -9220.1, "px": 2199.7, "py": 474.4}, {"loc_id": 11168, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 2226.3, "z": -9517.7, "px": 2428.0, "py": 423.6}, {"loc_id": 11169, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 3337.0, "z": -8012.0, "px": 2617.5, "py": 680.6}, {"loc_id": 11171, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -563.5, "z": -8814.9, "px": 1951.8, "py": 543.6}, {"loc_id": 11172, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -949.5, "z": -8708.0, "px": 1886.0, "py": 561.8}, {"loc_id": 11173, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -3642.5, "z": -9298.8, "px": 1426.3, "py": 461.0}, {"loc_id": 11177, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -2033.3, "z": -9389.5, "px": 1701.0, "py": 445.5}, {"loc_id": 11179, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -767.9, "z": -9460.6, "px": 1916.9, "py": 433.4}, {"loc_id": 11180, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -4750.3, "z": -8559.8, "px": 1237.3, "py": 587.1}, {"loc_id": 11183, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 3853.6, "z": -8627.5, "px": 2705.7, "py": 575.6}, {"loc_id": 11184, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 3759.3, "z": -8714.1, "px": 2689.6, "py": 560.8}, {"loc_id": 11185, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -5128.3, "z": -7441.4, "px": 1172.8, "py": 778.0}, {"loc_id": 11188, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -4044.3, "z": -8120.2, "px": 1357.8, "py": 662.2}, {"loc_id": 11193, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 6138.6, "z": -7676.1, "px": 3095.7, "py": 737.9}, {"loc_id": 11196, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -2613.1, "z": -9082.2, "px": 1602.0, "py": 498.0}, {"loc_id": 11199, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 244.2, "z": -9529.6, "px": 2089.7, "py": 421.6}, {"loc_id": 11202, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 5043.1, "z": -7682.4, "px": 2908.7, "py": 736.9}, {"loc_id": 11205, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": 5195.4, "z": -7927.1, "px": 2934.7, "py": 695.1}, {"loc_id": 11208, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -455.9, "z": -8571.4, "px": 1970.2, "py": 585.1}, {"loc_id": 11209, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 3, "x": -3381.7, "z": -8519.0, "px": 1470.9, "py": 594.1}, {"loc_id": 11211, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": 3065.7, "z": -8652.7, "px": 2571.2, "py": 571.3}, {"loc_id": 11212, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": -19.0, "z": -8712.4, "px": 2044.8, "py": 561.1}, {"loc_id": 11219, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": -1403.1, "z": -8213.9, "px": 1808.5, "py": 646.2}, {"loc_id": 11222, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": 42.9, "z": -9680.2, "px": 2055.3, "py": 395.9}, {"loc_id": 11229, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": 133.0, "z": -8503.1, "px": 2070.7, "py": 596.8}, {"loc_id": 11233, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": -3760.8, "z": -8501.9, "px": 1406.2, "py": 597.0}, {"loc_id": 11237, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": -1210.2, "z": -8319.4, "px": 1841.5, "py": 628.2}, {"loc_id": 11238, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": -389.5, "z": -9297.0, "px": 1981.5, "py": 461.3}, {"loc_id": 11241, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": -778.1, "z": -8686.1, "px": 1915.2, "py": 565.6}, {"loc_id": 11242, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": 3960.3, "z": -8469.5, "px": 2723.9, "py": 602.5}, {"loc_id": 11244, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": 5969.1, "z": -7602.4, "px": 3066.7, "py": 750.5}, {"loc_id": 11245, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": -554.8, "z": -8651.6, "px": 1953.3, "py": 571.5}, {"loc_id": 11247, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": 3116.0, "z": -9484.3, "px": 2579.8, "py": 429.3}, {"loc_id": 11255, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": 3648.8, "z": -8070.2, "px": 2670.7, "py": 670.7}, {"loc_id": 11258, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": 1340.8, "z": -9394.9, "px": 2276.8, "py": 444.6}, {"loc_id": 11259, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": -2703.2, "z": -8194.7, "px": 1586.7, "py": 649.4}, {"loc_id": 11260, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": 1903.6, "z": -8490.3, "px": 2372.9, "py": 599.0}, {"loc_id": 11262, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": -6987.6, "z": -6009.0, "px": 855.4, "py": 1022.5}, {"loc_id": 11263, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": -4204.6, "z": -8238.8, "px": 1330.4, "py": 641.9}, {"loc_id": 11264, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": -2222.7, "z": -9300.4, "px": 1668.7, "py": 460.7}, {"loc_id": 11266, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": -1642.4, "z": -9362.1, "px": 1767.7, "py": 450.2}, {"loc_id": 11268, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": -3830.7, "z": -8235.4, "px": 1394.2, "py": 642.5}, {"loc_id": 11270, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": -2234.4, "z": -8443.1, "px": 1666.7, "py": 607.0}, {"loc_id": 11271, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": -5366.5, "z": -8274.5, "px": 1132.1, "py": 635.8}, {"loc_id": 11273, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": -2097.1, "z": -9195.0, "px": 1690.1, "py": 478.7}, {"loc_id": 11274, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": 2354.9, "z": -8781.2, "px": 2449.9, "py": 549.3}, {"loc_id": 11277, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": 3883.2, "z": -8302.7, "px": 2710.7, "py": 631.0}, {"loc_id": 11278, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": -5308.1, "z": -7501.2, "px": 1142.1, "py": 767.8}, {"loc_id": 11281, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": 2820.3, "z": -8523.4, "px": 2529.3, "py": 593.3}, {"loc_id": 11283, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": -1659.4, "z": -9587.8, "px": 1764.8, "py": 411.7}, {"loc_id": 11286, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": 5451.4, "z": -8206.2, "px": 2978.4, "py": 647.5}, {"loc_id": 11287, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": -3974.0, "z": -8849.8, "px": 1369.8, "py": 537.6}, {"loc_id": 11291, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": 3693.9, "z": -8269.5, "px": 2678.4, "py": 636.7}, {"loc_id": 11293, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": 2546.9, "z": -9388.0, "px": 2482.7, "py": 445.8}, {"loc_id": 11294, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": 400.6, "z": -9841.7, "px": 2116.4, "py": 368.3}, {"loc_id": 11295, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": 81.3, "z": -9263.1, "px": 2061.9, "py": 467.1}, {"loc_id": 11298, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": 11.0, "z": -9858.1, "px": 2049.9, "py": 365.6}, {"loc_id": 11302, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": 2163.9, "z": -9584.6, "px": 2417.3, "py": 412.2}, {"loc_id": 11305, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": 4017.2, "z": -8721.5, "px": 2733.6, "py": 559.5}, {"loc_id": 11306, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": -2187.4, "z": -8251.3, "px": 1674.7, "py": 639.8}, {"loc_id": 11308, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": 2198.0, "z": -8945.7, "px": 2423.1, "py": 521.3}, {"loc_id": 11309, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 3, "x": -513.8, "z": -9594.5, "px": 1960.3, "py": 410.5}, {"loc_id": 1, "loc_name": "StartTemple", "item": "Pickable: Raspberry", "count": 2, "x": 1.8, "z": 0.0, "px": 2048.3, "py": 2048.0}, {"loc_id": 1, "loc_name": "StartTemple", "item": "Pickable: Mushroom", "count": 2, "x": 1.8, "z": 0.0, "px": 2048.3, "py": 2048.0}, {"loc_id": 18, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": 2438.5, "z": -1087.3, "px": 2464.2, "py": 1862.4}, {"loc_id": 19, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": 3320.3, "z": 4792.1, "px": 2614.7, "py": 2865.9}, {"loc_id": 21, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 2, "x": -4146.8, "z": 3646.5, "px": 1340.3, "py": 2670.3}, {"loc_id": 21, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": -4146.8, "z": 3646.5, "px": 1340.3, "py": 2670.3}, {"loc_id": 22, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": -4353.9, "z": 1157.7, "px": 1304.9, "py": 2245.6}, {"loc_id": 22, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": -4353.9, "z": 1157.7, "px": 1304.9, "py": 2245.6}, {"loc_id": 24, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": 2365.0, "z": 184.9, "px": 2451.6, "py": 2079.6}, {"loc_id": 24, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": 2365.0, "z": 184.9, "px": 2451.6, "py": 2079.6}, {"loc_id": 25, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 2, "x": 1095.0, "z": 4349.5, "px": 2234.9, "py": 2790.3}, {"loc_id": 27, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": -3648.3, "z": -4161.2, "px": 1425.4, "py": 1337.8}, {"loc_id": 28, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4720.8, "z": -717.3, "px": 2853.7, "py": 1925.6}, {"loc_id": 29, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": -4342.2, "z": 1229.9, "px": 1306.9, "py": 2257.9}, {"loc_id": 30, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": -525.6, "z": -3575.0, "px": 1958.3, "py": 1437.9}, {"loc_id": 31, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": 3723.6, "z": 816.0, "px": 2683.5, "py": 2187.3}, {"loc_id": 31, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": 3723.6, "z": 816.0, "px": 2683.5, "py": 2187.3}, {"loc_id": 32, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": 3386.5, "z": -4286.1, "px": 2626.0, "py": 1316.5}, {"loc_id": 33, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": 1739.5, "z": 4407.1, "px": 2344.9, "py": 2800.1}, {"loc_id": 33, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": 1739.5, "z": 4407.1, "px": 2344.9, "py": 2800.1}, {"loc_id": 36, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": -2570.0, "z": -1520.8, "px": 1609.4, "py": 1788.5}, {"loc_id": 38, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 2, "x": -2445.9, "z": -4152.3, "px": 1630.6, "py": 1339.3}, {"loc_id": 39, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -562.3, "z": -4030.4, "px": 1952.0, "py": 1360.1}, {"loc_id": 39, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 2, "x": -562.3, "z": -4030.4, "px": 1952.0, "py": 1360.1}, {"loc_id": 43, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": -4994.4, "z": 1343.0, "px": 1195.6, "py": 2277.2}, {"loc_id": 43, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -4994.4, "z": 1343.0, "px": 1195.6, "py": 2277.2}, {"loc_id": 44, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 2, "x": -187.0, "z": 2492.5, "px": 2016.1, "py": 2473.4}, {"loc_id": 44, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -187.0, "z": 2492.5, "px": 2016.1, "py": 2473.4}, {"loc_id": 45, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2578.0, "z": -1589.3, "px": 1608.0, "py": 1776.8}, {"loc_id": 45, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": -2578.0, "z": -1589.3, "px": 1608.0, "py": 1776.8}, {"loc_id": 46, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2351.2, "z": 4805.5, "px": 1646.7, "py": 2868.1}, {"loc_id": 47, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": -2414.9, "z": 4847.7, "px": 1635.9, "py": 2875.3}, {"loc_id": 51, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4555.6, "z": -3149.3, "px": 2825.5, "py": 1510.5}, {"loc_id": 52, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1297.8, "z": 2051.9, "px": 2269.5, "py": 2398.2}, {"loc_id": 53, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 2, "x": -2806.7, "z": -5166.8, "px": 1569.0, "py": 1166.2}, {"loc_id": 55, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5323.0, "z": -1724.1, "px": 1139.5, "py": 1753.8}, {"loc_id": 56, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 2178.8, "z": -3206.1, "px": 2419.8, "py": 1500.8}, {"loc_id": 57, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": 3789.7, "z": 4478.3, "px": 2694.8, "py": 2812.3}, {"loc_id": 60, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5388.9, "z": 1521.4, "px": 1128.3, "py": 2307.7}, {"loc_id": 61, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -3631.6, "z": 3121.5, "px": 1428.2, "py": 2580.7}, {"loc_id": 64, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -4300.6, "z": 656.9, "px": 1314.0, "py": 2160.1}, {"loc_id": 65, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 2, "x": -4301.0, "z": 516.6, "px": 1314.0, "py": 2136.2}, {"loc_id": 68, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -3123.2, "z": 395.0, "px": 1515.0, "py": 2115.4}, {"loc_id": 68, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": -3123.2, "z": 395.0, "px": 1515.0, "py": 2115.4}, {"loc_id": 70, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 2, "x": 2613.0, "z": -138.8, "px": 2494.0, "py": 2024.3}, {"loc_id": 72, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4479.3, "z": -2945.6, "px": 2812.5, "py": 1545.3}, {"loc_id": 73, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": -2615.5, "z": -950.2, "px": 1601.6, "py": 1885.8}, {"loc_id": 75, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": -5701.0, "z": -1147.1, "px": 1075.0, "py": 1852.2}, {"loc_id": 75, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5701.0, "z": -1147.1, "px": 1075.0, "py": 1852.2}, {"loc_id": 76, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2491.8, "z": -4097.4, "px": 1622.7, "py": 1348.7}, {"loc_id": 76, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": -2491.8, "z": -4097.4, "px": 1622.7, "py": 1348.7}, {"loc_id": 77, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 2296.4, "z": -3207.7, "px": 2439.9, "py": 1500.6}, {"loc_id": 78, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4463.0, "z": -3019.3, "px": 2809.7, "py": 1532.7}, {"loc_id": 79, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 2, "x": -952.0, "z": -5685.9, "px": 1885.5, "py": 1077.6}, {"loc_id": 79, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": -952.0, "z": -5685.9, "px": 1885.5, "py": 1077.6}, {"loc_id": 80, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 2, "x": 2377.0, "z": -1156.8, "px": 2453.7, "py": 1850.6}, {"loc_id": 80, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": 2377.0, "z": -1156.8, "px": 2453.7, "py": 1850.6}, {"loc_id": 82, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -629.5, "z": -3515.5, "px": 1940.6, "py": 1448.0}, {"loc_id": 84, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1293.6, "z": 2251.1, "px": 2268.8, "py": 2432.2}, {"loc_id": 84, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": 1293.6, "z": 2251.1, "px": 2268.8, "py": 2432.2}, {"loc_id": 84, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": 1293.6, "z": 2251.1, "px": 2268.8, "py": 2432.2}, {"loc_id": 84, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": 1293.6, "z": 2251.1, "px": 2268.8, "py": 2432.2}, {"loc_id": 85, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -1139.7, "z": -5705.5, "px": 1853.5, "py": 1074.3}, {"loc_id": 85, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": -1139.7, "z": -5705.5, "px": 1853.5, "py": 1074.3}, {"loc_id": 86, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 2, "x": -3576.1, "z": 180.7, "px": 1437.7, "py": 2078.8}, {"loc_id": 86, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 2, "x": -3576.1, "z": 180.7, "px": 1437.7, "py": 2078.8}, {"loc_id": 87, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 3310.7, "z": -4417.7, "px": 2613.0, "py": 1294.0}, {"loc_id": 87, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": 3310.7, "z": -4417.7, "px": 2613.0, "py": 1294.0}, {"loc_id": 90, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -582.8, "z": -3968.2, "px": 1948.5, "py": 1370.8}, {"loc_id": 92, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": 1287.0, "z": 2118.5, "px": 2267.6, "py": 2409.6}, {"loc_id": 92, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": 1287.0, "z": 2118.5, "px": 2267.6, "py": 2409.6}, {"loc_id": 93, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": -5688.0, "z": -1080.8, "px": 1077.2, "py": 1863.5}, {"loc_id": 93, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 2, "x": -5688.0, "z": -1080.8, "px": 1077.2, "py": 1863.5}, {"loc_id": 94, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4547.2, "z": -3269.9, "px": 2824.1, "py": 1489.9}, {"loc_id": 94, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": 4547.2, "z": -3269.9, "px": 2824.1, "py": 1489.9}, {"loc_id": 95, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": -4304.7, "z": 337.4, "px": 1313.3, "py": 2105.6}, {"loc_id": 95, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -4304.7, "z": 337.4, "px": 1313.3, "py": 2105.6}, {"loc_id": 96, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": -116.2, "z": 2562.7, "px": 2028.2, "py": 2485.4}, {"loc_id": 97, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": 2738.0, "z": 3658.2, "px": 2515.3, "py": 2672.3}, {"loc_id": 98, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": 2425.8, "z": -1021.2, "px": 2462.0, "py": 1873.7}, {"loc_id": 99, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -1920.0, "z": 4600.7, "px": 1720.3, "py": 2833.2}, {"loc_id": 99, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 2, "x": -1920.0, "z": 4600.7, "px": 1720.3, "py": 2833.2}, {"loc_id": 100, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 2, "x": 2508.7, "z": -5306.2, "px": 2476.2, "py": 1142.4}, {"loc_id": 101, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -1014.2, "z": -5639.2, "px": 1874.9, "py": 1085.6}, {"loc_id": 102, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": -5252.9, "z": -769.4, "px": 1151.5, "py": 1916.7}, {"loc_id": 103, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5489.1, "z": 1993.6, "px": 1111.2, "py": 2388.2}, {"loc_id": 104, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1020.1, "z": 4295.3, "px": 2222.1, "py": 2781.1}, {"loc_id": 106, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": -2182.9, "z": 4304.1, "px": 1675.5, "py": 2782.6}, {"loc_id": 107, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 2, "x": -2631.9, "z": -882.8, "px": 1598.8, "py": 1897.3}, {"loc_id": 108, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": 521.3, "z": 2624.5, "px": 2137.0, "py": 2495.9}, {"loc_id": 109, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": -1078.2, "z": -3658.3, "px": 1864.0, "py": 1423.7}, {"loc_id": 110, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": 1466.6, "z": 2232.4, "px": 2298.3, "py": 2429.0}, {"loc_id": 114, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": 1607.7, "z": 2117.6, "px": 2322.4, "py": 2409.4}, {"loc_id": 114, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": 1607.7, "z": 2117.6, "px": 2322.4, "py": 2409.4}, {"loc_id": 115, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -61.9, "z": 2612.1, "px": 2037.4, "py": 2493.8}, {"loc_id": 115, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": -61.9, "z": 2612.1, "px": 2037.4, "py": 2493.8}, {"loc_id": 116, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": 2291.5, "z": 250.0, "px": 2439.1, "py": 2090.7}, {"loc_id": 117, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": 272.2, "z": 2565.9, "px": 2094.5, "py": 2485.9}, {"loc_id": 121, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": -4236.9, "z": 465.5, "px": 1324.9, "py": 2127.4}, {"loc_id": 124, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": 3454.8, "z": -4349.8, "px": 2637.6, "py": 1305.6}, {"loc_id": 128, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": -963.5, "z": -3775.8, "px": 1883.6, "py": 1403.6}, {"loc_id": 130, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": 4748.1, "z": -509.7, "px": 2858.3, "py": 1961.0}, {"loc_id": 131, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": 64.3, "z": 2610.1, "px": 2059.0, "py": 2493.5}, {"loc_id": 131, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": 64.3, "z": 2610.1, "px": 2059.0, "py": 2493.5}, {"loc_id": 133, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2637.3, "z": -5254.9, "px": 1597.9, "py": 1151.2}, {"loc_id": 133, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": -2637.3, "z": -5254.9, "px": 1597.9, "py": 1151.2}, {"loc_id": 135, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 2251.6, "z": 335.0, "px": 2432.3, "py": 2105.2}, {"loc_id": 136, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": 1096.3, "z": -3647.7, "px": 2235.1, "py": 1425.5}, {"loc_id": 137, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": 2561.4, "z": -16.1, "px": 2485.1, "py": 2045.3}, {"loc_id": 138, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2417.8, "z": -4091.4, "px": 1635.4, "py": 1349.7}, {"loc_id": 139, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": 3504.5, "z": 1327.7, "px": 2646.1, "py": 2274.6}, {"loc_id": 139, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": 3504.5, "z": 1327.7, "px": 2646.1, "py": 2274.6}, {"loc_id": 140, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": 383.1, "z": 2565.9, "px": 2113.4, "py": 2485.9}, {"loc_id": 140, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": 383.1, "z": 2565.9, "px": 2113.4, "py": 2485.9}, {"loc_id": 141, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": -3468.1, "z": 180.0, "px": 1456.1, "py": 2078.7}, {"loc_id": 141, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -3468.1, "z": 180.0, "px": 1456.1, "py": 2078.7}, {"loc_id": 142, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 2, "x": -5046.4, "z": 1265.2, "px": 1186.7, "py": 2263.9}, {"loc_id": 142, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": -5046.4, "z": 1265.2, "px": 1186.7, "py": 2263.9}, {"loc_id": 142, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5046.4, "z": 1265.2, "px": 1186.7, "py": 2263.9}, {"loc_id": 145, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": -5130.3, "z": 1350.3, "px": 1172.4, "py": 2278.5}, {"loc_id": 146, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -1070.8, "z": -5708.6, "px": 1865.3, "py": 1073.7}, {"loc_id": 146, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": -1070.8, "z": -5708.6, "px": 1865.3, "py": 1073.7}, {"loc_id": 146, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": -1070.8, "z": -5708.6, "px": 1865.3, "py": 1073.7}, {"loc_id": 147, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": -3130.3, "z": 497.4, "px": 1513.8, "py": 2132.9}, {"loc_id": 148, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 586.4, "z": 2679.5, "px": 2148.1, "py": 2505.3}, {"loc_id": 148, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": 586.4, "z": 2679.5, "px": 2148.1, "py": 2505.3}, {"loc_id": 149, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": 1404.0, "z": 1975.1, "px": 2287.6, "py": 2385.1}, {"loc_id": 149, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": 1404.0, "z": 1975.1, "px": 2287.6, "py": 2385.1}, {"loc_id": 150, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 3631.8, "z": 1023.6, "px": 2667.8, "py": 2222.7}, {"loc_id": 150, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": 3631.8, "z": 1023.6, "px": 2667.8, "py": 2222.7}, {"loc_id": 152, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": 3722.0, "z": 717.5, "px": 2683.2, "py": 2170.5}, {"loc_id": 153, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5179.6, "z": 1393.9, "px": 1164.0, "py": 2285.9}, {"loc_id": 153, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": -5179.6, "z": 1393.9, "px": 1164.0, "py": 2285.9}, {"loc_id": 154, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2430.0, "z": 4939.6, "px": 1633.3, "py": 2891.0}, {"loc_id": 155, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 2, "x": -5362.2, "z": 1582.8, "px": 1132.9, "py": 2318.1}, {"loc_id": 155, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 2, "x": -5362.2, "z": 1582.8, "px": 1132.9, "py": 2318.1}, {"loc_id": 155, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": -5362.2, "z": 1582.8, "px": 1132.9, "py": 2318.1}, {"loc_id": 157, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": -51.9, "z": 2544.7, "px": 2039.1, "py": 2482.3}, {"loc_id": 157, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 2, "x": -51.9, "z": 2544.7, "px": 2039.1, "py": 2482.3}, {"loc_id": 157, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": -51.9, "z": 2544.7, "px": 2039.1, "py": 2482.3}, {"loc_id": 159, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": -4406.6, "z": 1211.3, "px": 1295.9, "py": 2254.7}, {"loc_id": 159, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -4406.6, "z": 1211.3, "px": 1295.9, "py": 2254.7}, {"loc_id": 159, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": -4406.6, "z": 1211.3, "px": 1295.9, "py": 2254.7}, {"loc_id": 160, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2167.4, "z": 4223.9, "px": 1678.1, "py": 2768.9}, {"loc_id": 161, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 2, "x": -2701.2, "z": -912.1, "px": 1587.0, "py": 1892.3}, {"loc_id": 162, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": 3787.7, "z": 697.4, "px": 2694.4, "py": 2167.0}, {"loc_id": 163, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": 4625.9, "z": -3085.3, "px": 2837.5, "py": 1521.4}, {"loc_id": 163, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": 4625.9, "z": -3085.3, "px": 2837.5, "py": 1521.4}, {"loc_id": 164, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": -144.7, "z": 2735.8, "px": 2023.3, "py": 2514.9}, {"loc_id": 166, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 2, "x": -2244.3, "z": 4276.9, "px": 1665.0, "py": 2777.9}, {"loc_id": 167, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": 3397.0, "z": -4496.1, "px": 2627.8, "py": 1280.7}, {"loc_id": 170, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": -4366.3, "z": 396.5, "px": 1302.8, "py": 2115.7}, {"loc_id": 171, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 2, "x": 633.0, "z": 2548.8, "px": 2156.0, "py": 2483.0}, {"loc_id": 171, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 2, "x": 633.0, "z": 2548.8, "px": 2156.0, "py": 2483.0}, {"loc_id": 172, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -3663.7, "z": 205.0, "px": 1422.7, "py": 2083.0}, {"loc_id": 172, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": -3663.7, "z": 205.0, "px": 1422.7, "py": 2083.0}, {"loc_id": 173, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4731.5, "z": -783.9, "px": 2855.5, "py": 1914.2}, {"loc_id": 173, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": 4731.5, "z": -783.9, "px": 2855.5, "py": 1914.2}, {"loc_id": 174, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": 563.7, "z": 2571.8, "px": 2144.2, "py": 2486.9}, {"loc_id": 174, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": 563.7, "z": 2571.8, "px": 2144.2, "py": 2486.9}, {"loc_id": 175, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 2, "x": -3717.0, "z": -4233.5, "px": 1413.6, "py": 1325.5}, {"loc_id": 175, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -3717.0, "z": -4233.5, "px": 1413.6, "py": 1325.5}, {"loc_id": 177, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -3456.5, "z": 3310.3, "px": 1458.1, "py": 2613.0}, {"loc_id": 178, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": -4272.5, "z": 3640.1, "px": 1318.8, "py": 2669.2}, {"loc_id": 179, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 133.5, "z": 2638.3, "px": 2070.8, "py": 2498.3}, {"loc_id": 179, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": 133.5, "z": 2638.3, "px": 2070.8, "py": 2498.3}, {"loc_id": 181, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 2, "x": 2700.5, "z": 3847.2, "px": 2508.9, "py": 2704.6}, {"loc_id": 181, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": 2700.5, "z": 3847.2, "px": 2508.9, "py": 2704.6}, {"loc_id": 181, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 2, "x": 2700.5, "z": 3847.2, "px": 2508.9, "py": 2704.6}, {"loc_id": 183, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2508.1, "z": 4873.8, "px": 1620.0, "py": 2879.8}, {"loc_id": 184, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": -819.9, "z": -3633.2, "px": 1908.1, "py": 1427.9}, {"loc_id": 185, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 2, "x": 12.0, "z": 2560.5, "px": 2050.0, "py": 2485.0}, {"loc_id": 185, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 2, "x": 12.0, "z": 2560.5, "px": 2050.0, "py": 2485.0}, {"loc_id": 185, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": 12.0, "z": 2560.5, "px": 2050.0, "py": 2485.0}, {"loc_id": 187, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4433.2, "z": -3127.0, "px": 2804.6, "py": 1514.3}, {"loc_id": 189, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1211.9, "z": 2097.1, "px": 2254.8, "py": 2405.9}, {"loc_id": 190, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 2, "x": 1354.8, "z": 2124.8, "px": 2279.2, "py": 2410.6}, {"loc_id": 192, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5170.2, "z": -656.1, "px": 1165.6, "py": 1936.0}, {"loc_id": 192, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 2, "x": -5170.2, "z": -656.1, "px": 1165.6, "py": 1936.0}, {"loc_id": 656, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 3008.0, "z": 6848.0, "px": 2561.4, "py": 3216.7}, {"loc_id": 658, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 2, "x": -1856.0, "z": -6976.0, "px": 1731.2, "py": 857.4}, {"loc_id": 658, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": -1856.0, "z": -6976.0, "px": 1731.2, "py": 857.4}, {"loc_id": 658, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -1856.0, "z": -6976.0, "px": 1731.2, "py": 857.4}, {"loc_id": 661, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": 9280.0, "z": -1728.0, "px": 3631.8, "py": 1753.1}, {"loc_id": 662, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 2, "x": 1856.0, "z": -7104.0, "px": 2364.8, "py": 835.6}, {"loc_id": 664, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": 5952.0, "z": 5120.0, "px": 3063.8, "py": 2921.8}, {"loc_id": 664, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": 5952.0, "z": 5120.0, "px": 3063.8, "py": 2921.8}, {"loc_id": 665, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 2, "x": -8640.0, "z": 128.0, "px": 573.4, "py": 2069.8}, {"loc_id": 665, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -8640.0, "z": 128.0, "px": 573.4, "py": 2069.8}, {"loc_id": 666, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": 3072.0, "z": 6336.0, "px": 2572.3, "py": 3129.3}, {"loc_id": 668, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 5952.0, "z": -4416.0, "px": 3063.8, "py": 1294.3}, {"loc_id": 668, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 2, "x": 5952.0, "z": -4416.0, "px": 3063.8, "py": 1294.3}, {"loc_id": 668, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 5952.0, "z": -4416.0, "px": 3063.8, "py": 1294.3}, {"loc_id": 670, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": -4736.0, "z": -3968.0, "px": 1239.7, "py": 1370.8}, {"loc_id": 670, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": -4736.0, "z": -3968.0, "px": 1239.7, "py": 1370.8}, {"loc_id": 671, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": -6400.0, "z": -3968.0, "px": 955.7, "py": 1370.8}, {"loc_id": 672, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": 3776.0, "z": 5952.0, "px": 2692.4, "py": 3063.8}, {"loc_id": 672, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 3776.0, "z": 5952.0, "px": 2692.4, "py": 3063.8}, {"loc_id": 674, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": 1664.0, "z": -6784.0, "px": 2332.0, "py": 890.2}, {"loc_id": 675, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 2, "x": -6912.0, "z": 1088.0, "px": 868.4, "py": 2233.7}, {"loc_id": 676, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -7552.0, "z": -2624.0, "px": 759.1, "py": 1600.2}, {"loc_id": 678, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": -8960.0, "z": 768.0, "px": 518.8, "py": 2179.1}, {"loc_id": 678, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": -8960.0, "z": 768.0, "px": 518.8, "py": 2179.1}, {"loc_id": 678, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -8960.0, "z": 768.0, "px": 518.8, "py": 2179.1}, {"loc_id": 679, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 4096.0, "z": -5888.0, "px": 2747.1, "py": 1043.1}, {"loc_id": 679, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 2, "x": 4096.0, "z": -5888.0, "px": 2747.1, "py": 1043.1}, {"loc_id": 679, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": 4096.0, "z": -5888.0, "px": 2747.1, "py": 1043.1}, {"loc_id": 680, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": 8128.0, "z": -3136.0, "px": 3435.2, "py": 1512.8}, {"loc_id": 680, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": 8128.0, "z": -3136.0, "px": 3435.2, "py": 1512.8}, {"loc_id": 681, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": -8576.0, "z": 2112.0, "px": 584.4, "py": 2408.4}, {"loc_id": 682, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 3904.0, "z": -5632.0, "px": 2714.3, "py": 1086.8}, {"loc_id": 683, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 2, "x": 9088.0, "z": 1472.0, "px": 3599.0, "py": 2299.2}, {"loc_id": 684, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 2, "x": -8640.0, "z": 1536.0, "px": 573.4, "py": 2310.1}, {"loc_id": 684, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": -8640.0, "z": 1536.0, "px": 573.4, "py": 2310.1}, {"loc_id": 685, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": -3072.0, "z": -7104.0, "px": 1523.7, "py": 835.6}, {"loc_id": 685, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": -3072.0, "z": -7104.0, "px": 1523.7, "py": 835.6}, {"loc_id": 686, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 7744.0, "z": 2496.0, "px": 3369.6, "py": 2474.0}, {"loc_id": 686, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": 7744.0, "z": 2496.0, "px": 3369.6, "py": 2474.0}, {"loc_id": 687, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 2, "x": 8640.0, "z": -832.0, "px": 3522.6, "py": 1906.0}, {"loc_id": 687, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 2, "x": 8640.0, "z": -832.0, "px": 3522.6, "py": 1906.0}, {"loc_id": 688, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 2, "x": -1920.0, "z": 7040.0, "px": 1720.3, "py": 3249.5}, {"loc_id": 689, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 2, "x": 7040.0, "z": -3712.0, "px": 3249.5, "py": 1414.5}, {"loc_id": 689, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 7040.0, "z": -3712.0, "px": 3249.5, "py": 1414.5}, {"loc_id": 689, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 2, "x": 7040.0, "z": -3712.0, "px": 3249.5, "py": 1414.5}, {"loc_id": 689, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": 7040.0, "z": -3712.0, "px": 3249.5, "py": 1414.5}, {"loc_id": 690, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 2, "x": -5440.0, "z": 5760.0, "px": 1119.6, "py": 3031.0}, {"loc_id": 690, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": -5440.0, "z": 5760.0, "px": 1119.6, "py": 3031.0}, {"loc_id": 690, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": -5440.0, "z": 5760.0, "px": 1119.6, "py": 3031.0}, {"loc_id": 692, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 2, "x": -2816.0, "z": 6272.0, "px": 1567.4, "py": 3118.4}, {"loc_id": 692, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": -2816.0, "z": 6272.0, "px": 1567.4, "py": 3118.4}, {"loc_id": 693, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": 5440.0, "z": 3328.0, "px": 2976.4, "py": 2616.0}, {"loc_id": 695, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 7360.0, "z": -3456.0, "px": 3304.1, "py": 1458.2}, {"loc_id": 696, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": 4672.0, "z": -4672.0, "px": 2845.4, "py": 1250.6}, {"loc_id": 697, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 9600.0, "z": -2368.0, "px": 3686.4, "py": 1643.9}, {"loc_id": 697, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": 9600.0, "z": -2368.0, "px": 3686.4, "py": 1643.9}, {"loc_id": 698, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": 6208.0, "z": 5760.0, "px": 3107.5, "py": 3031.0}, {"loc_id": 698, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": 6208.0, "z": 5760.0, "px": 3107.5, "py": 3031.0}, {"loc_id": 701, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": -1152.0, "z": -7040.0, "px": 1851.4, "py": 846.5}, {"loc_id": 704, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 2, "x": 1280.0, "z": -6592.0, "px": 2266.5, "py": 923.0}, {"loc_id": 704, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": 1280.0, "z": -6592.0, "px": 2266.5, "py": 923.0}, {"loc_id": 704, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 2, "x": 1280.0, "z": -6592.0, "px": 2266.5, "py": 923.0}, {"loc_id": 706, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": 9728.0, "z": 1536.0, "px": 3708.2, "py": 2310.1}, {"loc_id": 706, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 9728.0, "z": 1536.0, "px": 3708.2, "py": 2310.1}, {"loc_id": 706, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 2, "x": 9728.0, "z": 1536.0, "px": 3708.2, "py": 2310.1}, {"loc_id": 706, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": 9728.0, "z": 1536.0, "px": 3708.2, "py": 2310.1}, {"loc_id": 707, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 2, "x": 1024.0, "z": -7360.0, "px": 2222.8, "py": 791.9}, {"loc_id": 707, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 2, "x": 1024.0, "z": -7360.0, "px": 2222.8, "py": 791.9}, {"loc_id": 707, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 1024.0, "z": -7360.0, "px": 2222.8, "py": 791.9}, {"loc_id": 708, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": 8512.0, "z": 1152.0, "px": 3500.7, "py": 2244.6}, {"loc_id": 709, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 2, "x": -6080.0, "z": -1984.0, "px": 1010.3, "py": 1709.4}, {"loc_id": 710, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 2, "x": 8384.0, "z": -3456.0, "px": 3478.9, "py": 1458.2}, {"loc_id": 710, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 8384.0, "z": -3456.0, "px": 3478.9, "py": 1458.2}, {"loc_id": 710, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 8384.0, "z": -3456.0, "px": 3478.9, "py": 1458.2}, {"loc_id": 712, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": 9152.0, "z": -1280.0, "px": 3609.9, "py": 1829.5}, {"loc_id": 713, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": 4224.0, "z": 5824.0, "px": 2768.9, "py": 3042.0}, {"loc_id": 715, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 8064.0, "z": 2752.0, "px": 3424.3, "py": 2517.7}, {"loc_id": 716, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": -6336.0, "z": 3328.0, "px": 966.7, "py": 2616.0}, {"loc_id": 716, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -6336.0, "z": 3328.0, "px": 966.7, "py": 2616.0}, {"loc_id": 717, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": -7360.0, "z": -3392.0, "px": 791.9, "py": 1469.1}, {"loc_id": 717, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": -7360.0, "z": -3392.0, "px": 791.9, "py": 1469.1}, {"loc_id": 717, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -7360.0, "z": -3392.0, "px": 791.9, "py": 1469.1}, {"loc_id": 718, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": -6336.0, "z": 704.0, "px": 966.7, "py": 2168.1}, {"loc_id": 718, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -6336.0, "z": 704.0, "px": 966.7, "py": 2168.1}, {"loc_id": 720, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 2, "x": -7168.0, "z": 640.0, "px": 824.7, "py": 2157.2}, {"loc_id": 720, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": -7168.0, "z": 640.0, "px": 824.7, "py": 2157.2}, {"loc_id": 720, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": -7168.0, "z": 640.0, "px": 824.7, "py": 2157.2}, {"loc_id": 721, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 2, "x": -2560.0, "z": -5760.0, "px": 1611.1, "py": 1065.0}, {"loc_id": 721, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": -2560.0, "z": -5760.0, "px": 1611.1, "py": 1065.0}, {"loc_id": 723, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": 8768.0, "z": -2944.0, "px": 3544.4, "py": 1545.6}, {"loc_id": 723, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 8768.0, "z": -2944.0, "px": 3544.4, "py": 1545.6}, {"loc_id": 724, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": -6912.0, "z": 5056.0, "px": 868.4, "py": 2910.9}, {"loc_id": 724, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -6912.0, "z": 5056.0, "px": 868.4, "py": 2910.9}, {"loc_id": 725, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 2816.0, "z": 5696.0, "px": 2528.6, "py": 3020.1}, {"loc_id": 726, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 2, "x": 832.0, "z": -7040.0, "px": 2190.0, "py": 846.5}, {"loc_id": 727, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 6144.0, "z": -4672.0, "px": 3096.6, "py": 1250.6}, {"loc_id": 728, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 2, "x": 7680.0, "z": -2368.0, "px": 3358.7, "py": 1643.9}, {"loc_id": 728, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": 7680.0, "z": -2368.0, "px": 3358.7, "py": 1643.9}, {"loc_id": 729, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": 8064.0, "z": -1728.0, "px": 3424.3, "py": 1753.1}, {"loc_id": 730, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": 8192.0, "z": -832.0, "px": 3446.1, "py": 1906.0}, {"loc_id": 731, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": -7744.0, "z": -2880.0, "px": 726.4, "py": 1556.5}, {"loc_id": 731, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": -7744.0, "z": -2880.0, "px": 726.4, "py": 1556.5}, {"loc_id": 733, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 2, "x": 8256.0, "z": 2432.0, "px": 3457.0, "py": 2463.1}, {"loc_id": 733, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 8256.0, "z": 2432.0, "px": 3457.0, "py": 2463.1}, {"loc_id": 733, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": 8256.0, "z": 2432.0, "px": 3457.0, "py": 2463.1}, {"loc_id": 734, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": 2752.0, "z": 5952.0, "px": 2517.7, "py": 3063.8}, {"loc_id": 734, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": 2752.0, "z": 5952.0, "px": 2517.7, "py": 3063.8}, {"loc_id": 735, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": -9536.0, "z": 832.0, "px": 420.5, "py": 2190.0}, {"loc_id": 735, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 2, "x": -9536.0, "z": 832.0, "px": 420.5, "py": 2190.0}, {"loc_id": 735, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": -9536.0, "z": 832.0, "px": 420.5, "py": 2190.0}, {"loc_id": 735, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -9536.0, "z": 832.0, "px": 420.5, "py": 2190.0}, {"loc_id": 736, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 9088.0, "z": -3008.0, "px": 3599.0, "py": 1534.6}, {"loc_id": 737, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": -9728.0, "z": -1024.0, "px": 387.8, "py": 1873.2}, {"loc_id": 738, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 2, "x": -3072.0, "z": -5760.0, "px": 1523.7, "py": 1065.0}, {"loc_id": 739, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": -6912.0, "z": 704.0, "px": 868.4, "py": 2168.1}, {"loc_id": 740, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 2, "x": -5760.0, "z": -1984.0, "px": 1065.0, "py": 1709.4}, {"loc_id": 742, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 2, "x": -5376.0, "z": 4736.0, "px": 1130.5, "py": 2856.3}, {"loc_id": 743, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": -9408.0, "z": -2432.0, "px": 442.4, "py": 1632.9}, {"loc_id": 743, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -9408.0, "z": -2432.0, "px": 442.4, "py": 1632.9}, {"loc_id": 744, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 2, "x": 1408.0, "z": 7488.0, "px": 2288.3, "py": 3326.0}, {"loc_id": 744, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 2, "x": 1408.0, "z": 7488.0, "px": 2288.3, "py": 3326.0}, {"loc_id": 745, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 2, "x": -5824.0, "z": 3264.0, "px": 1054.0, "py": 2605.1}, {"loc_id": 746, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": -6592.0, "z": 896.0, "px": 923.0, "py": 2200.9}, {"loc_id": 747, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 2, "x": -7296.0, "z": 1152.0, "px": 802.8, "py": 2244.6}, {"loc_id": 747, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": -7296.0, "z": 1152.0, "px": 802.8, "py": 2244.6}, {"loc_id": 747, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": -7296.0, "z": 1152.0, "px": 802.8, "py": 2244.6}, {"loc_id": 748, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": -4096.0, "z": 4736.0, "px": 1348.9, "py": 2856.3}, {"loc_id": 748, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 2, "x": -4096.0, "z": 4736.0, "px": 1348.9, "py": 2856.3}, {"loc_id": 748, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -4096.0, "z": 4736.0, "px": 1348.9, "py": 2856.3}, {"loc_id": 749, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 2, "x": 192.0, "z": -7424.0, "px": 2080.8, "py": 781.0}, {"loc_id": 749, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": 192.0, "z": -7424.0, "px": 2080.8, "py": 781.0}, {"loc_id": 750, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 2, "x": 3072.0, "z": 7168.0, "px": 2572.3, "py": 3271.3}, {"loc_id": 750, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": 3072.0, "z": 7168.0, "px": 2572.3, "py": 3271.3}, {"loc_id": 750, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 2, "x": 3072.0, "z": 7168.0, "px": 2572.3, "py": 3271.3}, {"loc_id": 752, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 8256.0, "z": -2880.0, "px": 3457.0, "py": 1556.5}, {"loc_id": 752, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": 8256.0, "z": -2880.0, "px": 3457.0, "py": 1556.5}, {"loc_id": 752, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": 8256.0, "z": -2880.0, "px": 3457.0, "py": 1556.5}, {"loc_id": 753, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": -1408.0, "z": -6016.0, "px": 1807.7, "py": 1021.3}, {"loc_id": 754, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: RoyalJelly", "count": 2, "x": -9664.0, "z": -2176.0, "px": 398.7, "py": 1676.6}, {"loc_id": 754, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": -9664.0, "z": -2176.0, "px": 398.7, "py": 1676.6}, {"loc_id": 754, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": -9664.0, "z": -2176.0, "px": 398.7, "py": 1676.6}, {"loc_id": 754, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 2, "x": -9664.0, "z": -2176.0, "px": 398.7, "py": 1676.6}, {"loc_id": 755, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": -9216.0, "z": -640.0, "px": 475.1, "py": 1938.8}, {"loc_id": 759, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 3968.0, "z": -5312.0, "px": 2725.2, "py": 1141.4}, {"loc_id": 759, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": 3968.0, "z": -5312.0, "px": 2725.2, "py": 1141.4}, {"loc_id": 760, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": 4160.0, "z": -4736.0, "px": 2758.0, "py": 1239.7}, {"loc_id": 761, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 2, "x": -2112.0, "z": -6656.0, "px": 1687.6, "py": 912.0}, {"loc_id": 762, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": 4032.0, "z": -6464.0, "px": 2736.1, "py": 944.8}, {"loc_id": 763, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 2, "x": 3904.0, "z": -7040.0, "px": 2714.3, "py": 846.5}, {"loc_id": 763, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 2, "x": 3904.0, "z": -7040.0, "px": 2714.3, "py": 846.5}, {"loc_id": 764, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": -7168.0, "z": -1280.0, "px": 824.7, "py": 1829.5}, {"loc_id": 764, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -7168.0, "z": -1280.0, "px": 824.7, "py": 1829.5}, {"loc_id": 766, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": 5760.0, "z": 6080.0, "px": 3031.0, "py": 3085.7}, {"loc_id": 767, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": 1152.0, "z": 7616.0, "px": 2244.6, "py": 3347.8}, {"loc_id": 767, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": 1152.0, "z": 7616.0, "px": 2244.6, "py": 3347.8}, {"loc_id": 769, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": -6272.0, "z": 3008.0, "px": 977.6, "py": 2561.4}, {"loc_id": 771, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 2944.0, "z": 5440.0, "px": 2550.4, "py": 2976.4}, {"loc_id": 772, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 2, "x": -7104.0, "z": -2176.0, "px": 835.6, "py": 1676.6}, {"loc_id": 772, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -7104.0, "z": -2176.0, "px": 835.6, "py": 1676.6}, {"loc_id": 773, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: Seeker", "count": 2, "x": -4416.0, "z": -6784.0, "px": 1294.3, "py": 890.2}, {"loc_id": 773, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 2, "x": -4416.0, "z": -6784.0, "px": 1294.3, "py": 890.2}, {"loc_id": 773, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": -4416.0, "z": -6784.0, "px": 1294.3, "py": 890.2}, {"loc_id": 774, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 6016.0, "z": 5952.0, "px": 3074.7, "py": 3063.8}, {"loc_id": 775, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 5632.0, "z": 2432.0, "px": 3009.2, "py": 2463.1}, {"loc_id": 775, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 2, "x": 5632.0, "z": 2432.0, "px": 3009.2, "py": 2463.1}, {"loc_id": 775, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 5632.0, "z": 2432.0, "px": 3009.2, "py": 2463.1}, {"loc_id": 776, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": -3200.0, "z": 5376.0, "px": 1501.9, "py": 2965.5}, {"loc_id": 777, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": 4864.0, "z": 6208.0, "px": 2878.1, "py": 3107.5}, {"loc_id": 778, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -7616.0, "z": 1216.0, "px": 748.2, "py": 2255.5}, {"loc_id": 778, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": -7616.0, "z": 1216.0, "px": 748.2, "py": 2255.5}, {"loc_id": 779, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": 2304.0, "z": -5760.0, "px": 2441.2, "py": 1065.0}, {"loc_id": 779, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 2304.0, "z": -5760.0, "px": 2441.2, "py": 1065.0}, {"loc_id": 779, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 2, "x": 2304.0, "z": -5760.0, "px": 2441.2, "py": 1065.0}, {"loc_id": 780, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": -5312.0, "z": -4480.0, "px": 1141.4, "py": 1283.4}, {"loc_id": 780, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 2, "x": -5312.0, "z": -4480.0, "px": 1141.4, "py": 1283.4}, {"loc_id": 780, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -5312.0, "z": -4480.0, "px": 1141.4, "py": 1283.4}, {"loc_id": 781, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": -6144.0, "z": 3520.0, "px": 999.4, "py": 2648.7}, {"loc_id": 782, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -6144.0, "z": 3968.0, "px": 999.4, "py": 2725.2}, {"loc_id": 783, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 6784.0, "z": 1216.0, "px": 3205.8, "py": 2255.5}, {"loc_id": 784, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -3776.0, "z": 5440.0, "px": 1403.6, "py": 2976.4}, {"loc_id": 784, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": -3776.0, "z": 5440.0, "px": 1403.6, "py": 2976.4}, {"loc_id": 785, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 2, "x": -192.0, "z": -6400.0, "px": 2015.2, "py": 955.7}, {"loc_id": 786, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": -9472.0, "z": -960.0, "px": 431.4, "py": 1884.2}, {"loc_id": 786, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": -9472.0, "z": -960.0, "px": 431.4, "py": 1884.2}, {"loc_id": 787, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 3200.0, "z": 5504.0, "px": 2594.1, "py": 2987.3}, {"loc_id": 787, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 2, "x": 3200.0, "z": 5504.0, "px": 2594.1, "py": 2987.3}, {"loc_id": 788, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": 4864.0, "z": 5696.0, "px": 2878.1, "py": 3020.1}, {"loc_id": 788, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 2, "x": 4864.0, "z": 5696.0, "px": 2878.1, "py": 3020.1}, {"loc_id": 789, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -704.0, "z": 6848.0, "px": 1927.9, "py": 3216.7}, {"loc_id": 789, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 2, "x": -704.0, "z": 6848.0, "px": 1927.9, "py": 3216.7}, {"loc_id": 790, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 384.0, "z": -7104.0, "px": 2113.5, "py": 835.6}, {"loc_id": 791, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 2, "x": 6720.0, "z": 5376.0, "px": 3194.9, "py": 2965.5}, {"loc_id": 791, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 6720.0, "z": 5376.0, "px": 3194.9, "py": 2965.5}, {"loc_id": 791, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": 6720.0, "z": 5376.0, "px": 3194.9, "py": 2965.5}, {"loc_id": 792, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -9152.0, "z": 960.0, "px": 486.1, "py": 2211.8}, {"loc_id": 792, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": -9152.0, "z": 960.0, "px": 486.1, "py": 2211.8}, {"loc_id": 793, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 4224.0, "z": 6336.0, "px": 2768.9, "py": 3129.3}, {"loc_id": 793, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": 4224.0, "z": 6336.0, "px": 2768.9, "py": 3129.3}, {"loc_id": 793, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": 4224.0, "z": 6336.0, "px": 2768.9, "py": 3129.3}, {"loc_id": 793, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 4224.0, "z": 6336.0, "px": 2768.9, "py": 3129.3}, {"loc_id": 794, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -8320.0, "z": 64.0, "px": 628.1, "py": 2058.9}, {"loc_id": 794, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": -8320.0, "z": 64.0, "px": 628.1, "py": 2058.9}, {"loc_id": 795, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": 8512.0, "z": 576.0, "px": 3500.7, "py": 2146.3}, {"loc_id": 795, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": 8512.0, "z": 576.0, "px": 3500.7, "py": 2146.3}, {"loc_id": 795, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": 8512.0, "z": 576.0, "px": 3500.7, "py": 2146.3}, {"loc_id": 796, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -128.0, "z": 7360.0, "px": 2026.2, "py": 3304.1}, {"loc_id": 796, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -128.0, "z": 7360.0, "px": 2026.2, "py": 3304.1}, {"loc_id": 798, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": -576.0, "z": -6976.0, "px": 1949.7, "py": 857.4}, {"loc_id": 799, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 2, "x": -8704.0, "z": -1280.0, "px": 562.5, "py": 1829.5}, {"loc_id": 800, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": 2368.0, "z": -6592.0, "px": 2452.1, "py": 923.0}, {"loc_id": 801, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": -5760.0, "z": -5504.0, "px": 1065.0, "py": 1108.7}, {"loc_id": 801, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 2, "x": -5760.0, "z": -5504.0, "px": 1065.0, "py": 1108.7}, {"loc_id": 802, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": -4800.0, "z": 4160.0, "px": 1228.8, "py": 2758.0}, {"loc_id": 803, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -3008.0, "z": -6080.0, "px": 1534.6, "py": 1010.3}, {"loc_id": 803, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -3008.0, "z": -6080.0, "px": 1534.6, "py": 1010.3}, {"loc_id": 803, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -3008.0, "z": -6080.0, "px": 1534.6, "py": 1010.3}, {"loc_id": 804, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": 128.0, "z": 6848.0, "px": 2069.8, "py": 3216.7}, {"loc_id": 804, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 128.0, "z": 6848.0, "px": 2069.8, "py": 3216.7}, {"loc_id": 806, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": 4608.0, "z": 6336.0, "px": 2834.4, "py": 3129.3}, {"loc_id": 806, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": 4608.0, "z": 6336.0, "px": 2834.4, "py": 3129.3}, {"loc_id": 806, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 4608.0, "z": 6336.0, "px": 2834.4, "py": 3129.3}, {"loc_id": 807, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 2, "x": -2944.0, "z": -6528.0, "px": 1545.6, "py": 933.9}, {"loc_id": 807, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -2944.0, "z": -6528.0, "px": 1545.6, "py": 933.9}, {"loc_id": 808, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": 4928.0, "z": -5696.0, "px": 2889.0, "py": 1075.9}, {"loc_id": 809, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 4416.0, "z": 5568.0, "px": 2801.7, "py": 2998.3}, {"loc_id": 810, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 2, "x": 768.0, "z": 6528.0, "px": 2179.1, "py": 3162.1}, {"loc_id": 810, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": 768.0, "z": 6528.0, "px": 2179.1, "py": 3162.1}, {"loc_id": 810, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": 768.0, "z": 6528.0, "px": 2179.1, "py": 3162.1}, {"loc_id": 812, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": 6848.0, "z": -256.0, "px": 3216.7, "py": 2004.3}, {"loc_id": 813, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": -8192.0, "z": -3520.0, "px": 649.9, "py": 1447.3}, {"loc_id": 814, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 2, "x": 192.0, "z": 7104.0, "px": 2080.8, "py": 3260.4}, {"loc_id": 815, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 2, "x": 832.0, "z": 6784.0, "px": 2190.0, "py": 3205.8}, {"loc_id": 815, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": 832.0, "z": 6784.0, "px": 2190.0, "py": 3205.8}, {"loc_id": 816, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -7040.0, "z": 5312.0, "px": 846.5, "py": 2954.6}, {"loc_id": 816, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": -7040.0, "z": 5312.0, "px": 846.5, "py": 2954.6}, {"loc_id": 816, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -7040.0, "z": 5312.0, "px": 846.5, "py": 2954.6}, {"loc_id": 817, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: RoyalJelly", "count": 2, "x": -6976.0, "z": -1728.0, "px": 857.4, "py": 1753.1}, {"loc_id": 817, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": -6976.0, "z": -1728.0, "px": 857.4, "py": 1753.1}, {"loc_id": 817, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -6976.0, "z": -1728.0, "px": 857.4, "py": 1753.1}, {"loc_id": 818, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -7360.0, "z": 4032.0, "px": 791.9, "py": 2736.1}, {"loc_id": 818, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -7360.0, "z": 4032.0, "px": 791.9, "py": 2736.1}, {"loc_id": 819, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": -6592.0, "z": -4992.0, "px": 923.0, "py": 1196.0}, {"loc_id": 819, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -6592.0, "z": -4992.0, "px": 923.0, "py": 1196.0}, {"loc_id": 820, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -7360.0, "z": 3008.0, "px": 791.9, "py": 2561.4}, {"loc_id": 821, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 384.0, "z": 7552.0, "px": 2113.5, "py": 3336.9}, {"loc_id": 822, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": -5696.0, "z": 3648.0, "px": 1075.9, "py": 2670.6}, {"loc_id": 823, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": -6720.0, "z": -3328.0, "px": 901.1, "py": 1480.0}, {"loc_id": 823, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -6720.0, "z": -3328.0, "px": 901.1, "py": 1480.0}, {"loc_id": 824, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": -2368.0, "z": -6464.0, "px": 1643.9, "py": 944.8}, {"loc_id": 825, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": -8384.0, "z": -448.0, "px": 617.1, "py": 1971.5}, {"loc_id": 826, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": 7040.0, "z": 3840.0, "px": 3249.5, "py": 2703.4}, {"loc_id": 827, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 6336.0, "z": -1280.0, "px": 3129.3, "py": 1829.5}, {"loc_id": 828, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": 7168.0, "z": -64.0, "px": 3271.3, "py": 2037.1}, {"loc_id": 828, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 7168.0, "z": -64.0, "px": 3271.3, "py": 2037.1}, {"loc_id": 828, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": 7168.0, "z": -64.0, "px": 3271.3, "py": 2037.1}, {"loc_id": 829, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 2, "x": -4992.0, "z": -3648.0, "px": 1196.0, "py": 1425.4}, {"loc_id": 830, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 9920.0, "z": -192.0, "px": 3741.0, "py": 2015.2}, {"loc_id": 831, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": 8640.0, "z": -3328.0, "px": 3522.6, "py": 1480.0}, {"loc_id": 833, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 6208.0, "z": 5056.0, "px": 3107.5, "py": 2910.9}, {"loc_id": 833, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": 6208.0, "z": 5056.0, "px": 3107.5, "py": 2910.9}, {"loc_id": 834, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": -8576.0, "z": 1280.0, "px": 584.4, "py": 2266.5}, {"loc_id": 834, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 2, "x": -8576.0, "z": 1280.0, "px": 584.4, "py": 2266.5}, {"loc_id": 835, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -8192.0, "z": 2304.0, "px": 649.9, "py": 2441.2}, {"loc_id": 835, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": -8192.0, "z": 2304.0, "px": 649.9, "py": 2441.2}, {"loc_id": 836, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -6592.0, "z": 4800.0, "px": 923.0, "py": 2867.2}, {"loc_id": 837, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -9408.0, "z": 1472.0, "px": 442.4, "py": 2299.2}, {"loc_id": 839, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -8960.0, "z": 1472.0, "px": 518.8, "py": 2299.2}, {"loc_id": 839, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 2, "x": -8960.0, "z": 1472.0, "px": 518.8, "py": 2299.2}, {"loc_id": 839, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": -8960.0, "z": 1472.0, "px": 518.8, "py": 2299.2}, {"loc_id": 839, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": -8960.0, "z": 1472.0, "px": 518.8, "py": 2299.2}, {"loc_id": 840, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -1664.0, "z": 7104.0, "px": 1764.0, "py": 3260.4}, {"loc_id": 840, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": -1664.0, "z": 7104.0, "px": 1764.0, "py": 3260.4}, {"loc_id": 840, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -1664.0, "z": 7104.0, "px": 1764.0, "py": 3260.4}, {"loc_id": 841, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": 3648.0, "z": -6784.0, "px": 2670.6, "py": 890.2}, {"loc_id": 842, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": -4480.0, "z": -5376.0, "px": 1283.4, "py": 1130.5}, {"loc_id": 842, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": -4480.0, "z": -5376.0, "px": 1283.4, "py": 1130.5}, {"loc_id": 843, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": 9664.0, "z": -768.0, "px": 3697.3, "py": 1916.9}, {"loc_id": 844, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": 2560.0, "z": -5568.0, "px": 2484.9, "py": 1097.7}, {"loc_id": 845, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 4672.0, "z": -6080.0, "px": 2845.4, "py": 1010.3}, {"loc_id": 846, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -1152.0, "z": -7488.0, "px": 1851.4, "py": 770.0}, {"loc_id": 846, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -1152.0, "z": -7488.0, "px": 1851.4, "py": 770.0}, {"loc_id": 847, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 1280.0, "z": 6016.0, "px": 2266.5, "py": 3074.7}, {"loc_id": 847, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 2, "x": 1280.0, "z": 6016.0, "px": 2266.5, "py": 3074.7}, {"loc_id": 848, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": -6016.0, "z": -5568.0, "px": 1021.3, "py": 1097.7}, {"loc_id": 850, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -8576.0, "z": -2816.0, "px": 584.4, "py": 1567.4}, {"loc_id": 851, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": 8000.0, "z": -4480.0, "px": 3413.3, "py": 1283.4}, {"loc_id": 852, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": 8512.0, "z": -2688.0, "px": 3500.7, "py": 1589.2}, {"loc_id": 855, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": 2560.0, "z": -5824.0, "px": 2484.9, "py": 1054.0}, {"loc_id": 858, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -8384.0, "z": -3072.0, "px": 617.1, "py": 1523.7}, {"loc_id": 859, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": 4288.0, "z": -6080.0, "px": 2779.8, "py": 1010.3}, {"loc_id": 859, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 4288.0, "z": -6080.0, "px": 2779.8, "py": 1010.3}, {"loc_id": 860, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": 9664.0, "z": 768.0, "px": 3697.3, "py": 2179.1}, {"loc_id": 860, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": 9664.0, "z": 768.0, "px": 3697.3, "py": 2179.1}, {"loc_id": 861, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 6656.0, "z": -5504.0, "px": 3184.0, "py": 1108.7}, {"loc_id": 861, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 6656.0, "z": -5504.0, "px": 3184.0, "py": 1108.7}, {"loc_id": 862, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -8128.0, "z": -3968.0, "px": 660.8, "py": 1370.8}, {"loc_id": 863, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": -1664.0, "z": -6080.0, "px": 1764.0, "py": 1010.3}, {"loc_id": 864, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": 6592.0, "z": -192.0, "px": 3173.0, "py": 2015.2}, {"loc_id": 866, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": 8384.0, "z": -1728.0, "px": 3478.9, "py": 1753.1}, {"loc_id": 866, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": 8384.0, "z": -1728.0, "px": 3478.9, "py": 1753.1}, {"loc_id": 866, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 8384.0, "z": -1728.0, "px": 3478.9, "py": 1753.1}, {"loc_id": 867, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -5120.0, "z": 4672.0, "px": 1174.2, "py": 2845.4}, {"loc_id": 868, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": -7040.0, "z": 1344.0, "px": 846.5, "py": 2277.4}, {"loc_id": 868, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": -7040.0, "z": 1344.0, "px": 846.5, "py": 2277.4}, {"loc_id": 868, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": -7040.0, "z": 1344.0, "px": 846.5, "py": 2277.4}, {"loc_id": 869, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -6528.0, "z": -4416.0, "px": 933.9, "py": 1294.3}, {"loc_id": 870, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": 5696.0, "z": 3520.0, "px": 3020.1, "py": 2648.7}, {"loc_id": 871, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": -6016.0, "z": 2880.0, "px": 1021.3, "py": 2539.5}, {"loc_id": 871, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -6016.0, "z": 2880.0, "px": 1021.3, "py": 2539.5}, {"loc_id": 872, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": -9152.0, "z": -2240.0, "px": 486.1, "py": 1665.7}, {"loc_id": 872, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -9152.0, "z": -2240.0, "px": 486.1, "py": 1665.7}, {"loc_id": 873, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": 4480.0, "z": 5952.0, "px": 2812.6, "py": 3063.8}, {"loc_id": 874, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": 1856.0, "z": -6592.0, "px": 2364.8, "py": 923.0}, {"loc_id": 875, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 2, "x": 1280.0, "z": -6336.0, "px": 2266.5, "py": 966.7}, {"loc_id": 875, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 1280.0, "z": -6336.0, "px": 2266.5, "py": 966.7}, {"loc_id": 876, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": -2240.0, "z": -7040.0, "px": 1665.7, "py": 846.5}, {"loc_id": 876, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": -2240.0, "z": -7040.0, "px": 1665.7, "py": 846.5}, {"loc_id": 876, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": -2240.0, "z": -7040.0, "px": 1665.7, "py": 846.5}, {"loc_id": 877, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": -6272.0, "z": -5376.0, "px": 977.6, "py": 1130.5}, {"loc_id": 877, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": -6272.0, "z": -5376.0, "px": 977.6, "py": 1130.5}, {"loc_id": 877, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 2, "x": -6272.0, "z": -5376.0, "px": 977.6, "py": 1130.5}, {"loc_id": 878, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": 1344.0, "z": -7296.0, "px": 2277.4, "py": 802.8}, {"loc_id": 878, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": 1344.0, "z": -7296.0, "px": 2277.4, "py": 802.8}, {"loc_id": 879, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -6592.0, "z": 4032.0, "px": 923.0, "py": 2736.1}, {"loc_id": 880, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 4352.0, "z": -4416.0, "px": 2790.7, "py": 1294.3}, {"loc_id": 881, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": 4352.0, "z": 4672.0, "px": 2790.7, "py": 2845.4}, {"loc_id": 881, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": 4352.0, "z": 4672.0, "px": 2790.7, "py": 2845.4}, {"loc_id": 881, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Seeker (respawn every 240 minutes)", "count": 2, "x": 4352.0, "z": 4672.0, "px": 2790.7, "py": 2845.4}, {"loc_id": 881, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: Tick (respawn every 240 minutes)", "count": 2, "x": 4352.0, "z": 4672.0, "px": 2790.7, "py": 2845.4}, {"loc_id": 881, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 2, "x": 4352.0, "z": 4672.0, "px": 2790.7, "py": 2845.4}, {"loc_id": 881, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 4352.0, "z": 4672.0, "px": 2790.7, "py": 2845.4}, {"loc_id": 882, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": 7936.0, "z": 3008.0, "px": 3402.4, "py": 2561.4}, {"loc_id": 882, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 7936.0, "z": 3008.0, "px": 3402.4, "py": 2561.4}, {"loc_id": 883, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 2, "x": 576.0, "z": 6784.0, "px": 2146.3, "py": 3205.8}, {"loc_id": 884, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -7872.0, "z": 4608.0, "px": 704.5, "py": 2834.4}, {"loc_id": 885, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": -5184.0, "z": -3840.0, "px": 1163.3, "py": 1392.6}, {"loc_id": 885, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": -5184.0, "z": -3840.0, "px": 1163.3, "py": 1392.6}, {"loc_id": 886, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": -3904.0, "z": 5888.0, "px": 1381.7, "py": 3052.9}, {"loc_id": 886, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Tick", "count": 2, "x": -3904.0, "z": 5888.0, "px": 1381.7, "py": 3052.9}, {"loc_id": 887, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -7616.0, "z": -3328.0, "px": 748.2, "py": 1480.0}, {"loc_id": 888, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 2, "x": 5056.0, "z": -3840.0, "px": 2910.9, "py": 1392.6}, {"loc_id": 889, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": 7360.0, "z": 4544.0, "px": 3304.1, "py": 2823.5}, {"loc_id": 890, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -6528.0, "z": -3008.0, "px": 933.9, "py": 1534.6}, {"loc_id": 892, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -6400.0, "z": 5632.0, "px": 955.7, "py": 3009.2}, {"loc_id": 893, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 2, "x": -8384.0, "z": -3776.0, "px": 617.1, "py": 1403.6}, {"loc_id": 893, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 2, "x": -8384.0, "z": -3776.0, "px": 617.1, "py": 1403.6}, {"loc_id": 893, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 2, "x": -8384.0, "z": -3776.0, "px": 617.1, "py": 1403.6}, {"loc_id": 894, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 2, "x": 5952.0, "z": 2432.0, "px": 3063.8, "py": 2463.1}, {"loc_id": 898, "loc_name": "Mistlands_DvergrBossEntrance1", "item": "Pickable: Lantern", "count": 2, "x": 8768.0, "z": -640.0, "px": 3544.4, "py": 1938.8}, {"loc_id": 900, "loc_name": "Mistlands_DvergrBossEntrance1", "item": "Pickable: Tankard_dvergr", "count": 2, "x": -2176.0, "z": -7104.0, "px": 1676.6, "py": 835.6}, {"loc_id": 902, "loc_name": "Hildir_cave", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 2, "x": -2688.0, "z": 7360.0, "px": 1589.2, "py": 3304.1}, {"loc_id": 903, "loc_name": "Hildir_cave", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 2, "x": 6016.0, "z": 4608.0, "px": 3074.7, "py": 2834.4}, {"loc_id": 915, "loc_name": "Hildir_crypt", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 2312.6, "z": -4479.1, "px": 2442.7, "py": 1283.6}, {"loc_id": 916, "loc_name": "Hildir_crypt", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 2613.9, "z": 5053.6, "px": 2494.1, "py": 2910.5}, {"loc_id": 917, "loc_name": "Hildir_plainsfortress", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": 4800.0, "z": -1216.0, "px": 2867.2, "py": 1840.5}, {"loc_id": 918, "loc_name": "Hildir_plainsfortress", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": 1728.0, "z": 3200.0, "px": 2342.9, "py": 2594.1}, {"loc_id": 919, "loc_name": "Hildir_plainsfortress", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": -3264.0, "z": 1344.0, "px": 1490.9, "py": 2277.4}, {"loc_id": 928, "loc_name": "CharredFortress", "item": "Pickable: MoltenCore", "count": 2, "x": -704.0, "z": -9408.0, "px": 1927.9, "py": 442.4}, {"loc_id": 928, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Mage", "count": 2, "x": -704.0, "z": -9408.0, "px": 1927.9, "py": 442.4}, {"loc_id": 928, "loc_name": "CharredFortress", "item": "AreaSpawner: Charred_Melee[1-3] Charred_Archer[1-3] Charred_Mage[1-3] (respawn every 25 seconds)", "count": 2, "x": -704.0, "z": -9408.0, "px": 1927.9, "py": 442.4}, {"loc_id": 929, "loc_name": "CharredFortress", "item": "Pickable: MoltenCore", "count": 2, "x": -2304.0, "z": -8896.0, "px": 1654.8, "py": 529.7}, {"loc_id": 929, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Mage", "count": 2, "x": -2304.0, "z": -8896.0, "px": 1654.8, "py": 529.7}, {"loc_id": 929, "loc_name": "CharredFortress", "item": "AreaSpawner: Charred_Melee[1-3] Charred_Archer[1-3] Charred_Mage[1-3] (respawn every 25 seconds)", "count": 2, "x": -2304.0, "z": -8896.0, "px": 1654.8, "py": 529.7}, {"loc_id": 930, "loc_name": "CharredFortress", "item": "Pickable: MoltenCore", "count": 2, "x": 256.0, "z": -8896.0, "px": 2091.7, "py": 529.7}, {"loc_id": 930, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Mage", "count": 2, "x": 256.0, "z": -8896.0, "px": 2091.7, "py": 529.7}, {"loc_id": 930, "loc_name": "CharredFortress", "item": "AreaSpawner: Charred_Melee[1-3] Charred_Archer[1-3] Charred_Mage[1-3] (respawn every 25 seconds)", "count": 2, "x": 256.0, "z": -8896.0, "px": 2091.7, "py": 529.7}, {"loc_id": 930, "loc_name": "CharredFortress", "item": "SpawnOnce: piece_Charred_Balista", "count": 2, "x": 256.0, "z": -8896.0, "px": 2091.7, "py": 529.7}, {"loc_id": 931, "loc_name": "CharredFortress", "item": "Pickable: MoltenCore", "count": 2, "x": -384.0, "z": -8832.0, "px": 1982.5, "py": 540.7}, {"loc_id": 931, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Mage", "count": 2, "x": -384.0, "z": -8832.0, "px": 1982.5, "py": 540.7}, {"loc_id": 931, "loc_name": "CharredFortress", "item": "AreaSpawner: Charred_Melee[1-3] Charred_Archer[1-3] Charred_Mage[1-3] (respawn every 25 seconds)", "count": 2, "x": -384.0, "z": -8832.0, "px": 1982.5, "py": 540.7}, {"loc_id": 932, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Mage", "count": 2, "x": 704.0, "z": -9344.0, "px": 2168.1, "py": 453.3}, {"loc_id": 932, "loc_name": "CharredFortress", "item": "AreaSpawner: Charred_Melee[1-3] Charred_Archer[1-3] Charred_Mage[1-3] (respawn every 25 seconds)", "count": 2, "x": 704.0, "z": -9344.0, "px": 2168.1, "py": 453.3}, {"loc_id": 933, "loc_name": "CharredFortress", "item": "Pickable: MoltenCore", "count": 2, "x": -576.0, "z": -9152.0, "px": 1949.7, "py": 486.1}, {"loc_id": 933, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Mage", "count": 2, "x": -576.0, "z": -9152.0, "px": 1949.7, "py": 486.1}, {"loc_id": 933, "loc_name": "CharredFortress", "item": "AreaSpawner: Charred_Melee[1-3] Charred_Archer[1-3] Charred_Mage[1-3] (respawn every 25 seconds)", "count": 2, "x": -576.0, "z": -9152.0, "px": 1949.7, "py": 486.1}, {"loc_id": 934, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Mage", "count": 2, "x": -2240.0, "z": -8576.0, "px": 1665.7, "py": 584.4}, {"loc_id": 934, "loc_name": "CharredFortress", "item": "AreaSpawner: Charred_Melee[1-3] Charred_Archer[1-3] Charred_Mage[1-3] (respawn every 25 seconds)", "count": 2, "x": -2240.0, "z": -8576.0, "px": 1665.7, "py": 584.4}, {"loc_id": 935, "loc_name": "CharredFortress", "item": "Pickable: MoltenCore", "count": 2, "x": 1152.0, "z": -9024.0, "px": 2244.6, "py": 507.9}, {"loc_id": 935, "loc_name": "CharredFortress", "item": "AreaSpawner: Charred_Melee[1-3] Charred_Archer[1-3] Charred_Mage[1-3] (respawn every 25 seconds)", "count": 2, "x": 1152.0, "z": -9024.0, "px": 2244.6, "py": 507.9}, {"loc_id": 936, "loc_name": "CharredFortress", "item": "Pickable: MoltenCore", "count": 2, "x": 704.0, "z": -9088.0, "px": 2168.1, "py": 497.0}, {"loc_id": 936, "loc_name": "CharredFortress", "item": "AreaSpawner: Charred_Melee[1-3] Charred_Archer[1-3] Charred_Mage[1-3] (respawn every 25 seconds)", "count": 2, "x": 704.0, "z": -9088.0, "px": 2168.1, "py": 497.0}, {"loc_id": 937, "loc_name": "CharredFortress", "item": "Pickable: MoltenCore", "count": 2, "x": -832.0, "z": -8896.0, "px": 1906.0, "py": 529.7}, {"loc_id": 937, "loc_name": "CharredFortress", "item": "AreaSpawner: Charred_Melee[1-3] Charred_Archer[1-3] Charred_Mage[1-3] (respawn every 25 seconds)", "count": 2, "x": -832.0, "z": -8896.0, "px": 1906.0, "py": 529.7}, {"loc_id": 938, "loc_name": "CharredFortress", "item": "Pickable: MoltenCore", "count": 2, "x": 1536.0, "z": -9152.0, "px": 2310.1, "py": 486.1}, {"loc_id": 938, "loc_name": "CharredFortress", "item": "AreaSpawner: Charred_Melee[1-3] Charred_Archer[1-3] Charred_Mage[1-3] (respawn every 25 seconds)", "count": 2, "x": 1536.0, "z": -9152.0, "px": 2310.1, "py": 486.1}, {"loc_id": 939, "loc_name": "CharredFortress", "item": "Pickable: MoltenCore", "count": 2, "x": 1600.0, "z": -9408.0, "px": 2321.1, "py": 442.4}, {"loc_id": 939, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Mage", "count": 2, "x": 1600.0, "z": -9408.0, "px": 2321.1, "py": 442.4}, {"loc_id": 939, "loc_name": "CharredFortress", "item": "AreaSpawner: Charred_Melee[1-3] Charred_Archer[1-3] Charred_Mage[1-3] (respawn every 25 seconds)", "count": 2, "x": 1600.0, "z": -9408.0, "px": 2321.1, "py": 442.4}, {"loc_id": 940, "loc_name": "CharredFortress", "item": "Pickable: MoltenCore", "count": 2, "x": -1152.0, "z": -9536.0, "px": 1851.4, "py": 420.5}, {"loc_id": 940, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Mage", "count": 2, "x": -1152.0, "z": -9536.0, "px": 1851.4, "py": 420.5}, {"loc_id": 940, "loc_name": "CharredFortress", "item": "AreaSpawner: Charred_Melee[1-3] Charred_Archer[1-3] Charred_Mage[1-3] (respawn every 25 seconds)", "count": 2, "x": -1152.0, "z": -9536.0, "px": 1851.4, "py": 420.5}, {"loc_id": 941, "loc_name": "CharredFortress", "item": "Pickable: MoltenCore", "count": 2, "x": 384.0, "z": -9344.0, "px": 2113.5, "py": 453.3}, {"loc_id": 941, "loc_name": "CharredFortress", "item": "AreaSpawner: Charred_Melee[1-3] Charred_Archer[1-3] Charred_Mage[1-3] (respawn every 25 seconds)", "count": 2, "x": 384.0, "z": -9344.0, "px": 2113.5, "py": 453.3}, {"loc_id": 942, "loc_name": "CharredFortress", "item": "AreaSpawner: Charred_Melee[1-3] Charred_Archer[1-3] Charred_Mage[1-3] (respawn every 25 seconds)", "count": 2, "x": -320.0, "z": -9856.0, "px": 1993.4, "py": 365.9}, {"loc_id": 943, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Mage", "count": 2, "x": 1280.0, "z": -9344.0, "px": 2266.5, "py": 453.3}, {"loc_id": 943, "loc_name": "CharredFortress", "item": "AreaSpawner: Charred_Melee[1-3] Charred_Archer[1-3] Charred_Mage[1-3] (respawn every 25 seconds)", "count": 2, "x": 1280.0, "z": -9344.0, "px": 2266.5, "py": 453.3}, {"loc_id": 943, "loc_name": "CharredFortress", "item": "SpawnOnce: piece_Charred_Balista", "count": 2, "x": 1280.0, "z": -9344.0, "px": 2266.5, "py": 453.3}, {"loc_id": 944, "loc_name": "CharredFortress", "item": "Pickable: MoltenCore", "count": 2, "x": -896.0, "z": -9216.0, "px": 1895.1, "py": 475.1}, {"loc_id": 944, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Mage", "count": 2, "x": -896.0, "z": -9216.0, "px": 1895.1, "py": 475.1}, {"loc_id": 944, "loc_name": "CharredFortress", "item": "AreaSpawner: Charred_Melee[1-3] Charred_Archer[1-3] Charred_Mage[1-3] (respawn every 25 seconds)", "count": 2, "x": -896.0, "z": -9216.0, "px": 1895.1, "py": 475.1}, {"loc_id": 945, "loc_name": "CharredFortress", "item": "Pickable: MoltenCore", "count": 2, "x": -896.0, "z": -9600.0, "px": 1895.1, "py": 409.6}, {"loc_id": 945, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Mage", "count": 2, "x": -896.0, "z": -9600.0, "px": 1895.1, "py": 409.6}, {"loc_id": 945, "loc_name": "CharredFortress", "item": "AreaSpawner: Charred_Melee[1-3] Charred_Archer[1-3] Charred_Mage[1-3] (respawn every 25 seconds)", "count": 2, "x": -896.0, "z": -9600.0, "px": 1895.1, "py": 409.6}, {"loc_id": 946, "loc_name": "CharredFortress", "item": "Pickable: MoltenCore", "count": 2, "x": 1024.0, "z": -9344.0, "px": 2222.8, "py": 453.3}, {"loc_id": 946, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Mage", "count": 2, "x": 1024.0, "z": -9344.0, "px": 2222.8, "py": 453.3}, {"loc_id": 946, "loc_name": "CharredFortress", "item": "AreaSpawner: Charred_Melee[1-3] Charred_Archer[1-3] Charred_Mage[1-3] (respawn every 25 seconds)", "count": 2, "x": 1024.0, "z": -9344.0, "px": 2222.8, "py": 453.3}, {"loc_id": 947, "loc_name": "CharredFortress", "item": "Pickable: MoltenCore", "count": 2, "x": -640.0, "z": -9792.0, "px": 1938.8, "py": 376.8}, {"loc_id": 947, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Mage", "count": 2, "x": -640.0, "z": -9792.0, "px": 1938.8, "py": 376.8}, {"loc_id": 947, "loc_name": "CharredFortress", "item": "AreaSpawner: Charred_Melee[1-3] Charred_Archer[1-3] Charred_Mage[1-3] (respawn every 25 seconds)", "count": 2, "x": -640.0, "z": -9792.0, "px": 1938.8, "py": 376.8}, {"loc_id": 1658, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2418.6, "z": -1020.3, "px": 1635.2, "py": 1873.9}, {"loc_id": 1659, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4792.5, "z": -557.2, "px": 2865.9, "py": 1952.9}, {"loc_id": 1660, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2748.3, "z": -1677.2, "px": 1579.0, "py": 1761.8}, {"loc_id": 1661, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 3708.8, "z": 646.0, "px": 2681.0, "py": 2158.3}, {"loc_id": 1662, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -115.6, "z": 2608.7, "px": 2028.3, "py": 2493.2}, {"loc_id": 1663, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2299.0, "z": 4862.5, "px": 1655.6, "py": 2877.9}, {"loc_id": 1664, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4799.3, "z": -641.5, "px": 2867.1, "py": 1938.5}, {"loc_id": 1665, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4873.3, "z": -699.1, "px": 2879.7, "py": 1928.7}, {"loc_id": 1666, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2741.9, "z": -5184.0, "px": 1580.0, "py": 1163.3}, {"loc_id": 1667, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -75.0, "z": 2489.1, "px": 2035.2, "py": 2472.8}, {"loc_id": 1668, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -4365.9, "z": 465.4, "px": 1302.9, "py": 2127.4}, {"loc_id": 1669, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2668.6, "z": -1744.6, "px": 1592.6, "py": 1750.3}, {"loc_id": 1670, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 2702.6, "z": 3721.0, "px": 2509.2, "py": 2683.1}, {"loc_id": 1671, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2040.3, "z": 4681.5, "px": 1699.8, "py": 2847.0}, {"loc_id": 1672, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -273.6, "z": 2629.0, "px": 2001.3, "py": 2496.7}, {"loc_id": 1673, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2668.3, "z": -5041.3, "px": 1592.6, "py": 1187.6}, {"loc_id": 1674, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5259.1, "z": 1611.1, "px": 1150.4, "py": 2323.0}, {"loc_id": 1675, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2361.0, "z": -1081.3, "px": 1645.1, "py": 1863.5}, {"loc_id": 1676, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -3786.0, "z": -4273.8, "px": 1401.9, "py": 1318.6}, {"loc_id": 1677, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1335.3, "z": 2194.0, "px": 2275.9, "py": 2422.4}, {"loc_id": 1678, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5247.9, "z": 1419.0, "px": 1152.4, "py": 2290.2}, {"loc_id": 1679, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1731.6, "z": 4274.7, "px": 2343.5, "py": 2777.5}, {"loc_id": 1680, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 2159.5, "z": 330.7, "px": 2416.6, "py": 2104.4}, {"loc_id": 1681, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -1013.0, "z": -3659.8, "px": 1875.1, "py": 1423.4}, {"loc_id": 1682, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 2417.2, "z": 66.5, "px": 2460.5, "py": 2059.3}, {"loc_id": 1683, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2483.2, "z": 4944.5, "px": 1624.2, "py": 2891.9}, {"loc_id": 1684, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1589.9, "z": 2055.2, "px": 2319.3, "py": 2398.8}, {"loc_id": 1685, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1209.9, "z": 2240.3, "px": 2254.5, "py": 2430.3}, {"loc_id": 1686, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -251.1, "z": 2579.7, "px": 2005.1, "py": 2488.3}, {"loc_id": 1687, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4741.4, "z": -838.8, "px": 2857.2, "py": 1904.8}, {"loc_id": 1688, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1223.4, "z": 2047.4, "px": 2256.8, "py": 2397.4}, {"loc_id": 1689, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 521.9, "z": 2556.1, "px": 2137.1, "py": 2484.2}, {"loc_id": 1690, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -620.2, "z": -3567.7, "px": 1942.2, "py": 1439.1}, {"loc_id": 1691, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 2427.2, "z": -964.4, "px": 2462.2, "py": 1883.4}, {"loc_id": 1692, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -3089.6, "z": 506.7, "px": 1520.7, "py": 2134.5}, {"loc_id": 1693, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 3591.8, "z": 1101.3, "px": 2661.0, "py": 2236.0}, {"loc_id": 1694, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -4291.4, "z": 1204.1, "px": 1315.6, "py": 2253.5}, {"loc_id": 1695, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2351.1, "z": -4163.3, "px": 1646.7, "py": 1337.5}, {"loc_id": 1696, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2930.4, "z": 520.3, "px": 1547.9, "py": 2136.8}, {"loc_id": 1697, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1102.7, "z": 4284.7, "px": 2236.2, "py": 2779.3}, {"loc_id": 1698, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -3001.3, "z": 594.1, "px": 1535.8, "py": 2149.4}, {"loc_id": 1699, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -1042.1, "z": -5684.5, "px": 1870.1, "py": 1077.8}, {"loc_id": 1700, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -1772.1, "z": 4496.9, "px": 1745.6, "py": 2815.5}, {"loc_id": 1701, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2502.6, "z": 5066.8, "px": 1620.9, "py": 2912.7}, {"loc_id": 1702, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4596.2, "z": -772.6, "px": 2832.4, "py": 1916.1}, {"loc_id": 1703, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 3130.5, "z": -4281.1, "px": 2582.3, "py": 1317.4}, {"loc_id": 1704, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 2423.1, "z": -5316.5, "px": 2461.5, "py": 1140.7}, {"loc_id": 1705, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 3334.1, "z": 4748.9, "px": 2617.0, "py": 2858.5}, {"loc_id": 1706, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4553.0, "z": -3346.0, "px": 2825.0, "py": 1476.9}, {"loc_id": 1707, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1269.2, "z": 2160.5, "px": 2264.6, "py": 2416.7}, {"loc_id": 1708, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -365.4, "z": 2612.5, "px": 1985.6, "py": 2493.9}, {"loc_id": 1709, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5047.4, "z": 1420.4, "px": 1186.6, "py": 2290.4}, {"loc_id": 1710, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4559.7, "z": -3018.5, "px": 2826.2, "py": 1532.8}, {"loc_id": 1711, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -1040.8, "z": -5576.9, "px": 1870.4, "py": 1096.2}, {"loc_id": 1712, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -4973.6, "z": 1294.3, "px": 1199.2, "py": 2268.9}, {"loc_id": 1713, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 3823.7, "z": 698.2, "px": 2700.6, "py": 2167.2}, {"loc_id": 1714, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1484.4, "z": 2301.3, "px": 2301.3, "py": 2440.8}, {"loc_id": 1715, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 3633.1, "z": 968.2, "px": 2668.0, "py": 2213.2}, {"loc_id": 1716, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -568.2, "z": -3539.7, "px": 1951.0, "py": 1443.9}, {"loc_id": 1717, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 3661.1, "z": 768.6, "px": 2672.8, "py": 2179.2}, {"loc_id": 1718, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 3692.8, "z": 755.7, "px": 2678.2, "py": 2177.0}, {"loc_id": 1719, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 3630.4, "z": 901.6, "px": 2667.6, "py": 2201.9}, {"loc_id": 1720, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 2381.5, "z": -5365.0, "px": 2454.4, "py": 1132.4}, {"loc_id": 1721, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1169.0, "z": 4347.1, "px": 2247.5, "py": 2789.9}, {"loc_id": 1722, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2627.6, "z": -1663.1, "px": 1599.6, "py": 1764.2}, {"loc_id": 1723, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2684.7, "z": -1580.1, "px": 1589.8, "py": 1778.3}, {"loc_id": 1724, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2286.8, "z": -4143.8, "px": 1657.7, "py": 1340.8}, {"loc_id": 1725, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2763.7, "z": -898.4, "px": 1576.3, "py": 1894.7}, {"loc_id": 1726, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -326.2, "z": 2489.5, "px": 1992.3, "py": 2472.9}, {"loc_id": 1727, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -827.5, "z": -3839.3, "px": 1906.8, "py": 1392.8}, {"loc_id": 1728, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 2675.8, "z": 3758.2, "px": 2504.7, "py": 2689.4}, {"loc_id": 1729, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5228.5, "z": 1681.9, "px": 1155.7, "py": 2335.0}, {"loc_id": 1730, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4559.3, "z": -3065.5, "px": 2826.1, "py": 1524.8}, {"loc_id": 1731, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1859.2, "z": 1461.2, "px": 2365.3, "py": 2297.4}, {"loc_id": 1732, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 3255.3, "z": -4299.6, "px": 2603.6, "py": 1314.2}, {"loc_id": 1733, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4680.0, "z": -3069.8, "px": 2846.7, "py": 1524.1}, {"loc_id": 1734, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4485.3, "z": -3155.5, "px": 2813.5, "py": 1509.5}, {"loc_id": 1735, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2624.4, "z": -5139.3, "px": 1600.1, "py": 1170.9}, {"loc_id": 1736, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 2579.4, "z": -595.9, "px": 2488.2, "py": 1946.3}, {"loc_id": 1737, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -4908.1, "z": 1278.7, "px": 1210.4, "py": 2266.2}, {"loc_id": 1738, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5298.6, "z": 1659.3, "px": 1143.7, "py": 2331.2}, {"loc_id": 1739, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2304.3, "z": 4811.7, "px": 1654.7, "py": 2869.2}, {"loc_id": 1740, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2683.6, "z": -1645.2, "px": 1590.0, "py": 1767.2}, {"loc_id": 1741, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -4423.2, "z": 3653.0, "px": 1293.1, "py": 2671.4}, {"loc_id": 1742, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1745.9, "z": 4338.6, "px": 2346.0, "py": 2788.5}, {"loc_id": 1743, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5319.1, "z": 1585.8, "px": 1140.2, "py": 2318.6}, {"loc_id": 1744, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -205.6, "z": 2549.9, "px": 2012.9, "py": 2483.2}, {"loc_id": 1745, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 2368.6, "z": -1024.8, "px": 2452.2, "py": 1873.1}, {"loc_id": 1746, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1410.3, "z": 2167.6, "px": 2288.7, "py": 2417.9}, {"loc_id": 1747, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -3139.0, "z": 454.5, "px": 1512.3, "py": 2125.6}, {"loc_id": 1748, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4397.8, "z": -3054.5, "px": 2798.6, "py": 1526.7}, {"loc_id": 1749, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -3601.9, "z": 3196.6, "px": 1433.3, "py": 2593.6}, {"loc_id": 1750, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1401.1, "z": 2113.5, "px": 2287.1, "py": 2408.7}, {"loc_id": 1751, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -3533.3, "z": 3320.8, "px": 1445.0, "py": 2614.7}, {"loc_id": 1752, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4663.3, "z": -718.2, "px": 2843.9, "py": 1925.4}, {"loc_id": 1753, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -4332.2, "z": 3631.2, "px": 1308.6, "py": 2667.7}, {"loc_id": 1754, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2002.9, "z": 4554.2, "px": 1706.2, "py": 2825.3}, {"loc_id": 1755, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 3264.1, "z": -4348.3, "px": 2605.1, "py": 1305.9}, {"loc_id": 1756, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2234.1, "z": -4173.1, "px": 1666.7, "py": 1335.8}, {"loc_id": 1757, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -209.5, "z": 2743.0, "px": 2012.2, "py": 2516.1}, {"loc_id": 1758, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5166.4, "z": 1525.6, "px": 1166.3, "py": 2308.4}, {"loc_id": 1759, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 2186.2, "z": -4300.3, "px": 2421.1, "py": 1314.1}, {"loc_id": 1760, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2565.5, "z": 5103.5, "px": 1610.2, "py": 2919.0}, {"loc_id": 1761, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -4878.7, "z": 1292.3, "px": 1215.4, "py": 2268.6}, {"loc_id": 1762, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 2173.2, "z": 243.8, "px": 2418.9, "py": 2089.6}, {"loc_id": 1763, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 2246.0, "z": -4285.3, "px": 2431.3, "py": 1316.6}, {"loc_id": 1764, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5369.6, "z": 1778.1, "px": 1131.6, "py": 2351.5}, {"loc_id": 1765, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -565.1, "z": -3907.4, "px": 1951.6, "py": 1381.1}, {"loc_id": 1766, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -648.3, "z": -3902.6, "px": 1937.4, "py": 1382.0}, {"loc_id": 1767, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -1859.1, "z": 4485.7, "px": 1730.7, "py": 2813.6}, {"loc_id": 1768, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 3821.8, "z": 773.9, "px": 2700.3, "py": 2180.1}, {"loc_id": 1769, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5195.5, "z": -688.7, "px": 1161.3, "py": 1930.5}, {"loc_id": 1770, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2992.3, "z": 523.5, "px": 1537.3, "py": 2137.3}, {"loc_id": 1771, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2570.5, "z": -5197.0, "px": 1609.3, "py": 1161.0}, {"loc_id": 1772, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 2419.0, "z": -5387.2, "px": 2460.8, "py": 1128.6}, {"loc_id": 1773, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 2759.0, "z": 3693.7, "px": 2518.9, "py": 2678.4}, {"loc_id": 1774, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4787.3, "z": -834.8, "px": 2865.0, "py": 1905.5}, {"loc_id": 1775, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 3768.6, "z": 759.1, "px": 2691.2, "py": 2177.6}, {"loc_id": 1776, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -4461.0, "z": 3580.3, "px": 1286.7, "py": 2659.0}, {"loc_id": 1777, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2420.4, "z": 4806.0, "px": 1634.9, "py": 2868.2}, {"loc_id": 1778, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -4993.3, "z": 1393.9, "px": 1195.8, "py": 2285.9}, {"loc_id": 1779, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2675.9, "z": -1777.6, "px": 1591.3, "py": 1744.6}, {"loc_id": 1780, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5587.2, "z": 2001.8, "px": 1094.5, "py": 2389.6}, {"loc_id": 1781, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 2573.3, "z": -71.0, "px": 2487.2, "py": 2035.9}, {"loc_id": 1782, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2561.8, "z": -5132.3, "px": 1610.8, "py": 1172.1}, {"loc_id": 1783, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1004.3, "z": 4341.3, "px": 2219.4, "py": 2788.9}, {"loc_id": 1784, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2636.1, "z": -1739.6, "px": 1598.1, "py": 1751.1}, {"loc_id": 1785, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4747.3, "z": -639.6, "px": 2858.2, "py": 1938.8}, {"loc_id": 1786, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5296.1, "z": 1554.4, "px": 1144.1, "py": 2313.3}, {"loc_id": 1787, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1225.7, "z": 2165.7, "px": 2257.2, "py": 2417.6}, {"loc_id": 1788, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5331.3, "z": 1456.0, "px": 1138.1, "py": 2296.5}, {"loc_id": 1789, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -3077.0, "z": 451.7, "px": 1522.9, "py": 2125.1}, {"loc_id": 1790, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1362.6, "z": 2052.5, "px": 2280.6, "py": 2398.3}, {"loc_id": 1791, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -1863.4, "z": 4544.3, "px": 1730.0, "py": 2823.6}, {"loc_id": 1792, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1143.7, "z": -3596.6, "px": 2243.2, "py": 1434.2}, {"loc_id": 1793, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4554.9, "z": -3207.7, "px": 2825.4, "py": 1500.6}, {"loc_id": 1794, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1341.4, "z": 1995.2, "px": 2276.9, "py": 2388.5}, {"loc_id": 1795, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -1099.5, "z": -5642.0, "px": 1860.4, "py": 1085.1}, {"loc_id": 1796, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 2605.3, "z": -57.2, "px": 2492.6, "py": 2038.2}, {"loc_id": 1797, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2551.0, "z": -881.7, "px": 1612.6, "py": 1897.5}, {"loc_id": 1798, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2364.2, "z": -4088.0, "px": 1644.5, "py": 1350.3}, {"loc_id": 1799, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5330.4, "z": 1743.5, "px": 1138.3, "py": 2345.6}, {"loc_id": 1800, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1530.8, "z": 1996.4, "px": 2309.3, "py": 2388.7}, {"loc_id": 1801, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4619.7, "z": -3135.8, "px": 2836.4, "py": 1512.8}, {"loc_id": 1802, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -4875.1, "z": -3344.9, "px": 1216.0, "py": 1477.1}, {"loc_id": 1803, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1423.7, "z": 2296.2, "px": 2291.0, "py": 2439.9}, {"loc_id": 1804, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -401.8, "z": 2478.6, "px": 1979.4, "py": 2471.0}, {"loc_id": 1805, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4400.7, "z": -2994.8, "px": 2799.1, "py": 1536.9}, {"loc_id": 1806, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 2641.3, "z": 3891.3, "px": 2498.8, "py": 2712.1}, {"loc_id": 1807, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2757.9, "z": -972.8, "px": 1577.3, "py": 1882.0}, {"loc_id": 1808, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1788.9, "z": 4340.6, "px": 2353.3, "py": 2788.8}, {"loc_id": 1809, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -4204.6, "z": 505.5, "px": 1330.4, "py": 2134.3}, {"loc_id": 1810, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5382.2, "z": 1657.0, "px": 1129.4, "py": 2330.8}, {"loc_id": 1811, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2639.3, "z": -5169.9, "px": 1597.6, "py": 1165.7}, {"loc_id": 1812, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -4171.9, "z": 3715.3, "px": 1336.0, "py": 2682.1}, {"loc_id": 1813, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4672.4, "z": -3131.9, "px": 2845.4, "py": 1513.5}, {"loc_id": 1814, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -4278.1, "z": 372.2, "px": 1317.9, "py": 2111.5}, {"loc_id": 1815, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2576.3, "z": 5042.5, "px": 1608.3, "py": 2908.6}, {"loc_id": 1816, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -318.7, "z": 2612.7, "px": 1993.6, "py": 2493.9}, {"loc_id": 1817, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 1470.3, "z": 2057.4, "px": 2298.9, "py": 2399.1}, {"loc_id": 1818, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -914.0, "z": -3834.0, "px": 1892.0, "py": 1393.7}, {"loc_id": 1819, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 248.1, "z": 4304.2, "px": 2090.3, "py": 2782.6}, {"loc_id": 1820, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2797.3, "z": -1721.5, "px": 1570.6, "py": 1754.2}, {"loc_id": 1821, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -125.3, "z": 2682.6, "px": 2026.6, "py": 2505.8}, {"loc_id": 1822, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 256.6, "z": 4347.4, "px": 2091.8, "py": 2790.0}, {"loc_id": 1823, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4619.8, "z": -717.4, "px": 2836.4, "py": 1925.6}, {"loc_id": 1824, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 4465.4, "z": -2896.3, "px": 2810.1, "py": 1553.7}, {"loc_id": 1825, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -947.5, "z": -3654.0, "px": 1886.3, "py": 1424.4}, {"loc_id": 1826, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -828.2, "z": -3696.8, "px": 1906.7, "py": 1417.1}, {"loc_id": 1827, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 3721.4, "z": 891.2, "px": 2683.1, "py": 2200.1}, {"loc_id": 1828, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -3526.9, "z": 198.0, "px": 1446.1, "py": 2081.8}, {"loc_id": 1829, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -3019.6, "z": 462.1, "px": 1532.7, "py": 2126.9}, {"loc_id": 1830, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -775.4, "z": -3782.9, "px": 1915.7, "py": 1402.4}, {"loc_id": 1831, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 2365.8, "z": 339.3, "px": 2451.8, "py": 2105.9}, {"loc_id": 1832, "loc_name": "Grave1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -5259.1, "z": 1531.8, "px": 1150.4, "py": 2309.4}, {"loc_id": 1836, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr", "count": 2, "x": 564.0, "z": 2616.5, "px": 2144.3, "py": 2494.5}, {"loc_id": 1843, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr", "count": 2, "x": 3327.9, "z": -4268.4, "px": 2616.0, "py": 1319.5}, {"loc_id": 1846, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr", "count": 2, "x": 3839.3, "z": 4473.5, "px": 2703.2, "py": 2811.5}, {"loc_id": 1851, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr", "count": 2, "x": -2496.2, "z": -966.6, "px": 1622.0, "py": 1883.0}, {"loc_id": 1866, "loc_name": "SwampRuin2", "item": "SpawnOnce: Draugr", "count": 2, "x": -619.2, "z": -3973.9, "px": 1942.3, "py": 1369.8}, {"loc_id": 1872, "loc_name": "SwampRuin2", "item": "SpawnOnce: Draugr", "count": 2, "x": -2639.1, "z": -1607.5, "px": 1597.6, "py": 1773.7}, {"loc_id": 1986, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -1784.6, "z": -4355.4, "px": 1743.4, "py": 1304.7}, {"loc_id": 1986, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -1784.6, "z": -4355.4, "px": 1743.4, "py": 1304.7}, {"loc_id": 1987, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -3193.8, "z": 4469.9, "px": 1502.9, "py": 2810.9}, {"loc_id": 1989, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 3641.8, "z": 3969.8, "px": 2669.5, "py": 2725.5}, {"loc_id": 1990, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -9021.5, "z": 3142.1, "px": 508.3, "py": 2584.3}, {"loc_id": 1991, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -1736.3, "z": -4225.4, "px": 1751.7, "py": 1326.9}, {"loc_id": 1991, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 2, "x": -1736.3, "z": -4225.4, "px": 1751.7, "py": 1326.9}, {"loc_id": 1992, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -8265.4, "z": 2494.6, "px": 637.4, "py": 2473.7}, {"loc_id": 1992, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -8265.4, "z": 2494.6, "px": 637.4, "py": 2473.7}, {"loc_id": 1992, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -8265.4, "z": 2494.6, "px": 637.4, "py": 2473.7}, {"loc_id": 1992, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": -8265.4, "z": 2494.6, "px": 637.4, "py": 2473.7}, {"loc_id": 1994, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": -5368.1, "z": -1919.7, "px": 1131.8, "py": 1720.4}, {"loc_id": 1994, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -5368.1, "z": -1919.7, "px": 1131.8, "py": 1720.4}, {"loc_id": 1994, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -5368.1, "z": -1919.7, "px": 1131.8, "py": 1720.4}, {"loc_id": 1995, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 7744.4, "z": -2746.7, "px": 3369.7, "py": 1579.2}, {"loc_id": 1996, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 8580.9, "z": -1732.6, "px": 3512.5, "py": 1752.3}, {"loc_id": 1997, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -5052.2, "z": 585.3, "px": 1185.8, "py": 2147.9}, {"loc_id": 1998, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -1158.1, "z": -1210.7, "px": 1850.4, "py": 1841.4}, {"loc_id": 2000, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 8261.5, "z": -2503.6, "px": 3458.0, "py": 1620.7}, {"loc_id": 2001, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -6655.6, "z": -4797.9, "px": 912.1, "py": 1229.2}, {"loc_id": 2002, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 3705.4, "z": 3650.9, "px": 2680.4, "py": 2671.1}, {"loc_id": 2002, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 3705.4, "z": 3650.9, "px": 2680.4, "py": 2671.1}, {"loc_id": 2003, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 709.3, "z": 4485.9, "px": 2169.1, "py": 2813.6}, {"loc_id": 2003, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 709.3, "z": 4485.9, "px": 2169.1, "py": 2813.6}, {"loc_id": 2003, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 709.3, "z": 4485.9, "px": 2169.1, "py": 2813.6}, {"loc_id": 2004, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 5893.1, "z": -707.2, "px": 3053.8, "py": 1927.3}, {"loc_id": 2005, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -6785.2, "z": 514.4, "px": 890.0, "py": 2135.8}, {"loc_id": 2005, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -6785.2, "z": 514.4, "px": 890.0, "py": 2135.8}, {"loc_id": 2006, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 2, "x": 3589.3, "z": 3712.8, "px": 2660.6, "py": 2681.7}, {"loc_id": 2007, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 2754.1, "z": 5051.3, "px": 2518.0, "py": 2910.1}, {"loc_id": 2008, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 8127.2, "z": -263.8, "px": 3435.0, "py": 2003.0}, {"loc_id": 2009, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -2304.6, "z": -3082.4, "px": 1654.7, "py": 1521.9}, {"loc_id": 2009, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": -2304.6, "z": -3082.4, "px": 1654.7, "py": 1521.9}, {"loc_id": 2010, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -1345.3, "z": -5450.9, "px": 1818.4, "py": 1117.7}, {"loc_id": 2011, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 2, "x": 5431.7, "z": -900.4, "px": 2975.0, "py": 1894.3}, {"loc_id": 2012, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 2615.5, "z": 5691.7, "px": 2494.4, "py": 3019.4}, {"loc_id": 2012, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 2615.5, "z": 5691.7, "px": 2494.4, "py": 3019.4}, {"loc_id": 2013, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -2295.1, "z": 708.0, "px": 1656.3, "py": 2168.8}, {"loc_id": 2014, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 5767.3, "z": 1542.2, "px": 3032.3, "py": 2311.2}, {"loc_id": 2015, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 4422.3, "z": 6725.0, "px": 2802.7, "py": 3195.7}, {"loc_id": 2016, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 2, "x": 2113.8, "z": 841.5, "px": 2408.8, "py": 2191.6}, {"loc_id": 2016, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 2113.8, "z": 841.5, "px": 2408.8, "py": 2191.6}, {"loc_id": 2017, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 713.6, "z": 4919.8, "px": 2169.8, "py": 2887.6}, {"loc_id": 2018, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": 2366.9, "z": -3455.3, "px": 2452.0, "py": 1458.3}, {"loc_id": 2020, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -5828.9, "z": 1534.9, "px": 1053.2, "py": 2310.0}, {"loc_id": 2021, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 1212.3, "z": -5636.2, "px": 2254.9, "py": 1086.1}, {"loc_id": 2021, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 1212.3, "z": -5636.2, "px": 2254.9, "py": 1086.1}, {"loc_id": 2022, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -5119.0, "z": 704.2, "px": 1174.4, "py": 2168.2}, {"loc_id": 2025, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 5246.9, "z": 4990.5, "px": 2943.5, "py": 2899.7}, {"loc_id": 2026, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 1224.6, "z": -5429.1, "px": 2257.0, "py": 1121.4}, {"loc_id": 2026, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 1224.6, "z": -5429.1, "px": 2257.0, "py": 1121.4}, {"loc_id": 2026, "loc_name": "Crypt2", "item": "Pickable: MushroomYellow", "count": 2, "x": 1224.6, "z": -5429.1, "px": 2257.0, "py": 1121.4}, {"loc_id": 2028, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 9860.3, "z": -1604.7, "px": 3730.8, "py": 1774.1}, {"loc_id": 2029, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 1796.7, "z": 7414.9, "px": 2354.6, "py": 3313.5}, {"loc_id": 2030, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -8439.3, "z": -1721.8, "px": 607.7, "py": 1754.1}, {"loc_id": 2031, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -1856.3, "z": -4486.1, "px": 1731.2, "py": 1282.4}, {"loc_id": 2032, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": -9030.2, "z": 3011.1, "px": 506.8, "py": 2561.9}, {"loc_id": 2034, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 2, "x": -8262.3, "z": 2627.8, "px": 637.9, "py": 2496.5}, {"loc_id": 2034, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": -8262.3, "z": 2627.8, "px": 637.9, "py": 2496.5}, {"loc_id": 2034, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -8262.3, "z": 2627.8, "px": 637.9, "py": 2496.5}, {"loc_id": 2036, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -1159.1, "z": -1664.8, "px": 1850.2, "py": 1763.9}, {"loc_id": 2037, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 2, "x": 894.0, "z": 320.1, "px": 2200.6, "py": 2102.6}, {"loc_id": 2038, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 2247.9, "z": -886.9, "px": 2431.6, "py": 1896.6}, {"loc_id": 2039, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": -5571.0, "z": -6197.3, "px": 1097.2, "py": 990.3}, {"loc_id": 2040, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 3391.7, "z": 3514.9, "px": 2626.9, "py": 2647.9}, {"loc_id": 2042, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 3908.4, "z": 3896.3, "px": 2715.0, "py": 2713.0}, {"loc_id": 2044, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 1789.0, "z": -6149.7, "px": 2353.3, "py": 998.5}, {"loc_id": 2044, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 1789.0, "z": -6149.7, "px": 2353.3, "py": 998.5}, {"loc_id": 2045, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 2, "x": 6264.5, "z": -4358.4, "px": 3117.1, "py": 1304.2}, {"loc_id": 2045, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 6264.5, "z": -4358.4, "px": 3117.1, "py": 1304.2}, {"loc_id": 2047, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 2934.8, "z": -2054.4, "px": 2548.9, "py": 1697.4}, {"loc_id": 2047, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 2934.8, "z": -2054.4, "px": 2548.9, "py": 1697.4}, {"loc_id": 2047, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 2934.8, "z": -2054.4, "px": 2548.9, "py": 1697.4}, {"loc_id": 2048, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 2177.1, "z": -374.6, "px": 2419.6, "py": 1984.1}, {"loc_id": 2048, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 2177.1, "z": -374.6, "px": 2419.6, "py": 1984.1}, {"loc_id": 2049, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 832.6, "z": 3465.7, "px": 2190.1, "py": 2639.5}, {"loc_id": 2052, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 2, "x": -5125.7, "z": 183.2, "px": 1173.2, "py": 2079.3}, {"loc_id": 2053, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 5060.9, "z": -2298.6, "px": 2911.7, "py": 1655.7}, {"loc_id": 2054, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -5577.5, "z": -5061.9, "px": 1096.1, "py": 1184.1}, {"loc_id": 2055, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 769.5, "z": 192.1, "px": 2179.3, "py": 2080.8}, {"loc_id": 2056, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": -8000.9, "z": 393.2, "px": 682.5, "py": 2115.1}, {"loc_id": 2056, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -8000.9, "z": 393.2, "px": 682.5, "py": 2115.1}, {"loc_id": 2059, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": -5058.0, "z": 821.8, "px": 1184.8, "py": 2188.3}, {"loc_id": 2059, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -5058.0, "z": 821.8, "px": 1184.8, "py": 2188.3}, {"loc_id": 2059, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": -5058.0, "z": 821.8, "px": 1184.8, "py": 2188.3}, {"loc_id": 2060, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 4682.5, "z": -5049.9, "px": 2847.1, "py": 1186.2}, {"loc_id": 2064, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": 6654.9, "z": 3129.8, "px": 3183.8, "py": 2582.2}, {"loc_id": 2065, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 2569.6, "z": -4599.8, "px": 2486.5, "py": 1263.0}, {"loc_id": 2065, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 2569.6, "z": -4599.8, "px": 2486.5, "py": 1263.0}, {"loc_id": 2066, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 5948.5, "z": 1414.3, "px": 3063.2, "py": 2289.4}, {"loc_id": 2066, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 5948.5, "z": 1414.3, "px": 3063.2, "py": 2289.4}, {"loc_id": 2067, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 8253.5, "z": 198.8, "px": 3456.6, "py": 2081.9}, {"loc_id": 2069, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 2, "x": -134.7, "z": -905.2, "px": 2025.0, "py": 1893.5}, {"loc_id": 2070, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -4618.1, "z": 5752.9, "px": 1259.8, "py": 3029.8}, {"loc_id": 2073, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 7548.2, "z": -2743.2, "px": 3336.2, "py": 1579.8}, {"loc_id": 2074, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 2555.5, "z": -4361.4, "px": 2484.1, "py": 1303.7}, {"loc_id": 2074, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 2, "x": 2555.5, "z": -4361.4, "px": 2484.1, "py": 1303.7}, {"loc_id": 2075, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 508.4, "z": 511.0, "px": 2134.8, "py": 2135.2}, {"loc_id": 2075, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 2, "x": 508.4, "z": 511.0, "px": 2134.8, "py": 2135.2}, {"loc_id": 2075, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 508.4, "z": 511.0, "px": 2134.8, "py": 2135.2}, {"loc_id": 2076, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 1978.5, "z": 1274.9, "px": 2385.7, "py": 2265.6}, {"loc_id": 2076, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 1978.5, "z": 1274.9, "px": 2385.7, "py": 2265.6}, {"loc_id": 2077, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 2107.7, "z": 1143.7, "px": 2407.7, "py": 2243.2}, {"loc_id": 2079, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -5431.8, "z": -6277.2, "px": 1121.0, "py": 976.7}, {"loc_id": 2080, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -381.3, "z": -4345.5, "px": 1982.9, "py": 1306.4}, {"loc_id": 2081, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -9975.8, "z": -134.2, "px": 345.5, "py": 2025.1}, {"loc_id": 2081, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": -9975.8, "z": -134.2, "px": 345.5, "py": 2025.1}, {"loc_id": 2084, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": -4355.4, "z": 1795.5, "px": 1304.7, "py": 2354.4}, {"loc_id": 2085, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 761.4, "z": 4665.8, "px": 2177.9, "py": 2844.3}, {"loc_id": 2085, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 761.4, "z": 4665.8, "px": 2177.9, "py": 2844.3}, {"loc_id": 2087, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 2431.1, "z": -1534.2, "px": 2462.9, "py": 1786.2}, {"loc_id": 2087, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 2431.1, "z": -1534.2, "px": 2462.9, "py": 1786.2}, {"loc_id": 2087, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 2431.1, "z": -1534.2, "px": 2462.9, "py": 1786.2}, {"loc_id": 2088, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -2487.2, "z": -6143.3, "px": 1623.5, "py": 999.5}, {"loc_id": 2088, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -2487.2, "z": -6143.3, "px": 1623.5, "py": 999.5}, {"loc_id": 2089, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 2170.4, "z": -707.7, "px": 2418.4, "py": 1927.2}, {"loc_id": 2089, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 2170.4, "z": -707.7, "px": 2418.4, "py": 1927.2}, {"loc_id": 2091, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": -7615.2, "z": -4745.0, "px": 748.3, "py": 1238.2}, {"loc_id": 2093, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 455.5, "z": 5046.0, "px": 2125.7, "py": 2909.2}, {"loc_id": 2095, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": -1910.0, "z": -4163.4, "px": 1722.0, "py": 1337.4}, {"loc_id": 2096, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -4747.0, "z": 5697.4, "px": 1237.8, "py": 3020.4}, {"loc_id": 2096, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -4747.0, "z": 5697.4, "px": 1237.8, "py": 3020.4}, {"loc_id": 2097, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": -4027.5, "z": -2360.5, "px": 1360.6, "py": 1645.1}, {"loc_id": 2097, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -4027.5, "z": -2360.5, "px": 1360.6, "py": 1645.1}, {"loc_id": 2098, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 2933.5, "z": -4341.4, "px": 2548.7, "py": 1307.1}, {"loc_id": 2099, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -7287.1, "z": 2560.3, "px": 804.3, "py": 2485.0}, {"loc_id": 2100, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 4230.3, "z": -191.4, "px": 2770.0, "py": 2015.3}, {"loc_id": 2101, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -1158.2, "z": -1530.7, "px": 1850.3, "py": 1786.8}, {"loc_id": 2102, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 2, "x": -7167.8, "z": 2488.8, "px": 824.7, "py": 2472.8}, {"loc_id": 2102, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -7167.8, "z": 2488.8, "px": 824.7, "py": 2472.8}, {"loc_id": 2103, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 3965.6, "z": -382.1, "px": 2724.8, "py": 1982.8}, {"loc_id": 2104, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 835.6, "z": 4856.2, "px": 2190.6, "py": 2876.8}, {"loc_id": 2105, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 2, "x": 968.4, "z": 5450.5, "px": 2213.3, "py": 2978.2}, {"loc_id": 2106, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 3317.8, "z": -2698.3, "px": 2614.2, "py": 1587.5}, {"loc_id": 2107, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -9664.7, "z": -321.6, "px": 398.6, "py": 1993.1}, {"loc_id": 2107, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 2, "x": -9664.7, "z": -321.6, "px": 398.6, "py": 1993.1}, {"loc_id": 2107, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -9664.7, "z": -321.6, "px": 398.6, "py": 1993.1}, {"loc_id": 2108, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 2, "x": 7680.5, "z": -2887.2, "px": 3358.8, "py": 1555.3}, {"loc_id": 2110, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -7299.5, "z": -3591.5, "px": 802.2, "py": 1435.1}, {"loc_id": 2110, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 2, "x": -7299.5, "z": -3591.5, "px": 802.2, "py": 1435.1}, {"loc_id": 2111, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -4411.1, "z": 1666.0, "px": 1295.2, "py": 2332.3}, {"loc_id": 2111, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -4411.1, "z": 1666.0, "px": 1295.2, "py": 2332.3}, {"loc_id": 2112, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 2, "x": 5188.7, "z": 5240.8, "px": 2933.5, "py": 2942.4}, {"loc_id": 2113, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 502.9, "z": 377.9, "px": 2133.8, "py": 2112.5}, {"loc_id": 2113, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 502.9, "z": 377.9, "px": 2133.8, "py": 2112.5}, {"loc_id": 2114, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 8841.5, "z": 123.6, "px": 3556.9, "py": 2069.1}, {"loc_id": 2115, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -5826.5, "z": -329.0, "px": 1053.6, "py": 1991.9}, {"loc_id": 2116, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 5760.1, "z": -827.4, "px": 3031.1, "py": 1906.8}, {"loc_id": 2118, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 4092.3, "z": 3912.8, "px": 2746.4, "py": 2715.8}, {"loc_id": 2119, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 5123.6, "z": 5438.1, "px": 2922.4, "py": 2976.1}, {"loc_id": 2120, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 2178.0, "z": 1283.9, "px": 2419.7, "py": 2267.1}, {"loc_id": 2121, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -3338.0, "z": 4485.4, "px": 1478.3, "py": 2813.5}, {"loc_id": 2122, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 1973.5, "z": 3575.7, "px": 2384.8, "py": 2658.3}, {"loc_id": 2122, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 1973.5, "z": 3575.7, "px": 2384.8, "py": 2658.3}, {"loc_id": 2123, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -6721.1, "z": 3657.4, "px": 900.9, "py": 2672.2}, {"loc_id": 2124, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -3017.7, "z": 4282.1, "px": 1533.0, "py": 2778.8}, {"loc_id": 2125, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 2423.3, "z": 3647.1, "px": 2461.6, "py": 2670.4}, {"loc_id": 2125, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 2423.3, "z": 3647.1, "px": 2461.6, "py": 2670.4}, {"loc_id": 2126, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -5059.6, "z": -1797.8, "px": 1184.5, "py": 1741.2}, {"loc_id": 2128, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 2, "x": 5510.8, "z": 456.2, "px": 2988.5, "py": 2125.9}, {"loc_id": 2129, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -2120.9, "z": 694.0, "px": 1686.0, "py": 2166.4}, {"loc_id": 2130, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": -1981.4, "z": -5691.3, "px": 1709.8, "py": 1076.7}, {"loc_id": 2132, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 772.8, "z": 4226.6, "px": 2179.9, "py": 2769.3}, {"loc_id": 2132, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 772.8, "z": 4226.6, "px": 2179.9, "py": 2769.3}, {"loc_id": 2133, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 2, "x": 3722.8, "z": -252.1, "px": 2683.4, "py": 2005.0}, {"loc_id": 2133, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 3722.8, "z": -252.1, "px": 2683.4, "py": 2005.0}, {"loc_id": 2134, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -5754.4, "z": 4490.5, "px": 1065.9, "py": 2814.4}, {"loc_id": 2134, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": -5754.4, "z": 4490.5, "px": 1065.9, "py": 2814.4}, {"loc_id": 2135, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 2, "x": 8263.2, "z": -2115.4, "px": 3458.3, "py": 1687.0}, {"loc_id": 2135, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 8263.2, "z": -2115.4, "px": 3458.3, "py": 1687.0}, {"loc_id": 2136, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 2248.8, "z": -1352.8, "px": 2431.8, "py": 1817.1}, {"loc_id": 2137, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 6136.3, "z": -5898.6, "px": 3095.3, "py": 1041.3}, {"loc_id": 2139, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -5886.6, "z": 4606.1, "px": 1043.4, "py": 2834.1}, {"loc_id": 2139, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -5886.6, "z": 4606.1, "px": 1043.4, "py": 2834.1}, {"loc_id": 2140, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 643.2, "z": 5308.8, "px": 2157.8, "py": 2954.0}, {"loc_id": 2141, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -1283.3, "z": -1154.5, "px": 1829.0, "py": 1851.0}, {"loc_id": 2142, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -3129.8, "z": 4169.0, "px": 1513.8, "py": 2759.5}, {"loc_id": 2144, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -7431.3, "z": -1848.0, "px": 779.7, "py": 1732.6}, {"loc_id": 2144, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": -7431.3, "z": -1848.0, "px": 779.7, "py": 1732.6}, {"loc_id": 2145, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 2491.2, "z": 5062.0, "px": 2473.2, "py": 2911.9}, {"loc_id": 2145, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 2491.2, "z": 5062.0, "px": 2473.2, "py": 2911.9}, {"loc_id": 2146, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 3189.9, "z": -2681.3, "px": 2592.4, "py": 1590.4}, {"loc_id": 2146, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 3189.9, "z": -2681.3, "px": 2592.4, "py": 1590.4}, {"loc_id": 2146, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 3189.9, "z": -2681.3, "px": 2592.4, "py": 1590.4}, {"loc_id": 2147, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 2, "x": 442.3, "z": 5504.3, "px": 2123.5, "py": 2987.4}, {"loc_id": 2148, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 7106.3, "z": 1216.9, "px": 3260.8, "py": 2255.7}, {"loc_id": 2149, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 2239.1, "z": 5115.9, "px": 2430.1, "py": 2921.1}, {"loc_id": 2149, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 2239.1, "z": 5115.9, "px": 2430.1, "py": 2921.1}, {"loc_id": 2149, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": 2239.1, "z": 5115.9, "px": 2430.1, "py": 2921.1}, {"loc_id": 2150, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -9718.2, "z": 648.1, "px": 389.4, "py": 2158.6}, {"loc_id": 2152, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 1094.5, "z": -5131.0, "px": 2234.8, "py": 1172.3}, {"loc_id": 2152, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 1094.5, "z": -5131.0, "px": 2234.8, "py": 1172.3}, {"loc_id": 2153, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": -834.3, "z": -6600.1, "px": 1905.6, "py": 921.6}, {"loc_id": 2155, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 2501.3, "z": -3655.8, "px": 2474.9, "py": 1424.1}, {"loc_id": 2156, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -4855.4, "z": -3010.4, "px": 1219.3, "py": 1534.2}, {"loc_id": 2156, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -4855.4, "z": -3010.4, "px": 1219.3, "py": 1534.2}, {"loc_id": 2156, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": -4855.4, "z": -3010.4, "px": 1219.3, "py": 1534.2}, {"loc_id": 2157, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 2, "x": -2947.2, "z": 4168.6, "px": 1545.0, "py": 2759.4}, {"loc_id": 2157, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -2947.2, "z": 4168.6, "px": 1545.0, "py": 2759.4}, {"loc_id": 2158, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 2, "x": 8393.8, "z": 2741.1, "px": 3480.5, "py": 2515.8}, {"loc_id": 2158, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 8393.8, "z": 2741.1, "px": 3480.5, "py": 2515.8}, {"loc_id": 2159, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -3267.2, "z": 4220.0, "px": 1490.4, "py": 2768.2}, {"loc_id": 2160, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -5622.7, "z": 4937.3, "px": 1088.4, "py": 2890.6}, {"loc_id": 2161, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 2, "x": 3962.9, "z": 7040.8, "px": 2724.3, "py": 3249.6}, {"loc_id": 2161, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 3962.9, "z": 7040.8, "px": 2724.3, "py": 3249.6}, {"loc_id": 2162, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 7797.5, "z": -3061.1, "px": 3378.8, "py": 1525.6}, {"loc_id": 2163, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": -8955.2, "z": 3272.0, "px": 519.6, "py": 2606.4}, {"loc_id": 2164, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": 644.1, "z": -245.8, "px": 2157.9, "py": 2006.1}, {"loc_id": 2166, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -5567.0, "z": 4730.5, "px": 1097.9, "py": 2855.3}, {"loc_id": 2166, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": -5567.0, "z": 4730.5, "px": 1097.9, "py": 2855.3}, {"loc_id": 2167, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 2951.2, "z": -4922.7, "px": 2551.7, "py": 1207.9}, {"loc_id": 2167, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 2951.2, "z": -4922.7, "px": 2551.7, "py": 1207.9}, {"loc_id": 2168, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -7164.3, "z": -4734.5, "px": 825.3, "py": 1240.0}, {"loc_id": 2169, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -7622.1, "z": 4287.6, "px": 747.2, "py": 2779.8}, {"loc_id": 2170, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": 7876.9, "z": -2761.7, "px": 3392.3, "py": 1576.7}, {"loc_id": 2171, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -5879.9, "z": -5111.8, "px": 1044.5, "py": 1175.6}, {"loc_id": 2171, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -5879.9, "z": -5111.8, "px": 1044.5, "py": 1175.6}, {"loc_id": 2172, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 7926.2, "z": -3080.1, "px": 3400.7, "py": 1522.3}, {"loc_id": 2172, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 7926.2, "z": -3080.1, "px": 3400.7, "py": 1522.3}, {"loc_id": 2173, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 1034.1, "z": -5498.0, "px": 2224.5, "py": 1109.7}, {"loc_id": 2177, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 2, "x": 582.5, "z": 60.8, "px": 2147.4, "py": 2058.4}, {"loc_id": 2177, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 582.5, "z": 60.8, "px": 2147.4, "py": 2058.4}, {"loc_id": 2177, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 582.5, "z": 60.8, "px": 2147.4, "py": 2058.4}, {"loc_id": 2178, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 4361.3, "z": -5052.7, "px": 2792.3, "py": 1185.7}, {"loc_id": 2178, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 4361.3, "z": -5052.7, "px": 2792.3, "py": 1185.7}, {"loc_id": 2179, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -824.1, "z": 4866.1, "px": 1907.4, "py": 2878.5}, {"loc_id": 2179, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": -824.1, "z": 4866.1, "px": 1907.4, "py": 2878.5}, {"loc_id": 2180, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -6520.2, "z": -4795.6, "px": 935.2, "py": 1229.6}, {"loc_id": 2180, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 2, "x": -6520.2, "z": -4795.6, "px": 935.2, "py": 1229.6}, {"loc_id": 2181, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -9341.1, "z": 3254.4, "px": 453.8, "py": 2603.4}, {"loc_id": 2181, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 2, "x": -9341.1, "z": 3254.4, "px": 453.8, "py": 2603.4}, {"loc_id": 2184, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 2, "x": -5509.5, "z": -1928.1, "px": 1107.7, "py": 1718.9}, {"loc_id": 2184, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -5509.5, "z": -1928.1, "px": 1107.7, "py": 1718.9}, {"loc_id": 2184, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -5509.5, "z": -1928.1, "px": 1107.7, "py": 1718.9}, {"loc_id": 2785, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": -9036.0, "z": 3088.7, "px": 505.9, "py": 2575.1}, {"loc_id": 2787, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": -2169.1, "z": 1202.7, "px": 1677.8, "py": 2253.3}, {"loc_id": 2789, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 5691.5, "z": -745.5, "px": 3019.3, "py": 1920.8}, {"loc_id": 2792, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": -9470.2, "z": -2599.9, "px": 431.8, "py": 1604.3}, {"loc_id": 2793, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 4203.5, "z": 6852.3, "px": 2765.4, "py": 3217.5}, {"loc_id": 2794, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 8004.0, "z": -12.0, "px": 3414.0, "py": 2046.0}, {"loc_id": 2795, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": -5831.0, "z": 4821.7, "px": 1052.8, "py": 2870.9}, {"loc_id": 2800, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 3210.1, "z": -4553.9, "px": 2595.9, "py": 1270.8}, {"loc_id": 2801, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": -7357.7, "z": -1621.8, "px": 792.3, "py": 1771.2}, {"loc_id": 2804, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 5910.8, "z": 108.3, "px": 3056.8, "py": 2066.5}, {"loc_id": 2807, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 2476.2, "z": -2372.3, "px": 2470.6, "py": 1643.1}, {"loc_id": 2808, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 2965.1, "z": -4855.7, "px": 2554.0, "py": 1219.3}, {"loc_id": 2810, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 498.8, "z": 207.2, "px": 2133.1, "py": 2083.4}, {"loc_id": 2812, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 8067.3, "z": -2328.7, "px": 3424.8, "py": 1650.6}, {"loc_id": 2818, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 375.8, "z": 5462.9, "px": 2112.1, "py": 2980.3}, {"loc_id": 2820, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 1269.3, "z": -5614.6, "px": 2264.6, "py": 1089.8}, {"loc_id": 2830, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 758.7, "z": 5233.7, "px": 2177.5, "py": 2941.2}, {"loc_id": 2838, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 7409.6, "z": 3725.5, "px": 3312.6, "py": 2683.8}, {"loc_id": 2841, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": -4106.9, "z": -6123.7, "px": 1347.1, "py": 1002.9}, {"loc_id": 2844, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 3345.5, "z": -2487.4, "px": 2619.0, "py": 1623.5}, {"loc_id": 2857, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": -8505.0, "z": -1801.3, "px": 596.5, "py": 1740.6}, {"loc_id": 2859, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": -5584.6, "z": -5125.2, "px": 1094.9, "py": 1173.3}, {"loc_id": 2862, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": -5623.3, "z": -1912.4, "px": 1088.3, "py": 1721.6}, {"loc_id": 2869, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": -3689.1, "z": 4309.1, "px": 1418.4, "py": 2783.4}, {"loc_id": 2874, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 3514.7, "z": -2551.2, "px": 2647.8, "py": 1612.6}, {"loc_id": 2880, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 8018.3, "z": 137.3, "px": 3416.5, "py": 2071.4}, {"loc_id": 2881, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 5752.4, "z": -940.0, "px": 3029.7, "py": 1887.6}, {"loc_id": 2884, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": -7109.4, "z": -4903.1, "px": 834.7, "py": 1211.2}, {"loc_id": 2891, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 819.2, "z": 3527.5, "px": 2187.8, "py": 2650.0}, {"loc_id": 2892, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 2576.6, "z": -3495.8, "px": 2487.7, "py": 1451.4}, {"loc_id": 2899, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 7356.3, "z": -4101.5, "px": 3303.5, "py": 1348.0}, {"loc_id": 2902, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": -2194.3, "z": 594.7, "px": 1673.5, "py": 2149.5}, {"loc_id": 2909, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 7663.3, "z": 3906.8, "px": 3355.9, "py": 2714.8}, {"loc_id": 2910, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": -5754.1, "z": -169.0, "px": 1066.0, "py": 2019.2}, {"loc_id": 2915, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": -4779.7, "z": 5487.5, "px": 1232.3, "py": 2984.5}, {"loc_id": 2916, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 9496.6, "z": 1302.1, "px": 3668.8, "py": 2270.2}, {"loc_id": 2917, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 622.3, "z": 106.7, "px": 2154.2, "py": 2066.2}, {"loc_id": 2923, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 3197.9, "z": 172.2, "px": 2593.8, "py": 2077.4}, {"loc_id": 2924, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 8560.6, "z": -1796.6, "px": 3509.0, "py": 1741.4}, {"loc_id": 2927, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 5393.5, "z": 1680.5, "px": 2968.5, "py": 2334.8}, {"loc_id": 2928, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": -2414.8, "z": 4199.4, "px": 1635.9, "py": 2764.7}, {"loc_id": 2939, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": -2368.3, "z": -511.1, "px": 1643.8, "py": 1960.8}, {"loc_id": 2940, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 790.6, "z": 5515.4, "px": 2182.9, "py": 2989.3}, {"loc_id": 2942, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": -4583.4, "z": 5706.0, "px": 1265.8, "py": 3021.8}, {"loc_id": 2951, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 637.8, "z": -2554.3, "px": 2156.9, "py": 1612.1}, {"loc_id": 2953, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": -7571.9, "z": -1900.0, "px": 755.7, "py": 1723.7}, {"loc_id": 2956, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 174.4, "z": -1456.3, "px": 2077.8, "py": 1799.5}, {"loc_id": 2960, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": -1863.6, "z": -980.4, "px": 1729.9, "py": 1880.7}, {"loc_id": 2964, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 2296.5, "z": -3463.0, "px": 2439.9, "py": 1457.0}, {"loc_id": 2965, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 760.1, "z": 4522.1, "px": 2177.7, "py": 2819.8}, {"loc_id": 2971, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 1960.2, "z": -1033.0, "px": 2382.5, "py": 1871.7}, {"loc_id": 2972, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": -9618.6, "z": -380.4, "px": 406.4, "py": 1983.1}, {"loc_id": 2973, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 2983.5, "z": -49.9, "px": 2557.2, "py": 2039.5}, {"loc_id": 2982, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": -5524.6, "z": 1493.1, "px": 1105.1, "py": 2302.8}, {"loc_id": 2983, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 2, "x": 8396.3, "z": -1900.9, "px": 3481.0, "py": 1723.6}, {"loc_id": 2985, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -3528.3, "z": 3639.5, "px": 1445.8, "py": 2669.1}, {"loc_id": 2986, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 5485.0, "z": 256.7, "px": 2984.1, "py": 2091.8}, {"loc_id": 2987, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -2701.7, "z": -2961.3, "px": 1586.9, "py": 1542.6}, {"loc_id": 2988, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -1339.4, "z": -5099.1, "px": 1819.4, "py": 1177.8}, {"loc_id": 2989, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 5802.4, "z": -1069.0, "px": 3038.3, "py": 1865.6}, {"loc_id": 2990, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 3786.4, "z": -646.2, "px": 2694.2, "py": 1937.7}, {"loc_id": 2991, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 7220.7, "z": -968.1, "px": 3280.3, "py": 1882.8}, {"loc_id": 2992, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -3981.8, "z": 59.5, "px": 1368.4, "py": 2058.2}, {"loc_id": 2993, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 2440.9, "z": -3690.1, "px": 2464.6, "py": 1418.2}, {"loc_id": 2994, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 1471.4, "z": 3188.2, "px": 2299.1, "py": 2592.1}, {"loc_id": 2995, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -42.9, "z": -5765.1, "px": 2040.7, "py": 1064.1}, {"loc_id": 2996, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 954.1, "z": 4851.0, "px": 2210.8, "py": 2875.9}, {"loc_id": 2997, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -5903.0, "z": 2154.2, "px": 1040.6, "py": 2415.7}, {"loc_id": 2998, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 1348.5, "z": -4211.5, "px": 2278.1, "py": 1329.2}, {"loc_id": 2999, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -3217.6, "z": 2438.8, "px": 1498.9, "py": 2464.2}, {"loc_id": 3000, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 269.9, "z": 5500.0, "px": 2094.1, "py": 2986.7}, {"loc_id": 3001, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 4563.2, "z": -1416.9, "px": 2826.8, "py": 1806.2}, {"loc_id": 3002, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -3064.0, "z": 5178.4, "px": 1525.1, "py": 2931.8}, {"loc_id": 3003, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 5112.0, "z": 3093.0, "px": 2920.4, "py": 2575.9}, {"loc_id": 3004, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 3210.4, "z": -469.0, "px": 2595.9, "py": 1968.0}, {"loc_id": 3005, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -3134.7, "z": 5879.6, "px": 1513.0, "py": 3051.5}, {"loc_id": 3006, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -4370.1, "z": -5699.8, "px": 1302.2, "py": 1075.2}, {"loc_id": 3007, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 4014.1, "z": 4285.2, "px": 2733.1, "py": 2779.3}, {"loc_id": 3008, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -3826.3, "z": 2475.6, "px": 1395.0, "py": 2470.5}, {"loc_id": 3009, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 2988.6, "z": -2944.1, "px": 2558.1, "py": 1545.5}, {"loc_id": 3010, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -696.9, "z": 5121.4, "px": 1929.1, "py": 2922.1}, {"loc_id": 3011, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -4011.6, "z": 2956.5, "px": 1363.4, "py": 2552.6}, {"loc_id": 3012, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 6058.5, "z": 1594.3, "px": 3082.0, "py": 2320.1}, {"loc_id": 3013, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -5557.1, "z": 557.8, "px": 1099.6, "py": 2143.2}, {"loc_id": 3014, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 3911.0, "z": 1337.4, "px": 2715.5, "py": 2276.2}, {"loc_id": 3015, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 4728.4, "z": -1976.8, "px": 2855.0, "py": 1710.6}, {"loc_id": 3016, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -466.3, "z": -6255.7, "px": 1968.4, "py": 980.4}, {"loc_id": 3017, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 3091.6, "z": -5108.7, "px": 2575.6, "py": 1176.1}, {"loc_id": 3018, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -7315.4, "z": 2443.9, "px": 799.5, "py": 2465.1}, {"loc_id": 3019, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -7083.7, "z": -129.6, "px": 839.0, "py": 2025.9}, {"loc_id": 3020, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -4139.8, "z": -4283.5, "px": 1341.5, "py": 1316.9}, {"loc_id": 3021, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -898.2, "z": -3963.9, "px": 1894.7, "py": 1371.5}, {"loc_id": 3022, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 2421.8, "z": 4685.9, "px": 2461.3, "py": 2847.7}, {"loc_id": 3023, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 2351.1, "z": -4908.0, "px": 2449.3, "py": 1210.4}, {"loc_id": 3024, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -836.2, "z": 3976.5, "px": 1905.3, "py": 2726.7}, {"loc_id": 3025, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 5296.6, "z": -1581.4, "px": 2952.0, "py": 1778.1}, {"loc_id": 3026, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 4910.1, "z": -2505.8, "px": 2886.0, "py": 1620.3}, {"loc_id": 3027, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 5495.7, "z": -2190.2, "px": 2985.9, "py": 1674.2}, {"loc_id": 3028, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 6797.9, "z": 3029.4, "px": 3208.2, "py": 2565.0}, {"loc_id": 3029, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 1862.6, "z": 4548.5, "px": 2365.9, "py": 2824.3}, {"loc_id": 3030, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -3133.1, "z": 1350.0, "px": 1513.3, "py": 2278.4}, {"loc_id": 3031, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 1172.6, "z": 3839.6, "px": 2248.1, "py": 2703.3}, {"loc_id": 3032, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -6602.4, "z": -3598.2, "px": 921.2, "py": 1433.9}, {"loc_id": 3033, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": 6921.0, "z": 2069.5, "px": 3229.2, "py": 2401.2}, {"loc_id": 3034, "loc_name": "Ruin3", "item": "SpawnOnce: Goblin", "count": 2, "x": -3986.1, "z": 1201.6, "px": 1367.7, "py": 2253.1}, {"loc_id": 3036, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": 3969.5, "z": -1152.7, "px": 2725.5, "py": 1851.3}, {"loc_id": 3039, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 4095.8, "z": -897.4, "px": 2747.0, "py": 1894.8}, {"loc_id": 3040, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -5758.6, "z": 1729.8, "px": 1065.2, "py": 2343.2}, {"loc_id": 3040, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -5758.6, "z": 1729.8, "px": 1065.2, "py": 2343.2}, {"loc_id": 3040, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": -5758.6, "z": 1729.8, "px": 1065.2, "py": 2343.2}, {"loc_id": 3042, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 5184.1, "z": -2368.4, "px": 2932.8, "py": 1643.8}, {"loc_id": 3044, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": -1024.1, "z": -4863.7, "px": 1873.2, "py": 1217.9}, {"loc_id": 3045, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 4928.6, "z": 1279.0, "px": 2889.1, "py": 2266.3}, {"loc_id": 3048, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 1536.3, "z": -4286.4, "px": 2310.2, "py": 1316.5}, {"loc_id": 3048, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": 1536.3, "z": -4286.4, "px": 2310.2, "py": 1316.5}, {"loc_id": 3049, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 3265.8, "z": -1407.4, "px": 2605.4, "py": 1807.8}, {"loc_id": 3049, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 3265.8, "z": -1407.4, "px": 2605.4, "py": 1807.8}, {"loc_id": 3049, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 3265.8, "z": -1407.4, "px": 2605.4, "py": 1807.8}, {"loc_id": 3051, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 2, "x": 3073.0, "z": 3198.7, "px": 2572.5, "py": 2593.9}, {"loc_id": 3051, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 3073.0, "z": 3198.7, "px": 2572.5, "py": 2593.9}, {"loc_id": 3051, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": 3073.0, "z": 3198.7, "px": 2572.5, "py": 2593.9}, {"loc_id": 3052, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -6206.2, "z": 1408.8, "px": 988.8, "py": 2288.4}, {"loc_id": 3052, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -6206.2, "z": 1408.8, "px": 988.8, "py": 2288.4}, {"loc_id": 3052, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": -6206.2, "z": 1408.8, "px": 988.8, "py": 2288.4}, {"loc_id": 3053, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -6464.8, "z": -3839.8, "px": 944.7, "py": 1392.7}, {"loc_id": 3054, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 6847.7, "z": 3134.3, "px": 3216.7, "py": 2582.9}, {"loc_id": 3055, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 1215.1, "z": -4097.4, "px": 2255.4, "py": 1348.7}, {"loc_id": 3055, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 1215.1, "z": -4097.4, "px": 2255.4, "py": 1348.7}, {"loc_id": 3055, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": 1215.1, "z": -4097.4, "px": 2255.4, "py": 1348.7}, {"loc_id": 3058, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": -4290.0, "z": 959.0, "px": 1315.8, "py": 2211.7}, {"loc_id": 3058, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -4290.0, "z": 959.0, "px": 1315.8, "py": 2211.7}, {"loc_id": 3059, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": -62.5, "z": -4926.3, "px": 2037.3, "py": 1207.2}, {"loc_id": 3061, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -4223.5, "z": 3007.5, "px": 1327.2, "py": 2561.3}, {"loc_id": 3061, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 2, "x": -4223.5, "z": 3007.5, "px": 1327.2, "py": 2561.3}, {"loc_id": 3062, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -1215.9, "z": -4353.4, "px": 1840.5, "py": 1305.0}, {"loc_id": 3062, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -1215.9, "z": -4353.4, "px": 1840.5, "py": 1305.0}, {"loc_id": 3063, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": -128.6, "z": -5822.9, "px": 2026.1, "py": 1054.2}, {"loc_id": 3063, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": -128.6, "z": -5822.9, "px": 2026.1, "py": 1054.2}, {"loc_id": 3065, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": -4544.0, "z": -5568.1, "px": 1272.5, "py": 1097.7}, {"loc_id": 3065, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": -4544.0, "z": -5568.1, "px": 1272.5, "py": 1097.7}, {"loc_id": 3066, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 5310.5, "z": 3584.0, "px": 2954.3, "py": 2659.7}, {"loc_id": 3068, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": -5185.2, "z": -1022.1, "px": 1163.1, "py": 1873.6}, {"loc_id": 3068, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": -5185.2, "z": -1022.1, "px": 1163.1, "py": 1873.6}, {"loc_id": 3073, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -3968.4, "z": 1150.8, "px": 1370.7, "py": 2244.4}, {"loc_id": 3074, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 6720.6, "z": 2302.1, "px": 3195.0, "py": 2440.9}, {"loc_id": 3075, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": -6209.3, "z": -4736.0, "px": 988.3, "py": 1239.7}, {"loc_id": 3076, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": 6849.0, "z": -2369.3, "px": 3216.9, "py": 1643.6}, {"loc_id": 3076, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 6849.0, "z": -2369.3, "px": 3216.9, "py": 1643.6}, {"loc_id": 3076, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": 6849.0, "z": -2369.3, "px": 3216.9, "py": 1643.6}, {"loc_id": 3077, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": 5889.6, "z": -4990.1, "px": 3053.2, "py": 1196.4}, {"loc_id": 3077, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": 5889.6, "z": -4990.1, "px": 3053.2, "py": 1196.4}, {"loc_id": 3078, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 1918.4, "z": 3071.5, "px": 2375.4, "py": 2572.2}, {"loc_id": 3079, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": 4415.1, "z": -1345.8, "px": 2801.5, "py": 1818.3}, {"loc_id": 3080, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -3967.4, "z": 3841.4, "px": 1370.9, "py": 2703.6}, {"loc_id": 3080, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": -3967.4, "z": 3841.4, "px": 1370.9, "py": 2703.6}, {"loc_id": 3081, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -3137.5, "z": 5951.5, "px": 1512.5, "py": 3063.7}, {"loc_id": 3081, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -3137.5, "z": 5951.5, "px": 1512.5, "py": 3063.7}, {"loc_id": 3081, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 2, "x": -3137.5, "z": 5951.5, "px": 1512.5, "py": 3063.7}, {"loc_id": 3081, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": -3137.5, "z": 5951.5, "px": 1512.5, "py": 3063.7}, {"loc_id": 3082, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -6017.1, "z": 2176.9, "px": 1021.1, "py": 2419.5}, {"loc_id": 3083, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 2, "x": 2753.6, "z": -5953.6, "px": 2517.9, "py": 1031.9}, {"loc_id": 3083, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 2753.6, "z": -5953.6, "px": 2517.9, "py": 1031.9}, {"loc_id": 3084, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": -3071.2, "z": 1215.7, "px": 1523.8, "py": 2255.5}, {"loc_id": 3085, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": -4543.6, "z": -6143.1, "px": 1272.6, "py": 999.6}, {"loc_id": 3086, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 4032.1, "z": -4990.2, "px": 2736.1, "py": 1196.3}, {"loc_id": 3087, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 1024.6, "z": 4097.5, "px": 2222.9, "py": 2747.3}, {"loc_id": 3087, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 1024.6, "z": 4097.5, "px": 2222.9, "py": 2747.3}, {"loc_id": 3088, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": -3647.2, "z": 2177.6, "px": 1425.5, "py": 2419.6}, {"loc_id": 3088, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": -3647.2, "z": 2177.6, "px": 1425.5, "py": 2419.6}, {"loc_id": 3089, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": 2750.5, "z": -5567.8, "px": 2517.4, "py": 1097.8}, {"loc_id": 3089, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 2750.5, "z": -5567.8, "px": 2517.4, "py": 1097.8}, {"loc_id": 3089, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": 2750.5, "z": -5567.8, "px": 2517.4, "py": 1097.8}, {"loc_id": 3090, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": 1022.6, "z": 5824.3, "px": 2222.5, "py": 3042.0}, {"loc_id": 3090, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": 1022.6, "z": 5824.3, "px": 2222.5, "py": 3042.0}, {"loc_id": 3091, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -7103.0, "z": -1.0, "px": 835.8, "py": 2047.8}, {"loc_id": 3092, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": -4289.7, "z": -6142.8, "px": 1315.9, "py": 999.6}, {"loc_id": 3093, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": -3136.3, "z": 2494.0, "px": 1512.7, "py": 2473.6}, {"loc_id": 3094, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": -641.3, "z": 4094.2, "px": 1938.6, "py": 2746.7}, {"loc_id": 3096, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": 1982.5, "z": 7040.4, "px": 2386.3, "py": 3249.6}, {"loc_id": 3096, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": 1982.5, "z": 7040.4, "px": 2386.3, "py": 3249.6}, {"loc_id": 3097, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -7486.5, "z": 2241.7, "px": 770.3, "py": 2430.6}, {"loc_id": 3097, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -7486.5, "z": 2241.7, "px": 770.3, "py": 2430.6}, {"loc_id": 3098, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": 3136.5, "z": 2750.3, "px": 2583.3, "py": 2517.4}, {"loc_id": 3099, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 3776.9, "z": 1407.8, "px": 2692.6, "py": 2288.3}, {"loc_id": 3102, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 2, "x": -2750.2, "z": -2879.8, "px": 1578.6, "py": 1556.5}, {"loc_id": 3102, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -2750.2, "z": -2879.8, "px": 1578.6, "py": 1556.5}, {"loc_id": 3102, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -2750.2, "z": -2879.8, "px": 1578.6, "py": 1556.5}, {"loc_id": 3102, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": -2750.2, "z": -2879.8, "px": 1578.6, "py": 1556.5}, {"loc_id": 3103, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 2238.9, "z": -4798.2, "px": 2430.1, "py": 1229.1}, {"loc_id": 3104, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": -4094.7, "z": -4352.5, "px": 1349.2, "py": 1305.2}, {"loc_id": 3106, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 5758.1, "z": -1023.1, "px": 3030.7, "py": 1873.4}, {"loc_id": 3107, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": 1664.6, "z": 3393.8, "px": 2332.1, "py": 2627.2}, {"loc_id": 3107, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 2, "x": 1664.6, "z": 3393.8, "px": 2332.1, "py": 2627.2}, {"loc_id": 3107, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 1664.6, "z": 3393.8, "px": 2332.1, "py": 2627.2}, {"loc_id": 3108, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": -3646.9, "z": 2561.5, "px": 1425.6, "py": 2485.2}, {"loc_id": 3108, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": -3646.9, "z": 2561.5, "px": 1425.6, "py": 2485.2}, {"loc_id": 3108, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": -3646.9, "z": 2561.5, "px": 1425.6, "py": 2485.2}, {"loc_id": 3110, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": -1918.3, "z": -3072.8, "px": 1720.6, "py": 1523.6}, {"loc_id": 3111, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 5312.2, "z": -1921.8, "px": 2954.6, "py": 1720.0}, {"loc_id": 3114, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": -4097.1, "z": -2687.0, "px": 1348.8, "py": 1589.4}, {"loc_id": 3114, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": -4097.1, "z": -2687.0, "px": 1348.8, "py": 1589.4}, {"loc_id": 3115, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 2, "x": -5121.5, "z": -2880.5, "px": 1173.9, "py": 1556.4}, {"loc_id": 3115, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": -5121.5, "z": -2880.5, "px": 1173.9, "py": 1556.4}, {"loc_id": 3116, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 1279.3, "z": 3262.7, "px": 2266.3, "py": 2604.8}, {"loc_id": 3116, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": 1279.3, "z": 3262.7, "px": 2266.3, "py": 2604.8}, {"loc_id": 3116, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": 1279.3, "z": 3262.7, "px": 2266.3, "py": 2604.8}, {"loc_id": 3118, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 2, "x": 6975.6, "z": 2366.9, "px": 3238.5, "py": 2452.0}, {"loc_id": 3118, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 6975.6, "z": 2366.9, "px": 3238.5, "py": 2452.0}, {"loc_id": 3118, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": 6975.6, "z": 2366.9, "px": 3238.5, "py": 2452.0}, {"loc_id": 3119, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 5374.1, "z": -2623.4, "px": 2965.2, "py": 1600.3}, {"loc_id": 3120, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": 960.4, "z": -3967.4, "px": 2211.9, "py": 1370.9}, {"loc_id": 3120, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 960.4, "z": -3967.4, "px": 2211.9, "py": 1370.9}, {"loc_id": 3121, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": -2816.6, "z": -7168.1, "px": 1567.3, "py": 824.6}, {"loc_id": 3121, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -2816.6, "z": -7168.1, "px": 1567.3, "py": 824.6}, {"loc_id": 3122, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": 959.4, "z": 4609.2, "px": 2211.7, "py": 2834.6}, {"loc_id": 3123, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": -4801.2, "z": 2239.1, "px": 1228.6, "py": 2430.1}, {"loc_id": 3124, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": -3134.6, "z": -2367.8, "px": 1513.0, "py": 1643.9}, {"loc_id": 3125, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": -1470.8, "z": -4353.3, "px": 1797.0, "py": 1305.0}, {"loc_id": 3125, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": -1470.8, "z": -4353.3, "px": 1797.0, "py": 1305.0}, {"loc_id": 3125, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": -1470.8, "z": -4353.3, "px": 1797.0, "py": 1305.0}, {"loc_id": 3125, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -1470.8, "z": -4353.3, "px": 1797.0, "py": 1305.0}, {"loc_id": 3126, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 7294.1, "z": 1022.7, "px": 3292.9, "py": 2222.5}, {"loc_id": 3126, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 7294.1, "z": 1022.7, "px": 3292.9, "py": 2222.5}, {"loc_id": 3128, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 2878.7, "z": 5118.9, "px": 2539.3, "py": 2921.6}, {"loc_id": 3128, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": 2878.7, "z": 5118.9, "px": 2539.3, "py": 2921.6}, {"loc_id": 3129, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 2816.9, "z": -3392.4, "px": 2528.8, "py": 1469.0}, {"loc_id": 3130, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 7166.7, "z": 1791.3, "px": 3271.1, "py": 2353.7}, {"loc_id": 3130, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": 7166.7, "z": 1791.3, "px": 3271.1, "py": 2353.7}, {"loc_id": 3131, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -4031.6, "z": 63.7, "px": 1359.9, "py": 2058.9}, {"loc_id": 3131, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -4031.6, "z": 63.7, "px": 1359.9, "py": 2058.9}, {"loc_id": 3131, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": -4031.6, "z": 63.7, "px": 1359.9, "py": 2058.9}, {"loc_id": 3132, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 2369.7, "z": -2238.3, "px": 2452.4, "py": 1666.0}, {"loc_id": 3132, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 2369.7, "z": -2238.3, "px": 2452.4, "py": 1666.0}, {"loc_id": 3134, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": 4606.7, "z": -1534.5, "px": 2834.2, "py": 1786.1}, {"loc_id": 3134, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 4606.7, "z": -1534.5, "px": 2834.2, "py": 1786.1}, {"loc_id": 3134, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": 4606.7, "z": -1534.5, "px": 2834.2, "py": 1786.1}, {"loc_id": 3136, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -1728.2, "z": -4735.4, "px": 1753.1, "py": 1239.8}, {"loc_id": 3137, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 4862.4, "z": 5057.9, "px": 2877.8, "py": 2911.2}, {"loc_id": 3137, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": 4862.4, "z": 5057.9, "px": 2877.8, "py": 2911.2}, {"loc_id": 3137, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 4862.4, "z": 5057.9, "px": 2877.8, "py": 2911.2}, {"loc_id": 3137, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 4862.4, "z": 5057.9, "px": 2877.8, "py": 2911.2}, {"loc_id": 3140, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 2, "x": -2879.7, "z": 831.4, "px": 1556.5, "py": 2189.9}, {"loc_id": 3141, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 1857.8, "z": 3713.0, "px": 2365.1, "py": 2681.7}, {"loc_id": 3143, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 3969.5, "z": -639.1, "px": 2725.5, "py": 1938.9}, {"loc_id": 3143, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": 3969.5, "z": -639.1, "px": 2725.5, "py": 1938.9}, {"loc_id": 3143, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 3969.5, "z": -639.1, "px": 2725.5, "py": 1938.9}, {"loc_id": 3144, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -4032.3, "z": 3582.0, "px": 1359.8, "py": 2659.3}, {"loc_id": 3144, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": -4032.3, "z": 3582.0, "px": 1359.8, "py": 2659.3}, {"loc_id": 3145, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 2, "x": 7041.8, "z": 1088.1, "px": 3249.8, "py": 2233.7}, {"loc_id": 3145, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": 7041.8, "z": 1088.1, "px": 3249.8, "py": 2233.7}, {"loc_id": 3146, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 2687.8, "z": 7167.6, "px": 2506.7, "py": 3271.3}, {"loc_id": 3147, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": -7422.2, "z": -2176.9, "px": 781.3, "py": 1676.5}, {"loc_id": 3147, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": -7422.2, "z": -2176.9, "px": 781.3, "py": 1676.5}, {"loc_id": 3149, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": -2048.1, "z": -5311.5, "px": 1698.5, "py": 1141.5}, {"loc_id": 3150, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": 4160.5, "z": 1473.5, "px": 2758.1, "py": 2299.5}, {"loc_id": 3150, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 4160.5, "z": 1473.5, "px": 2758.1, "py": 2299.5}, {"loc_id": 3150, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 4160.5, "z": 1473.5, "px": 2758.1, "py": 2299.5}, {"loc_id": 3151, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 4926.9, "z": -1279.3, "px": 2888.9, "py": 1829.7}, {"loc_id": 3151, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 2, "x": 4926.9, "z": -1279.3, "px": 2888.9, "py": 1829.7}, {"loc_id": 3151, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 4926.9, "z": -1279.3, "px": 2888.9, "py": 1829.7}, {"loc_id": 3152, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": -2494.3, "z": -1790.4, "px": 1622.3, "py": 1742.4}, {"loc_id": 3152, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": -2494.3, "z": -1790.4, "px": 1622.3, "py": 1742.4}, {"loc_id": 3152, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": -2494.3, "z": -1790.4, "px": 1622.3, "py": 1742.4}, {"loc_id": 3153, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -4353.2, "z": 1984.7, "px": 1305.1, "py": 2386.7}, {"loc_id": 3153, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": -4353.2, "z": 1984.7, "px": 1305.1, "py": 2386.7}, {"loc_id": 3154, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": -961.8, "z": 4159.9, "px": 1883.9, "py": 2758.0}, {"loc_id": 3155, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": -62.3, "z": -5185.2, "px": 2037.4, "py": 1163.1}, {"loc_id": 3155, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": -62.3, "z": -5185.2, "px": 2037.4, "py": 1163.1}, {"loc_id": 3156, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 5568.9, "z": -1793.4, "px": 2998.4, "py": 1741.9}, {"loc_id": 3156, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": 5568.9, "z": -1793.4, "px": 2998.4, "py": 1741.9}, {"loc_id": 3157, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 4158.4, "z": 1086.2, "px": 2757.7, "py": 2233.4}, {"loc_id": 3159, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": -2239.2, "z": -1919.6, "px": 1665.8, "py": 1720.4}, {"loc_id": 3159, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -2239.2, "z": -1919.6, "px": 1665.8, "py": 1720.4}, {"loc_id": 3160, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -4481.0, "z": -5823.9, "px": 1283.2, "py": 1054.1}, {"loc_id": 3160, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 2, "x": -4481.0, "z": -5823.9, "px": 1283.2, "py": 1054.1}, {"loc_id": 3161, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -3649.1, "z": 3839.6, "px": 1425.2, "py": 2703.3}, {"loc_id": 3161, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 2, "x": -3649.1, "z": 3839.6, "px": 1425.2, "py": 2703.3}, {"loc_id": 3162, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 2944.5, "z": 4287.1, "px": 2550.5, "py": 2779.7}, {"loc_id": 3163, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 2, "x": 4927.2, "z": 3326.8, "px": 2888.9, "py": 2615.8}, {"loc_id": 3165, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -2496.7, "z": 3073.0, "px": 1621.9, "py": 2572.5}, {"loc_id": 3165, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -2496.7, "z": 3073.0, "px": 1621.9, "py": 2572.5}, {"loc_id": 3166, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": -2368.6, "z": 4031.0, "px": 1643.8, "py": 2736.0}, {"loc_id": 3168, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 2, "x": 3712.5, "z": -448.2, "px": 2681.6, "py": 1971.5}, {"loc_id": 3168, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 3712.5, "z": -448.2, "px": 2681.6, "py": 1971.5}, {"loc_id": 3169, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 4735.7, "z": 3071.3, "px": 2856.2, "py": 2572.2}, {"loc_id": 3169, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 2, "x": 4735.7, "z": 3071.3, "px": 2856.2, "py": 2572.2}, {"loc_id": 3169, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 4735.7, "z": 3071.3, "px": 2856.2, "py": 2572.2}, {"loc_id": 3172, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 2, "x": 4609.7, "z": 1406.2, "px": 2834.7, "py": 2288.0}, {"loc_id": 3175, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -5185.1, "z": -2624.5, "px": 1163.1, "py": 1600.1}, {"loc_id": 3175, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": -5185.1, "z": -2624.5, "px": 1163.1, "py": 1600.1}, {"loc_id": 3176, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 318.1, "z": 5502.9, "px": 2102.3, "py": 2987.2}, {"loc_id": 3176, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": 318.1, "z": 5502.9, "px": 2102.3, "py": 2987.2}, {"loc_id": 3176, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": 318.1, "z": 5502.9, "px": 2102.3, "py": 2987.2}, {"loc_id": 3177, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 6784.1, "z": 2881.4, "px": 3205.8, "py": 2539.8}, {"loc_id": 3178, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 4673.3, "z": 2751.8, "px": 2845.6, "py": 2517.6}, {"loc_id": 3179, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": -385.1, "z": -3713.6, "px": 1982.3, "py": 1414.2}, {"loc_id": 3179, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": -385.1, "z": -3713.6, "px": 1982.3, "py": 1414.2}, {"loc_id": 3181, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 2110.8, "z": 6080.7, "px": 2408.2, "py": 3085.8}, {"loc_id": 3181, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 2, "x": 2110.8, "z": 6080.7, "px": 2408.2, "py": 3085.8}, {"loc_id": 3182, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 5184.7, "z": 4800.3, "px": 2932.9, "py": 2867.3}, {"loc_id": 3183, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": 7424.0, "z": -831.4, "px": 3315.0, "py": 1906.1}, {"loc_id": 3184, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": -961.6, "z": 5057.4, "px": 1883.9, "py": 2911.1}, {"loc_id": 3184, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -961.6, "z": 5057.4, "px": 1883.9, "py": 2911.1}, {"loc_id": 3185, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": 3839.5, "z": 4673.0, "px": 2703.3, "py": 2845.5}, {"loc_id": 3185, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 3839.5, "z": 4673.0, "px": 2703.3, "py": 2845.5}, {"loc_id": 3186, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 4673.3, "z": -1086.3, "px": 2845.6, "py": 1862.6}, {"loc_id": 3186, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 4673.3, "z": -1086.3, "px": 2845.6, "py": 1862.6}, {"loc_id": 3190, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -1854.6, "z": 3328.0, "px": 1731.5, "py": 2616.0}, {"loc_id": 3191, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 6016.2, "z": 1601.9, "px": 3074.8, "py": 2321.4}, {"loc_id": 3191, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 6016.2, "z": 1601.9, "px": 3074.8, "py": 2321.4}, {"loc_id": 3192, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 1664.9, "z": 7424.3, "px": 2332.1, "py": 3315.1}, {"loc_id": 3194, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": -3327.1, "z": -1663.5, "px": 1480.2, "py": 1764.1}, {"loc_id": 3195, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -4928.4, "z": -1985.0, "px": 1206.9, "py": 1709.2}, {"loc_id": 3195, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 2, "x": -4928.4, "z": -1985.0, "px": 1206.9, "py": 1709.2}, {"loc_id": 3195, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": -4928.4, "z": -1985.0, "px": 1206.9, "py": 1709.2}, {"loc_id": 3196, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -961.5, "z": -5887.6, "px": 1883.9, "py": 1043.2}, {"loc_id": 3197, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 3198.6, "z": 4350.7, "px": 2593.9, "py": 2790.5}, {"loc_id": 3199, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": -3646.6, "z": 3583.7, "px": 1425.6, "py": 2659.6}, {"loc_id": 3201, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": -1280.2, "z": -6655.9, "px": 1829.5, "py": 912.1}, {"loc_id": 3202, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 2, "x": 2688.2, "z": -5121.5, "px": 2506.8, "py": 1173.9}, {"loc_id": 3204, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -4416.6, "z": 6334.7, "px": 1294.2, "py": 3129.1}, {"loc_id": 3204, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -4416.6, "z": 6334.7, "px": 1294.2, "py": 3129.1}, {"loc_id": 3205, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -2495.7, "z": -3007.5, "px": 1622.1, "py": 1534.7}, {"loc_id": 3205, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -2495.7, "z": -3007.5, "px": 1622.1, "py": 1534.7}, {"loc_id": 3205, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": -2495.7, "z": -3007.5, "px": 1622.1, "py": 1534.7}, {"loc_id": 3205, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": -2495.7, "z": -3007.5, "px": 1622.1, "py": 1534.7}, {"loc_id": 3206, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": -3649.1, "z": -1920.6, "px": 1425.2, "py": 1720.2}, {"loc_id": 3207, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -4928.9, "z": -2688.9, "px": 1206.8, "py": 1589.1}, {"loc_id": 3208, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": 1983.3, "z": 4098.0, "px": 2386.5, "py": 2747.4}, {"loc_id": 3209, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": -5184.6, "z": -1921.3, "px": 1163.2, "py": 1720.1}, {"loc_id": 3209, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": -5184.6, "z": -1921.3, "px": 1163.2, "py": 1720.1}, {"loc_id": 3211, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 2048.1, "z": 4415.5, "px": 2397.5, "py": 2801.6}, {"loc_id": 3211, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": 2048.1, "z": 4415.5, "px": 2397.5, "py": 2801.6}, {"loc_id": 3212, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -896.0, "z": -4032.1, "px": 1895.1, "py": 1359.9}, {"loc_id": 3212, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -896.0, "z": -4032.1, "px": 1895.1, "py": 1359.9}, {"loc_id": 3213, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -6656.3, "z": -3646.2, "px": 912.0, "py": 1425.7}, {"loc_id": 3213, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -6656.3, "z": -3646.2, "px": 912.0, "py": 1425.7}, {"loc_id": 3213, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": -6656.3, "z": -3646.2, "px": 912.0, "py": 1425.7}, {"loc_id": 3214, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": -3134.9, "z": 7103.2, "px": 1513.0, "py": 3260.3}, {"loc_id": 3214, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": -3134.9, "z": 7103.2, "px": 1513.0, "py": 3260.3}, {"loc_id": 3215, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -3198.4, "z": 4030.7, "px": 1502.1, "py": 2735.9}, {"loc_id": 3215, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": -3198.4, "z": 4030.7, "px": 1502.1, "py": 2735.9}, {"loc_id": 3215, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": -3198.4, "z": 4030.7, "px": 1502.1, "py": 2735.9}, {"loc_id": 3215, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": -3198.4, "z": 4030.7, "px": 1502.1, "py": 2735.9}, {"loc_id": 3216, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": 3072.9, "z": -63.5, "px": 2572.4, "py": 2037.2}, {"loc_id": 3217, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 2, "x": -5502.3, "z": 641.6, "px": 1108.9, "py": 2157.5}, {"loc_id": 3217, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": -5502.3, "z": 641.6, "px": 1108.9, "py": 2157.5}, {"loc_id": 3218, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 6273.8, "z": 1535.8, "px": 3118.7, "py": 2310.1}, {"loc_id": 3219, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -2942.9, "z": 4096.3, "px": 1545.7, "py": 2747.1}, {"loc_id": 3221, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 2, "x": 7105.1, "z": 2113.2, "px": 3260.6, "py": 2408.7}, {"loc_id": 3222, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": 896.5, "z": 3584.0, "px": 2201.0, "py": 2659.7}, {"loc_id": 3222, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": 896.5, "z": 3584.0, "px": 2201.0, "py": 2659.7}, {"loc_id": 3223, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": -5888.9, "z": 961.8, "px": 1043.0, "py": 2212.1}, {"loc_id": 3224, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -5823.9, "z": 4351.9, "px": 1054.1, "py": 2790.7}, {"loc_id": 3224, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": -5823.9, "z": 4351.9, "px": 1054.1, "py": 2790.7}, {"loc_id": 3225, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": 2945.0, "z": -5056.6, "px": 2550.6, "py": 1185.0}, {"loc_id": 3225, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 2945.0, "z": -5056.6, "px": 2550.6, "py": 1185.0}, {"loc_id": 3226, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 1342.7, "z": 5057.3, "px": 2277.2, "py": 2911.1}, {"loc_id": 3227, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": 769.6, "z": 4094.1, "px": 2179.3, "py": 2746.7}, {"loc_id": 3228, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 2, "x": 3969.0, "z": 895.5, "px": 2725.4, "py": 2200.8}, {"loc_id": 3229, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": -5441.0, "z": 383.3, "px": 1119.4, "py": 2113.4}, {"loc_id": 3230, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 2, "x": -4993.4, "z": 3007.5, "px": 1195.8, "py": 2561.3}, {"loc_id": 3232, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": -4610.0, "z": -575.2, "px": 1261.2, "py": 1949.8}, {"loc_id": 3233, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 2, "x": 3134.9, "z": -2943.1, "px": 2583.0, "py": 1545.7}, {"loc_id": 3233, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 2, "x": 3134.9, "z": -2943.1, "px": 2583.0, "py": 1545.7}, {"loc_id": 3238, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 2, "x": -4471.8, "z": 3253.7, "px": 1284.8, "py": 2603.3}, {"loc_id": 3241, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 2, "x": -1392.6, "z": -6780.2, "px": 1810.3, "py": 890.8}, {"loc_id": 3257, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 2, "x": 2106.5, "z": 5960.8, "px": 2407.5, "py": 3065.3}, {"loc_id": 3263, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 2, "x": -5060.6, "z": -2876.7, "px": 1184.3, "py": 1557.0}, {"loc_id": 3264, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 2, "x": -4028.3, "z": 3776.2, "px": 1360.5, "py": 2692.5}, {"loc_id": 3271, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 2, "x": 2058.2, "z": 5171.6, "px": 2399.3, "py": 2930.6}, {"loc_id": 3276, "loc_name": "StoneTower1", "item": "SpawnOnce: Goblin", "count": 2, "x": 5897.9, "z": -4872.5, "px": 3054.6, "py": 1216.4}, {"loc_id": 3289, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 2, "x": 7347.4, "z": 947.3, "px": 3302.0, "py": 2209.7}, {"loc_id": 3290, "loc_name": "StoneTower3", "item": "SpawnOnce: Goblin", "count": 2, "x": 5131.0, "z": 5069.9, "px": 2923.7, "py": 2913.3}, {"loc_id": 3335, "loc_name": "StoneHenge1", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 3328.4, "z": -447.7, "px": 2616.0, "py": 1971.6}, {"loc_id": 3338, "loc_name": "StoneHenge1", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -5824.1, "z": 1919.2, "px": 1054.0, "py": 2375.5}, {"loc_id": 3339, "loc_name": "StoneHenge1", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -896.5, "z": -6334.6, "px": 1895.0, "py": 966.9}, {"loc_id": 3340, "loc_name": "StoneHenge2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -1857.7, "z": 3198.3, "px": 1731.0, "py": 2593.8}, {"loc_id": 3344, "loc_name": "StoneHenge2", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 831.8, "z": -7360.0, "px": 2190.0, "py": 791.9}, {"loc_id": 3346, "loc_name": "StoneHenge3", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": -3583.4, "z": -1726.5, "px": 1436.4, "py": 1753.3}, {"loc_id": 3354, "loc_name": "StoneHenge4", "item": "SpawnOnce: GoblinBrute", "count": 2, "x": 4094.2, "z": 4928.6, "px": 2746.7, "py": 2889.1}, {"loc_id": 3355, "loc_name": "StoneHenge5", "item": "SpawnOnce: Goblin", "count": 2, "x": -2938.8, "z": -2608.1, "px": 1546.4, "py": 1602.9}, {"loc_id": 3356, "loc_name": "StoneHenge5", "item": "SpawnOnce: Goblin", "count": 2, "x": -3850.2, "z": 2802.6, "px": 1390.9, "py": 2526.3}, {"loc_id": 3359, "loc_name": "StoneHenge5", "item": "SpawnOnce: Goblin", "count": 2, "x": 5490.2, "z": -2125.9, "px": 2985.0, "py": 1685.2}, {"loc_id": 3362, "loc_name": "StoneHenge5", "item": "SpawnOnce: Goblin", "count": 2, "x": -1343.2, "z": -6788.8, "px": 1818.8, "py": 889.4}, {"loc_id": 3363, "loc_name": "StoneHenge5", "item": "SpawnOnce: Goblin", "count": 2, "x": -5446.8, "z": 504.9, "px": 1118.4, "py": 2134.2}, {"loc_id": 3364, "loc_name": "StoneHenge5", "item": "SpawnOnce: Goblin", "count": 2, "x": 373.8, "z": 3343.2, "px": 2111.8, "py": 2618.6}, {"loc_id": 3367, "loc_name": "StoneHenge5", "item": "SpawnOnce: Goblin", "count": 2, "x": 4623.5, "z": 1466.9, "px": 2837.1, "py": 2298.4}, {"loc_id": 3370, "loc_name": "StoneHenge5", "item": "SpawnOnce: Goblin", "count": 2, "x": 4724.6, "z": -1717.8, "px": 2854.3, "py": 1754.8}, {"loc_id": 3437, "loc_name": "WoodHouse3", "item": "Pickable: Wood", "count": 2, "x": -266.4, "z": -272.9, "px": 2002.5, "py": 2001.4}, {"loc_id": 3441, "loc_name": "WoodHouse3", "item": "Pickable: Wood", "count": 2, "x": -3246.5, "z": 3275.2, "px": 1493.9, "py": 2607.0}, {"loc_id": 3446, "loc_name": "WoodHouse3", "item": "Pickable: Wood", "count": 2, "x": 3440.0, "z": -2029.9, "px": 2635.1, "py": 1701.6}, {"loc_id": 3451, "loc_name": "WoodHouse3", "item": "Pickable: Wood", "count": 2, "x": -146.8, "z": 389.5, "px": 2022.9, "py": 2114.5}, {"loc_id": 3538, "loc_name": "WoodHouse8", "item": "Pickable: Dandelion", "count": 2, "x": -3055.5, "z": 3075.7, "px": 1526.5, "py": 2572.9}, {"loc_id": 3543, "loc_name": "WoodHouse8", "item": "Pickable: Dandelion", "count": 2, "x": 3793.5, "z": -1401.7, "px": 2695.4, "py": 1808.8}, {"loc_id": 3544, "loc_name": "WoodHouse8", "item": "Pickable: Dandelion", "count": 2, "x": -206.3, "z": -145.2, "px": 2012.8, "py": 2023.2}, {"loc_id": 3545, "loc_name": "WoodHouse8", "item": "Pickable: Dandelion", "count": 2, "x": 4407.0, "z": -1235.9, "px": 2800.1, "py": 1837.1}, {"loc_id": 3550, "loc_name": "WoodHouse8", "item": "Pickable: Dandelion", "count": 2, "x": 1985.5, "z": -1835.4, "px": 2386.9, "py": 1734.8}, {"loc_id": 3615, "loc_name": "WoodHouse12", "item": "Pickable: Mushroom", "count": 2, "x": -1979.3, "z": 61.8, "px": 1710.2, "py": 2058.5}, {"loc_id": 3618, "loc_name": "WoodHouse12", "item": "Pickable: Mushroom", "count": 2, "x": 2855.0, "z": -2514.8, "px": 2535.3, "py": 1618.8}, {"loc_id": 3620, "loc_name": "WoodHouse12", "item": "Pickable: Mushroom", "count": 2, "x": 2509.8, "z": -3195.9, "px": 2476.3, "py": 1502.6}, {"loc_id": 3621, "loc_name": "WoodHouse12", "item": "Pickable: Mushroom", "count": 2, "x": 3652.5, "z": -371.3, "px": 2671.4, "py": 1984.6}, {"loc_id": 3626, "loc_name": "WoodHouse12", "item": "Pickable: Mushroom", "count": 2, "x": 0.0, "z": 396.5, "px": 2048.0, "py": 2115.7}, {"loc_id": 3628, "loc_name": "WoodHouse12", "item": "Pickable: Mushroom", "count": 2, "x": 3772.4, "z": -1578.9, "px": 2691.8, "py": 1778.5}, {"loc_id": 3631, "loc_name": "WoodHouse12", "item": "Pickable: Mushroom", "count": 2, "x": 2601.7, "z": -3862.8, "px": 2492.0, "py": 1388.7}, {"loc_id": 3632, "loc_name": "WoodHouse12", "item": "Pickable: Mushroom", "count": 2, "x": 2805.1, "z": -696.2, "px": 2526.7, "py": 1929.2}, {"loc_id": 3634, "loc_name": "WoodHouse12", "item": "Pickable: Mushroom", "count": 2, "x": 3708.0, "z": -1428.1, "px": 2680.8, "py": 1804.3}, {"loc_id": 3655, "loc_name": "WoodFarm1", "item": "Container: TreasureChest_meadows", "count": 2, "x": -1408.0, "z": -1152.0, "px": 1807.7, "py": 1851.4}, {"loc_id": 3656, "loc_name": "WoodFarm1", "item": "Pickable: Raspberry", "count": 2, "x": 512.0, "z": 128.0, "px": 2135.4, "py": 2069.8}, {"loc_id": 3658, "loc_name": "WoodFarm1", "item": "Container: TreasureChest_meadows", "count": 2, "x": -1536.0, "z": -832.0, "px": 1785.9, "py": 1906.0}, {"loc_id": 3659, "loc_name": "WoodFarm1", "item": "Container: TreasureChest_meadows", "count": 2, "x": 1792.0, "z": 0.0, "px": 2353.8, "py": 2048.0}, {"loc_id": 3663, "loc_name": "WoodFarm1", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 2, "x": 1024.0, "z": 896.0, "px": 2222.8, "py": 2200.9}, {"loc_id": 3666, "loc_name": "WoodVillage1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -4032.0, "z": -2048.0, "px": 1359.9, "py": 1698.5}, {"loc_id": 3666, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": -4032.0, "z": -2048.0, "px": 1359.9, "py": 1698.5}, {"loc_id": 3666, "loc_name": "WoodVillage1", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 2, "x": -4032.0, "z": -2048.0, "px": 1359.9, "py": 1698.5}, {"loc_id": 3667, "loc_name": "WoodVillage1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -2176.0, "z": -1792.0, "px": 1676.6, "py": 1742.2}, {"loc_id": 3667, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows", "count": 2, "x": -2176.0, "z": -1792.0, "px": 1676.6, "py": 1742.2}, {"loc_id": 3668, "loc_name": "WoodVillage1", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 2, "x": -1728.0, "z": -1024.0, "px": 1753.1, "py": 1873.2}, {"loc_id": 3669, "loc_name": "WoodVillage1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -4800.0, "z": 640.0, "px": 1228.8, "py": 2157.2}, {"loc_id": 3669, "loc_name": "WoodVillage1", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 2, "x": -4800.0, "z": 640.0, "px": 1228.8, "py": 2157.2}, {"loc_id": 3671, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows", "count": 2, "x": 2560.0, "z": -3200.0, "px": 2484.9, "py": 1501.9}, {"loc_id": 3672, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows (2)", "count": 2, "x": 3072.0, "z": -2688.0, "px": 2572.3, "py": 1589.2}, {"loc_id": 3673, "loc_name": "WoodVillage1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": 3264.0, "z": 2496.0, "px": 2605.1, "py": 2474.0}, {"loc_id": 3674, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": -4928.0, "z": 384.0, "px": 1207.0, "py": 2113.5}, {"loc_id": 3674, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows", "count": 2, "x": -4928.0, "z": 384.0, "px": 1207.0, "py": 2113.5}, {"loc_id": 3676, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows", "count": 2, "x": 896.0, "z": 3264.0, "px": 2200.9, "py": 2605.1}, {"loc_id": 3676, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows (1)", "count": 2, "x": 896.0, "z": 3264.0, "px": 2200.9, "py": 2605.1}, {"loc_id": 3676, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows (2)", "count": 2, "x": 896.0, "z": 3264.0, "px": 2200.9, "py": 2605.1}, {"loc_id": 3677, "loc_name": "WoodVillage1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 2, "x": -3712.0, "z": -2048.0, "px": 1414.5, "py": 1698.5}, {"loc_id": 3678, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows (1)", "count": 2, "x": -2752.0, "z": 1792.0, "px": 1578.3, "py": 2353.8}, {"loc_id": 3680, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": -7490.7, "z": 4796.9, "px": 769.6, "py": 2866.7}, {"loc_id": 3680, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -7490.7, "z": 4796.9, "px": 769.6, "py": 2866.7}, {"loc_id": 3681, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 2, "x": 1981.9, "z": 1210.0, "px": 2386.2, "py": 2254.5}, {"loc_id": 3681, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 1981.9, "z": 1210.0, "px": 2386.2, "py": 2254.5}, {"loc_id": 3687, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 60.5, "z": -1029.2, "px": 2058.3, "py": 1872.3}, {"loc_id": 3689, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 2756.7, "z": -3714.8, "px": 2518.5, "py": 1414.0}, {"loc_id": 3690, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 2, "x": 5637.1, "z": -893.0, "px": 3010.1, "py": 1895.6}, {"loc_id": 3690, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 5637.1, "z": -893.0, "px": 3010.1, "py": 1895.6}, {"loc_id": 3691, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -3460.7, "z": 6716.9, "px": 1457.4, "py": 3194.4}, {"loc_id": 3693, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 3969.6, "z": -444.6, "px": 2725.5, "py": 1972.1}, {"loc_id": 3694, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -572.7, "z": 582.5, "px": 1950.3, "py": 2147.4}, {"loc_id": 3696, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": -9145.4, "z": 3265.8, "px": 487.2, "py": 2605.4}, {"loc_id": 3696, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -9145.4, "z": 3265.8, "px": 487.2, "py": 2605.4}, {"loc_id": 3696, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -9145.4, "z": 3265.8, "px": 487.2, "py": 2605.4}, {"loc_id": 3697, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 6713.5, "z": 4869.0, "px": 3193.8, "py": 2879.0}, {"loc_id": 3697, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 6713.5, "z": 4869.0, "px": 3193.8, "py": 2879.0}, {"loc_id": 3700, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": -6919.8, "z": 2370.7, "px": 867.0, "py": 2452.6}, {"loc_id": 3701, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -8577.0, "z": -1985.8, "px": 584.2, "py": 1709.1}, {"loc_id": 3702, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 8057.5, "z": -2623.5, "px": 3423.1, "py": 1600.3}, {"loc_id": 3702, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 8057.5, "z": -2623.5, "px": 3423.1, "py": 1600.3}, {"loc_id": 3702, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 8057.5, "z": -2623.5, "px": 3423.1, "py": 1600.3}, {"loc_id": 3704, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 1728.8, "z": 6406.7, "px": 2343.0, "py": 3141.4}, {"loc_id": 3704, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 1728.8, "z": 6406.7, "px": 2343.0, "py": 3141.4}, {"loc_id": 3705, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -5948.8, "z": 4473.6, "px": 1032.7, "py": 2811.5}, {"loc_id": 3706, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -5254.2, "z": 378.8, "px": 1151.3, "py": 2112.6}, {"loc_id": 3708, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 5945.5, "z": -572.3, "px": 3062.7, "py": 1950.3}, {"loc_id": 3709, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 2939.3, "z": 381.0, "px": 2549.6, "py": 2113.0}, {"loc_id": 3712, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -3719.4, "z": 4217.5, "px": 1413.2, "py": 2767.8}, {"loc_id": 3713, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 2237.7, "z": 1601.7, "px": 2429.9, "py": 2321.4}, {"loc_id": 3714, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 8327.0, "z": -2117.3, "px": 3469.1, "py": 1686.6}, {"loc_id": 3716, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 7809.1, "z": -2757.9, "px": 3380.8, "py": 1577.3}, {"loc_id": 3717, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": -2362.6, "z": -69.7, "px": 1644.8, "py": 2036.1}, {"loc_id": 3717, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -2362.6, "z": -69.7, "px": 1644.8, "py": 2036.1}, {"loc_id": 3720, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 2234.2, "z": -1662.2, "px": 2429.3, "py": 1764.3}, {"loc_id": 3721, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 197.6, "z": -4409.8, "px": 2081.7, "py": 1295.4}, {"loc_id": 3723, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 1219.3, "z": -5368.6, "px": 2256.1, "py": 1131.8}, {"loc_id": 3724, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 8580.7, "z": -2168.7, "px": 3512.4, "py": 1677.9}, {"loc_id": 3725, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": -1732.3, "z": -4410.7, "px": 1752.4, "py": 1295.2}, {"loc_id": 3726, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 709.5, "z": 507.3, "px": 2169.1, "py": 2134.6}, {"loc_id": 3727, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 2051.3, "z": 3580.5, "px": 2398.1, "py": 2659.1}, {"loc_id": 3731, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 380.8, "z": 5241.2, "px": 2113.0, "py": 2942.5}, {"loc_id": 3731, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 380.8, "z": 5241.2, "px": 2113.0, "py": 2942.5}, {"loc_id": 3732, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 894.7, "z": 5126.4, "px": 2200.7, "py": 2922.9}, {"loc_id": 3733, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 3451.4, "z": 3584.6, "px": 2637.0, "py": 2659.8}, {"loc_id": 3734, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -3832.3, "z": -313.4, "px": 1394.0, "py": 1994.5}, {"loc_id": 3735, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -1984.4, "z": -4155.2, "px": 1709.3, "py": 1338.8}, {"loc_id": 3737, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 699.1, "z": 5376.2, "px": 2167.3, "py": 2965.5}, {"loc_id": 3738, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 5118.3, "z": 5370.0, "px": 2921.5, "py": 2964.5}, {"loc_id": 3738, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 5118.3, "z": 5370.0, "px": 2921.5, "py": 2964.5}, {"loc_id": 3739, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 7045.3, "z": -4227.9, "px": 3250.4, "py": 1326.4}, {"loc_id": 3742, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 1916.6, "z": -1155.5, "px": 2375.1, "py": 1850.8}, {"loc_id": 3743, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 2500.4, "z": -1413.7, "px": 2474.7, "py": 1806.7}, {"loc_id": 3745, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": -5823.3, "z": -192.9, "px": 1054.2, "py": 2015.1}, {"loc_id": 3745, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -5823.3, "z": -192.9, "px": 1054.2, "py": 2015.1}, {"loc_id": 3749, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 764.3, "z": -2429.7, "px": 2178.4, "py": 1633.3}, {"loc_id": 3752, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -8251.8, "z": -2047.4, "px": 639.7, "py": 1698.6}, {"loc_id": 3757, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 9466.6, "z": 1344.4, "px": 3663.6, "py": 2277.4}, {"loc_id": 3758, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 2043.5, "z": 891.3, "px": 2396.8, "py": 2200.1}, {"loc_id": 3758, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 2043.5, "z": 891.3, "px": 2396.8, "py": 2200.1}, {"loc_id": 3759, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 8001.0, "z": -2363.9, "px": 3413.5, "py": 1644.6}, {"loc_id": 3761, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 2617.2, "z": -3463.9, "px": 2494.7, "py": 1456.8}, {"loc_id": 3764, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": -9210.9, "z": 2749.0, "px": 476.0, "py": 2517.2}, {"loc_id": 3765, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -4349.8, "z": 1666.7, "px": 1305.6, "py": 2332.5}, {"loc_id": 3766, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": -8762.2, "z": -769.8, "px": 552.6, "py": 1916.6}, {"loc_id": 3766, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -8762.2, "z": -769.8, "px": 552.6, "py": 1916.6}, {"loc_id": 3767, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -3910.3, "z": -2556.5, "px": 1380.6, "py": 1611.7}, {"loc_id": 3770, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -1537.8, "z": -1788.4, "px": 1785.5, "py": 1742.8}, {"loc_id": 3772, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 2047.5, "z": -893.5, "px": 2397.4, "py": 1895.5}, {"loc_id": 3773, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -5755.6, "z": 4868.9, "px": 1065.7, "py": 2879.0}, {"loc_id": 3774, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 2496.5, "z": 5191.5, "px": 2474.1, "py": 2934.0}, {"loc_id": 3775, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 3011.2, "z": -2307.9, "px": 2561.9, "py": 1654.1}, {"loc_id": 3776, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 1080.6, "z": 5436.8, "px": 2232.4, "py": 2975.9}, {"loc_id": 3776, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 1080.6, "z": 5436.8, "px": 2232.4, "py": 2975.9}, {"loc_id": 3778, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 2238.2, "z": 5052.9, "px": 2430.0, "py": 2910.4}, {"loc_id": 3781, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 2876.8, "z": -5.6, "px": 2539.0, "py": 2047.0}, {"loc_id": 3781, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 2876.8, "z": -5.6, "px": 2539.0, "py": 2047.0}, {"loc_id": 3782, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 895.5, "z": -5562.6, "px": 2200.8, "py": 1098.6}, {"loc_id": 3783, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": -829.5, "z": -0.2, "px": 1906.4, "py": 2048.0}, {"loc_id": 3784, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -8321.6, "z": -1671.9, "px": 627.8, "py": 1762.7}, {"loc_id": 3785, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 6073.2, "z": -5959.7, "px": 3084.5, "py": 1030.9}, {"loc_id": 3785, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 6073.2, "z": -5959.7, "px": 3084.5, "py": 1030.9}, {"loc_id": 3786, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": -6713.9, "z": -4667.5, "px": 902.2, "py": 1251.4}, {"loc_id": 3787, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 4221.6, "z": -249.2, "px": 2768.5, "py": 2005.5}, {"loc_id": 3787, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 4221.6, "z": -249.2, "px": 2768.5, "py": 2005.5}, {"loc_id": 3788, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -7622.4, "z": -4869.7, "px": 747.1, "py": 1216.9}, {"loc_id": 3789, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": -1147.2, "z": -1093.0, "px": 1852.2, "py": 1861.5}, {"loc_id": 3789, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -1147.2, "z": -1093.0, "px": 1852.2, "py": 1861.5}, {"loc_id": 3790, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 8190.4, "z": 1.8, "px": 3445.8, "py": 2048.3}, {"loc_id": 3790, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 8190.4, "z": 1.8, "px": 3445.8, "py": 2048.3}, {"loc_id": 3791, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -3714.2, "z": 6916.4, "px": 1414.1, "py": 3228.4}, {"loc_id": 3793, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 9471.5, "z": 5.8, "px": 3664.5, "py": 2049.0}, {"loc_id": 3794, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 2878.4, "z": -4863.1, "px": 2539.2, "py": 1218.0}, {"loc_id": 3795, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 6850.4, "z": -3901.3, "px": 3217.1, "py": 1382.2}, {"loc_id": 3795, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 6850.4, "z": -3901.3, "px": 3217.1, "py": 1382.2}, {"loc_id": 3800, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 960.1, "z": 3394.0, "px": 2211.9, "py": 2627.2}, {"loc_id": 3807, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": -1275.9, "z": -5382.8, "px": 1830.2, "py": 1129.3}, {"loc_id": 3807, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -1275.9, "z": -5382.8, "px": 1830.2, "py": 1129.3}, {"loc_id": 3809, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 8769.6, "z": -1413.0, "px": 3544.7, "py": 1806.8}, {"loc_id": 3810, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 2, "x": 7425.5, "z": -3262.8, "px": 3315.3, "py": 1491.1}, {"loc_id": 3810, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 7425.5, "z": -3262.8, "px": 3315.3, "py": 1491.1}, {"loc_id": 3811, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 1413.4, "z": -2500.8, "px": 2289.2, "py": 1621.2}, {"loc_id": 3812, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -5566.6, "z": -5180.0, "px": 1098.0, "py": 1163.9}, {"loc_id": 3813, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -826.8, "z": 512.6, "px": 1906.9, "py": 2135.5}, {"loc_id": 3814, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": -8316.8, "z": -1210.1, "px": 628.6, "py": 1841.5}, {"loc_id": 3815, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 4288.4, "z": -963.1, "px": 2779.9, "py": 1883.6}, {"loc_id": 3817, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 9348.1, "z": 321.7, "px": 3643.4, "py": 2102.9}, {"loc_id": 3819, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 5374.1, "z": -962.4, "px": 2965.2, "py": 1883.8}, {"loc_id": 3820, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": -9158.0, "z": 3524.6, "px": 485.0, "py": 2649.5}, {"loc_id": 3821, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": -6919.7, "z": 260.0, "px": 867.0, "py": 2092.4}, {"loc_id": 3824, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -5177.3, "z": 708.7, "px": 1164.4, "py": 2169.0}, {"loc_id": 3825, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -9337.1, "z": -2692.8, "px": 454.5, "py": 1588.4}, {"loc_id": 3826, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 2173.8, "z": 3842.8, "px": 2419.0, "py": 2703.8}, {"loc_id": 3827, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 5115.8, "z": 2815.4, "px": 2921.1, "py": 2528.5}, {"loc_id": 3829, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 2566.7, "z": 323.5, "px": 2486.1, "py": 2103.2}, {"loc_id": 3829, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 2566.7, "z": 323.5, "px": 2486.1, "py": 2103.2}, {"loc_id": 3831, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -3128.5, "z": -1921.5, "px": 1514.1, "py": 1720.1}, {"loc_id": 3832, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": -1988.7, "z": -4732.3, "px": 1708.6, "py": 1240.4}, {"loc_id": 3833, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 8258.3, "z": -4158.8, "px": 3457.4, "py": 1338.2}, {"loc_id": 3834, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 3704.4, "z": 3395.4, "px": 2680.2, "py": 2627.5}, {"loc_id": 3834, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 3704.4, "z": 3395.4, "px": 2680.2, "py": 2627.5}, {"loc_id": 3838, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 4282.8, "z": 6715.4, "px": 2778.9, "py": 3194.1}, {"loc_id": 3839, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 1731.9, "z": -826.9, "px": 2343.6, "py": 1906.9}, {"loc_id": 3840, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": -5499.1, "z": -6213.3, "px": 1109.5, "py": 987.6}, {"loc_id": 3840, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -5499.1, "z": -6213.3, "px": 1109.5, "py": 987.6}, {"loc_id": 3842, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": -955.8, "z": 259.9, "px": 1884.9, "py": 2092.4}, {"loc_id": 3848, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 7865.7, "z": -3013.2, "px": 3390.4, "py": 1533.7}, {"loc_id": 3850, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 771.1, "z": -2689.5, "px": 2179.6, "py": 1589.0}, {"loc_id": 3850, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 771.1, "z": -2689.5, "px": 2179.6, "py": 1589.0}, {"loc_id": 3850, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 771.1, "z": -2689.5, "px": 2179.6, "py": 1589.0}, {"loc_id": 3851, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -1339.4, "z": -1600.6, "px": 1819.4, "py": 1774.8}, {"loc_id": 3853, "loc_name": "TrollCave02", "item": "Pickable: MushroomYellow", "count": 2, "x": 9786.0, "z": -1543.8, "px": 3718.1, "py": 1784.5}, {"loc_id": 3853, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 2, "x": 9786.0, "z": -1543.8, "px": 3718.1, "py": 1784.5}, {"loc_id": 3854, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 7613.6, "z": 3776.7, "px": 3347.4, "py": 2692.6}, {"loc_id": 3856, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 5306.9, "z": 6399.7, "px": 2953.7, "py": 3140.2}, {"loc_id": 3857, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 6782.9, "z": 4614.1, "px": 3205.6, "py": 2835.5}, {"loc_id": 4058, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": -7701.6, "z": -2191.1, "px": 733.6, "py": 1674.1}, {"loc_id": 4060, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": 4108.7, "z": -1343.5, "px": 2749.2, "py": 1818.7}, {"loc_id": 4061, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": -149.5, "z": 889.9, "px": 2022.5, "py": 2199.9}, {"loc_id": 4064, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": -9040.7, "z": 2899.2, "px": 505.1, "py": 2542.8}, {"loc_id": 4065, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": 2101.9, "z": -1221.5, "px": 2406.7, "py": 1839.5}, {"loc_id": 4070, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": -2103.3, "z": 1663.5, "px": 1689.0, "py": 2331.9}, {"loc_id": 4075, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": -8775.3, "z": -466.1, "px": 550.3, "py": 1968.5}, {"loc_id": 4077, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": 3184.2, "z": 118.7, "px": 2591.4, "py": 2068.3}, {"loc_id": 4078, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": 1015.4, "z": 4460.9, "px": 2221.3, "py": 2809.3}, {"loc_id": 4080, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": 8338.7, "z": -2028.6, "px": 3471.1, "py": 1701.8}, {"loc_id": 4081, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": -1224.9, "z": -5381.7, "px": 1839.0, "py": 1129.5}, {"loc_id": 4083, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": -5704.5, "z": 5013.0, "px": 1074.4, "py": 2903.6}, {"loc_id": 4084, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": 8145.7, "z": -528.7, "px": 3438.2, "py": 1957.8}, {"loc_id": 4085, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": -5614.6, "z": -1834.6, "px": 1089.8, "py": 1734.9}, {"loc_id": 4086, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": -9281.1, "z": -2797.0, "px": 464.0, "py": 1570.6}, {"loc_id": 4089, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": -7422.6, "z": 4285.7, "px": 781.2, "py": 2779.4}, {"loc_id": 4092, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": -9674.9, "z": -274.1, "px": 396.8, "py": 2001.2}, {"loc_id": 4094, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": -4291.9, "z": 1873.9, "px": 1315.5, "py": 2367.8}, {"loc_id": 4096, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": 6033.0, "z": -5803.2, "px": 3077.6, "py": 1057.6}, {"loc_id": 4102, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": -4781.0, "z": 700.3, "px": 1232.0, "py": 2167.5}, {"loc_id": 4106, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": 7410.7, "z": 1351.2, "px": 3312.8, "py": 2278.6}, {"loc_id": 4107, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 2, "x": -8912.5, "z": 3249.2, "px": 526.9, "py": 2602.5}, {"loc_id": 4108, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 8504.1, "z": -1928.2, "px": 3499.4, "py": 1718.9}, {"loc_id": 4110, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 2, "x": -3637.8, "z": 4362.6, "px": 1427.1, "py": 2792.6}, {"loc_id": 4110, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -3637.8, "z": 4362.6, "px": 1427.1, "py": 2792.6}, {"loc_id": 4111, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 5448.4, "z": -1157.3, "px": 2977.9, "py": 1850.5}, {"loc_id": 4112, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 2, "x": 513.6, "z": 5365.1, "px": 2135.7, "py": 2963.6}, {"loc_id": 4113, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 2939.2, "z": -125.2, "px": 2549.6, "py": 2026.6}, {"loc_id": 4114, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -8966.8, "z": 2952.0, "px": 517.7, "py": 2551.8}, {"loc_id": 4116, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -1589.1, "z": -1726.7, "px": 1776.8, "py": 1753.3}, {"loc_id": 4116, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -1589.1, "z": -1726.7, "px": 1776.8, "py": 1753.3}, {"loc_id": 4117, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 2, "x": -4740.3, "z": 5570.9, "px": 1239.0, "py": 2998.8}, {"loc_id": 4118, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -9206.7, "z": 3189.3, "px": 476.7, "py": 2592.3}, {"loc_id": 4121, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 2, "x": 3272.7, "z": -4548.3, "px": 2606.5, "py": 1271.8}, {"loc_id": 4122, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 3384.6, "z": -2614.5, "px": 2625.6, "py": 1601.8}, {"loc_id": 4124, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 1994.9, "z": 1141.6, "px": 2388.5, "py": 2242.8}, {"loc_id": 4125, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -7167.7, "z": 2685.6, "px": 824.7, "py": 2506.3}, {"loc_id": 4128, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -4281.1, "z": 1733.4, "px": 1317.4, "py": 2343.8}, {"loc_id": 4129, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -6527.9, "z": 5445.1, "px": 933.9, "py": 2977.3}, {"loc_id": 4130, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 4938.7, "z": -2114.9, "px": 2890.9, "py": 1687.1}, {"loc_id": 4132, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 1077.3, "z": -5511.5, "px": 2231.9, "py": 1107.4}, {"loc_id": 4133, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 2, "x": 2500.2, "z": 1219.2, "px": 2474.7, "py": 2256.1}, {"loc_id": 4135, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 2434.5, "z": 5052.4, "px": 2463.5, "py": 2910.3}, {"loc_id": 4136, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 2, "x": 6022.3, "z": -5886.6, "px": 3075.8, "py": 1043.4}, {"loc_id": 4136, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 6022.3, "z": -5886.6, "px": 3075.8, "py": 1043.4}, {"loc_id": 4137, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 1785.0, "z": -1220.8, "px": 2352.6, "py": 1839.7}, {"loc_id": 4138, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -3385.4, "z": 4539.1, "px": 1470.2, "py": 2822.7}, {"loc_id": 4138, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 2, "x": -3385.4, "z": 4539.1, "px": 1470.2, "py": 2822.7}, {"loc_id": 4138, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -3385.4, "z": 4539.1, "px": 1470.2, "py": 2822.7}, {"loc_id": 4140, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 2, "x": 5192.8, "z": -2238.7, "px": 2934.2, "py": 1665.9}, {"loc_id": 4141, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -8380.7, "z": -710.6, "px": 617.7, "py": 1926.7}, {"loc_id": 4141, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -8380.7, "z": -710.6, "px": 617.7, "py": 1926.7}, {"loc_id": 4141, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 2, "x": -8380.7, "z": -710.6, "px": 617.7, "py": 1926.7}, {"loc_id": 4142, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -2429.2, "z": -118.6, "px": 1633.4, "py": 2027.8}, {"loc_id": 4143, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 3581.2, "z": 3573.3, "px": 2659.2, "py": 2657.8}, {"loc_id": 4144, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 2, "x": 7544.4, "z": -2691.5, "px": 3335.6, "py": 1588.7}, {"loc_id": 4145, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 2, "x": 761.7, "z": 262.0, "px": 2178.0, "py": 2092.7}, {"loc_id": 4146, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 2298.1, "z": 6275.1, "px": 2440.2, "py": 3119.0}, {"loc_id": 4148, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 2038.7, "z": -1161.5, "px": 2395.9, "py": 1849.8}, {"loc_id": 4149, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 3274.6, "z": -2807.2, "px": 2606.9, "py": 1568.9}, {"loc_id": 4149, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 3274.6, "z": -2807.2, "px": 2606.9, "py": 1568.9}, {"loc_id": 4151, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 831.2, "z": -2237.7, "px": 2189.9, "py": 1666.1}, {"loc_id": 4151, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 831.2, "z": -2237.7, "px": 2189.9, "py": 1666.1}, {"loc_id": 4151, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 2, "x": 831.2, "z": -2237.7, "px": 2189.9, "py": 1666.1}, {"loc_id": 4152, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 5113.9, "z": 5255.2, "px": 2920.8, "py": 2944.9}, {"loc_id": 4153, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -6601.9, "z": 571.6, "px": 921.3, "py": 2145.6}, {"loc_id": 4154, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -1339.3, "z": -1343.6, "px": 1819.4, "py": 1818.7}, {"loc_id": 4155, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 5321.9, "z": 4856.1, "px": 2956.3, "py": 2876.8}, {"loc_id": 4156, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 2, "x": 6653.1, "z": 4920.0, "px": 3183.5, "py": 2887.7}, {"loc_id": 4156, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 6653.1, "z": 4920.0, "px": 3183.5, "py": 2887.7}, {"loc_id": 4157, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -9159.0, "z": 3018.4, "px": 484.9, "py": 2563.1}, {"loc_id": 4157, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -9159.0, "z": 3018.4, "px": 484.9, "py": 2563.1}, {"loc_id": 4158, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 1157.1, "z": -5302.3, "px": 2245.5, "py": 1143.1}, {"loc_id": 4159, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 2, "x": -2231.0, "z": 4486.8, "px": 1667.2, "py": 2813.7}, {"loc_id": 4159, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -2231.0, "z": 4486.8, "px": 1667.2, "py": 2813.7}, {"loc_id": 4160, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -8074.3, "z": 376.3, "px": 670.0, "py": 2112.2}, {"loc_id": 4162, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 2, "x": 7496.6, "z": -4341.8, "px": 3327.4, "py": 1307.0}, {"loc_id": 4163, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 2, "x": -1787.8, "z": -4426.4, "px": 1742.9, "py": 1292.6}, {"loc_id": 4166, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 5699.1, "z": 1534.6, "px": 3020.6, "py": 2309.9}, {"loc_id": 4168, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 2, "x": 8825.5, "z": -3830.4, "px": 3554.2, "py": 1394.3}, {"loc_id": 4171, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 2, "x": -4031.3, "z": -2490.3, "px": 1360.0, "py": 1623.0}, {"loc_id": 4171, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -4031.3, "z": -2490.3, "px": 1360.0, "py": 1623.0}, {"loc_id": 4172, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -8070.8, "z": 517.7, "px": 670.6, "py": 2136.4}, {"loc_id": 4172, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -8070.8, "z": 517.7, "px": 670.6, "py": 2136.4}, {"loc_id": 4172, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -8070.8, "z": 517.7, "px": 670.6, "py": 2136.4}, {"loc_id": 4172, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -8070.8, "z": 517.7, "px": 670.6, "py": 2136.4}, {"loc_id": 4173, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 4153.2, "z": 3769.4, "px": 2756.8, "py": 2691.3}, {"loc_id": 4174, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 1161.6, "z": 5507.9, "px": 2246.2, "py": 2988.0}, {"loc_id": 4175, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -1674.2, "z": 4799.8, "px": 1762.3, "py": 2867.2}, {"loc_id": 4175, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -1674.2, "z": 4799.8, "px": 1762.3, "py": 2867.2}, {"loc_id": 4176, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 899.2, "z": 3392.5, "px": 2201.5, "py": 2627.0}, {"loc_id": 4177, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -3203.0, "z": 4417.2, "px": 1501.4, "py": 2801.9}, {"loc_id": 4177, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -3203.0, "z": 4417.2, "px": 1501.4, "py": 2801.9}, {"loc_id": 4177, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 2, "x": -3203.0, "z": 4417.2, "px": 1501.4, "py": 2801.9}, {"loc_id": 4179, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 2, "x": -7242.2, "z": -4937.2, "px": 812.0, "py": 1205.4}, {"loc_id": 4180, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 1992.1, "z": -4477.5, "px": 2388.0, "py": 1283.8}, {"loc_id": 4181, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 842.8, "z": -3.9, "px": 2191.8, "py": 2047.3}, {"loc_id": 4182, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 3142.6, "z": -1276.7, "px": 2584.3, "py": 1830.1}, {"loc_id": 4183, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -7557.0, "z": -4745.1, "px": 758.3, "py": 1238.2}, {"loc_id": 4183, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 2, "x": -7557.0, "z": -4745.1, "px": 758.3, "py": 1238.2}, {"loc_id": 4183, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -7557.0, "z": -4745.1, "px": 758.3, "py": 1238.2}, {"loc_id": 4184, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -1341.5, "z": -1738.7, "px": 1819.1, "py": 1751.3}, {"loc_id": 4185, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 2, "x": -5579.0, "z": -4997.9, "px": 1095.9, "py": 1195.0}, {"loc_id": 4185, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -5579.0, "z": -4997.9, "px": 1095.9, "py": 1195.0}, {"loc_id": 4187, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 2357.9, "z": -1343.9, "px": 2450.4, "py": 1818.6}, {"loc_id": 4189, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": 2811.4, "z": -4794.0, "px": 2527.8, "py": 1229.8}, {"loc_id": 4190, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 2058.7, "z": 1015.3, "px": 2399.4, "py": 2221.3}, {"loc_id": 4191, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 3893.5, "z": 4862.5, "px": 2712.5, "py": 2877.9}, {"loc_id": 4192, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 7925.4, "z": -2948.4, "px": 3400.6, "py": 1544.8}, {"loc_id": 4194, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 1215.8, "z": -5496.9, "px": 2255.5, "py": 1109.9}, {"loc_id": 4195, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 3199.5, "z": -2569.3, "px": 2594.0, "py": 1609.5}, {"loc_id": 4195, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 3199.5, "z": -2569.3, "px": 2594.0, "py": 1609.5}, {"loc_id": 4196, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 1976.2, "z": -957.5, "px": 2385.3, "py": 1884.6}, {"loc_id": 4199, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 2, "x": 2884.2, "z": -2239.6, "px": 2540.2, "py": 1665.8}, {"loc_id": 4201, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 2, "x": 1916.7, "z": 7036.3, "px": 2375.1, "py": 3248.9}, {"loc_id": 4203, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 2238.2, "z": 1021.5, "px": 2430.0, "py": 2222.3}, {"loc_id": 4205, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -7223.4, "z": -4729.8, "px": 815.2, "py": 1240.8}, {"loc_id": 4206, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 7049.9, "z": -4285.7, "px": 3251.2, "py": 1316.6}, {"loc_id": 4207, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 9654.2, "z": 1404.6, "px": 3695.7, "py": 2287.7}, {"loc_id": 4207, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 9654.2, "z": 1404.6, "px": 3695.7, "py": 2287.7}, {"loc_id": 4207, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 9654.2, "z": 1404.6, "px": 3695.7, "py": 2287.7}, {"loc_id": 4208, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 2693.9, "z": -3652.1, "px": 2507.8, "py": 1424.7}, {"loc_id": 4208, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 2693.9, "z": -3652.1, "px": 2507.8, "py": 1424.7}, {"loc_id": 4209, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 4603.6, "z": -5193.7, "px": 2833.7, "py": 1161.6}, {"loc_id": 4210, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 2, "x": -2503.3, "z": 1718.0, "px": 1620.8, "py": 2341.2}, {"loc_id": 4210, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -2503.3, "z": 1718.0, "px": 1620.8, "py": 2341.2}, {"loc_id": 4211, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 1342.8, "z": -5442.2, "px": 2277.2, "py": 1119.2}, {"loc_id": 4212, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 2, "x": -5377.4, "z": -2041.4, "px": 1130.3, "py": 1699.6}, {"loc_id": 4212, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -5377.4, "z": -2041.4, "px": 1130.3, "py": 1699.6}, {"loc_id": 4214, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 2, "x": 8389.3, "z": 330.5, "px": 3479.8, "py": 2104.4}, {"loc_id": 4214, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 8389.3, "z": 330.5, "px": 3479.8, "py": 2104.4}, {"loc_id": 4214, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 8389.3, "z": 330.5, "px": 3479.8, "py": 2104.4}, {"loc_id": 4215, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -3967.1, "z": -2613.4, "px": 1370.9, "py": 1602.0}, {"loc_id": 4218, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -2378.8, "z": 4597.9, "px": 1642.0, "py": 2832.7}, {"loc_id": 4220, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 8705.3, "z": -3714.4, "px": 3533.7, "py": 1414.1}, {"loc_id": 4221, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -4150.3, "z": -117.1, "px": 1339.7, "py": 2028.0}, {"loc_id": 4222, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 2, "x": 833.8, "z": -2569.4, "px": 2190.3, "py": 1609.5}, {"loc_id": 4222, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 833.8, "z": -2569.4, "px": 2190.3, "py": 1609.5}, {"loc_id": 4224, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 1013.1, "z": 5697.9, "px": 2220.9, "py": 3020.4}, {"loc_id": 4226, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 8135.3, "z": -2488.2, "px": 3436.4, "py": 1623.3}, {"loc_id": 4227, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 1924.7, "z": -830.3, "px": 2376.5, "py": 1906.3}, {"loc_id": 4227, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 1924.7, "z": -830.3, "px": 2376.5, "py": 1906.3}, {"loc_id": 4227, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 1924.7, "z": -830.3, "px": 2376.5, "py": 1906.3}, {"loc_id": 4230, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -7741.6, "z": 4344.6, "px": 726.8, "py": 2789.5}, {"loc_id": 4230, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -7741.6, "z": 4344.6, "px": 726.8, "py": 2789.5}, {"loc_id": 4231, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 5060.5, "z": -2175.6, "px": 2911.7, "py": 1676.7}, {"loc_id": 4232, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 5628.7, "z": -1013.6, "px": 3008.6, "py": 1875.0}, {"loc_id": 4234, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 2241.6, "z": 5178.2, "px": 2430.6, "py": 2931.7}, {"loc_id": 4236, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -5256.6, "z": 5576.3, "px": 1150.9, "py": 2999.7}, {"loc_id": 4237, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 2, "x": 8254.8, "z": -1992.0, "px": 3456.8, "py": 1708.0}, {"loc_id": 4238, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 9473.5, "z": 201.9, "px": 3664.8, "py": 2082.5}, {"loc_id": 4238, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 9473.5, "z": 201.9, "px": 3664.8, "py": 2082.5}, {"loc_id": 4239, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 1726.7, "z": -4362.4, "px": 2342.7, "py": 1303.5}, {"loc_id": 4240, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -326.5, "z": -4228.1, "px": 1992.3, "py": 1326.4}, {"loc_id": 4240, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -326.5, "z": -4228.1, "px": 1992.3, "py": 1326.4}, {"loc_id": 4241, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 2, "x": 6474.4, "z": 4791.9, "px": 3153.0, "py": 2865.8}, {"loc_id": 4241, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 6474.4, "z": 4791.9, "px": 3153.0, "py": 2865.8}, {"loc_id": 4242, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 2, "x": -2167.4, "z": 702.4, "px": 1678.1, "py": 2167.9}, {"loc_id": 4246, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -5832.1, "z": 1476.6, "px": 1052.7, "py": 2300.0}, {"loc_id": 4247, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 2744.6, "z": 5254.7, "px": 2516.4, "py": 2944.8}, {"loc_id": 4248, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 2, "x": -5761.9, "z": 1610.3, "px": 1064.6, "py": 2322.8}, {"loc_id": 4250, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -4867.6, "z": 5757.0, "px": 1217.3, "py": 3030.5}, {"loc_id": 4250, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -4867.6, "z": 5757.0, "px": 1217.3, "py": 3030.5}, {"loc_id": 4252, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -6152.8, "z": 2296.4, "px": 997.9, "py": 2439.9}, {"loc_id": 4253, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -7557.9, "z": -1993.0, "px": 758.1, "py": 1707.9}, {"loc_id": 4253, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": -7557.9, "z": -1993.0, "px": 758.1, "py": 1707.9}, {"loc_id": 4254, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 2185.2, "z": 1205.6, "px": 2420.9, "py": 2253.8}, {"loc_id": 4254, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 2185.2, "z": 1205.6, "px": 2420.9, "py": 2253.8}, {"loc_id": 4255, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -7035.7, "z": 2438.1, "px": 847.2, "py": 2464.1}, {"loc_id": 4257, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -649.4, "z": -6517.8, "px": 1937.2, "py": 935.6}, {"loc_id": 4257, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": -649.4, "z": -6517.8, "px": 1937.2, "py": 935.6}, {"loc_id": 4258, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -1079.5, "z": -5820.3, "px": 1863.8, "py": 1054.7}, {"loc_id": 4258, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 2, "x": -1079.5, "z": -5820.3, "px": 1863.8, "py": 1054.7}, {"loc_id": 4260, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -444.3, "z": -4292.0, "px": 1972.2, "py": 1315.5}, {"loc_id": 4260, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -444.3, "z": -4292.0, "px": 1972.2, "py": 1315.5}, {"loc_id": 4261, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 2549.6, "z": -3462.5, "px": 2483.1, "py": 1457.1}, {"loc_id": 4261, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 2549.6, "z": -3462.5, "px": 2483.1, "py": 1457.1}, {"loc_id": 4263, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 2, "x": -5571.4, "z": 5003.0, "px": 1097.1, "py": 2901.8}, {"loc_id": 4264, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 8056.3, "z": -2882.2, "px": 3422.9, "py": 1556.1}, {"loc_id": 4265, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 2375.4, "z": -1605.8, "px": 2453.4, "py": 1773.9}, {"loc_id": 4265, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": 2375.4, "z": -1605.8, "px": 2453.4, "py": 1773.9}, {"loc_id": 4265, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 2375.4, "z": -1605.8, "px": 2453.4, "py": 1773.9}, {"loc_id": 4266, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 632.8, "z": 5047.1, "px": 2156.0, "py": 2909.4}, {"loc_id": 4268, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 3143.0, "z": -2424.5, "px": 2584.4, "py": 1634.2}, {"loc_id": 4269, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -1795.6, "z": 3065.6, "px": 1741.6, "py": 2571.2}, {"loc_id": 4269, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -1795.6, "z": 3065.6, "px": 1741.6, "py": 2571.2}, {"loc_id": 4270, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -3338.7, "z": -2428.5, "px": 1478.2, "py": 1633.5}, {"loc_id": 4271, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 2, "x": -6662.5, "z": 5429.6, "px": 910.9, "py": 2974.7}, {"loc_id": 4272, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -9543.9, "z": -2625.6, "px": 419.2, "py": 1599.9}, {"loc_id": 4273, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 1912.7, "z": 6784.9, "px": 2374.4, "py": 3206.0}, {"loc_id": 4273, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 2, "x": 1912.7, "z": 6784.9, "px": 2374.4, "py": 3206.0}, {"loc_id": 4274, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -9671.9, "z": -2564.5, "px": 397.3, "py": 1610.3}, {"loc_id": 4274, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -9671.9, "z": -2564.5, "px": 397.3, "py": 1610.3}, {"loc_id": 4275, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -4100.0, "z": -2235.3, "px": 1348.3, "py": 1666.5}, {"loc_id": 4275, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -4100.0, "z": -2235.3, "px": 1348.3, "py": 1666.5}, {"loc_id": 4278, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 2569.6, "z": 4988.7, "px": 2486.5, "py": 2899.4}, {"loc_id": 4279, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 3849.9, "z": 3584.6, "px": 2705.0, "py": 2659.8}, {"loc_id": 4280, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -2302.1, "z": -3017.9, "px": 1655.1, "py": 1532.9}, {"loc_id": 4281, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -1027.4, "z": -5060.9, "px": 1872.7, "py": 1184.3}, {"loc_id": 4283, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 2, "x": -1219.6, "z": -1141.5, "px": 1839.9, "py": 1853.2}, {"loc_id": 4283, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -1219.6, "z": -1141.5, "px": 1839.9, "py": 1853.2}, {"loc_id": 4285, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -9146.8, "z": -1529.4, "px": 486.9, "py": 1787.0}, {"loc_id": 4286, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 2, "x": 772.0, "z": 5308.1, "px": 2179.8, "py": 2953.9}, {"loc_id": 4287, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -4214.3, "z": -2304.7, "px": 1328.8, "py": 1654.7}, {"loc_id": 4288, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 4550.6, "z": -4986.1, "px": 2824.6, "py": 1197.0}, {"loc_id": 4289, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 7161.4, "z": -4478.0, "px": 3270.2, "py": 1283.8}, {"loc_id": 4290, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -8455.7, "z": -1866.4, "px": 604.9, "py": 1729.5}, {"loc_id": 4291, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -9346.4, "z": 3080.4, "px": 452.9, "py": 2573.7}, {"loc_id": 4291, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -9346.4, "z": 3080.4, "px": 452.9, "py": 2573.7}, {"loc_id": 4291, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 2, "x": -9346.4, "z": 3080.4, "px": 452.9, "py": 2573.7}, {"loc_id": 4292, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 1531.7, "z": 6326.6, "px": 2309.4, "py": 3127.7}, {"loc_id": 4292, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 1531.7, "z": 6326.6, "px": 2309.4, "py": 3127.7}, {"loc_id": 4293, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 2745.6, "z": 455.2, "px": 2516.6, "py": 2125.7}, {"loc_id": 4294, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -7735.8, "z": -2246.0, "px": 727.8, "py": 1664.7}, {"loc_id": 4295, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -8200.0, "z": 2570.1, "px": 648.5, "py": 2486.6}, {"loc_id": 4295, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -8200.0, "z": 2570.1, "px": 648.5, "py": 2486.6}, {"loc_id": 4295, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -8200.0, "z": 2570.1, "px": 648.5, "py": 2486.6}, {"loc_id": 4296, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -2248.7, "z": 1737.9, "px": 1664.2, "py": 2344.6}, {"loc_id": 4296, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": -2248.7, "z": 1737.9, "px": 1664.2, "py": 2344.6}, {"loc_id": 4297, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 968.5, "z": 5317.9, "px": 2213.3, "py": 2955.6}, {"loc_id": 4298, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 6791.1, "z": 4738.8, "px": 3207.0, "py": 2856.8}, {"loc_id": 4299, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 2947.0, "z": 3833.6, "px": 2551.0, "py": 2702.3}, {"loc_id": 4300, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 7413.3, "z": -4476.7, "px": 3313.2, "py": 1284.0}, {"loc_id": 4300, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 7413.3, "z": -4476.7, "px": 3313.2, "py": 1284.0}, {"loc_id": 4300, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 7413.3, "z": -4476.7, "px": 3313.2, "py": 1284.0}, {"loc_id": 4301, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 2058.1, "z": -834.7, "px": 2399.2, "py": 1905.5}, {"loc_id": 4301, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 2058.1, "z": -834.7, "px": 2399.2, "py": 1905.5}, {"loc_id": 4303, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -516.3, "z": 325.0, "px": 1959.9, "py": 2103.5}, {"loc_id": 4303, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -516.3, "z": 325.0, "px": 1959.9, "py": 2103.5}, {"loc_id": 4304, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 2, "x": 9.6, "z": -4220.6, "px": 2049.6, "py": 1327.7}, {"loc_id": 4306, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 3400.3, "z": -2175.3, "px": 2628.3, "py": 1676.7}, {"loc_id": 4307, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 5049.3, "z": 3338.7, "px": 2909.7, "py": 2617.8}, {"loc_id": 4307, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 2, "x": 5049.3, "z": 3338.7, "px": 2909.7, "py": 2617.8}, {"loc_id": 4308, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 5503.2, "z": -2502.2, "px": 2987.2, "py": 1621.0}, {"loc_id": 4308, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 5503.2, "z": -2502.2, "px": 2987.2, "py": 1621.0}, {"loc_id": 4310, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -1786.0, "z": 4667.8, "px": 1743.2, "py": 2844.6}, {"loc_id": 4310, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": -1786.0, "z": 4667.8, "px": 1743.2, "py": 2844.6}, {"loc_id": 4311, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 2953.2, "z": -2112.1, "px": 2552.0, "py": 1687.5}, {"loc_id": 4315, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 7231.3, "z": 1270.3, "px": 3282.1, "py": 2264.8}, {"loc_id": 4316, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 2, "x": 7689.0, "z": -3067.6, "px": 3360.3, "py": 1524.5}, {"loc_id": 4316, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 7689.0, "z": -3067.6, "px": 3360.3, "py": 1524.5}, {"loc_id": 4317, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 2230.8, "z": 1097.7, "px": 2428.7, "py": 2235.3}, {"loc_id": 4319, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 2298.7, "z": -522.1, "px": 2440.3, "py": 1958.9}, {"loc_id": 4320, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 1529.8, "z": -6332.0, "px": 2309.1, "py": 967.3}, {"loc_id": 4321, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 2, "x": -9207.0, "z": 3143.0, "px": 476.7, "py": 2584.4}, {"loc_id": 4322, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -1535.3, "z": -1858.3, "px": 1786.0, "py": 1730.9}, {"loc_id": 4322, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -1535.3, "z": -1858.3, "px": 1786.0, "py": 1730.9}, {"loc_id": 4323, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -5815.7, "z": 4610.4, "px": 1055.5, "py": 2834.8}, {"loc_id": 4324, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 3912.6, "z": -507.5, "px": 2715.8, "py": 1961.4}, {"loc_id": 4325, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 2, "x": -8960.4, "z": 3145.3, "px": 518.8, "py": 2584.8}, {"loc_id": 4325, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -8960.4, "z": 3145.3, "px": 518.8, "py": 2584.8}, {"loc_id": 4325, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -8960.4, "z": 3145.3, "px": 518.8, "py": 2584.8}, {"loc_id": 4325, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -8960.4, "z": 3145.3, "px": 518.8, "py": 2584.8}, {"loc_id": 4326, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 710.8, "z": 5309.7, "px": 2169.3, "py": 2954.2}, {"loc_id": 4326, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 2, "x": 710.8, "z": 5309.7, "px": 2169.3, "py": 2954.2}, {"loc_id": 4327, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 959.4, "z": 5365.3, "px": 2211.7, "py": 2963.7}, {"loc_id": 4328, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": -3191.1, "z": 6518.2, "px": 1503.4, "py": 3160.4}, {"loc_id": 4329, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 2, "x": 7222.2, "z": -4105.2, "px": 3280.6, "py": 1347.4}, {"loc_id": 4329, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 7222.2, "z": -4105.2, "px": 3280.6, "py": 1347.4}, {"loc_id": 4330, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -7228.8, "z": -1924.0, "px": 814.3, "py": 1719.6}, {"loc_id": 4331, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -7416.6, "z": 4353.4, "px": 782.2, "py": 2791.0}, {"loc_id": 4332, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": -9217.9, "z": -2808.8, "px": 474.8, "py": 1568.6}, {"loc_id": 4333, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -7349.3, "z": -1663.5, "px": 793.7, "py": 1764.1}, {"loc_id": 4335, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 2, "x": -2042.7, "z": -5630.1, "px": 1699.4, "py": 1087.1}, {"loc_id": 4336, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 2820.0, "z": -4873.7, "px": 2529.3, "py": 1216.2}, {"loc_id": 4339, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 566.2, "z": 5367.6, "px": 2144.6, "py": 2964.1}, {"loc_id": 4340, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": -5185.9, "z": 330.5, "px": 1162.9, "py": 2104.4}, {"loc_id": 4342, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -8323.5, "z": -1738.5, "px": 627.5, "py": 1751.3}, {"loc_id": 4343, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 3840.5, "z": 1278.9, "px": 2703.4, "py": 2266.3}, {"loc_id": 4344, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -9541.9, "z": -313.4, "px": 419.5, "py": 1994.5}, {"loc_id": 4345, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 2, "x": 2618.7, "z": -3525.7, "px": 2494.9, "py": 1446.3}, {"loc_id": 4345, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 2618.7, "z": -3525.7, "px": 2494.9, "py": 1446.3}, {"loc_id": 4346, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 5045.5, "z": 2760.5, "px": 2909.1, "py": 2519.1}, {"loc_id": 4346, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 5045.5, "z": 2760.5, "px": 2909.1, "py": 2519.1}, {"loc_id": 4349, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 2, "x": 3638.2, "z": 3256.7, "px": 2668.9, "py": 2603.8}, {"loc_id": 4350, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": -5947.4, "z": 1598.8, "px": 1033.0, "py": 2320.9}, {"loc_id": 4351, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -6072.7, "z": 1407.4, "px": 1011.6, "py": 2288.2}, {"loc_id": 4351, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": -6072.7, "z": 1407.4, "px": 1011.6, "py": 2288.2}, {"loc_id": 4353, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": -3525.6, "z": 6778.0, "px": 1446.3, "py": 3204.8}, {"loc_id": 4354, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -253.6, "z": -4213.8, "px": 2004.7, "py": 1328.8}, {"loc_id": 4355, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 2367.4, "z": 1284.3, "px": 2452.0, "py": 2267.2}, {"loc_id": 4355, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 2367.4, "z": 1284.3, "px": 2452.0, "py": 2267.2}, {"loc_id": 4356, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 2, "x": 4296.6, "z": 6795.0, "px": 2781.3, "py": 3207.7}, {"loc_id": 4357, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 7558.7, "z": -2818.9, "px": 3338.0, "py": 1566.9}, {"loc_id": 4359, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -568.3, "z": 512.2, "px": 1951.0, "py": 2135.4}, {"loc_id": 4359, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 2, "x": -568.3, "z": 512.2, "px": 1951.0, "py": 2135.4}, {"loc_id": 4361, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -6843.9, "z": 501.8, "px": 880.0, "py": 2133.6}, {"loc_id": 4361, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -6843.9, "z": 501.8, "px": 880.0, "py": 2133.6}, {"loc_id": 4361, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 2, "x": -6843.9, "z": 501.8, "px": 880.0, "py": 2133.6}, {"loc_id": 4363, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 8010.6, "z": 188.7, "px": 3415.1, "py": 2080.2}, {"loc_id": 4363, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 8010.6, "z": 188.7, "px": 3415.1, "py": 2080.2}, {"loc_id": 4365, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 1276.2, "z": 5630.3, "px": 2265.8, "py": 3008.9}, {"loc_id": 4365, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 1276.2, "z": 5630.3, "px": 2265.8, "py": 3008.9}, {"loc_id": 4367, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 2, "x": -1032.8, "z": 377.8, "px": 1871.7, "py": 2112.5}, {"loc_id": 4367, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -1032.8, "z": 377.8, "px": 1871.7, "py": 2112.5}, {"loc_id": 4367, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -1032.8, "z": 377.8, "px": 1871.7, "py": 2112.5}, {"loc_id": 4369, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 2044.7, "z": -1077.5, "px": 2397.0, "py": 1864.1}, {"loc_id": 4371, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 2562.5, "z": -4486.3, "px": 2485.3, "py": 1282.3}, {"loc_id": 4371, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 2562.5, "z": -4486.3, "px": 2485.3, "py": 1282.3}, {"loc_id": 4372, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 5112.1, "z": 3129.1, "px": 2920.5, "py": 2582.0}, {"loc_id": 4372, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 5112.1, "z": 3129.1, "px": 2920.5, "py": 2582.0}, {"loc_id": 4373, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 2, "x": 7289.3, "z": -3133.3, "px": 3292.0, "py": 1513.3}, {"loc_id": 4374, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 506.0, "z": 4674.8, "px": 2134.4, "py": 2845.8}, {"loc_id": 4374, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 2, "x": 506.0, "z": 4674.8, "px": 2134.4, "py": 2845.8}, {"loc_id": 4376, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 2488.8, "z": -1352.3, "px": 2472.8, "py": 1817.2}, {"loc_id": 4377, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 4170.2, "z": -1086.8, "px": 2759.7, "py": 1862.5}, {"loc_id": 4377, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 4170.2, "z": -1086.8, "px": 2759.7, "py": 1862.5}, {"loc_id": 4378, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -1334.3, "z": -1916.0, "px": 1820.3, "py": 1721.0}, {"loc_id": 4380, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 2, "x": 5123.8, "z": 5194.0, "px": 2922.5, "py": 2934.4}, {"loc_id": 4380, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 5123.8, "z": 5194.0, "px": 2922.5, "py": 2934.4}, {"loc_id": 4380, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 5123.8, "z": 5194.0, "px": 2922.5, "py": 2934.4}, {"loc_id": 4381, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -8694.4, "z": -828.0, "px": 564.2, "py": 1906.7}, {"loc_id": 4381, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": -8694.4, "z": -828.0, "px": 564.2, "py": 1906.7}, {"loc_id": 4383, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -1781.4, "z": -4545.8, "px": 1744.0, "py": 1272.2}, {"loc_id": 4383, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -1781.4, "z": -4545.8, "px": 1744.0, "py": 1272.2}, {"loc_id": 4383, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": -1781.4, "z": -4545.8, "px": 1744.0, "py": 1272.2}, {"loc_id": 4384, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 2, "x": 1482.1, "z": 6272.2, "px": 2300.9, "py": 3118.5}, {"loc_id": 4385, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 2042.6, "z": 3914.5, "px": 2396.6, "py": 2716.1}, {"loc_id": 4386, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 8323.7, "z": 195.3, "px": 3468.6, "py": 2081.3}, {"loc_id": 4388, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 1660.3, "z": -4422.1, "px": 2331.4, "py": 1293.3}, {"loc_id": 4389, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 7416.7, "z": 1096.8, "px": 3313.8, "py": 2235.2}, {"loc_id": 4389, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 7416.7, "z": 1096.8, "px": 3313.8, "py": 2235.2}, {"loc_id": 4389, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 7416.7, "z": 1096.8, "px": 3313.8, "py": 2235.2}, {"loc_id": 4390, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 2373.4, "z": 3769.6, "px": 2453.1, "py": 2691.3}, {"loc_id": 4391, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -6849.0, "z": 3786.3, "px": 879.1, "py": 2694.2}, {"loc_id": 4392, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 2299.3, "z": 5187.5, "px": 2440.4, "py": 2933.3}, {"loc_id": 4393, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -7365.5, "z": -1859.4, "px": 791.0, "py": 1730.7}, {"loc_id": 4394, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": -8376.6, "z": 636.4, "px": 618.4, "py": 2156.6}, {"loc_id": 4395, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 506.6, "z": 5049.8, "px": 2134.5, "py": 2909.8}, {"loc_id": 4396, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 889.9, "z": 3450.9, "px": 2199.9, "py": 2637.0}, {"loc_id": 4397, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 7352.3, "z": -3330.0, "px": 3302.8, "py": 1479.7}, {"loc_id": 4398, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 5256.1, "z": -2236.2, "px": 2945.0, "py": 1666.4}, {"loc_id": 4400, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 3450.0, "z": -2686.0, "px": 2636.8, "py": 1589.6}, {"loc_id": 4400, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 2, "x": 3450.0, "z": -2686.0, "px": 2636.8, "py": 1589.6}, {"loc_id": 4401, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 2939.6, "z": -257.2, "px": 2549.7, "py": 2004.1}, {"loc_id": 4402, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 2, "x": 1781.0, "z": 7356.1, "px": 2352.0, "py": 3303.4}, {"loc_id": 4403, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -5239.2, "z": 764.2, "px": 1153.8, "py": 2178.4}, {"loc_id": 4403, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": -5239.2, "z": 764.2, "px": 1153.8, "py": 2178.4}, {"loc_id": 4404, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 1985.8, "z": -6334.0, "px": 2386.9, "py": 967.0}, {"loc_id": 4404, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 1985.8, "z": -6334.0, "px": 2386.9, "py": 967.0}, {"loc_id": 4404, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 1985.8, "z": -6334.0, "px": 2386.9, "py": 967.0}, {"loc_id": 4405, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -6005.8, "z": 4800.9, "px": 1023.0, "py": 2867.4}, {"loc_id": 4405, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 2, "x": -6005.8, "z": 4800.9, "px": 1023.0, "py": 2867.4}, {"loc_id": 4407, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 9546.9, "z": 63.9, "px": 3677.3, "py": 2058.9}, {"loc_id": 4408, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -68.7, "z": -4600.0, "px": 2036.3, "py": 1262.9}, {"loc_id": 4408, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 2, "x": -68.7, "z": -4600.0, "px": 2036.3, "py": 1262.9}, {"loc_id": 4410, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 2, "x": 3274.8, "z": -4.6, "px": 2606.9, "py": 2047.2}, {"loc_id": 4410, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 3274.8, "z": -4.6, "px": 2606.9, "py": 2047.2}, {"loc_id": 4410, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 3274.8, "z": -4.6, "px": 2606.9, "py": 2047.2}, {"loc_id": 4410, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": 3274.8, "z": -4.6, "px": 2606.9, "py": 2047.2}, {"loc_id": 4411, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 8574.1, "z": -3708.9, "px": 3511.3, "py": 1415.0}, {"loc_id": 4412, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -1215.7, "z": -1221.1, "px": 1840.5, "py": 1839.6}, {"loc_id": 4416, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 2, "x": -3705.2, "z": 7113.6, "px": 1415.6, "py": 3262.1}, {"loc_id": 4417, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 7298.0, "z": -4547.5, "px": 3293.5, "py": 1271.9}, {"loc_id": 4417, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 2, "x": 7298.0, "z": -4547.5, "px": 3293.5, "py": 1271.9}, {"loc_id": 4418, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 3208.8, "z": -2630.5, "px": 2595.6, "py": 1599.1}, {"loc_id": 4419, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 4991.3, "z": -2122.8, "px": 2899.8, "py": 1685.7}, {"loc_id": 4420, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 2427.3, "z": -1475.0, "px": 2462.3, "py": 1796.3}, {"loc_id": 4421, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 5510.4, "z": -969.9, "px": 2988.4, "py": 1882.5}, {"loc_id": 4421, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 5510.4, "z": -969.9, "px": 2988.4, "py": 1882.5}, {"loc_id": 4424, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 2, "x": 7353.4, "z": -4420.3, "px": 3303.0, "py": 1293.6}, {"loc_id": 4425, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 2552.7, "z": 258.9, "px": 2483.7, "py": 2092.2}, {"loc_id": 4425, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 2552.7, "z": 258.9, "px": 2483.7, "py": 2092.2}, {"loc_id": 4426, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 8777.6, "z": -1335.1, "px": 3546.0, "py": 1820.1}, {"loc_id": 4427, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 2, "x": 1735.8, "z": -1148.4, "px": 2344.2, "py": 1852.0}, {"loc_id": 4429, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 5067.0, "z": 377.9, "px": 2912.8, "py": 2112.5}, {"loc_id": 4430, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": -4101.4, "z": -2312.7, "px": 1348.0, "py": 1653.3}, {"loc_id": 4431, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 5367.0, "z": 522.6, "px": 2964.0, "py": 2137.2}, {"loc_id": 4432, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -890.1, "z": -5825.4, "px": 1896.1, "py": 1053.8}, {"loc_id": 4432, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": -890.1, "z": -5825.4, "px": 1896.1, "py": 1053.8}, {"loc_id": 4433, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 6602.0, "z": 4795.5, "px": 3174.7, "py": 2866.4}, {"loc_id": 4433, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": 6602.0, "z": 4795.5, "px": 3174.7, "py": 2866.4}, {"loc_id": 4435, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 4406.6, "z": 6657.9, "px": 2800.1, "py": 3184.3}, {"loc_id": 4437, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 6726.1, "z": 4922.7, "px": 3195.9, "py": 2888.1}, {"loc_id": 4438, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -7037.2, "z": 246.7, "px": 847.0, "py": 2090.1}, {"loc_id": 4438, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -7037.2, "z": 246.7, "px": 847.0, "py": 2090.1}, {"loc_id": 4439, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 5825.4, "z": -4736.0, "px": 3042.2, "py": 1239.7}, {"loc_id": 4439, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 2, "x": 5825.4, "z": -4736.0, "px": 3042.2, "py": 1239.7}, {"loc_id": 4440, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 4425.2, "z": 6792.0, "px": 2803.2, "py": 3207.2}, {"loc_id": 4441, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -192.8, "z": 572.5, "px": 2015.1, "py": 2145.7}, {"loc_id": 4442, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 2816.5, "z": -136.0, "px": 2528.7, "py": 2024.8}, {"loc_id": 4442, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 2816.5, "z": -136.0, "px": 2528.7, "py": 2024.8}, {"loc_id": 4444, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 2, "x": -9150.6, "z": 2822.4, "px": 486.3, "py": 2529.7}, {"loc_id": 4444, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": -9150.6, "z": 2822.4, "px": 486.3, "py": 2529.7}, {"loc_id": 4445, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 1988.0, "z": 1414.1, "px": 2387.3, "py": 2289.3}, {"loc_id": 4445, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 1988.0, "z": 1414.1, "px": 2387.3, "py": 2289.3}, {"loc_id": 4445, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 2, "x": 1988.0, "z": 1414.1, "px": 2387.3, "py": 2289.3}, {"loc_id": 4446, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 2169.4, "z": 3962.5, "px": 2418.2, "py": 2724.3}, {"loc_id": 4447, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 6773.8, "z": 4795.9, "px": 3204.1, "py": 2866.5}, {"loc_id": 4448, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": -6717.4, "z": 5561.0, "px": 901.6, "py": 2997.1}, {"loc_id": 4449, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -9086.4, "z": 3208.4, "px": 497.3, "py": 2595.6}, {"loc_id": 4449, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 2, "x": -9086.4, "z": 3208.4, "px": 497.3, "py": 2595.6}, {"loc_id": 4450, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -8954.4, "z": 3016.4, "px": 519.8, "py": 2562.8}, {"loc_id": 4451, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -3511.8, "z": 4799.5, "px": 1448.7, "py": 2867.1}, {"loc_id": 4451, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": -3511.8, "z": 4799.5, "px": 1448.7, "py": 2867.1}, {"loc_id": 4452, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -5703.6, "z": 4931.1, "px": 1074.6, "py": 2889.6}, {"loc_id": 4455, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 9526.9, "z": 1407.6, "px": 3673.9, "py": 2288.2}, {"loc_id": 4456, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 7751.7, "z": -2687.8, "px": 3371.0, "py": 1589.3}, {"loc_id": 4456, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 7751.7, "z": -2687.8, "px": 3371.0, "py": 1589.3}, {"loc_id": 4456, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 7751.7, "z": -2687.8, "px": 3371.0, "py": 1589.3}, {"loc_id": 4458, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 2, "x": -8120.2, "z": 2564.7, "px": 662.2, "py": 2485.7}, {"loc_id": 4460, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -7484.5, "z": -4990.2, "px": 770.6, "py": 1196.3}, {"loc_id": 4460, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -7484.5, "z": -4990.2, "px": 770.6, "py": 1196.3}, {"loc_id": 4461, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 8072.0, "z": -2489.1, "px": 3425.6, "py": 1623.2}, {"loc_id": 4461, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 8072.0, "z": -2489.1, "px": 3425.6, "py": 1623.2}, {"loc_id": 4461, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 2, "x": 8072.0, "z": -2489.1, "px": 3425.6, "py": 1623.2}, {"loc_id": 4463, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 648.8, "z": 309.0, "px": 2158.7, "py": 2100.7}, {"loc_id": 4464, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 3768.6, "z": -386.4, "px": 2691.2, "py": 1982.1}, {"loc_id": 4465, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -584.0, "z": -6463.7, "px": 1948.3, "py": 944.9}, {"loc_id": 4466, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 1162.4, "z": -2230.1, "px": 2246.4, "py": 1667.4}, {"loc_id": 4466, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 1162.4, "z": -2230.1, "px": 2246.4, "py": 1667.4}, {"loc_id": 4468, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 3901.0, "z": 1013.6, "px": 2713.8, "py": 2221.0}, {"loc_id": 4471, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 6596.3, "z": 3146.6, "px": 3173.8, "py": 2585.0}, {"loc_id": 4472, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 378.2, "z": 5310.1, "px": 2112.5, "py": 2954.3}, {"loc_id": 4473, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -1352.6, "z": -1536.9, "px": 1817.2, "py": 1785.7}, {"loc_id": 4473, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": -1352.6, "z": -1536.9, "px": 1817.2, "py": 1785.7}, {"loc_id": 4474, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -6838.8, "z": 5306.6, "px": 880.8, "py": 2953.7}, {"loc_id": 4475, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 1734.3, "z": -4545.6, "px": 2344.0, "py": 1272.2}, {"loc_id": 4477, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 2108.3, "z": 1209.2, "px": 2407.8, "py": 2254.4}, {"loc_id": 4478, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": -2374.0, "z": -6154.7, "px": 1642.8, "py": 997.6}, {"loc_id": 4479, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -1589.2, "z": -5703.7, "px": 1776.8, "py": 1074.6}, {"loc_id": 4479, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -1589.2, "z": -5703.7, "px": 1776.8, "py": 1074.6}, {"loc_id": 4479, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": -1589.2, "z": -5703.7, "px": 1776.8, "py": 1074.6}, {"loc_id": 4480, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -124.8, "z": -4743.5, "px": 2026.7, "py": 1238.4}, {"loc_id": 4480, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": -124.8, "z": -4743.5, "px": 2026.7, "py": 1238.4}, {"loc_id": 4481, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -1911.4, "z": -4671.1, "px": 1721.8, "py": 1250.8}, {"loc_id": 4481, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -1911.4, "z": -4671.1, "px": 1721.8, "py": 1250.8}, {"loc_id": 4482, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 2112.1, "z": 903.8, "px": 2408.5, "py": 2202.2}, {"loc_id": 4482, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 2112.1, "z": 903.8, "px": 2408.5, "py": 2202.2}, {"loc_id": 4483, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": -4800.9, "z": 5752.8, "px": 1228.6, "py": 3029.8}, {"loc_id": 4484, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 9404.2, "z": 56.3, "px": 3653.0, "py": 2057.6}, {"loc_id": 4484, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 9404.2, "z": 56.3, "px": 3653.0, "py": 2057.6}, {"loc_id": 4485, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 2, "x": 3648.4, "z": 197.1, "px": 2670.7, "py": 2081.6}, {"loc_id": 4485, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 3648.4, "z": 197.1, "px": 2670.7, "py": 2081.6}, {"loc_id": 4485, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 3648.4, "z": 197.1, "px": 2670.7, "py": 2081.6}, {"loc_id": 4485, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 3648.4, "z": 197.1, "px": 2670.7, "py": 2081.6}, {"loc_id": 4487, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 1917.8, "z": 7177.5, "px": 2375.3, "py": 3273.0}, {"loc_id": 4487, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 2, "x": 1917.8, "z": 7177.5, "px": 2375.3, "py": 3273.0}, {"loc_id": 4489, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 8070.1, "z": 59.3, "px": 3425.3, "py": 2058.1}, {"loc_id": 4489, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 2, "x": 8070.1, "z": 59.3, "px": 3425.3, "py": 2058.1}, {"loc_id": 4490, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -5060.1, "z": 761.5, "px": 1184.4, "py": 2178.0}, {"loc_id": 4490, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": -5060.1, "z": 761.5, "px": 1184.4, "py": 2178.0}, {"loc_id": 4492, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": 831.2, "z": 5252.1, "px": 2189.9, "py": 2944.4}, {"loc_id": 4493, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": -3957.2, "z": -2552.7, "px": 1372.6, "py": 1612.3}, {"loc_id": 4493, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 2, "x": -3957.2, "z": -2552.7, "px": 1372.6, "py": 1612.3}, {"loc_id": 4493, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 2, "x": -3957.2, "z": -2552.7, "px": 1372.6, "py": 1612.3}, {"loc_id": 4494, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -4989.8, "z": 5566.0, "px": 1196.4, "py": 2997.9}, {"loc_id": 4494, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": -4989.8, "z": 5566.0, "px": 1196.4, "py": 2997.9}, {"loc_id": 4496, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": -886.5, "z": 518.3, "px": 1896.7, "py": 2136.5}, {"loc_id": 4497, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 4920.5, "z": 198.6, "px": 2887.8, "py": 2081.9}, {"loc_id": 4497, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 4920.5, "z": 198.6, "px": 2887.8, "py": 2081.9}, {"loc_id": 4498, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 1098.3, "z": -5692.8, "px": 2235.4, "py": 1076.4}, {"loc_id": 4498, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 1098.3, "z": -5692.8, "px": 2235.4, "py": 1076.4}, {"loc_id": 4499, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 450.4, "z": 440.0, "px": 2124.9, "py": 2123.1}, {"loc_id": 4500, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": -3201.7, "z": -2365.6, "px": 1501.6, "py": 1644.3}, {"loc_id": 4501, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 1659.5, "z": -898.7, "px": 2331.2, "py": 1894.6}, {"loc_id": 4502, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 1737.4, "z": -1014.3, "px": 2344.5, "py": 1874.9}, {"loc_id": 4502, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 2, "x": 1737.4, "z": -1014.3, "px": 2344.5, "py": 1874.9}, {"loc_id": 4503, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 8635.6, "z": -1917.6, "px": 3521.8, "py": 1720.7}, {"loc_id": 4504, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 2, "x": 2173.2, "z": -965.9, "px": 2418.9, "py": 1883.2}, {"loc_id": 4504, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 2173.2, "z": -965.9, "px": 2418.9, "py": 1883.2}, {"loc_id": 4504, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 2, "x": 2173.2, "z": -965.9, "px": 2418.9, "py": 1883.2}, {"loc_id": 4505, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 2, "x": -9609.6, "z": 699.3, "px": 408.0, "py": 2167.3}, {"loc_id": 4506, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 2, "x": 5060.4, "z": -2244.4, "px": 2911.6, "py": 1665.0}, {"loc_id": 4506, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 2, "x": 5060.4, "z": -2244.4, "px": 2911.6, "py": 1665.0}, {"loc_id": 4506, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 2, "x": 5060.4, "z": -2244.4, "px": 2911.6, "py": 1665.0}, {"loc_id": 5358, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": -2442.6, "z": -1398.0, "px": 1631.1, "py": 1809.4}, {"loc_id": 5359, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": 0.4, "z": 2508.9, "px": 2048.1, "py": 2476.2}, {"loc_id": 5360, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr_Ranged", "count": 2, "x": 5574.9, "z": 1473.8, "px": 2999.4, "py": 2299.5}, {"loc_id": 5362, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": -2550.4, "z": 4925.3, "px": 1612.7, "py": 2888.6}, {"loc_id": 5363, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": -3479.7, "z": 3119.6, "px": 1454.1, "py": 2580.4}, {"loc_id": 5364, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": 2261.3, "z": -5297.6, "px": 2433.9, "py": 1143.9}, {"loc_id": 5366, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": 3374.9, "z": 554.7, "px": 2624.0, "py": 2142.7}, {"loc_id": 5367, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": -4552.4, "z": 1478.9, "px": 1271.1, "py": 2300.4}, {"loc_id": 5368, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": -5013.9, "z": 1521.4, "px": 1192.3, "py": 2307.7}, {"loc_id": 5369, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": 5736.7, "z": 1712.4, "px": 3027.1, "py": 2340.2}, {"loc_id": 5370, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": -5772.1, "z": -628.9, "px": 1062.9, "py": 1940.7}, {"loc_id": 5371, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": -2555.7, "z": -1723.5, "px": 1611.8, "py": 1753.9}, {"loc_id": 5372, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": 2447.9, "z": 238.8, "px": 2465.8, "py": 2088.8}, {"loc_id": 5373, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": -961.5, "z": -3884.1, "px": 1883.9, "py": 1385.1}, {"loc_id": 5374, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": -5827.8, "z": -506.9, "px": 1053.4, "py": 1961.5}, {"loc_id": 5376, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": 2965.2, "z": 3665.6, "px": 2554.1, "py": 2673.6}, {"loc_id": 5379, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": 2485.7, "z": -3389.8, "px": 2472.2, "py": 1469.5}, {"loc_id": 5380, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": 643.5, "z": -2185.1, "px": 2157.8, "py": 1675.1}, {"loc_id": 5383, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": -5329.9, "z": -1901.2, "px": 1138.4, "py": 1723.5}, {"loc_id": 5384, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": 2286.4, "z": -5428.1, "px": 2438.2, "py": 1121.6}, {"loc_id": 5385, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": 2364.9, "z": 4500.7, "px": 2451.6, "py": 2816.1}, {"loc_id": 5386, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": -2448.9, "z": -5062.4, "px": 1630.1, "py": 1184.0}, {"loc_id": 5388, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": -3520.9, "z": 2635.1, "px": 1447.1, "py": 2497.7}, {"loc_id": 5389, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": 4668.1, "z": -531.8, "px": 2844.7, "py": 1957.2}, {"loc_id": 5390, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": 2381.3, "z": -848.2, "px": 2454.4, "py": 1903.2}, {"loc_id": 5391, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": 2505.8, "z": -5227.1, "px": 2475.7, "py": 1155.9}, {"loc_id": 5392, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": 4500.8, "z": -3269.3, "px": 2816.1, "py": 1490.0}, {"loc_id": 5393, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": 2769.9, "z": 3782.5, "px": 2520.7, "py": 2693.5}, {"loc_id": 5394, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": -2134.6, "z": 4310.1, "px": 1683.7, "py": 2783.6}, {"loc_id": 5395, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": -3516.6, "z": 3270.8, "px": 1447.8, "py": 2606.2}, {"loc_id": 5396, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": 3221.7, "z": -4463.7, "px": 2597.8, "py": 1286.2}, {"loc_id": 5397, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": 2685.3, "z": 3972.2, "px": 2506.3, "py": 2725.9}, {"loc_id": 5397, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr_Ranged", "count": 2, "x": 2685.3, "z": 3972.2, "px": 2506.3, "py": 2725.9}, {"loc_id": 5398, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": 3343.6, "z": 4880.5, "px": 2618.6, "py": 2880.9}, {"loc_id": 5399, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": 2558.4, "z": 3591.3, "px": 2484.6, "py": 2660.9}, {"loc_id": 5400, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": -3710.2, "z": -3977.7, "px": 1414.8, "py": 1369.1}, {"loc_id": 5402, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": 2216.4, "z": 623.7, "px": 2426.3, "py": 2154.4}, {"loc_id": 5404, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": -5416.1, "z": -1787.9, "px": 1123.7, "py": 1742.9}, {"loc_id": 5405, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": -2623.9, "z": -829.4, "px": 1600.2, "py": 1906.4}, {"loc_id": 5406, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": -134.1, "z": 2865.5, "px": 2025.1, "py": 2537.0}, {"loc_id": 5407, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr", "count": 2, "x": 2485.3, "z": -186.9, "px": 2472.2, "py": 2016.1}, {"loc_id": 5440, "loc_name": "SwampWell1", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": -3591.1, "z": -4021.6, "px": 1435.1, "py": 1361.6}, {"loc_id": 5449, "loc_name": "SwampWell1", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": 3860.5, "z": 4277.4, "px": 2706.9, "py": 2778.0}, {"loc_id": 5450, "loc_name": "SwampWell1", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": -5263.0, "z": -1774.4, "px": 1149.8, "py": 1745.2}, {"loc_id": 5454, "loc_name": "SwampWell1", "item": "SpawnOnce: Draugr_Elite", "count": 2, "x": 5488.6, "z": 1088.0, "px": 2984.7, "py": 2233.7}, {"loc_id": 5465, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 2, "x": -274.0, "z": -1332.4, "px": 2001.2, "py": 1820.6}, {"loc_id": 5468, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 2, "x": 3502.0, "z": 9265.2, "px": 2645.7, "py": 3629.3}, {"loc_id": 5468, "loc_name": "StoneTowerRuins04", "item": "SpawnOnce: Skeleton", "count": 2, "x": 3502.0, "z": 9265.2, "px": 2645.7, "py": 3629.3}, {"loc_id": 5474, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 2, "x": -200.0, "z": -1134.2, "px": 2013.9, "py": 1854.4}, {"loc_id": 5479, "loc_name": "StoneTowerRuins04", "item": "SpawnOnce: Skeleton", "count": 2, "x": 5770.0, "z": 4555.7, "px": 3032.7, "py": 2825.5}, {"loc_id": 5483, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 2, "x": 6457.2, "z": 6532.6, "px": 3150.0, "py": 3162.9}, {"loc_id": 5491, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 2, "x": 4224.4, "z": -1923.7, "px": 2769.0, "py": 1719.7}, {"loc_id": 5495, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 2, "x": 6127.9, "z": 4490.7, "px": 3093.8, "py": 2814.4}, {"loc_id": 5499, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 2, "x": 2413.8, "z": -2576.8, "px": 2460.0, "py": 1608.2}, {"loc_id": 5512, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 2, "x": 1598.6, "z": 6600.7, "px": 2320.8, "py": 3174.5}, {"loc_id": 5513, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 2, "x": 6339.6, "z": 6664.1, "px": 3130.0, "py": 3185.3}, {"loc_id": 5519, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 2, "x": 3330.3, "z": 9334.2, "px": 2616.4, "py": 3641.0}, {"loc_id": 5528, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 2, "x": 4800.6, "z": -5242.5, "px": 2867.3, "py": 1153.3}, {"loc_id": 5544, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 2, "x": 518.2, "z": 4297.4, "px": 2136.4, "py": 2781.4}, {"loc_id": 5561, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 2, "x": 8194.2, "z": 135.5, "px": 3446.5, "py": 2071.1}, {"loc_id": 5564, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 2, "x": -3347.9, "z": -2353.0, "px": 1476.6, "py": 1646.4}, {"loc_id": 5566, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 2, "x": 822.5, "z": 300.3, "px": 2188.4, "py": 2099.3}, {"loc_id": 5577, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 2, "x": -1589.1, "z": 4845.1, "px": 1776.8, "py": 2874.9}, {"loc_id": 5583, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 2, "x": -4405.0, "z": 1730.0, "px": 1296.2, "py": 2343.3}, {"loc_id": 5584, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 2, "x": 8205.2, "z": -3821.3, "px": 3448.4, "py": 1395.8}, {"loc_id": 5585, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 2, "x": -7296.7, "z": -1848.9, "px": 802.7, "py": 1732.5}, {"loc_id": 5593, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 2, "x": 7158.7, "z": -3087.2, "px": 3269.8, "py": 1521.1}, {"loc_id": 5594, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 2, "x": -6702.6, "z": 3572.3, "px": 904.1, "py": 2657.7}, {"loc_id": 5600, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 2, "x": -6066.3, "z": 2108.0, "px": 1012.7, "py": 2407.8}, {"loc_id": 5604, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 2, "x": -8703.6, "z": -789.2, "px": 562.6, "py": 1913.3}, {"loc_id": 5608, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 2, "x": 1749.0, "z": 7281.9, "px": 2346.5, "py": 3290.8}, {"loc_id": 5611, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 2, "x": 1899.4, "z": -4350.4, "px": 2372.2, "py": 1305.5}, {"loc_id": 5613, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 2, "x": -1385.5, "z": -5563.8, "px": 1811.5, "py": 1098.4}, {"loc_id": 5616, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 2, "x": 1073.3, "z": -5632.9, "px": 2231.2, "py": 1086.7}, {"loc_id": 5620, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 2, "x": -7026.5, "z": 2361.4, "px": 848.8, "py": 2451.0}, {"loc_id": 5626, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 2, "x": 8143.5, "z": -366.2, "px": 3437.8, "py": 1985.5}, {"loc_id": 5627, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 2, "x": 390.4, "z": 5590.9, "px": 2114.6, "py": 3002.2}, {"loc_id": 5635, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 2, "x": 5314.5, "z": -561.1, "px": 2955.0, "py": 1952.2}, {"loc_id": 5647, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": -6767.6, "z": 5250.0, "px": 893.0, "py": 2944.0}, {"loc_id": 5648, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": 7246.5, "z": -3973.4, "px": 3284.7, "py": 1369.9}, {"loc_id": 5652, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": 2297.0, "z": 6394.2, "px": 2440.0, "py": 3139.3}, {"loc_id": 5654, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": 2436.9, "z": -4394.3, "px": 2463.9, "py": 1298.0}, {"loc_id": 5656, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": 3207.2, "z": -2388.8, "px": 2595.4, "py": 1640.3}, {"loc_id": 5659, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": 4028.9, "z": 6956.0, "px": 2735.6, "py": 3235.2}, {"loc_id": 5663, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": -187.5, "z": -955.4, "px": 2016.0, "py": 1884.9}, {"loc_id": 5666, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": 2873.1, "z": -2126.9, "px": 2538.3, "py": 1685.0}, {"loc_id": 5667, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": 8245.4, "z": 850.0, "px": 3455.2, "py": 2193.1}, {"loc_id": 5669, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": 1920.3, "z": -6313.3, "px": 2375.7, "py": 970.5}, {"loc_id": 5674, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": -1275.1, "z": -1714.0, "px": 1830.4, "py": 1755.5}, {"loc_id": 5677, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": 6764.3, "z": 4476.6, "px": 3202.4, "py": 2812.0}, {"loc_id": 5681, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": 7094.6, "z": -4370.8, "px": 3258.8, "py": 1302.1}, {"loc_id": 5683, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": 7734.9, "z": 3852.2, "px": 3368.1, "py": 2705.4}, {"loc_id": 5686, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": 8766.6, "z": -3785.3, "px": 3544.2, "py": 1402.0}, {"loc_id": 5687, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": -3206.5, "z": -1996.3, "px": 1500.8, "py": 1707.3}, {"loc_id": 5689, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": 1207.7, "z": 5619.2, "px": 2254.1, "py": 3007.0}, {"loc_id": 5692, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": 5133.2, "z": -2189.6, "px": 2924.1, "py": 1674.3}, {"loc_id": 5693, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": -7986.0, "z": 266.3, "px": 685.1, "py": 2093.4}, {"loc_id": 5704, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": 1608.9, "z": 6406.0, "px": 2322.6, "py": 3141.3}, {"loc_id": 5705, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": 1015.6, "z": 4173.8, "px": 2221.3, "py": 2760.3}, {"loc_id": 5706, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": 2381.8, "z": 5098.0, "px": 2454.5, "py": 2918.1}, {"loc_id": 5708, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": 963.8, "z": 5565.1, "px": 2212.5, "py": 2997.8}, {"loc_id": 5709, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": 1748.5, "z": 7490.7, "px": 2346.4, "py": 3326.4}, {"loc_id": 5711, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": -200.7, "z": -4347.9, "px": 2013.7, "py": 1306.0}, {"loc_id": 5712, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": 2700.6, "z": 5251.1, "px": 2508.9, "py": 2944.2}, {"loc_id": 5714, "loc_name": "StoneTowerRuins07", "item": "SpawnOnce: Skeleton", "count": 2, "x": 1134.0, "z": -2326.2, "px": 2241.5, "py": 1651.0}, {"loc_id": 5800, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": 4120.3, "z": -367.3, "px": 2751.2, "py": 1985.3}, {"loc_id": 5806, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": -406.5, "z": -4474.1, "px": 1978.6, "py": 1284.4}, {"loc_id": 5811, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": -744.3, "z": 619.8, "px": 1921.0, "py": 2153.8}, {"loc_id": 5817, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": -7510.2, "z": -5033.6, "px": 766.3, "py": 1188.9}, {"loc_id": 5821, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": -1918.4, "z": -4052.0, "px": 1720.6, "py": 1356.5}, {"loc_id": 5827, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": 7797.7, "z": 4397.8, "px": 3378.8, "py": 2798.6}, {"loc_id": 5829, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": -3886.7, "z": -251.2, "px": 1384.7, "py": 2005.1}, {"loc_id": 5830, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": -8556.1, "z": 646.8, "px": 587.8, "py": 2158.4}, {"loc_id": 5836, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": -3241.9, "z": 6568.9, "px": 1494.7, "py": 3169.1}, {"loc_id": 5842, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": 1898.4, "z": 1039.0, "px": 2372.0, "py": 2225.3}, {"loc_id": 5844, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": 8070.9, "z": -108.0, "px": 3425.4, "py": 2029.6}, {"loc_id": 5845, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": 4363.6, "z": -871.6, "px": 2792.7, "py": 1899.2}, {"loc_id": 5847, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": -5563.8, "z": 4804.7, "px": 1098.4, "py": 2868.0}, {"loc_id": 5848, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": -3412.6, "z": -651.7, "px": 1465.6, "py": 1936.8}, {"loc_id": 5851, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": 2549.6, "z": -3411.2, "px": 2483.1, "py": 1465.8}, {"loc_id": 5854, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": -9556.0, "z": 2125.3, "px": 417.1, "py": 2410.7}, {"loc_id": 5856, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": -1454.7, "z": -1579.4, "px": 1799.7, "py": 1778.4}, {"loc_id": 5858, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": -1224.5, "z": -5773.7, "px": 1839.0, "py": 1062.6}, {"loc_id": 5860, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": 5321.0, "z": 4805.4, "px": 2956.1, "py": 2868.1}, {"loc_id": 5863, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": 7448.1, "z": -3375.0, "px": 3319.1, "py": 1472.0}, {"loc_id": 5866, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": -1362.0, "z": -1166.9, "px": 1815.6, "py": 1848.8}, {"loc_id": 5877, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 2, "x": -3928.7, "z": 1853.8, "px": 1377.5, "py": 2364.4}, {"loc_id": 5879, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": -878.8, "z": 21.9, "px": 1898.0, "py": 2051.7}, {"loc_id": 5880, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": -2041.4, "z": -4241.8, "px": 1699.6, "py": 1324.1}, {"loc_id": 5881, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": -5360.7, "z": 400.0, "px": 1133.1, "py": 2116.3}, {"loc_id": 5882, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": 2305.4, "z": -1393.9, "px": 2441.5, "py": 1810.1}, {"loc_id": 5883, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": -403.3, "z": -2186.9, "px": 1979.2, "py": 1674.8}, {"loc_id": 5888, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": 9448.5, "z": 328.3, "px": 3660.5, "py": 2104.0}, {"loc_id": 5892, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": 3715.3, "z": 87.9, "px": 2682.1, "py": 2063.0}, {"loc_id": 5893, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": -5806.1, "z": 1098.1, "px": 1057.1, "py": 2235.4}, {"loc_id": 5894, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": 2559.7, "z": -4562.4, "px": 2484.9, "py": 1269.4}, {"loc_id": 5898, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": -7336.9, "z": -3608.9, "px": 795.8, "py": 1432.1}, {"loc_id": 5899, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": 6090.7, "z": -4817.8, "px": 3087.5, "py": 1225.8}, {"loc_id": 5900, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": 1144.8, "z": -5229.4, "px": 2243.4, "py": 1155.5}, {"loc_id": 5901, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": -6200.7, "z": 2350.4, "px": 989.7, "py": 2449.1}, {"loc_id": 5906, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": 336.2, "z": 5334.5, "px": 2105.4, "py": 2958.4}, {"loc_id": 5917, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": -4715.8, "z": 5435.2, "px": 1243.2, "py": 2975.6}, {"loc_id": 5918, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": -3288.4, "z": 4420.0, "px": 1486.8, "py": 2802.3}, {"loc_id": 5920, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": 4369.2, "z": -5005.1, "px": 2793.7, "py": 1193.8}, {"loc_id": 5926, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": 813.0, "z": 4712.6, "px": 2186.8, "py": 2852.3}, {"loc_id": 5928, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": 5192.3, "z": 3498.5, "px": 2934.2, "py": 2645.1}, {"loc_id": 5931, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": 8403.4, "z": 433.3, "px": 3482.2, "py": 2121.9}, {"loc_id": 5934, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": 2486.5, "z": -3704.0, "px": 2472.4, "py": 1415.9}, {"loc_id": 5935, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": 9852.8, "z": 1403.6, "px": 3729.5, "py": 2287.5}, {"loc_id": 5937, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": 3946.3, "z": 5101.2, "px": 2721.5, "py": 2918.6}, {"loc_id": 5939, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": 2108.1, "z": 3784.2, "px": 2407.8, "py": 2693.8}, {"loc_id": 5946, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": 3247.9, "z": -1237.4, "px": 2602.3, "py": 1836.8}, {"loc_id": 5954, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": 7191.6, "z": 2040.4, "px": 3275.4, "py": 2396.2}, {"loc_id": 5955, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 2, "x": 3688.8, "z": 1135.6, "px": 2677.6, "py": 2241.8}, {"loc_id": 5958, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -390.9, "z": -4092.7, "px": 1981.3, "py": 1349.5}, {"loc_id": 5959, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -1413.8, "z": -1221.5, "px": 1806.7, "py": 1839.5}, {"loc_id": 5960, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -2245.5, "z": -1660.1, "px": 1664.8, "py": 1764.7}, {"loc_id": 5961, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 3203.5, "z": 2500.8, "px": 2594.7, "py": 2474.8}, {"loc_id": 5962, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -443.4, "z": 378.8, "px": 1972.3, "py": 2112.6}, {"loc_id": 5963, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -3389.7, "z": 3005.3, "px": 1469.5, "py": 2560.9}, {"loc_id": 5964, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 3201.1, "z": 2301.3, "px": 2594.3, "py": 2440.8}, {"loc_id": 5965, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -248.5, "z": -762.8, "px": 2005.6, "py": 1917.8}, {"loc_id": 5966, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 184.7, "z": 195.6, "px": 2079.5, "py": 2081.4}, {"loc_id": 5967, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -1404.6, "z": -890.4, "px": 1808.3, "py": 1896.0}, {"loc_id": 5968, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -386.1, "z": -66.2, "px": 1982.1, "py": 2036.7}, {"loc_id": 5969, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 1723.1, "z": -66.2, "px": 2342.1, "py": 2036.7}, {"loc_id": 5970, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -2240.8, "z": 263.0, "px": 1665.6, "py": 2092.9}, {"loc_id": 5971, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 248.2, "z": -379.9, "px": 2090.4, "py": 1983.2}, {"loc_id": 5972, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -1601.7, "z": -573.1, "px": 1774.6, "py": 1950.2}, {"loc_id": 5973, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -3643.2, "z": -2434.2, "px": 1426.2, "py": 1632.6}, {"loc_id": 5974, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 1344.4, "z": -129.1, "px": 2277.4, "py": 2026.0}, {"loc_id": 5975, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 249.9, "z": -70.7, "px": 2090.6, "py": 2035.9}, {"loc_id": 5976, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 3322.4, "z": 2566.8, "px": 2615.0, "py": 2486.1}, {"loc_id": 5977, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -2047.5, "z": 323.0, "px": 1698.6, "py": 2103.1}, {"loc_id": 5978, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 1790.4, "z": -1538.8, "px": 2353.6, "py": 1785.4}, {"loc_id": 5979, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -1276.5, "z": -952.5, "px": 1830.1, "py": 1885.4}, {"loc_id": 5980, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 2631.7, "z": -706.5, "px": 2497.1, "py": 1927.4}, {"loc_id": 5981, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 4347.6, "z": -1407.5, "px": 2790.0, "py": 1807.8}, {"loc_id": 5982, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -69.7, "z": -1927.8, "px": 2036.1, "py": 1719.0}, {"loc_id": 5983, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -3131.9, "z": 3065.3, "px": 1513.5, "py": 2571.1}, {"loc_id": 5984, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -2172.7, "z": -1540.8, "px": 1677.2, "py": 1785.0}, {"loc_id": 5985, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -320.7, "z": -3842.3, "px": 1993.3, "py": 1392.2}, {"loc_id": 5986, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 2365.2, "z": -699.4, "px": 2451.7, "py": 1928.6}, {"loc_id": 5987, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -2367.7, "z": -1597.5, "px": 1643.9, "py": 1775.4}, {"loc_id": 5988, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -1599.7, "z": -1150.0, "px": 1775.0, "py": 1851.7}, {"loc_id": 5989, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 2618.6, "z": -838.4, "px": 2494.9, "py": 1904.9}, {"loc_id": 5990, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -511.6, "z": 194.2, "px": 1960.7, "py": 2081.1}, {"loc_id": 5991, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 4422.4, "z": -1272.5, "px": 2802.8, "py": 1830.8}, {"loc_id": 5992, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -3647.3, "z": 2882.2, "px": 1425.5, "py": 2539.9}, {"loc_id": 5993, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -1221.9, "z": -639.5, "px": 1839.5, "py": 1938.9}, {"loc_id": 5994, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 2680.7, "z": -3072.1, "px": 2505.5, "py": 1523.7}, {"loc_id": 5995, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -57.4, "z": -192.0, "px": 2038.2, "py": 2015.2}, {"loc_id": 5996, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 1082.8, "z": 707.5, "px": 2232.8, "py": 2168.7}, {"loc_id": 5997, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 3964.1, "z": -1539.1, "px": 2724.5, "py": 1785.3}, {"loc_id": 5998, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -66.1, "z": -58.2, "px": 2036.7, "py": 2038.1}, {"loc_id": 5999, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -3258.2, "z": 3204.1, "px": 1491.9, "py": 2594.8}, {"loc_id": 6000, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 517.7, "z": 0.5, "px": 2136.4, "py": 2048.1}, {"loc_id": 6001, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -3835.6, "z": 3072.3, "px": 1393.4, "py": 2572.3}, {"loc_id": 6002, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -1023.0, "z": -771.8, "px": 1873.4, "py": 1916.3}, {"loc_id": 6003, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -1598.0, "z": 2883.9, "px": 1775.3, "py": 2540.2}, {"loc_id": 6004, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -126.4, "z": -441.5, "px": 2026.4, "py": 1972.7}, {"loc_id": 6005, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -2823.9, "z": 1091.8, "px": 1566.1, "py": 2234.3}, {"loc_id": 6006, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 384.0, "z": 128.7, "px": 2113.5, "py": 2070.0}, {"loc_id": 6007, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -2104.8, "z": -1663.1, "px": 1688.8, "py": 1764.2}, {"loc_id": 6008, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -254.2, "z": -384.2, "px": 2004.6, "py": 1982.4}, {"loc_id": 6009, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -326.1, "z": 506.8, "px": 1992.3, "py": 2134.5}, {"loc_id": 6010, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -1606.9, "z": -961.6, "px": 1773.8, "py": 1883.9}, {"loc_id": 6011, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -317.0, "z": 67.8, "px": 1993.9, "py": 2059.6}, {"loc_id": 6012, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 1472.7, "z": 61.2, "px": 2299.3, "py": 2058.4}, {"loc_id": 6013, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 3079.4, "z": 2626.5, "px": 2573.6, "py": 2496.3}, {"loc_id": 6014, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 123.2, "z": -259.3, "px": 2069.0, "py": 2003.7}, {"loc_id": 6015, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 249.9, "z": -1664.1, "px": 2090.6, "py": 1764.0}, {"loc_id": 6016, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 1790.0, "z": 1155.8, "px": 2353.5, "py": 2245.3}, {"loc_id": 6017, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -4927.7, "z": 642.5, "px": 1207.0, "py": 2157.7}, {"loc_id": 6018, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 1725.1, "z": 123.3, "px": 2342.4, "py": 2069.0}, {"loc_id": 6019, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -4733.7, "z": 964.7, "px": 1240.1, "py": 2212.6}, {"loc_id": 6020, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -3389.7, "z": -2374.3, "px": 1469.5, "py": 1642.8}, {"loc_id": 6021, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -2311.3, "z": 576.9, "px": 1653.5, "py": 2146.5}, {"loc_id": 6022, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -4159.3, "z": 1849.5, "px": 1338.1, "py": 2363.6}, {"loc_id": 6023, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 892.2, "z": 4543.7, "px": 2200.3, "py": 2823.5}, {"loc_id": 6024, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -4990.1, "z": 197.4, "px": 1196.4, "py": 2081.7}, {"loc_id": 6025, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -574.8, "z": -1091.1, "px": 1949.9, "py": 1861.8}, {"loc_id": 6026, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 4227.1, "z": -1148.9, "px": 2769.4, "py": 1851.9}, {"loc_id": 6027, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 2884.9, "z": -2434.7, "px": 2540.4, "py": 1632.5}, {"loc_id": 6028, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 1734.4, "z": 1280.8, "px": 2344.0, "py": 2266.6}, {"loc_id": 6029, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -2493.4, "z": 449.5, "px": 1622.5, "py": 2124.7}, {"loc_id": 6030, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 4164.6, "z": -1347.4, "px": 2758.8, "py": 1818.0}, {"loc_id": 6031, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -3194.3, "z": 2943.8, "px": 1502.8, "py": 2550.4}, {"loc_id": 6032, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -2626.5, "z": 1918.1, "px": 1599.7, "py": 2375.4}, {"loc_id": 6033, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -58.3, "z": 263.2, "px": 2038.1, "py": 2092.9}, {"loc_id": 6034, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -1537.3, "z": -1600.8, "px": 1785.6, "py": 1774.8}, {"loc_id": 6035, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -4934.9, "z": 504.3, "px": 1205.8, "py": 2134.1}, {"loc_id": 6036, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 1031.5, "z": 837.8, "px": 2224.0, "py": 2191.0}, {"loc_id": 6037, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 4226.1, "z": -1473.5, "px": 2769.3, "py": 1796.5}, {"loc_id": 6038, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -2114.0, "z": 124.8, "px": 1687.2, "py": 2069.3}, {"loc_id": 6039, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -126.0, "z": -1729.0, "px": 2026.5, "py": 1752.9}, {"loc_id": 6040, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 4034.5, "z": -1415.5, "px": 2736.6, "py": 1806.4}, {"loc_id": 6041, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 2373.3, "z": -568.9, "px": 2453.0, "py": 1950.9}, {"loc_id": 6042, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 3075.6, "z": 2495.5, "px": 2572.9, "py": 2473.9}, {"loc_id": 6043, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 3268.8, "z": -189.7, "px": 2605.9, "py": 2015.6}, {"loc_id": 6044, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -1155.6, "z": -830.8, "px": 1850.8, "py": 1906.2}, {"loc_id": 6045, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 317.1, "z": 256.0, "px": 2102.1, "py": 2091.7}, {"loc_id": 6046, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -3077.7, "z": 1797.6, "px": 1522.7, "py": 2354.8}, {"loc_id": 6047, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 1342.5, "z": 56.4, "px": 2277.1, "py": 2057.6}, {"loc_id": 6048, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -3705.1, "z": -1978.1, "px": 1415.7, "py": 1710.4}, {"loc_id": 6049, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -2177.2, "z": 4411.9, "px": 1676.4, "py": 2801.0}, {"loc_id": 6050, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -249.7, "z": 191.4, "px": 2005.4, "py": 2080.7}, {"loc_id": 6051, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 3134.1, "z": -2758.6, "px": 2582.9, "py": 1577.2}, {"loc_id": 6052, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 4089.2, "z": -1215.6, "px": 2745.9, "py": 1840.5}, {"loc_id": 6053, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -1016.3, "z": -643.4, "px": 1874.6, "py": 1938.2}, {"loc_id": 6054, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -3846.7, "z": -2042.3, "px": 1391.5, "py": 1699.4}, {"loc_id": 6055, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": 3011.7, "z": -2565.3, "px": 2562.0, "py": 1610.2}, {"loc_id": 6056, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -3707.7, "z": -2308.5, "px": 1415.2, "py": 1654.0}, {"loc_id": 6057, "loc_name": "ShipSetting01", "item": "Pickable: BoneFragments", "count": 2, "x": -1531.3, "z": -707.7, "px": 1786.7, "py": 1927.2}, {"loc_id": 6058, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 4603.2, "z": -5557.0, "px": 2833.6, "py": 1099.6}, {"loc_id": 6059, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -2085.0, "z": -81.7, "px": 1692.2, "py": 2034.1}, {"loc_id": 6062, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 390.9, "z": 3639.4, "px": 2114.7, "py": 2669.1}, {"loc_id": 6065, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 1327.3, "z": -5123.4, "px": 2274.5, "py": 1173.6}, {"loc_id": 6068, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 6352.8, "z": 6864.2, "px": 3132.2, "py": 3219.5}, {"loc_id": 6072, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -7142.6, "z": -1090.4, "px": 829.0, "py": 1861.9}, {"loc_id": 6073, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -1978.1, "z": -459.5, "px": 1710.4, "py": 1969.6}, {"loc_id": 6075, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -6092.0, "z": -391.5, "px": 1008.3, "py": 1981.2}, {"loc_id": 6076, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 2361.0, "z": -2599.9, "px": 2450.9, "py": 1604.3}, {"loc_id": 6077, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 2789.9, "z": 778.0, "px": 2524.1, "py": 2180.8}, {"loc_id": 6079, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -3926.5, "z": 5197.9, "px": 1377.9, "py": 2935.1}, {"loc_id": 6084, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 2153.3, "z": -3468.0, "px": 2415.5, "py": 1456.1}, {"loc_id": 6086, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 6035.5, "z": 4226.1, "px": 3078.1, "py": 2769.3}, {"loc_id": 6094, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 3268.3, "z": 9366.7, "px": 2605.8, "py": 3646.6}, {"loc_id": 6099, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 4557.9, "z": -1898.4, "px": 2825.9, "py": 1724.0}, {"loc_id": 6102, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 2200.4, "z": -6163.5, "px": 2423.5, "py": 996.1}, {"loc_id": 6103, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -5268.8, "z": 5191.6, "px": 1148.8, "py": 2934.0}, {"loc_id": 6104, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 7718.9, "z": -579.1, "px": 3365.4, "py": 1949.2}, {"loc_id": 6105, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 5699.9, "z": -398.1, "px": 3020.8, "py": 1980.1}, {"loc_id": 6109, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 1639.4, "z": 6584.3, "px": 2327.8, "py": 3171.7}, {"loc_id": 6112, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 5830.9, "z": 4797.4, "px": 3043.1, "py": 2866.8}, {"loc_id": 6114, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 6773.0, "z": 6843.0, "px": 3203.9, "py": 3215.9}, {"loc_id": 6116, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -6233.7, "z": -470.9, "px": 984.1, "py": 1967.6}, {"loc_id": 6119, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 3244.7, "z": -1815.4, "px": 2601.8, "py": 1738.2}, {"loc_id": 6123, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 3445.6, "z": 9268.7, "px": 2636.0, "py": 3629.9}, {"loc_id": 6126, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 4488.0, "z": -5682.8, "px": 2814.0, "py": 1078.1}, {"loc_id": 6130, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 3273.1, "z": 295.3, "px": 2606.6, "py": 2098.4}, {"loc_id": 6131, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 6657.7, "z": 6720.0, "px": 3184.2, "py": 3194.9}, {"loc_id": 6132, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -8474.7, "z": -1010.6, "px": 601.7, "py": 1875.5}, {"loc_id": 6133, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 4270.1, "z": -5755.1, "px": 2776.8, "py": 1065.8}, {"loc_id": 6135, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 5747.6, "z": -252.0, "px": 3028.9, "py": 2005.0}, {"loc_id": 6136, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 8341.2, "z": -4027.8, "px": 3471.6, "py": 1360.6}, {"loc_id": 6137, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 4301.9, "z": -1958.1, "px": 2782.2, "py": 1713.8}, {"loc_id": 6138, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 4157.0, "z": -1731.0, "px": 2757.5, "py": 1752.6}, {"loc_id": 6139, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 3337.2, "z": 188.3, "px": 2617.5, "py": 2080.1}, {"loc_id": 6141, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -279.5, "z": -1133.1, "px": 2000.3, "py": 1854.6}, {"loc_id": 6143, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 5905.9, "z": 4500.4, "px": 3055.9, "py": 2816.1}, {"loc_id": 6144, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 2859.1, "z": 575.8, "px": 2536.0, "py": 2146.3}, {"loc_id": 6146, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -259.7, "z": 9108.8, "px": 2003.7, "py": 3602.6}, {"loc_id": 6147, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 5288.1, "z": 192.6, "px": 2950.5, "py": 2080.9}, {"loc_id": 6148, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 4159.9, "z": -1839.0, "px": 2758.0, "py": 1734.1}, {"loc_id": 6149, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -2292.4, "z": -408.3, "px": 1656.8, "py": 1978.3}, {"loc_id": 6150, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 1580.6, "z": 6920.2, "px": 2317.8, "py": 3229.0}, {"loc_id": 6151, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 5582.0, "z": -488.0, "px": 3000.7, "py": 1964.7}, {"loc_id": 6154, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 2423.6, "z": 656.5, "px": 2461.6, "py": 2160.0}, {"loc_id": 6155, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 2424.9, "z": 8665.5, "px": 2461.8, "py": 3526.9}, {"loc_id": 6157, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -3408.4, "z": -2009.0, "px": 1466.3, "py": 1705.1}, {"loc_id": 6160, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 4735.7, "z": -5422.9, "px": 2856.2, "py": 1122.5}, {"loc_id": 6161, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -5332.3, "z": 5015.5, "px": 1138.0, "py": 2904.0}, {"loc_id": 6163, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -4532.4, "z": -153.8, "px": 1274.5, "py": 2021.8}, {"loc_id": 6170, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -3418.6, "z": 6155.4, "px": 1464.6, "py": 3098.5}, {"loc_id": 6174, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 5947.5, "z": 4284.0, "px": 3063.0, "py": 2779.1}, {"loc_id": 6175, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -2560.3, "z": 7382.7, "px": 1611.0, "py": 3308.0}, {"loc_id": 6176, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 7115.8, "z": -461.5, "px": 3262.4, "py": 1969.2}, {"loc_id": 6179, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 6075.9, "z": 4661.6, "px": 3085.0, "py": 2843.6}, {"loc_id": 6180, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 5431.5, "z": 5967.6, "px": 2975.0, "py": 3066.5}, {"loc_id": 6182, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 2966.2, "z": 528.3, "px": 2554.2, "py": 2138.2}, {"loc_id": 6184, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 1254.0, "z": 8532.3, "px": 2262.0, "py": 3504.2}, {"loc_id": 6185, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 4343.9, "z": 1386.2, "px": 2789.4, "py": 2284.6}, {"loc_id": 6186, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 2346.5, "z": -6205.2, "px": 2448.5, "py": 989.0}, {"loc_id": 6188, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 2551.3, "z": -2993.6, "px": 2483.4, "py": 1537.1}, {"loc_id": 6191, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -8617.3, "z": -137.5, "px": 577.3, "py": 2024.5}, {"loc_id": 6193, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 5774.1, "z": 2218.7, "px": 3033.4, "py": 2426.7}, {"loc_id": 6196, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -5974.6, "z": -362.2, "px": 1028.3, "py": 1986.2}, {"loc_id": 6197, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -3505.3, "z": -2215.3, "px": 1449.8, "py": 1669.9}, {"loc_id": 6198, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -4094.7, "z": 3330.0, "px": 1349.2, "py": 2616.3}, {"loc_id": 6200, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 2579.2, "z": 1010.7, "px": 2488.2, "py": 2220.5}, {"loc_id": 6202, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 1263.4, "z": -5199.0, "px": 2263.6, "py": 1160.7}, {"loc_id": 6203, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -3373.6, "z": 6404.8, "px": 1472.2, "py": 3141.1}, {"loc_id": 6204, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -7612.8, "z": -2504.5, "px": 748.7, "py": 1620.6}, {"loc_id": 6205, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -3430.9, "z": 6501.1, "px": 1462.5, "py": 3157.5}, {"loc_id": 6209, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 6457.8, "z": 7051.0, "px": 3150.1, "py": 3251.4}, {"loc_id": 6211, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 2650.7, "z": -2750.5, "px": 2500.4, "py": 1578.6}, {"loc_id": 6212, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -3846.2, "z": 1350.9, "px": 1391.6, "py": 2278.6}, {"loc_id": 6213, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -6266.8, "z": -624.1, "px": 978.5, "py": 1941.5}, {"loc_id": 6214, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 2518.3, "z": 8693.7, "px": 2477.8, "py": 3531.7}, {"loc_id": 6215, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -4530.0, "z": -1233.4, "px": 1274.9, "py": 1837.5}, {"loc_id": 6217, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 4235.5, "z": 1333.8, "px": 2770.9, "py": 2275.6}, {"loc_id": 6219, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 3819.9, "z": -103.8, "px": 2699.9, "py": 2030.3}, {"loc_id": 6220, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -2069.6, "z": -529.4, "px": 1694.8, "py": 1957.6}, {"loc_id": 6221, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -2425.5, "z": 7498.8, "px": 1634.0, "py": 3327.8}, {"loc_id": 6222, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 2451.4, "z": 1071.1, "px": 2466.4, "py": 2230.8}, {"loc_id": 6224, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -365.8, "z": -1287.4, "px": 1985.6, "py": 1828.3}, {"loc_id": 6227, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -4013.9, "z": 4501.8, "px": 1363.0, "py": 2816.3}, {"loc_id": 6230, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -2214.2, "z": -534.5, "px": 1670.1, "py": 1956.8}, {"loc_id": 6231, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -9704.2, "z": -587.5, "px": 391.8, "py": 1947.7}, {"loc_id": 6232, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 6101.7, "z": 4740.0, "px": 3089.4, "py": 2857.0}, {"loc_id": 6233, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -3977.0, "z": 1576.5, "px": 1369.3, "py": 2317.1}, {"loc_id": 6235, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -247.1, "z": -1229.1, "px": 2005.8, "py": 1838.2}, {"loc_id": 6237, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 3649.2, "z": -766.4, "px": 2670.8, "py": 1917.2}, {"loc_id": 6238, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -4522.8, "z": -3948.4, "px": 1276.1, "py": 1374.1}, {"loc_id": 6248, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -965.9, "z": 8648.9, "px": 1883.2, "py": 3524.1}, {"loc_id": 6250, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": 1026.4, "z": -2371.4, "px": 2223.2, "py": 1643.3}, {"loc_id": 6255, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 2, "x": -3722.0, "z": 6008.2, "px": 1412.8, "py": 3073.4}, {"loc_id": 6359, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 2, "x": -4352.5, "z": -1234.2, "px": 1305.2, "py": 1837.4}, {"loc_id": 6370, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 2, "x": 7694.5, "z": -511.1, "px": 3361.2, "py": 1960.8}, {"loc_id": 6382, "loc_name": "AbandonedLogCabin02", "item": "SpawnOnce: StoneGolem", "count": 2, "x": -73.9, "z": -1482.6, "px": 2035.4, "py": 1795.0}, {"loc_id": 6388, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 2, "x": 7285.5, "z": -532.2, "px": 3291.4, "py": 1957.2}, {"loc_id": 6415, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 2, "x": -3384.0, "z": -2112.1, "px": 1470.5, "py": 1687.5}, {"loc_id": 6416, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 2, "x": 1276.1, "z": 4928.1, "px": 2265.8, "py": 2889.1}, {"loc_id": 6418, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 2, "x": 9877.1, "z": -1197.4, "px": 3733.7, "py": 1843.6}, {"loc_id": 6426, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 2, "x": 2737.1, "z": 719.2, "px": 2515.1, "py": 2170.7}, {"loc_id": 6431, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 2, "x": -6968.9, "z": -2543.1, "px": 858.6, "py": 1614.0}, {"loc_id": 6436, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 2, "x": 1590.2, "z": 6723.4, "px": 2319.4, "py": 3195.5}, {"loc_id": 6443, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: StoneGolem", "count": 2, "x": 3026.3, "z": 9482.8, "px": 2564.5, "py": 3666.4}, {"loc_id": 6447, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 2, "x": 1164.5, "z": 247.9, "px": 2246.7, "py": 2090.3}, {"loc_id": 6449, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 2, "x": 4406.7, "z": -1865.4, "px": 2800.1, "py": 1729.6}, {"loc_id": 6452, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 2, "x": 4685.7, "z": -5394.4, "px": 2847.7, "py": 1127.4}, {"loc_id": 6452, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: StoneGolem", "count": 2, "x": 4685.7, "z": -5394.4, "px": 2847.7, "py": 1127.4}, {"loc_id": 6456, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 2, "x": 1194.7, "z": 389.0, "px": 2251.9, "py": 2114.4}, {"loc_id": 6459, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 2, "x": 6545.4, "z": 6740.9, "px": 3165.1, "py": 3198.4}, {"loc_id": 6463, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 2, "x": -3526.3, "z": -2178.4, "px": 1446.2, "py": 1676.2}, {"loc_id": 6466, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 2, "x": -3781.1, "z": 1482.9, "px": 1402.7, "py": 2301.1}, {"loc_id": 6470, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 2, "x": 7110.0, "z": -565.9, "px": 3261.4, "py": 1951.4}, {"loc_id": 6473, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 2, "x": -5573.2, "z": -2736.7, "px": 1096.8, "py": 1580.9}, {"loc_id": 6849, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 2, "x": -4980.5, "z": 406.1, "px": 1198.0, "py": 2117.3}, {"loc_id": 6860, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 2, "x": 203.7, "z": -1520.1, "px": 2082.8, "py": 1788.6}, {"loc_id": 6890, "loc_name": "Runestone_Boars", "item": "SpawnOnce: Boar", "count": 2, "x": 3325.1, "z": 2512.9, "px": 2615.5, "py": 2476.9}, {"loc_id": 7246, "loc_name": "CombatRuin01", "item": "Pickable: BoneFragments", "count": 2, "x": 3697.5, "z": -386.4, "px": 2679.0, "py": 1982.1}, {"loc_id": 7248, "loc_name": "CombatRuin01", "item": "Pickable: BoneFragments", "count": 2, "x": -2186.0, "z": -1651.0, "px": 1674.9, "py": 1766.2}, {"loc_id": 7250, "loc_name": "CombatRuin01", "item": "Pickable: BoneFragments", "count": 2, "x": 126.9, "z": -1746.6, "px": 2069.7, "py": 1749.9}, {"loc_id": 7360, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 2, "x": -3706.3, "z": 2121.4, "px": 1415.5, "py": 2410.1}, {"loc_id": 7400, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 2, "x": -706.7, "z": 3977.8, "px": 1927.4, "py": 2726.9}, {"loc_id": 7426, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 2, "x": 6713.1, "z": 2098.7, "px": 3193.7, "py": 2406.2}, {"loc_id": 7427, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 2, "x": 2802.3, "z": 4875.2, "px": 2526.3, "py": 2880.0}, {"loc_id": 7435, "loc_name": "TarPit3", "item": "Spawner: BlobTar (respawn every 60 minutes)", "count": 2, "x": -2064.7, "z": 3278.0, "px": 1695.6, "py": 2607.4}, {"loc_id": 7445, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": 1280.0, "z": 8448.0, "px": 2266.5, "py": 3489.8}, {"loc_id": 7447, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 2, "x": 9920.0, "z": -1216.0, "px": 3741.0, "py": 1840.5}, {"loc_id": 7450, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 2, "x": 5248.0, "z": 192.0, "px": 2943.7, "py": 2080.8}, {"loc_id": 7451, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 8384.0, "z": -3904.0, "px": 3478.9, "py": 1381.7}, {"loc_id": 7451, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 2, "x": 8384.0, "z": -3904.0, "px": 3478.9, "py": 1381.7}, {"loc_id": 7454, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 1216.0, "z": 6848.0, "px": 2255.5, "py": 3216.7}, {"loc_id": 7454, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 2, "x": 1216.0, "z": 6848.0, "px": 2255.5, "py": 3216.7}, {"loc_id": 7457, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 2, "x": 2560.0, "z": 896.0, "px": 2484.9, "py": 2200.9}, {"loc_id": 7457, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 2560.0, "z": 896.0, "px": 2484.9, "py": 2200.9}, {"loc_id": 7458, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 2, "x": 6144.0, "z": 4736.0, "px": 3096.6, "py": 2856.3}, {"loc_id": 7459, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 2, "x": -6848.0, "z": -2368.0, "px": 879.3, "py": 1643.9}, {"loc_id": 7461, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 1024.0, "z": -2624.0, "px": 2222.8, "py": 1600.2}, {"loc_id": 7462, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 2, "x": -3904.0, "z": 4480.0, "px": 1381.7, "py": 2812.6}, {"loc_id": 7462, "loc_name": "MountainCave02", "item": "Item: One Of: Coins[3-9]", "count": 2, "x": -3904.0, "z": 4480.0, "px": 1381.7, "py": 2812.6}, {"loc_id": 7463, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 2, "x": 6400.0, "z": 6592.0, "px": 3140.3, "py": 3173.0}, {"loc_id": 7464, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": -6656.0, "z": -1984.0, "px": 912.0, "py": 1709.4}, {"loc_id": 7465, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 2, "x": -5184.0, "z": 5440.0, "px": 1163.3, "py": 2976.4}, {"loc_id": 7465, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": -5184.0, "z": 5440.0, "px": 1163.3, "py": 2976.4}, {"loc_id": 7466, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": 7296.0, "z": -384.0, "px": 3293.2, "py": 1982.5}, {"loc_id": 7474, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 2, "x": 4480.0, "z": -1792.0, "px": 2812.6, "py": 1742.2}, {"loc_id": 7476, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 2, "x": 2496.0, "z": -2816.0, "px": 2474.0, "py": 1567.4}, {"loc_id": 7476, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": 2496.0, "z": -2816.0, "px": 2474.0, "py": 1567.4}, {"loc_id": 7477, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 2, "x": 2880.0, "z": 768.0, "px": 2539.5, "py": 2179.1}, {"loc_id": 7477, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": 2880.0, "z": 768.0, "px": 2539.5, "py": 2179.1}, {"loc_id": 7477, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 2, "x": 2880.0, "z": 768.0, "px": 2539.5, "py": 2179.1}, {"loc_id": 7478, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 2, "x": 4800.0, "z": -5312.0, "px": 2867.2, "py": 1141.4}, {"loc_id": 7479, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 2, "x": 2688.0, "z": 640.0, "px": 2506.8, "py": 2157.2}, {"loc_id": 7480, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": -3776.0, "z": 1408.0, "px": 1403.6, "py": 2288.3}, {"loc_id": 7483, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -2112.0, "z": -512.0, "px": 1687.6, "py": 1960.6}, {"loc_id": 7484, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 2, "x": 2240.0, "z": -2688.0, "px": 2430.3, "py": 1589.2}, {"loc_id": 7485, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": -2048.0, "z": -192.0, "px": 1698.5, "py": 2015.2}, {"loc_id": 7486, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 2, "x": 1728.0, "z": 6656.0, "px": 2342.9, "py": 3184.0}, {"loc_id": 7486, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": 1728.0, "z": 6656.0, "px": 2342.9, "py": 3184.0}, {"loc_id": 7490, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": -6848.0, "z": -2176.0, "px": 879.3, "py": 1676.6}, {"loc_id": 7491, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -4160.0, "z": 3200.0, "px": 1338.0, "py": 2594.1}, {"loc_id": 7492, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 2, "x": -8512.0, "z": -192.0, "px": 595.3, "py": 2015.2}, {"loc_id": 7493, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 2, "x": 1344.0, "z": 6656.0, "px": 2277.4, "py": 3184.0}, {"loc_id": 7493, "loc_name": "MountainCave02", "item": "Item: One Of: Coins[3-9]", "count": 2, "x": 1344.0, "z": 6656.0, "px": 2277.4, "py": 3184.0}, {"loc_id": 7494, "loc_name": "MountainCave02", "item": "SpawnOnce: StoneGolem", "count": 2, "x": 9664.0, "z": -1216.0, "px": 3697.3, "py": 1840.5}, {"loc_id": 7496, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 2, "x": 4608.0, "z": -5824.0, "px": 2834.4, "py": 1054.0}, {"loc_id": 7498, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -3776.0, "z": 5184.0, "px": 1403.6, "py": 2932.7}, {"loc_id": 7499, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 2, "x": 4480.0, "z": -2048.0, "px": 2812.6, "py": 1698.5}, {"loc_id": 7500, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 2, "x": -9600.0, "z": -576.0, "px": 409.6, "py": 1949.7}, {"loc_id": 7502, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": 4800.0, "z": -5568.0, "px": 2867.2, "py": 1097.7}, {"loc_id": 7503, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": 1344.0, "z": 8640.0, "px": 2277.4, "py": 3522.6}, {"loc_id": 7506, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 2048.0, "z": 4736.0, "px": 2397.5, "py": 2856.3}, {"loc_id": 7507, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 2, "x": -5056.0, "z": 2688.0, "px": 1185.1, "py": 2506.8}, {"loc_id": 7508, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 2, "x": 3520.0, "z": 9216.0, "px": 2648.7, "py": 3620.9}, {"loc_id": 7512, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 2, "x": 5632.0, "z": -512.0, "px": 3009.2, "py": 1960.6}, {"loc_id": 7512, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 2, "x": 5632.0, "z": -512.0, "px": 3009.2, "py": 1960.6}, {"loc_id": 7513, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 2, "x": 3072.0, "z": -1920.0, "px": 2572.3, "py": 1720.3}, {"loc_id": 7514, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 2, "x": -3584.0, "z": 6080.0, "px": 1436.3, "py": 3085.7}, {"loc_id": 7518, "loc_name": "MountainCave02", "item": "Item: One Of: Coins[3-9]", "count": 2, "x": 2560.0, "z": 8768.0, "px": 2484.9, "py": 3544.4}, {"loc_id": 7521, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": 2240.0, "z": -3712.0, "px": 2430.3, "py": 1414.5}, {"loc_id": 7522, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 2, "x": -4032.0, "z": 1408.0, "px": 1359.9, "py": 2288.3}, {"loc_id": 7523, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 2, "x": 6016.0, "z": 4288.0, "px": 3074.7, "py": 2779.8}, {"loc_id": 7524, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 2, "x": 4288.0, "z": -1856.0, "px": 2779.8, "py": 1731.2}, {"loc_id": 7524, "loc_name": "MountainCave02", "item": "SpawnOnce: StoneGolem", "count": 2, "x": 4288.0, "z": -1856.0, "px": 2779.8, "py": 1731.2}, {"loc_id": 7524, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 2, "x": 4288.0, "z": -1856.0, "px": 2779.8, "py": 1731.2}, {"loc_id": 7526, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 2560.0, "z": 8960.0, "px": 2484.9, "py": 3577.2}, {"loc_id": 7527, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 2, "x": -3392.0, "z": 6336.0, "px": 1469.1, "py": 3129.3}, {"loc_id": 7527, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 2, "x": -3392.0, "z": 6336.0, "px": 1469.1, "py": 3129.3}, {"loc_id": 7529, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": 2496.0, "z": -3008.0, "px": 2474.0, "py": 1534.6}, {"loc_id": 7530, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 2, "x": 5312.0, "z": -64.0, "px": 2954.6, "py": 2037.1}, {"loc_id": 7530, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": 5312.0, "z": -64.0, "px": 2954.6, "py": 2037.1}, {"loc_id": 7531, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": 6016.0, "z": 4480.0, "px": 3074.7, "py": 2812.6}, {"loc_id": 7532, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 2, "x": -9984.0, "z": -512.0, "px": 344.1, "py": 1960.6}, {"loc_id": 7532, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": -9984.0, "z": -512.0, "px": 344.1, "py": 1960.6}, {"loc_id": 7534, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": 896.0, "z": -2432.0, "px": 2200.9, "py": 1632.9}, {"loc_id": 7536, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 2, "x": 2112.0, "z": -3520.0, "px": 2408.4, "py": 1447.3}, {"loc_id": 7536, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 2, "x": 2112.0, "z": -3520.0, "px": 2408.4, "py": 1447.3}, {"loc_id": 7536, "loc_name": "MountainCave02", "item": "SpawnOnce: StoneGolem", "count": 2, "x": 2112.0, "z": -3520.0, "px": 2408.4, "py": 1447.3}, {"loc_id": 7538, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": 6208.0, "z": 4544.0, "px": 3107.5, "py": 2823.5}, {"loc_id": 7539, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 2, "x": 1280.0, "z": -4992.0, "px": 2266.5, "py": 1196.0}, {"loc_id": 7540, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 2, "x": 1344.0, "z": 7040.0, "px": 2277.4, "py": 3249.5}, {"loc_id": 7541, "loc_name": "MountainCave02", "item": "SpawnOnce: Bat", "count": 2, "x": -320.0, "z": -1280.0, "px": 1993.4, "py": 1829.5}, {"loc_id": 7543, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": -3904.0, "z": 1728.0, "px": 1381.7, "py": 2342.9}, {"loc_id": 7544, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": -2432.0, "z": 1920.0, "px": 1632.9, "py": 2375.7}, {"loc_id": 7547, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": 5760.0, "z": 4480.0, "px": 3031.0, "py": 2812.6}, {"loc_id": 7548, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": -960.0, "z": 8704.0, "px": 1884.2, "py": 3533.5}, {"loc_id": 7549, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": 2496.0, "z": -2560.0, "px": 2474.0, "py": 1611.1}, {"loc_id": 7550, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 2, "x": 1280.0, "z": 320.0, "px": 2266.5, "py": 2102.6}, {"loc_id": 7551, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": -1920.0, "z": -576.0, "px": 1720.3, "py": 1949.7}, {"loc_id": 7552, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 2, "x": -128.0, "z": -4096.0, "px": 2026.2, "py": 1348.9}, {"loc_id": 7553, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 2, "x": -6080.0, "z": -320.0, "px": 1010.3, "py": 1993.4}, {"loc_id": 7555, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": -6272.0, "z": -448.0, "px": 977.6, "py": 1971.5}, {"loc_id": 7556, "loc_name": "MountainCave02", "item": "Pickable: Crystal", "count": 2, "x": -3200.0, "z": 2752.0, "px": 1501.9, "py": 2517.7}, {"loc_id": 7557, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": 3264.0, "z": 256.0, "px": 2605.1, "py": 2091.7}, {"loc_id": 7558, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": -4416.0, "z": -3840.0, "px": 1294.3, "py": 1392.6}, {"loc_id": 7561, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 2, "x": -6208.0, "z": -640.0, "px": 988.5, "py": 1938.8}, {"loc_id": 7562, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 2, "x": 5632.0, "z": 2304.0, "px": 3009.2, "py": 2441.2}, {"loc_id": 7563, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 2, "x": -3584.0, "z": 1472.0, "px": 1436.3, "py": 2299.2}, {"loc_id": 7564, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 2, "x": 6400.0, "z": 7040.0, "px": 3140.3, "py": 3249.5}, {"loc_id": 7565, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 2, "x": -256.0, "z": 9152.0, "px": 2004.3, "py": 3609.9}, {"loc_id": 7567, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 2, "x": 2048.0, "z": -1600.0, "px": 2397.5, "py": 1774.9}, {"loc_id": 7569, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 2, "x": -5376.0, "z": 4992.0, "px": 1130.5, "py": 2900.0}, {"loc_id": 7574, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 2, "x": 5760.0, "z": 4800.0, "px": 3031.0, "py": 2867.2}, {"loc_id": 7577, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": 7423.4, "z": -255.7, "px": 3314.9, "py": 2004.4}, {"loc_id": 7578, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": 4028.3, "z": -6268.0, "px": 2735.5, "py": 978.3}, {"loc_id": 7579, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 318.0, "z": 7367.1, "px": 2102.3, "py": 3305.3}, {"loc_id": 7579, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": 318.0, "z": 7367.1, "px": 2102.3, "py": 3305.3}, {"loc_id": 7581, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -6137.4, "z": -5446.9, "px": 1000.6, "py": 1118.4}, {"loc_id": 7582, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": 8388.5, "z": -767.9, "px": 3479.6, "py": 1916.9}, {"loc_id": 7584, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": 7550.0, "z": 2433.8, "px": 3336.5, "py": 2463.4}, {"loc_id": 7586, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 6266.9, "z": -1346.4, "px": 3117.6, "py": 1818.2}, {"loc_id": 7587, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": 5250.1, "z": 3334.0, "px": 2944.0, "py": 2617.0}, {"loc_id": 7589, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -7358.9, "z": 4101.6, "px": 792.1, "py": 2748.0}, {"loc_id": 7592, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": -7490.1, "z": 1083.3, "px": 769.7, "py": 2232.9}, {"loc_id": 7593, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": -7486.3, "z": 2878.4, "px": 770.3, "py": 2539.2}, {"loc_id": 7596, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -6663.6, "z": -1669.4, "px": 910.7, "py": 1763.1}, {"loc_id": 7597, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": 3463.3, "z": 5636.8, "px": 2639.1, "py": 3010.0}, {"loc_id": 7598, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": -6402.6, "z": 3135.4, "px": 955.3, "py": 2583.1}, {"loc_id": 7599, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": 5496.3, "z": 5636.5, "px": 2986.0, "py": 3010.0}, {"loc_id": 7600, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": 4870.8, "z": -5825.2, "px": 2879.3, "py": 1053.8}, {"loc_id": 7601, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": 5757.9, "z": -4223.2, "px": 3030.7, "py": 1327.2}, {"loc_id": 7602, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": -9220.2, "z": 571.2, "px": 474.4, "py": 2145.5}, {"loc_id": 7604, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": 4031.6, "z": -6404.4, "px": 2736.1, "py": 955.0}, {"loc_id": 7609, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 3141.5, "z": 6522.4, "px": 2584.1, "py": 3161.2}, {"loc_id": 7615, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": -7676.6, "z": 1339.0, "px": 737.9, "py": 2276.5}, {"loc_id": 7618, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 8773.5, "z": -893.6, "px": 3545.3, "py": 1895.5}, {"loc_id": 7618, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": 8773.5, "z": -893.6, "px": 3545.3, "py": 1895.5}, {"loc_id": 7620, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": 8705.0, "z": -1218.1, "px": 3533.7, "py": 1840.1}, {"loc_id": 7622, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": 4731.1, "z": -4736.4, "px": 2855.4, "py": 1239.7}, {"loc_id": 7623, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": -967.4, "z": -7804.5, "px": 1882.9, "py": 716.0}, {"loc_id": 7625, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": 120.3, "z": 6984.0, "px": 2068.5, "py": 3239.9}, {"loc_id": 7627, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -63.7, "z": -6969.0, "px": 2037.1, "py": 858.6}, {"loc_id": 7627, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": -63.7, "z": -6969.0, "px": 2037.1, "py": 858.6}, {"loc_id": 7629, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 4926.1, "z": -5959.1, "px": 2888.7, "py": 1031.0}, {"loc_id": 7630, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": -3064.3, "z": -6205.0, "px": 1525.0, "py": 989.0}, {"loc_id": 7632, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 7611.1, "z": -4603.8, "px": 3347.0, "py": 1262.3}, {"loc_id": 7633, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -9276.9, "z": 703.2, "px": 464.7, "py": 2168.0}, {"loc_id": 7633, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": -9276.9, "z": 703.2, "px": 464.7, "py": 2168.0}, {"loc_id": 7640, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 5563.4, "z": 5509.5, "px": 2997.5, "py": 2988.3}, {"loc_id": 7640, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": 5563.4, "z": 5509.5, "px": 2997.5, "py": 2988.3}, {"loc_id": 7641, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -9729.3, "z": -1918.9, "px": 387.5, "py": 1720.5}, {"loc_id": 7642, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 2, "x": 8067.5, "z": 2809.4, "px": 3424.9, "py": 2527.5}, {"loc_id": 7644, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 384.2, "z": -7426.2, "px": 2113.6, "py": 780.6}, {"loc_id": 7647, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 8134.5, "z": -1793.5, "px": 3436.3, "py": 1741.9}, {"loc_id": 7649, "loc_name": "Mistlands_GuardTower1_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -8130.9, "z": -3836.9, "px": 660.3, "py": 1393.2}, {"loc_id": 7657, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -8585.7, "z": -1417.4, "px": 582.7, "py": 1806.1}, {"loc_id": 7663, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": 4936.2, "z": -4861.6, "px": 2890.4, "py": 1218.3}, {"loc_id": 7668, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -2946.9, "z": 5502.3, "px": 1545.1, "py": 2987.1}, {"loc_id": 7669, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -6474.5, "z": -4347.9, "px": 943.0, "py": 1306.0}, {"loc_id": 7670, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": 4345.4, "z": 6281.5, "px": 2789.6, "py": 3120.0}, {"loc_id": 7671, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -7235.9, "z": 1217.1, "px": 813.1, "py": 2255.7}, {"loc_id": 7673, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": 6271.2, "z": -4485.0, "px": 3118.3, "py": 1282.6}, {"loc_id": 7675, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -6600.6, "z": 3140.5, "px": 921.5, "py": 2584.0}, {"loc_id": 7676, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -7422.8, "z": 3909.1, "px": 781.2, "py": 2715.2}, {"loc_id": 7687, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -5364.0, "z": -3063.8, "px": 1132.5, "py": 1525.1}, {"loc_id": 7691, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -3783.2, "z": 5759.7, "px": 1402.3, "py": 3031.0}, {"loc_id": 7702, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -6647.2, "z": -2999.0, "px": 913.5, "py": 1536.2}, {"loc_id": 7703, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -6528.8, "z": -3319.6, "px": 933.8, "py": 1481.5}, {"loc_id": 7705, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -702.2, "z": -7499.0, "px": 1928.2, "py": 768.2}, {"loc_id": 7706, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -7156.4, "z": 955.7, "px": 826.6, "py": 2211.1}, {"loc_id": 7712, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": 7615.9, "z": -3636.7, "px": 3347.8, "py": 1427.3}, {"loc_id": 7713, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -6404.5, "z": 709.8, "px": 955.0, "py": 2169.1}, {"loc_id": 7718, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -7426.9, "z": -2820.7, "px": 780.5, "py": 1566.6}, {"loc_id": 7723, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -6069.7, "z": -5559.5, "px": 1012.1, "py": 1099.2}, {"loc_id": 7728, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": 8320.0, "z": 1021.4, "px": 3467.9, "py": 2222.3}, {"loc_id": 7733, "loc_name": "Mistlands_GuardTower1_ruined_new2", "item": "SpawnOnce: Seeker", "count": 2, "x": -7734.3, "z": -3000.3, "px": 728.0, "py": 1535.9}, {"loc_id": 7734, "loc_name": "Mistlands_GuardTower1_ruined_new2", "item": "SpawnOnce: Seeker", "count": 2, "x": 8895.0, "z": -2168.7, "px": 3566.1, "py": 1677.9}, {"loc_id": 7735, "loc_name": "Mistlands_GuardTower1_ruined_new2", "item": "SpawnOnce: Seeker", "count": 2, "x": 5942.2, "z": 3066.0, "px": 3062.1, "py": 2571.3}, {"loc_id": 7736, "loc_name": "Mistlands_GuardTower1_ruined_new2", "item": "SpawnOnce: Seeker", "count": 2, "x": 1013.1, "z": 7803.9, "px": 2220.9, "py": 3379.9}, {"loc_id": 7738, "loc_name": "Mistlands_GuardTower1_ruined_new2", "item": "SpawnOnce: Seeker", "count": 2, "x": 7302.6, "z": -128.0, "px": 3294.3, "py": 2026.2}, {"loc_id": 7741, "loc_name": "Mistlands_GuardTower1_ruined_new2", "item": "SpawnOnce: Seeker", "count": 2, "x": 9588.2, "z": 1736.5, "px": 3684.4, "py": 2344.4}, {"loc_id": 7743, "loc_name": "Mistlands_GuardTower1_ruined_new2", "item": "SpawnOnce: Seeker", "count": 2, "x": -3083.5, "z": -6342.7, "px": 1521.7, "py": 965.5}, {"loc_id": 7745, "loc_name": "Mistlands_GuardTower1_ruined_new2", "item": "SpawnOnce: Seeker", "count": 2, "x": 9024.7, "z": -2955.2, "px": 3588.2, "py": 1543.6}, {"loc_id": 7746, "loc_name": "Mistlands_GuardTower1_ruined_new2", "item": "SpawnOnce: Seeker", "count": 2, "x": -7040.0, "z": -1995.1, "px": 846.5, "py": 1707.5}, {"loc_id": 7748, "loc_name": "Mistlands_GuardTower1_ruined_new2", "item": "SpawnOnce: Seeker", "count": 2, "x": -9225.0, "z": 1019.2, "px": 473.6, "py": 2221.9}, {"loc_id": 7749, "loc_name": "Mistlands_GuardTower1_ruined_new2", "item": "SpawnOnce: Seeker", "count": 2, "x": -1975.5, "z": 6793.9, "px": 1710.8, "py": 3207.5}, {"loc_id": 7751, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": -5956.9, "z": 1222.3, "px": 1031.4, "py": 2256.6}, {"loc_id": 7756, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": -6392.8, "z": 574.2, "px": 957.0, "py": 2146.0}, {"loc_id": 7758, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": -1407.2, "z": 7363.1, "px": 1807.8, "py": 3304.6}, {"loc_id": 7760, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": -7359.1, "z": -2559.7, "px": 792.0, "py": 1611.1}, {"loc_id": 7762, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": 8322.9, "z": -3010.1, "px": 3468.4, "py": 1534.3}, {"loc_id": 7763, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 2622.0, "z": 6073.6, "px": 2495.5, "py": 3084.6}, {"loc_id": 7763, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": 2622.0, "z": 6073.6, "px": 2495.5, "py": 3084.6}, {"loc_id": 7765, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": -1720.6, "z": -7111.2, "px": 1754.4, "py": 834.4}, {"loc_id": 7766, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -9530.3, "z": -1852.9, "px": 421.5, "py": 1731.8}, {"loc_id": 7769, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 379.3, "z": 7164.6, "px": 2112.7, "py": 3270.8}, {"loc_id": 7769, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": 379.3, "z": 7164.6, "px": 2112.7, "py": 3270.8}, {"loc_id": 7772, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -2758.7, "z": 6525.8, "px": 1577.2, "py": 3161.7}, {"loc_id": 7772, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": -2758.7, "z": 6525.8, "px": 1577.2, "py": 3161.7}, {"loc_id": 7773, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": 8442.1, "z": -1081.8, "px": 3488.8, "py": 1863.4}, {"loc_id": 7774, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 5820.3, "z": 2557.6, "px": 3041.3, "py": 2484.5}, {"loc_id": 7775, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": 6022.2, "z": 1913.3, "px": 3075.8, "py": 2374.5}, {"loc_id": 7778, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": 9095.9, "z": 1351.9, "px": 3600.4, "py": 2278.7}, {"loc_id": 7779, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": 4222.3, "z": 6081.1, "px": 2768.6, "py": 3085.8}, {"loc_id": 7783, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": 8510.1, "z": -577.2, "px": 3500.4, "py": 1949.5}, {"loc_id": 7784, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": 6333.6, "z": 2887.8, "px": 3128.9, "py": 2540.9}, {"loc_id": 7786, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 4230.0, "z": -6151.6, "px": 2769.9, "py": 998.1}, {"loc_id": 7787, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": -5306.6, "z": 4800.3, "px": 1142.3, "py": 2867.3}, {"loc_id": 7788, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 3837.1, "z": -5441.0, "px": 2702.9, "py": 1119.4}, {"loc_id": 7790, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": -2882.0, "z": -6147.0, "px": 1556.1, "py": 998.9}, {"loc_id": 7794, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": -9338.8, "z": 825.7, "px": 454.2, "py": 2188.9}, {"loc_id": 7795, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 4154.6, "z": -5051.2, "px": 2757.1, "py": 1185.9}, {"loc_id": 7795, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": 4154.6, "z": -5051.2, "px": 2757.1, "py": 1185.9}, {"loc_id": 7796, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": 3963.4, "z": -5382.0, "px": 2724.4, "py": 1129.5}, {"loc_id": 7797, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": 9018.2, "z": -1029.7, "px": 3587.1, "py": 1872.3}, {"loc_id": 7798, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": 388.6, "z": 6973.8, "px": 2114.3, "py": 3238.2}, {"loc_id": 7801, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": -2756.4, "z": -6465.0, "px": 1577.6, "py": 944.6}, {"loc_id": 7802, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 4420.9, "z": 5758.4, "px": 2802.5, "py": 3030.8}, {"loc_id": 7802, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": 4420.9, "z": 5758.4, "px": 2802.5, "py": 3030.8}, {"loc_id": 7805, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": -770.1, "z": 6727.9, "px": 1916.6, "py": 3196.2}, {"loc_id": 7806, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": 8259.2, "z": 2555.0, "px": 3457.6, "py": 2484.1}, {"loc_id": 7808, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": 6530.5, "z": 3002.0, "px": 3162.5, "py": 2560.3}, {"loc_id": 7811, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 1541.3, "z": -6585.5, "px": 2311.0, "py": 924.1}, {"loc_id": 7812, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": -1471.2, "z": -7427.0, "px": 1796.9, "py": 780.5}, {"loc_id": 7813, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": -5432.7, "z": 5880.4, "px": 1120.8, "py": 3051.6}, {"loc_id": 7814, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": 5953.4, "z": 5882.8, "px": 3064.0, "py": 3052.0}, {"loc_id": 7815, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": 7557.4, "z": -4741.1, "px": 3337.8, "py": 1238.9}, {"loc_id": 7816, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 2809.6, "z": 5628.1, "px": 2527.5, "py": 3008.5}, {"loc_id": 7817, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -7237.5, "z": 1347.3, "px": 812.8, "py": 2277.9}, {"loc_id": 7818, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 2, "x": -2046.0, "z": -7047.5, "px": 1698.8, "py": 845.2}, {"loc_id": 7819, "loc_name": "Mistlands_GuardTower2_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 1157.7, "z": 7100.9, "px": 2245.6, "py": 3259.9}, {"loc_id": 7828, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 9606.1, "z": -761.8, "px": 3687.4, "py": 1918.0}, {"loc_id": 7830, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 6138.7, "z": -4474.4, "px": 3095.7, "py": 1284.4}, {"loc_id": 7831, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -1592.3, "z": 7489.3, "px": 1776.2, "py": 3326.2}, {"loc_id": 7831, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -1592.3, "z": 7489.3, "px": 1776.2, "py": 3326.2}, {"loc_id": 7832, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -6340.2, "z": 3705.0, "px": 965.9, "py": 2680.3}, {"loc_id": 7835, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 1086.9, "z": -7365.5, "px": 2233.5, "py": 791.0}, {"loc_id": 7836, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 5821.2, "z": 5185.0, "px": 3041.5, "py": 2932.9}, {"loc_id": 7837, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -1339.3, "z": -6266.3, "px": 1819.4, "py": 978.6}, {"loc_id": 7839, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 8642.5, "z": 711.8, "px": 3523.0, "py": 2169.5}, {"loc_id": 7839, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 8642.5, "z": 711.8, "px": 3523.0, "py": 2169.5}, {"loc_id": 7841, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -8250.8, "z": -444.8, "px": 639.9, "py": 1972.1}, {"loc_id": 7843, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 7746.3, "z": 4220.3, "px": 3370.0, "py": 2768.3}, {"loc_id": 7845, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -8578.1, "z": 192.6, "px": 584.0, "py": 2080.9}, {"loc_id": 7846, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -3136.3, "z": 6151.6, "px": 1512.7, "py": 3097.9}, {"loc_id": 7847, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -8576.6, "z": 1533.8, "px": 584.3, "py": 2309.8}, {"loc_id": 7847, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -8576.6, "z": 1533.8, "px": 584.3, "py": 2309.8}, {"loc_id": 7848, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 6140.1, "z": 2812.1, "px": 3095.9, "py": 2527.9}, {"loc_id": 7850, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -9144.3, "z": -2438.5, "px": 487.4, "py": 1631.8}, {"loc_id": 7851, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 8763.7, "z": -1026.8, "px": 3543.7, "py": 1872.8}, {"loc_id": 7852, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 3960.1, "z": -5702.6, "px": 2723.9, "py": 1074.8}, {"loc_id": 7854, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -2170.7, "z": 7107.3, "px": 1677.5, "py": 3261.0}, {"loc_id": 7854, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -2170.7, "z": 7107.3, "px": 1677.5, "py": 3261.0}, {"loc_id": 7855, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -6075.1, "z": -1086.8, "px": 1011.2, "py": 1862.5}, {"loc_id": 7855, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -6075.1, "z": -1086.8, "px": 1011.2, "py": 1862.5}, {"loc_id": 7857, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 9208.9, "z": -1153.3, "px": 3619.7, "py": 1851.2}, {"loc_id": 7858, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 9156.7, "z": -2108.2, "px": 3610.7, "py": 1688.2}, {"loc_id": 7859, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -1080.3, "z": -7545.9, "px": 1863.6, "py": 760.2}, {"loc_id": 7861, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -6533.8, "z": -4475.4, "px": 932.9, "py": 1284.2}, {"loc_id": 7862, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -8315.9, "z": -3512.0, "px": 628.8, "py": 1448.6}, {"loc_id": 7863, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -7357.7, "z": 1403.5, "px": 792.3, "py": 2287.5}, {"loc_id": 7864, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 8198.8, "z": -2879.2, "px": 3447.3, "py": 1556.6}, {"loc_id": 7866, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 3905.0, "z": -5562.7, "px": 2714.5, "py": 1098.6}, {"loc_id": 7867, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -1607.6, "z": -5959.5, "px": 1773.6, "py": 1030.9}, {"loc_id": 7868, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 3078.7, "z": 6266.7, "px": 2573.4, "py": 3117.5}, {"loc_id": 7868, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 3078.7, "z": 6266.7, "px": 2573.4, "py": 3117.5}, {"loc_id": 7869, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 8571.4, "z": 440.6, "px": 3510.9, "py": 2123.2}, {"loc_id": 7869, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 8571.4, "z": 440.6, "px": 3510.9, "py": 2123.2}, {"loc_id": 7871, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -3064.2, "z": 6397.6, "px": 1525.0, "py": 3139.9}, {"loc_id": 7871, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -3064.2, "z": 6397.6, "px": 1525.0, "py": 3139.9}, {"loc_id": 7872, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -8390.1, "z": 7.7, "px": 616.1, "py": 2049.3}, {"loc_id": 7872, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -8390.1, "z": 7.7, "px": 616.1, "py": 2049.3}, {"loc_id": 7873, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 3012.5, "z": 6393.2, "px": 2562.1, "py": 3139.1}, {"loc_id": 7874, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 3962.0, "z": -5952.5, "px": 2724.2, "py": 1032.1}, {"loc_id": 7874, "loc_name": "Mistlands_GuardTower3_new", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 3962.0, "z": -5952.5, "px": 2724.2, "py": 1032.1}, {"loc_id": 7875, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -8899.5, "z": 1725.7, "px": 529.2, "py": 2342.5}, {"loc_id": 7882, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": 8643.7, "z": 570.5, "px": 3523.2, "py": 2145.4}, {"loc_id": 7888, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": 393.5, "z": -7284.4, "px": 2115.2, "py": 804.8}, {"loc_id": 7889, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -8189.6, "z": -4096.3, "px": 650.3, "py": 1348.9}, {"loc_id": 7890, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -7496.6, "z": -3073.6, "px": 768.6, "py": 1523.4}, {"loc_id": 7896, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -7880.7, "z": -191.8, "px": 703.0, "py": 2015.3}, {"loc_id": 7898, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": 1224.9, "z": -7482.7, "px": 2257.0, "py": 771.0}, {"loc_id": 7899, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": 4097.2, "z": -6090.9, "px": 2747.3, "py": 1008.5}, {"loc_id": 7900, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": 6662.7, "z": 2814.1, "px": 3185.1, "py": 2528.3}, {"loc_id": 7902, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": 1332.1, "z": 7416.8, "px": 2275.3, "py": 3313.8}, {"loc_id": 7905, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -5238.4, "z": 6075.0, "px": 1154.0, "py": 3084.8}, {"loc_id": 7909, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -1146.4, "z": -6089.7, "px": 1852.3, "py": 1008.7}, {"loc_id": 7911, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -6475.1, "z": 3261.0, "px": 942.9, "py": 2604.5}, {"loc_id": 7912, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": 3014.2, "z": 6649.2, "px": 2562.4, "py": 3182.8}, {"loc_id": 7913, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": 4156.5, "z": -5509.6, "px": 2757.4, "py": 1107.7}, {"loc_id": 7917, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": 7422.1, "z": -639.4, "px": 3314.7, "py": 1938.9}, {"loc_id": 7918, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": 7221.6, "z": -3637.5, "px": 3280.5, "py": 1427.2}, {"loc_id": 7919, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -6966.1, "z": -1793.9, "px": 859.1, "py": 1741.8}, {"loc_id": 7920, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -7096.0, "z": 4032.9, "px": 836.9, "py": 2736.3}, {"loc_id": 7922, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": -959.7, "z": -7482.9, "px": 1884.2, "py": 770.9}, {"loc_id": 7923, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 2, "x": 4170.0, "z": -4802.8, "px": 2759.7, "py": 1228.3}, {"loc_id": 7925, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 4921.5, "z": -4345.8, "px": 2887.9, "py": 1306.3}, {"loc_id": 7927, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": -8194.9, "z": -3575.9, "px": 649.4, "py": 1437.7}, {"loc_id": 7928, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 6657.5, "z": -249.3, "px": 3184.2, "py": 2005.5}, {"loc_id": 7929, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -2240.2, "z": -6463.7, "px": 1665.7, "py": 944.9}, {"loc_id": 7930, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 5758.7, "z": 4035.2, "px": 3030.8, "py": 2736.7}, {"loc_id": 7931, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 6153.5, "z": -1154.9, "px": 3098.2, "py": 1850.9}, {"loc_id": 7931, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 6153.5, "z": -1154.9, "px": 3098.2, "py": 1850.9}, {"loc_id": 7932, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 4099.1, "z": -5370.7, "px": 2747.6, "py": 1131.4}, {"loc_id": 7933, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -7740.3, "z": -3261.6, "px": 727.0, "py": 1491.4}, {"loc_id": 7934, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -6462.5, "z": 5570.0, "px": 945.1, "py": 2998.6}, {"loc_id": 7935, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -5949.6, "z": -5620.3, "px": 1032.6, "py": 1088.8}, {"loc_id": 7936, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 8056.0, "z": 1141.6, "px": 3422.9, "py": 2242.8}, {"loc_id": 7936, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 8056.0, "z": 1141.6, "px": 3422.9, "py": 2242.8}, {"loc_id": 7937, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 3204.7, "z": 6842.7, "px": 2594.9, "py": 3215.8}, {"loc_id": 7937, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 3204.7, "z": 6842.7, "px": 2594.9, "py": 3215.8}, {"loc_id": 7938, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -7412.7, "z": -1348.6, "px": 782.9, "py": 1817.8}, {"loc_id": 7938, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": -7412.7, "z": -1348.6, "px": 782.9, "py": 1817.8}, {"loc_id": 7939, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -8516.0, "z": 1993.4, "px": 594.6, "py": 2388.2}, {"loc_id": 7940, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 7740.7, "z": 2677.2, "px": 3369.1, "py": 2504.9}, {"loc_id": 7941, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 383.9, "z": 6721.7, "px": 2113.5, "py": 3195.2}, {"loc_id": 7943, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -7425.2, "z": -3452.2, "px": 780.8, "py": 1458.8}, {"loc_id": 7945, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 6154.2, "z": -1603.4, "px": 3098.3, "py": 1774.4}, {"loc_id": 7946, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 7235.2, "z": -2113.4, "px": 3282.8, "py": 1687.3}, {"loc_id": 7947, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -8948.8, "z": 1023.5, "px": 520.7, "py": 2222.7}, {"loc_id": 7948, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 6788.4, "z": 1290.5, "px": 3206.6, "py": 2268.2}, {"loc_id": 7949, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 136.6, "z": -6856.0, "px": 2071.3, "py": 877.9}, {"loc_id": 7950, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 2376.3, "z": -6920.7, "px": 2453.6, "py": 866.9}, {"loc_id": 7950, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 2376.3, "z": -6920.7, "px": 2453.6, "py": 866.9}, {"loc_id": 7951, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 6079.8, "z": 2429.8, "px": 3085.6, "py": 2462.7}, {"loc_id": 7952, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -9341.6, "z": -583.4, "px": 453.7, "py": 1948.4}, {"loc_id": 7955, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -1605.7, "z": -7239.3, "px": 1774.0, "py": 812.5}, {"loc_id": 7956, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 1923.4, "z": -7229.2, "px": 2376.3, "py": 814.2}, {"loc_id": 7957, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -9658.2, "z": 2228.6, "px": 399.7, "py": 2428.3}, {"loc_id": 7959, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -133.0, "z": 7233.9, "px": 2025.3, "py": 3282.6}, {"loc_id": 7959, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": -133.0, "z": 7233.9, "px": 2025.3, "py": 3282.6}, {"loc_id": 7960, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -5110.0, "z": 4553.5, "px": 1175.9, "py": 2825.1}, {"loc_id": 7960, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 2, "x": -5110.0, "z": 4553.5, "px": 1175.9, "py": 2825.1}, {"loc_id": 7961, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 6274.7, "z": 2692.6, "px": 3118.9, "py": 2507.5}, {"loc_id": 7963, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 5886.8, "z": 5698.7, "px": 3052.7, "py": 3020.6}, {"loc_id": 7967, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -6270.2, "z": 4107.7, "px": 977.9, "py": 2749.0}, {"loc_id": 7967, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 2, "x": -6270.2, "z": 4107.7, "px": 977.9, "py": 2749.0}, {"loc_id": 7967, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": -6270.2, "z": 4107.7, "px": 977.9, "py": 2749.0}, {"loc_id": 7968, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": -3074.7, "z": 5386.2, "px": 1523.3, "py": 2967.2}, {"loc_id": 7969, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -5945.1, "z": 2754.6, "px": 1033.4, "py": 2518.1}, {"loc_id": 7969, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": -5945.1, "z": 2754.6, "px": 1033.4, "py": 2518.1}, {"loc_id": 7971, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 6581.4, "z": 5442.4, "px": 3171.2, "py": 2976.8}, {"loc_id": 7972, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -8826.2, "z": -1275.6, "px": 541.7, "py": 1830.3}, {"loc_id": 7973, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 2, "x": 5496.1, "z": 6260.6, "px": 2986.0, "py": 3116.5}, {"loc_id": 7973, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 5496.1, "z": 6260.6, "px": 2986.0, "py": 3116.5}, {"loc_id": 7974, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -6527.8, "z": 5685.1, "px": 933.9, "py": 3018.3}, {"loc_id": 7974, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": -6527.8, "z": 5685.1, "px": 933.9, "py": 3018.3}, {"loc_id": 7975, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -2878.1, "z": -5888.8, "px": 1556.8, "py": 1043.0}, {"loc_id": 7975, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": -2878.1, "z": -5888.8, "px": 1556.8, "py": 1043.0}, {"loc_id": 7976, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 9156.5, "z": -1018.0, "px": 3610.7, "py": 1874.3}, {"loc_id": 7977, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -6458.6, "z": -5058.7, "px": 945.7, "py": 1184.6}, {"loc_id": 7977, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 2, "x": -6458.6, "z": -5058.7, "px": 945.7, "py": 1184.6}, {"loc_id": 7978, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 6922.9, "z": 1524.1, "px": 3229.5, "py": 2308.1}, {"loc_id": 7978, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 6922.9, "z": 1524.1, "px": 3229.5, "py": 2308.1}, {"loc_id": 7984, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 7689.0, "z": 2108.7, "px": 3360.3, "py": 2407.9}, {"loc_id": 7985, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 6590.3, "z": -69.4, "px": 3172.7, "py": 2036.2}, {"loc_id": 7985, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 6590.3, "z": -69.4, "px": 3172.7, "py": 2036.2}, {"loc_id": 7985, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 2, "x": 6590.3, "z": -69.4, "px": 3172.7, "py": 2036.2}, {"loc_id": 7986, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -707.2, "z": 6590.9, "px": 1927.3, "py": 3172.8}, {"loc_id": 7986, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": -707.2, "z": 6590.9, "px": 1927.3, "py": 3172.8}, {"loc_id": 7987, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": -7228.2, "z": 2890.9, "px": 814.4, "py": 2541.4}, {"loc_id": 7988, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 2947.1, "z": 6922.2, "px": 2551.0, "py": 3229.4}, {"loc_id": 7988, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 2947.1, "z": 6922.2, "px": 2551.0, "py": 3229.4}, {"loc_id": 7989, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 4990.2, "z": 4408.6, "px": 2899.7, "py": 2800.4}, {"loc_id": 7990, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 7235.0, "z": -4731.6, "px": 3282.8, "py": 1240.5}, {"loc_id": 7991, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 5000.9, "z": -5515.9, "px": 2901.5, "py": 1106.6}, {"loc_id": 7991, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 5000.9, "z": -5515.9, "px": 2901.5, "py": 1106.6}, {"loc_id": 7993, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 9789.8, "z": -695.5, "px": 3718.8, "py": 1929.3}, {"loc_id": 7993, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 2, "x": 9789.8, "z": -695.5, "px": 3718.8, "py": 1929.3}, {"loc_id": 7995, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 1208.3, "z": -6472.7, "px": 2254.2, "py": 943.3}, {"loc_id": 7996, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -9404.7, "z": 387.6, "px": 442.9, "py": 2114.2}, {"loc_id": 7997, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -9350.6, "z": -713.8, "px": 452.2, "py": 1926.2}, {"loc_id": 7999, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 1091.9, "z": 7488.8, "px": 2234.4, "py": 3326.1}, {"loc_id": 8002, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 9663.5, "z": -449.5, "px": 3697.2, "py": 1971.3}, {"loc_id": 8004, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 8971.6, "z": 1847.6, "px": 3579.2, "py": 2363.3}, {"loc_id": 8005, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 7686.3, "z": -4294.3, "px": 3359.8, "py": 1315.1}, {"loc_id": 8007, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 4470.6, "z": 6138.3, "px": 2811.0, "py": 3095.6}, {"loc_id": 8009, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": -1212.0, "z": -5946.4, "px": 1841.2, "py": 1033.1}, {"loc_id": 8010, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 4922.6, "z": 4736.7, "px": 2888.1, "py": 2856.4}, {"loc_id": 8011, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -3338.1, "z": -6215.1, "px": 1478.3, "py": 987.3}, {"loc_id": 8011, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": -3338.1, "z": -6215.1, "px": 1478.3, "py": 987.3}, {"loc_id": 8012, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 7284.2, "z": 1912.2, "px": 3291.2, "py": 2374.3}, {"loc_id": 8013, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 7173.3, "z": -3384.0, "px": 3272.2, "py": 1470.5}, {"loc_id": 8017, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -2298.7, "z": -6710.6, "px": 1655.7, "py": 902.7}, {"loc_id": 8017, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": -2298.7, "z": -6710.6, "px": 1655.7, "py": 902.7}, {"loc_id": 8018, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 7032.2, "z": -4920.3, "px": 3248.2, "py": 1208.3}, {"loc_id": 8018, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 7032.2, "z": -4920.3, "px": 3248.2, "py": 1208.3}, {"loc_id": 8019, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 7284.4, "z": 57.1, "px": 3291.2, "py": 2057.7}, {"loc_id": 8019, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": 7284.4, "z": 57.1, "px": 3291.2, "py": 2057.7}, {"loc_id": 8020, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -4929.2, "z": 4341.8, "px": 1206.7, "py": 2789.0}, {"loc_id": 8021, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": -9736.1, "z": -1092.3, "px": 386.4, "py": 1861.6}, {"loc_id": 8021, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 2, "x": -9736.1, "z": -1092.3, "px": 386.4, "py": 1861.6}, {"loc_id": 8023, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 8649.2, "z": 1224.7, "px": 3524.1, "py": 2257.0}, {"loc_id": 8024, "loc_name": "Mistlands_Lighthouse1_new", "item": "SpawnOnce: Dverger", "count": 2, "x": 6263.8, "z": -4683.6, "px": 3117.0, "py": 1248.7}, {"loc_id": 8025, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 2, "x": 7684.5, "z": -4542.3, "px": 3359.5, "py": 1272.8}, {"loc_id": 8027, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 8648.2, "z": -2743.6, "px": 3524.0, "py": 1579.8}, {"loc_id": 8027, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 2, "x": 8648.2, "z": -2743.6, "px": 3524.0, "py": 1579.8}, {"loc_id": 8029, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 2, "x": 4468.8, "z": -6985.4, "px": 2810.7, "py": 855.8}, {"loc_id": 8031, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 7306.1, "z": 4414.0, "px": 3294.9, "py": 2801.3}, {"loc_id": 8032, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 2, "x": -1275.4, "z": -6026.3, "px": 1830.3, "py": 1019.5}, {"loc_id": 8032, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -1275.4, "z": -6026.3, "px": 1830.3, "py": 1019.5}, {"loc_id": 8036, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 2, "x": -5239.5, "z": 5817.9, "px": 1153.8, "py": 3040.9}, {"loc_id": 8036, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -5239.5, "z": 5817.9, "px": 1153.8, "py": 3040.9}, {"loc_id": 8037, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 2, "x": -2807.6, "z": 6133.8, "px": 1568.8, "py": 3094.8}, {"loc_id": 8038, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 2, "x": 8507.2, "z": -958.8, "px": 3499.9, "py": 1884.4}, {"loc_id": 8043, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -6857.8, "z": -1854.1, "px": 877.6, "py": 1731.6}, {"loc_id": 8044, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 2, "x": 9528.3, "z": 1611.5, "px": 3674.2, "py": 2323.0}, {"loc_id": 8045, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 2, "x": 4737.5, "z": 6008.2, "px": 2856.5, "py": 3073.4}, {"loc_id": 8045, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 4737.5, "z": 6008.2, "px": 2856.5, "py": 3073.4}, {"loc_id": 8047, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 9667.4, "z": 1608.9, "px": 3697.9, "py": 2322.6}, {"loc_id": 8047, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 2, "x": 9667.4, "z": 1608.9, "px": 3697.9, "py": 2322.6}, {"loc_id": 8048, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 5634.6, "z": 3466.8, "px": 3009.6, "py": 2639.7}, {"loc_id": 8052, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 2, "x": 7562.7, "z": 4278.4, "px": 3338.7, "py": 2778.2}, {"loc_id": 8053, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 3908.6, "z": 5878.8, "px": 2715.1, "py": 3051.3}, {"loc_id": 8054, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 2, "x": 1344.5, "z": 7622.1, "px": 2277.5, "py": 3348.8}, {"loc_id": 8054, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 1344.5, "z": 7622.1, "px": 2277.5, "py": 3348.8}, {"loc_id": 8055, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 2, "x": 8005.2, "z": 2763.8, "px": 3414.2, "py": 2519.7}, {"loc_id": 8055, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 8005.2, "z": 2763.8, "px": 3414.2, "py": 2519.7}, {"loc_id": 8055, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 2, "x": 8005.2, "z": 2763.8, "px": 3414.2, "py": 2519.7}, {"loc_id": 8057, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 2, "x": 8314.4, "z": -3402.0, "px": 3467.0, "py": 1467.4}, {"loc_id": 8057, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 8314.4, "z": -3402.0, "px": 3467.0, "py": 1467.4}, {"loc_id": 8059, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 9732.6, "z": -838.4, "px": 3709.0, "py": 1904.9}, {"loc_id": 8061, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 2, "x": -6473.5, "z": -3966.0, "px": 943.2, "py": 1371.1}, {"loc_id": 8062, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 2, "x": -9543.6, "z": 951.0, "px": 419.2, "py": 2210.3}, {"loc_id": 8063, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -1927.0, "z": -7109.1, "px": 1719.1, "py": 834.7}, {"loc_id": 8065, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 3782.1, "z": -5887.4, "px": 2693.5, "py": 1043.2}, {"loc_id": 8067, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 2, "x": -393.3, "z": -6396.6, "px": 1980.9, "py": 956.3}, {"loc_id": 8067, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 2, "x": -393.3, "z": -6396.6, "px": 1980.9, "py": 956.3}, {"loc_id": 8068, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 2, "x": 1475.3, "z": -6452.1, "px": 2299.8, "py": 946.8}, {"loc_id": 8069, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 2, "x": -8636.0, "z": 2037.8, "px": 574.1, "py": 2395.8}, {"loc_id": 8069, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -8636.0, "z": 2037.8, "px": 574.1, "py": 2395.8}, {"loc_id": 8070, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 2, "x": -7044.9, "z": 1204.9, "px": 845.7, "py": 2253.6}, {"loc_id": 8072, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 2, "x": -7224.3, "z": 3907.0, "px": 815.1, "py": 2714.8}, {"loc_id": 8072, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -7224.3, "z": 3907.0, "px": 815.1, "py": 2714.8}, {"loc_id": 8073, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 2, "x": 9540.0, "z": 1789.1, "px": 3676.2, "py": 2353.3}, {"loc_id": 8074, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -8635.1, "z": 1288.5, "px": 574.3, "py": 2267.9}, {"loc_id": 8075, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 2, "x": 3894.0, "z": 6027.7, "px": 2712.6, "py": 3076.7}, {"loc_id": 8077, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -1908.5, "z": 7235.3, "px": 1722.3, "py": 3282.8}, {"loc_id": 8078, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 2, "x": 8631.9, "z": 449.9, "px": 3521.2, "py": 2124.8}, {"loc_id": 8079, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 7178.6, "z": 4486.4, "px": 3273.1, "py": 2813.7}, {"loc_id": 8080, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 3846.4, "z": -6984.5, "px": 2704.5, "py": 856.0}, {"loc_id": 8082, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -1158.6, "z": -5956.1, "px": 1850.3, "py": 1031.5}, {"loc_id": 8083, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 2, "x": -7028.9, "z": -2113.9, "px": 848.4, "py": 1687.2}, {"loc_id": 8086, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 4415.9, "z": -6012.9, "px": 2801.6, "py": 1021.8}, {"loc_id": 8087, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 2, "x": 266.8, "z": 7100.9, "px": 2093.5, "py": 3259.9}, {"loc_id": 8088, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 197.6, "z": 7223.1, "px": 2081.7, "py": 3280.7}, {"loc_id": 8093, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 2, "x": -2045.3, "z": 7358.7, "px": 1698.9, "py": 3303.9}, {"loc_id": 8094, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 2, "x": 3721.6, "z": -5574.1, "px": 2683.2, "py": 1096.7}, {"loc_id": 8094, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 2, "x": 3721.6, "z": -5574.1, "px": 2683.2, "py": 1096.7}, {"loc_id": 8095, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 6197.6, "z": -4550.0, "px": 3105.7, "py": 1271.5}, {"loc_id": 8096, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 2, "x": 11.4, "z": 7429.3, "px": 2049.9, "py": 3315.9}, {"loc_id": 8098, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 2, "x": 4225.1, "z": -5451.5, "px": 2769.1, "py": 1117.6}, {"loc_id": 8099, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 2, "x": -7096.6, "z": 1333.7, "px": 836.8, "py": 2275.6}, {"loc_id": 8100, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 6984.1, "z": -774.0, "px": 3240.0, "py": 1915.9}, {"loc_id": 8101, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 2, "x": 2946.3, "z": 6714.7, "px": 2550.8, "py": 3194.0}, {"loc_id": 8103, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 2, "x": -8260.5, "z": -391.8, "px": 638.2, "py": 1981.1}, {"loc_id": 8116, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 2, "x": -6286.2, "z": -1083.7, "px": 975.2, "py": 1863.0}, {"loc_id": 8140, "loc_name": "Mistlands_Excavation3", "item": "SpawnOnce: Seeker", "count": 2, "x": 8882.2, "z": 446.4, "px": 3563.9, "py": 2124.2}, {"loc_id": 8146, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 2, "x": -7867.7, "z": 4669.4, "px": 705.2, "py": 2844.9}, {"loc_id": 8147, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 1672.6, "z": -7171.2, "px": 2333.5, "py": 824.1}, {"loc_id": 8150, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -8195.2, "z": -2882.8, "px": 649.4, "py": 1556.0}, {"loc_id": 8152, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -4856.9, "z": 4404.5, "px": 1219.1, "py": 2799.7}, {"loc_id": 8153, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 2, "x": 9800.8, "z": 1732.5, "px": 3720.7, "py": 2343.7}, {"loc_id": 8153, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 9800.8, "z": 1732.5, "px": 3720.7, "py": 2343.7}, {"loc_id": 8155, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 7809.2, "z": 3847.7, "px": 3380.8, "py": 2704.7}, {"loc_id": 8157, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 2, "x": -7490.5, "z": -312.7, "px": 769.6, "py": 1994.6}, {"loc_id": 8177, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -7038.7, "z": 4157.0, "px": 846.7, "py": 2757.5}, {"loc_id": 8178, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 2, "x": 8001.9, "z": 3643.4, "px": 3413.7, "py": 2669.8}, {"loc_id": 8186, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -1600.6, "z": -6200.9, "px": 1774.8, "py": 989.7}, {"loc_id": 8187, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 9605.3, "z": -1727.6, "px": 3687.3, "py": 1753.2}, {"loc_id": 8188, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -8372.8, "z": -4228.5, "px": 619.0, "py": 1326.3}, {"loc_id": 8190, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 5571.9, "z": 2496.4, "px": 2998.9, "py": 2474.1}, {"loc_id": 8193, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 2, "x": 6584.2, "z": -2501.2, "px": 3171.7, "py": 1621.1}, {"loc_id": 8197, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 2, "x": 9401.2, "z": -1352.7, "px": 3652.5, "py": 1817.1}, {"loc_id": 8199, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 2, "x": 9659.8, "z": 2492.6, "px": 3696.6, "py": 2473.4}, {"loc_id": 8200, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 2, "x": 7995.7, "z": -3254.1, "px": 3412.6, "py": 1492.6}, {"loc_id": 8201, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 3007.4, "z": -7107.6, "px": 2561.3, "py": 835.0}, {"loc_id": 8202, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -3967.4, "z": 6155.8, "px": 1370.9, "py": 3098.6}, {"loc_id": 8204, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 2, "x": -5771.1, "z": 1269.4, "px": 1063.1, "py": 2264.6}, {"loc_id": 8212, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 2, "x": -8308.6, "z": 516.4, "px": 630.0, "py": 2136.1}, {"loc_id": 8219, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -8586.2, "z": -2750.8, "px": 582.6, "py": 1578.5}, {"loc_id": 8223, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 2, "x": 4860.6, "z": 6324.6, "px": 2877.5, "py": 3127.4}, {"loc_id": 8224, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 2, "x": 6974.6, "z": 5377.8, "px": 3238.3, "py": 2965.8}, {"loc_id": 8226, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": -3258.2, "z": 5442.2, "px": 1491.9, "py": 2976.8}, {"loc_id": 8227, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 2, "x": 969.9, "z": -7232.3, "px": 2213.5, "py": 813.7}, {"loc_id": 8232, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 5963.2, "z": -4617.2, "px": 3065.7, "py": 1260.0}, {"loc_id": 8237, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 2, "x": -8837.1, "z": 2870.9, "px": 539.8, "py": 2538.0}, {"loc_id": 8239, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 4661.4, "z": -4023.5, "px": 2843.5, "py": 1361.3}, {"loc_id": 8241, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 2, "x": 7548.1, "z": 3060.3, "px": 3336.2, "py": 2570.3}, {"loc_id": 8241, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 2, "x": 7548.1, "z": 3060.3, "px": 3336.2, "py": 2570.3}, {"loc_id": 9944, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 2, "x": -1152.0, "z": -9472.0, "px": 1851.4, "py": 431.4}, {"loc_id": 9950, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 2, "x": -320.0, "z": -9920.0, "px": 1993.4, "py": 355.0}, {"loc_id": 9951, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 2, "x": -384.0, "z": -9920.0, "px": 1982.5, "py": 355.0}, {"loc_id": 9953, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 2, "x": -768.0, "z": -8896.0, "px": 1916.9, "py": 529.7}, {"loc_id": 9954, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 2, "x": 320.0, "z": -8896.0, "px": 2102.6, "py": 529.7}, {"loc_id": 9955, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 2, "x": -704.0, "z": -9472.0, "px": 1927.9, "py": 431.4}, {"loc_id": 9956, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 2, "x": 320.0, "z": -8960.0, "px": 2102.6, "py": 518.8}, {"loc_id": 9957, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 2, "x": 1280.0, "z": -9408.0, "px": 2266.5, "py": 442.4}, {"loc_id": 9957, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 2, "x": 1280.0, "z": -9408.0, "px": 2266.5, "py": 442.4}, {"loc_id": 9958, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 2, "x": -2240.0, "z": -8832.0, "px": 1665.7, "py": 540.7}, {"loc_id": 9958, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 2, "x": -2240.0, "z": -8832.0, "px": 1665.7, "py": 540.7}, {"loc_id": 9959, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 2, "x": 768.0, "z": -9088.0, "px": 2179.1, "py": 497.0}, {"loc_id": 9964, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 2, "x": 1536.0, "z": -9408.0, "px": 2310.1, "py": 442.4}, {"loc_id": 9969, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 2, "x": 832.0, "z": -9088.0, "px": 2190.0, "py": 497.0}, {"loc_id": 9970, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 2, "x": -512.0, "z": -9152.0, "px": 1960.6, "py": 486.1}, {"loc_id": 9970, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 2, "x": -512.0, "z": -9152.0, "px": 1960.6, "py": 486.1}, {"loc_id": 9971, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 2, "x": 320.0, "z": -8832.0, "px": 2102.6, "py": 540.7}, {"loc_id": 9972, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 2, "x": 1152.0, "z": -8960.0, "px": 2244.6, "py": 518.8}, {"loc_id": 9973, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 2, "x": -704.0, "z": -9344.0, "px": 1927.9, "py": 453.3}, {"loc_id": 9975, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 2, "x": 768.0, "z": -9024.0, "px": 2179.1, "py": 507.9}, {"loc_id": 9975, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 2, "x": 768.0, "z": -9024.0, "px": 2179.1, "py": 507.9}, {"loc_id": 9978, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 2, "x": -448.0, "z": -9920.0, "px": 1971.5, "py": 355.0}, {"loc_id": 9980, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 2, "x": -768.0, "z": -9344.0, "px": 1916.9, "py": 453.3}, {"loc_id": 9981, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 2, "x": -448.0, "z": -8832.0, "px": 1971.5, "py": 540.7}, {"loc_id": 9987, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 2, "x": -384.0, "z": -8768.0, "px": 1982.5, "py": 551.6}, {"loc_id": 9992, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 2, "x": -832.0, "z": -9216.0, "px": 1906.0, "py": 475.1}, {"loc_id": 9993, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 2, "x": 1216.0, "z": -8960.0, "px": 2255.5, "py": 518.8}, {"loc_id": 9997, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 2, "x": 1152.0, "z": -8896.0, "px": 2244.6, "py": 529.7}, {"loc_id": 9999, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 2, "x": 1536.0, "z": -9088.0, "px": 2310.1, "py": 497.0}, {"loc_id": 10000, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 2, "x": 704.0, "z": -8960.0, "px": 2168.1, "py": 518.8}, {"loc_id": 10001, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 2, "x": 1536.0, "z": -9216.0, "px": 2310.1, "py": 475.1}, {"loc_id": 10005, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 2, "x": 384.0, "z": -8704.0, "px": 2113.5, "py": 562.5}, {"loc_id": 10006, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 2, "x": 384.0, "z": -9024.0, "px": 2113.5, "py": 507.9}, {"loc_id": 10006, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 2, "x": 384.0, "z": -9024.0, "px": 2113.5, "py": 507.9}, {"loc_id": 10009, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 2, "x": 832.0, "z": -9344.0, "px": 2190.0, "py": 453.3}, {"loc_id": 10009, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 2, "x": 832.0, "z": -9344.0, "px": 2190.0, "py": 453.3}, {"loc_id": 10010, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 2, "x": -640.0, "z": -9728.0, "px": 1938.8, "py": 387.8}, {"loc_id": 10010, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 2, "x": -640.0, "z": -9728.0, "px": 1938.8, "py": 387.8}, {"loc_id": 10011, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 2, "x": 384.0, "z": -8640.0, "px": 2113.5, "py": 573.4}, {"loc_id": 10011, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 2, "x": 384.0, "z": -8640.0, "px": 2113.5, "py": 573.4}, {"loc_id": 10013, "loc_name": "FortressRuins", "item": "SpawnOnce: Charred_Twitcher", "count": 2, "x": 1216.0, "z": -9344.0, "px": 2255.5, "py": 453.3}, {"loc_id": 10014, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 2, "x": -448.0, "z": -8896.0, "px": 1971.5, "py": 529.7}, {"loc_id": 10015, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 2, "x": 640.0, "z": -8960.0, "px": 2157.2, "py": 518.8}, {"loc_id": 10363, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -178.8, "z": -9678.8, "px": 2017.5, "py": 396.2}, {"loc_id": 10364, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -3726.4, "z": -8563.2, "px": 1412.0, "py": 586.5}, {"loc_id": 10367, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 572.8, "z": -9657.4, "px": 2145.8, "py": 399.8}, {"loc_id": 10368, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -5427.0, "z": -7869.7, "px": 1121.8, "py": 704.9}, {"loc_id": 10369, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -264.5, "z": -9614.6, "px": 2002.9, "py": 407.1}, {"loc_id": 10370, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -5363.1, "z": -7603.3, "px": 1132.7, "py": 750.4}, {"loc_id": 10372, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -1151.4, "z": -9010.3, "px": 1851.5, "py": 510.2}, {"loc_id": 10373, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -4978.9, "z": -8394.5, "px": 1198.3, "py": 615.3}, {"loc_id": 10378, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 2038.7, "z": -9394.2, "px": 2395.9, "py": 444.7}, {"loc_id": 10378, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 2038.7, "z": -9394.2, "px": 2395.9, "py": 444.7}, {"loc_id": 10381, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -896.0, "z": -9331.5, "px": 1895.1, "py": 455.4}, {"loc_id": 10382, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 3701.1, "z": -8573.0, "px": 2679.7, "py": 584.9}, {"loc_id": 10383, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -4239.0, "z": -8143.4, "px": 1324.5, "py": 658.2}, {"loc_id": 10383, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -4239.0, "z": -8143.4, "px": 1324.5, "py": 658.2}, {"loc_id": 10390, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -4866.9, "z": -8375.3, "px": 1217.4, "py": 618.6}, {"loc_id": 10390, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -4866.9, "z": -8375.3, "px": 1217.4, "py": 618.6}, {"loc_id": 10392, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -3720.1, "z": -8753.1, "px": 1413.1, "py": 554.1}, {"loc_id": 10394, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 2487.7, "z": -8949.6, "px": 2472.6, "py": 520.6}, {"loc_id": 10397, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -714.9, "z": -8821.4, "px": 1926.0, "py": 542.5}, {"loc_id": 10398, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 576.9, "z": -9851.4, "px": 2146.5, "py": 366.7}, {"loc_id": 10399, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 1664.3, "z": -9478.6, "px": 2332.0, "py": 430.3}, {"loc_id": 10400, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 1676.6, "z": -9329.5, "px": 2334.1, "py": 455.8}, {"loc_id": 10401, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 2306.0, "z": -8389.1, "px": 2441.6, "py": 616.3}, {"loc_id": 10402, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 1088.3, "z": -9472.8, "px": 2233.7, "py": 431.3}, {"loc_id": 10402, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 1088.3, "z": -9472.8, "px": 2233.7, "py": 431.3}, {"loc_id": 10403, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 189.0, "z": -9527.4, "px": 2080.3, "py": 422.0}, {"loc_id": 10406, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 3595.5, "z": -8307.0, "px": 2661.6, "py": 630.3}, {"loc_id": 10406, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 3595.5, "z": -8307.0, "px": 2661.6, "py": 630.3}, {"loc_id": 10409, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -1861.2, "z": -9164.1, "px": 1730.4, "py": 484.0}, {"loc_id": 10410, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -3518.8, "z": -8713.9, "px": 1447.5, "py": 560.8}, {"loc_id": 10411, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 887.4, "z": -8764.2, "px": 2199.4, "py": 552.2}, {"loc_id": 10412, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 1017.0, "z": -8768.9, "px": 2221.6, "py": 551.4}, {"loc_id": 10415, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -4303.0, "z": -8258.8, "px": 1313.6, "py": 638.5}, {"loc_id": 10417, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -2802.5, "z": -8379.1, "px": 1569.7, "py": 618.0}, {"loc_id": 10418, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 5321.0, "z": -7875.7, "px": 2956.1, "py": 703.9}, {"loc_id": 10419, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -3782.3, "z": -9217.5, "px": 1402.5, "py": 474.9}, {"loc_id": 10420, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -70.1, "z": -8700.7, "px": 2036.0, "py": 563.1}, {"loc_id": 10422, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -885.8, "z": -9905.3, "px": 1896.8, "py": 357.5}, {"loc_id": 10423, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 563.6, "z": -8575.6, "px": 2144.2, "py": 584.4}, {"loc_id": 10424, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 1987.6, "z": -9480.5, "px": 2387.2, "py": 430.0}, {"loc_id": 10424, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 1987.6, "z": -9480.5, "px": 2387.2, "py": 430.0}, {"loc_id": 10425, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -5061.7, "z": -7682.4, "px": 1184.1, "py": 736.9}, {"loc_id": 10426, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -432.9, "z": -8636.1, "px": 1974.1, "py": 574.1}, {"loc_id": 10427, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -3975.9, "z": -8756.2, "px": 1369.4, "py": 553.6}, {"loc_id": 10428, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -1932.8, "z": -8893.4, "px": 1718.1, "py": 530.2}, {"loc_id": 10429, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -2437.7, "z": -8388.7, "px": 1632.0, "py": 616.3}, {"loc_id": 10430, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -4019.5, "z": -8881.7, "px": 1362.0, "py": 532.2}, {"loc_id": 10430, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -4019.5, "z": -8881.7, "px": 1362.0, "py": 532.2}, {"loc_id": 10431, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -6335.5, "z": -7628.0, "px": 966.7, "py": 746.2}, {"loc_id": 10432, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -3774.0, "z": -8316.7, "px": 1403.9, "py": 628.6}, {"loc_id": 10433, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -3760.1, "z": -8901.8, "px": 1406.3, "py": 528.8}, {"loc_id": 10436, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -3636.7, "z": -9165.9, "px": 1427.3, "py": 483.7}, {"loc_id": 10437, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 143.4, "z": -9335.6, "px": 2072.5, "py": 454.7}, {"loc_id": 10437, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 143.4, "z": -9335.6, "px": 2072.5, "py": 454.7}, {"loc_id": 10438, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -2370.6, "z": -8899.1, "px": 1643.4, "py": 529.2}, {"loc_id": 10439, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -3913.0, "z": -8241.8, "px": 1380.2, "py": 641.4}, {"loc_id": 10441, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 3318.3, "z": -8311.0, "px": 2614.3, "py": 629.6}, {"loc_id": 10442, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 1329.5, "z": -9103.8, "px": 2274.9, "py": 494.3}, {"loc_id": 10444, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 3446.6, "z": -8053.2, "px": 2636.2, "py": 673.6}, {"loc_id": 10445, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 3342.8, "z": -8636.9, "px": 2618.5, "py": 574.0}, {"loc_id": 10447, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -4429.8, "z": -7933.1, "px": 1292.0, "py": 694.1}, {"loc_id": 10448, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -635.2, "z": -8646.3, "px": 1939.6, "py": 572.4}, {"loc_id": 10448, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -635.2, "z": -8646.3, "px": 1939.6, "py": 572.4}, {"loc_id": 10449, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 4083.4, "z": -8968.4, "px": 2744.9, "py": 517.4}, {"loc_id": 10450, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -2251.6, "z": -8376.6, "px": 1663.7, "py": 618.4}, {"loc_id": 10453, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -5133.1, "z": -7602.2, "px": 1172.0, "py": 750.6}, {"loc_id": 10456, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -316.3, "z": -9088.7, "px": 1994.0, "py": 496.9}, {"loc_id": 10459, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -3466.1, "z": -8944.4, "px": 1456.5, "py": 521.5}, {"loc_id": 10460, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -1410.6, "z": -9741.7, "px": 1807.3, "py": 385.4}, {"loc_id": 10462, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 2300.9, "z": -9147.2, "px": 2440.7, "py": 486.9}, {"loc_id": 10464, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 435.4, "z": -9531.2, "px": 2122.3, "py": 421.3}, {"loc_id": 10469, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -4539.5, "z": -7938.6, "px": 1273.3, "py": 693.1}, {"loc_id": 10472, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -1274.0, "z": -9136.2, "px": 1830.6, "py": 488.8}, {"loc_id": 10473, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -5119.9, "z": -8140.3, "px": 1174.2, "py": 658.7}, {"loc_id": 10478, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 3716.0, "z": -8177.8, "px": 2682.2, "py": 652.3}, {"loc_id": 10479, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -4302.5, "z": -8050.2, "px": 1313.7, "py": 674.1}, {"loc_id": 10481, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 650.4, "z": -9777.0, "px": 2159.0, "py": 379.4}, {"loc_id": 10482, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -3981.8, "z": -9012.1, "px": 1368.4, "py": 509.9}, {"loc_id": 10484, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 5071.4, "z": -7743.2, "px": 2913.5, "py": 726.5}, {"loc_id": 10485, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -263.9, "z": -8782.0, "px": 2003.0, "py": 549.2}, {"loc_id": 10485, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -263.9, "z": -8782.0, "px": 2003.0, "py": 549.2}, {"loc_id": 10486, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 186.5, "z": -8778.8, "px": 2079.8, "py": 549.8}, {"loc_id": 10488, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 1984.7, "z": -8456.9, "px": 2386.7, "py": 604.7}, {"loc_id": 10490, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 2163.2, "z": -8269.5, "px": 2417.2, "py": 636.7}, {"loc_id": 10490, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 2163.2, "z": -8269.5, "px": 2417.2, "py": 636.7}, {"loc_id": 10491, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 1869.9, "z": -9333.4, "px": 2367.1, "py": 455.1}, {"loc_id": 10494, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -2551.4, "z": -8817.7, "px": 1612.6, "py": 543.1}, {"loc_id": 10494, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -2551.4, "z": -8817.7, "px": 1612.6, "py": 543.1}, {"loc_id": 10496, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 4237.2, "z": -8704.7, "px": 2771.1, "py": 562.4}, {"loc_id": 10498, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -1414.6, "z": -9533.3, "px": 1806.6, "py": 421.0}, {"loc_id": 10502, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -5184.6, "z": -7871.5, "px": 1163.2, "py": 704.6}, {"loc_id": 10502, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -5184.6, "z": -7871.5, "px": 1163.2, "py": 704.6}, {"loc_id": 10504, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 1220.4, "z": -8846.8, "px": 2256.3, "py": 538.1}, {"loc_id": 10504, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 1220.4, "z": -8846.8, "px": 2256.3, "py": 538.1}, {"loc_id": 10505, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -2684.1, "z": -8588.1, "px": 1589.9, "py": 582.3}, {"loc_id": 10507, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -1609.6, "z": -9616.0, "px": 1773.3, "py": 406.9}, {"loc_id": 10512, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -5617.0, "z": -7558.3, "px": 1089.4, "py": 758.1}, {"loc_id": 10515, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -1405.3, "z": -9269.4, "px": 1808.2, "py": 466.0}, {"loc_id": 10518, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -5109.5, "z": -7802.5, "px": 1176.0, "py": 716.4}, {"loc_id": 10519, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 1799.7, "z": -8644.5, "px": 2355.1, "py": 572.7}, {"loc_id": 10520, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -4730.1, "z": -8206.1, "px": 1240.7, "py": 647.5}, {"loc_id": 10523, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -199.0, "z": -9038.8, "px": 2014.0, "py": 505.4}, {"loc_id": 10524, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 5324.2, "z": -8112.6, "px": 2956.7, "py": 663.4}, {"loc_id": 10525, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 1224.4, "z": -9404.4, "px": 2257.0, "py": 443.0}, {"loc_id": 10526, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 711.2, "z": -8782.8, "px": 2169.4, "py": 549.1}, {"loc_id": 10526, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 711.2, "z": -8782.8, "px": 2169.4, "py": 549.1}, {"loc_id": 10527, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -8.7, "z": -9587.8, "px": 2046.5, "py": 411.7}, {"loc_id": 10528, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -891.9, "z": -8756.7, "px": 1895.8, "py": 553.5}, {"loc_id": 10529, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 768.5, "z": -9209.6, "px": 2179.2, "py": 476.2}, {"loc_id": 10530, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 64.7, "z": -9738.0, "px": 2059.0, "py": 386.0}, {"loc_id": 10530, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 64.7, "z": -9738.0, "px": 2059.0, "py": 386.0}, {"loc_id": 10531, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -2098.1, "z": -9275.6, "px": 1689.9, "py": 465.0}, {"loc_id": 10533, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 583.5, "z": -8716.6, "px": 2147.6, "py": 560.4}, {"loc_id": 10534, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -770.8, "z": -8646.5, "px": 1916.5, "py": 572.3}, {"loc_id": 10535, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 5684.0, "z": -8113.0, "px": 3018.1, "py": 663.4}, {"loc_id": 10537, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -3636.5, "z": -8688.3, "px": 1427.4, "py": 565.2}, {"loc_id": 10539, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -3580.2, "z": -8837.7, "px": 1437.0, "py": 539.7}, {"loc_id": 10541, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -635.8, "z": -9913.0, "px": 1939.5, "py": 356.2}, {"loc_id": 10543, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 502.8, "z": -9732.7, "px": 2133.8, "py": 387.0}, {"loc_id": 10545, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 1396.7, "z": -9342.9, "px": 2286.4, "py": 453.5}, {"loc_id": 10545, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 1396.7, "z": -9342.9, "px": 2286.4, "py": 453.5}, {"loc_id": 10547, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 72.9, "z": -8757.4, "px": 2060.4, "py": 553.4}, {"loc_id": 10550, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -2173.8, "z": -8458.9, "px": 1677.0, "py": 604.3}, {"loc_id": 10551, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 1784.3, "z": -9594.8, "px": 2352.5, "py": 410.5}, {"loc_id": 10551, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 1784.3, "z": -9594.8, "px": 2352.5, "py": 410.5}, {"loc_id": 10552, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 457.5, "z": -8648.0, "px": 2126.1, "py": 572.1}, {"loc_id": 10554, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 2563.8, "z": -9016.6, "px": 2485.6, "py": 509.2}, {"loc_id": 10556, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 654.7, "z": -9933.5, "px": 2159.7, "py": 352.7}, {"loc_id": 10559, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 590.4, "z": -8960.3, "px": 2148.8, "py": 518.8}, {"loc_id": 10560, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -4422.9, "z": -8390.6, "px": 1293.2, "py": 616.0}, {"loc_id": 10561, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 5242.1, "z": -7996.3, "px": 2942.7, "py": 683.3}, {"loc_id": 10565, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -2509.3, "z": -8318.0, "px": 1619.7, "py": 628.4}, {"loc_id": 10568, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -1805.4, "z": -9076.3, "px": 1739.9, "py": 499.0}, {"loc_id": 10572, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -1200.2, "z": -9608.9, "px": 1843.2, "py": 408.1}, {"loc_id": 10573, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -2891.6, "z": -8332.5, "px": 1554.5, "py": 625.9}, {"loc_id": 10574, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 1481.8, "z": -9096.9, "px": 2300.9, "py": 495.5}, {"loc_id": 10576, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 3767.6, "z": -8460.4, "px": 2691.0, "py": 604.1}, {"loc_id": 10579, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 118.0, "z": -9611.0, "px": 2068.1, "py": 407.7}, {"loc_id": 10583, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -5519.8, "z": -7810.9, "px": 1106.0, "py": 714.9}, {"loc_id": 10585, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -3656.3, "z": -8904.9, "px": 1424.0, "py": 528.2}, {"loc_id": 10585, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -3656.3, "z": -8904.9, "px": 1424.0, "py": 528.2}, {"loc_id": 10587, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 1911.6, "z": -8375.5, "px": 2374.2, "py": 618.6}, {"loc_id": 10592, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -4657.1, "z": -8326.4, "px": 1253.2, "py": 627.0}, {"loc_id": 10595, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 1423.6, "z": -9672.2, "px": 2291.0, "py": 397.3}, {"loc_id": 10597, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 3891.8, "z": -8385.7, "px": 2712.2, "py": 616.8}, {"loc_id": 10600, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 332.0, "z": -9603.1, "px": 2104.7, "py": 409.1}, {"loc_id": 10604, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -625.3, "z": -9140.9, "px": 1941.3, "py": 488.0}, {"loc_id": 10605, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 2432.3, "z": -9137.9, "px": 2463.1, "py": 488.5}, {"loc_id": 10606, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 5491.3, "z": -7931.8, "px": 2985.2, "py": 694.3}, {"loc_id": 10607, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 3978.1, "z": -8630.0, "px": 2726.9, "py": 575.1}, {"loc_id": 10608, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 1784.3, "z": -9101.6, "px": 2352.5, "py": 494.7}, {"loc_id": 10609, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -889.6, "z": -9023.0, "px": 1896.2, "py": 508.1}, {"loc_id": 10611, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -463.2, "z": -9457.2, "px": 1968.9, "py": 434.0}, {"loc_id": 10612, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -4096.3, "z": -8197.3, "px": 1348.9, "py": 649.0}, {"loc_id": 10613, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -391.6, "z": -9652.7, "px": 1981.2, "py": 400.6}, {"loc_id": 10614, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -4081.9, "z": -8960.4, "px": 1351.4, "py": 518.8}, {"loc_id": 10615, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -1229.5, "z": -9393.0, "px": 1838.2, "py": 444.9}, {"loc_id": 10615, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -1229.5, "z": -9393.0, "px": 1838.2, "py": 444.9}, {"loc_id": 10616, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -5324.7, "z": -7860.7, "px": 1139.3, "py": 706.4}, {"loc_id": 10616, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -5324.7, "z": -7860.7, "px": 1139.3, "py": 706.4}, {"loc_id": 10617, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -904.2, "z": -9727.6, "px": 1893.7, "py": 387.8}, {"loc_id": 10619, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 5432.5, "z": -7808.3, "px": 2975.1, "py": 715.4}, {"loc_id": 10624, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -138.3, "z": -9586.1, "px": 2024.4, "py": 412.0}, {"loc_id": 10626, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 3982.0, "z": -9024.0, "px": 2727.6, "py": 507.9}, {"loc_id": 10627, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 1779.4, "z": -9229.9, "px": 2351.7, "py": 472.8}, {"loc_id": 10627, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 1779.4, "z": -9229.9, "px": 2351.7, "py": 472.8}, {"loc_id": 10628, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -2890.9, "z": -9028.5, "px": 1554.6, "py": 507.1}, {"loc_id": 10629, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -271.3, "z": -8655.9, "px": 2001.7, "py": 570.7}, {"loc_id": 10630, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -1022.9, "z": -9805.5, "px": 1873.4, "py": 374.5}, {"loc_id": 10632, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 3894.9, "z": -8951.0, "px": 2712.7, "py": 520.4}, {"loc_id": 10632, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 3894.9, "z": -8951.0, "px": 2712.7, "py": 520.4}, {"loc_id": 10635, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 755.1, "z": -9920.4, "px": 2176.9, "py": 354.9}, {"loc_id": 10636, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -626.3, "z": -8752.7, "px": 1941.1, "py": 554.2}, {"loc_id": 10640, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 3120.3, "z": -8322.5, "px": 2580.5, "py": 627.6}, {"loc_id": 10641, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 3122.1, "z": -9332.3, "px": 2580.8, "py": 455.3}, {"loc_id": 10643, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 206.5, "z": -9675.7, "px": 2083.2, "py": 396.7}, {"loc_id": 10645, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -1853.1, "z": -9267.8, "px": 1731.7, "py": 466.3}, {"loc_id": 10650, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -2767.3, "z": -8514.5, "px": 1575.7, "py": 594.9}, {"loc_id": 10651, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -2254.9, "z": -8628.9, "px": 1663.2, "py": 575.3}, {"loc_id": 10654, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 3062.2, "z": -9020.9, "px": 2570.6, "py": 508.4}, {"loc_id": 10655, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 1590.0, "z": -9672.2, "px": 2319.4, "py": 397.3}, {"loc_id": 10658, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -369.5, "z": -9423.9, "px": 1984.9, "py": 439.7}, {"loc_id": 10659, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -712.2, "z": -9282.4, "px": 1926.5, "py": 463.8}, {"loc_id": 10660, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -4859.9, "z": -8510.3, "px": 1218.6, "py": 595.6}, {"loc_id": 10662, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -2817.5, "z": -8251.2, "px": 1567.1, "py": 639.8}, {"loc_id": 10662, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -2817.5, "z": -8251.2, "px": 1567.1, "py": 639.8}, {"loc_id": 10663, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 2992.0, "z": -9103.1, "px": 2558.6, "py": 494.4}, {"loc_id": 10666, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -887.5, "z": -9162.4, "px": 1896.5, "py": 484.3}, {"loc_id": 10668, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 653.1, "z": -8882.0, "px": 2159.5, "py": 532.1}, {"loc_id": 10670, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -3701.1, "z": -9012.7, "px": 1416.3, "py": 509.8}, {"loc_id": 10670, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": -3701.1, "z": -9012.7, "px": 1416.3, "py": 509.8}, {"loc_id": 10672, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": -5118.2, "z": -7991.2, "px": 1174.5, "py": 684.2}, {"loc_id": 10673, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 2, "x": 1358.8, "z": -9461.1, "px": 2279.9, "py": 433.3}, {"loc_id": 10677, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 2, "x": 2999.9, "z": -8905.4, "px": 2560.0, "py": 528.1}, {"loc_id": 10680, "loc_name": "CharredTowerRuins1", "item": "Pickable: MushroomSmokePuff", "count": 2, "x": -3000.9, "z": -9023.3, "px": 1535.8, "py": 508.0}, {"loc_id": 10694, "loc_name": "CharredTowerRuins1", "item": "Pickable: MushroomSmokePuff", "count": 2, "x": -4038.0, "z": -8772.8, "px": 1358.8, "py": 550.8}, {"loc_id": 10701, "loc_name": "CharredTowerRuins1", "item": "Pickable: MushroomSmokePuff", "count": 2, "x": 2300.6, "z": -9274.4, "px": 2440.6, "py": 465.2}, {"loc_id": 10705, "loc_name": "CharredTowerRuins1", "item": "Pickable: MushroomSmokePuff", "count": 2, "x": -1919.0, "z": -8762.0, "px": 1720.5, "py": 552.6}, {"loc_id": 10710, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 2, "x": -3580.8, "z": -8449.6, "px": 1436.9, "py": 605.9}, {"loc_id": 10711, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: MushroomSmokePuff", "count": 2, "x": 3838.3, "z": -8457.0, "px": 2703.1, "py": 604.7}, {"loc_id": 10712, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 2, "x": 1910.5, "z": -8440.1, "px": 2374.1, "py": 607.6}, {"loc_id": 10713, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 2, "x": -5309.5, "z": -7751.3, "px": 1141.8, "py": 725.1}, {"loc_id": 10716, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: MushroomSmokePuff", "count": 2, "x": 3259.1, "z": -8380.7, "px": 2604.2, "py": 617.7}, {"loc_id": 10716, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 2, "x": 3259.1, "z": -8380.7, "px": 2604.2, "py": 617.7}, {"loc_id": 10717, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 2, "x": 1860.6, "z": -9463.3, "px": 2365.5, "py": 432.9}, {"loc_id": 10718, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: MushroomSmokePuff", "count": 2, "x": -1342.7, "z": -9148.4, "px": 1818.8, "py": 486.7}, {"loc_id": 10718, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 2, "x": -1342.7, "z": -9148.4, "px": 1818.8, "py": 486.7}, {"loc_id": 10720, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 2, "x": -4612.3, "z": -8391.2, "px": 1260.8, "py": 615.9}, {"loc_id": 10722, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 2, "x": 513.8, "z": -9855.1, "px": 2135.7, "py": 366.1}, {"loc_id": 10725, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: MushroomSmokePuff", "count": 2, "x": -3583.6, "z": -8570.7, "px": 1436.4, "py": 585.3}, {"loc_id": 10725, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 2, "x": -3583.6, "z": -8570.7, "px": 1436.4, "py": 585.3}, {"loc_id": 10727, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 2, "x": -4535.3, "z": -8322.3, "px": 1274.0, "py": 627.7}, {"loc_id": 10728, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: MushroomSmokePuff", "count": 2, "x": 1785.2, "z": -9654.1, "px": 2352.7, "py": 400.4}, {"loc_id": 10730, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 2, "x": -55.7, "z": -8772.4, "px": 2038.5, "py": 550.8}, {"loc_id": 10733, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 2, "x": 647.3, "z": -9861.7, "px": 2158.5, "py": 364.9}, {"loc_id": 10734, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 2, "x": -185.1, "z": -8767.1, "px": 2016.4, "py": 551.7}, {"loc_id": 10737, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: MushroomSmokePuff", "count": 2, "x": 5193.3, "z": -7740.7, "px": 2934.3, "py": 726.9}, {"loc_id": 10816, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 2, "x": 1792.0, "z": -8512.0, "px": 2353.8, "py": 595.3}, {"loc_id": 10817, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 2, "x": -5248.0, "z": -7552.0, "px": 1152.3, "py": 759.1}, {"loc_id": 10830, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 2, "x": -2624.0, "z": -8768.0, "px": 1600.2, "py": 551.6}, {"loc_id": 10845, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 2, "x": 832.0, "z": -8640.0, "px": 2190.0, "py": 573.4}, {"loc_id": 10848, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 2, "x": -2880.0, "z": -9088.0, "px": 1556.5, "py": 497.0}, {"loc_id": 10857, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 2, "x": 1984.0, "z": -8320.0, "px": 2386.6, "py": 628.1}, {"loc_id": 10857, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 2, "x": 1984.0, "z": -8320.0, "px": 2386.6, "py": 628.1}, {"loc_id": 10877, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 2, "x": 5248.0, "z": -7744.0, "px": 2943.7, "py": 726.4}, {"loc_id": 10877, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 2, "x": 5248.0, "z": -7744.0, "px": 2943.7, "py": 726.4}, {"loc_id": 10904, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 2, "x": 3648.0, "z": -8192.0, "px": 2670.6, "py": 649.9}, {"loc_id": 10909, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 2, "x": -4992.0, "z": -7680.0, "px": 1196.0, "py": 737.3}, {"loc_id": 10917, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 2, "x": -3975.7, "z": -8892.9, "px": 1369.5, "py": 530.3}, {"loc_id": 10918, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 2, "x": 70.1, "z": -8519.3, "px": 2060.0, "py": 594.0}, {"loc_id": 10921, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 2, "x": 1343.9, "z": -9028.9, "px": 2277.4, "py": 507.1}, {"loc_id": 10922, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 2, "x": -1787.0, "z": -8892.5, "px": 1743.0, "py": 530.3}, {"loc_id": 10925, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 2, "x": -2303.9, "z": -8710.0, "px": 1654.8, "py": 561.5}, {"loc_id": 10926, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 2, "x": -4355.3, "z": -8380.1, "px": 1304.7, "py": 617.8}, {"loc_id": 10928, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 2, "x": -1281.5, "z": -9734.6, "px": 1829.3, "py": 386.6}, {"loc_id": 10928, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 2, "x": -1281.5, "z": -9734.6, "px": 1829.3, "py": 386.6}, {"loc_id": 10929, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 2, "x": -251.2, "z": -8961.5, "px": 2005.1, "py": 518.6}, {"loc_id": 10930, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 2, "x": -2938.4, "z": -8390.5, "px": 1546.5, "py": 616.0}, {"loc_id": 10931, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 2, "x": 1272.8, "z": -9535.5, "px": 2265.2, "py": 420.6}, {"loc_id": 10932, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 2, "x": 2237.4, "z": -8442.5, "px": 2429.8, "py": 607.1}, {"loc_id": 10933, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 2, "x": -1017.7, "z": -9534.6, "px": 1874.3, "py": 420.8}, {"loc_id": 10935, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 2, "x": 3525.7, "z": -8574.7, "px": 2649.7, "py": 584.6}, {"loc_id": 10936, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 2, "x": -5382.2, "z": -7490.6, "px": 1129.4, "py": 769.6}, {"loc_id": 10937, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 2, "x": -1339.3, "z": -9094.4, "px": 1819.4, "py": 495.9}, {"loc_id": 10942, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 2, "x": 1026.0, "z": -8888.6, "px": 2223.1, "py": 531.0}, {"loc_id": 10943, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 2, "x": 1656.2, "z": -9411.2, "px": 2330.7, "py": 441.8}, {"loc_id": 10946, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 2, "x": 5438.2, "z": -8059.0, "px": 2976.1, "py": 672.6}, {"loc_id": 10949, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 2, "x": -382.7, "z": -8637.2, "px": 1982.7, "py": 573.9}, {"loc_id": 10950, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 2, "x": -3711.2, "z": -9150.7, "px": 1414.6, "py": 486.3}, {"loc_id": 10954, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 2, "x": 2045.3, "z": -8382.3, "px": 2397.1, "py": 617.4}, {"loc_id": 10954, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 2, "x": 2045.3, "z": -8382.3, "px": 2397.1, "py": 617.4}, {"loc_id": 10955, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 2, "x": -4090.0, "z": -9090.5, "px": 1350.0, "py": 496.6}, {"loc_id": 10956, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 2, "x": 835.7, "z": -8775.2, "px": 2190.6, "py": 550.4}, {"loc_id": 10956, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 2, "x": 835.7, "z": -8775.2, "px": 2190.6, "py": 550.4}, {"loc_id": 10958, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 2, "x": -1280.7, "z": -9470.9, "px": 1829.4, "py": 431.6}, {"loc_id": 10959, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 2, "x": -2373.6, "z": -8955.5, "px": 1642.9, "py": 519.6}, {"loc_id": 10960, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 2, "x": -2426.2, "z": -8512.5, "px": 1633.9, "py": 595.2}, {"loc_id": 10963, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 2, "x": 3898.4, "z": -8765.0, "px": 2713.3, "py": 552.1}, {"loc_id": 10964, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 2, "x": -4993.3, "z": -8254.4, "px": 1195.8, "py": 639.2}, {"loc_id": 10968, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 2, "x": 441.9, "z": -8902.7, "px": 2123.4, "py": 528.6}, {"loc_id": 10970, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 2, "x": -1022.6, "z": -9272.9, "px": 1873.5, "py": 465.4}, {"loc_id": 10970, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 2, "x": -1022.6, "z": -9272.9, "px": 1873.5, "py": 465.4}, {"loc_id": 10973, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 2, "x": 3143.3, "z": -8516.3, "px": 2584.5, "py": 594.6}, {"loc_id": 10974, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 2, "x": -701.5, "z": -9923.4, "px": 1928.3, "py": 354.4}, {"loc_id": 10976, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 2, "x": -6278.6, "z": -7619.5, "px": 976.5, "py": 747.6}, {"loc_id": 10976, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 2, "x": -6278.6, "z": -7619.5, "px": 976.5, "py": 747.6}, {"loc_id": 10977, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 2, "x": -3779.8, "z": -8195.9, "px": 1402.9, "py": 649.2}, {"loc_id": 10978, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 2, "x": 2881.7, "z": -9082.6, "px": 2539.8, "py": 497.9}, {"loc_id": 10979, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 2, "x": -5434.2, "z": -7745.7, "px": 1120.6, "py": 726.1}, {"loc_id": 10981, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 2, "x": 323.5, "z": -8637.8, "px": 2103.2, "py": 573.8}, {"loc_id": 10982, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 2, "x": -2567.5, "z": -8896.6, "px": 1609.8, "py": 529.6}, {"loc_id": 10982, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 2, "x": -2567.5, "z": -8896.6, "px": 1609.8, "py": 529.6}, {"loc_id": 10984, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 2, "x": -2045.0, "z": -8636.6, "px": 1699.0, "py": 574.0}, {"loc_id": 10984, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 2, "x": -2045.0, "z": -8636.6, "px": 1699.0, "py": 574.0}, {"loc_id": 10985, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 2, "x": -3776.8, "z": -8707.2, "px": 1403.4, "py": 562.0}, {"loc_id": 10987, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 2, "x": 3001.0, "z": -8838.1, "px": 2560.2, "py": 539.6}, {"loc_id": 10987, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 2, "x": 3001.0, "z": -8838.1, "px": 2560.2, "py": 539.6}, {"loc_id": 10988, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 2, "x": -5241.2, "z": -7808.0, "px": 1153.5, "py": 715.4}, {"loc_id": 10990, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 2, "x": 2054.7, "z": -9336.5, "px": 2398.7, "py": 454.6}, {"loc_id": 10991, "loc_name": "MorgenHole3", "item": "Pickable: MoltenCore", "count": 2, "x": 2237.7, "z": -9472.3, "px": 2429.9, "py": 431.4}, {"loc_id": 10992, "loc_name": "MorgenHole3", "item": "Pickable: MoltenCore", "count": 2, "x": -3324.4, "z": -8834.4, "px": 1480.6, "py": 540.3}, {"loc_id": 10996, "loc_name": "MorgenHole3", "item": "Pickable: Entrails", "count": 2, "x": -2438.3, "z": -8313.0, "px": 1631.9, "py": 629.2}, {"loc_id": 10996, "loc_name": "MorgenHole3", "item": "Pickable: MoltenCore", "count": 2, "x": -2438.3, "z": -8313.0, "px": 1631.9, "py": 629.2}, {"loc_id": 10998, "loc_name": "MorgenHole3", "item": "Pickable: Entrails", "count": 2, "x": -1477.1, "z": -9534.7, "px": 1795.9, "py": 420.7}, {"loc_id": 10999, "loc_name": "MorgenHole3", "item": "Pickable: Entrails", "count": 2, "x": -134.7, "z": -8764.2, "px": 2025.0, "py": 552.2}, {"loc_id": 11002, "loc_name": "MorgenHole3", "item": "Pickable: Entrails", "count": 2, "x": 5380.1, "z": -7867.4, "px": 2966.2, "py": 705.3}, {"loc_id": 11004, "loc_name": "MorgenHole3", "item": "Pickable: Entrails", "count": 2, "x": 3770.8, "z": -8507.0, "px": 2691.5, "py": 596.1}, {"loc_id": 11004, "loc_name": "MorgenHole3", "item": "Pickable: MoltenCore", "count": 2, "x": 3770.8, "z": -8507.0, "px": 2691.5, "py": 596.1}, {"loc_id": 11005, "loc_name": "MorgenHole3", "item": "Pickable: Entrails", "count": 2, "x": -957.4, "z": -9082.8, "px": 1884.6, "py": 497.9}, {"loc_id": 11012, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": 1653.1, "z": -9530.8, "px": 2330.1, "py": 421.4}, {"loc_id": 11016, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": 1033.0, "z": -8587.0, "px": 2224.3, "py": 582.5}, {"loc_id": 11017, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": -2996.2, "z": -8335.5, "px": 1536.6, "py": 625.4}, {"loc_id": 11024, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": 1477.4, "z": -8976.3, "px": 2300.1, "py": 516.0}, {"loc_id": 11025, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": 6000.8, "z": -7565.9, "px": 3072.1, "py": 756.8}, {"loc_id": 11038, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": -2953.0, "z": -9160.9, "px": 1544.0, "py": 484.5}, {"loc_id": 11040, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": 3214.9, "z": -9143.4, "px": 2596.7, "py": 487.5}, {"loc_id": 11041, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": 1968.3, "z": -9279.7, "px": 2383.9, "py": 464.3}, {"loc_id": 11046, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": 6351.2, "z": -7283.0, "px": 3131.9, "py": 805.0}, {"loc_id": 11049, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": 1291.3, "z": -8783.3, "px": 2268.4, "py": 549.0}, {"loc_id": 11051, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": -3196.9, "z": -9403.4, "px": 1502.4, "py": 443.2}, {"loc_id": 11052, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": -440.2, "z": -9209.1, "px": 1972.9, "py": 476.3}, {"loc_id": 11058, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": -709.6, "z": -9138.2, "px": 1926.9, "py": 488.4}, {"loc_id": 11061, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": -5679.1, "z": -7480.9, "px": 1078.8, "py": 771.3}, {"loc_id": 11062, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": -1029.0, "z": -8716.0, "px": 1872.4, "py": 560.5}, {"loc_id": 11073, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": -4172.2, "z": -8136.1, "px": 1335.9, "py": 659.4}, {"loc_id": 11076, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": 2885.3, "z": -8703.9, "px": 2540.4, "py": 562.5}, {"loc_id": 11077, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": -4998.8, "z": -7792.5, "px": 1194.9, "py": 718.1}, {"loc_id": 11082, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": -4085.2, "z": -8777.3, "px": 1350.8, "py": 550.0}, {"loc_id": 11084, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": 57.5, "z": -8579.7, "px": 2057.8, "py": 583.7}, {"loc_id": 11085, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": 127.0, "z": -8947.4, "px": 2069.7, "py": 521.0}, {"loc_id": 11086, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": -2991.9, "z": -8575.8, "px": 1537.4, "py": 584.4}, {"loc_id": 11103, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": 974.6, "z": -9457.0, "px": 2214.3, "py": 434.0}, {"loc_id": 11104, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 2, "x": 1157.9, "z": -9538.7, "px": 2245.6, "py": 420.1}, {"loc_id": 11110, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": 1162.2, "z": -8776.9, "px": 2246.3, "py": 550.1}, {"loc_id": 11111, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": -5637.5, "z": -7434.7, "px": 1085.9, "py": 779.1}, {"loc_id": 11115, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": 1142.0, "z": -9462.2, "px": 2242.9, "py": 433.1}, {"loc_id": 11118, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": -1723.0, "z": -9223.5, "px": 1753.9, "py": 473.9}, {"loc_id": 11120, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": 3199.0, "z": -9107.6, "px": 2594.0, "py": 493.6}, {"loc_id": 11126, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": -1807.7, "z": -8953.2, "px": 1739.5, "py": 520.0}, {"loc_id": 11129, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": -1867.2, "z": -9485.4, "px": 1729.3, "py": 429.2}, {"loc_id": 11134, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": -1453.1, "z": -9262.9, "px": 1800.0, "py": 467.1}, {"loc_id": 11140, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": -2705.1, "z": -8238.8, "px": 1586.3, "py": 641.9}, {"loc_id": 11144, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": -2350.1, "z": -9071.5, "px": 1646.9, "py": 499.8}, {"loc_id": 11145, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": -2766.3, "z": -8644.8, "px": 1575.9, "py": 572.6}, {"loc_id": 11148, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": 2292.9, "z": -8334.6, "px": 2439.3, "py": 625.6}, {"loc_id": 11149, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": 3473.7, "z": -8621.4, "px": 2640.8, "py": 576.6}, {"loc_id": 11150, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": -3202.6, "z": -9478.6, "px": 1501.4, "py": 430.3}, {"loc_id": 11163, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": -1416.8, "z": -9139.0, "px": 1806.2, "py": 488.3}, {"loc_id": 11167, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": -3458.1, "z": -8914.6, "px": 1457.8, "py": 526.6}, {"loc_id": 11182, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": 2863.9, "z": -8632.3, "px": 2536.8, "py": 574.8}, {"loc_id": 11195, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": 5580.0, "z": -7619.8, "px": 3000.3, "py": 747.6}, {"loc_id": 11200, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": 3693.9, "z": -8083.9, "px": 2678.4, "py": 668.3}, {"loc_id": 11201, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": 5424.8, "z": -7878.6, "px": 2973.8, "py": 703.4}, {"loc_id": 11206, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": -274.3, "z": -9086.5, "px": 2001.2, "py": 497.2}, {"loc_id": 11207, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 2, "x": 4165.2, "z": -8591.8, "px": 2758.9, "py": 581.7}, {"loc_id": 11210, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": 5814.1, "z": -8053.9, "px": 3040.3, "py": 673.5}, {"loc_id": 11214, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": -1222.6, "z": -9147.5, "px": 1839.3, "py": 486.8}, {"loc_id": 11218, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": -2695.3, "z": -9067.1, "px": 1588.0, "py": 500.5}, {"loc_id": 11221, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": 2821.4, "z": -8758.9, "px": 2529.5, "py": 553.1}, {"loc_id": 11224, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": -2306.3, "z": -8148.2, "px": 1654.4, "py": 657.4}, {"loc_id": 11231, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": -4999.1, "z": -7884.4, "px": 1194.8, "py": 702.4}, {"loc_id": 11232, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": 6319.4, "z": -7054.0, "px": 3126.5, "py": 844.1}, {"loc_id": 11239, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": -3699.1, "z": -8699.6, "px": 1416.7, "py": 563.3}, {"loc_id": 11240, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": 5558.1, "z": -7756.5, "px": 2996.6, "py": 724.2}, {"loc_id": 11251, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": 964.1, "z": -9277.3, "px": 2212.5, "py": 464.7}, {"loc_id": 11254, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": 5321.1, "z": -8184.0, "px": 2956.1, "py": 651.3}, {"loc_id": 11261, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": 967.4, "z": -8591.9, "px": 2213.1, "py": 581.6}, {"loc_id": 11267, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": 912.3, "z": -8716.1, "px": 2203.7, "py": 560.5}, {"loc_id": 11269, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": -14.1, "z": -8505.6, "px": 2045.6, "py": 596.4}, {"loc_id": 11272, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": -2734.0, "z": -8853.7, "px": 1581.4, "py": 537.0}, {"loc_id": 11275, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": 5442.6, "z": -7691.9, "px": 2976.9, "py": 735.2}, {"loc_id": 11276, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": -3961.1, "z": -8693.6, "px": 1372.0, "py": 564.3}, {"loc_id": 11279, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": -5393.6, "z": -8046.2, "px": 1127.5, "py": 674.8}, {"loc_id": 11280, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": -1937.4, "z": -8582.0, "px": 1717.4, "py": 583.3}, {"loc_id": 11282, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": -5000.7, "z": -7541.3, "px": 1194.5, "py": 761.0}, {"loc_id": 11284, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": -1154.4, "z": -9782.7, "px": 1851.0, "py": 378.4}, {"loc_id": 11285, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": 699.2, "z": -9300.2, "px": 2167.3, "py": 460.8}, {"loc_id": 11288, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": -3534.7, "z": -9200.0, "px": 1444.7, "py": 477.9}, {"loc_id": 11289, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": -1078.7, "z": -9529.3, "px": 1863.9, "py": 421.7}, {"loc_id": 11290, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": 3446.0, "z": -8462.0, "px": 2636.1, "py": 603.8}, {"loc_id": 11299, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": 3913.3, "z": -8591.1, "px": 2715.9, "py": 581.8}, {"loc_id": 11301, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 2, "x": -4162.4, "z": -9035.4, "px": 1337.6, "py": 506.0}, {"loc_id": 1, "loc_name": "StartTemple", "item": "Vegvisir: Eikthyrnir ($enemy_eikthyr)", "count": 1, "x": 1.8, "z": 0.0, "px": 2048.3, "py": 2048.0}, {"loc_id": 18, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 2438.5, "z": -1087.3, "px": 2464.2, "py": 1862.4}, {"loc_id": 19, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 3320.3, "z": 4792.1, "px": 2614.7, "py": 2865.9}, {"loc_id": 19, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 3320.3, "z": 4792.1, "px": 2614.7, "py": 2865.9}, {"loc_id": 20, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -2682.3, "z": -5191.9, "px": 1590.2, "py": 1161.9}, {"loc_id": 20, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -2682.3, "z": -5191.9, "px": 1590.2, "py": 1161.9}, {"loc_id": 20, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -2682.3, "z": -5191.9, "px": 1590.2, "py": 1161.9}, {"loc_id": 20, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -2682.3, "z": -5191.9, "px": 1590.2, "py": 1161.9}, {"loc_id": 20, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -2682.3, "z": -5191.9, "px": 1590.2, "py": 1161.9}, {"loc_id": 20, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -2682.3, "z": -5191.9, "px": 1590.2, "py": 1161.9}, {"loc_id": 21, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -4146.8, "z": 3646.5, "px": 1340.3, "py": 2670.3}, {"loc_id": 21, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -4146.8, "z": 3646.5, "px": 1340.3, "py": 2670.3}, {"loc_id": 22, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -4353.9, "z": 1157.7, "px": 1304.9, "py": 2245.6}, {"loc_id": 22, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -4353.9, "z": 1157.7, "px": 1304.9, "py": 2245.6}, {"loc_id": 23, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -590.9, "z": -3594.7, "px": 1947.2, "py": 1434.5}, {"loc_id": 23, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -590.9, "z": -3594.7, "px": 1947.2, "py": 1434.5}, {"loc_id": 23, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 1, "x": -590.9, "z": -3594.7, "px": 1947.2, "py": 1434.5}, {"loc_id": 23, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -590.9, "z": -3594.7, "px": 1947.2, "py": 1434.5}, {"loc_id": 23, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -590.9, "z": -3594.7, "px": 1947.2, "py": 1434.5}, {"loc_id": 24, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 2365.0, "z": 184.9, "px": 2451.6, "py": 2079.6}, {"loc_id": 24, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 2365.0, "z": 184.9, "px": 2451.6, "py": 2079.6}, {"loc_id": 24, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 2365.0, "z": 184.9, "px": 2451.6, "py": 2079.6}, {"loc_id": 24, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 2365.0, "z": 184.9, "px": 2451.6, "py": 2079.6}, {"loc_id": 25, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 1095.0, "z": 4349.5, "px": 2234.9, "py": 2790.3}, {"loc_id": 25, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 1095.0, "z": 4349.5, "px": 2234.9, "py": 2790.3}, {"loc_id": 26, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -3714.0, "z": -4105.5, "px": 1414.1, "py": 1347.3}, {"loc_id": 26, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -3714.0, "z": -4105.5, "px": 1414.1, "py": 1347.3}, {"loc_id": 27, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -3648.3, "z": -4161.2, "px": 1425.4, "py": 1337.8}, {"loc_id": 27, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -3648.3, "z": -4161.2, "px": 1425.4, "py": 1337.8}, {"loc_id": 27, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -3648.3, "z": -4161.2, "px": 1425.4, "py": 1337.8}, {"loc_id": 28, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 4720.8, "z": -717.3, "px": 2853.7, "py": 1925.6}, {"loc_id": 28, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 4720.8, "z": -717.3, "px": 2853.7, "py": 1925.6}, {"loc_id": 28, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 1, "x": 4720.8, "z": -717.3, "px": 2853.7, "py": 1925.6}, {"loc_id": 29, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -4342.2, "z": 1229.9, "px": 1306.9, "py": 2257.9}, {"loc_id": 29, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -4342.2, "z": 1229.9, "px": 1306.9, "py": 2257.9}, {"loc_id": 29, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -4342.2, "z": 1229.9, "px": 1306.9, "py": 2257.9}, {"loc_id": 29, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 1, "x": -4342.2, "z": 1229.9, "px": 1306.9, "py": 2257.9}, {"loc_id": 30, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -525.6, "z": -3575.0, "px": 1958.3, "py": 1437.9}, {"loc_id": 30, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -525.6, "z": -3575.0, "px": 1958.3, "py": 1437.9}, {"loc_id": 30, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -525.6, "z": -3575.0, "px": 1958.3, "py": 1437.9}, {"loc_id": 30, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -525.6, "z": -3575.0, "px": 1958.3, "py": 1437.9}, {"loc_id": 31, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 3723.6, "z": 816.0, "px": 2683.5, "py": 2187.3}, {"loc_id": 31, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 3723.6, "z": 816.0, "px": 2683.5, "py": 2187.3}, {"loc_id": 34, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 1475.7, "z": 2164.3, "px": 2299.9, "py": 2417.4}, {"loc_id": 34, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 1475.7, "z": 2164.3, "px": 2299.9, "py": 2417.4}, {"loc_id": 35, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -209.6, "z": 2703.7, "px": 2012.2, "py": 2509.4}, {"loc_id": 35, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -209.6, "z": 2703.7, "px": 2012.2, "py": 2509.4}, {"loc_id": 35, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -209.6, "z": 2703.7, "px": 2012.2, "py": 2509.4}, {"loc_id": 36, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -2570.0, "z": -1520.8, "px": 1609.4, "py": 1788.5}, {"loc_id": 36, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -2570.0, "z": -1520.8, "px": 1609.4, "py": 1788.5}, {"loc_id": 36, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -2570.0, "z": -1520.8, "px": 1609.4, "py": 1788.5}, {"loc_id": 36, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -2570.0, "z": -1520.8, "px": 1609.4, "py": 1788.5}, {"loc_id": 37, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -384.0, "z": 2571.6, "px": 1982.5, "py": 2486.9}, {"loc_id": 38, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -2445.9, "z": -4152.3, "px": 1630.6, "py": 1339.3}, {"loc_id": 38, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -2445.9, "z": -4152.3, "px": 1630.6, "py": 1339.3}, {"loc_id": 38, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -2445.9, "z": -4152.3, "px": 1630.6, "py": 1339.3}, {"loc_id": 39, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -562.3, "z": -4030.4, "px": 1952.0, "py": 1360.1}, {"loc_id": 39, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -562.3, "z": -4030.4, "px": 1952.0, "py": 1360.1}, {"loc_id": 39, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -562.3, "z": -4030.4, "px": 1952.0, "py": 1360.1}, {"loc_id": 40, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 464.9, "z": 2558.6, "px": 2127.3, "py": 2484.7}, {"loc_id": 40, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 464.9, "z": 2558.6, "px": 2127.3, "py": 2484.7}, {"loc_id": 40, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 464.9, "z": 2558.6, "px": 2127.3, "py": 2484.7}, {"loc_id": 41, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -4227.6, "z": 396.2, "px": 1326.5, "py": 2115.6}, {"loc_id": 41, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -4227.6, "z": 396.2, "px": 1326.5, "py": 2115.6}, {"loc_id": 41, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -4227.6, "z": 396.2, "px": 1326.5, "py": 2115.6}, {"loc_id": 41, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -4227.6, "z": 396.2, "px": 1326.5, "py": 2115.6}, {"loc_id": 42, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 3699.8, "z": 4355.8, "px": 2679.4, "py": 2791.4}, {"loc_id": 42, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 3699.8, "z": 4355.8, "px": 2679.4, "py": 2791.4}, {"loc_id": 42, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 3699.8, "z": 4355.8, "px": 2679.4, "py": 2791.4}, {"loc_id": 43, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -4994.4, "z": 1343.0, "px": 1195.6, "py": 2277.2}, {"loc_id": 43, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -4994.4, "z": 1343.0, "px": 1195.6, "py": 2277.2}, {"loc_id": 43, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -4994.4, "z": 1343.0, "px": 1195.6, "py": 2277.2}, {"loc_id": 44, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -187.0, "z": 2492.5, "px": 2016.1, "py": 2473.4}, {"loc_id": 45, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -2578.0, "z": -1589.3, "px": 1608.0, "py": 1776.8}, {"loc_id": 45, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -2578.0, "z": -1589.3, "px": 1608.0, "py": 1776.8}, {"loc_id": 45, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 1, "x": -2578.0, "z": -1589.3, "px": 1608.0, "py": 1776.8}, {"loc_id": 45, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -2578.0, "z": -1589.3, "px": 1608.0, "py": 1776.8}, {"loc_id": 46, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -2351.2, "z": 4805.5, "px": 1646.7, "py": 2868.1}, {"loc_id": 47, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -2414.9, "z": 4847.7, "px": 1635.9, "py": 2875.3}, {"loc_id": 47, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -2414.9, "z": 4847.7, "px": 1635.9, "py": 2875.3}, {"loc_id": 47, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -2414.9, "z": 4847.7, "px": 1635.9, "py": 2875.3}, {"loc_id": 47, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -2414.9, "z": 4847.7, "px": 1635.9, "py": 2875.3}, {"loc_id": 48, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -5066.2, "z": 1345.8, "px": 1183.4, "py": 2277.7}, {"loc_id": 49, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -2494.1, "z": 4982.9, "px": 1622.3, "py": 2898.4}, {"loc_id": 49, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -2494.1, "z": 4982.9, "px": 1622.3, "py": 2898.4}, {"loc_id": 49, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -2494.1, "z": 4982.9, "px": 1622.3, "py": 2898.4}, {"loc_id": 50, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -773.5, "z": -3723.6, "px": 1916.0, "py": 1412.5}, {"loc_id": 50, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -773.5, "z": -3723.6, "px": 1916.0, "py": 1412.5}, {"loc_id": 50, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -773.5, "z": -3723.6, "px": 1916.0, "py": 1412.5}, {"loc_id": 50, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -773.5, "z": -3723.6, "px": 1916.0, "py": 1412.5}, {"loc_id": 51, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 1, "x": 4555.6, "z": -3149.3, "px": 2825.5, "py": 1510.5}, {"loc_id": 51, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 4555.6, "z": -3149.3, "px": 2825.5, "py": 1510.5}, {"loc_id": 52, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 1297.8, "z": 2051.9, "px": 2269.5, "py": 2398.2}, {"loc_id": 52, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 1297.8, "z": 2051.9, "px": 2269.5, "py": 2398.2}, {"loc_id": 53, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -2806.7, "z": -5166.8, "px": 1569.0, "py": 1166.2}, {"loc_id": 53, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 1, "x": -2806.7, "z": -5166.8, "px": 1569.0, "py": 1166.2}, {"loc_id": 54, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 133.7, "z": 2553.3, "px": 2070.8, "py": 2483.8}, {"loc_id": 54, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 133.7, "z": 2553.3, "px": 2070.8, "py": 2483.8}, {"loc_id": 54, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 133.7, "z": 2553.3, "px": 2070.8, "py": 2483.8}, {"loc_id": 55, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -5323.0, "z": -1724.1, "px": 1139.5, "py": 1753.8}, {"loc_id": 55, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -5323.0, "z": -1724.1, "px": 1139.5, "py": 1753.8}, {"loc_id": 55, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 1, "x": -5323.0, "z": -1724.1, "px": 1139.5, "py": 1753.8}, {"loc_id": 55, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -5323.0, "z": -1724.1, "px": 1139.5, "py": 1753.8}, {"loc_id": 56, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 2178.8, "z": -3206.1, "px": 2419.8, "py": 1500.8}, {"loc_id": 56, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 2178.8, "z": -3206.1, "px": 2419.8, "py": 1500.8}, {"loc_id": 56, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 2178.8, "z": -3206.1, "px": 2419.8, "py": 1500.8}, {"loc_id": 57, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 3789.7, "z": 4478.3, "px": 2694.8, "py": 2812.3}, {"loc_id": 57, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 3789.7, "z": 4478.3, "px": 2694.8, "py": 2812.3}, {"loc_id": 58, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 1550.5, "z": 2242.3, "px": 2312.6, "py": 2430.7}, {"loc_id": 58, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 1550.5, "z": 2242.3, "px": 2312.6, "py": 2430.7}, {"loc_id": 59, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -3448.5, "z": 3407.3, "px": 1459.5, "py": 2629.5}, {"loc_id": 59, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -3448.5, "z": 3407.3, "px": 1459.5, "py": 2629.5}, {"loc_id": 60, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -5388.9, "z": 1521.4, "px": 1128.3, "py": 2307.7}, {"loc_id": 60, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -5388.9, "z": 1521.4, "px": 1128.3, "py": 2307.7}, {"loc_id": 61, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -3631.6, "z": 3121.5, "px": 1428.2, "py": 2580.7}, {"loc_id": 61, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -3631.6, "z": 3121.5, "px": 1428.2, "py": 2580.7}, {"loc_id": 62, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -2356.3, "z": -1007.5, "px": 1645.9, "py": 1876.1}, {"loc_id": 63, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 1654.7, "z": 4477.8, "px": 2330.4, "py": 2812.2}, {"loc_id": 65, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -4301.0, "z": 516.6, "px": 1314.0, "py": 2136.2}, {"loc_id": 65, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -4301.0, "z": 516.6, "px": 1314.0, "py": 2136.2}, {"loc_id": 65, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -4301.0, "z": 516.6, "px": 1314.0, "py": 2136.2}, {"loc_id": 65, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 1, "x": -4301.0, "z": 516.6, "px": 1314.0, "py": 2136.2}, {"loc_id": 66, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -2736.5, "z": -1736.3, "px": 1581.0, "py": 1751.7}, {"loc_id": 67, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -79.4, "z": 2703.3, "px": 2034.4, "py": 2509.4}, {"loc_id": 67, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -79.4, "z": 2703.3, "px": 2034.4, "py": 2509.4}, {"loc_id": 68, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -3123.2, "z": 395.0, "px": 1515.0, "py": 2115.4}, {"loc_id": 69, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 2314.6, "z": -1080.4, "px": 2443.0, "py": 1863.6}, {"loc_id": 69, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 2314.6, "z": -1080.4, "px": 2443.0, "py": 1863.6}, {"loc_id": 70, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 2613.0, "z": -138.8, "px": 2494.0, "py": 2024.3}, {"loc_id": 70, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 2613.0, "z": -138.8, "px": 2494.0, "py": 2024.3}, {"loc_id": 70, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 2613.0, "z": -138.8, "px": 2494.0, "py": 2024.3}, {"loc_id": 70, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 2613.0, "z": -138.8, "px": 2494.0, "py": 2024.3}, {"loc_id": 70, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 1, "x": 2613.0, "z": -138.8, "px": 2494.0, "py": 2024.3}, {"loc_id": 70, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 1, "x": 2613.0, "z": -138.8, "px": 2494.0, "py": 2024.3}, {"loc_id": 71, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 1918.6, "z": 1526.0, "px": 2375.4, "py": 2308.4}, {"loc_id": 71, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 1918.6, "z": 1526.0, "px": 2375.4, "py": 2308.4}, {"loc_id": 71, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 1, "x": 1918.6, "z": 1526.0, "px": 2375.4, "py": 2308.4}, {"loc_id": 72, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 4479.3, "z": -2945.6, "px": 2812.5, "py": 1545.3}, {"loc_id": 72, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 4479.3, "z": -2945.6, "px": 2812.5, "py": 1545.3}, {"loc_id": 73, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -2615.5, "z": -950.2, "px": 1601.6, "py": 1885.8}, {"loc_id": 73, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -2615.5, "z": -950.2, "px": 1601.6, "py": 1885.8}, {"loc_id": 74, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 4783.1, "z": -691.7, "px": 2864.3, "py": 1929.9}, {"loc_id": 75, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -5701.0, "z": -1147.1, "px": 1075.0, "py": 1852.2}, {"loc_id": 77, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 2296.4, "z": -3207.7, "px": 2439.9, "py": 1500.6}, {"loc_id": 77, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 2296.4, "z": -3207.7, "px": 2439.9, "py": 1500.6}, {"loc_id": 80, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 2377.0, "z": -1156.8, "px": 2453.7, "py": 1850.6}, {"loc_id": 80, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 2377.0, "z": -1156.8, "px": 2453.7, "py": 1850.6}, {"loc_id": 80, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 2377.0, "z": -1156.8, "px": 2453.7, "py": 1850.6}, {"loc_id": 81, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -888.8, "z": -3716.9, "px": 1896.3, "py": 1413.6}, {"loc_id": 82, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 1, "x": -629.5, "z": -3515.5, "px": 1940.6, "py": 1448.0}, {"loc_id": 83, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 1649.5, "z": 4335.2, "px": 2329.5, "py": 2787.9}, {"loc_id": 83, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 1649.5, "z": 4335.2, "px": 2329.5, "py": 2787.9}, {"loc_id": 86, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -3576.1, "z": 180.7, "px": 1437.7, "py": 2078.8}, {"loc_id": 86, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -3576.1, "z": 180.7, "px": 1437.7, "py": 2078.8}, {"loc_id": 86, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -3576.1, "z": 180.7, "px": 1437.7, "py": 2078.8}, {"loc_id": 87, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 3310.7, "z": -4417.7, "px": 2613.0, "py": 1294.0}, {"loc_id": 88, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 2353.7, "z": 270.7, "px": 2449.7, "py": 2094.2}, {"loc_id": 88, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 2353.7, "z": 270.7, "px": 2449.7, "py": 2094.2}, {"loc_id": 89, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -1936.1, "z": 4537.9, "px": 1717.6, "py": 2822.5}, {"loc_id": 90, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -582.8, "z": -3968.2, "px": 1948.5, "py": 1370.8}, {"loc_id": 90, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -582.8, "z": -3968.2, "px": 1948.5, "py": 1370.8}, {"loc_id": 90, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -582.8, "z": -3968.2, "px": 1948.5, "py": 1370.8}, {"loc_id": 91, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -5102.0, "z": -771.2, "px": 1177.3, "py": 1916.4}, {"loc_id": 91, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -5102.0, "z": -771.2, "px": 1177.3, "py": 1916.4}, {"loc_id": 92, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 1287.0, "z": 2118.5, "px": 2267.6, "py": 2409.6}, {"loc_id": 92, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 1287.0, "z": 2118.5, "px": 2267.6, "py": 2409.6}, {"loc_id": 92, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 1287.0, "z": 2118.5, "px": 2267.6, "py": 2409.6}, {"loc_id": 92, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 1287.0, "z": 2118.5, "px": 2267.6, "py": 2409.6}, {"loc_id": 93, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 1, "x": -5688.0, "z": -1080.8, "px": 1077.2, "py": 1863.5}, {"loc_id": 94, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 4547.2, "z": -3269.9, "px": 2824.1, "py": 1489.9}, {"loc_id": 95, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -4304.7, "z": 337.4, "px": 1313.3, "py": 2105.6}, {"loc_id": 95, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -4304.7, "z": 337.4, "px": 1313.3, "py": 2105.6}, {"loc_id": 96, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -116.2, "z": 2562.7, "px": 2028.2, "py": 2485.4}, {"loc_id": 96, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 1, "x": -116.2, "z": 2562.7, "px": 2028.2, "py": 2485.4}, {"loc_id": 97, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 2738.0, "z": 3658.2, "px": 2515.3, "py": 2672.3}, {"loc_id": 97, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 2738.0, "z": 3658.2, "px": 2515.3, "py": 2672.3}, {"loc_id": 97, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 2738.0, "z": 3658.2, "px": 2515.3, "py": 2672.3}, {"loc_id": 98, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 2425.8, "z": -1021.2, "px": 2462.0, "py": 1873.7}, {"loc_id": 98, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 1, "x": 2425.8, "z": -1021.2, "px": 2462.0, "py": 1873.7}, {"loc_id": 98, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 2425.8, "z": -1021.2, "px": 2462.0, "py": 1873.7}, {"loc_id": 99, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -1920.0, "z": 4600.7, "px": 1720.3, "py": 2833.2}, {"loc_id": 100, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 2508.7, "z": -5306.2, "px": 2476.2, "py": 1142.4}, {"loc_id": 100, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 2508.7, "z": -5306.2, "px": 2476.2, "py": 1142.4}, {"loc_id": 100, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 2508.7, "z": -5306.2, "px": 2476.2, "py": 1142.4}, {"loc_id": 101, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -1014.2, "z": -5639.2, "px": 1874.9, "py": 1085.6}, {"loc_id": 101, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -1014.2, "z": -5639.2, "px": 1874.9, "py": 1085.6}, {"loc_id": 102, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -5252.9, "z": -769.4, "px": 1151.5, "py": 1916.7}, {"loc_id": 102, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -5252.9, "z": -769.4, "px": 1151.5, "py": 1916.7}, {"loc_id": 102, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -5252.9, "z": -769.4, "px": 1151.5, "py": 1916.7}, {"loc_id": 103, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -5489.1, "z": 1993.6, "px": 1111.2, "py": 2388.2}, {"loc_id": 103, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -5489.1, "z": 1993.6, "px": 1111.2, "py": 2388.2}, {"loc_id": 104, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 1020.1, "z": 4295.3, "px": 2222.1, "py": 2781.1}, {"loc_id": 105, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 197.3, "z": 2575.2, "px": 2081.7, "py": 2487.5}, {"loc_id": 105, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 197.3, "z": 2575.2, "px": 2081.7, "py": 2487.5}, {"loc_id": 105, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 197.3, "z": 2575.2, "px": 2081.7, "py": 2487.5}, {"loc_id": 105, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 197.3, "z": 2575.2, "px": 2081.7, "py": 2487.5}, {"loc_id": 106, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -2182.9, "z": 4304.1, "px": 1675.5, "py": 2782.6}, {"loc_id": 106, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -2182.9, "z": 4304.1, "px": 1675.5, "py": 2782.6}, {"loc_id": 107, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -2631.9, "z": -882.8, "px": 1598.8, "py": 1897.3}, {"loc_id": 107, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -2631.9, "z": -882.8, "px": 1598.8, "py": 1897.3}, {"loc_id": 107, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 1, "x": -2631.9, "z": -882.8, "px": 1598.8, "py": 1897.3}, {"loc_id": 107, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 1, "x": -2631.9, "z": -882.8, "px": 1598.8, "py": 1897.3}, {"loc_id": 108, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 521.3, "z": 2624.5, "px": 2137.0, "py": 2495.9}, {"loc_id": 108, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 521.3, "z": 2624.5, "px": 2137.0, "py": 2495.9}, {"loc_id": 109, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -1078.2, "z": -3658.3, "px": 1864.0, "py": 1423.7}, {"loc_id": 109, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -1078.2, "z": -3658.3, "px": 1864.0, "py": 1423.7}, {"loc_id": 111, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -264.5, "z": 2509.6, "px": 2002.9, "py": 2476.3}, {"loc_id": 113, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 1402.0, "z": 2222.3, "px": 2287.3, "py": 2427.3}, {"loc_id": 113, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 1402.0, "z": 2222.3, "px": 2287.3, "py": 2427.3}, {"loc_id": 114, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 1607.7, "z": 2117.6, "px": 2322.4, "py": 2409.4}, {"loc_id": 114, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 1607.7, "z": 2117.6, "px": 2322.4, "py": 2409.4}, {"loc_id": 114, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 1607.7, "z": 2117.6, "px": 2322.4, "py": 2409.4}, {"loc_id": 115, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -61.9, "z": 2612.1, "px": 2037.4, "py": 2493.8}, {"loc_id": 115, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -61.9, "z": 2612.1, "px": 2037.4, "py": 2493.8}, {"loc_id": 116, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 2291.5, "z": 250.0, "px": 2439.1, "py": 2090.7}, {"loc_id": 116, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 2291.5, "z": 250.0, "px": 2439.1, "py": 2090.7}, {"loc_id": 116, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 2291.5, "z": 250.0, "px": 2439.1, "py": 2090.7}, {"loc_id": 117, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 272.2, "z": 2565.9, "px": 2094.5, "py": 2485.9}, {"loc_id": 117, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 272.2, "z": 2565.9, "px": 2094.5, "py": 2485.9}, {"loc_id": 117, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 1, "x": 272.2, "z": 2565.9, "px": 2094.5, "py": 2485.9}, {"loc_id": 117, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 272.2, "z": 2565.9, "px": 2094.5, "py": 2485.9}, {"loc_id": 118, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -2309.6, "z": 4288.3, "px": 1653.8, "py": 2779.9}, {"loc_id": 118, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -2309.6, "z": 4288.3, "px": 1653.8, "py": 2779.9}, {"loc_id": 119, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -5197.6, "z": 1466.1, "px": 1160.9, "py": 2298.2}, {"loc_id": 119, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 1, "x": -5197.6, "z": 1466.1, "px": 1160.9, "py": 2298.2}, {"loc_id": 119, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -5197.6, "z": 1466.1, "px": 1160.9, "py": 2298.2}, {"loc_id": 120, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -5252.1, "z": -1711.3, "px": 1151.6, "py": 1755.9}, {"loc_id": 120, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -5252.1, "z": -1711.3, "px": 1151.6, "py": 1755.9}, {"loc_id": 120, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -5252.1, "z": -1711.3, "px": 1151.6, "py": 1755.9}, {"loc_id": 120, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -5252.1, "z": -1711.3, "px": 1151.6, "py": 1755.9}, {"loc_id": 121, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -4236.9, "z": 465.5, "px": 1324.9, "py": 2127.4}, {"loc_id": 121, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -4236.9, "z": 465.5, "px": 1324.9, "py": 2127.4}, {"loc_id": 121, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -4236.9, "z": 465.5, "px": 1324.9, "py": 2127.4}, {"loc_id": 121, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -4236.9, "z": 465.5, "px": 1324.9, "py": 2127.4}, {"loc_id": 121, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -4236.9, "z": 465.5, "px": 1324.9, "py": 2127.4}, {"loc_id": 122, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 2226.5, "z": 268.7, "px": 2428.0, "py": 2093.9}, {"loc_id": 122, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 2226.5, "z": 268.7, "px": 2428.0, "py": 2093.9}, {"loc_id": 123, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 2317.7, "z": 334.7, "px": 2443.6, "py": 2105.1}, {"loc_id": 123, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 2317.7, "z": 334.7, "px": 2443.6, "py": 2105.1}, {"loc_id": 123, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 2317.7, "z": 334.7, "px": 2443.6, "py": 2105.1}, {"loc_id": 123, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 2317.7, "z": 334.7, "px": 2443.6, "py": 2105.1}, {"loc_id": 124, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 3454.8, "z": -4349.8, "px": 2637.6, "py": 1305.6}, {"loc_id": 125, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -5361.6, "z": 1717.9, "px": 1133.0, "py": 2341.2}, {"loc_id": 126, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 2176.0, "z": 447.6, "px": 2419.4, "py": 2124.4}, {"loc_id": 127, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 3631.1, "z": 716.1, "px": 2667.7, "py": 2170.2}, {"loc_id": 127, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 3631.1, "z": 716.1, "px": 2667.7, "py": 2170.2}, {"loc_id": 127, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 3631.1, "z": 716.1, "px": 2667.7, "py": 2170.2}, {"loc_id": 127, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 3631.1, "z": 716.1, "px": 2667.7, "py": 2170.2}, {"loc_id": 128, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -963.5, "z": -3775.8, "px": 1883.6, "py": 1403.6}, {"loc_id": 129, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 1, "x": -3081.8, "z": 578.8, "px": 1522.0, "py": 2146.8}, {"loc_id": 130, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 4748.1, "z": -509.7, "px": 2858.3, "py": 1961.0}, {"loc_id": 131, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 64.3, "z": 2610.1, "px": 2059.0, "py": 2493.5}, {"loc_id": 131, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 64.3, "z": 2610.1, "px": 2059.0, "py": 2493.5}, {"loc_id": 131, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 64.3, "z": 2610.1, "px": 2059.0, "py": 2493.5}, {"loc_id": 132, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -2767.1, "z": -1805.5, "px": 1575.7, "py": 1739.9}, {"loc_id": 132, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -2767.1, "z": -1805.5, "px": 1575.7, "py": 1739.9}, {"loc_id": 132, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -2767.1, "z": -1805.5, "px": 1575.7, "py": 1739.9}, {"loc_id": 133, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -2637.3, "z": -5254.9, "px": 1597.9, "py": 1151.2}, {"loc_id": 134, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -3640.2, "z": 3214.4, "px": 1426.7, "py": 2596.6}, {"loc_id": 134, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 1, "x": -3640.2, "z": 3214.4, "px": 1426.7, "py": 2596.6}, {"loc_id": 134, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -3640.2, "z": 3214.4, "px": 1426.7, "py": 2596.6}, {"loc_id": 134, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -3640.2, "z": 3214.4, "px": 1426.7, "py": 2596.6}, {"loc_id": 135, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 2251.6, "z": 335.0, "px": 2432.3, "py": 2105.2}, {"loc_id": 135, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 2251.6, "z": 335.0, "px": 2432.3, "py": 2105.2}, {"loc_id": 136, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 1096.3, "z": -3647.7, "px": 2235.1, "py": 1425.5}, {"loc_id": 136, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 1096.3, "z": -3647.7, "px": 2235.1, "py": 1425.5}, {"loc_id": 136, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 1096.3, "z": -3647.7, "px": 2235.1, "py": 1425.5}, {"loc_id": 137, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 2561.4, "z": -16.1, "px": 2485.1, "py": 2045.3}, {"loc_id": 137, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 2561.4, "z": -16.1, "px": 2485.1, "py": 2045.3}, {"loc_id": 139, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 3504.5, "z": 1327.7, "px": 2646.1, "py": 2274.6}, {"loc_id": 139, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 3504.5, "z": 1327.7, "px": 2646.1, "py": 2274.6}, {"loc_id": 139, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 3504.5, "z": 1327.7, "px": 2646.1, "py": 2274.6}, {"loc_id": 139, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 3504.5, "z": 1327.7, "px": 2646.1, "py": 2274.6}, {"loc_id": 140, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 383.1, "z": 2565.9, "px": 2113.4, "py": 2485.9}, {"loc_id": 141, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -3468.1, "z": 180.0, "px": 1456.1, "py": 2078.7}, {"loc_id": 141, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -3468.1, "z": 180.0, "px": 1456.1, "py": 2078.7}, {"loc_id": 142, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -5046.4, "z": 1265.2, "px": 1186.7, "py": 2263.9}, {"loc_id": 143, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 4484.2, "z": -3187.4, "px": 2813.3, "py": 1504.0}, {"loc_id": 143, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 4484.2, "z": -3187.4, "px": 2813.3, "py": 1504.0}, {"loc_id": 143, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 4484.2, "z": -3187.4, "px": 2813.3, "py": 1504.0}, {"loc_id": 143, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Blob", "count": 1, "x": 4484.2, "z": -3187.4, "px": 2813.3, "py": 1504.0}, {"loc_id": 143, "loc_name": "SunkenCrypt4", "item": "Item: One Of: Coins[5-30], Ruby[1-2], Amber[3-10], AmberPearl[2-5], WitheredBone[1-1], WitheredBone[1-1]", "count": 1, "x": 4484.2, "z": -3187.4, "px": 2813.3, "py": 1504.0}, {"loc_id": 144, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 1488.4, "z": 1973.9, "px": 2302.0, "py": 2384.9}, {"loc_id": 145, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -5130.3, "z": 1350.3, "px": 1172.4, "py": 2278.5}, {"loc_id": 145, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -5130.3, "z": 1350.3, "px": 1172.4, "py": 2278.5}, {"loc_id": 146, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -1070.8, "z": -5708.6, "px": 1865.3, "py": 1073.7}, {"loc_id": 146, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -1070.8, "z": -5708.6, "px": 1865.3, "py": 1073.7}, {"loc_id": 146, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -1070.8, "z": -5708.6, "px": 1865.3, "py": 1073.7}, {"loc_id": 147, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -3130.3, "z": 497.4, "px": 1513.8, "py": 2132.9}, {"loc_id": 147, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -3130.3, "z": 497.4, "px": 1513.8, "py": 2132.9}, {"loc_id": 147, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -3130.3, "z": 497.4, "px": 1513.8, "py": 2132.9}, {"loc_id": 148, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 586.4, "z": 2679.5, "px": 2148.1, "py": 2505.3}, {"loc_id": 148, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 586.4, "z": 2679.5, "px": 2148.1, "py": 2505.3}, {"loc_id": 149, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 1404.0, "z": 1975.1, "px": 2287.6, "py": 2385.1}, {"loc_id": 149, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 1404.0, "z": 1975.1, "px": 2287.6, "py": 2385.1}, {"loc_id": 149, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 1404.0, "z": 1975.1, "px": 2287.6, "py": 2385.1}, {"loc_id": 149, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 1404.0, "z": 1975.1, "px": 2287.6, "py": 2385.1}, {"loc_id": 150, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 3631.8, "z": 1023.6, "px": 2667.8, "py": 2222.7}, {"loc_id": 150, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 3631.8, "z": 1023.6, "px": 2667.8, "py": 2222.7}, {"loc_id": 151, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -3642.6, "z": -4094.0, "px": 1426.3, "py": 1349.3}, {"loc_id": 151, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -3642.6, "z": -4094.0, "px": 1426.3, "py": 1349.3}, {"loc_id": 151, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -3642.6, "z": -4094.0, "px": 1426.3, "py": 1349.3}, {"loc_id": 152, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 3722.0, "z": 717.5, "px": 2683.2, "py": 2170.5}, {"loc_id": 152, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 3722.0, "z": 717.5, "px": 2683.2, "py": 2170.5}, {"loc_id": 152, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 3722.0, "z": 717.5, "px": 2683.2, "py": 2170.5}, {"loc_id": 152, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 3722.0, "z": 717.5, "px": 2683.2, "py": 2170.5}, {"loc_id": 153, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -5179.6, "z": 1393.9, "px": 1164.0, "py": 2285.9}, {"loc_id": 154, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -2430.0, "z": 4939.6, "px": 1633.3, "py": 2891.0}, {"loc_id": 154, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -2430.0, "z": 4939.6, "px": 1633.3, "py": 2891.0}, {"loc_id": 154, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -2430.0, "z": 4939.6, "px": 1633.3, "py": 2891.0}, {"loc_id": 155, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -5362.2, "z": 1582.8, "px": 1132.9, "py": 2318.1}, {"loc_id": 155, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -5362.2, "z": 1582.8, "px": 1132.9, "py": 2318.1}, {"loc_id": 155, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 1, "x": -5362.2, "z": 1582.8, "px": 1132.9, "py": 2318.1}, {"loc_id": 156, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 3335.7, "z": -4334.9, "px": 2617.3, "py": 1308.2}, {"loc_id": 156, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 3335.7, "z": -4334.9, "px": 2617.3, "py": 1308.2}, {"loc_id": 157, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -51.9, "z": 2544.7, "px": 2039.1, "py": 2482.3}, {"loc_id": 157, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -51.9, "z": 2544.7, "px": 2039.1, "py": 2482.3}, {"loc_id": 157, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -51.9, "z": 2544.7, "px": 2039.1, "py": 2482.3}, {"loc_id": 157, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -51.9, "z": 2544.7, "px": 2039.1, "py": 2482.3}, {"loc_id": 158, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -4423.2, "z": 1289.1, "px": 1293.1, "py": 2268.0}, {"loc_id": 158, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -4423.2, "z": 1289.1, "px": 1293.1, "py": 2268.0}, {"loc_id": 158, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -4423.2, "z": 1289.1, "px": 1293.1, "py": 2268.0}, {"loc_id": 158, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -4423.2, "z": 1289.1, "px": 1293.1, "py": 2268.0}, {"loc_id": 158, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -4423.2, "z": 1289.1, "px": 1293.1, "py": 2268.0}, {"loc_id": 159, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -4406.6, "z": 1211.3, "px": 1295.9, "py": 2254.7}, {"loc_id": 160, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -2167.4, "z": 4223.9, "px": 1678.1, "py": 2768.9}, {"loc_id": 160, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -2167.4, "z": 4223.9, "px": 1678.1, "py": 2768.9}, {"loc_id": 161, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -2701.2, "z": -912.1, "px": 1587.0, "py": 1892.3}, {"loc_id": 162, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 3787.7, "z": 697.4, "px": 2694.4, "py": 2167.0}, {"loc_id": 162, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 3787.7, "z": 697.4, "px": 2694.4, "py": 2167.0}, {"loc_id": 163, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 4625.9, "z": -3085.3, "px": 2837.5, "py": 1521.4}, {"loc_id": 163, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 4625.9, "z": -3085.3, "px": 2837.5, "py": 1521.4}, {"loc_id": 163, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 4625.9, "z": -3085.3, "px": 2837.5, "py": 1521.4}, {"loc_id": 163, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 4625.9, "z": -3085.3, "px": 2837.5, "py": 1521.4}, {"loc_id": 165, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 2629.5, "z": 3851.6, "px": 2496.8, "py": 2705.3}, {"loc_id": 165, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 2629.5, "z": 3851.6, "px": 2496.8, "py": 2705.3}, {"loc_id": 166, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -2244.3, "z": 4276.9, "px": 1665.0, "py": 2777.9}, {"loc_id": 166, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -2244.3, "z": 4276.9, "px": 1665.0, "py": 2777.9}, {"loc_id": 166, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -2244.3, "z": 4276.9, "px": 1665.0, "py": 2777.9}, {"loc_id": 167, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 3397.0, "z": -4496.1, "px": 2627.8, "py": 1280.7}, {"loc_id": 167, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 3397.0, "z": -4496.1, "px": 2627.8, "py": 1280.7}, {"loc_id": 167, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 3397.0, "z": -4496.1, "px": 2627.8, "py": 1280.7}, {"loc_id": 168, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -889.7, "z": -3644.9, "px": 1896.2, "py": 1425.9}, {"loc_id": 168, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -889.7, "z": -3644.9, "px": 1896.2, "py": 1425.9}, {"loc_id": 168, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -889.7, "z": -3644.9, "px": 1896.2, "py": 1425.9}, {"loc_id": 168, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -889.7, "z": -3644.9, "px": 1896.2, "py": 1425.9}, {"loc_id": 169, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -5107.9, "z": 1285.8, "px": 1176.3, "py": 2267.4}, {"loc_id": 170, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -4366.3, "z": 396.5, "px": 1302.8, "py": 2115.7}, {"loc_id": 171, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 633.0, "z": 2548.8, "px": 2156.0, "py": 2483.0}, {"loc_id": 171, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 633.0, "z": 2548.8, "px": 2156.0, "py": 2483.0}, {"loc_id": 171, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 633.0, "z": 2548.8, "px": 2156.0, "py": 2483.0}, {"loc_id": 171, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt", "count": 1, "x": 633.0, "z": 2548.8, "px": 2156.0, "py": 2483.0}, {"loc_id": 172, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -3663.7, "z": 205.0, "px": 1422.7, "py": 2083.0}, {"loc_id": 172, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -3663.7, "z": 205.0, "px": 1422.7, "py": 2083.0}, {"loc_id": 173, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 4731.5, "z": -783.9, "px": 2855.5, "py": 1914.2}, {"loc_id": 173, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 4731.5, "z": -783.9, "px": 2855.5, "py": 1914.2}, {"loc_id": 173, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 4731.5, "z": -783.9, "px": 2855.5, "py": 1914.2}, {"loc_id": 174, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 563.7, "z": 2571.8, "px": 2144.2, "py": 2486.9}, {"loc_id": 174, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 563.7, "z": 2571.8, "px": 2144.2, "py": 2486.9}, {"loc_id": 174, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 563.7, "z": 2571.8, "px": 2144.2, "py": 2486.9}, {"loc_id": 175, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -3717.0, "z": -4233.5, "px": 1413.6, "py": 1325.5}, {"loc_id": 175, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -3717.0, "z": -4233.5, "px": 1413.6, "py": 1325.5}, {"loc_id": 176, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -1990.7, "z": 4469.7, "px": 1708.3, "py": 2810.8}, {"loc_id": 177, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -3456.5, "z": 3310.3, "px": 1458.1, "py": 2613.0}, {"loc_id": 178, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -4272.5, "z": 3640.1, "px": 1318.8, "py": 2669.2}, {"loc_id": 178, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -4272.5, "z": 3640.1, "px": 1318.8, "py": 2669.2}, {"loc_id": 178, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -4272.5, "z": 3640.1, "px": 1318.8, "py": 2669.2}, {"loc_id": 180, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 3381.3, "z": -4433.3, "px": 2625.1, "py": 1291.4}, {"loc_id": 180, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 3381.3, "z": -4433.3, "px": 2625.1, "py": 1291.4}, {"loc_id": 181, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 2700.5, "z": 3847.2, "px": 2508.9, "py": 2704.6}, {"loc_id": 181, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 2700.5, "z": 3847.2, "px": 2508.9, "py": 2704.6}, {"loc_id": 181, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 2700.5, "z": 3847.2, "px": 2508.9, "py": 2704.6}, {"loc_id": 182, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -2513.9, "z": -4161.4, "px": 1619.0, "py": 1337.8}, {"loc_id": 182, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -2513.9, "z": -4161.4, "px": 1619.0, "py": 1337.8}, {"loc_id": 183, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -2508.1, "z": 4873.8, "px": 1620.0, "py": 2879.8}, {"loc_id": 183, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -2508.1, "z": 4873.8, "px": 1620.0, "py": 2879.8}, {"loc_id": 184, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -819.9, "z": -3633.2, "px": 1908.1, "py": 1427.9}, {"loc_id": 186, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": -5617.1, "z": -1099.6, "px": 1089.3, "py": 1860.3}, {"loc_id": 186, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -5617.1, "z": -1099.6, "px": 1089.3, "py": 1860.3}, {"loc_id": 186, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -5617.1, "z": -1099.6, "px": 1089.3, "py": 1860.3}, {"loc_id": 187, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 4433.2, "z": -3127.0, "px": 2804.6, "py": 1514.3}, {"loc_id": 187, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": 4433.2, "z": -3127.0, "px": 2804.6, "py": 1514.3}, {"loc_id": 187, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 4433.2, "z": -3127.0, "px": 2804.6, "py": 1514.3}, {"loc_id": 188, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 4725.5, "z": -880.8, "px": 2854.5, "py": 1897.7}, {"loc_id": 188, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: BlobElite", "count": 1, "x": 4725.5, "z": -880.8, "px": 2854.5, "py": 1897.7}, {"loc_id": 188, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 4725.5, "z": -880.8, "px": 2854.5, "py": 1897.7}, {"loc_id": 188, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": 4725.5, "z": -880.8, "px": 2854.5, "py": 1897.7}, {"loc_id": 188, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 4725.5, "z": -880.8, "px": 2854.5, "py": 1897.7}, {"loc_id": 189, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": 1211.9, "z": 2097.1, "px": 2254.8, "py": 2405.9}, {"loc_id": 189, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 1211.9, "z": 2097.1, "px": 2254.8, "py": 2405.9}, {"loc_id": 189, "loc_name": "SunkenCrypt4", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 1211.9, "z": 2097.1, "px": 2254.8, "py": 2405.9}, {"loc_id": 190, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 1354.8, "z": 2124.8, "px": 2279.2, "py": 2410.6}, {"loc_id": 190, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 1354.8, "z": 2124.8, "px": 2279.2, "py": 2410.6}, {"loc_id": 191, "loc_name": "SunkenCrypt4", "item": "SpawnOnce: Draugr", "count": 1, "x": -701.9, "z": -3592.2, "px": 1928.2, "py": 1434.9}, {"loc_id": 191, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (1)", "count": 1, "x": -701.9, "z": -3592.2, "px": 1928.2, "py": 1434.9}, {"loc_id": 191, "loc_name": "SunkenCrypt4", "item": "Container: TreasureChest_sunkencrypt (2)", "count": 1, "x": -701.9, "z": -3592.2, "px": 1928.2, "py": 1434.9}, {"loc_id": 191, "loc_name": "SunkenCrypt4", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -701.9, "z": -3592.2, "px": 1928.2, "py": 1434.9}, {"loc_id": 656, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 3008.0, "z": 6848.0, "px": 2561.4, "py": 3216.7}, {"loc_id": 656, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 3008.0, "z": 6848.0, "px": 2561.4, "py": 3216.7}, {"loc_id": 657, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -8320.0, "z": 320.0, "px": 628.1, "py": 2102.6}, {"loc_id": 657, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -8320.0, "z": 320.0, "px": 628.1, "py": 2102.6}, {"loc_id": 657, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": -8320.0, "z": 320.0, "px": 628.1, "py": 2102.6}, {"loc_id": 657, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 1, "x": -8320.0, "z": 320.0, "px": 628.1, "py": 2102.6}, {"loc_id": 658, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": -1856.0, "z": -6976.0, "px": 1731.2, "py": 857.4}, {"loc_id": 658, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -1856.0, "z": -6976.0, "px": 1731.2, "py": 857.4}, {"loc_id": 659, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 3840.0, "z": -5952.0, "px": 2703.4, "py": 1032.2}, {"loc_id": 660, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -6080.0, "z": -896.0, "px": 1010.3, "py": 1895.1}, {"loc_id": 660, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -6080.0, "z": -896.0, "px": 1010.3, "py": 1895.1}, {"loc_id": 661, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 9280.0, "z": -1728.0, "px": 3631.8, "py": 1753.1}, {"loc_id": 661, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 9280.0, "z": -1728.0, "px": 3631.8, "py": 1753.1}, {"loc_id": 661, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": 9280.0, "z": -1728.0, "px": 3631.8, "py": 1753.1}, {"loc_id": 662, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 1856.0, "z": -7104.0, "px": 2364.8, "py": 835.6}, {"loc_id": 662, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 1856.0, "z": -7104.0, "px": 2364.8, "py": 835.6}, {"loc_id": 663, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -1728.0, "z": -7296.0, "px": 1753.1, "py": 802.8}, {"loc_id": 663, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -1728.0, "z": -7296.0, "px": 1753.1, "py": 802.8}, {"loc_id": 664, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 5952.0, "z": 5120.0, "px": 3063.8, "py": 2921.8}, {"loc_id": 664, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 5952.0, "z": 5120.0, "px": 3063.8, "py": 2921.8}, {"loc_id": 665, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -8640.0, "z": 128.0, "px": 573.4, "py": 2069.8}, {"loc_id": 665, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -8640.0, "z": 128.0, "px": 573.4, "py": 2069.8}, {"loc_id": 666, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 3072.0, "z": 6336.0, "px": 2572.3, "py": 3129.3}, {"loc_id": 666, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 3072.0, "z": 6336.0, "px": 2572.3, "py": 3129.3}, {"loc_id": 666, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 3072.0, "z": 6336.0, "px": 2572.3, "py": 3129.3}, {"loc_id": 667, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -2752.0, "z": -6016.0, "px": 1578.3, "py": 1021.3}, {"loc_id": 667, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -2752.0, "z": -6016.0, "px": 1578.3, "py": 1021.3}, {"loc_id": 667, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -2752.0, "z": -6016.0, "px": 1578.3, "py": 1021.3}, {"loc_id": 668, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": 5952.0, "z": -4416.0, "px": 3063.8, "py": 1294.3}, {"loc_id": 668, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 5952.0, "z": -4416.0, "px": 3063.8, "py": 1294.3}, {"loc_id": 668, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 5952.0, "z": -4416.0, "px": 3063.8, "py": 1294.3}, {"loc_id": 669, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -2112.0, "z": 7360.0, "px": 1687.6, "py": 3304.1}, {"loc_id": 669, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -2112.0, "z": 7360.0, "px": 1687.6, "py": 3304.1}, {"loc_id": 670, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -4736.0, "z": -3968.0, "px": 1239.7, "py": 1370.8}, {"loc_id": 671, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -6400.0, "z": -3968.0, "px": 955.7, "py": 1370.8}, {"loc_id": 671, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -6400.0, "z": -3968.0, "px": 955.7, "py": 1370.8}, {"loc_id": 671, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -6400.0, "z": -3968.0, "px": 955.7, "py": 1370.8}, {"loc_id": 671, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": -6400.0, "z": -3968.0, "px": 955.7, "py": 1370.8}, {"loc_id": 671, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": -6400.0, "z": -3968.0, "px": 955.7, "py": 1370.8}, {"loc_id": 672, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 3776.0, "z": 5952.0, "px": 2692.4, "py": 3063.8}, {"loc_id": 672, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 3776.0, "z": 5952.0, "px": 2692.4, "py": 3063.8}, {"loc_id": 673, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 7296.0, "z": -5056.0, "px": 3293.2, "py": 1185.1}, {"loc_id": 673, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": 7296.0, "z": -5056.0, "px": 3293.2, "py": 1185.1}, {"loc_id": 673, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 7296.0, "z": -5056.0, "px": 3293.2, "py": 1185.1}, {"loc_id": 673, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 1, "x": 7296.0, "z": -5056.0, "px": 3293.2, "py": 1185.1}, {"loc_id": 674, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 1664.0, "z": -6784.0, "px": 2332.0, "py": 890.2}, {"loc_id": 674, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 1664.0, "z": -6784.0, "px": 2332.0, "py": 890.2}, {"loc_id": 674, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 1664.0, "z": -6784.0, "px": 2332.0, "py": 890.2}, {"loc_id": 674, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": 1664.0, "z": -6784.0, "px": 2332.0, "py": 890.2}, {"loc_id": 675, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -6912.0, "z": 1088.0, "px": 868.4, "py": 2233.7}, {"loc_id": 676, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -7552.0, "z": -2624.0, "px": 759.1, "py": 1600.2}, {"loc_id": 676, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -7552.0, "z": -2624.0, "px": 759.1, "py": 1600.2}, {"loc_id": 678, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -8960.0, "z": 768.0, "px": 518.8, "py": 2179.1}, {"loc_id": 678, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": -8960.0, "z": 768.0, "px": 518.8, "py": 2179.1}, {"loc_id": 678, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -8960.0, "z": 768.0, "px": 518.8, "py": 2179.1}, {"loc_id": 679, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 4096.0, "z": -5888.0, "px": 2747.1, "py": 1043.1}, {"loc_id": 680, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 8128.0, "z": -3136.0, "px": 3435.2, "py": 1512.8}, {"loc_id": 680, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 8128.0, "z": -3136.0, "px": 3435.2, "py": 1512.8}, {"loc_id": 680, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 8128.0, "z": -3136.0, "px": 3435.2, "py": 1512.8}, {"loc_id": 681, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -8576.0, "z": 2112.0, "px": 584.4, "py": 2408.4}, {"loc_id": 681, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -8576.0, "z": 2112.0, "px": 584.4, "py": 2408.4}, {"loc_id": 681, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 1, "x": -8576.0, "z": 2112.0, "px": 584.4, "py": 2408.4}, {"loc_id": 682, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 3904.0, "z": -5632.0, "px": 2714.3, "py": 1086.8}, {"loc_id": 682, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 3904.0, "z": -5632.0, "px": 2714.3, "py": 1086.8}, {"loc_id": 683, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 9088.0, "z": 1472.0, "px": 3599.0, "py": 2299.2}, {"loc_id": 683, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 9088.0, "z": 1472.0, "px": 3599.0, "py": 2299.2}, {"loc_id": 684, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -8640.0, "z": 1536.0, "px": 573.4, "py": 2310.1}, {"loc_id": 684, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -8640.0, "z": 1536.0, "px": 573.4, "py": 2310.1}, {"loc_id": 685, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -3072.0, "z": -7104.0, "px": 1523.7, "py": 835.6}, {"loc_id": 685, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -3072.0, "z": -7104.0, "px": 1523.7, "py": 835.6}, {"loc_id": 686, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 7744.0, "z": 2496.0, "px": 3369.6, "py": 2474.0}, {"loc_id": 688, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -1920.0, "z": 7040.0, "px": 1720.3, "py": 3249.5}, {"loc_id": 690, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": -5440.0, "z": 5760.0, "px": 1119.6, "py": 3031.0}, {"loc_id": 690, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -5440.0, "z": 5760.0, "px": 1119.6, "py": 3031.0}, {"loc_id": 691, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 8960.0, "z": -1024.0, "px": 3577.2, "py": 1873.2}, {"loc_id": 691, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 8960.0, "z": -1024.0, "px": 3577.2, "py": 1873.2}, {"loc_id": 691, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 8960.0, "z": -1024.0, "px": 3577.2, "py": 1873.2}, {"loc_id": 692, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -2816.0, "z": 6272.0, "px": 1567.4, "py": 3118.4}, {"loc_id": 692, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -2816.0, "z": 6272.0, "px": 1567.4, "py": 3118.4}, {"loc_id": 693, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 5440.0, "z": 3328.0, "px": 2976.4, "py": 2616.0}, {"loc_id": 693, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 5440.0, "z": 3328.0, "px": 2976.4, "py": 2616.0}, {"loc_id": 693, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 5440.0, "z": 3328.0, "px": 2976.4, "py": 2616.0}, {"loc_id": 694, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 4864.0, "z": -4992.0, "px": 2878.1, "py": 1196.0}, {"loc_id": 695, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 7360.0, "z": -3456.0, "px": 3304.1, "py": 1458.2}, {"loc_id": 695, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 7360.0, "z": -3456.0, "px": 3304.1, "py": 1458.2}, {"loc_id": 695, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": 7360.0, "z": -3456.0, "px": 3304.1, "py": 1458.2}, {"loc_id": 696, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 4672.0, "z": -4672.0, "px": 2845.4, "py": 1250.6}, {"loc_id": 696, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 4672.0, "z": -4672.0, "px": 2845.4, "py": 1250.6}, {"loc_id": 697, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 9600.0, "z": -2368.0, "px": 3686.4, "py": 1643.9}, {"loc_id": 697, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 9600.0, "z": -2368.0, "px": 3686.4, "py": 1643.9}, {"loc_id": 698, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 6208.0, "z": 5760.0, "px": 3107.5, "py": 3031.0}, {"loc_id": 698, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 6208.0, "z": 5760.0, "px": 3107.5, "py": 3031.0}, {"loc_id": 698, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 6208.0, "z": 5760.0, "px": 3107.5, "py": 3031.0}, {"loc_id": 698, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 6208.0, "z": 5760.0, "px": 3107.5, "py": 3031.0}, {"loc_id": 699, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 3392.0, "z": 5696.0, "px": 2626.9, "py": 3020.1}, {"loc_id": 699, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 3392.0, "z": 5696.0, "px": 2626.9, "py": 3020.1}, {"loc_id": 700, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 8448.0, "z": 896.0, "px": 3489.8, "py": 2200.9}, {"loc_id": 700, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 8448.0, "z": 896.0, "px": 3489.8, "py": 2200.9}, {"loc_id": 700, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": 8448.0, "z": 896.0, "px": 3489.8, "py": 2200.9}, {"loc_id": 701, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -1152.0, "z": -7040.0, "px": 1851.4, "py": 846.5}, {"loc_id": 701, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": -1152.0, "z": -7040.0, "px": 1851.4, "py": 846.5}, {"loc_id": 702, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 7424.0, "z": -2176.0, "px": 3315.0, "py": 1676.6}, {"loc_id": 702, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 7424.0, "z": -2176.0, "px": 3315.0, "py": 1676.6}, {"loc_id": 702, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 7424.0, "z": -2176.0, "px": 3315.0, "py": 1676.6}, {"loc_id": 703, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -384.0, "z": -6656.0, "px": 1982.5, "py": 912.0}, {"loc_id": 703, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": -384.0, "z": -6656.0, "px": 1982.5, "py": 912.0}, {"loc_id": 703, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -384.0, "z": -6656.0, "px": 1982.5, "py": 912.0}, {"loc_id": 703, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -384.0, "z": -6656.0, "px": 1982.5, "py": 912.0}, {"loc_id": 703, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 1, "x": -384.0, "z": -6656.0, "px": 1982.5, "py": 912.0}, {"loc_id": 704, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 1280.0, "z": -6592.0, "px": 2266.5, "py": 923.0}, {"loc_id": 704, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 1280.0, "z": -6592.0, "px": 2266.5, "py": 923.0}, {"loc_id": 704, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 1280.0, "z": -6592.0, "px": 2266.5, "py": 923.0}, {"loc_id": 704, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 1280.0, "z": -6592.0, "px": 2266.5, "py": 923.0}, {"loc_id": 705, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 6144.0, "z": -1536.0, "px": 3096.6, "py": 1785.9}, {"loc_id": 705, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 6144.0, "z": -1536.0, "px": 3096.6, "py": 1785.9}, {"loc_id": 705, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 6144.0, "z": -1536.0, "px": 3096.6, "py": 1785.9}, {"loc_id": 707, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 1024.0, "z": -7360.0, "px": 2222.8, "py": 791.9}, {"loc_id": 707, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 1024.0, "z": -7360.0, "px": 2222.8, "py": 791.9}, {"loc_id": 707, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 1, "x": 1024.0, "z": -7360.0, "px": 2222.8, "py": 791.9}, {"loc_id": 708, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 8512.0, "z": 1152.0, "px": 3500.7, "py": 2244.6}, {"loc_id": 708, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 8512.0, "z": 1152.0, "px": 3500.7, "py": 2244.6}, {"loc_id": 708, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 8512.0, "z": 1152.0, "px": 3500.7, "py": 2244.6}, {"loc_id": 708, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 8512.0, "z": 1152.0, "px": 3500.7, "py": 2244.6}, {"loc_id": 709, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": -6080.0, "z": -1984.0, "px": 1010.3, "py": 1709.4}, {"loc_id": 709, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -6080.0, "z": -1984.0, "px": 1010.3, "py": 1709.4}, {"loc_id": 709, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -6080.0, "z": -1984.0, "px": 1010.3, "py": 1709.4}, {"loc_id": 709, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -6080.0, "z": -1984.0, "px": 1010.3, "py": 1709.4}, {"loc_id": 710, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 8384.0, "z": -3456.0, "px": 3478.9, "py": 1458.2}, {"loc_id": 711, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -5184.0, "z": 6208.0, "px": 1163.3, "py": 3107.5}, {"loc_id": 711, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -5184.0, "z": 6208.0, "px": 1163.3, "py": 3107.5}, {"loc_id": 712, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 9152.0, "z": -1280.0, "px": 3609.9, "py": 1829.5}, {"loc_id": 712, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 9152.0, "z": -1280.0, "px": 3609.9, "py": 1829.5}, {"loc_id": 712, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 9152.0, "z": -1280.0, "px": 3609.9, "py": 1829.5}, {"loc_id": 713, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 4224.0, "z": 5824.0, "px": 2768.9, "py": 3042.0}, {"loc_id": 714, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 1, "x": -896.0, "z": -7616.0, "px": 1895.1, "py": 748.2}, {"loc_id": 715, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 8064.0, "z": 2752.0, "px": 3424.3, "py": 2517.7}, {"loc_id": 715, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 8064.0, "z": 2752.0, "px": 3424.3, "py": 2517.7}, {"loc_id": 715, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": 8064.0, "z": 2752.0, "px": 3424.3, "py": 2517.7}, {"loc_id": 715, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 8064.0, "z": 2752.0, "px": 3424.3, "py": 2517.7}, {"loc_id": 716, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -6336.0, "z": 3328.0, "px": 966.7, "py": 2616.0}, {"loc_id": 716, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -6336.0, "z": 3328.0, "px": 966.7, "py": 2616.0}, {"loc_id": 716, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -6336.0, "z": 3328.0, "px": 966.7, "py": 2616.0}, {"loc_id": 717, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -7360.0, "z": -3392.0, "px": 791.9, "py": 1469.1}, {"loc_id": 717, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 1, "x": -7360.0, "z": -3392.0, "px": 791.9, "py": 1469.1}, {"loc_id": 717, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -7360.0, "z": -3392.0, "px": 791.9, "py": 1469.1}, {"loc_id": 718, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -6336.0, "z": 704.0, "px": 966.7, "py": 2168.1}, {"loc_id": 718, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -6336.0, "z": 704.0, "px": 966.7, "py": 2168.1}, {"loc_id": 718, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": -6336.0, "z": 704.0, "px": 966.7, "py": 2168.1}, {"loc_id": 718, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -6336.0, "z": 704.0, "px": 966.7, "py": 2168.1}, {"loc_id": 719, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 4032.0, "z": -6144.0, "px": 2736.1, "py": 999.4}, {"loc_id": 719, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 4032.0, "z": -6144.0, "px": 2736.1, "py": 999.4}, {"loc_id": 719, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": 4032.0, "z": -6144.0, "px": 2736.1, "py": 999.4}, {"loc_id": 720, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -7168.0, "z": 640.0, "px": 824.7, "py": 2157.2}, {"loc_id": 720, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": -7168.0, "z": 640.0, "px": 824.7, "py": 2157.2}, {"loc_id": 720, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -7168.0, "z": 640.0, "px": 824.7, "py": 2157.2}, {"loc_id": 721, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -2560.0, "z": -5760.0, "px": 1611.1, "py": 1065.0}, {"loc_id": 722, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -4480.0, "z": -4352.0, "px": 1283.4, "py": 1305.3}, {"loc_id": 722, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -4480.0, "z": -4352.0, "px": 1283.4, "py": 1305.3}, {"loc_id": 722, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -4480.0, "z": -4352.0, "px": 1283.4, "py": 1305.3}, {"loc_id": 723, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 8768.0, "z": -2944.0, "px": 3544.4, "py": 1545.6}, {"loc_id": 723, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 8768.0, "z": -2944.0, "px": 3544.4, "py": 1545.6}, {"loc_id": 723, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 8768.0, "z": -2944.0, "px": 3544.4, "py": 1545.6}, {"loc_id": 723, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 1, "x": 8768.0, "z": -2944.0, "px": 3544.4, "py": 1545.6}, {"loc_id": 724, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -6912.0, "z": 5056.0, "px": 868.4, "py": 2910.9}, {"loc_id": 725, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 2816.0, "z": 5696.0, "px": 2528.6, "py": 3020.1}, {"loc_id": 725, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 2816.0, "z": 5696.0, "px": 2528.6, "py": 3020.1}, {"loc_id": 725, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": 2816.0, "z": 5696.0, "px": 2528.6, "py": 3020.1}, {"loc_id": 725, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 2816.0, "z": 5696.0, "px": 2528.6, "py": 3020.1}, {"loc_id": 725, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 2816.0, "z": 5696.0, "px": 2528.6, "py": 3020.1}, {"loc_id": 726, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 832.0, "z": -7040.0, "px": 2190.0, "py": 846.5}, {"loc_id": 726, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 832.0, "z": -7040.0, "px": 2190.0, "py": 846.5}, {"loc_id": 726, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": 832.0, "z": -7040.0, "px": 2190.0, "py": 846.5}, {"loc_id": 726, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 832.0, "z": -7040.0, "px": 2190.0, "py": 846.5}, {"loc_id": 727, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 6144.0, "z": -4672.0, "px": 3096.6, "py": 1250.6}, {"loc_id": 727, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 6144.0, "z": -4672.0, "px": 3096.6, "py": 1250.6}, {"loc_id": 727, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 6144.0, "z": -4672.0, "px": 3096.6, "py": 1250.6}, {"loc_id": 728, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 7680.0, "z": -2368.0, "px": 3358.7, "py": 1643.9}, {"loc_id": 729, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 8064.0, "z": -1728.0, "px": 3424.3, "py": 1753.1}, {"loc_id": 729, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 8064.0, "z": -1728.0, "px": 3424.3, "py": 1753.1}, {"loc_id": 729, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 8064.0, "z": -1728.0, "px": 3424.3, "py": 1753.1}, {"loc_id": 729, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 8064.0, "z": -1728.0, "px": 3424.3, "py": 1753.1}, {"loc_id": 730, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 8192.0, "z": -832.0, "px": 3446.1, "py": 1906.0}, {"loc_id": 730, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 8192.0, "z": -832.0, "px": 3446.1, "py": 1906.0}, {"loc_id": 730, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 8192.0, "z": -832.0, "px": 3446.1, "py": 1906.0}, {"loc_id": 730, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 8192.0, "z": -832.0, "px": 3446.1, "py": 1906.0}, {"loc_id": 730, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 8192.0, "z": -832.0, "px": 3446.1, "py": 1906.0}, {"loc_id": 731, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -7744.0, "z": -2880.0, "px": 726.4, "py": 1556.5}, {"loc_id": 731, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -7744.0, "z": -2880.0, "px": 726.4, "py": 1556.5}, {"loc_id": 732, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 6464.0, "z": 2880.0, "px": 3151.2, "py": 2539.5}, {"loc_id": 732, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 6464.0, "z": 2880.0, "px": 3151.2, "py": 2539.5}, {"loc_id": 732, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 6464.0, "z": 2880.0, "px": 3151.2, "py": 2539.5}, {"loc_id": 732, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 6464.0, "z": 2880.0, "px": 3151.2, "py": 2539.5}, {"loc_id": 732, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": 6464.0, "z": 2880.0, "px": 3151.2, "py": 2539.5}, {"loc_id": 733, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 8256.0, "z": 2432.0, "px": 3457.0, "py": 2463.1}, {"loc_id": 734, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 2752.0, "z": 5952.0, "px": 2517.7, "py": 3063.8}, {"loc_id": 734, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 2752.0, "z": 5952.0, "px": 2517.7, "py": 3063.8}, {"loc_id": 736, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 9088.0, "z": -3008.0, "px": 3599.0, "py": 1534.6}, {"loc_id": 736, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 9088.0, "z": -3008.0, "px": 3599.0, "py": 1534.6}, {"loc_id": 736, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 9088.0, "z": -3008.0, "px": 3599.0, "py": 1534.6}, {"loc_id": 736, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": 9088.0, "z": -3008.0, "px": 3599.0, "py": 1534.6}, {"loc_id": 737, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -9728.0, "z": -1024.0, "px": 387.8, "py": 1873.2}, {"loc_id": 737, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -9728.0, "z": -1024.0, "px": 387.8, "py": 1873.2}, {"loc_id": 738, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -3072.0, "z": -5760.0, "px": 1523.7, "py": 1065.0}, {"loc_id": 738, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -3072.0, "z": -5760.0, "px": 1523.7, "py": 1065.0}, {"loc_id": 738, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 1, "x": -3072.0, "z": -5760.0, "px": 1523.7, "py": 1065.0}, {"loc_id": 738, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -3072.0, "z": -5760.0, "px": 1523.7, "py": 1065.0}, {"loc_id": 738, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -3072.0, "z": -5760.0, "px": 1523.7, "py": 1065.0}, {"loc_id": 739, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -6912.0, "z": 704.0, "px": 868.4, "py": 2168.1}, {"loc_id": 739, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -6912.0, "z": 704.0, "px": 868.4, "py": 2168.1}, {"loc_id": 739, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -6912.0, "z": 704.0, "px": 868.4, "py": 2168.1}, {"loc_id": 740, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -5760.0, "z": -1984.0, "px": 1065.0, "py": 1709.4}, {"loc_id": 740, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -5760.0, "z": -1984.0, "px": 1065.0, "py": 1709.4}, {"loc_id": 740, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": -5760.0, "z": -1984.0, "px": 1065.0, "py": 1709.4}, {"loc_id": 740, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -5760.0, "z": -1984.0, "px": 1065.0, "py": 1709.4}, {"loc_id": 741, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 6400.0, "z": 4352.0, "px": 3140.3, "py": 2790.7}, {"loc_id": 741, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": 6400.0, "z": 4352.0, "px": 3140.3, "py": 2790.7}, {"loc_id": 742, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -5376.0, "z": 4736.0, "px": 1130.5, "py": 2856.3}, {"loc_id": 742, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -5376.0, "z": 4736.0, "px": 1130.5, "py": 2856.3}, {"loc_id": 742, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -5376.0, "z": 4736.0, "px": 1130.5, "py": 2856.3}, {"loc_id": 743, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -9408.0, "z": -2432.0, "px": 442.4, "py": 1632.9}, {"loc_id": 743, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -9408.0, "z": -2432.0, "px": 442.4, "py": 1632.9}, {"loc_id": 744, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 1408.0, "z": 7488.0, "px": 2288.3, "py": 3326.0}, {"loc_id": 744, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 1408.0, "z": 7488.0, "px": 2288.3, "py": 3326.0}, {"loc_id": 745, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -5824.0, "z": 3264.0, "px": 1054.0, "py": 2605.1}, {"loc_id": 745, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -5824.0, "z": 3264.0, "px": 1054.0, "py": 2605.1}, {"loc_id": 745, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": -5824.0, "z": 3264.0, "px": 1054.0, "py": 2605.1}, {"loc_id": 746, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -6592.0, "z": 896.0, "px": 923.0, "py": 2200.9}, {"loc_id": 746, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -6592.0, "z": 896.0, "px": 923.0, "py": 2200.9}, {"loc_id": 746, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -6592.0, "z": 896.0, "px": 923.0, "py": 2200.9}, {"loc_id": 746, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": -6592.0, "z": 896.0, "px": 923.0, "py": 2200.9}, {"loc_id": 747, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -7296.0, "z": 1152.0, "px": 802.8, "py": 2244.6}, {"loc_id": 747, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -7296.0, "z": 1152.0, "px": 802.8, "py": 2244.6}, {"loc_id": 748, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -4096.0, "z": 4736.0, "px": 1348.9, "py": 2856.3}, {"loc_id": 749, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 192.0, "z": -7424.0, "px": 2080.8, "py": 781.0}, {"loc_id": 749, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 192.0, "z": -7424.0, "px": 2080.8, "py": 781.0}, {"loc_id": 749, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 1, "x": 192.0, "z": -7424.0, "px": 2080.8, "py": 781.0}, {"loc_id": 749, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 192.0, "z": -7424.0, "px": 2080.8, "py": 781.0}, {"loc_id": 750, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 3072.0, "z": 7168.0, "px": 2572.3, "py": 3271.3}, {"loc_id": 751, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -1792.0, "z": -5824.0, "px": 1742.2, "py": 1054.0}, {"loc_id": 751, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -1792.0, "z": -5824.0, "px": 1742.2, "py": 1054.0}, {"loc_id": 752, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 8256.0, "z": -2880.0, "px": 3457.0, "py": 1556.5}, {"loc_id": 753, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": -1408.0, "z": -6016.0, "px": 1807.7, "py": 1021.3}, {"loc_id": 753, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -1408.0, "z": -6016.0, "px": 1807.7, "py": 1021.3}, {"loc_id": 754, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -9664.0, "z": -2176.0, "px": 398.7, "py": 1676.6}, {"loc_id": 754, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -9664.0, "z": -2176.0, "px": 398.7, "py": 1676.6}, {"loc_id": 754, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -9664.0, "z": -2176.0, "px": 398.7, "py": 1676.6}, {"loc_id": 755, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -9216.0, "z": -640.0, "px": 475.1, "py": 1938.8}, {"loc_id": 755, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -9216.0, "z": -640.0, "px": 475.1, "py": 1938.8}, {"loc_id": 755, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -9216.0, "z": -640.0, "px": 475.1, "py": 1938.8}, {"loc_id": 756, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 8000.0, "z": 2112.0, "px": 3413.3, "py": 2408.4}, {"loc_id": 756, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 8000.0, "z": 2112.0, "px": 3413.3, "py": 2408.4}, {"loc_id": 756, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 8000.0, "z": 2112.0, "px": 3413.3, "py": 2408.4}, {"loc_id": 756, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 8000.0, "z": 2112.0, "px": 3413.3, "py": 2408.4}, {"loc_id": 756, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": 8000.0, "z": 2112.0, "px": 3413.3, "py": 2408.4}, {"loc_id": 756, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 8000.0, "z": 2112.0, "px": 3413.3, "py": 2408.4}, {"loc_id": 757, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 8768.0, "z": 896.0, "px": 3544.4, "py": 2200.9}, {"loc_id": 757, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 8768.0, "z": 896.0, "px": 3544.4, "py": 2200.9}, {"loc_id": 757, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 1, "x": 8768.0, "z": 896.0, "px": 3544.4, "py": 2200.9}, {"loc_id": 758, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 8896.0, "z": 320.0, "px": 3566.3, "py": 2102.6}, {"loc_id": 759, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 3968.0, "z": -5312.0, "px": 2725.2, "py": 1141.4}, {"loc_id": 759, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": 3968.0, "z": -5312.0, "px": 2725.2, "py": 1141.4}, {"loc_id": 759, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 3968.0, "z": -5312.0, "px": 2725.2, "py": 1141.4}, {"loc_id": 759, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 3968.0, "z": -5312.0, "px": 2725.2, "py": 1141.4}, {"loc_id": 760, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 4160.0, "z": -4736.0, "px": 2758.0, "py": 1239.7}, {"loc_id": 760, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 4160.0, "z": -4736.0, "px": 2758.0, "py": 1239.7}, {"loc_id": 761, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": -2112.0, "z": -6656.0, "px": 1687.6, "py": 912.0}, {"loc_id": 761, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": -2112.0, "z": -6656.0, "px": 1687.6, "py": 912.0}, {"loc_id": 761, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -2112.0, "z": -6656.0, "px": 1687.6, "py": 912.0}, {"loc_id": 762, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 4032.0, "z": -6464.0, "px": 2736.1, "py": 944.8}, {"loc_id": 762, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 4032.0, "z": -6464.0, "px": 2736.1, "py": 944.8}, {"loc_id": 762, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 4032.0, "z": -6464.0, "px": 2736.1, "py": 944.8}, {"loc_id": 762, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: Coins", "count": 1, "x": 4032.0, "z": -6464.0, "px": 2736.1, "py": 944.8}, {"loc_id": 762, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 4032.0, "z": -6464.0, "px": 2736.1, "py": 944.8}, {"loc_id": 763, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 3904.0, "z": -7040.0, "px": 2714.3, "py": 846.5}, {"loc_id": 763, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 3904.0, "z": -7040.0, "px": 2714.3, "py": 846.5}, {"loc_id": 763, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 3904.0, "z": -7040.0, "px": 2714.3, "py": 846.5}, {"loc_id": 764, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -7168.0, "z": -1280.0, "px": 824.7, "py": 1829.5}, {"loc_id": 764, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 1, "x": -7168.0, "z": -1280.0, "px": 824.7, "py": 1829.5}, {"loc_id": 764, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -7168.0, "z": -1280.0, "px": 824.7, "py": 1829.5}, {"loc_id": 765, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -3712.0, "z": 6656.0, "px": 1414.5, "py": 3184.0}, {"loc_id": 766, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 5760.0, "z": 6080.0, "px": 3031.0, "py": 3085.7}, {"loc_id": 766, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 5760.0, "z": 6080.0, "px": 3031.0, "py": 3085.7}, {"loc_id": 766, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 5760.0, "z": 6080.0, "px": 3031.0, "py": 3085.7}, {"loc_id": 766, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 1, "x": 5760.0, "z": 6080.0, "px": 3031.0, "py": 3085.7}, {"loc_id": 766, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 5760.0, "z": 6080.0, "px": 3031.0, "py": 3085.7}, {"loc_id": 767, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 1152.0, "z": 7616.0, "px": 2244.6, "py": 3347.8}, {"loc_id": 767, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 1152.0, "z": 7616.0, "px": 2244.6, "py": 3347.8}, {"loc_id": 768, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -1856.0, "z": 7488.0, "px": 1731.2, "py": 3326.0}, {"loc_id": 769, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -6272.0, "z": 3008.0, "px": 977.6, "py": 2561.4}, {"loc_id": 769, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -6272.0, "z": 3008.0, "px": 977.6, "py": 2561.4}, {"loc_id": 770, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 7552.0, "z": -4480.0, "px": 3336.9, "py": 1283.4}, {"loc_id": 770, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 7552.0, "z": -4480.0, "px": 3336.9, "py": 1283.4}, {"loc_id": 770, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 7552.0, "z": -4480.0, "px": 3336.9, "py": 1283.4}, {"loc_id": 771, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 2944.0, "z": 5440.0, "px": 2550.4, "py": 2976.4}, {"loc_id": 772, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -7104.0, "z": -2176.0, "px": 835.6, "py": 1676.6}, {"loc_id": 772, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -7104.0, "z": -2176.0, "px": 835.6, "py": 1676.6}, {"loc_id": 772, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Pickable: BlackCore", "count": 1, "x": -7104.0, "z": -2176.0, "px": 835.6, "py": 1676.6}, {"loc_id": 773, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -4416.0, "z": -6784.0, "px": 1294.3, "py": 890.2}, {"loc_id": 773, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -4416.0, "z": -6784.0, "px": 1294.3, "py": 890.2}, {"loc_id": 774, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 6016.0, "z": 5952.0, "px": 3074.7, "py": 3063.8}, {"loc_id": 774, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 6016.0, "z": 5952.0, "px": 3074.7, "py": 3063.8}, {"loc_id": 775, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 5632.0, "z": 2432.0, "px": 3009.2, "py": 2463.1}, {"loc_id": 775, "loc_name": "Mistlands_DvergrTownEntrance1", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 5632.0, "z": 2432.0, "px": 3009.2, "py": 2463.1}, {"loc_id": 776, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 1, "x": -3200.0, "z": 5376.0, "px": 1501.9, "py": 2965.5}, {"loc_id": 776, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -3200.0, "z": 5376.0, "px": 1501.9, "py": 2965.5}, {"loc_id": 776, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -3200.0, "z": 5376.0, "px": 1501.9, "py": 2965.5}, {"loc_id": 777, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 4864.0, "z": 6208.0, "px": 2878.1, "py": 3107.5}, {"loc_id": 777, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 4864.0, "z": 6208.0, "px": 2878.1, "py": 3107.5}, {"loc_id": 777, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 4864.0, "z": 6208.0, "px": 2878.1, "py": 3107.5}, {"loc_id": 778, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -7616.0, "z": 1216.0, "px": 748.2, "py": 2255.5}, {"loc_id": 778, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -7616.0, "z": 1216.0, "px": 748.2, "py": 2255.5}, {"loc_id": 779, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 2304.0, "z": -5760.0, "px": 2441.2, "py": 1065.0}, {"loc_id": 780, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -5312.0, "z": -4480.0, "px": 1141.4, "py": 1283.4}, {"loc_id": 780, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -5312.0, "z": -4480.0, "px": 1141.4, "py": 1283.4}, {"loc_id": 781, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -6144.0, "z": 3520.0, "px": 999.4, "py": 2648.7}, {"loc_id": 781, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -6144.0, "z": 3520.0, "px": 999.4, "py": 2648.7}, {"loc_id": 782, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -6144.0, "z": 3968.0, "px": 999.4, "py": 2725.2}, {"loc_id": 782, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -6144.0, "z": 3968.0, "px": 999.4, "py": 2725.2}, {"loc_id": 782, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -6144.0, "z": 3968.0, "px": 999.4, "py": 2725.2}, {"loc_id": 783, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 6784.0, "z": 1216.0, "px": 3205.8, "py": 2255.5}, {"loc_id": 783, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 6784.0, "z": 1216.0, "px": 3205.8, "py": 2255.5}, {"loc_id": 783, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 6784.0, "z": 1216.0, "px": 3205.8, "py": 2255.5}, {"loc_id": 783, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": 6784.0, "z": 1216.0, "px": 3205.8, "py": 2255.5}, {"loc_id": 783, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 6784.0, "z": 1216.0, "px": 3205.8, "py": 2255.5}, {"loc_id": 783, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 6784.0, "z": 1216.0, "px": 3205.8, "py": 2255.5}, {"loc_id": 784, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -3776.0, "z": 5440.0, "px": 1403.6, "py": 2976.4}, {"loc_id": 785, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -192.0, "z": -6400.0, "px": 2015.2, "py": 955.7}, {"loc_id": 785, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": -192.0, "z": -6400.0, "px": 2015.2, "py": 955.7}, {"loc_id": 786, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -9472.0, "z": -960.0, "px": 431.4, "py": 1884.2}, {"loc_id": 787, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 3200.0, "z": 5504.0, "px": 2594.1, "py": 2987.3}, {"loc_id": 787, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 3200.0, "z": 5504.0, "px": 2594.1, "py": 2987.3}, {"loc_id": 787, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 3200.0, "z": 5504.0, "px": 2594.1, "py": 2987.3}, {"loc_id": 787, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 3200.0, "z": 5504.0, "px": 2594.1, "py": 2987.3}, {"loc_id": 788, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 4864.0, "z": 5696.0, "px": 2878.1, "py": 3020.1}, {"loc_id": 789, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -704.0, "z": 6848.0, "px": 1927.9, "py": 3216.7}, {"loc_id": 789, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -704.0, "z": 6848.0, "px": 1927.9, "py": 3216.7}, {"loc_id": 789, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -704.0, "z": 6848.0, "px": 1927.9, "py": 3216.7}, {"loc_id": 790, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 384.0, "z": -7104.0, "px": 2113.5, "py": 835.6}, {"loc_id": 790, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": 384.0, "z": -7104.0, "px": 2113.5, "py": 835.6}, {"loc_id": 790, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 384.0, "z": -7104.0, "px": 2113.5, "py": 835.6}, {"loc_id": 790, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 384.0, "z": -7104.0, "px": 2113.5, "py": 835.6}, {"loc_id": 790, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 384.0, "z": -7104.0, "px": 2113.5, "py": 835.6}, {"loc_id": 792, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -9152.0, "z": 960.0, "px": 486.1, "py": 2211.8}, {"loc_id": 792, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": -9152.0, "z": 960.0, "px": 486.1, "py": 2211.8}, {"loc_id": 792, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -9152.0, "z": 960.0, "px": 486.1, "py": 2211.8}, {"loc_id": 792, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -9152.0, "z": 960.0, "px": 486.1, "py": 2211.8}, {"loc_id": 793, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 4224.0, "z": 6336.0, "px": 2768.9, "py": 3129.3}, {"loc_id": 793, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 4224.0, "z": 6336.0, "px": 2768.9, "py": 3129.3}, {"loc_id": 793, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 4224.0, "z": 6336.0, "px": 2768.9, "py": 3129.3}, {"loc_id": 794, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -8320.0, "z": 64.0, "px": 628.1, "py": 2058.9}, {"loc_id": 794, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -8320.0, "z": 64.0, "px": 628.1, "py": 2058.9}, {"loc_id": 795, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 8512.0, "z": 576.0, "px": 3500.7, "py": 2146.3}, {"loc_id": 795, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 8512.0, "z": 576.0, "px": 3500.7, "py": 2146.3}, {"loc_id": 796, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -128.0, "z": 7360.0, "px": 2026.2, "py": 3304.1}, {"loc_id": 796, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -128.0, "z": 7360.0, "px": 2026.2, "py": 3304.1}, {"loc_id": 796, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": -128.0, "z": 7360.0, "px": 2026.2, "py": 3304.1}, {"loc_id": 796, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 1, "x": -128.0, "z": 7360.0, "px": 2026.2, "py": 3304.1}, {"loc_id": 796, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -128.0, "z": 7360.0, "px": 2026.2, "py": 3304.1}, {"loc_id": 796, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -128.0, "z": 7360.0, "px": 2026.2, "py": 3304.1}, {"loc_id": 797, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 7424.0, "z": 256.0, "px": 3315.0, "py": 2091.7}, {"loc_id": 797, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 7424.0, "z": 256.0, "px": 3315.0, "py": 2091.7}, {"loc_id": 797, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 7424.0, "z": 256.0, "px": 3315.0, "py": 2091.7}, {"loc_id": 797, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 1, "x": 7424.0, "z": 256.0, "px": 3315.0, "py": 2091.7}, {"loc_id": 798, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -576.0, "z": -6976.0, "px": 1949.7, "py": 857.4}, {"loc_id": 798, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -576.0, "z": -6976.0, "px": 1949.7, "py": 857.4}, {"loc_id": 798, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -576.0, "z": -6976.0, "px": 1949.7, "py": 857.4}, {"loc_id": 799, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -8704.0, "z": -1280.0, "px": 562.5, "py": 1829.5}, {"loc_id": 799, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -8704.0, "z": -1280.0, "px": 562.5, "py": 1829.5}, {"loc_id": 800, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 2368.0, "z": -6592.0, "px": 2452.1, "py": 923.0}, {"loc_id": 800, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 2368.0, "z": -6592.0, "px": 2452.1, "py": 923.0}, {"loc_id": 801, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -5760.0, "z": -5504.0, "px": 1065.0, "py": 1108.7}, {"loc_id": 801, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": -5760.0, "z": -5504.0, "px": 1065.0, "py": 1108.7}, {"loc_id": 802, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": -4800.0, "z": 4160.0, "px": 1228.8, "py": 2758.0}, {"loc_id": 802, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -4800.0, "z": 4160.0, "px": 1228.8, "py": 2758.0}, {"loc_id": 802, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -4800.0, "z": 4160.0, "px": 1228.8, "py": 2758.0}, {"loc_id": 803, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -3008.0, "z": -6080.0, "px": 1534.6, "py": 1010.3}, {"loc_id": 803, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -3008.0, "z": -6080.0, "px": 1534.6, "py": 1010.3}, {"loc_id": 803, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": -3008.0, "z": -6080.0, "px": 1534.6, "py": 1010.3}, {"loc_id": 804, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 128.0, "z": 6848.0, "px": 2069.8, "py": 3216.7}, {"loc_id": 804, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 128.0, "z": 6848.0, "px": 2069.8, "py": 3216.7}, {"loc_id": 805, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 8640.0, "z": -576.0, "px": 3522.6, "py": 1949.7}, {"loc_id": 805, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 8640.0, "z": -576.0, "px": 3522.6, "py": 1949.7}, {"loc_id": 805, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 8640.0, "z": -576.0, "px": 3522.6, "py": 1949.7}, {"loc_id": 806, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 4608.0, "z": 6336.0, "px": 2834.4, "py": 3129.3}, {"loc_id": 806, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 4608.0, "z": 6336.0, "px": 2834.4, "py": 3129.3}, {"loc_id": 807, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -2944.0, "z": -6528.0, "px": 1545.6, "py": 933.9}, {"loc_id": 807, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -2944.0, "z": -6528.0, "px": 1545.6, "py": 933.9}, {"loc_id": 807, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -2944.0, "z": -6528.0, "px": 1545.6, "py": 933.9}, {"loc_id": 807, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": -2944.0, "z": -6528.0, "px": 1545.6, "py": 933.9}, {"loc_id": 808, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 4928.0, "z": -5696.0, "px": 2889.0, "py": 1075.9}, {"loc_id": 808, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 4928.0, "z": -5696.0, "px": 2889.0, "py": 1075.9}, {"loc_id": 808, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 4928.0, "z": -5696.0, "px": 2889.0, "py": 1075.9}, {"loc_id": 809, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 4416.0, "z": 5568.0, "px": 2801.7, "py": 2998.3}, {"loc_id": 809, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 4416.0, "z": 5568.0, "px": 2801.7, "py": 2998.3}, {"loc_id": 810, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 768.0, "z": 6528.0, "px": 2179.1, "py": 3162.1}, {"loc_id": 810, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 768.0, "z": 6528.0, "px": 2179.1, "py": 3162.1}, {"loc_id": 810, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 768.0, "z": 6528.0, "px": 2179.1, "py": 3162.1}, {"loc_id": 811, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": -5568.0, "z": 3328.0, "px": 1097.7, "py": 2616.0}, {"loc_id": 811, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -5568.0, "z": 3328.0, "px": 1097.7, "py": 2616.0}, {"loc_id": 811, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -5568.0, "z": 3328.0, "px": 1097.7, "py": 2616.0}, {"loc_id": 811, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -5568.0, "z": 3328.0, "px": 1097.7, "py": 2616.0}, {"loc_id": 811, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": -5568.0, "z": 3328.0, "px": 1097.7, "py": 2616.0}, {"loc_id": 812, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 6848.0, "z": -256.0, "px": 3216.7, "py": 2004.3}, {"loc_id": 812, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 6848.0, "z": -256.0, "px": 3216.7, "py": 2004.3}, {"loc_id": 812, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 6848.0, "z": -256.0, "px": 3216.7, "py": 2004.3}, {"loc_id": 813, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -8192.0, "z": -3520.0, "px": 649.9, "py": 1447.3}, {"loc_id": 813, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -8192.0, "z": -3520.0, "px": 649.9, "py": 1447.3}, {"loc_id": 813, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -8192.0, "z": -3520.0, "px": 649.9, "py": 1447.3}, {"loc_id": 813, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -8192.0, "z": -3520.0, "px": 649.9, "py": 1447.3}, {"loc_id": 814, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 192.0, "z": 7104.0, "px": 2080.8, "py": 3260.4}, {"loc_id": 814, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 192.0, "z": 7104.0, "px": 2080.8, "py": 3260.4}, {"loc_id": 814, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 192.0, "z": 7104.0, "px": 2080.8, "py": 3260.4}, {"loc_id": 815, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 832.0, "z": 6784.0, "px": 2190.0, "py": 3205.8}, {"loc_id": 815, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 832.0, "z": 6784.0, "px": 2190.0, "py": 3205.8}, {"loc_id": 815, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 832.0, "z": 6784.0, "px": 2190.0, "py": 3205.8}, {"loc_id": 815, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 832.0, "z": 6784.0, "px": 2190.0, "py": 3205.8}, {"loc_id": 816, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -7040.0, "z": 5312.0, "px": 846.5, "py": 2954.6}, {"loc_id": 816, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -7040.0, "z": 5312.0, "px": 846.5, "py": 2954.6}, {"loc_id": 816, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -7040.0, "z": 5312.0, "px": 846.5, "py": 2954.6}, {"loc_id": 816, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": -7040.0, "z": 5312.0, "px": 846.5, "py": 2954.6}, {"loc_id": 817, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": -6976.0, "z": -1728.0, "px": 857.4, "py": 1753.1}, {"loc_id": 817, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -6976.0, "z": -1728.0, "px": 857.4, "py": 1753.1}, {"loc_id": 817, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -6976.0, "z": -1728.0, "px": 857.4, "py": 1753.1}, {"loc_id": 817, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -6976.0, "z": -1728.0, "px": 857.4, "py": 1753.1}, {"loc_id": 818, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -7360.0, "z": 4032.0, "px": 791.9, "py": 2736.1}, {"loc_id": 818, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -7360.0, "z": 4032.0, "px": 791.9, "py": 2736.1}, {"loc_id": 819, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -6592.0, "z": -4992.0, "px": 923.0, "py": 1196.0}, {"loc_id": 819, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -6592.0, "z": -4992.0, "px": 923.0, "py": 1196.0}, {"loc_id": 820, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -7360.0, "z": 3008.0, "px": 791.9, "py": 2561.4}, {"loc_id": 820, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -7360.0, "z": 3008.0, "px": 791.9, "py": 2561.4}, {"loc_id": 820, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 1, "x": -7360.0, "z": 3008.0, "px": 791.9, "py": 2561.4}, {"loc_id": 821, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 384.0, "z": 7552.0, "px": 2113.5, "py": 3336.9}, {"loc_id": 821, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 384.0, "z": 7552.0, "px": 2113.5, "py": 3336.9}, {"loc_id": 823, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -6720.0, "z": -3328.0, "px": 901.1, "py": 1480.0}, {"loc_id": 823, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -6720.0, "z": -3328.0, "px": 901.1, "py": 1480.0}, {"loc_id": 824, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -2368.0, "z": -6464.0, "px": 1643.9, "py": 944.8}, {"loc_id": 824, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -2368.0, "z": -6464.0, "px": 1643.9, "py": 944.8}, {"loc_id": 825, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -8384.0, "z": -448.0, "px": 617.1, "py": 1971.5}, {"loc_id": 825, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -8384.0, "z": -448.0, "px": 617.1, "py": 1971.5}, {"loc_id": 825, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -8384.0, "z": -448.0, "px": 617.1, "py": 1971.5}, {"loc_id": 826, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 7040.0, "z": 3840.0, "px": 3249.5, "py": 2703.4}, {"loc_id": 826, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": 7040.0, "z": 3840.0, "px": 3249.5, "py": 2703.4}, {"loc_id": 826, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 7040.0, "z": 3840.0, "px": 3249.5, "py": 2703.4}, {"loc_id": 827, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 6336.0, "z": -1280.0, "px": 3129.3, "py": 1829.5}, {"loc_id": 827, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 6336.0, "z": -1280.0, "px": 3129.3, "py": 1829.5}, {"loc_id": 828, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 7168.0, "z": -64.0, "px": 3271.3, "py": 2037.1}, {"loc_id": 828, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 7168.0, "z": -64.0, "px": 3271.3, "py": 2037.1}, {"loc_id": 829, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": -4992.0, "z": -3648.0, "px": 1196.0, "py": 1425.4}, {"loc_id": 829, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -4992.0, "z": -3648.0, "px": 1196.0, "py": 1425.4}, {"loc_id": 829, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -4992.0, "z": -3648.0, "px": 1196.0, "py": 1425.4}, {"loc_id": 830, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 9920.0, "z": -192.0, "px": 3741.0, "py": 2015.2}, {"loc_id": 830, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 9920.0, "z": -192.0, "px": 3741.0, "py": 2015.2}, {"loc_id": 831, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 8640.0, "z": -3328.0, "px": 3522.6, "py": 1480.0}, {"loc_id": 832, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -9216.0, "z": -64.0, "px": 475.1, "py": 2037.1}, {"loc_id": 832, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -9216.0, "z": -64.0, "px": 475.1, "py": 2037.1}, {"loc_id": 832, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -9216.0, "z": -64.0, "px": 475.1, "py": 2037.1}, {"loc_id": 833, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 6208.0, "z": 5056.0, "px": 3107.5, "py": 2910.9}, {"loc_id": 833, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 6208.0, "z": 5056.0, "px": 3107.5, "py": 2910.9}, {"loc_id": 834, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": -8576.0, "z": 1280.0, "px": 584.4, "py": 2266.5}, {"loc_id": 836, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -6592.0, "z": 4800.0, "px": 923.0, "py": 2867.2}, {"loc_id": 836, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -6592.0, "z": 4800.0, "px": 923.0, "py": 2867.2}, {"loc_id": 836, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 1, "x": -6592.0, "z": 4800.0, "px": 923.0, "py": 2867.2}, {"loc_id": 837, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": -9408.0, "z": 1472.0, "px": 442.4, "py": 2299.2}, {"loc_id": 837, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -9408.0, "z": 1472.0, "px": 442.4, "py": 2299.2}, {"loc_id": 837, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -9408.0, "z": 1472.0, "px": 442.4, "py": 2299.2}, {"loc_id": 837, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -9408.0, "z": 1472.0, "px": 442.4, "py": 2299.2}, {"loc_id": 838, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": -1088.0, "z": -6080.0, "px": 1862.3, "py": 1010.3}, {"loc_id": 838, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -1088.0, "z": -6080.0, "px": 1862.3, "py": 1010.3}, {"loc_id": 839, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -8960.0, "z": 1472.0, "px": 518.8, "py": 2299.2}, {"loc_id": 840, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -1664.0, "z": 7104.0, "px": 1764.0, "py": 3260.4}, {"loc_id": 840, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -1664.0, "z": 7104.0, "px": 1764.0, "py": 3260.4}, {"loc_id": 840, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -1664.0, "z": 7104.0, "px": 1764.0, "py": 3260.4}, {"loc_id": 840, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": -1664.0, "z": 7104.0, "px": 1764.0, "py": 3260.4}, {"loc_id": 841, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 3648.0, "z": -6784.0, "px": 2670.6, "py": 890.2}, {"loc_id": 842, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -4480.0, "z": -5376.0, "px": 1283.4, "py": 1130.5}, {"loc_id": 843, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 9664.0, "z": -768.0, "px": 3697.3, "py": 1916.9}, {"loc_id": 843, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 9664.0, "z": -768.0, "px": 3697.3, "py": 1916.9}, {"loc_id": 843, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 9664.0, "z": -768.0, "px": 3697.3, "py": 1916.9}, {"loc_id": 843, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": 9664.0, "z": -768.0, "px": 3697.3, "py": 1916.9}, {"loc_id": 843, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 9664.0, "z": -768.0, "px": 3697.3, "py": 1916.9}, {"loc_id": 843, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 9664.0, "z": -768.0, "px": 3697.3, "py": 1916.9}, {"loc_id": 844, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 2560.0, "z": -5568.0, "px": 2484.9, "py": 1097.7}, {"loc_id": 844, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 2560.0, "z": -5568.0, "px": 2484.9, "py": 1097.7}, {"loc_id": 844, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 2560.0, "z": -5568.0, "px": 2484.9, "py": 1097.7}, {"loc_id": 844, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 2560.0, "z": -5568.0, "px": 2484.9, "py": 1097.7}, {"loc_id": 845, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 4672.0, "z": -6080.0, "px": 2845.4, "py": 1010.3}, {"loc_id": 845, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 4672.0, "z": -6080.0, "px": 2845.4, "py": 1010.3}, {"loc_id": 846, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -1152.0, "z": -7488.0, "px": 1851.4, "py": 770.0}, {"loc_id": 846, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -1152.0, "z": -7488.0, "px": 1851.4, "py": 770.0}, {"loc_id": 847, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 1280.0, "z": 6016.0, "px": 2266.5, "py": 3074.7}, {"loc_id": 847, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": 1280.0, "z": 6016.0, "px": 2266.5, "py": 3074.7}, {"loc_id": 848, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -6016.0, "z": -5568.0, "px": 1021.3, "py": 1097.7}, {"loc_id": 848, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": -6016.0, "z": -5568.0, "px": 1021.3, "py": 1097.7}, {"loc_id": 848, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -6016.0, "z": -5568.0, "px": 1021.3, "py": 1097.7}, {"loc_id": 849, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 4544.0, "z": -6656.0, "px": 2823.5, "py": 912.0}, {"loc_id": 849, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 4544.0, "z": -6656.0, "px": 2823.5, "py": 912.0}, {"loc_id": 849, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 4544.0, "z": -6656.0, "px": 2823.5, "py": 912.0}, {"loc_id": 851, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 8000.0, "z": -4480.0, "px": 3413.3, "py": 1283.4}, {"loc_id": 851, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 8000.0, "z": -4480.0, "px": 3413.3, "py": 1283.4}, {"loc_id": 852, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 8512.0, "z": -2688.0, "px": 3500.7, "py": 1589.2}, {"loc_id": 852, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 8512.0, "z": -2688.0, "px": 3500.7, "py": 1589.2}, {"loc_id": 853, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -7104.0, "z": 2880.0, "px": 835.6, "py": 2539.5}, {"loc_id": 853, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": -7104.0, "z": 2880.0, "px": 835.6, "py": 2539.5}, {"loc_id": 853, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 1, "x": -7104.0, "z": 2880.0, "px": 835.6, "py": 2539.5}, {"loc_id": 853, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -7104.0, "z": 2880.0, "px": 835.6, "py": 2539.5}, {"loc_id": 854, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 5696.0, "z": 5632.0, "px": 3020.1, "py": 3009.2}, {"loc_id": 854, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 5696.0, "z": 5632.0, "px": 3020.1, "py": 3009.2}, {"loc_id": 854, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 5696.0, "z": 5632.0, "px": 3020.1, "py": 3009.2}, {"loc_id": 854, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": 5696.0, "z": 5632.0, "px": 3020.1, "py": 3009.2}, {"loc_id": 854, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 5696.0, "z": 5632.0, "px": 3020.1, "py": 3009.2}, {"loc_id": 855, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 2560.0, "z": -5824.0, "px": 2484.9, "py": 1054.0}, {"loc_id": 855, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 1, "x": 2560.0, "z": -5824.0, "px": 2484.9, "py": 1054.0}, {"loc_id": 856, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -7168.0, "z": 3840.0, "px": 824.7, "py": 2703.4}, {"loc_id": 856, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": -7168.0, "z": 3840.0, "px": 824.7, "py": 2703.4}, {"loc_id": 857, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 2368.0, "z": 7296.0, "px": 2452.1, "py": 3293.2}, {"loc_id": 857, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 2368.0, "z": 7296.0, "px": 2452.1, "py": 3293.2}, {"loc_id": 857, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 2368.0, "z": 7296.0, "px": 2452.1, "py": 3293.2}, {"loc_id": 858, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -8384.0, "z": -3072.0, "px": 617.1, "py": 1523.7}, {"loc_id": 858, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -8384.0, "z": -3072.0, "px": 617.1, "py": 1523.7}, {"loc_id": 858, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -8384.0, "z": -3072.0, "px": 617.1, "py": 1523.7}, {"loc_id": 859, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 4288.0, "z": -6080.0, "px": 2779.8, "py": 1010.3}, {"loc_id": 860, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 9664.0, "z": 768.0, "px": 3697.3, "py": 2179.1}, {"loc_id": 860, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 9664.0, "z": 768.0, "px": 3697.3, "py": 2179.1}, {"loc_id": 861, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: Seeker", "count": 1, "x": 6656.0, "z": -5504.0, "px": 3184.0, "py": 1108.7}, {"loc_id": 861, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 6656.0, "z": -5504.0, "px": 3184.0, "py": 1108.7}, {"loc_id": 862, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -8128.0, "z": -3968.0, "px": 660.8, "py": 1370.8}, {"loc_id": 862, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -8128.0, "z": -3968.0, "px": 660.8, "py": 1370.8}, {"loc_id": 862, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -8128.0, "z": -3968.0, "px": 660.8, "py": 1370.8}, {"loc_id": 863, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -1664.0, "z": -6080.0, "px": 1764.0, "py": 1010.3}, {"loc_id": 863, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -1664.0, "z": -6080.0, "px": 1764.0, "py": 1010.3}, {"loc_id": 864, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 6592.0, "z": -192.0, "px": 3173.0, "py": 2015.2}, {"loc_id": 866, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 8384.0, "z": -1728.0, "px": 3478.9, "py": 1753.1}, {"loc_id": 867, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -5120.0, "z": 4672.0, "px": 1174.2, "py": 2845.4}, {"loc_id": 867, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -5120.0, "z": 4672.0, "px": 1174.2, "py": 2845.4}, {"loc_id": 868, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": -7040.0, "z": 1344.0, "px": 846.5, "py": 2277.4}, {"loc_id": 868, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -7040.0, "z": 1344.0, "px": 846.5, "py": 2277.4}, {"loc_id": 868, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -7040.0, "z": 1344.0, "px": 846.5, "py": 2277.4}, {"loc_id": 869, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": -6528.0, "z": -4416.0, "px": 933.9, "py": 1294.3}, {"loc_id": 869, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -6528.0, "z": -4416.0, "px": 933.9, "py": 1294.3}, {"loc_id": 869, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -6528.0, "z": -4416.0, "px": 933.9, "py": 1294.3}, {"loc_id": 869, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": -6528.0, "z": -4416.0, "px": 933.9, "py": 1294.3}, {"loc_id": 869, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 1, "x": -6528.0, "z": -4416.0, "px": 933.9, "py": 1294.3}, {"loc_id": 870, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 5696.0, "z": 3520.0, "px": 3020.1, "py": 2648.7}, {"loc_id": 870, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 5696.0, "z": 3520.0, "px": 3020.1, "py": 2648.7}, {"loc_id": 870, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 5696.0, "z": 3520.0, "px": 3020.1, "py": 2648.7}, {"loc_id": 870, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 5696.0, "z": 3520.0, "px": 3020.1, "py": 2648.7}, {"loc_id": 870, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": 5696.0, "z": 3520.0, "px": 3020.1, "py": 2648.7}, {"loc_id": 870, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 5696.0, "z": 3520.0, "px": 3020.1, "py": 2648.7}, {"loc_id": 871, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -6016.0, "z": 2880.0, "px": 1021.3, "py": 2539.5}, {"loc_id": 871, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -6016.0, "z": 2880.0, "px": 1021.3, "py": 2539.5}, {"loc_id": 871, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 1, "x": -6016.0, "z": 2880.0, "px": 1021.3, "py": 2539.5}, {"loc_id": 872, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -9152.0, "z": -2240.0, "px": 486.1, "py": 1665.7}, {"loc_id": 872, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -9152.0, "z": -2240.0, "px": 486.1, "py": 1665.7}, {"loc_id": 873, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 4480.0, "z": 5952.0, "px": 2812.6, "py": 3063.8}, {"loc_id": 874, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 1856.0, "z": -6592.0, "px": 2364.8, "py": 923.0}, {"loc_id": 874, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 1856.0, "z": -6592.0, "px": 2364.8, "py": 923.0}, {"loc_id": 874, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 1856.0, "z": -6592.0, "px": 2364.8, "py": 923.0}, {"loc_id": 875, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 1280.0, "z": -6336.0, "px": 2266.5, "py": 966.7}, {"loc_id": 875, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": 1280.0, "z": -6336.0, "px": 2266.5, "py": 966.7}, {"loc_id": 875, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 1280.0, "z": -6336.0, "px": 2266.5, "py": 966.7}, {"loc_id": 876, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -2240.0, "z": -7040.0, "px": 1665.7, "py": 846.5}, {"loc_id": 876, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -2240.0, "z": -7040.0, "px": 1665.7, "py": 846.5}, {"loc_id": 877, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -6272.0, "z": -5376.0, "px": 977.6, "py": 1130.5}, {"loc_id": 877, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -6272.0, "z": -5376.0, "px": 977.6, "py": 1130.5}, {"loc_id": 878, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 1344.0, "z": -7296.0, "px": 2277.4, "py": 802.8}, {"loc_id": 878, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 1344.0, "z": -7296.0, "px": 2277.4, "py": 802.8}, {"loc_id": 879, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -6592.0, "z": 4032.0, "px": 923.0, "py": 2736.1}, {"loc_id": 879, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -6592.0, "z": 4032.0, "px": 923.0, "py": 2736.1}, {"loc_id": 879, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 1, "x": -6592.0, "z": 4032.0, "px": 923.0, "py": 2736.1}, {"loc_id": 879, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -6592.0, "z": 4032.0, "px": 923.0, "py": 2736.1}, {"loc_id": 879, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": -6592.0, "z": 4032.0, "px": 923.0, "py": 2736.1}, {"loc_id": 880, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 4352.0, "z": -4416.0, "px": 2790.7, "py": 1294.3}, {"loc_id": 880, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 4352.0, "z": -4416.0, "px": 2790.7, "py": 1294.3}, {"loc_id": 880, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 4352.0, "z": -4416.0, "px": 2790.7, "py": 1294.3}, {"loc_id": 881, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 4352.0, "z": 4672.0, "px": 2790.7, "py": 2845.4}, {"loc_id": 881, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 4352.0, "z": 4672.0, "px": 2790.7, "py": 2845.4}, {"loc_id": 881, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 4352.0, "z": 4672.0, "px": 2790.7, "py": 2845.4}, {"loc_id": 882, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 7936.0, "z": 3008.0, "px": 3402.4, "py": 2561.4}, {"loc_id": 882, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 7936.0, "z": 3008.0, "px": 3402.4, "py": 2561.4}, {"loc_id": 882, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 7936.0, "z": 3008.0, "px": 3402.4, "py": 2561.4}, {"loc_id": 883, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": 576.0, "z": 6784.0, "px": 2146.3, "py": 3205.8}, {"loc_id": 883, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": 576.0, "z": 6784.0, "px": 2146.3, "py": 3205.8}, {"loc_id": 884, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -7872.0, "z": 4608.0, "px": 704.5, "py": 2834.4}, {"loc_id": 884, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -7872.0, "z": 4608.0, "px": 704.5, "py": 2834.4}, {"loc_id": 884, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -7872.0, "z": 4608.0, "px": 704.5, "py": 2834.4}, {"loc_id": 885, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "SpawnOnce: SeekerBrute", "count": 1, "x": -5184.0, "z": -3840.0, "px": 1163.3, "py": 1392.6}, {"loc_id": 885, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": -5184.0, "z": -3840.0, "px": 1163.3, "py": 1392.6}, {"loc_id": 885, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -5184.0, "z": -3840.0, "px": 1163.3, "py": 1392.6}, {"loc_id": 885, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -5184.0, "z": -3840.0, "px": 1163.3, "py": 1392.6}, {"loc_id": 885, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": -5184.0, "z": -3840.0, "px": 1163.3, "py": 1392.6}, {"loc_id": 886, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -3904.0, "z": 5888.0, "px": 1381.7, "py": 3052.9}, {"loc_id": 886, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": -3904.0, "z": 5888.0, "px": 1381.7, "py": 3052.9}, {"loc_id": 886, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": -3904.0, "z": 5888.0, "px": 1381.7, "py": 3052.9}, {"loc_id": 887, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -7616.0, "z": -3328.0, "px": 748.2, "py": 1480.0}, {"loc_id": 887, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -7616.0, "z": -3328.0, "px": 748.2, "py": 1480.0}, {"loc_id": 888, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 5056.0, "z": -3840.0, "px": 2910.9, "py": 1392.6}, {"loc_id": 888, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 5056.0, "z": -3840.0, "px": 2910.9, "py": 1392.6}, {"loc_id": 888, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: Coins", "count": 1, "x": 5056.0, "z": -3840.0, "px": 2910.9, "py": 1392.6}, {"loc_id": 888, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 1, "x": 5056.0, "z": -3840.0, "px": 2910.9, "py": 1392.6}, {"loc_id": 889, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Vegvisir: Mistlands_DvergrBossEntrance1 ($enemy_seekerqueen)", "count": 1, "x": 7360.0, "z": 4544.0, "px": 3304.1, "py": 2823.5}, {"loc_id": 889, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 7360.0, "z": 4544.0, "px": 3304.1, "py": 2823.5}, {"loc_id": 889, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown", "count": 1, "x": 7360.0, "z": 4544.0, "px": 3304.1, "py": 2823.5}, {"loc_id": 889, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Pickable: BlackCore", "count": 1, "x": 7360.0, "z": 4544.0, "px": 3304.1, "py": 2823.5}, {"loc_id": 890, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": -6528.0, "z": -3008.0, "px": 933.9, "py": 1534.6}, {"loc_id": 890, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -6528.0, "z": -3008.0, "px": 933.9, "py": 1534.6}, {"loc_id": 890, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -6528.0, "z": -3008.0, "px": 933.9, "py": 1534.6}, {"loc_id": 890, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -6528.0, "z": -3008.0, "px": 933.9, "py": 1534.6}, {"loc_id": 891, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 9280.0, "z": 1728.0, "px": 3631.8, "py": 2342.9}, {"loc_id": 891, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 9280.0, "z": 1728.0, "px": 3631.8, "py": 2342.9}, {"loc_id": 892, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -6400.0, "z": 5632.0, "px": 955.7, "py": 3009.2}, {"loc_id": 893, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": -8384.0, "z": -3776.0, "px": 617.1, "py": 1403.6}, {"loc_id": 893, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -8384.0, "z": -3776.0, "px": 617.1, "py": 1403.6}, {"loc_id": 894, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (2)", "count": 1, "x": 5952.0, "z": 2432.0, "px": 3063.8, "py": 2463.1}, {"loc_id": 894, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": 5952.0, "z": 2432.0, "px": 3063.8, "py": 2463.1}, {"loc_id": 894, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": 5952.0, "z": 2432.0, "px": 3063.8, "py": 2463.1}, {"loc_id": 895, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawner: SeekerBrute (respawn every 240 minutes)", "count": 1, "x": -7424.0, "z": 4544.0, "px": 781.0, "py": 2823.5}, {"loc_id": 895, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Container: TreasureChest_dvergrtown (1)", "count": 1, "x": -7424.0, "z": 4544.0, "px": 781.0, "py": 2823.5}, {"loc_id": 895, "loc_name": "Mistlands_DvergrTownEntrance2", "item": "Spawns: DvergrKeyFragment", "count": 1, "x": -7424.0, "z": 4544.0, "px": 781.0, "py": 2823.5}, {"loc_id": 896, "loc_name": "Mistlands_DvergrBossEntrance1", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 7360.0, "z": -3840.0, "px": 3304.1, "py": 1392.6}, {"loc_id": 896, "loc_name": "Mistlands_DvergrBossEntrance1", "item": "Pickable: Lantern", "count": 1, "x": 7360.0, "z": -3840.0, "px": 3304.1, "py": 1392.6}, {"loc_id": 898, "loc_name": "Mistlands_DvergrBossEntrance1", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 8768.0, "z": -640.0, "px": 3544.4, "py": 1938.8}, {"loc_id": 900, "loc_name": "Mistlands_DvergrBossEntrance1", "item": "Pickable: Lantern", "count": 1, "x": -2176.0, "z": -7104.0, "px": 1676.6, "py": 835.6}, {"loc_id": 902, "loc_name": "Hildir_cave", "item": "Pickable: BoneFragments", "count": 1, "x": -2688.0, "z": 7360.0, "px": 1589.2, "py": 3304.1}, {"loc_id": 902, "loc_name": "Hildir_cave", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": -2688.0, "z": 7360.0, "px": 1589.2, "py": 3304.1}, {"loc_id": 902, "loc_name": "Hildir_cave", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": -2688.0, "z": 7360.0, "px": 1589.2, "py": 3304.1}, {"loc_id": 903, "loc_name": "Hildir_cave", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 6016.0, "z": 4608.0, "px": 3074.7, "py": 2834.4}, {"loc_id": 904, "loc_name": "Hildir_camp", "item": "Vegvisir: Hildir_crypt ($hud_pin_hildir1)", "count": 1, "x": -4991.7, "z": 504.3, "px": 1196.1, "py": 2134.1}, {"loc_id": 905, "loc_name": "Hildir_camp", "item": "Vegvisir: Hildir_crypt ($hud_pin_hildir1)", "count": 1, "x": 4157.1, "z": -1408.8, "px": 2757.5, "py": 1807.6}, {"loc_id": 906, "loc_name": "Hildir_camp", "item": "Vegvisir: Hildir_crypt ($hud_pin_hildir1)", "count": 1, "x": -2752.0, "z": 1539.5, "px": 1578.3, "py": 2310.7}, {"loc_id": 907, "loc_name": "Hildir_camp", "item": "Vegvisir: Hildir_crypt ($hud_pin_hildir1)", "count": 1, "x": -3199.9, "z": 3070.1, "px": 1501.9, "py": 2572.0}, {"loc_id": 908, "loc_name": "Hildir_camp", "item": "Vegvisir: Hildir_crypt ($hud_pin_hildir1)", "count": 1, "x": -3581.2, "z": -2497.0, "px": 1436.8, "py": 1621.8}, {"loc_id": 909, "loc_name": "Hildir_camp", "item": "Vegvisir: Hildir_crypt ($hud_pin_hildir1)", "count": 1, "x": 3073.4, "z": 2749.9, "px": 2572.5, "py": 2517.3}, {"loc_id": 910, "loc_name": "Hildir_camp", "item": "Vegvisir: Hildir_crypt ($hud_pin_hildir1)", "count": 1, "x": -251.6, "z": -3909.2, "px": 2005.1, "py": 1380.8}, {"loc_id": 911, "loc_name": "Hildir_camp", "item": "Vegvisir: Hildir_crypt ($hud_pin_hildir1)", "count": 1, "x": 197.7, "z": 3902.7, "px": 2081.7, "py": 2714.1}, {"loc_id": 912, "loc_name": "Hildir_camp", "item": "Vegvisir: Hildir_crypt ($hud_pin_hildir1)", "count": 1, "x": 3074.7, "z": -2561.2, "px": 2572.7, "py": 1610.9}, {"loc_id": 913, "loc_name": "Hildir_camp", "item": "Vegvisir: Hildir_crypt ($hud_pin_hildir1)", "count": 1, "x": -4472.6, "z": 1784.2, "px": 1284.7, "py": 2352.5}, {"loc_id": 914, "loc_name": "Hildir_crypt", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -7097.0, "z": 2614.7, "px": 836.8, "py": 2494.2}, {"loc_id": 914, "loc_name": "Hildir_crypt", "item": "Pickable: BoneFragments", "count": 1, "x": -7097.0, "z": 2614.7, "px": 836.8, "py": 2494.2}, {"loc_id": 914, "loc_name": "Hildir_crypt", "item": "Pickable: SurtlingCore", "count": 1, "x": -7097.0, "z": 2614.7, "px": 836.8, "py": 2494.2}, {"loc_id": 915, "loc_name": "Hildir_crypt", "item": "Pickable: BoneFragments", "count": 1, "x": 2312.6, "z": -4479.1, "px": 2442.7, "py": 1283.6}, {"loc_id": 915, "loc_name": "Hildir_crypt", "item": "Pickable: SurtlingCore", "count": 1, "x": 2312.6, "z": -4479.1, "px": 2442.7, "py": 1283.6}, {"loc_id": 917, "loc_name": "Hildir_plainsfortress", "item": "Container: TreasureChest_heath_hildir (1)", "count": 1, "x": 4800.0, "z": -1216.0, "px": 2867.2, "py": 1840.5}, {"loc_id": 917, "loc_name": "Hildir_plainsfortress", "item": "Container: TreasureChest_heath_hildir", "count": 1, "x": 4800.0, "z": -1216.0, "px": 2867.2, "py": 1840.5}, {"loc_id": 917, "loc_name": "Hildir_plainsfortress", "item": "SpawnOnce: GoblinBruteBros", "count": 1, "x": 4800.0, "z": -1216.0, "px": 2867.2, "py": 1840.5}, {"loc_id": 918, "loc_name": "Hildir_plainsfortress", "item": "Container: TreasureChest_heath_hildir (1)", "count": 1, "x": 1728.0, "z": 3200.0, "px": 2342.9, "py": 2594.1}, {"loc_id": 918, "loc_name": "Hildir_plainsfortress", "item": "Container: TreasureChest_heath_hildir", "count": 1, "x": 1728.0, "z": 3200.0, "px": 2342.9, "py": 2594.1}, {"loc_id": 918, "loc_name": "Hildir_plainsfortress", "item": "SpawnOnce: GoblinBruteBros", "count": 1, "x": 1728.0, "z": 3200.0, "px": 2342.9, "py": 2594.1}, {"loc_id": 919, "loc_name": "Hildir_plainsfortress", "item": "Container: TreasureChest_heath_hildir (1)", "count": 1, "x": -3264.0, "z": 1344.0, "px": 1490.9, "py": 2277.4}, {"loc_id": 919, "loc_name": "Hildir_plainsfortress", "item": "Container: TreasureChest_heath_hildir", "count": 1, "x": -3264.0, "z": 1344.0, "px": 1490.9, "py": 2277.4}, {"loc_id": 919, "loc_name": "Hildir_plainsfortress", "item": "SpawnOnce: GoblinBruteBros", "count": 1, "x": -3264.0, "z": 1344.0, "px": 1490.9, "py": 2277.4}, {"loc_id": 925, "loc_name": "PlaceofMystery1", "item": "Vegvisir: PlaceofMystery2 ($placeofmystery)", "count": 1, "x": -2755.7, "z": -8383.2, "px": 1577.7, "py": 617.3}, {"loc_id": 925, "loc_name": "PlaceofMystery1", "item": "AreaSpawner: Charred_Twitcher[3-2] Charred_Melee[3-2] Charred_Archer[3-2] Charred_Mage[3-2] (respawn every 10 seconds)", "count": 1, "x": -2755.7, "z": -8383.2, "px": 1577.7, "py": 617.3}, {"loc_id": 925, "loc_name": "PlaceofMystery1", "item": "Pickable: DyrnwynTipFragment", "count": 1, "x": -2755.7, "z": -8383.2, "px": 1577.7, "py": 617.3}, {"loc_id": 926, "loc_name": "PlaceofMystery2", "item": "Vegvisir: PlaceofMystery3 ($placeofmystery)", "count": 1, "x": 2681.1, "z": -9350.3, "px": 2505.6, "py": 452.2}, {"loc_id": 926, "loc_name": "PlaceofMystery2", "item": "AreaSpawner: Charred_Twitcher[3-2] Charred_Melee[3-2] Charred_Archer[3-2] Charred_Mage[3-2] (respawn every 10 seconds)", "count": 1, "x": 2681.1, "z": -9350.3, "px": 2505.6, "py": 452.2}, {"loc_id": 926, "loc_name": "PlaceofMystery2", "item": "Pickable: DyrnwynBladeFragment", "count": 1, "x": 2681.1, "z": -9350.3, "px": 2505.6, "py": 452.2}, {"loc_id": 927, "loc_name": "PlaceofMystery3", "item": "AreaSpawner: Charred_Twitcher[3-2] Charred_Melee[3-2] Charred_Archer[3-2] Charred_Mage[3-2] (respawn every 10 seconds)", "count": 1, "x": -258.7, "z": -9018.0, "px": 2003.8, "py": 508.9}, {"loc_id": 927, "loc_name": "PlaceofMystery3", "item": "SpawnOnce: Charred_Melee_Dyrnwyn", "count": 1, "x": -258.7, "z": -9018.0, "px": 2003.8, "py": 508.9}, {"loc_id": 928, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (1)", "count": 1, "x": -704.0, "z": -9408.0, "px": 1927.9, "py": 442.4}, {"loc_id": 928, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (4)", "count": 1, "x": -704.0, "z": -9408.0, "px": 1927.9, "py": 442.4}, {"loc_id": 928, "loc_name": "CharredFortress", "item": "Drops: BellFragment[1-1]", "count": 1, "x": -704.0, "z": -9408.0, "px": 1927.9, "py": 442.4}, {"loc_id": 928, "loc_name": "CharredFortress", "item": "Vegvisir: FaderLocation ($enemy_fader_codename)", "count": 1, "x": -704.0, "z": -9408.0, "px": 1927.9, "py": 442.4}, {"loc_id": 928, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (2)", "count": 1, "x": -704.0, "z": -9408.0, "px": 1927.9, "py": 442.4}, {"loc_id": 929, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (1)", "count": 1, "x": -2304.0, "z": -8896.0, "px": 1654.8, "py": 529.7}, {"loc_id": 929, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (4)", "count": 1, "x": -2304.0, "z": -8896.0, "px": 1654.8, "py": 529.7}, {"loc_id": 929, "loc_name": "CharredFortress", "item": "Drops: BellFragment[1-1]", "count": 1, "x": -2304.0, "z": -8896.0, "px": 1654.8, "py": 529.7}, {"loc_id": 930, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (1)", "count": 1, "x": 256.0, "z": -8896.0, "px": 2091.7, "py": 529.7}, {"loc_id": 930, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (4)", "count": 1, "x": 256.0, "z": -8896.0, "px": 2091.7, "py": 529.7}, {"loc_id": 930, "loc_name": "CharredFortress", "item": "Drops: BellFragment[1-1]", "count": 1, "x": 256.0, "z": -8896.0, "px": 2091.7, "py": 529.7}, {"loc_id": 930, "loc_name": "CharredFortress", "item": "Vegvisir: FaderLocation ($enemy_fader_codename)", "count": 1, "x": 256.0, "z": -8896.0, "px": 2091.7, "py": 529.7}, {"loc_id": 930, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (2)", "count": 1, "x": 256.0, "z": -8896.0, "px": 2091.7, "py": 529.7}, {"loc_id": 931, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (1)", "count": 1, "x": -384.0, "z": -8832.0, "px": 1982.5, "py": 540.7}, {"loc_id": 931, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (4)", "count": 1, "x": -384.0, "z": -8832.0, "px": 1982.5, "py": 540.7}, {"loc_id": 931, "loc_name": "CharredFortress", "item": "Drops: BellFragment[1-1]", "count": 1, "x": -384.0, "z": -8832.0, "px": 1982.5, "py": 540.7}, {"loc_id": 931, "loc_name": "CharredFortress", "item": "Vegvisir: FaderLocation ($enemy_fader_codename)", "count": 1, "x": -384.0, "z": -8832.0, "px": 1982.5, "py": 540.7}, {"loc_id": 931, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (2)", "count": 1, "x": -384.0, "z": -8832.0, "px": 1982.5, "py": 540.7}, {"loc_id": 932, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (1)", "count": 1, "x": 704.0, "z": -9344.0, "px": 2168.1, "py": 453.3}, {"loc_id": 932, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (4)", "count": 1, "x": 704.0, "z": -9344.0, "px": 2168.1, "py": 453.3}, {"loc_id": 932, "loc_name": "CharredFortress", "item": "Drops: BellFragment[1-1]", "count": 1, "x": 704.0, "z": -9344.0, "px": 2168.1, "py": 453.3}, {"loc_id": 932, "loc_name": "CharredFortress", "item": "Vegvisir: FaderLocation ($enemy_fader_codename)", "count": 1, "x": 704.0, "z": -9344.0, "px": 2168.1, "py": 453.3}, {"loc_id": 932, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (2)", "count": 1, "x": 704.0, "z": -9344.0, "px": 2168.1, "py": 453.3}, {"loc_id": 933, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (1)", "count": 1, "x": -576.0, "z": -9152.0, "px": 1949.7, "py": 486.1}, {"loc_id": 933, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (4)", "count": 1, "x": -576.0, "z": -9152.0, "px": 1949.7, "py": 486.1}, {"loc_id": 933, "loc_name": "CharredFortress", "item": "Drops: BellFragment[1-1]", "count": 1, "x": -576.0, "z": -9152.0, "px": 1949.7, "py": 486.1}, {"loc_id": 933, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (2)", "count": 1, "x": -576.0, "z": -9152.0, "px": 1949.7, "py": 486.1}, {"loc_id": 934, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (1)", "count": 1, "x": -2240.0, "z": -8576.0, "px": 1665.7, "py": 584.4}, {"loc_id": 934, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (4)", "count": 1, "x": -2240.0, "z": -8576.0, "px": 1665.7, "py": 584.4}, {"loc_id": 934, "loc_name": "CharredFortress", "item": "Drops: BellFragment[1-1]", "count": 1, "x": -2240.0, "z": -8576.0, "px": 1665.7, "py": 584.4}, {"loc_id": 934, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Archer", "count": 1, "x": -2240.0, "z": -8576.0, "px": 1665.7, "py": 584.4}, {"loc_id": 934, "loc_name": "CharredFortress", "item": "Vegvisir: FaderLocation ($enemy_fader_codename)", "count": 1, "x": -2240.0, "z": -8576.0, "px": 1665.7, "py": 584.4}, {"loc_id": 934, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (2)", "count": 1, "x": -2240.0, "z": -8576.0, "px": 1665.7, "py": 584.4}, {"loc_id": 935, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (1)", "count": 1, "x": 1152.0, "z": -9024.0, "px": 2244.6, "py": 507.9}, {"loc_id": 935, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (4)", "count": 1, "x": 1152.0, "z": -9024.0, "px": 2244.6, "py": 507.9}, {"loc_id": 935, "loc_name": "CharredFortress", "item": "Drops: BellFragment[1-1]", "count": 1, "x": 1152.0, "z": -9024.0, "px": 2244.6, "py": 507.9}, {"loc_id": 936, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (1)", "count": 1, "x": 704.0, "z": -9088.0, "px": 2168.1, "py": 497.0}, {"loc_id": 936, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (4)", "count": 1, "x": 704.0, "z": -9088.0, "px": 2168.1, "py": 497.0}, {"loc_id": 936, "loc_name": "CharredFortress", "item": "Drops: BellFragment[1-1]", "count": 1, "x": 704.0, "z": -9088.0, "px": 2168.1, "py": 497.0}, {"loc_id": 936, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Mage", "count": 1, "x": 704.0, "z": -9088.0, "px": 2168.1, "py": 497.0}, {"loc_id": 936, "loc_name": "CharredFortress", "item": "Vegvisir: FaderLocation ($enemy_fader_codename)", "count": 1, "x": 704.0, "z": -9088.0, "px": 2168.1, "py": 497.0}, {"loc_id": 937, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (1)", "count": 1, "x": -832.0, "z": -8896.0, "px": 1906.0, "py": 529.7}, {"loc_id": 937, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (4)", "count": 1, "x": -832.0, "z": -8896.0, "px": 1906.0, "py": 529.7}, {"loc_id": 937, "loc_name": "CharredFortress", "item": "Drops: BellFragment[1-1]", "count": 1, "x": -832.0, "z": -8896.0, "px": 1906.0, "py": 529.7}, {"loc_id": 937, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (2)", "count": 1, "x": -832.0, "z": -8896.0, "px": 1906.0, "py": 529.7}, {"loc_id": 938, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (1)", "count": 1, "x": 1536.0, "z": -9152.0, "px": 2310.1, "py": 486.1}, {"loc_id": 938, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (4)", "count": 1, "x": 1536.0, "z": -9152.0, "px": 2310.1, "py": 486.1}, {"loc_id": 938, "loc_name": "CharredFortress", "item": "Drops: BellFragment[1-1]", "count": 1, "x": 1536.0, "z": -9152.0, "px": 2310.1, "py": 486.1}, {"loc_id": 938, "loc_name": "CharredFortress", "item": "Vegvisir: FaderLocation ($enemy_fader_codename)", "count": 1, "x": 1536.0, "z": -9152.0, "px": 2310.1, "py": 486.1}, {"loc_id": 939, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (1)", "count": 1, "x": 1600.0, "z": -9408.0, "px": 2321.1, "py": 442.4}, {"loc_id": 939, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (4)", "count": 1, "x": 1600.0, "z": -9408.0, "px": 2321.1, "py": 442.4}, {"loc_id": 939, "loc_name": "CharredFortress", "item": "Drops: BellFragment[1-1]", "count": 1, "x": 1600.0, "z": -9408.0, "px": 2321.1, "py": 442.4}, {"loc_id": 939, "loc_name": "CharredFortress", "item": "Vegvisir: FaderLocation ($enemy_fader_codename)", "count": 1, "x": 1600.0, "z": -9408.0, "px": 2321.1, "py": 442.4}, {"loc_id": 940, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (1)", "count": 1, "x": -1152.0, "z": -9536.0, "px": 1851.4, "py": 420.5}, {"loc_id": 940, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (4)", "count": 1, "x": -1152.0, "z": -9536.0, "px": 1851.4, "py": 420.5}, {"loc_id": 940, "loc_name": "CharredFortress", "item": "Drops: BellFragment[1-1]", "count": 1, "x": -1152.0, "z": -9536.0, "px": 1851.4, "py": 420.5}, {"loc_id": 940, "loc_name": "CharredFortress", "item": "Vegvisir: FaderLocation ($enemy_fader_codename)", "count": 1, "x": -1152.0, "z": -9536.0, "px": 1851.4, "py": 420.5}, {"loc_id": 941, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (1)", "count": 1, "x": 384.0, "z": -9344.0, "px": 2113.5, "py": 453.3}, {"loc_id": 941, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (4)", "count": 1, "x": 384.0, "z": -9344.0, "px": 2113.5, "py": 453.3}, {"loc_id": 941, "loc_name": "CharredFortress", "item": "Drops: BellFragment[1-1]", "count": 1, "x": 384.0, "z": -9344.0, "px": 2113.5, "py": 453.3}, {"loc_id": 941, "loc_name": "CharredFortress", "item": "SpawnOnce: Charred_Mage", "count": 1, "x": 384.0, "z": -9344.0, "px": 2113.5, "py": 453.3}, {"loc_id": 942, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (1)", "count": 1, "x": -320.0, "z": -9856.0, "px": 1993.4, "py": 365.9}, {"loc_id": 942, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (4)", "count": 1, "x": -320.0, "z": -9856.0, "px": 1993.4, "py": 365.9}, {"loc_id": 942, "loc_name": "CharredFortress", "item": "Drops: BellFragment[1-1]", "count": 1, "x": -320.0, "z": -9856.0, "px": 1993.4, "py": 365.9}, {"loc_id": 942, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (2)", "count": 1, "x": -320.0, "z": -9856.0, "px": 1993.4, "py": 365.9}, {"loc_id": 942, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (3)", "count": 1, "x": -320.0, "z": -9856.0, "px": 1993.4, "py": 365.9}, {"loc_id": 943, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (1)", "count": 1, "x": 1280.0, "z": -9344.0, "px": 2266.5, "py": 453.3}, {"loc_id": 943, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (4)", "count": 1, "x": 1280.0, "z": -9344.0, "px": 2266.5, "py": 453.3}, {"loc_id": 943, "loc_name": "CharredFortress", "item": "Drops: BellFragment[1-1]", "count": 1, "x": 1280.0, "z": -9344.0, "px": 2266.5, "py": 453.3}, {"loc_id": 943, "loc_name": "CharredFortress", "item": "Vegvisir: FaderLocation ($enemy_fader_codename)", "count": 1, "x": 1280.0, "z": -9344.0, "px": 2266.5, "py": 453.3}, {"loc_id": 944, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (1)", "count": 1, "x": -896.0, "z": -9216.0, "px": 1895.1, "py": 475.1}, {"loc_id": 944, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (4)", "count": 1, "x": -896.0, "z": -9216.0, "px": 1895.1, "py": 475.1}, {"loc_id": 944, "loc_name": "CharredFortress", "item": "Drops: BellFragment[1-1]", "count": 1, "x": -896.0, "z": -9216.0, "px": 1895.1, "py": 475.1}, {"loc_id": 944, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (2)", "count": 1, "x": -896.0, "z": -9216.0, "px": 1895.1, "py": 475.1}, {"loc_id": 945, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (1)", "count": 1, "x": -896.0, "z": -9600.0, "px": 1895.1, "py": 409.6}, {"loc_id": 945, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (4)", "count": 1, "x": -896.0, "z": -9600.0, "px": 1895.1, "py": 409.6}, {"loc_id": 945, "loc_name": "CharredFortress", "item": "Drops: BellFragment[1-1]", "count": 1, "x": -896.0, "z": -9600.0, "px": 1895.1, "py": 409.6}, {"loc_id": 946, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (1)", "count": 1, "x": 1024.0, "z": -9344.0, "px": 2222.8, "py": 453.3}, {"loc_id": 946, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (4)", "count": 1, "x": 1024.0, "z": -9344.0, "px": 2222.8, "py": 453.3}, {"loc_id": 946, "loc_name": "CharredFortress", "item": "Drops: BellFragment[1-1]", "count": 1, "x": 1024.0, "z": -9344.0, "px": 2222.8, "py": 453.3}, {"loc_id": 946, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (2)", "count": 1, "x": 1024.0, "z": -9344.0, "px": 2222.8, "py": 453.3}, {"loc_id": 947, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (1)", "count": 1, "x": -640.0, "z": -9792.0, "px": 1938.8, "py": 376.8}, {"loc_id": 947, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (4)", "count": 1, "x": -640.0, "z": -9792.0, "px": 1938.8, "py": 376.8}, {"loc_id": 947, "loc_name": "CharredFortress", "item": "Drops: BellFragment[1-1]", "count": 1, "x": -640.0, "z": -9792.0, "px": 1938.8, "py": 376.8}, {"loc_id": 947, "loc_name": "CharredFortress", "item": "Vegvisir: FaderLocation ($enemy_fader_codename)", "count": 1, "x": -640.0, "z": -9792.0, "px": 1938.8, "py": 376.8}, {"loc_id": 947, "loc_name": "CharredFortress", "item": "Container: TreasureChest_charredfortress (2)", "count": 1, "x": -640.0, "z": -9792.0, "px": 1938.8, "py": 376.8}, {"loc_id": 948, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3576.6, "z": -8966.9, "px": 1437.6, "py": 517.6}, {"loc_id": 949, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2047.7, "z": -9591.0, "px": 2397.5, "py": 411.1}, {"loc_id": 950, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 5385.1, "z": -8007.0, "px": 2967.1, "py": 681.5}, {"loc_id": 951, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2487.8, "z": -9097.0, "px": 2472.6, "py": 495.4}, {"loc_id": 952, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -5001.2, "z": -7735.0, "px": 1194.5, "py": 727.9}, {"loc_id": 953, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 5508.9, "z": -8057.8, "px": 2988.2, "py": 672.8}, {"loc_id": 954, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 4104.2, "z": -8761.2, "px": 2748.5, "py": 552.8}, {"loc_id": 955, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1851.2, "z": -9346.8, "px": 1732.1, "py": 452.8}, {"loc_id": 956, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -650.4, "z": -9226.3, "px": 1937.0, "py": 473.4}, {"loc_id": 957, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -5575.7, "z": -7689.6, "px": 1096.4, "py": 735.6}, {"loc_id": 958, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -772.9, "z": -9593.2, "px": 1916.1, "py": 410.8}, {"loc_id": 959, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2881.7, "z": -8570.7, "px": 1556.2, "py": 585.3}, {"loc_id": 960, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -521.2, "z": -8760.5, "px": 1959.0, "py": 552.9}, {"loc_id": 961, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3467.3, "z": -8185.2, "px": 2639.8, "py": 651.1}, {"loc_id": 962, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1025.4, "z": -8959.6, "px": 1873.0, "py": 518.9}, {"loc_id": 963, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -70.2, "z": -9590.5, "px": 2036.0, "py": 411.2}, {"loc_id": 964, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3131.2, "z": -9211.6, "px": 2582.4, "py": 475.9}, {"loc_id": 965, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3587.9, "z": -8386.3, "px": 2660.3, "py": 616.7}, {"loc_id": 966, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 584.7, "z": -8775.6, "px": 2147.8, "py": 550.3}, {"loc_id": 967, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1223.7, "z": -9525.6, "px": 1839.2, "py": 422.3}, {"loc_id": 968, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2886.5, "z": -9351.3, "px": 2540.6, "py": 452.0}, {"loc_id": 969, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3072.8, "z": -9078.5, "px": 2572.4, "py": 498.6}, {"loc_id": 970, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3768.3, "z": -8376.7, "px": 1404.9, "py": 618.4}, {"loc_id": 971, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2812.2, "z": -8444.1, "px": 1568.1, "py": 606.9}, {"loc_id": 972, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2361.2, "z": -8327.4, "px": 1645.0, "py": 626.8}, {"loc_id": 973, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -325.6, "z": -8756.9, "px": 1992.4, "py": 553.5}, {"loc_id": 974, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 580.9, "z": -9353.4, "px": 2147.1, "py": 451.7}, {"loc_id": 975, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -649.4, "z": -8709.6, "px": 1937.2, "py": 561.6}, {"loc_id": 976, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1349.7, "z": -9352.6, "px": 2278.3, "py": 451.8}, {"loc_id": 977, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 140.0, "z": -9088.1, "px": 2071.9, "py": 497.0}, {"loc_id": 978, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 441.5, "z": -9412.8, "px": 2123.3, "py": 441.5}, {"loc_id": 979, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1787.4, "z": -9140.5, "px": 2353.0, "py": 488.0}, {"loc_id": 980, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1785.2, "z": -9404.6, "px": 2352.7, "py": 442.9}, {"loc_id": 981, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1091.4, "z": -9280.8, "px": 1861.7, "py": 464.1}, {"loc_id": 982, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -5448.6, "z": -7814.3, "px": 1118.1, "py": 714.4}, {"loc_id": 983, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2300.1, "z": -9342.3, "px": 2440.6, "py": 453.6}, {"loc_id": 984, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3018.5, "z": -8955.4, "px": 2563.2, "py": 519.6}, {"loc_id": 985, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -455.0, "z": -9400.5, "px": 1970.3, "py": 443.6}, {"loc_id": 986, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3525.6, "z": -8572.8, "px": 1446.3, "py": 584.9}, {"loc_id": 987, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2560.7, "z": -8391.3, "px": 1611.0, "py": 615.9}, {"loc_id": 988, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3274.8, "z": -8521.4, "px": 2606.9, "py": 593.7}, {"loc_id": 989, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 189.1, "z": -9281.3, "px": 2080.3, "py": 464.0}, {"loc_id": 990, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -650.4, "z": -9854.0, "px": 1937.0, "py": 366.3}, {"loc_id": 991, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3524.7, "z": -8374.8, "px": 1446.5, "py": 618.7}, {"loc_id": 992, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1092.4, "z": -9792.9, "px": 1861.6, "py": 376.7}, {"loc_id": 993, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -505.7, "z": -9910.4, "px": 1961.7, "py": 356.6}, {"loc_id": 994, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 829.5, "z": -8968.1, "px": 2189.6, "py": 517.4}, {"loc_id": 995, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -696.0, "z": -9082.9, "px": 1929.2, "py": 497.9}, {"loc_id": 996, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1097.5, "z": -9018.8, "px": 2235.3, "py": 508.8}, {"loc_id": 997, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1415.7, "z": -9726.7, "px": 2289.6, "py": 388.0}, {"loc_id": 998, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2945.1, "z": -8437.3, "px": 1545.4, "py": 608.0}, {"loc_id": 999, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -5063.3, "z": -8054.6, "px": 1183.9, "py": 673.3}, {"loc_id": 1000, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1349.6, "z": -9796.5, "px": 1817.7, "py": 376.1}, {"loc_id": 1001, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2612.4, "z": -9022.2, "px": 1602.2, "py": 508.2}, {"loc_id": 1002, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 117.3, "z": -9716.0, "px": 2068.0, "py": 389.8}, {"loc_id": 1003, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2936.5, "z": -8758.8, "px": 2549.2, "py": 553.2}, {"loc_id": 1004, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 503.3, "z": -8636.1, "px": 2133.9, "py": 574.1}, {"loc_id": 1005, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -949.5, "z": -8885.6, "px": 1886.0, "py": 531.5}, {"loc_id": 1006, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4937.8, "z": -8446.7, "px": 1205.3, "py": 606.4}, {"loc_id": 1007, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -842.0, "z": -9285.4, "px": 1904.3, "py": 463.3}, {"loc_id": 1008, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -636.2, "z": -9529.2, "px": 1939.4, "py": 421.7}, {"loc_id": 1009, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -572.1, "z": -9080.1, "px": 1950.4, "py": 498.3}, {"loc_id": 1010, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1013.6, "z": -9728.2, "px": 1875.0, "py": 387.7}, {"loc_id": 1011, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 188.8, "z": -8708.0, "px": 2080.2, "py": 561.8}, {"loc_id": 1012, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -969.4, "z": -9853.1, "px": 1882.6, "py": 366.4}, {"loc_id": 1013, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3588.2, "z": -8580.9, "px": 2660.4, "py": 583.5}, {"loc_id": 1014, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1030.7, "z": -8836.6, "px": 2223.9, "py": 539.9}, {"loc_id": 1015, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1853.1, "z": -9530.3, "px": 2364.3, "py": 421.5}, {"loc_id": 1016, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 903.9, "z": -9403.0, "px": 2202.3, "py": 443.2}, {"loc_id": 1017, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 456.5, "z": -9141.1, "px": 2125.9, "py": 487.9}, {"loc_id": 1018, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2552.2, "z": -8702.5, "px": 1612.4, "py": 562.8}, {"loc_id": 1019, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1140.4, "z": -9141.1, "px": 1853.4, "py": 487.9}, {"loc_id": 1020, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2115.1, "z": -8395.1, "px": 2409.0, "py": 615.2}, {"loc_id": 1021, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 266.4, "z": -9418.2, "px": 2093.5, "py": 440.6}, {"loc_id": 1022, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3787.7, "z": -8260.4, "px": 1401.6, "py": 638.2}, {"loc_id": 1023, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3636.3, "z": -8315.6, "px": 1427.4, "py": 628.8}, {"loc_id": 1024, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4670.0, "z": -8011.2, "px": 1251.0, "py": 680.8}, {"loc_id": 1025, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3977.8, "z": -8701.8, "px": 2726.9, "py": 562.9}, {"loc_id": 1026, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 907.0, "z": -8885.5, "px": 2202.8, "py": 531.5}, {"loc_id": 1027, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3968.3, "z": -8651.0, "px": 1370.7, "py": 571.6}, {"loc_id": 1028, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -5322.8, "z": -7820.0, "px": 1139.6, "py": 713.4}, {"loc_id": 1029, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -74.9, "z": -9739.8, "px": 2035.2, "py": 385.7}, {"loc_id": 1030, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 4214.5, "z": -8763.8, "px": 2767.3, "py": 552.3}, {"loc_id": 1031, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2119.8, "z": -8517.1, "px": 2409.8, "py": 594.4}, {"loc_id": 1032, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -651.4, "z": -9333.1, "px": 1936.8, "py": 455.2}, {"loc_id": 1033, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2101.0, "z": -9402.6, "px": 2406.6, "py": 443.3}, {"loc_id": 1034, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 331.7, "z": -8770.5, "px": 2104.6, "py": 551.2}, {"loc_id": 1035, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1216.7, "z": -9844.8, "px": 1840.3, "py": 367.8}, {"loc_id": 1036, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 139.7, "z": -9473.5, "px": 2071.8, "py": 431.2}, {"loc_id": 1037, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2699.5, "z": -8650.1, "px": 1587.3, "py": 571.7}, {"loc_id": 1038, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3651.1, "z": -8501.6, "px": 1424.9, "py": 597.1}, {"loc_id": 1039, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4021.3, "z": -8827.3, "px": 1361.7, "py": 541.5}, {"loc_id": 1040, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -437.6, "z": -9994.9, "px": 1973.3, "py": 342.2}, {"loc_id": 1041, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4664.2, "z": -8437.5, "px": 1252.0, "py": 608.0}, {"loc_id": 1042, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4795.8, "z": -8317.8, "px": 1229.5, "py": 628.4}, {"loc_id": 1043, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2360.7, "z": -9031.6, "px": 2450.9, "py": 506.6}, {"loc_id": 1044, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2181.2, "z": -9156.7, "px": 2420.3, "py": 485.3}, {"loc_id": 1045, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3900.7, "z": -9015.2, "px": 1382.3, "py": 509.4}, {"loc_id": 1046, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3189.9, "z": -8575.1, "px": 2592.4, "py": 584.5}, {"loc_id": 1047, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2489.8, "z": -8567.1, "px": 1623.1, "py": 585.9}, {"loc_id": 1048, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -265.2, "z": -8893.8, "px": 2002.7, "py": 530.1}, {"loc_id": 1049, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2820.9, "z": -9223.0, "px": 2529.4, "py": 473.9}, {"loc_id": 1050, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -903.9, "z": -9674.9, "px": 1893.7, "py": 396.8}, {"loc_id": 1051, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3528.4, "z": -8843.9, "px": 1445.8, "py": 538.6}, {"loc_id": 1052, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -5564.8, "z": -7484.4, "px": 1098.3, "py": 770.7}, {"loc_id": 1053, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 5387.0, "z": -7742.1, "px": 2967.4, "py": 726.7}, {"loc_id": 1054, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1464.1, "z": -9143.3, "px": 2297.9, "py": 487.5}, {"loc_id": 1055, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1543.5, "z": -9717.7, "px": 2311.4, "py": 389.5}, {"loc_id": 1056, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 504.1, "z": -9926.7, "px": 2134.0, "py": 353.8}, {"loc_id": 1057, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -5047.4, "z": -8198.8, "px": 1186.6, "py": 648.7}, {"loc_id": 1058, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3771.7, "z": -8772.3, "px": 1404.3, "py": 550.9}, {"loc_id": 1059, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1985.6, "z": -9397.0, "px": 2386.9, "py": 444.2}, {"loc_id": 1060, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3384.9, "z": -8331.2, "px": 2625.7, "py": 626.1}, {"loc_id": 1061, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2118.0, "z": -8260.3, "px": 2409.5, "py": 638.2}, {"loc_id": 1062, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2103.4, "z": -8775.7, "px": 1689.0, "py": 550.3}, {"loc_id": 1063, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 692.0, "z": -8715.4, "px": 2166.1, "py": 560.6}, {"loc_id": 1064, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2550.7, "z": -9208.8, "px": 2483.3, "py": 476.4}, {"loc_id": 1065, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2301.6, "z": -8439.1, "px": 2440.8, "py": 607.7}, {"loc_id": 1066, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 759.3, "z": -9144.0, "px": 2177.6, "py": 487.4}, {"loc_id": 1067, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -5115.1, "z": -7669.1, "px": 1175.0, "py": 739.1}, {"loc_id": 1068, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1720.6, "z": -9786.0, "px": 2341.6, "py": 377.9}, {"loc_id": 1069, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -324.0, "z": -9530.0, "px": 1992.7, "py": 421.5}, {"loc_id": 1070, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1717.2, "z": -9482.6, "px": 2341.1, "py": 429.6}, {"loc_id": 1071, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1163.7, "z": -9718.9, "px": 1849.4, "py": 389.3}, {"loc_id": 1072, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3842.6, "z": -8642.8, "px": 1392.2, "py": 573.0}, {"loc_id": 1073, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -5386.6, "z": -7690.1, "px": 1128.7, "py": 735.6}, {"loc_id": 1074, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3652.1, "z": -8309.2, "px": 2671.3, "py": 629.9}, {"loc_id": 1075, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1983.2, "z": -9017.6, "px": 1709.5, "py": 509.0}, {"loc_id": 1076, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -715.2, "z": -8887.7, "px": 1925.9, "py": 531.2}, {"loc_id": 1077, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1019.3, "z": -8643.8, "px": 2222.0, "py": 572.8}, {"loc_id": 1078, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1987.1, "z": -9349.7, "px": 1708.9, "py": 452.3}, {"loc_id": 1079, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 501.3, "z": -9284.3, "px": 2133.6, "py": 463.5}, {"loc_id": 1080, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2420.3, "z": -8648.5, "px": 1634.9, "py": 572.0}, {"loc_id": 1081, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1396.7, "z": -8962.3, "px": 2286.4, "py": 518.4}, {"loc_id": 1082, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1539.2, "z": -9672.1, "px": 1785.3, "py": 397.3}, {"loc_id": 1083, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 697.7, "z": -9226.5, "px": 2167.1, "py": 473.3}, {"loc_id": 1084, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1411.7, "z": -9461.8, "px": 1807.1, "py": 433.2}, {"loc_id": 1085, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 705.1, "z": -8907.3, "px": 2168.3, "py": 527.8}, {"loc_id": 1086, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -5063.8, "z": -7816.0, "px": 1183.8, "py": 714.1}, {"loc_id": 1087, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -395.4, "z": -9611.6, "px": 1980.5, "py": 407.6}, {"loc_id": 1088, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1407.0, "z": -9528.1, "px": 2288.1, "py": 421.9}, {"loc_id": 1089, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 373.1, "z": -9599.2, "px": 2111.7, "py": 409.7}, {"loc_id": 1090, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -841.0, "z": -9909.1, "px": 1904.5, "py": 356.8}, {"loc_id": 1091, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4034.5, "z": -9030.4, "px": 1359.4, "py": 506.8}, {"loc_id": 1092, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 827.2, "z": -8714.5, "px": 2189.2, "py": 560.7}, {"loc_id": 1093, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1729.1, "z": -8390.9, "px": 2343.1, "py": 616.0}, {"loc_id": 1094, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -247.7, "z": -9728.9, "px": 2005.7, "py": 387.6}, {"loc_id": 1095, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3645.0, "z": -8199.7, "px": 1425.9, "py": 648.6}, {"loc_id": 1096, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1212.7, "z": -9288.9, "px": 2255.0, "py": 462.7}, {"loc_id": 1097, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2112.7, "z": -9148.6, "px": 1687.4, "py": 486.6}, {"loc_id": 1098, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1852.8, "z": -8387.4, "px": 2364.2, "py": 616.6}, {"loc_id": 1099, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3637.9, "z": -8123.9, "px": 2668.9, "py": 661.5}, {"loc_id": 1100, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2307.1, "z": -8645.3, "px": 1654.3, "py": 572.5}, {"loc_id": 1101, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 4023.8, "z": -8907.7, "px": 2734.7, "py": 527.8}, {"loc_id": 1102, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3972.0, "z": -9144.6, "px": 1370.1, "py": 487.3}, {"loc_id": 1103, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1481.1, "z": -9024.9, "px": 2300.8, "py": 507.8}, {"loc_id": 1104, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3446.4, "z": -8010.7, "px": 2636.2, "py": 680.8}, {"loc_id": 1105, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3387.0, "z": -8503.5, "px": 2626.0, "py": 596.7}, {"loc_id": 1106, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -828.9, "z": -9404.2, "px": 1906.5, "py": 443.0}, {"loc_id": 1107, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2763.2, "z": -8564.7, "px": 1576.4, "py": 586.3}, {"loc_id": 1108, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1218.4, "z": -9541.5, "px": 2255.9, "py": 419.6}, {"loc_id": 1109, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 906.6, "z": -9140.2, "px": 2202.7, "py": 488.1}, {"loc_id": 1110, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4483.5, "z": -8060.3, "px": 1282.8, "py": 672.4}, {"loc_id": 1111, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1864.7, "z": -8575.4, "px": 2366.2, "py": 584.5}, {"loc_id": 1112, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1222.1, "z": -8884.9, "px": 2256.6, "py": 531.6}, {"loc_id": 1113, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 643.6, "z": -9093.0, "px": 2157.8, "py": 496.1}, {"loc_id": 1114, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3700.1, "z": -8950.7, "px": 1416.5, "py": 520.4}, {"loc_id": 1115, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -715.3, "z": -8630.6, "px": 1925.9, "py": 575.0}, {"loc_id": 1116, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1157.9, "z": -9411.6, "px": 2245.6, "py": 441.8}, {"loc_id": 1117, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3650.0, "z": -8500.3, "px": 2670.9, "py": 597.3}, {"loc_id": 1118, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1598.8, "z": -9218.2, "px": 2320.9, "py": 474.8}, {"loc_id": 1119, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1332.7, "z": -9666.0, "px": 2275.4, "py": 398.3}, {"loc_id": 1120, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3829.3, "z": -8393.4, "px": 2701.5, "py": 615.5}, {"loc_id": 1121, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 126.2, "z": -8628.4, "px": 2069.5, "py": 575.4}, {"loc_id": 1122, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2103.3, "z": -8512.4, "px": 1689.0, "py": 595.2}, {"loc_id": 1123, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2.5, "z": -8961.2, "px": 2048.4, "py": 518.6}, {"loc_id": 1124, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2421.3, "z": -8901.7, "px": 1634.8, "py": 528.8}, {"loc_id": 1125, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3578.7, "z": -8715.1, "px": 1437.2, "py": 560.6}, {"loc_id": 1126, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4164.2, "z": -8183.6, "px": 1337.3, "py": 651.3}, {"loc_id": 1127, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -5438.3, "z": -7490.9, "px": 1119.9, "py": 769.6}, {"loc_id": 1128, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3071.5, "z": -9346.3, "px": 2572.2, "py": 452.9}, {"loc_id": 1129, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 74.6, "z": -8822.2, "px": 2060.7, "py": 542.3}, {"loc_id": 1130, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3337.1, "z": -8951.3, "px": 1478.5, "py": 520.3}, {"loc_id": 1131, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -906.7, "z": -9478.4, "px": 1893.3, "py": 430.4}, {"loc_id": 1132, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4469.4, "z": -8260.4, "px": 1285.2, "py": 638.2}, {"loc_id": 1133, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3657.7, "z": -9093.7, "px": 1423.8, "py": 496.0}, {"loc_id": 1134, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2748.9, "z": -8960.1, "px": 2517.1, "py": 518.8}, {"loc_id": 1135, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 566.5, "z": -9605.1, "px": 2144.7, "py": 408.7}, {"loc_id": 1136, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 244.9, "z": -8948.6, "px": 2089.8, "py": 520.8}, {"loc_id": 1137, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2111.9, "z": -8952.4, "px": 1687.6, "py": 520.1}, {"loc_id": 1138, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3328.1, "z": -8772.4, "px": 1480.0, "py": 550.8}, {"loc_id": 1139, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -330.6, "z": -9992.5, "px": 1991.6, "py": 342.6}, {"loc_id": 1140, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2699.3, "z": -9412.5, "px": 2508.7, "py": 441.6}, {"loc_id": 1141, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4407.4, "z": -7991.8, "px": 1295.8, "py": 684.1}, {"loc_id": 1142, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1464.8, "z": -9592.2, "px": 1798.0, "py": 410.9}, {"loc_id": 1143, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -188.3, "z": -8958.7, "px": 2015.9, "py": 519.0}, {"loc_id": 1144, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2634.6, "z": -8968.9, "px": 2497.6, "py": 517.3}, {"loc_id": 1145, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4809.1, "z": -8440.5, "px": 1227.2, "py": 607.5}, {"loc_id": 1146, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1270.2, "z": -9094.7, "px": 2264.8, "py": 495.8}, {"loc_id": 1147, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -631.9, "z": -8957.8, "px": 1940.2, "py": 519.2}, {"loc_id": 1148, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1924.4, "z": -8316.3, "px": 2376.4, "py": 628.7}, {"loc_id": 1149, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1854.3, "z": -9275.1, "px": 2364.5, "py": 465.0}, {"loc_id": 1150, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 266.7, "z": -9212.5, "px": 2093.5, "py": 475.7}, {"loc_id": 1151, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1342.1, "z": -9227.8, "px": 1818.9, "py": 473.1}, {"loc_id": 1152, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3194.5, "z": -9349.4, "px": 2593.2, "py": 452.4}, {"loc_id": 1153, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3005.9, "z": -9216.1, "px": 2561.0, "py": 475.1}, {"loc_id": 1154, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3844.7, "z": -8832.5, "px": 2704.2, "py": 540.6}, {"loc_id": 1155, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3573.7, "z": -8201.7, "px": 2657.9, "py": 648.2}, {"loc_id": 1156, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 573.9, "z": -8884.9, "px": 2145.9, "py": 531.6}, {"loc_id": 1157, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2619.5, "z": -8886.2, "px": 1600.9, "py": 531.4}, {"loc_id": 1158, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2306.9, "z": -9032.7, "px": 1654.3, "py": 506.4}, {"loc_id": 1159, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2303.0, "z": -8244.2, "px": 1655.0, "py": 641.0}, {"loc_id": 1160, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 4218.2, "z": -8648.8, "px": 2767.9, "py": 571.9}, {"loc_id": 1161, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4541.6, "z": -8378.7, "px": 1272.9, "py": 618.0}, {"loc_id": 1162, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2251.4, "z": -8768.8, "px": 1663.8, "py": 551.5}, {"loc_id": 1163, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 52.1, "z": -8708.5, "px": 2056.9, "py": 561.7}, {"loc_id": 1164, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4617.0, "z": -8200.3, "px": 1260.0, "py": 648.5}, {"loc_id": 1165, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4487.6, "z": -7924.3, "px": 1282.1, "py": 695.6}, {"loc_id": 1166, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -119.1, "z": -9031.5, "px": 2027.7, "py": 506.6}, {"loc_id": 1167, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3851.3, "z": -8836.6, "px": 1390.7, "py": 539.9}, {"loc_id": 1168, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4340.2, "z": -8070.5, "px": 1307.3, "py": 670.6}, {"loc_id": 1169, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3267.1, "z": -8266.1, "px": 2605.6, "py": 637.3}, {"loc_id": 1170, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -5186.6, "z": -8070.2, "px": 1162.8, "py": 670.7}, {"loc_id": 1171, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2677.2, "z": -9227.8, "px": 2504.9, "py": 473.1}, {"loc_id": 1172, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1464.4, "z": -9417.7, "px": 2297.9, "py": 440.7}, {"loc_id": 1173, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 907.2, "z": -8637.6, "px": 2202.8, "py": 573.8}, {"loc_id": 1174, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 195.8, "z": -9589.4, "px": 2081.4, "py": 411.4}, {"loc_id": 1175, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -505.6, "z": -9738.1, "px": 1961.7, "py": 386.0}, {"loc_id": 1176, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 955.4, "z": -8758.4, "px": 2211.1, "py": 553.2}, {"loc_id": 1177, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2757.8, "z": -9098.9, "px": 2518.7, "py": 495.1}, {"loc_id": 1178, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -511.4, "z": -8964.4, "px": 1960.7, "py": 518.1}, {"loc_id": 1179, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3273.7, "z": -8629.6, "px": 2606.7, "py": 575.2}, {"loc_id": 1180, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -181.5, "z": -9530.0, "px": 2017.0, "py": 421.5}, {"loc_id": 1181, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 393.5, "z": -8969.9, "px": 2115.2, "py": 517.1}, {"loc_id": 1182, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3714.8, "z": -8645.1, "px": 1414.0, "py": 572.6}, {"loc_id": 1183, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -842.4, "z": -8708.6, "px": 1904.2, "py": 561.7}, {"loc_id": 1184, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2820.0, "z": -8840.4, "px": 2529.3, "py": 539.2}, {"loc_id": 1185, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4805.3, "z": -8180.7, "px": 1227.9, "py": 651.8}, {"loc_id": 1186, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2431.0, "z": -9218.4, "px": 2462.9, "py": 474.7}, {"loc_id": 1187, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 436.6, "z": -8713.4, "px": 2122.5, "py": 560.9}, {"loc_id": 1188, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -950.9, "z": -8763.2, "px": 1885.7, "py": 552.4}, {"loc_id": 1189, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 827.6, "z": -9279.4, "px": 2189.2, "py": 464.3}, {"loc_id": 1190, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3272.9, "z": -9281.4, "px": 2606.6, "py": 464.0}, {"loc_id": 1191, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -953.0, "z": -9035.6, "px": 1885.4, "py": 505.9}, {"loc_id": 1192, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -837.5, "z": -9141.7, "px": 1905.1, "py": 487.8}, {"loc_id": 1193, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -267.9, "z": -9849.2, "px": 2002.3, "py": 367.1}, {"loc_id": 1194, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1024.3, "z": -9464.6, "px": 2222.8, "py": 432.7}, {"loc_id": 1195, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2426.1, "z": -8443.0, "px": 1633.9, "py": 607.1}, {"loc_id": 1196, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2357.9, "z": -8521.0, "px": 1645.6, "py": 593.7}, {"loc_id": 1197, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -123.5, "z": -8837.1, "px": 2026.9, "py": 539.8}, {"loc_id": 1198, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 576.9, "z": -9206.2, "px": 2146.5, "py": 476.8}, {"loc_id": 1199, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -713.7, "z": -9718.6, "px": 1926.2, "py": 389.4}, {"loc_id": 1200, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 517.0, "z": -9791.1, "px": 2136.2, "py": 377.0}, {"loc_id": 1201, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 5318.9, "z": -7929.2, "px": 2955.8, "py": 694.7}, {"loc_id": 1202, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2246.7, "z": -8332.0, "px": 1664.6, "py": 626.0}, {"loc_id": 1203, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1284.1, "z": -8969.8, "px": 2267.2, "py": 517.2}, {"loc_id": 1204, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -762.9, "z": -9844.2, "px": 1917.8, "py": 367.9}, {"loc_id": 1205, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3911.7, "z": -8906.8, "px": 2715.6, "py": 527.9}, {"loc_id": 1206, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -518.4, "z": -9223.8, "px": 1959.5, "py": 473.8}, {"loc_id": 1207, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2502.7, "z": -9023.7, "px": 1620.9, "py": 508.0}, {"loc_id": 1208, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3650.8, "z": -9222.9, "px": 1424.9, "py": 474.0}, {"loc_id": 1209, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2231.0, "z": -8519.0, "px": 2428.8, "py": 594.1}, {"loc_id": 1210, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1013.6, "z": -9153.2, "px": 2221.0, "py": 485.9}, {"loc_id": 1211, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1848.9, "z": -9098.4, "px": 1732.5, "py": 495.2}, {"loc_id": 1212, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 715.8, "z": -9930.2, "px": 2170.2, "py": 353.2}, {"loc_id": 1213, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1225.2, "z": -9344.2, "px": 1838.9, "py": 453.3}, {"loc_id": 1214, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1091.3, "z": -9407.5, "px": 1861.8, "py": 442.5}, {"loc_id": 1215, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1404.2, "z": -9268.3, "px": 2287.7, "py": 466.2}, {"loc_id": 1216, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2057.0, "z": -9273.4, "px": 1696.9, "py": 465.3}, {"loc_id": 1217, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1410.9, "z": -9354.7, "px": 1807.2, "py": 451.5}, {"loc_id": 1218, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1029.4, "z": -9154.6, "px": 1872.3, "py": 485.6}, {"loc_id": 1219, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -635.1, "z": -8827.5, "px": 1939.6, "py": 541.4}, {"loc_id": 1220, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1225.6, "z": -9083.6, "px": 1838.8, "py": 497.7}, {"loc_id": 1221, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4788.7, "z": -8073.5, "px": 1230.7, "py": 670.1}, {"loc_id": 1222, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 629.1, "z": -9738.3, "px": 2155.4, "py": 386.0}, {"loc_id": 1223, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 255.5, "z": -9079.0, "px": 2091.6, "py": 498.5}, {"loc_id": 1224, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1985.0, "z": -8779.8, "px": 1709.2, "py": 549.6}, {"loc_id": 1225, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -957.4, "z": -9284.5, "px": 1884.6, "py": 463.4}, {"loc_id": 1226, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1670.9, "z": -9078.8, "px": 2333.2, "py": 498.6}, {"loc_id": 1227, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 5127.4, "z": -7754.8, "px": 2923.1, "py": 724.5}, {"loc_id": 1228, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1480.2, "z": -9601.3, "px": 2300.6, "py": 409.4}, {"loc_id": 1229, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1219.5, "z": -9211.9, "px": 1839.9, "py": 475.8}, {"loc_id": 1230, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 506.9, "z": -9016.9, "px": 2134.5, "py": 509.1}, {"loc_id": 1231, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -500.6, "z": -8645.1, "px": 1962.6, "py": 572.6}, {"loc_id": 1232, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1162.9, "z": -9097.3, "px": 2246.5, "py": 495.4}, {"loc_id": 1233, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2187.3, "z": -9081.9, "px": 1674.7, "py": 498.0}, {"loc_id": 1234, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -139.3, "z": -9663.3, "px": 2024.2, "py": 398.8}, {"loc_id": 1235, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 5308.8, "z": -7806.2, "px": 2954.0, "py": 715.7}, {"loc_id": 1236, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2187.2, "z": -8630.4, "px": 1674.7, "py": 575.1}, {"loc_id": 1237, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4982.1, "z": -8318.7, "px": 1197.7, "py": 628.3}, {"loc_id": 1238, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -571.4, "z": -9657.2, "px": 1950.5, "py": 399.8}, {"loc_id": 1239, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -833.1, "z": -8820.2, "px": 1905.8, "py": 542.7}, {"loc_id": 1240, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -5631.8, "z": -7606.7, "px": 1086.8, "py": 749.8}, {"loc_id": 1241, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1787.1, "z": -8699.8, "px": 2353.0, "py": 563.2}, {"loc_id": 1242, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2247.3, "z": -9019.8, "px": 2431.5, "py": 508.6}, {"loc_id": 1243, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1656.9, "z": -9528.8, "px": 1765.2, "py": 421.8}, {"loc_id": 1244, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1663.4, "z": -9604.0, "px": 2331.9, "py": 408.9}, {"loc_id": 1245, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2953.5, "z": -9079.4, "px": 1543.9, "py": 498.4}, {"loc_id": 1246, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -843.9, "z": -9022.6, "px": 1904.0, "py": 508.1}, {"loc_id": 1247, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -5303.8, "z": -7619.9, "px": 1142.8, "py": 747.5}, {"loc_id": 1248, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1335.4, "z": -9526.9, "px": 1820.1, "py": 422.1}, {"loc_id": 1249, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1739.8, "z": -9674.7, "px": 2344.9, "py": 396.9}, {"loc_id": 1250, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4347.2, "z": -8317.0, "px": 1306.1, "py": 628.6}, {"loc_id": 1251, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 8.9, "z": -8567.0, "px": 2049.5, "py": 585.9}, {"loc_id": 1252, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 260.0, "z": -8635.2, "px": 2092.4, "py": 574.3}, {"loc_id": 1253, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -318.1, "z": -8645.1, "px": 1993.7, "py": 572.6}, {"loc_id": 1254, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3511.7, "z": -8452.4, "px": 2647.3, "py": 605.5}, {"loc_id": 1255, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 320.1, "z": -9332.8, "px": 2102.6, "py": 455.2}, {"loc_id": 1256, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4417.2, "z": -8136.0, "px": 1294.1, "py": 659.5}, {"loc_id": 1257, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2248.6, "z": -8907.2, "px": 2431.8, "py": 527.8}, {"loc_id": 1258, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1279.4, "z": -9673.9, "px": 1829.6, "py": 397.0}, {"loc_id": 1259, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1080.2, "z": -9347.7, "px": 2232.4, "py": 452.7}, {"loc_id": 1260, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3528.6, "z": -9080.1, "px": 1445.8, "py": 498.3}, {"loc_id": 1261, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1543.8, "z": -9530.0, "px": 1784.5, "py": 421.5}, {"loc_id": 1262, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -5175.6, "z": -7934.1, "px": 1164.7, "py": 693.9}, {"loc_id": 1263, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 5428.0, "z": -8139.4, "px": 2974.4, "py": 658.9}, {"loc_id": 1264, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2945.8, "z": -9033.2, "px": 2550.7, "py": 506.3}, {"loc_id": 1265, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 5623.2, "z": -8128.2, "px": 3007.7, "py": 660.8}, {"loc_id": 1266, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3272.7, "z": -9414.8, "px": 2606.5, "py": 441.2}, {"loc_id": 1267, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3448.3, "z": -9014.5, "px": 1459.5, "py": 509.5}, {"loc_id": 1268, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3332.0, "z": -8182.9, "px": 2616.7, "py": 651.5}, {"loc_id": 1269, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -5560.4, "z": -7798.3, "px": 1099.0, "py": 717.1}, {"loc_id": 1270, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 4040.3, "z": -9013.6, "px": 2737.5, "py": 509.7}, {"loc_id": 1271, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -440.3, "z": -9291.0, "px": 1972.9, "py": 462.3}, {"loc_id": 1272, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1734.3, "z": -9282.7, "px": 2344.0, "py": 463.8}, {"loc_id": 1273, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2181.5, "z": -9338.6, "px": 2420.3, "py": 454.2}, {"loc_id": 1274, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1032.1, "z": -9611.2, "px": 1871.9, "py": 407.7}, {"loc_id": 1275, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2248.3, "z": -8313.9, "px": 2431.7, "py": 629.1}, {"loc_id": 1276, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -139.2, "z": -9844.9, "px": 2024.2, "py": 367.8}, {"loc_id": 1277, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 767.2, "z": -9400.0, "px": 2178.9, "py": 443.7}, {"loc_id": 1278, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1928.7, "z": -9216.6, "px": 1718.8, "py": 475.0}, {"loc_id": 1279, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2614.6, "z": -9080.1, "px": 2494.2, "py": 498.3}, {"loc_id": 1280, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4724.3, "z": -8245.2, "px": 1241.7, "py": 640.8}, {"loc_id": 1281, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 951.9, "z": -9034.3, "px": 2210.5, "py": 506.1}, {"loc_id": 1282, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2040.3, "z": -9482.7, "px": 2396.2, "py": 429.6}, {"loc_id": 1283, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -374.9, "z": -9158.0, "px": 1984.0, "py": 485.0}, {"loc_id": 1284, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2750.7, "z": -8331.6, "px": 1578.5, "py": 626.1}, {"loc_id": 1285, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3705.2, "z": -8395.4, "px": 2680.4, "py": 615.2}, {"loc_id": 1286, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3912.2, "z": -8201.7, "px": 1380.3, "py": 648.2}, {"loc_id": 1287, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1.7, "z": -9083.2, "px": 2048.3, "py": 497.8}, {"loc_id": 1288, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -446.1, "z": -9081.1, "px": 1971.9, "py": 498.2}, {"loc_id": 1289, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 446.4, "z": -9720.0, "px": 2124.2, "py": 389.1}, {"loc_id": 1290, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -4933.6, "z": -8199.5, "px": 1206.0, "py": 648.6}, {"loc_id": 1291, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3844.5, "z": -9099.0, "px": 1391.9, "py": 495.1}, {"loc_id": 1292, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3460.9, "z": -8583.1, "px": 2638.7, "py": 583.2}, {"loc_id": 1293, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -5192.9, "z": -7546.4, "px": 1161.7, "py": 760.1}, {"loc_id": 1294, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 439.8, "z": -8820.3, "px": 2123.1, "py": 542.7}, {"loc_id": 1295, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1596.2, "z": -9350.7, "px": 2320.4, "py": 452.1}, {"loc_id": 1296, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 649.5, "z": -9536.5, "px": 2158.8, "py": 420.4}, {"loc_id": 1297, "loc_name": "CharredStone_Spawner", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -394.1, "z": -9861.8, "px": 1980.7, "py": 364.9}, {"loc_id": 1298, "loc_name": "BogWitch_Camp", "item": "AreaSpawner: BogWitchKvastur[1-1] (respawn every 60 seconds)", "count": 1, "x": -2369.2, "z": 4866.3, "px": 1643.7, "py": 2878.5}, {"loc_id": 1299, "loc_name": "BogWitch_Camp", "item": "AreaSpawner: BogWitchKvastur[1-1] (respawn every 60 seconds)", "count": 1, "x": -1025.7, "z": -3719.1, "px": 1872.9, "py": 1413.3}, {"loc_id": 1300, "loc_name": "BogWitch_Camp", "item": "AreaSpawner: BogWitchKvastur[1-1] (respawn every 60 seconds)", "count": 1, "x": -2683.7, "z": -5126.8, "px": 1590.0, "py": 1173.0}, {"loc_id": 1301, "loc_name": "BogWitch_Camp", "item": "AreaSpawner: BogWitchKvastur[1-1] (respawn every 60 seconds)", "count": 1, "x": -3012.0, "z": 644.9, "px": 1534.0, "py": 2158.1}, {"loc_id": 1302, "loc_name": "BogWitch_Camp", "item": "AreaSpawner: BogWitchKvastur[1-1] (respawn every 60 seconds)", "count": 1, "x": 4415.7, "z": -2939.8, "px": 2801.6, "py": 1546.3}, {"loc_id": 1303, "loc_name": "BogWitch_Camp", "item": "AreaSpawner: BogWitchKvastur[1-1] (respawn every 60 seconds)", "count": 1, "x": 3776.7, "z": 4359.5, "px": 2692.6, "py": 2792.0}, {"loc_id": 1304, "loc_name": "BogWitch_Camp", "item": "AreaSpawner: BogWitchKvastur[1-1] (respawn every 60 seconds)", "count": 1, "x": 3387.4, "z": -4358.3, "px": 2626.1, "py": 1304.2}, {"loc_id": 1305, "loc_name": "BogWitch_Camp", "item": "AreaSpawner: BogWitchKvastur[1-1] (respawn every 60 seconds)", "count": 1, "x": -5125.4, "z": 1466.5, "px": 1173.3, "py": 2298.3}, {"loc_id": 1306, "loc_name": "BogWitch_Camp", "item": "AreaSpawner: BogWitchKvastur[1-1] (respawn every 60 seconds)", "count": 1, "x": -4231.0, "z": 3712.2, "px": 1325.9, "py": 2681.5}, {"loc_id": 1307, "loc_name": "BogWitch_Camp", "item": "AreaSpawner: BogWitchKvastur[1-1] (respawn every 60 seconds)", "count": 1, "x": 2239.6, "z": -3193.1, "px": 2430.2, "py": 1503.0}, {"loc_id": 1333, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 365.2, "z": 634.1, "px": 2110.3, "py": 2156.2}, {"loc_id": 1334, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 569.0, "z": 5140.4, "px": 2145.1, "py": 2925.3}, {"loc_id": 1335, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 6841.5, "z": 4815.3, "px": 3215.6, "py": 2869.8}, {"loc_id": 1336, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -134.9, "z": -940.2, "px": 2025.0, "py": 1887.5}, {"loc_id": 1337, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 9714.2, "z": 1286.0, "px": 3705.9, "py": 2267.5}, {"loc_id": 1338, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 3925.0, "z": 3964.1, "px": 2717.9, "py": 2724.5}, {"loc_id": 1339, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1662.4, "z": -4525.8, "px": 2331.7, "py": 1275.6}, {"loc_id": 1340, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -1783.2, "z": 4820.5, "px": 1743.7, "py": 2870.7}, {"loc_id": 1341, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -3213.5, "z": 4371.8, "px": 1499.6, "py": 2794.1}, {"loc_id": 1342, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2026.8, "z": -4484.0, "px": 2393.9, "py": 1282.7}, {"loc_id": 1343, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -1806.5, "z": -4273.7, "px": 1739.7, "py": 1318.6}, {"loc_id": 1344, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1805.6, "z": 6384.0, "px": 2356.2, "py": 3137.5}, {"loc_id": 1345, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 5201.2, "z": 517.4, "px": 2935.7, "py": 2136.3}, {"loc_id": 1346, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 7112.4, "z": -4400.2, "px": 3261.8, "py": 1297.0}, {"loc_id": 1347, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2882.8, "z": -4433.1, "px": 2540.0, "py": 1291.4}, {"loc_id": 1348, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -5967.1, "z": 4624.7, "px": 1029.6, "py": 2837.3}, {"loc_id": 1349, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -9650.5, "z": -178.5, "px": 401.0, "py": 2017.5}, {"loc_id": 1350, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2185.8, "z": 3694.5, "px": 2421.0, "py": 2678.5}, {"loc_id": 1351, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -4692.4, "z": 5803.8, "px": 1247.2, "py": 3038.5}, {"loc_id": 1352, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -8942.1, "z": 3201.2, "px": 521.9, "py": 2594.3}, {"loc_id": 1353, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 560.7, "z": 555.8, "px": 2143.7, "py": 2142.9}, {"loc_id": 1354, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 6801.8, "z": 4670.7, "px": 3208.8, "py": 2845.1}, {"loc_id": 1355, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1849.6, "z": -6282.1, "px": 2363.7, "py": 975.9}, {"loc_id": 1356, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1876.7, "z": -961.0, "px": 2368.3, "py": 1884.0}, {"loc_id": 1357, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -7023.3, "z": 2561.0, "px": 849.4, "py": 2485.1}, {"loc_id": 1358, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -7573.3, "z": -4781.9, "px": 755.5, "py": 1231.9}, {"loc_id": 1359, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1846.8, "z": -4528.2, "px": 2363.2, "py": 1275.2}, {"loc_id": 1360, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -11.9, "z": -4664.6, "px": 2046.0, "py": 1251.9}, {"loc_id": 1361, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -3438.0, "z": 6785.1, "px": 1461.2, "py": 3206.0}, {"loc_id": 1362, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -3956.4, "z": -136.8, "px": 1372.8, "py": 2024.7}, {"loc_id": 1363, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -5616.2, "z": 4867.1, "px": 1089.5, "py": 2878.7}, {"loc_id": 1364, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -4915.8, "z": 5588.7, "px": 1209.0, "py": 3001.8}, {"loc_id": 1365, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -1903.7, "z": -4417.8, "px": 1723.1, "py": 1294.0}, {"loc_id": 1366, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1157.9, "z": -5507.6, "px": 2245.6, "py": 1108.0}, {"loc_id": 1367, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2028.1, "z": -952.9, "px": 2394.1, "py": 1885.4}, {"loc_id": 1368, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1718.1, "z": -1226.3, "px": 2341.2, "py": 1838.7}, {"loc_id": 1369, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -275.5, "z": -4535.6, "px": 2001.0, "py": 1273.9}, {"loc_id": 1370, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -9323.8, "z": -2741.9, "px": 456.7, "py": 1580.0}, {"loc_id": 1371, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2041.9, "z": 1325.9, "px": 2396.5, "py": 2274.3}, {"loc_id": 1372, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -7632.7, "z": -1807.7, "px": 745.4, "py": 1739.5}, {"loc_id": 1373, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -7367.7, "z": -1924.8, "px": 790.6, "py": 1719.5}, {"loc_id": 1374, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -9328.9, "z": 3153.5, "px": 455.9, "py": 2586.2}, {"loc_id": 1375, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 8705.7, "z": -3775.0, "px": 3533.8, "py": 1403.7}, {"loc_id": 1376, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2617.0, "z": -3562.3, "px": 2494.6, "py": 1440.0}, {"loc_id": 1377, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -3984.9, "z": -276.5, "px": 1367.9, "py": 2000.8}, {"loc_id": 1378, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -4975.5, "z": 5745.1, "px": 1198.8, "py": 3028.5}, {"loc_id": 1379, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 7342.4, "z": -4138.3, "px": 3301.1, "py": 1341.7}, {"loc_id": 1380, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 8018.7, "z": -2493.5, "px": 3416.5, "py": 1622.4}, {"loc_id": 1381, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 883.6, "z": 5309.4, "px": 2198.8, "py": 2954.1}, {"loc_id": 1382, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2602.1, "z": -4605.8, "px": 2492.1, "py": 1261.9}, {"loc_id": 1383, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 686.9, "z": 5233.9, "px": 2165.2, "py": 2941.3}, {"loc_id": 1384, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2114.2, "z": 977.9, "px": 2408.8, "py": 2214.9}, {"loc_id": 1385, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -9264.2, "z": 2814.8, "px": 466.9, "py": 2528.4}, {"loc_id": 1386, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -5614.7, "z": 4997.8, "px": 1089.8, "py": 2901.0}, {"loc_id": 1387, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 7275.6, "z": -4343.3, "px": 3289.7, "py": 1306.7}, {"loc_id": 1388, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 3907.6, "z": -385.0, "px": 2714.9, "py": 1982.3}, {"loc_id": 1389, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2039.9, "z": 1149.4, "px": 2396.1, "py": 2244.2}, {"loc_id": 1390, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 8849.9, "z": 58.4, "px": 3558.4, "py": 2058.0}, {"loc_id": 1391, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2233.5, "z": -447.1, "px": 2429.2, "py": 1971.7}, {"loc_id": 1392, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -7658.6, "z": 4309.6, "px": 740.9, "py": 2783.5}, {"loc_id": 1393, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 3860.2, "z": 1084.1, "px": 2706.8, "py": 2233.0}, {"loc_id": 1394, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -9098.3, "z": 2747.8, "px": 495.2, "py": 2517.0}, {"loc_id": 1395, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2305.9, "z": 3893.4, "px": 2441.5, "py": 2712.5}, {"loc_id": 1396, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 813.2, "z": -2747.3, "px": 2186.8, "py": 1579.1}, {"loc_id": 1397, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -8782.1, "z": -894.3, "px": 549.2, "py": 1895.4}, {"loc_id": 1398, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 947.5, "z": -5615.4, "px": 2209.7, "py": 1089.6}, {"loc_id": 1399, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 5834.6, "z": -787.6, "px": 3043.8, "py": 1913.6}, {"loc_id": 1400, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -4166.7, "z": -6208.5, "px": 1336.9, "py": 988.4}, {"loc_id": 1401, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 5231.0, "z": 5237.7, "px": 2940.8, "py": 2941.9}, {"loc_id": 1402, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 122.5, "z": -4617.7, "px": 2068.9, "py": 1259.9}, {"loc_id": 1403, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 717.7, "z": -2308.8, "px": 2170.5, "py": 1654.0}, {"loc_id": 1404, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 7885.9, "z": -2703.3, "px": 3393.9, "py": 1586.6}, {"loc_id": 1405, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 3629.8, "z": 3600.8, "px": 2667.5, "py": 2662.5}, {"loc_id": 1406, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -1222.3, "z": -5451.6, "px": 1839.4, "py": 1117.6}, {"loc_id": 1407, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -5905.7, "z": 1610.2, "px": 1040.1, "py": 2322.8}, {"loc_id": 1408, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 8331.6, "z": 1650.1, "px": 3469.9, "py": 2329.6}, {"loc_id": 1409, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 6843.4, "z": -3962.4, "px": 3215.9, "py": 1371.8}, {"loc_id": 1410, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 8324.5, "z": 451.0, "px": 3468.7, "py": 2125.0}, {"loc_id": 1411, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 785.5, "z": -67.2, "px": 2182.1, "py": 2036.5}, {"loc_id": 1412, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 5935.5, "z": -629.4, "px": 3061.0, "py": 1940.6}, {"loc_id": 1413, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2027.9, "z": -277.2, "px": 2394.1, "py": 2000.7}, {"loc_id": 1414, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -171.0, "z": -4625.8, "px": 2018.8, "py": 1258.5}, {"loc_id": 1415, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 3718.7, "z": 3910.9, "px": 2682.7, "py": 2715.5}, {"loc_id": 1416, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -5183.8, "z": -1546.3, "px": 1163.3, "py": 1784.1}, {"loc_id": 1417, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -6252.5, "z": 2306.4, "px": 980.9, "py": 2441.6}, {"loc_id": 1418, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -9216.2, "z": 3335.6, "px": 475.1, "py": 2617.3}, {"loc_id": 1419, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 8142.8, "z": -2373.3, "px": 3437.7, "py": 1643.0}, {"loc_id": 1420, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -9081.7, "z": 3502.1, "px": 498.1, "py": 2645.7}, {"loc_id": 1421, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -1289.1, "z": -1667.8, "px": 1828.0, "py": 1763.4}, {"loc_id": 1422, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 8527.3, "z": -2091.6, "px": 3503.3, "py": 1691.0}, {"loc_id": 1423, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1581.1, "z": -7660.7, "px": 2317.8, "py": 740.6}, {"loc_id": 1424, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -9803.6, "z": 701.1, "px": 374.9, "py": 2167.7}, {"loc_id": 1425, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2295.9, "z": 5140.1, "px": 2439.8, "py": 2925.2}, {"loc_id": 1426, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 5684.7, "z": -910.2, "px": 3018.2, "py": 1892.7}, {"loc_id": 1427, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 3312.9, "z": -2812.3, "px": 2613.4, "py": 1568.0}, {"loc_id": 1428, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 8063.7, "z": -74.1, "px": 3424.2, "py": 2035.4}, {"loc_id": 1429, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 827.4, "z": 5111.0, "px": 2189.2, "py": 2920.3}, {"loc_id": 1430, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 852.7, "z": 5448.6, "px": 2193.5, "py": 2977.9}, {"loc_id": 1431, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -2154.8, "z": -2925.3, "px": 1680.2, "py": 1548.7}, {"loc_id": 1432, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 4491.4, "z": 6732.3, "px": 2814.5, "py": 3197.0}, {"loc_id": 1433, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 9857.9, "z": 1271.2, "px": 3730.4, "py": 2265.0}, {"loc_id": 1434, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -1276.9, "z": -1204.9, "px": 1830.1, "py": 1842.4}, {"loc_id": 1435, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 7745.5, "z": -2632.1, "px": 3369.9, "py": 1598.8}, {"loc_id": 1436, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 8018.0, "z": -2681.2, "px": 3416.4, "py": 1590.4}, {"loc_id": 1437, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -9155.2, "z": -2768.8, "px": 485.5, "py": 1575.5}, {"loc_id": 1438, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 981.4, "z": -5449.9, "px": 2215.5, "py": 1117.9}, {"loc_id": 1439, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1357.7, "z": -5488.5, "px": 2279.7, "py": 1111.3}, {"loc_id": 1440, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1616.7, "z": 6342.1, "px": 2323.9, "py": 3130.4}, {"loc_id": 1441, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -9069.6, "z": 2932.5, "px": 500.1, "py": 2548.5}, {"loc_id": 1442, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 7751.0, "z": -3089.0, "px": 3370.8, "py": 1520.8}, {"loc_id": 1443, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -2362.8, "z": -134.8, "px": 1644.7, "py": 2025.0}, {"loc_id": 1444, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 914.8, "z": 5638.5, "px": 2204.1, "py": 3010.3}, {"loc_id": 1445, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 5367.4, "z": -904.6, "px": 2964.0, "py": 1893.6}, {"loc_id": 1446, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -8530.8, "z": -1979.0, "px": 592.1, "py": 1710.3}, {"loc_id": 1447, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 9537.9, "z": 9.0, "px": 3675.8, "py": 2049.5}, {"loc_id": 1448, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -1085.6, "z": -1423.3, "px": 1862.7, "py": 1805.1}, {"loc_id": 1449, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2187.7, "z": 1405.3, "px": 2421.4, "py": 2287.8}, {"loc_id": 1450, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 6993.8, "z": -4243.0, "px": 3241.6, "py": 1323.9}, {"loc_id": 1451, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -9172.5, "z": 3142.1, "px": 482.6, "py": 2584.3}, {"loc_id": 1452, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 5551.4, "z": -974.6, "px": 2995.4, "py": 1881.7}, {"loc_id": 1453, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -3654.4, "z": 6890.8, "px": 1424.3, "py": 3224.0}, {"loc_id": 1454, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2255.1, "z": -718.9, "px": 2432.9, "py": 1925.3}, {"loc_id": 1455, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -2005.5, "z": -4307.5, "px": 1705.7, "py": 1312.9}, {"loc_id": 1456, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2554.8, "z": 5067.3, "px": 2484.0, "py": 2912.8}, {"loc_id": 1457, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2814.6, "z": -2117.7, "px": 2528.4, "py": 1686.6}, {"loc_id": 1458, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2746.8, "z": -4428.9, "px": 2516.8, "py": 1292.1}, {"loc_id": 1459, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 8123.6, "z": -339.5, "px": 3434.4, "py": 1990.1}, {"loc_id": 1460, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -7660.9, "z": 4734.9, "px": 740.5, "py": 2856.1}, {"loc_id": 1461, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2227.7, "z": 1554.3, "px": 2428.2, "py": 2313.3}, {"loc_id": 1462, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -7235.3, "z": -1866.0, "px": 813.2, "py": 1729.5}, {"loc_id": 1463, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -1286.1, "z": -1933.9, "px": 1828.5, "py": 1717.9}, {"loc_id": 1464, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2228.8, "z": 1282.5, "px": 2428.4, "py": 2266.9}, {"loc_id": 1465, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -1470.3, "z": -1853.1, "px": 1797.1, "py": 1731.7}, {"loc_id": 1466, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1346.3, "z": -5701.5, "px": 2277.8, "py": 1074.9}, {"loc_id": 1467, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -623.7, "z": 596.3, "px": 1941.6, "py": 2149.8}, {"loc_id": 1468, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 7160.9, "z": -4542.6, "px": 3270.1, "py": 1272.7}, {"loc_id": 1469, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 8171.9, "z": -213.7, "px": 3442.7, "py": 2011.5}, {"loc_id": 1470, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2053.5, "z": 3640.5, "px": 2398.5, "py": 2669.3}, {"loc_id": 1471, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -8259.8, "z": -1924.9, "px": 638.3, "py": 1719.5}, {"loc_id": 1472, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -5199.2, "z": 626.3, "px": 1160.7, "py": 2154.9}, {"loc_id": 1473, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 7727.4, "z": -2803.7, "px": 3366.8, "py": 1569.5}, {"loc_id": 1474, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -1275.4, "z": -2095.8, "px": 1830.3, "py": 1690.3}, {"loc_id": 1475, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2424.3, "z": 5167.6, "px": 2461.7, "py": 2929.9}, {"loc_id": 1476, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 463.9, "z": 5249.0, "px": 2127.2, "py": 2943.8}, {"loc_id": 1477, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 7659.2, "z": 3855.2, "px": 3355.2, "py": 2706.0}, {"loc_id": 1478, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -2990.1, "z": 4412.1, "px": 1537.7, "py": 2801.0}, {"loc_id": 1479, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2551.4, "z": 5751.4, "px": 2483.4, "py": 3029.6}, {"loc_id": 1480, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 131.6, "z": -1039.8, "px": 2070.5, "py": 1870.5}, {"loc_id": 1481, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2416.2, "z": -4478.6, "px": 2460.4, "py": 1283.7}, {"loc_id": 1482, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 9356.3, "z": 365.9, "px": 3644.8, "py": 2110.4}, {"loc_id": 1483, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2350.8, "z": 3720.9, "px": 2449.2, "py": 2683.0}, {"loc_id": 1484, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -1104.6, "z": -1555.7, "px": 1859.5, "py": 1782.5}, {"loc_id": 1485, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -5385.8, "z": -6250.7, "px": 1128.8, "py": 981.2}, {"loc_id": 1486, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2367.2, "z": -1724.5, "px": 2452.0, "py": 1753.7}, {"loc_id": 1487, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2424.4, "z": -1592.7, "px": 2461.8, "py": 1776.2}, {"loc_id": 1488, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 779.1, "z": -2548.5, "px": 2181.0, "py": 1613.1}, {"loc_id": 1489, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -9396.2, "z": 2867.4, "px": 444.4, "py": 2537.4}, {"loc_id": 1490, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 3901.9, "z": 3699.0, "px": 2713.9, "py": 2679.3}, {"loc_id": 1491, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -9552.1, "z": -276.8, "px": 417.8, "py": 2000.8}, {"loc_id": 1492, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 4085.9, "z": 6956.8, "px": 2745.3, "py": 3235.3}, {"loc_id": 1493, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2799.2, "z": -3787.0, "px": 2525.7, "py": 1401.7}, {"loc_id": 1494, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -3285.2, "z": 4485.5, "px": 1487.3, "py": 2813.5}, {"loc_id": 1495, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 7346.1, "z": -3201.0, "px": 3301.7, "py": 1501.7}, {"loc_id": 1496, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -9237.3, "z": -1599.6, "px": 471.5, "py": 1775.0}, {"loc_id": 1497, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -912.4, "z": 4875.4, "px": 1892.3, "py": 2880.1}, {"loc_id": 1498, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 9578.7, "z": 1291.4, "px": 3682.8, "py": 2268.4}, {"loc_id": 1499, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -44.2, "z": -840.6, "px": 2040.5, "py": 1904.5}, {"loc_id": 1500, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2311.6, "z": 4915.3, "px": 2442.5, "py": 2886.9}, {"loc_id": 1501, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -3450.7, "z": 4298.4, "px": 1459.1, "py": 2781.6}, {"loc_id": 1502, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1215.0, "z": 5560.7, "px": 2255.4, "py": 2997.0}, {"loc_id": 1503, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 3281.2, "z": -2627.8, "px": 2608.0, "py": 1599.5}, {"loc_id": 1504, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2158.8, "z": -849.3, "px": 2416.4, "py": 1903.1}, {"loc_id": 1505, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -3974.5, "z": -510.7, "px": 1369.7, "py": 1960.8}, {"loc_id": 1506, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1929.6, "z": 1080.4, "px": 2377.3, "py": 2232.4}, {"loc_id": 1507, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -8755.0, "z": -697.0, "px": 553.8, "py": 1929.0}, {"loc_id": 1508, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 4204.1, "z": 6781.4, "px": 2765.5, "py": 3205.4}, {"loc_id": 1509, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -2042.6, "z": 576.8, "px": 1699.4, "py": 2146.4}, {"loc_id": 1510, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -6668.6, "z": 5379.8, "px": 909.9, "py": 2966.2}, {"loc_id": 1511, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 468.4, "z": 5439.9, "px": 2127.9, "py": 2976.4}, {"loc_id": 1512, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -5952.6, "z": 4789.5, "px": 1032.1, "py": 2865.4}, {"loc_id": 1513, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -7151.3, "z": 2549.4, "px": 827.5, "py": 2483.1}, {"loc_id": 1514, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2828.7, "z": -4755.5, "px": 2530.8, "py": 1236.4}, {"loc_id": 1515, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 849.3, "z": 427.5, "px": 2192.9, "py": 2121.0}, {"loc_id": 1516, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -6737.1, "z": 392.6, "px": 898.2, "py": 2115.0}, {"loc_id": 1517, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -3527.8, "z": 4662.4, "px": 1445.9, "py": 2843.7}, {"loc_id": 1518, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -4115.6, "z": -238.4, "px": 1345.6, "py": 2007.3}, {"loc_id": 1519, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 494.6, "z": 4944.6, "px": 2132.4, "py": 2891.9}, {"loc_id": 1520, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 0.9, "z": -1003.9, "px": 2048.2, "py": 1876.7}, {"loc_id": 1521, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -8973.1, "z": 3434.0, "px": 516.6, "py": 2634.1}, {"loc_id": 1522, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 842.3, "z": 267.6, "px": 2191.8, "py": 2093.7}, {"loc_id": 1523, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -2288.5, "z": 4566.0, "px": 1657.4, "py": 2827.3}, {"loc_id": 1524, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -5652.1, "z": -1781.6, "px": 1083.4, "py": 1743.9}, {"loc_id": 1525, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 8575.5, "z": -1841.9, "px": 3511.6, "py": 1733.6}, {"loc_id": 1526, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 596.9, "z": 5506.6, "px": 2149.9, "py": 2987.8}, {"loc_id": 1527, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2033.5, "z": -785.8, "px": 2395.1, "py": 1913.9}, {"loc_id": 1528, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 5441.0, "z": -1068.6, "px": 2976.6, "py": 1865.6}, {"loc_id": 1529, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 8657.7, "z": -2113.8, "px": 3525.6, "py": 1687.2}, {"loc_id": 1530, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -8247.8, "z": -1137.3, "px": 640.4, "py": 1853.9}, {"loc_id": 1531, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -3636.3, "z": 4271.1, "px": 1427.4, "py": 2776.9}, {"loc_id": 1532, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 3243.5, "z": -4802.5, "px": 2601.6, "py": 1228.4}, {"loc_id": 1533, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -6583.4, "z": 3759.5, "px": 924.4, "py": 2689.6}, {"loc_id": 1534, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -7153.9, "z": -4877.7, "px": 827.1, "py": 1215.5}, {"loc_id": 1535, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -1287.1, "z": -1474.8, "px": 1828.3, "py": 1796.3}, {"loc_id": 1536, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 4526.2, "z": -5203.4, "px": 2820.5, "py": 1160.0}, {"loc_id": 1537, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 8639.5, "z": 72.3, "px": 3522.5, "py": 2060.3}, {"loc_id": 1538, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -4785.4, "z": 5570.7, "px": 1231.3, "py": 2998.7}, {"loc_id": 1539, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1729.9, "z": -6419.5, "px": 2343.2, "py": 952.4}, {"loc_id": 1540, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1748.1, "z": -1067.3, "px": 2346.3, "py": 1865.8}, {"loc_id": 1541, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -945.2, "z": 200.5, "px": 1886.7, "py": 2082.2}, {"loc_id": 1542, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -4213.1, "z": -6449.6, "px": 1329.0, "py": 947.3}, {"loc_id": 1543, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -958.5, "z": 439.3, "px": 1884.4, "py": 2123.0}, {"loc_id": 1544, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 3529.4, "z": 3794.0, "px": 2650.4, "py": 2695.5}, {"loc_id": 1545, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 8059.1, "z": 149.6, "px": 3423.4, "py": 2073.5}, {"loc_id": 1546, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -7475.0, "z": 4286.2, "px": 772.3, "py": 2779.5}, {"loc_id": 1547, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 718.8, "z": 340.9, "px": 2170.7, "py": 2106.2}, {"loc_id": 1548, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -1206.9, "z": -1323.9, "px": 1842.0, "py": 1822.1}, {"loc_id": 1549, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -3434.9, "z": -647.5, "px": 1461.8, "py": 1937.5}, {"loc_id": 1550, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -5512.7, "z": -1795.6, "px": 1107.2, "py": 1741.6}, {"loc_id": 1551, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 8695.9, "z": -1738.1, "px": 3532.1, "py": 1751.4}, {"loc_id": 1552, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 63.2, "z": -4330.2, "px": 2058.8, "py": 1309.0}, {"loc_id": 1553, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -771.1, "z": -4.5, "px": 1916.4, "py": 2047.2}, {"loc_id": 1554, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 202.6, "z": -4332.6, "px": 2082.6, "py": 1308.6}, {"loc_id": 1555, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1386.1, "z": -2540.9, "px": 2284.6, "py": 1614.4}, {"loc_id": 1556, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 8747.0, "z": -3908.4, "px": 3540.8, "py": 1381.0}, {"loc_id": 1557, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -6037.5, "z": 1469.6, "px": 1017.6, "py": 2298.8}, {"loc_id": 1558, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 8183.3, "z": 57.3, "px": 3444.6, "py": 2057.8}, {"loc_id": 1559, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 4362.3, "z": 6733.0, "px": 2792.5, "py": 3197.1}, {"loc_id": 1560, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -1795.1, "z": -4139.4, "px": 1741.6, "py": 1341.5}, {"loc_id": 1561, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -5753.6, "z": 4593.5, "px": 1066.1, "py": 2832.0}, {"loc_id": 1562, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -8496.5, "z": -2125.5, "px": 597.9, "py": 1685.2}, {"loc_id": 1563, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1929.5, "z": 6525.0, "px": 2377.3, "py": 3161.6}, {"loc_id": 1564, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 4429.1, "z": 6848.9, "px": 2803.9, "py": 3216.9}, {"loc_id": 1565, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -5614.0, "z": 4726.4, "px": 1089.9, "py": 2854.6}, {"loc_id": 1566, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -3066.0, "z": 6768.3, "px": 1524.7, "py": 3203.1}, {"loc_id": 1567, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -3891.5, "z": -635.5, "px": 1383.9, "py": 1939.5}, {"loc_id": 1568, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -8260.8, "z": -1748.5, "px": 638.2, "py": 1749.6}, {"loc_id": 1569, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -6677.2, "z": 3860.9, "px": 908.4, "py": 2706.9}, {"loc_id": 1570, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -9711.5, "z": 565.9, "px": 390.6, "py": 2144.6}, {"loc_id": 1571, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 3456.0, "z": 3652.0, "px": 2637.8, "py": 2671.3}, {"loc_id": 1572, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 3722.4, "z": 3435.5, "px": 2683.3, "py": 2634.3}, {"loc_id": 1573, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -1109.9, "z": -1233.0, "px": 1858.6, "py": 1837.6}, {"loc_id": 1574, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -2120.0, "z": 816.6, "px": 1686.2, "py": 2187.4}, {"loc_id": 1575, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1030.4, "z": -5258.0, "px": 2223.9, "py": 1150.6}, {"loc_id": 1576, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -814.8, "z": 555.8, "px": 1908.9, "py": 2142.9}, {"loc_id": 1577, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2986.6, "z": -2259.8, "px": 2557.7, "py": 1662.3}, {"loc_id": 1578, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1041.8, "z": 5615.2, "px": 2225.8, "py": 3006.3}, {"loc_id": 1579, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -4682.7, "z": 5425.4, "px": 1248.8, "py": 2973.9}, {"loc_id": 1580, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1086.8, "z": 5482.4, "px": 2233.5, "py": 2983.7}, {"loc_id": 1581, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -2564.2, "z": -271.2, "px": 1610.4, "py": 2001.7}, {"loc_id": 1582, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 5127.2, "z": -2260.3, "px": 2923.0, "py": 1662.2}, {"loc_id": 1583, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 5423.8, "z": 557.6, "px": 2973.7, "py": 2143.2}, {"loc_id": 1584, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 3696.2, "z": 3717.6, "px": 2678.8, "py": 2682.5}, {"loc_id": 1585, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1708.3, "z": -900.7, "px": 2339.5, "py": 1894.3}, {"loc_id": 1586, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 3795.9, "z": 3798.0, "px": 2695.8, "py": 2696.2}, {"loc_id": 1587, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -9228.2, "z": 3477.1, "px": 473.1, "py": 2641.4}, {"loc_id": 1588, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -6721.0, "z": 3696.2, "px": 900.9, "py": 2678.8}, {"loc_id": 1589, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 251.0, "z": -1103.8, "px": 2090.8, "py": 1859.6}, {"loc_id": 1590, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1143.3, "z": 5699.0, "px": 2243.1, "py": 3020.6}, {"loc_id": 1591, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1836.7, "z": -1333.7, "px": 2361.5, "py": 1820.4}, {"loc_id": 1592, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -4033.9, "z": -6330.9, "px": 1359.5, "py": 967.5}, {"loc_id": 1593, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1786.9, "z": -4395.5, "px": 2353.0, "py": 1297.8}, {"loc_id": 1594, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -7983.6, "z": 446.7, "px": 685.5, "py": 2124.2}, {"loc_id": 1595, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 4875.6, "z": 191.6, "px": 2880.1, "py": 2080.7}, {"loc_id": 1596, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 8440.8, "z": 108.3, "px": 3488.6, "py": 2066.5}, {"loc_id": 1597, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 6712.4, "z": 4807.3, "px": 3193.6, "py": 2868.4}, {"loc_id": 1598, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -9864.9, "z": -140.2, "px": 364.4, "py": 2024.1}, {"loc_id": 1599, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 4289.8, "z": -1023.6, "px": 2780.1, "py": 1873.3}, {"loc_id": 1600, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -4240.1, "z": -189.5, "px": 1324.4, "py": 2015.7}, {"loc_id": 1601, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -1108.0, "z": -1004.2, "px": 1858.9, "py": 1876.6}, {"loc_id": 1602, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2605.1, "z": -4463.7, "px": 2492.6, "py": 1286.2}, {"loc_id": 1603, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1038.9, "z": -5717.7, "px": 2225.3, "py": 1072.2}, {"loc_id": 1604, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 4266.9, "z": -253.3, "px": 2776.2, "py": 2004.8}, {"loc_id": 1605, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -5636.1, "z": -5037.9, "px": 1086.1, "py": 1188.2}, {"loc_id": 1606, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -9096.9, "z": 3270.5, "px": 495.5, "py": 2606.2}, {"loc_id": 1607, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1717.2, "z": -753.2, "px": 2341.1, "py": 1919.5}, {"loc_id": 1608, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1834.7, "z": -4656.8, "px": 2361.1, "py": 1253.2}, {"loc_id": 1609, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 4416.2, "z": -316.4, "px": 2801.7, "py": 1994.0}, {"loc_id": 1610, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 4495.5, "z": -451.2, "px": 2815.2, "py": 1971.0}, {"loc_id": 1611, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2704.3, "z": 319.7, "px": 2509.5, "py": 2102.6}, {"loc_id": 1612, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 9416.3, "z": 200.4, "px": 3655.0, "py": 2082.2}, {"loc_id": 1613, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1872.6, "z": -786.8, "px": 2367.6, "py": 1913.7}, {"loc_id": 1614, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2573.0, "z": 5198.5, "px": 2487.1, "py": 2935.2}, {"loc_id": 1615, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2193.0, "z": -4484.3, "px": 2422.3, "py": 1282.7}, {"loc_id": 1616, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -4650.1, "z": 5582.8, "px": 1254.4, "py": 3000.8}, {"loc_id": 1617, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 4367.3, "z": -491.4, "px": 2793.4, "py": 1964.1}, {"loc_id": 1618, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -1008.8, "z": 315.9, "px": 1875.8, "py": 2101.9}, {"loc_id": 1619, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 7822.8, "z": -2940.1, "px": 3383.1, "py": 1546.2}, {"loc_id": 1620, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -3442.3, "z": 4495.5, "px": 1460.5, "py": 2815.2}, {"loc_id": 1621, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 7668.3, "z": -2990.2, "px": 3356.7, "py": 1537.7}, {"loc_id": 1622, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 3333.3, "z": -2438.3, "px": 2616.9, "py": 1631.9}, {"loc_id": 1623, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -271.6, "z": 698.5, "px": 2001.6, "py": 2167.2}, {"loc_id": 1624, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -3772.5, "z": 7103.7, "px": 1404.2, "py": 3260.4}, {"loc_id": 1625, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 8431.2, "z": -2179.7, "px": 3486.9, "py": 1676.0}, {"loc_id": 1626, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -7153.2, "z": 180.3, "px": 827.2, "py": 2078.8}, {"loc_id": 1627, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2442.2, "z": 4978.9, "px": 2464.8, "py": 2897.7}, {"loc_id": 1628, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 1096.8, "z": -5371.8, "px": 2235.2, "py": 1131.2}, {"loc_id": 1629, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": -7357.3, "z": -1725.7, "px": 792.4, "py": 1753.5}, {"loc_id": 1630, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 5.1, "z": -4529.3, "px": 2048.9, "py": 1275.0}, {"loc_id": 1631, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 4165.9, "z": -341.1, "px": 2759.0, "py": 1989.8}, {"loc_id": 1632, "loc_name": "Greydwarf_camp1", "item": "AreaSpawner: Greydwarf[1-3] Greydwarf_Elite[1-3] Greydwarf_Shaman[1-3] (respawn every 10 seconds)", "count": 1, "x": 2233.5, "z": -1726.7, "px": 2429.2, "py": 1753.3}, {"loc_id": 1658, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2418.6, "z": -1020.3, "px": 1635.2, "py": 1873.9}, {"loc_id": 1658, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2418.6, "z": -1020.3, "px": 1635.2, "py": 1873.9}, {"loc_id": 1659, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4792.5, "z": -557.2, "px": 2865.9, "py": 1952.9}, {"loc_id": 1659, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 4792.5, "z": -557.2, "px": 2865.9, "py": 1952.9}, {"loc_id": 1660, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2748.3, "z": -1677.2, "px": 1579.0, "py": 1761.8}, {"loc_id": 1661, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3708.8, "z": 646.0, "px": 2681.0, "py": 2158.3}, {"loc_id": 1662, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -115.6, "z": 2608.7, "px": 2028.3, "py": 2493.2}, {"loc_id": 1662, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -115.6, "z": 2608.7, "px": 2028.3, "py": 2493.2}, {"loc_id": 1663, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2299.0, "z": 4862.5, "px": 1655.6, "py": 2877.9}, {"loc_id": 1664, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4799.3, "z": -641.5, "px": 2867.1, "py": 1938.5}, {"loc_id": 1664, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 4799.3, "z": -641.5, "px": 2867.1, "py": 1938.5}, {"loc_id": 1665, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4873.3, "z": -699.1, "px": 2879.7, "py": 1928.7}, {"loc_id": 1666, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2741.9, "z": -5184.0, "px": 1580.0, "py": 1163.3}, {"loc_id": 1667, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -75.0, "z": 2489.1, "px": 2035.2, "py": 2472.8}, {"loc_id": 1667, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -75.0, "z": 2489.1, "px": 2035.2, "py": 2472.8}, {"loc_id": 1668, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4365.9, "z": 465.4, "px": 1302.9, "py": 2127.4}, {"loc_id": 1669, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2668.6, "z": -1744.6, "px": 1592.6, "py": 1750.3}, {"loc_id": 1669, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2668.6, "z": -1744.6, "px": 1592.6, "py": 1750.3}, {"loc_id": 1670, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2702.6, "z": 3721.0, "px": 2509.2, "py": 2683.1}, {"loc_id": 1671, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2040.3, "z": 4681.5, "px": 1699.8, "py": 2847.0}, {"loc_id": 1671, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2040.3, "z": 4681.5, "px": 1699.8, "py": 2847.0}, {"loc_id": 1672, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -273.6, "z": 2629.0, "px": 2001.3, "py": 2496.7}, {"loc_id": 1673, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2668.3, "z": -5041.3, "px": 1592.6, "py": 1187.6}, {"loc_id": 1674, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5259.1, "z": 1611.1, "px": 1150.4, "py": 2323.0}, {"loc_id": 1674, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -5259.1, "z": 1611.1, "px": 1150.4, "py": 2323.0}, {"loc_id": 1675, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2361.0, "z": -1081.3, "px": 1645.1, "py": 1863.5}, {"loc_id": 1675, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2361.0, "z": -1081.3, "px": 1645.1, "py": 1863.5}, {"loc_id": 1676, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -3786.0, "z": -4273.8, "px": 1401.9, "py": 1318.6}, {"loc_id": 1677, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1335.3, "z": 2194.0, "px": 2275.9, "py": 2422.4}, {"loc_id": 1678, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5247.9, "z": 1419.0, "px": 1152.4, "py": 2290.2}, {"loc_id": 1679, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1731.6, "z": 4274.7, "px": 2343.5, "py": 2777.5}, {"loc_id": 1680, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2159.5, "z": 330.7, "px": 2416.6, "py": 2104.4}, {"loc_id": 1681, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -1013.0, "z": -3659.8, "px": 1875.1, "py": 1423.4}, {"loc_id": 1682, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2417.2, "z": 66.5, "px": 2460.5, "py": 2059.3}, {"loc_id": 1682, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 2417.2, "z": 66.5, "px": 2460.5, "py": 2059.3}, {"loc_id": 1683, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2483.2, "z": 4944.5, "px": 1624.2, "py": 2891.9}, {"loc_id": 1683, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2483.2, "z": 4944.5, "px": 1624.2, "py": 2891.9}, {"loc_id": 1684, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1589.9, "z": 2055.2, "px": 2319.3, "py": 2398.8}, {"loc_id": 1684, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 1589.9, "z": 2055.2, "px": 2319.3, "py": 2398.8}, {"loc_id": 1685, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1209.9, "z": 2240.3, "px": 2254.5, "py": 2430.3}, {"loc_id": 1685, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 1209.9, "z": 2240.3, "px": 2254.5, "py": 2430.3}, {"loc_id": 1686, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -251.1, "z": 2579.7, "px": 2005.1, "py": 2488.3}, {"loc_id": 1686, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -251.1, "z": 2579.7, "px": 2005.1, "py": 2488.3}, {"loc_id": 1687, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4741.4, "z": -838.8, "px": 2857.2, "py": 1904.8}, {"loc_id": 1687, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 4741.4, "z": -838.8, "px": 2857.2, "py": 1904.8}, {"loc_id": 1688, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1223.4, "z": 2047.4, "px": 2256.8, "py": 2397.4}, {"loc_id": 1689, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 521.9, "z": 2556.1, "px": 2137.1, "py": 2484.2}, {"loc_id": 1689, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 521.9, "z": 2556.1, "px": 2137.1, "py": 2484.2}, {"loc_id": 1690, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -620.2, "z": -3567.7, "px": 1942.2, "py": 1439.1}, {"loc_id": 1690, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -620.2, "z": -3567.7, "px": 1942.2, "py": 1439.1}, {"loc_id": 1691, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2427.2, "z": -964.4, "px": 2462.2, "py": 1883.4}, {"loc_id": 1692, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -3089.6, "z": 506.7, "px": 1520.7, "py": 2134.5}, {"loc_id": 1693, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3591.8, "z": 1101.3, "px": 2661.0, "py": 2236.0}, {"loc_id": 1693, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 3591.8, "z": 1101.3, "px": 2661.0, "py": 2236.0}, {"loc_id": 1694, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4291.4, "z": 1204.1, "px": 1315.6, "py": 2253.5}, {"loc_id": 1695, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2351.1, "z": -4163.3, "px": 1646.7, "py": 1337.5}, {"loc_id": 1695, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2351.1, "z": -4163.3, "px": 1646.7, "py": 1337.5}, {"loc_id": 1696, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2930.4, "z": 520.3, "px": 1547.9, "py": 2136.8}, {"loc_id": 1697, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1102.7, "z": 4284.7, "px": 2236.2, "py": 2779.3}, {"loc_id": 1698, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -3001.3, "z": 594.1, "px": 1535.8, "py": 2149.4}, {"loc_id": 1699, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -1042.1, "z": -5684.5, "px": 1870.1, "py": 1077.8}, {"loc_id": 1700, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -1772.1, "z": 4496.9, "px": 1745.6, "py": 2815.5}, {"loc_id": 1701, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2502.6, "z": 5066.8, "px": 1620.9, "py": 2912.7}, {"loc_id": 1701, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2502.6, "z": 5066.8, "px": 1620.9, "py": 2912.7}, {"loc_id": 1702, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4596.2, "z": -772.6, "px": 2832.4, "py": 1916.1}, {"loc_id": 1702, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 4596.2, "z": -772.6, "px": 2832.4, "py": 1916.1}, {"loc_id": 1703, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3130.5, "z": -4281.1, "px": 2582.3, "py": 1317.4}, {"loc_id": 1703, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 3130.5, "z": -4281.1, "px": 2582.3, "py": 1317.4}, {"loc_id": 1704, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2423.1, "z": -5316.5, "px": 2461.5, "py": 1140.7}, {"loc_id": 1705, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3334.1, "z": 4748.9, "px": 2617.0, "py": 2858.5}, {"loc_id": 1706, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4553.0, "z": -3346.0, "px": 2825.0, "py": 1476.9}, {"loc_id": 1706, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 4553.0, "z": -3346.0, "px": 2825.0, "py": 1476.9}, {"loc_id": 1707, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1269.2, "z": 2160.5, "px": 2264.6, "py": 2416.7}, {"loc_id": 1708, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -365.4, "z": 2612.5, "px": 1985.6, "py": 2493.9}, {"loc_id": 1709, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5047.4, "z": 1420.4, "px": 1186.6, "py": 2290.4}, {"loc_id": 1709, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -5047.4, "z": 1420.4, "px": 1186.6, "py": 2290.4}, {"loc_id": 1710, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4559.7, "z": -3018.5, "px": 2826.2, "py": 1532.8}, {"loc_id": 1710, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 4559.7, "z": -3018.5, "px": 2826.2, "py": 1532.8}, {"loc_id": 1711, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -1040.8, "z": -5576.9, "px": 1870.4, "py": 1096.2}, {"loc_id": 1712, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4973.6, "z": 1294.3, "px": 1199.2, "py": 2268.9}, {"loc_id": 1712, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -4973.6, "z": 1294.3, "px": 1199.2, "py": 2268.9}, {"loc_id": 1713, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3823.7, "z": 698.2, "px": 2700.6, "py": 2167.2}, {"loc_id": 1713, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 3823.7, "z": 698.2, "px": 2700.6, "py": 2167.2}, {"loc_id": 1714, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1484.4, "z": 2301.3, "px": 2301.3, "py": 2440.8}, {"loc_id": 1715, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3633.1, "z": 968.2, "px": 2668.0, "py": 2213.2}, {"loc_id": 1715, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 3633.1, "z": 968.2, "px": 2668.0, "py": 2213.2}, {"loc_id": 1716, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -568.2, "z": -3539.7, "px": 1951.0, "py": 1443.9}, {"loc_id": 1717, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3661.1, "z": 768.6, "px": 2672.8, "py": 2179.2}, {"loc_id": 1718, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3692.8, "z": 755.7, "px": 2678.2, "py": 2177.0}, {"loc_id": 1719, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3630.4, "z": 901.6, "px": 2667.6, "py": 2201.9}, {"loc_id": 1720, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2381.5, "z": -5365.0, "px": 2454.4, "py": 1132.4}, {"loc_id": 1720, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 2381.5, "z": -5365.0, "px": 2454.4, "py": 1132.4}, {"loc_id": 1721, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1169.0, "z": 4347.1, "px": 2247.5, "py": 2789.9}, {"loc_id": 1721, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 1169.0, "z": 4347.1, "px": 2247.5, "py": 2789.9}, {"loc_id": 1722, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2627.6, "z": -1663.1, "px": 1599.6, "py": 1764.2}, {"loc_id": 1722, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2627.6, "z": -1663.1, "px": 1599.6, "py": 1764.2}, {"loc_id": 1723, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2684.7, "z": -1580.1, "px": 1589.8, "py": 1778.3}, {"loc_id": 1723, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2684.7, "z": -1580.1, "px": 1589.8, "py": 1778.3}, {"loc_id": 1724, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2286.8, "z": -4143.8, "px": 1657.7, "py": 1340.8}, {"loc_id": 1724, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2286.8, "z": -4143.8, "px": 1657.7, "py": 1340.8}, {"loc_id": 1725, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2763.7, "z": -898.4, "px": 1576.3, "py": 1894.7}, {"loc_id": 1726, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -326.2, "z": 2489.5, "px": 1992.3, "py": 2472.9}, {"loc_id": 1727, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -827.5, "z": -3839.3, "px": 1906.8, "py": 1392.8}, {"loc_id": 1727, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -827.5, "z": -3839.3, "px": 1906.8, "py": 1392.8}, {"loc_id": 1728, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2675.8, "z": 3758.2, "px": 2504.7, "py": 2689.4}, {"loc_id": 1729, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5228.5, "z": 1681.9, "px": 1155.7, "py": 2335.0}, {"loc_id": 1730, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4559.3, "z": -3065.5, "px": 2826.1, "py": 1524.8}, {"loc_id": 1730, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 4559.3, "z": -3065.5, "px": 2826.1, "py": 1524.8}, {"loc_id": 1731, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1859.2, "z": 1461.2, "px": 2365.3, "py": 2297.4}, {"loc_id": 1732, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3255.3, "z": -4299.6, "px": 2603.6, "py": 1314.2}, {"loc_id": 1733, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4680.0, "z": -3069.8, "px": 2846.7, "py": 1524.1}, {"loc_id": 1733, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 4680.0, "z": -3069.8, "px": 2846.7, "py": 1524.1}, {"loc_id": 1734, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4485.3, "z": -3155.5, "px": 2813.5, "py": 1509.5}, {"loc_id": 1734, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 4485.3, "z": -3155.5, "px": 2813.5, "py": 1509.5}, {"loc_id": 1735, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2624.4, "z": -5139.3, "px": 1600.1, "py": 1170.9}, {"loc_id": 1736, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2579.4, "z": -595.9, "px": 2488.2, "py": 1946.3}, {"loc_id": 1736, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 2579.4, "z": -595.9, "px": 2488.2, "py": 1946.3}, {"loc_id": 1737, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4908.1, "z": 1278.7, "px": 1210.4, "py": 2266.2}, {"loc_id": 1738, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5298.6, "z": 1659.3, "px": 1143.7, "py": 2331.2}, {"loc_id": 1739, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2304.3, "z": 4811.7, "px": 1654.7, "py": 2869.2}, {"loc_id": 1739, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2304.3, "z": 4811.7, "px": 1654.7, "py": 2869.2}, {"loc_id": 1740, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2683.6, "z": -1645.2, "px": 1590.0, "py": 1767.2}, {"loc_id": 1740, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2683.6, "z": -1645.2, "px": 1590.0, "py": 1767.2}, {"loc_id": 1741, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4423.2, "z": 3653.0, "px": 1293.1, "py": 2671.4}, {"loc_id": 1742, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1745.9, "z": 4338.6, "px": 2346.0, "py": 2788.5}, {"loc_id": 1742, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 1745.9, "z": 4338.6, "px": 2346.0, "py": 2788.5}, {"loc_id": 1743, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5319.1, "z": 1585.8, "px": 1140.2, "py": 2318.6}, {"loc_id": 1743, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -5319.1, "z": 1585.8, "px": 1140.2, "py": 2318.6}, {"loc_id": 1744, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -205.6, "z": 2549.9, "px": 2012.9, "py": 2483.2}, {"loc_id": 1744, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -205.6, "z": 2549.9, "px": 2012.9, "py": 2483.2}, {"loc_id": 1745, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2368.6, "z": -1024.8, "px": 2452.2, "py": 1873.1}, {"loc_id": 1745, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 2368.6, "z": -1024.8, "px": 2452.2, "py": 1873.1}, {"loc_id": 1746, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1410.3, "z": 2167.6, "px": 2288.7, "py": 2417.9}, {"loc_id": 1747, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -3139.0, "z": 454.5, "px": 1512.3, "py": 2125.6}, {"loc_id": 1748, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4397.8, "z": -3054.5, "px": 2798.6, "py": 1526.7}, {"loc_id": 1748, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 4397.8, "z": -3054.5, "px": 2798.6, "py": 1526.7}, {"loc_id": 1749, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -3601.9, "z": 3196.6, "px": 1433.3, "py": 2593.6}, {"loc_id": 1749, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -3601.9, "z": 3196.6, "px": 1433.3, "py": 2593.6}, {"loc_id": 1750, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1401.1, "z": 2113.5, "px": 2287.1, "py": 2408.7}, {"loc_id": 1751, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -3533.3, "z": 3320.8, "px": 1445.0, "py": 2614.7}, {"loc_id": 1751, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -3533.3, "z": 3320.8, "px": 1445.0, "py": 2614.7}, {"loc_id": 1752, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4663.3, "z": -718.2, "px": 2843.9, "py": 1925.4}, {"loc_id": 1753, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4332.2, "z": 3631.2, "px": 1308.6, "py": 2667.7}, {"loc_id": 1754, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2002.9, "z": 4554.2, "px": 1706.2, "py": 2825.3}, {"loc_id": 1754, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2002.9, "z": 4554.2, "px": 1706.2, "py": 2825.3}, {"loc_id": 1755, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3264.1, "z": -4348.3, "px": 2605.1, "py": 1305.9}, {"loc_id": 1756, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2234.1, "z": -4173.1, "px": 1666.7, "py": 1335.8}, {"loc_id": 1756, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2234.1, "z": -4173.1, "px": 1666.7, "py": 1335.8}, {"loc_id": 1757, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -209.5, "z": 2743.0, "px": 2012.2, "py": 2516.1}, {"loc_id": 1757, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -209.5, "z": 2743.0, "px": 2012.2, "py": 2516.1}, {"loc_id": 1758, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5166.4, "z": 1525.6, "px": 1166.3, "py": 2308.4}, {"loc_id": 1759, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2186.2, "z": -4300.3, "px": 2421.1, "py": 1314.1}, {"loc_id": 1759, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 2186.2, "z": -4300.3, "px": 2421.1, "py": 1314.1}, {"loc_id": 1760, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2565.5, "z": 5103.5, "px": 1610.2, "py": 2919.0}, {"loc_id": 1760, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2565.5, "z": 5103.5, "px": 1610.2, "py": 2919.0}, {"loc_id": 1761, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4878.7, "z": 1292.3, "px": 1215.4, "py": 2268.6}, {"loc_id": 1762, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2173.2, "z": 243.8, "px": 2418.9, "py": 2089.6}, {"loc_id": 1763, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2246.0, "z": -4285.3, "px": 2431.3, "py": 1316.6}, {"loc_id": 1764, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5369.6, "z": 1778.1, "px": 1131.6, "py": 2351.5}, {"loc_id": 1765, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -565.1, "z": -3907.4, "px": 1951.6, "py": 1381.1}, {"loc_id": 1766, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -648.3, "z": -3902.6, "px": 1937.4, "py": 1382.0}, {"loc_id": 1767, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -1859.1, "z": 4485.7, "px": 1730.7, "py": 2813.6}, {"loc_id": 1768, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3821.8, "z": 773.9, "px": 2700.3, "py": 2180.1}, {"loc_id": 1768, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 3821.8, "z": 773.9, "px": 2700.3, "py": 2180.1}, {"loc_id": 1769, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5195.5, "z": -688.7, "px": 1161.3, "py": 1930.5}, {"loc_id": 1770, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2992.3, "z": 523.5, "px": 1537.3, "py": 2137.3}, {"loc_id": 1771, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2570.5, "z": -5197.0, "px": 1609.3, "py": 1161.0}, {"loc_id": 1771, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2570.5, "z": -5197.0, "px": 1609.3, "py": 1161.0}, {"loc_id": 1772, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2419.0, "z": -5387.2, "px": 2460.8, "py": 1128.6}, {"loc_id": 1772, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 2419.0, "z": -5387.2, "px": 2460.8, "py": 1128.6}, {"loc_id": 1773, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2759.0, "z": 3693.7, "px": 2518.9, "py": 2678.4}, {"loc_id": 1774, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4787.3, "z": -834.8, "px": 2865.0, "py": 1905.5}, {"loc_id": 1775, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3768.6, "z": 759.1, "px": 2691.2, "py": 2177.6}, {"loc_id": 1776, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4461.0, "z": 3580.3, "px": 1286.7, "py": 2659.0}, {"loc_id": 1776, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -4461.0, "z": 3580.3, "px": 1286.7, "py": 2659.0}, {"loc_id": 1777, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2420.4, "z": 4806.0, "px": 1634.9, "py": 2868.2}, {"loc_id": 1778, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4993.3, "z": 1393.9, "px": 1195.8, "py": 2285.9}, {"loc_id": 1778, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -4993.3, "z": 1393.9, "px": 1195.8, "py": 2285.9}, {"loc_id": 1779, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2675.9, "z": -1777.6, "px": 1591.3, "py": 1744.6}, {"loc_id": 1779, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2675.9, "z": -1777.6, "px": 1591.3, "py": 1744.6}, {"loc_id": 1780, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5587.2, "z": 2001.8, "px": 1094.5, "py": 2389.6}, {"loc_id": 1780, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -5587.2, "z": 2001.8, "px": 1094.5, "py": 2389.6}, {"loc_id": 1781, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2573.3, "z": -71.0, "px": 2487.2, "py": 2035.9}, {"loc_id": 1781, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 2573.3, "z": -71.0, "px": 2487.2, "py": 2035.9}, {"loc_id": 1782, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2561.8, "z": -5132.3, "px": 1610.8, "py": 1172.1}, {"loc_id": 1782, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2561.8, "z": -5132.3, "px": 1610.8, "py": 1172.1}, {"loc_id": 1783, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1004.3, "z": 4341.3, "px": 2219.4, "py": 2788.9}, {"loc_id": 1784, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2636.1, "z": -1739.6, "px": 1598.1, "py": 1751.1}, {"loc_id": 1784, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2636.1, "z": -1739.6, "px": 1598.1, "py": 1751.1}, {"loc_id": 1785, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4747.3, "z": -639.6, "px": 2858.2, "py": 1938.8}, {"loc_id": 1785, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 4747.3, "z": -639.6, "px": 2858.2, "py": 1938.8}, {"loc_id": 1786, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5296.1, "z": 1554.4, "px": 1144.1, "py": 2313.3}, {"loc_id": 1787, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1225.7, "z": 2165.7, "px": 2257.2, "py": 2417.6}, {"loc_id": 1788, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5331.3, "z": 1456.0, "px": 1138.1, "py": 2296.5}, {"loc_id": 1789, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -3077.0, "z": 451.7, "px": 1522.9, "py": 2125.1}, {"loc_id": 1790, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1362.6, "z": 2052.5, "px": 2280.6, "py": 2398.3}, {"loc_id": 1791, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -1863.4, "z": 4544.3, "px": 1730.0, "py": 2823.6}, {"loc_id": 1791, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -1863.4, "z": 4544.3, "px": 1730.0, "py": 2823.6}, {"loc_id": 1792, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1143.7, "z": -3596.6, "px": 2243.2, "py": 1434.2}, {"loc_id": 1792, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 1143.7, "z": -3596.6, "px": 2243.2, "py": 1434.2}, {"loc_id": 1793, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4554.9, "z": -3207.7, "px": 2825.4, "py": 1500.6}, {"loc_id": 1793, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 4554.9, "z": -3207.7, "px": 2825.4, "py": 1500.6}, {"loc_id": 1794, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1341.4, "z": 1995.2, "px": 2276.9, "py": 2388.5}, {"loc_id": 1795, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -1099.5, "z": -5642.0, "px": 1860.4, "py": 1085.1}, {"loc_id": 1796, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2605.3, "z": -57.2, "px": 2492.6, "py": 2038.2}, {"loc_id": 1796, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 2605.3, "z": -57.2, "px": 2492.6, "py": 2038.2}, {"loc_id": 1797, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2551.0, "z": -881.7, "px": 1612.6, "py": 1897.5}, {"loc_id": 1798, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2364.2, "z": -4088.0, "px": 1644.5, "py": 1350.3}, {"loc_id": 1799, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5330.4, "z": 1743.5, "px": 1138.3, "py": 2345.6}, {"loc_id": 1799, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -5330.4, "z": 1743.5, "px": 1138.3, "py": 2345.6}, {"loc_id": 1800, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1530.8, "z": 1996.4, "px": 2309.3, "py": 2388.7}, {"loc_id": 1800, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 1530.8, "z": 1996.4, "px": 2309.3, "py": 2388.7}, {"loc_id": 1801, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4619.7, "z": -3135.8, "px": 2836.4, "py": 1512.8}, {"loc_id": 1801, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 4619.7, "z": -3135.8, "px": 2836.4, "py": 1512.8}, {"loc_id": 1802, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4875.1, "z": -3344.9, "px": 1216.0, "py": 1477.1}, {"loc_id": 1803, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1423.7, "z": 2296.2, "px": 2291.0, "py": 2439.9}, {"loc_id": 1804, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -401.8, "z": 2478.6, "px": 1979.4, "py": 2471.0}, {"loc_id": 1805, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4400.7, "z": -2994.8, "px": 2799.1, "py": 1536.9}, {"loc_id": 1806, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2641.3, "z": 3891.3, "px": 2498.8, "py": 2712.1}, {"loc_id": 1807, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2757.9, "z": -972.8, "px": 1577.3, "py": 1882.0}, {"loc_id": 1808, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1788.9, "z": 4340.6, "px": 2353.3, "py": 2788.8}, {"loc_id": 1808, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 1788.9, "z": 4340.6, "px": 2353.3, "py": 2788.8}, {"loc_id": 1809, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4204.6, "z": 505.5, "px": 1330.4, "py": 2134.3}, {"loc_id": 1809, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -4204.6, "z": 505.5, "px": 1330.4, "py": 2134.3}, {"loc_id": 1810, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5382.2, "z": 1657.0, "px": 1129.4, "py": 2330.8}, {"loc_id": 1811, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2639.3, "z": -5169.9, "px": 1597.6, "py": 1165.7}, {"loc_id": 1811, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2639.3, "z": -5169.9, "px": 1597.6, "py": 1165.7}, {"loc_id": 1812, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4171.9, "z": 3715.3, "px": 1336.0, "py": 2682.1}, {"loc_id": 1812, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -4171.9, "z": 3715.3, "px": 1336.0, "py": 2682.1}, {"loc_id": 1813, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4672.4, "z": -3131.9, "px": 2845.4, "py": 1513.5}, {"loc_id": 1814, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4278.1, "z": 372.2, "px": 1317.9, "py": 2111.5}, {"loc_id": 1814, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -4278.1, "z": 372.2, "px": 1317.9, "py": 2111.5}, {"loc_id": 1815, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2576.3, "z": 5042.5, "px": 1608.3, "py": 2908.6}, {"loc_id": 1815, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2576.3, "z": 5042.5, "px": 1608.3, "py": 2908.6}, {"loc_id": 1816, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -318.7, "z": 2612.7, "px": 1993.6, "py": 2493.9}, {"loc_id": 1817, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1470.3, "z": 2057.4, "px": 2298.9, "py": 2399.1}, {"loc_id": 1818, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -914.0, "z": -3834.0, "px": 1892.0, "py": 1393.7}, {"loc_id": 1818, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -914.0, "z": -3834.0, "px": 1892.0, "py": 1393.7}, {"loc_id": 1819, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 248.1, "z": 4304.2, "px": 2090.3, "py": 2782.6}, {"loc_id": 1820, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2797.3, "z": -1721.5, "px": 1570.6, "py": 1754.2}, {"loc_id": 1820, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2797.3, "z": -1721.5, "px": 1570.6, "py": 1754.2}, {"loc_id": 1821, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -125.3, "z": 2682.6, "px": 2026.6, "py": 2505.8}, {"loc_id": 1821, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -125.3, "z": 2682.6, "px": 2026.6, "py": 2505.8}, {"loc_id": 1822, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 256.6, "z": 4347.4, "px": 2091.8, "py": 2790.0}, {"loc_id": 1823, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4619.8, "z": -717.4, "px": 2836.4, "py": 1925.6}, {"loc_id": 1824, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4465.4, "z": -2896.3, "px": 2810.1, "py": 1553.7}, {"loc_id": 1824, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 4465.4, "z": -2896.3, "px": 2810.1, "py": 1553.7}, {"loc_id": 1825, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -947.5, "z": -3654.0, "px": 1886.3, "py": 1424.4}, {"loc_id": 1826, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -828.2, "z": -3696.8, "px": 1906.7, "py": 1417.1}, {"loc_id": 1826, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -828.2, "z": -3696.8, "px": 1906.7, "py": 1417.1}, {"loc_id": 1827, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3721.4, "z": 891.2, "px": 2683.1, "py": 2200.1}, {"loc_id": 1828, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -3526.9, "z": 198.0, "px": 1446.1, "py": 2081.8}, {"loc_id": 1828, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -3526.9, "z": 198.0, "px": 1446.1, "py": 2081.8}, {"loc_id": 1829, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -3019.6, "z": 462.1, "px": 1532.7, "py": 2126.9}, {"loc_id": 1830, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -775.4, "z": -3782.9, "px": 1915.7, "py": 1402.4}, {"loc_id": 1831, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2365.8, "z": 339.3, "px": 2451.8, "py": 2105.9}, {"loc_id": 1831, "loc_name": "Grave1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 2365.8, "z": 339.3, "px": 2451.8, "py": 2105.9}, {"loc_id": 1832, "loc_name": "Grave1", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5259.1, "z": 1531.8, "px": 1150.4, "py": 2309.4}, {"loc_id": 1833, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -303.6, "z": 2554.8, "px": 1996.2, "py": 2484.0}, {"loc_id": 1833, "loc_name": "SwampRuin1", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -303.6, "z": 2554.8, "px": 1996.2, "py": 2484.0}, {"loc_id": 1834, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 3628.1, "z": 833.7, "px": 2667.2, "py": 2190.3}, {"loc_id": 1834, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 3628.1, "z": 833.7, "px": 2667.2, "py": 2190.3}, {"loc_id": 1835, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 1360.9, "z": 2236.5, "px": 2280.3, "py": 2429.7}, {"loc_id": 1835, "loc_name": "SwampRuin1", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 1360.9, "z": 2236.5, "px": 2280.3, "py": 2429.7}, {"loc_id": 1835, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr", "count": 1, "x": 1360.9, "z": 2236.5, "px": 2280.3, "py": 2429.7}, {"loc_id": 1836, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 564.0, "z": 2616.5, "px": 2144.3, "py": 2494.5}, {"loc_id": 1837, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -877.0, "z": -3781.3, "px": 1898.3, "py": 1402.7}, {"loc_id": 1837, "loc_name": "SwampRuin1", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -877.0, "z": -3781.3, "px": 1898.3, "py": 1402.7}, {"loc_id": 1837, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr", "count": 1, "x": -877.0, "z": -3781.3, "px": 1898.3, "py": 1402.7}, {"loc_id": 1838, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 2684.8, "z": 3922.2, "px": 2506.2, "py": 2717.4}, {"loc_id": 1838, "loc_name": "SwampRuin1", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 2684.8, "z": 3922.2, "px": 2506.2, "py": 2717.4}, {"loc_id": 1838, "loc_name": "SwampRuin1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 2684.8, "z": 3922.2, "px": 2506.2, "py": 2717.4}, {"loc_id": 1839, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -4364.9, "z": 498.0, "px": 1303.1, "py": 2133.0}, {"loc_id": 1839, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -4364.9, "z": 498.0, "px": 1303.1, "py": 2133.0}, {"loc_id": 1839, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr", "count": 1, "x": -4364.9, "z": 498.0, "px": 1303.1, "py": 2133.0}, {"loc_id": 1840, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -1966.2, "z": 4613.2, "px": 1712.4, "py": 2835.3}, {"loc_id": 1840, "loc_name": "SwampRuin1", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -1966.2, "z": 4613.2, "px": 1712.4, "py": 2835.3}, {"loc_id": 1841, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -3197.4, "z": 322.8, "px": 1502.3, "py": 2103.1}, {"loc_id": 1841, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -3197.4, "z": 322.8, "px": 1502.3, "py": 2103.1}, {"loc_id": 1841, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr", "count": 1, "x": -3197.4, "z": 322.8, "px": 1502.3, "py": 2103.1}, {"loc_id": 1842, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 70.8, "z": 2575.0, "px": 2060.1, "py": 2487.5}, {"loc_id": 1842, "loc_name": "SwampRuin1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 70.8, "z": 2575.0, "px": 2060.1, "py": 2487.5}, {"loc_id": 1843, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 3327.9, "z": -4268.4, "px": 2616.0, "py": 1319.5}, {"loc_id": 1843, "loc_name": "SwampRuin1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 3327.9, "z": -4268.4, "px": 2616.0, "py": 1319.5}, {"loc_id": 1844, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -5426.7, "z": 1840.8, "px": 1121.8, "py": 2362.2}, {"loc_id": 1844, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr", "count": 1, "x": -5426.7, "z": 1840.8, "px": 1121.8, "py": 2362.2}, {"loc_id": 1845, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 1548.7, "z": 2051.7, "px": 2312.3, "py": 2398.2}, {"loc_id": 1845, "loc_name": "SwampRuin1", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 1548.7, "z": 2051.7, "px": 2312.3, "py": 2398.2}, {"loc_id": 1845, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr", "count": 1, "x": 1548.7, "z": 2051.7, "px": 2312.3, "py": 2398.2}, {"loc_id": 1846, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 3839.3, "z": 4473.5, "px": 2703.2, "py": 2811.5}, {"loc_id": 1846, "loc_name": "SwampRuin1", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 3839.3, "z": 4473.5, "px": 2703.2, "py": 2811.5}, {"loc_id": 1846, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 3839.3, "z": 4473.5, "px": 2703.2, "py": 2811.5}, {"loc_id": 1847, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -5101.0, "z": 1424.7, "px": 1177.4, "py": 2291.1}, {"loc_id": 1847, "loc_name": "SwampRuin1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -5101.0, "z": 1424.7, "px": 1177.4, "py": 2291.1}, {"loc_id": 1847, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr", "count": 1, "x": -5101.0, "z": 1424.7, "px": 1177.4, "py": 2291.1}, {"loc_id": 1848, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 958.0, "z": 4297.7, "px": 2211.5, "py": 2781.5}, {"loc_id": 1848, "loc_name": "SwampRuin1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 958.0, "z": 4297.7, "px": 2211.5, "py": 2781.5}, {"loc_id": 1848, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr", "count": 1, "x": 958.0, "z": 4297.7, "px": 2211.5, "py": 2781.5}, {"loc_id": 1849, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -2357.8, "z": 4942.8, "px": 1645.6, "py": 2891.6}, {"loc_id": 1849, "loc_name": "SwampRuin1", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2357.8, "z": 4942.8, "px": 1645.6, "py": 2891.6}, {"loc_id": 1850, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 4730.2, "z": -559.6, "px": 2855.3, "py": 1952.5}, {"loc_id": 1850, "loc_name": "SwampRuin1", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 4730.2, "z": -559.6, "px": 2855.3, "py": 1952.5}, {"loc_id": 1850, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr", "count": 1, "x": 4730.2, "z": -559.6, "px": 2855.3, "py": 1952.5}, {"loc_id": 1851, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -2496.2, "z": -966.6, "px": 1622.0, "py": 1883.0}, {"loc_id": 1851, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -2496.2, "z": -966.6, "px": 1622.0, "py": 1883.0}, {"loc_id": 1852, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 1013.4, "z": -3722.0, "px": 2221.0, "py": 1412.8}, {"loc_id": 1852, "loc_name": "SwampRuin1", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 1013.4, "z": -3722.0, "px": 2221.0, "py": 1412.8}, {"loc_id": 1852, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 1013.4, "z": -3722.0, "px": 2221.0, "py": 1412.8}, {"loc_id": 1853, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -4414.0, "z": 1337.4, "px": 1294.7, "py": 2276.2}, {"loc_id": 1853, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr", "count": 1, "x": -4414.0, "z": 1337.4, "px": 1294.7, "py": 2276.2}, {"loc_id": 1854, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 4484.4, "z": -3085.6, "px": 2813.3, "py": 1521.4}, {"loc_id": 1854, "loc_name": "SwampRuin1", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 4484.4, "z": -3085.6, "px": 2813.3, "py": 1521.4}, {"loc_id": 1854, "loc_name": "SwampRuin1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 4484.4, "z": -3085.6, "px": 2813.3, "py": 1521.4}, {"loc_id": 1855, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 1649.7, "z": 4423.6, "px": 2329.5, "py": 2803.0}, {"loc_id": 1855, "loc_name": "SwampRuin1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 1649.7, "z": 4423.6, "px": 2329.5, "py": 2803.0}, {"loc_id": 1856, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 2171.5, "z": 389.7, "px": 2418.6, "py": 2114.5}, {"loc_id": 1857, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 3791.6, "z": 626.3, "px": 2695.1, "py": 2154.9}, {"loc_id": 1857, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr", "count": 1, "x": 3791.6, "z": 626.3, "px": 2695.1, "py": 2154.9}, {"loc_id": 1858, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 4160.6, "z": 455.9, "px": 2758.1, "py": 2125.8}, {"loc_id": 1858, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr", "count": 1, "x": 4160.6, "z": 455.9, "px": 2758.1, "py": 2125.8}, {"loc_id": 1859, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -3721.2, "z": 179.2, "px": 1412.9, "py": 2078.6}, {"loc_id": 1859, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr", "count": 1, "x": -3721.2, "z": 179.2, "px": 1412.9, "py": 2078.6}, {"loc_id": 1860, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -1153.0, "z": -3506.9, "px": 1851.2, "py": 1449.5}, {"loc_id": 1860, "loc_name": "SwampRuin1", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -1153.0, "z": -3506.9, "px": 1851.2, "py": 1449.5}, {"loc_id": 1860, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -1153.0, "z": -3506.9, "px": 1851.2, "py": 1449.5}, {"loc_id": 1861, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 2616.1, "z": 3445.4, "px": 2494.5, "py": 2636.0}, {"loc_id": 1861, "loc_name": "SwampRuin1", "item": "SpawnOnce: Draugr", "count": 1, "x": 2616.1, "z": 3445.4, "px": 2494.5, "py": 2636.0}, {"loc_id": 1862, "loc_name": "SwampRuin1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 2416.2, "z": 144.5, "px": 2460.4, "py": 2072.7}, {"loc_id": 1862, "loc_name": "SwampRuin1", "item": "Container: TreasureChest_swamp", "count": 1, "x": 2416.2, "z": 144.5, "px": 2460.4, "py": 2072.7}, {"loc_id": 1863, "loc_name": "SwampRuin2", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -5129.9, "z": -705.2, "px": 1172.5, "py": 1927.6}, {"loc_id": 1864, "loc_name": "SwampRuin2", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -3702.0, "z": -4177.2, "px": 1416.2, "py": 1335.1}, {"loc_id": 1864, "loc_name": "SwampRuin2", "item": "Container: TreasureChest_swamp", "count": 1, "x": -3702.0, "z": -4177.2, "px": 1416.2, "py": 1335.1}, {"loc_id": 1864, "loc_name": "SwampRuin2", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -3702.0, "z": -4177.2, "px": 1416.2, "py": 1335.1}, {"loc_id": 1864, "loc_name": "SwampRuin2", "item": "SpawnOnce: Draugr", "count": 1, "x": -3702.0, "z": -4177.2, "px": 1416.2, "py": 1335.1}, {"loc_id": 1865, "loc_name": "SwampRuin2", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -4309.1, "z": 3707.6, "px": 1312.6, "py": 2680.8}, {"loc_id": 1865, "loc_name": "SwampRuin2", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -4309.1, "z": 3707.6, "px": 1312.6, "py": 2680.8}, {"loc_id": 1865, "loc_name": "SwampRuin2", "item": "Container: TreasureChest_swamp", "count": 1, "x": -4309.1, "z": 3707.6, "px": 1312.6, "py": 2680.8}, {"loc_id": 1865, "loc_name": "SwampRuin2", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -4309.1, "z": 3707.6, "px": 1312.6, "py": 2680.8}, {"loc_id": 1865, "loc_name": "SwampRuin2", "item": "SpawnOnce: Draugr", "count": 1, "x": -4309.1, "z": 3707.6, "px": 1312.6, "py": 2680.8}, {"loc_id": 1866, "loc_name": "SwampRuin2", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -619.2, "z": -3973.9, "px": 1942.3, "py": 1369.8}, {"loc_id": 1866, "loc_name": "SwampRuin2", "item": "Container: TreasureChest_swamp", "count": 1, "x": -619.2, "z": -3973.9, "px": 1942.3, "py": 1369.8}, {"loc_id": 1867, "loc_name": "SwampRuin2", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -2643.4, "z": -5036.9, "px": 1596.9, "py": 1188.4}, {"loc_id": 1867, "loc_name": "SwampRuin2", "item": "Container: TreasureChest_swamp", "count": 1, "x": -2643.4, "z": -5036.9, "px": 1596.9, "py": 1188.4}, {"loc_id": 1867, "loc_name": "SwampRuin2", "item": "SpawnOnce: Draugr", "count": 1, "x": -2643.4, "z": -5036.9, "px": 1596.9, "py": 1188.4}, {"loc_id": 1868, "loc_name": "SwampRuin2", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -2258.7, "z": -4229.6, "px": 1662.5, "py": 1326.1}, {"loc_id": 1868, "loc_name": "SwampRuin2", "item": "SpawnOnce: Draugr", "count": 1, "x": -2258.7, "z": -4229.6, "px": 1662.5, "py": 1326.1}, {"loc_id": 1869, "loc_name": "SwampRuin2", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 2226.7, "z": 4307.4, "px": 2428.0, "py": 2783.1}, {"loc_id": 1869, "loc_name": "SwampRuin2", "item": "Container: TreasureChest_swamp", "count": 1, "x": 2226.7, "z": 4307.4, "px": 2428.0, "py": 2783.1}, {"loc_id": 1869, "loc_name": "SwampRuin2", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 2226.7, "z": 4307.4, "px": 2428.0, "py": 2783.1}, {"loc_id": 1870, "loc_name": "SwampRuin2", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 2362.8, "z": -1100.9, "px": 2451.3, "py": 1860.1}, {"loc_id": 1870, "loc_name": "SwampRuin2", "item": "SpawnOnce: Draugr", "count": 1, "x": 2362.8, "z": -1100.9, "px": 2451.3, "py": 1860.1}, {"loc_id": 1871, "loc_name": "SwampRuin2", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -1410.3, "z": 3499.3, "px": 1807.3, "py": 2645.2}, {"loc_id": 1871, "loc_name": "SwampRuin2", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -1410.3, "z": 3499.3, "px": 1807.3, "py": 2645.2}, {"loc_id": 1871, "loc_name": "SwampRuin2", "item": "Container: TreasureChest_swamp", "count": 1, "x": -1410.3, "z": 3499.3, "px": 1807.3, "py": 2645.2}, {"loc_id": 1871, "loc_name": "SwampRuin2", "item": "SpawnOnce: Draugr", "count": 1, "x": -1410.3, "z": 3499.3, "px": 1807.3, "py": 2645.2}, {"loc_id": 1872, "loc_name": "SwampRuin2", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -2639.1, "z": -1607.5, "px": 1597.6, "py": 1773.7}, {"loc_id": 1873, "loc_name": "SwampRuin2", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -3599.9, "z": 3146.8, "px": 1433.6, "py": 2585.1}, {"loc_id": 1873, "loc_name": "SwampRuin2", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": -3599.9, "z": 3146.8, "px": 1433.6, "py": 2585.1}, {"loc_id": 1873, "loc_name": "SwampRuin2", "item": "SpawnOnce: Draugr", "count": 1, "x": -3599.9, "z": 3146.8, "px": 1433.6, "py": 2585.1}, {"loc_id": 1874, "loc_name": "SwampRuin2", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 4866.8, "z": -783.7, "px": 2878.6, "py": 1914.2}, {"loc_id": 1874, "loc_name": "SwampRuin2", "item": "Vegvisir: Bonemass ($enemy_bonemass)", "count": 1, "x": 4866.8, "z": -783.7, "px": 2878.6, "py": 1914.2}, {"loc_id": 1875, "loc_name": "SwampRuin2", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 2574.7, "z": -109.9, "px": 2487.4, "py": 2029.2}, {"loc_id": 1875, "loc_name": "SwampRuin2", "item": "SpawnOnce: Draugr", "count": 1, "x": 2574.7, "z": -109.9, "px": 2487.4, "py": 2029.2}, {"loc_id": 1985, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -5749.3, "z": -4995.7, "px": 1066.8, "py": 1195.4}, {"loc_id": 1985, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -5749.3, "z": -4995.7, "px": 1066.8, "py": 1195.4}, {"loc_id": 1985, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5749.3, "z": -4995.7, "px": 1066.8, "py": 1195.4}, {"loc_id": 1985, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -5749.3, "z": -4995.7, "px": 1066.8, "py": 1195.4}, {"loc_id": 1986, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -1784.6, "z": -4355.4, "px": 1743.4, "py": 1304.7}, {"loc_id": 1986, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -1784.6, "z": -4355.4, "px": 1743.4, "py": 1304.7}, {"loc_id": 1988, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -1462.0, "z": -1719.2, "px": 1798.5, "py": 1754.6}, {"loc_id": 1989, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3641.8, "z": 3969.8, "px": 2669.5, "py": 2725.5}, {"loc_id": 1989, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 3641.8, "z": 3969.8, "px": 2669.5, "py": 2725.5}, {"loc_id": 1990, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -9021.5, "z": 3142.1, "px": 508.3, "py": 2584.3}, {"loc_id": 1990, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -9021.5, "z": 3142.1, "px": 508.3, "py": 2584.3}, {"loc_id": 1990, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -9021.5, "z": 3142.1, "px": 508.3, "py": 2584.3}, {"loc_id": 1990, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -9021.5, "z": 3142.1, "px": 508.3, "py": 2584.3}, {"loc_id": 1991, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -1736.3, "z": -4225.4, "px": 1751.7, "py": 1326.9}, {"loc_id": 1991, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -1736.3, "z": -4225.4, "px": 1751.7, "py": 1326.9}, {"loc_id": 1992, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -8265.4, "z": 2494.6, "px": 637.4, "py": 2473.7}, {"loc_id": 1993, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5949.7, "z": 1468.8, "px": 1032.6, "py": 2298.7}, {"loc_id": 1993, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -5949.7, "z": 1468.8, "px": 1032.6, "py": 2298.7}, {"loc_id": 1994, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -5368.1, "z": -1919.7, "px": 1131.8, "py": 1720.4}, {"loc_id": 1995, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 7744.4, "z": -2746.7, "px": 3369.7, "py": 1579.2}, {"loc_id": 1995, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 7744.4, "z": -2746.7, "px": 3369.7, "py": 1579.2}, {"loc_id": 1995, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 7744.4, "z": -2746.7, "px": 3369.7, "py": 1579.2}, {"loc_id": 1995, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 7744.4, "z": -2746.7, "px": 3369.7, "py": 1579.2}, {"loc_id": 1995, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 7744.4, "z": -2746.7, "px": 3369.7, "py": 1579.2}, {"loc_id": 1996, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 8580.9, "z": -1732.6, "px": 3512.5, "py": 1752.3}, {"loc_id": 1996, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 8580.9, "z": -1732.6, "px": 3512.5, "py": 1752.3}, {"loc_id": 1997, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5052.2, "z": 585.3, "px": 1185.8, "py": 2147.9}, {"loc_id": 1997, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -5052.2, "z": 585.3, "px": 1185.8, "py": 2147.9}, {"loc_id": 1997, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -5052.2, "z": 585.3, "px": 1185.8, "py": 2147.9}, {"loc_id": 1998, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": -1158.1, "z": -1210.7, "px": 1850.4, "py": 1841.4}, {"loc_id": 1998, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 1, "x": -1158.1, "z": -1210.7, "px": 1850.4, "py": 1841.4}, {"loc_id": 1999, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 1, "x": -6850.3, "z": 5430.7, "px": 878.9, "py": 2974.8}, {"loc_id": 2000, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 8261.5, "z": -2503.6, "px": 3458.0, "py": 1620.7}, {"loc_id": 2000, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 8261.5, "z": -2503.6, "px": 3458.0, "py": 1620.7}, {"loc_id": 2000, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 8261.5, "z": -2503.6, "px": 3458.0, "py": 1620.7}, {"loc_id": 2002, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 3705.4, "z": 3650.9, "px": 2680.4, "py": 2671.1}, {"loc_id": 2002, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3705.4, "z": 3650.9, "px": 2680.4, "py": 2671.1}, {"loc_id": 2003, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 709.3, "z": 4485.9, "px": 2169.1, "py": 2813.6}, {"loc_id": 2003, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 709.3, "z": 4485.9, "px": 2169.1, "py": 2813.6}, {"loc_id": 2004, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 5893.1, "z": -707.2, "px": 3053.8, "py": 1927.3}, {"loc_id": 2004, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 5893.1, "z": -707.2, "px": 3053.8, "py": 1927.3}, {"loc_id": 2005, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -6785.2, "z": 514.4, "px": 890.0, "py": 2135.8}, {"loc_id": 2006, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3589.3, "z": 3712.8, "px": 2660.6, "py": 2681.7}, {"loc_id": 2008, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 8127.2, "z": -263.8, "px": 3435.0, "py": 2003.0}, {"loc_id": 2008, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 8127.2, "z": -263.8, "px": 3435.0, "py": 2003.0}, {"loc_id": 2009, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -2304.6, "z": -3082.4, "px": 1654.7, "py": 1521.9}, {"loc_id": 2010, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -1345.3, "z": -5450.9, "px": 1818.4, "py": 1117.7}, {"loc_id": 2011, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 5431.7, "z": -900.4, "px": 2975.0, "py": 1894.3}, {"loc_id": 2011, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 5431.7, "z": -900.4, "px": 2975.0, "py": 1894.3}, {"loc_id": 2011, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": 5431.7, "z": -900.4, "px": 2975.0, "py": 1894.3}, {"loc_id": 2012, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2615.5, "z": 5691.7, "px": 2494.4, "py": 3019.4}, {"loc_id": 2014, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 5767.3, "z": 1542.2, "px": 3032.3, "py": 2311.2}, {"loc_id": 2014, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 5767.3, "z": 1542.2, "px": 3032.3, "py": 2311.2}, {"loc_id": 2015, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 4422.3, "z": 6725.0, "px": 2802.7, "py": 3195.7}, {"loc_id": 2015, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": 4422.3, "z": 6725.0, "px": 2802.7, "py": 3195.7}, {"loc_id": 2019, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": 1852.0, "z": 7225.8, "px": 2364.1, "py": 3281.2}, {"loc_id": 2020, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5828.9, "z": 1534.9, "px": 1053.2, "py": 2310.0}, {"loc_id": 2020, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -5828.9, "z": 1534.9, "px": 1053.2, "py": 2310.0}, {"loc_id": 2021, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 1212.3, "z": -5636.2, "px": 2254.9, "py": 1086.1}, {"loc_id": 2021, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1212.3, "z": -5636.2, "px": 2254.9, "py": 1086.1}, {"loc_id": 2022, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -5119.0, "z": 704.2, "px": 1174.4, "py": 2168.2}, {"loc_id": 2022, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -5119.0, "z": 704.2, "px": 1174.4, "py": 2168.2}, {"loc_id": 2022, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -5119.0, "z": 704.2, "px": 1174.4, "py": 2168.2}, {"loc_id": 2023, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -4614.5, "z": 5449.2, "px": 1260.5, "py": 2978.0}, {"loc_id": 2023, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -4614.5, "z": 5449.2, "px": 1260.5, "py": 2978.0}, {"loc_id": 2023, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4614.5, "z": 5449.2, "px": 1260.5, "py": 2978.0}, {"loc_id": 2023, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -4614.5, "z": 5449.2, "px": 1260.5, "py": 2978.0}, {"loc_id": 2023, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -4614.5, "z": 5449.2, "px": 1260.5, "py": 2978.0}, {"loc_id": 2024, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 2300.8, "z": 3847.4, "px": 2440.7, "py": 2704.6}, {"loc_id": 2024, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 2300.8, "z": 3847.4, "px": 2440.7, "py": 2704.6}, {"loc_id": 2024, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 1, "x": 2300.8, "z": 3847.4, "px": 2440.7, "py": 2704.6}, {"loc_id": 2024, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2300.8, "z": 3847.4, "px": 2440.7, "py": 2704.6}, {"loc_id": 2024, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2300.8, "z": 3847.4, "px": 2440.7, "py": 2704.6}, {"loc_id": 2025, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 5246.9, "z": 4990.5, "px": 2943.5, "py": 2899.7}, {"loc_id": 2025, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": 5246.9, "z": 4990.5, "px": 2943.5, "py": 2899.7}, {"loc_id": 2027, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": -1987.5, "z": -5560.2, "px": 1708.8, "py": 1099.1}, {"loc_id": 2027, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -1987.5, "z": -5560.2, "px": 1708.8, "py": 1099.1}, {"loc_id": 2027, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 1, "x": -1987.5, "z": -5560.2, "px": 1708.8, "py": 1099.1}, {"loc_id": 2028, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 9860.3, "z": -1604.7, "px": 3730.8, "py": 1774.1}, {"loc_id": 2028, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": 9860.3, "z": -1604.7, "px": 3730.8, "py": 1774.1}, {"loc_id": 2029, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 1796.7, "z": 7414.9, "px": 2354.6, "py": 3313.5}, {"loc_id": 2030, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -8439.3, "z": -1721.8, "px": 607.7, "py": 1754.1}, {"loc_id": 2030, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 1, "x": -8439.3, "z": -1721.8, "px": 607.7, "py": 1754.1}, {"loc_id": 2030, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -8439.3, "z": -1721.8, "px": 607.7, "py": 1754.1}, {"loc_id": 2031, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -1856.3, "z": -4486.1, "px": 1731.2, "py": 1282.4}, {"loc_id": 2031, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -1856.3, "z": -4486.1, "px": 1731.2, "py": 1282.4}, {"loc_id": 2031, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -1856.3, "z": -4486.1, "px": 1731.2, "py": 1282.4}, {"loc_id": 2032, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -9030.2, "z": 3011.1, "px": 506.8, "py": 2561.9}, {"loc_id": 2032, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -9030.2, "z": 3011.1, "px": 506.8, "py": 2561.9}, {"loc_id": 2033, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 1, "x": -5258.4, "z": 649.0, "px": 1150.6, "py": 2158.8}, {"loc_id": 2034, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -8262.3, "z": 2627.8, "px": 637.9, "py": 2496.5}, {"loc_id": 2034, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -8262.3, "z": 2627.8, "px": 637.9, "py": 2496.5}, {"loc_id": 2034, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -8262.3, "z": 2627.8, "px": 637.9, "py": 2496.5}, {"loc_id": 2035, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": -3390.5, "z": 4170.9, "px": 1469.4, "py": 2759.8}, {"loc_id": 2035, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton", "count": 1, "x": -3390.5, "z": 4170.9, "px": 1469.4, "py": 2759.8}, {"loc_id": 2035, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 1, "x": -3390.5, "z": 4170.9, "px": 1469.4, "py": 2759.8}, {"loc_id": 2036, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -1159.1, "z": -1664.8, "px": 1850.2, "py": 1763.9}, {"loc_id": 2037, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 894.0, "z": 320.1, "px": 2200.6, "py": 2102.6}, {"loc_id": 2038, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2247.9, "z": -886.9, "px": 2431.6, "py": 1896.6}, {"loc_id": 2038, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 1, "x": 2247.9, "z": -886.9, "px": 2431.6, "py": 1896.6}, {"loc_id": 2038, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": 2247.9, "z": -886.9, "px": 2431.6, "py": 1896.6}, {"loc_id": 2039, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -5571.0, "z": -6197.3, "px": 1097.2, "py": 990.3}, {"loc_id": 2039, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5571.0, "z": -6197.3, "px": 1097.2, "py": 990.3}, {"loc_id": 2039, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -5571.0, "z": -6197.3, "px": 1097.2, "py": 990.3}, {"loc_id": 2039, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -5571.0, "z": -6197.3, "px": 1097.2, "py": 990.3}, {"loc_id": 2040, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": 3391.7, "z": 3514.9, "px": 2626.9, "py": 2647.9}, {"loc_id": 2041, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2236.4, "z": 4542.5, "px": 1666.3, "py": 2823.3}, {"loc_id": 2041, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -2236.4, "z": 4542.5, "px": 1666.3, "py": 2823.3}, {"loc_id": 2041, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -2236.4, "z": 4542.5, "px": 1666.3, "py": 2823.3}, {"loc_id": 2042, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 3908.4, "z": 3896.3, "px": 2715.0, "py": 2713.0}, {"loc_id": 2043, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 7367.4, "z": 3701.7, "px": 3305.4, "py": 2679.8}, {"loc_id": 2043, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 7367.4, "z": 3701.7, "px": 3305.4, "py": 2679.8}, {"loc_id": 2044, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 1789.0, "z": -6149.7, "px": 2353.3, "py": 998.5}, {"loc_id": 2044, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1789.0, "z": -6149.7, "px": 2353.3, "py": 998.5}, {"loc_id": 2046, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4928.8, "z": -2241.7, "px": 2889.2, "py": 1665.4}, {"loc_id": 2047, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 2934.8, "z": -2054.4, "px": 2548.9, "py": 1697.4}, {"loc_id": 2048, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 2177.1, "z": -374.6, "px": 2419.6, "py": 1984.1}, {"loc_id": 2048, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2177.1, "z": -374.6, "px": 2419.6, "py": 1984.1}, {"loc_id": 2049, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 832.6, "z": 3465.7, "px": 2190.1, "py": 2639.5}, {"loc_id": 2049, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 832.6, "z": 3465.7, "px": 2190.1, "py": 2639.5}, {"loc_id": 2050, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 1149.0, "z": 5321.2, "px": 2244.1, "py": 2956.2}, {"loc_id": 2051, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5573.1, "z": -5305.9, "px": 1096.9, "py": 1142.5}, {"loc_id": 2051, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": -5573.1, "z": -5305.9, "px": 1096.9, "py": 1142.5}, {"loc_id": 2051, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -5573.1, "z": -5305.9, "px": 1096.9, "py": 1142.5}, {"loc_id": 2052, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -5125.7, "z": 183.2, "px": 1173.2, "py": 2079.3}, {"loc_id": 2053, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 5060.9, "z": -2298.6, "px": 2911.7, "py": 1655.7}, {"loc_id": 2053, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 5060.9, "z": -2298.6, "px": 2911.7, "py": 1655.7}, {"loc_id": 2054, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": -5577.5, "z": -5061.9, "px": 1096.1, "py": 1184.1}, {"loc_id": 2054, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 1, "x": -5577.5, "z": -5061.9, "px": 1096.1, "py": 1184.1}, {"loc_id": 2055, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 769.5, "z": 192.1, "px": 2179.3, "py": 2080.8}, {"loc_id": 2055, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 769.5, "z": 192.1, "px": 2179.3, "py": 2080.8}, {"loc_id": 2055, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 769.5, "z": 192.1, "px": 2179.3, "py": 2080.8}, {"loc_id": 2057, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -9792.4, "z": -119.9, "px": 376.8, "py": 2027.5}, {"loc_id": 2057, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 1, "x": -9792.4, "z": -119.9, "px": 376.8, "py": 2027.5}, {"loc_id": 2057, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -9792.4, "z": -119.9, "px": 376.8, "py": 2027.5}, {"loc_id": 2058, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -1343.6, "z": -1865.0, "px": 1818.7, "py": 1729.7}, {"loc_id": 2058, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -1343.6, "z": -1865.0, "px": 1818.7, "py": 1729.7}, {"loc_id": 2060, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4682.5, "z": -5049.9, "px": 2847.1, "py": 1186.2}, {"loc_id": 2060, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": 4682.5, "z": -5049.9, "px": 2847.1, "py": 1186.2}, {"loc_id": 2061, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -2431.5, "z": 4169.7, "px": 1633.0, "py": 2759.6}, {"loc_id": 2061, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -2431.5, "z": 4169.7, "px": 1633.0, "py": 2759.6}, {"loc_id": 2061, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -2431.5, "z": 4169.7, "px": 1633.0, "py": 2759.6}, {"loc_id": 2062, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -5771.0, "z": -1665.8, "px": 1063.1, "py": 1763.7}, {"loc_id": 2062, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -5771.0, "z": -1665.8, "px": 1063.1, "py": 1763.7}, {"loc_id": 2063, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3071.8, "z": 893.7, "px": 2572.3, "py": 2200.5}, {"loc_id": 2063, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3071.8, "z": 893.7, "px": 2572.3, "py": 2200.5}, {"loc_id": 2063, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": 3071.8, "z": 893.7, "px": 2572.3, "py": 2200.5}, {"loc_id": 2064, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 6654.9, "z": 3129.8, "px": 3183.8, "py": 2582.2}, {"loc_id": 2064, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": 6654.9, "z": 3129.8, "px": 3183.8, "py": 2582.2}, {"loc_id": 2065, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 2569.6, "z": -4599.8, "px": 2486.5, "py": 1263.0}, {"loc_id": 2065, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2569.6, "z": -4599.8, "px": 2486.5, "py": 1263.0}, {"loc_id": 2065, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 2569.6, "z": -4599.8, "px": 2486.5, "py": 1263.0}, {"loc_id": 2066, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 5948.5, "z": 1414.3, "px": 3063.2, "py": 2289.4}, {"loc_id": 2066, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 5948.5, "z": 1414.3, "px": 3063.2, "py": 2289.4}, {"loc_id": 2067, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 8253.5, "z": 198.8, "px": 3456.6, "py": 2081.9}, {"loc_id": 2067, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 8253.5, "z": 198.8, "px": 3456.6, "py": 2081.9}, {"loc_id": 2067, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 8253.5, "z": 198.8, "px": 3456.6, "py": 2081.9}, {"loc_id": 2068, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 7799.0, "z": -261.2, "px": 3379.0, "py": 2003.4}, {"loc_id": 2068, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 7799.0, "z": -261.2, "px": 3379.0, "py": 2003.4}, {"loc_id": 2068, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 7799.0, "z": -261.2, "px": 3379.0, "py": 2003.4}, {"loc_id": 2068, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 7799.0, "z": -261.2, "px": 3379.0, "py": 2003.4}, {"loc_id": 2070, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -4618.1, "z": 5752.9, "px": 1259.8, "py": 3029.8}, {"loc_id": 2070, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -4618.1, "z": 5752.9, "px": 1259.8, "py": 3029.8}, {"loc_id": 2070, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4618.1, "z": 5752.9, "px": 1259.8, "py": 3029.8}, {"loc_id": 2071, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 1793.0, "z": -4478.1, "px": 2354.0, "py": 1283.7}, {"loc_id": 2071, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1793.0, "z": -4478.1, "px": 2354.0, "py": 1283.7}, {"loc_id": 2072, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 7928.0, "z": -2627.6, "px": 3401.0, "py": 1599.6}, {"loc_id": 2072, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": 7928.0, "z": -2627.6, "px": 3401.0, "py": 1599.6}, {"loc_id": 2073, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": 7548.2, "z": -2743.2, "px": 3336.2, "py": 1579.8}, {"loc_id": 2073, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 7548.2, "z": -2743.2, "px": 3336.2, "py": 1579.8}, {"loc_id": 2074, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2555.5, "z": -4361.4, "px": 2484.1, "py": 1303.7}, {"loc_id": 2075, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 508.4, "z": 511.0, "px": 2134.8, "py": 2135.2}, {"loc_id": 2076, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 1978.5, "z": 1274.9, "px": 2385.7, "py": 2265.6}, {"loc_id": 2077, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 2107.7, "z": 1143.7, "px": 2407.7, "py": 2243.2}, {"loc_id": 2078, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 8757.2, "z": -1472.7, "px": 3542.6, "py": 1796.7}, {"loc_id": 2078, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 8757.2, "z": -1472.7, "px": 3542.6, "py": 1796.7}, {"loc_id": 2079, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -5431.8, "z": -6277.2, "px": 1121.0, "py": 976.7}, {"loc_id": 2080, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -381.3, "z": -4345.5, "px": 1982.9, "py": 1306.4}, {"loc_id": 2080, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -381.3, "z": -4345.5, "px": 1982.9, "py": 1306.4}, {"loc_id": 2081, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -9975.8, "z": -134.2, "px": 345.5, "py": 2025.1}, {"loc_id": 2081, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -9975.8, "z": -134.2, "px": 345.5, "py": 2025.1}, {"loc_id": 2082, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -1272.0, "z": -2183.0, "px": 1830.9, "py": 1675.4}, {"loc_id": 2082, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -1272.0, "z": -2183.0, "px": 1830.9, "py": 1675.4}, {"loc_id": 2082, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -1272.0, "z": -2183.0, "px": 1830.9, "py": 1675.4}, {"loc_id": 2083, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -4296.8, "z": -6398.2, "px": 1314.7, "py": 956.0}, {"loc_id": 2084, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4355.4, "z": 1795.5, "px": 1304.7, "py": 2354.4}, {"loc_id": 2084, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -4355.4, "z": 1795.5, "px": 1304.7, "py": 2354.4}, {"loc_id": 2084, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -4355.4, "z": 1795.5, "px": 1304.7, "py": 2354.4}, {"loc_id": 2085, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 761.4, "z": 4665.8, "px": 2177.9, "py": 2844.3}, {"loc_id": 2085, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 761.4, "z": 4665.8, "px": 2177.9, "py": 2844.3}, {"loc_id": 2086, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -2122.5, "z": -3076.8, "px": 1685.8, "py": 1522.9}, {"loc_id": 2088, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2487.2, "z": -6143.3, "px": 1623.5, "py": 999.5}, {"loc_id": 2088, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -2487.2, "z": -6143.3, "px": 1623.5, "py": 999.5}, {"loc_id": 2088, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 1, "x": -2487.2, "z": -6143.3, "px": 1623.5, "py": 999.5}, {"loc_id": 2089, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2170.4, "z": -707.7, "px": 2418.4, "py": 1927.2}, {"loc_id": 2090, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -1801.2, "z": -4735.1, "px": 1740.6, "py": 1239.9}, {"loc_id": 2090, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -1801.2, "z": -4735.1, "px": 1740.6, "py": 1239.9}, {"loc_id": 2091, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -7615.2, "z": -4745.0, "px": 748.3, "py": 1238.2}, {"loc_id": 2091, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -7615.2, "z": -4745.0, "px": 748.3, "py": 1238.2}, {"loc_id": 2091, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -7615.2, "z": -4745.0, "px": 748.3, "py": 1238.2}, {"loc_id": 2092, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": -6474.9, "z": 3722.6, "px": 943.0, "py": 2683.3}, {"loc_id": 2092, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -6474.9, "z": 3722.6, "px": 943.0, "py": 2683.3}, {"loc_id": 2093, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 455.5, "z": 5046.0, "px": 2125.7, "py": 2909.2}, {"loc_id": 2094, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 568.7, "z": 4745.9, "px": 2145.1, "py": 2858.0}, {"loc_id": 2094, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 568.7, "z": 4745.9, "px": 2145.1, "py": 2858.0}, {"loc_id": 2094, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 568.7, "z": 4745.9, "px": 2145.1, "py": 2858.0}, {"loc_id": 2095, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -1910.0, "z": -4163.4, "px": 1722.0, "py": 1337.4}, {"loc_id": 2095, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -1910.0, "z": -4163.4, "px": 1722.0, "py": 1337.4}, {"loc_id": 2095, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -1910.0, "z": -4163.4, "px": 1722.0, "py": 1337.4}, {"loc_id": 2095, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -1910.0, "z": -4163.4, "px": 1722.0, "py": 1337.4}, {"loc_id": 2096, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4747.0, "z": 5697.4, "px": 1237.8, "py": 3020.4}, {"loc_id": 2096, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -4747.0, "z": 5697.4, "px": 1237.8, "py": 3020.4}, {"loc_id": 2096, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -4747.0, "z": 5697.4, "px": 1237.8, "py": 3020.4}, {"loc_id": 2097, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -4027.5, "z": -2360.5, "px": 1360.6, "py": 1645.1}, {"loc_id": 2097, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -4027.5, "z": -2360.5, "px": 1360.6, "py": 1645.1}, {"loc_id": 2098, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 2933.5, "z": -4341.4, "px": 2548.7, "py": 1307.1}, {"loc_id": 2099, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -7287.1, "z": 2560.3, "px": 804.3, "py": 2485.0}, {"loc_id": 2099, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -7287.1, "z": 2560.3, "px": 804.3, "py": 2485.0}, {"loc_id": 2100, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 4230.3, "z": -191.4, "px": 2770.0, "py": 2015.3}, {"loc_id": 2100, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 4230.3, "z": -191.4, "px": 2770.0, "py": 2015.3}, {"loc_id": 2100, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4230.3, "z": -191.4, "px": 2770.0, "py": 2015.3}, {"loc_id": 2100, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 4230.3, "z": -191.4, "px": 2770.0, "py": 2015.3}, {"loc_id": 2100, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": 4230.3, "z": -191.4, "px": 2770.0, "py": 2015.3}, {"loc_id": 2100, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 1, "x": 4230.3, "z": -191.4, "px": 2770.0, "py": 2015.3}, {"loc_id": 2101, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -1158.2, "z": -1530.7, "px": 1850.3, "py": 1786.8}, {"loc_id": 2101, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -1158.2, "z": -1530.7, "px": 1850.3, "py": 1786.8}, {"loc_id": 2102, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -7167.8, "z": 2488.8, "px": 824.7, "py": 2472.8}, {"loc_id": 2103, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3965.6, "z": -382.1, "px": 2724.8, "py": 1982.8}, {"loc_id": 2103, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 3965.6, "z": -382.1, "px": 2724.8, "py": 1982.8}, {"loc_id": 2103, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": 3965.6, "z": -382.1, "px": 2724.8, "py": 1982.8}, {"loc_id": 2104, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 835.6, "z": 4856.2, "px": 2190.6, "py": 2876.8}, {"loc_id": 2104, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 835.6, "z": 4856.2, "px": 2190.6, "py": 2876.8}, {"loc_id": 2105, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 968.4, "z": 5450.5, "px": 2213.3, "py": 2978.2}, {"loc_id": 2106, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 3317.8, "z": -2698.3, "px": 2614.2, "py": 1587.5}, {"loc_id": 2106, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3317.8, "z": -2698.3, "px": 2614.2, "py": 1587.5}, {"loc_id": 2108, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 7680.5, "z": -2887.2, "px": 3358.8, "py": 1555.3}, {"loc_id": 2109, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 4553.1, "z": -5122.9, "px": 2825.1, "py": 1173.7}, {"loc_id": 2110, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -7299.5, "z": -3591.5, "px": 802.2, "py": 1435.1}, {"loc_id": 2110, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -7299.5, "z": -3591.5, "px": 802.2, "py": 1435.1}, {"loc_id": 2112, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": 5188.7, "z": 5240.8, "px": 2933.5, "py": 2942.4}, {"loc_id": 2113, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": 502.9, "z": 377.9, "px": 2133.8, "py": 2112.5}, {"loc_id": 2114, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 8841.5, "z": 123.6, "px": 3556.9, "py": 2069.1}, {"loc_id": 2114, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 8841.5, "z": 123.6, "px": 3556.9, "py": 2069.1}, {"loc_id": 2114, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 8841.5, "z": 123.6, "px": 3556.9, "py": 2069.1}, {"loc_id": 2115, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5826.5, "z": -329.0, "px": 1053.6, "py": 1991.9}, {"loc_id": 2115, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -5826.5, "z": -329.0, "px": 1053.6, "py": 1991.9}, {"loc_id": 2115, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -5826.5, "z": -329.0, "px": 1053.6, "py": 1991.9}, {"loc_id": 2116, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 5760.1, "z": -827.4, "px": 3031.1, "py": 1906.8}, {"loc_id": 2116, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 5760.1, "z": -827.4, "px": 3031.1, "py": 1906.8}, {"loc_id": 2116, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": 5760.1, "z": -827.4, "px": 3031.1, "py": 1906.8}, {"loc_id": 2117, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -1278.8, "z": -2047.9, "px": 1829.8, "py": 1698.5}, {"loc_id": 2117, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -1278.8, "z": -2047.9, "px": 1829.8, "py": 1698.5}, {"loc_id": 2118, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 4092.3, "z": 3912.8, "px": 2746.4, "py": 2715.8}, {"loc_id": 2118, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 4092.3, "z": 3912.8, "px": 2746.4, "py": 2715.8}, {"loc_id": 2119, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 5123.6, "z": 5438.1, "px": 2922.4, "py": 2976.1}, {"loc_id": 2119, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 5123.6, "z": 5438.1, "px": 2922.4, "py": 2976.1}, {"loc_id": 2119, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 5123.6, "z": 5438.1, "px": 2922.4, "py": 2976.1}, {"loc_id": 2120, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 2178.0, "z": 1283.9, "px": 2419.7, "py": 2267.1}, {"loc_id": 2120, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2178.0, "z": 1283.9, "px": 2419.7, "py": 2267.1}, {"loc_id": 2121, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -3338.0, "z": 4485.4, "px": 1478.3, "py": 2813.5}, {"loc_id": 2121, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -3338.0, "z": 4485.4, "px": 1478.3, "py": 2813.5}, {"loc_id": 2122, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 1973.5, "z": 3575.7, "px": 2384.8, "py": 2658.3}, {"loc_id": 2123, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -6721.1, "z": 3657.4, "px": 900.9, "py": 2672.2}, {"loc_id": 2123, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -6721.1, "z": 3657.4, "px": 900.9, "py": 2672.2}, {"loc_id": 2123, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -6721.1, "z": 3657.4, "px": 900.9, "py": 2672.2}, {"loc_id": 2126, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -5059.6, "z": -1797.8, "px": 1184.5, "py": 1741.2}, {"loc_id": 2126, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -5059.6, "z": -1797.8, "px": 1184.5, "py": 1741.2}, {"loc_id": 2127, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 3769.9, "z": 3914.8, "px": 2691.4, "py": 2716.1}, {"loc_id": 2127, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3769.9, "z": 3914.8, "px": 2691.4, "py": 2716.1}, {"loc_id": 2127, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 3769.9, "z": 3914.8, "px": 2691.4, "py": 2716.1}, {"loc_id": 2128, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 5510.8, "z": 456.2, "px": 2988.5, "py": 2125.9}, {"loc_id": 2128, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 5510.8, "z": 456.2, "px": 2988.5, "py": 2125.9}, {"loc_id": 2130, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -1981.4, "z": -5691.3, "px": 1709.8, "py": 1076.7}, {"loc_id": 2131, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3194.2, "z": -2879.3, "px": 2593.1, "py": 1556.6}, {"loc_id": 2131, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 3194.2, "z": -2879.3, "px": 2593.1, "py": 1556.6}, {"loc_id": 2131, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": 3194.2, "z": -2879.3, "px": 2593.1, "py": 1556.6}, {"loc_id": 2132, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 772.8, "z": 4226.6, "px": 2179.9, "py": 2769.3}, {"loc_id": 2132, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 772.8, "z": 4226.6, "px": 2179.9, "py": 2769.3}, {"loc_id": 2133, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": 3722.8, "z": -252.1, "px": 2683.4, "py": 2005.0}, {"loc_id": 2134, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -5754.4, "z": 4490.5, "px": 1065.9, "py": 2814.4}, {"loc_id": 2135, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 8263.2, "z": -2115.4, "px": 3458.3, "py": 1687.0}, {"loc_id": 2136, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2248.8, "z": -1352.8, "px": 2431.8, "py": 1817.1}, {"loc_id": 2137, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 6136.3, "z": -5898.6, "px": 3095.3, "py": 1041.3}, {"loc_id": 2138, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -1608.3, "z": 4729.8, "px": 1773.5, "py": 2855.2}, {"loc_id": 2138, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -1608.3, "z": 4729.8, "px": 1773.5, "py": 2855.2}, {"loc_id": 2138, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -1608.3, "z": 4729.8, "px": 1773.5, "py": 2855.2}, {"loc_id": 2138, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -1608.3, "z": 4729.8, "px": 1773.5, "py": 2855.2}, {"loc_id": 2140, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 643.2, "z": 5308.8, "px": 2157.8, "py": 2954.0}, {"loc_id": 2141, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -1283.3, "z": -1154.5, "px": 1829.0, "py": 1851.0}, {"loc_id": 2141, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -1283.3, "z": -1154.5, "px": 1829.0, "py": 1851.0}, {"loc_id": 2141, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -1283.3, "z": -1154.5, "px": 1829.0, "py": 1851.0}, {"loc_id": 2142, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -3129.8, "z": 4169.0, "px": 1513.8, "py": 2759.5}, {"loc_id": 2142, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -3129.8, "z": 4169.0, "px": 1513.8, "py": 2759.5}, {"loc_id": 2142, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -3129.8, "z": 4169.0, "px": 1513.8, "py": 2759.5}, {"loc_id": 2143, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2561.5, "z": 450.1, "px": 2485.2, "py": 2124.8}, {"loc_id": 2143, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 2561.5, "z": 450.1, "px": 2485.2, "py": 2124.8}, {"loc_id": 2143, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2561.5, "z": 450.1, "px": 2485.2, "py": 2124.8}, {"loc_id": 2144, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -7431.3, "z": -1848.0, "px": 779.7, "py": 1732.6}, {"loc_id": 2144, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -7431.3, "z": -1848.0, "px": 779.7, "py": 1732.6}, {"loc_id": 2145, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 2491.2, "z": 5062.0, "px": 2473.2, "py": 2911.9}, {"loc_id": 2145, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2491.2, "z": 5062.0, "px": 2473.2, "py": 2911.9}, {"loc_id": 2146, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3189.9, "z": -2681.3, "px": 2592.4, "py": 1590.4}, {"loc_id": 2146, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 3189.9, "z": -2681.3, "px": 2592.4, "py": 1590.4}, {"loc_id": 2147, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 442.3, "z": 5504.3, "px": 2123.5, "py": 2987.4}, {"loc_id": 2148, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 7106.3, "z": 1216.9, "px": 3260.8, "py": 2255.7}, {"loc_id": 2150, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -9718.2, "z": 648.1, "px": 389.4, "py": 2158.6}, {"loc_id": 2151, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 7352.5, "z": -3254.6, "px": 3302.8, "py": 1492.5}, {"loc_id": 2151, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 7352.5, "z": -3254.6, "px": 3302.8, "py": 1492.5}, {"loc_id": 2152, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 1094.5, "z": -5131.0, "px": 2234.8, "py": 1172.3}, {"loc_id": 2153, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -834.3, "z": -6600.1, "px": 1905.6, "py": 921.6}, {"loc_id": 2154, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2556.2, "z": 5818.7, "px": 2484.3, "py": 3041.1}, {"loc_id": 2154, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 2556.2, "z": 5818.7, "px": 2484.3, "py": 3041.1}, {"loc_id": 2154, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2556.2, "z": 5818.7, "px": 2484.3, "py": 3041.1}, {"loc_id": 2155, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 2501.3, "z": -3655.8, "px": 2474.9, "py": 1424.1}, {"loc_id": 2155, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 2501.3, "z": -3655.8, "px": 2474.9, "py": 1424.1}, {"loc_id": 2155, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2501.3, "z": -3655.8, "px": 2474.9, "py": 1424.1}, {"loc_id": 2156, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -4855.4, "z": -3010.4, "px": 1219.3, "py": 1534.2}, {"loc_id": 2158, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 8393.8, "z": 2741.1, "px": 3480.5, "py": 2515.8}, {"loc_id": 2159, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -3267.2, "z": 4220.0, "px": 1490.4, "py": 2768.2}, {"loc_id": 2159, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -3267.2, "z": 4220.0, "px": 1490.4, "py": 2768.2}, {"loc_id": 2160, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -5622.7, "z": 4937.3, "px": 1088.4, "py": 2890.6}, {"loc_id": 2160, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 1, "x": -5622.7, "z": 4937.3, "px": 1088.4, "py": 2890.6}, {"loc_id": 2161, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3962.9, "z": 7040.8, "px": 2724.3, "py": 3249.6}, {"loc_id": 2162, "loc_name": "Crypt2", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": 7797.5, "z": -3061.1, "px": 3378.8, "py": 1525.6}, {"loc_id": 2162, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 7797.5, "z": -3061.1, "px": 3378.8, "py": 1525.6}, {"loc_id": 2163, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -8955.2, "z": 3272.0, "px": 519.6, "py": 2606.4}, {"loc_id": 2163, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -8955.2, "z": 3272.0, "px": 519.6, "py": 2606.4}, {"loc_id": 2163, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -8955.2, "z": 3272.0, "px": 519.6, "py": 2606.4}, {"loc_id": 2164, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 644.1, "z": -245.8, "px": 2157.9, "py": 2006.1}, {"loc_id": 2164, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 644.1, "z": -245.8, "px": 2157.9, "py": 2006.1}, {"loc_id": 2165, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 8135.7, "z": 895.5, "px": 3436.5, "py": 2200.8}, {"loc_id": 2165, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 8135.7, "z": 895.5, "px": 3436.5, "py": 2200.8}, {"loc_id": 2168, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -7164.3, "z": -4734.5, "px": 825.3, "py": 1240.0}, {"loc_id": 2168, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -7164.3, "z": -4734.5, "px": 825.3, "py": 1240.0}, {"loc_id": 2169, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -7622.1, "z": 4287.6, "px": 747.2, "py": 2779.8}, {"loc_id": 2169, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -7622.1, "z": 4287.6, "px": 747.2, "py": 2779.8}, {"loc_id": 2170, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 7876.9, "z": -2761.7, "px": 3392.3, "py": 1576.7}, {"loc_id": 2170, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 7876.9, "z": -2761.7, "px": 3392.3, "py": 1576.7}, {"loc_id": 2171, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5879.9, "z": -5111.8, "px": 1044.5, "py": 1175.6}, {"loc_id": 2171, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -5879.9, "z": -5111.8, "px": 1044.5, "py": 1175.6}, {"loc_id": 2172, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 7926.2, "z": -3080.1, "px": 3400.7, "py": 1522.3}, {"loc_id": 2172, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 7926.2, "z": -3080.1, "px": 3400.7, "py": 1522.3}, {"loc_id": 2172, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": 7926.2, "z": -3080.1, "px": 3400.7, "py": 1522.3}, {"loc_id": 2173, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 1034.1, "z": -5498.0, "px": 2224.5, "py": 1109.7}, {"loc_id": 2173, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1034.1, "z": -5498.0, "px": 2224.5, "py": 1109.7}, {"loc_id": 2173, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": 1034.1, "z": -5498.0, "px": 2224.5, "py": 1109.7}, {"loc_id": 2174, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4168.3, "z": -6390.4, "px": 1336.6, "py": 957.4}, {"loc_id": 2174, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -4168.3, "z": -6390.4, "px": 1336.6, "py": 957.4}, {"loc_id": 2174, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -4168.3, "z": -6390.4, "px": 1336.6, "py": 957.4}, {"loc_id": 2174, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -4168.3, "z": -6390.4, "px": 1336.6, "py": 957.4}, {"loc_id": 2175, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 312.2, "z": 5051.0, "px": 2101.3, "py": 2910.0}, {"loc_id": 2176, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -6793.8, "z": 3780.2, "px": 888.5, "py": 2693.2}, {"loc_id": 2176, "loc_name": "Crypt2", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -6793.8, "z": 3780.2, "px": 888.5, "py": 2693.2}, {"loc_id": 2177, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 582.5, "z": 60.8, "px": 2147.4, "py": 2058.4}, {"loc_id": 2177, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": 582.5, "z": 60.8, "px": 2147.4, "py": 2058.4}, {"loc_id": 2178, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 4361.3, "z": -5052.7, "px": 2792.3, "py": 1185.7}, {"loc_id": 2178, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": 4361.3, "z": -5052.7, "px": 2792.3, "py": 1185.7}, {"loc_id": 2179, "loc_name": "Crypt2", "item": "Pickable: SurtlingCore", "count": 1, "x": -824.1, "z": 4866.1, "px": 1907.4, "py": 2878.5}, {"loc_id": 2181, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -9341.1, "z": 3254.4, "px": 453.8, "py": 2603.4}, {"loc_id": 2181, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -9341.1, "z": 3254.4, "px": 453.8, "py": 2603.4}, {"loc_id": 2181, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -9341.1, "z": 3254.4, "px": 453.8, "py": 2603.4}, {"loc_id": 2182, "loc_name": "Crypt2", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -7942.6, "z": 265.7, "px": 692.5, "py": 2093.3}, {"loc_id": 2182, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -7942.6, "z": 265.7, "px": 692.5, "py": 2093.3}, {"loc_id": 2182, "loc_name": "Crypt2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -7942.6, "z": 265.7, "px": 692.5, "py": 2093.3}, {"loc_id": 2183, "loc_name": "Crypt2", "item": "Pickable: BoneFragments", "count": 1, "x": -9269.2, "z": 3385.5, "px": 466.1, "py": 2625.8}, {"loc_id": 2184, "loc_name": "Crypt2", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -5509.5, "z": -1928.1, "px": 1107.7, "py": 1718.9}, {"loc_id": 2184, "loc_name": "Crypt2", "item": "SpawnOnce: Ghost", "count": 1, "x": -5509.5, "z": -1928.1, "px": 1107.7, "py": 1718.9}, {"loc_id": 2185, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2287.6, "z": -4367.3, "px": 2438.4, "py": 1302.6}, {"loc_id": 2185, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2287.6, "z": -4367.3, "px": 2438.4, "py": 1302.6}, {"loc_id": 2186, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2258.0, "z": 12.9, "px": 2433.4, "py": 2050.2}, {"loc_id": 2186, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2258.0, "z": 12.9, "px": 2433.4, "py": 2050.2}, {"loc_id": 2187, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4223.7, "z": -127.5, "px": 1327.2, "py": 2026.2}, {"loc_id": 2187, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -4223.7, "z": -127.5, "px": 1327.2, "py": 2026.2}, {"loc_id": 2188, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4595.8, "z": 5576.1, "px": 1263.7, "py": 2999.7}, {"loc_id": 2188, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -4595.8, "z": 5576.1, "px": 1263.7, "py": 2999.7}, {"loc_id": 2189, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5766.8, "z": 1600.8, "px": 3032.2, "py": 2321.2}, {"loc_id": 2189, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 5766.8, "z": 1600.8, "px": 3032.2, "py": 2321.2}, {"loc_id": 2190, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1164.0, "z": -5620.2, "px": 2246.7, "py": 1088.8}, {"loc_id": 2190, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 1164.0, "z": -5620.2, "px": 2246.7, "py": 1088.8}, {"loc_id": 2191, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7095.2, "z": 2573.7, "px": 837.1, "py": 2487.2}, {"loc_id": 2191, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -7095.2, "z": 2573.7, "px": 837.1, "py": 2487.2}, {"loc_id": 2192, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -8365.3, "z": -1414.7, "px": 620.3, "py": 1806.6}, {"loc_id": 2192, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -8365.3, "z": -1414.7, "px": 620.3, "py": 1806.6}, {"loc_id": 2193, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6861.1, "z": 5377.7, "px": 877.0, "py": 2965.8}, {"loc_id": 2193, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -6861.1, "z": 5377.7, "px": 877.0, "py": 2965.8}, {"loc_id": 2194, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 386.7, "z": 5359.7, "px": 2114.0, "py": 2962.7}, {"loc_id": 2194, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 386.7, "z": 5359.7, "px": 2114.0, "py": 2962.7}, {"loc_id": 2195, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3885.4, "z": -469.0, "px": 1384.9, "py": 1968.0}, {"loc_id": 2195, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -3885.4, "z": -469.0, "px": 1384.9, "py": 1968.0}, {"loc_id": 2196, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2413.7, "z": -6267.1, "px": 1636.1, "py": 978.4}, {"loc_id": 2196, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -2413.7, "z": -6267.1, "px": 1636.1, "py": 978.4}, {"loc_id": 2197, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2453.0, "z": -3574.8, "px": 2466.6, "py": 1437.9}, {"loc_id": 2197, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2453.0, "z": -3574.8, "px": 2466.6, "py": 1437.9}, {"loc_id": 2198, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2925.0, "z": -81.4, "px": 2547.2, "py": 2034.1}, {"loc_id": 2198, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2925.0, "z": -81.4, "px": 2547.2, "py": 2034.1}, {"loc_id": 2199, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1808.2, "z": -4287.3, "px": 2356.6, "py": 1316.3}, {"loc_id": 2199, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 1808.2, "z": -4287.3, "px": 2356.6, "py": 1316.3}, {"loc_id": 2200, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4398.8, "z": 1776.6, "px": 1297.3, "py": 2351.2}, {"loc_id": 2200, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -4398.8, "z": 1776.6, "px": 1297.3, "py": 2351.2}, {"loc_id": 2201, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 879.7, "z": 20.6, "px": 2198.1, "py": 2051.5}, {"loc_id": 2201, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 879.7, "z": 20.6, "px": 2198.1, "py": 2051.5}, {"loc_id": 2202, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2891.3, "z": 436.1, "px": 2541.4, "py": 2122.4}, {"loc_id": 2202, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2891.3, "z": 436.1, "px": 2541.4, "py": 2122.4}, {"loc_id": 2203, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9068.8, "z": 3405.0, "px": 500.3, "py": 2629.1}, {"loc_id": 2203, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -9068.8, "z": 3405.0, "px": 500.3, "py": 2629.1}, {"loc_id": 2204, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5503.0, "z": 4818.3, "px": 1108.8, "py": 2870.3}, {"loc_id": 2204, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -5503.0, "z": 4818.3, "px": 1108.8, "py": 2870.3}, {"loc_id": 2205, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6000.3, "z": 4754.9, "px": 1023.9, "py": 2859.5}, {"loc_id": 2205, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -6000.3, "z": 4754.9, "px": 1023.9, "py": 2859.5}, {"loc_id": 2206, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6198.5, "z": 2240.2, "px": 990.1, "py": 2430.3}, {"loc_id": 2206, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -6198.5, "z": 2240.2, "px": 990.1, "py": 2430.3}, {"loc_id": 2207, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -8273.0, "z": 2580.5, "px": 636.1, "py": 2488.4}, {"loc_id": 2207, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -8273.0, "z": 2580.5, "px": 636.1, "py": 2488.4}, {"loc_id": 2208, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4868.3, "z": -3087.9, "px": 1217.1, "py": 1521.0}, {"loc_id": 2208, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -4868.3, "z": -3087.9, "px": 1217.1, "py": 1521.0}, {"loc_id": 2209, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3389.8, "z": 4590.8, "px": 1469.5, "py": 2831.5}, {"loc_id": 2209, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -3389.8, "z": 4590.8, "px": 1469.5, "py": 2831.5}, {"loc_id": 2210, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6706.6, "z": 5433.8, "px": 903.4, "py": 2975.4}, {"loc_id": 2210, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -6706.6, "z": 5433.8, "px": 903.4, "py": 2975.4}, {"loc_id": 2211, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2040.2, "z": 3821.9, "px": 2396.2, "py": 2700.3}, {"loc_id": 2211, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2040.2, "z": 3821.9, "px": 2396.2, "py": 2700.3}, {"loc_id": 2212, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7122.8, "z": 138.1, "px": 832.4, "py": 2071.6}, {"loc_id": 2212, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -7122.8, "z": 138.1, "px": 832.4, "py": 2071.6}, {"loc_id": 2213, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1393.4, "z": 2678.5, "px": 1810.2, "py": 2505.1}, {"loc_id": 2213, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -1393.4, "z": 2678.5, "px": 1810.2, "py": 2505.1}, {"loc_id": 2214, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3644.5, "z": 7054.6, "px": 1426.0, "py": 3252.0}, {"loc_id": 2214, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -3644.5, "z": 7054.6, "px": 1426.0, "py": 3252.0}, {"loc_id": 2215, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1021.4, "z": 430.9, "px": 1873.7, "py": 2121.5}, {"loc_id": 2215, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -1021.4, "z": 430.9, "px": 1873.7, "py": 2121.5}, {"loc_id": 2216, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4231.9, "z": -6289.4, "px": 1325.8, "py": 974.6}, {"loc_id": 2216, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -4231.9, "z": -6289.4, "px": 1325.8, "py": 974.6}, {"loc_id": 2217, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -452.1, "z": -4340.8, "px": 1970.8, "py": 1307.2}, {"loc_id": 2217, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -452.1, "z": -4340.8, "px": 1970.8, "py": 1307.2}, {"loc_id": 2218, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2239.7, "z": -760.6, "px": 2430.2, "py": 1918.2}, {"loc_id": 2218, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2239.7, "z": -760.6, "px": 2430.2, "py": 1918.2}, {"loc_id": 2219, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2481.0, "z": -3436.3, "px": 2471.4, "py": 1461.5}, {"loc_id": 2219, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2481.0, "z": -3436.3, "px": 2471.4, "py": 1461.5}, {"loc_id": 2220, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8651.0, "z": -3662.4, "px": 3524.4, "py": 1423.0}, {"loc_id": 2220, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 8651.0, "z": -3662.4, "px": 3524.4, "py": 1423.0}, {"loc_id": 2221, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8498.9, "z": -2157.6, "px": 3498.5, "py": 1679.8}, {"loc_id": 2221, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 8498.9, "z": -2157.6, "px": 3498.5, "py": 1679.8}, {"loc_id": 2222, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8564.4, "z": -2117.1, "px": 3509.7, "py": 1686.7}, {"loc_id": 2222, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 8564.4, "z": -2117.1, "px": 3509.7, "py": 1686.7}, {"loc_id": 2223, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1453.1, "z": -2305.6, "px": 2296.0, "py": 1654.5}, {"loc_id": 2223, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 1453.1, "z": -2305.6, "px": 2296.0, "py": 1654.5}, {"loc_id": 2224, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 820.7, "z": 5203.8, "px": 2188.1, "py": 2936.1}, {"loc_id": 2224, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 820.7, "z": 5203.8, "px": 2188.1, "py": 2936.1}, {"loc_id": 2225, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5231.9, "z": -1939.7, "px": 1155.1, "py": 1717.0}, {"loc_id": 2225, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -5231.9, "z": -1939.7, "px": 1155.1, "py": 1717.0}, {"loc_id": 2226, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 6010.9, "z": -5945.2, "px": 3073.9, "py": 1033.4}, {"loc_id": 2226, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 6010.9, "z": -5945.2, "px": 3073.9, "py": 1033.4}, {"loc_id": 2227, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3892.3, "z": -2706.6, "px": 1383.7, "py": 1586.1}, {"loc_id": 2227, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -3892.3, "z": -2706.6, "px": 1383.7, "py": 1586.1}, {"loc_id": 2228, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 399.4, "z": 5517.8, "px": 2116.2, "py": 2989.7}, {"loc_id": 2228, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 399.4, "z": 5517.8, "px": 2116.2, "py": 2989.7}, {"loc_id": 2229, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7929.7, "z": -3148.0, "px": 3401.3, "py": 1510.7}, {"loc_id": 2229, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 7929.7, "z": -3148.0, "px": 3401.3, "py": 1510.7}, {"loc_id": 2230, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3603.2, "z": 7040.5, "px": 1433.1, "py": 3249.6}, {"loc_id": 2230, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -3603.2, "z": 7040.5, "px": 1433.1, "py": 3249.6}, {"loc_id": 2231, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1675.9, "z": -4354.5, "px": 1762.0, "py": 1304.8}, {"loc_id": 2231, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -1675.9, "z": -4354.5, "px": 1762.0, "py": 1304.8}, {"loc_id": 2232, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8828.0, "z": -3733.3, "px": 3554.6, "py": 1410.9}, {"loc_id": 2232, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 8828.0, "z": -3733.3, "px": 3554.6, "py": 1410.9}, {"loc_id": 2233, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7424.1, "z": -1978.3, "px": 781.0, "py": 1710.4}, {"loc_id": 2233, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -7424.1, "z": -1978.3, "px": 781.0, "py": 1710.4}, {"loc_id": 2234, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3277.3, "z": -1849.6, "px": 1488.7, "py": 1732.3}, {"loc_id": 2234, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -3277.3, "z": -1849.6, "px": 1488.7, "py": 1732.3}, {"loc_id": 2235, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2245.2, "z": 4618.7, "px": 1664.8, "py": 2836.3}, {"loc_id": 2235, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -2245.2, "z": 4618.7, "px": 1664.8, "py": 2836.3}, {"loc_id": 2236, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2362.9, "z": 440.7, "px": 2451.3, "py": 2123.2}, {"loc_id": 2236, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2362.9, "z": 440.7, "px": 2451.3, "py": 2123.2}, {"loc_id": 2237, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3512.8, "z": 5323.3, "px": 2647.5, "py": 2956.5}, {"loc_id": 2237, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 3512.8, "z": 5323.3, "px": 2647.5, "py": 2956.5}, {"loc_id": 2238, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5741.8, "z": -899.2, "px": 3027.9, "py": 1894.5}, {"loc_id": 2238, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 5741.8, "z": -899.2, "px": 3027.9, "py": 1894.5}, {"loc_id": 2239, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2190.4, "z": -5582.9, "px": 1674.2, "py": 1095.2}, {"loc_id": 2239, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -2190.4, "z": -5582.9, "px": 1674.2, "py": 1095.2}, {"loc_id": 2240, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5067.1, "z": 4269.4, "px": 2912.8, "py": 2776.6}, {"loc_id": 2240, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 5067.1, "z": 4269.4, "px": 2912.8, "py": 2776.6}, {"loc_id": 2241, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1352.2, "z": 5631.9, "px": 2278.8, "py": 3009.2}, {"loc_id": 2241, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 1352.2, "z": 5631.9, "px": 2278.8, "py": 3009.2}, {"loc_id": 2242, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5169.1, "z": 5752.4, "px": 1165.8, "py": 3029.7}, {"loc_id": 2242, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -5169.1, "z": 5752.4, "px": 1165.8, "py": 3029.7}, {"loc_id": 2243, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3015.4, "z": -4805.7, "px": 2562.6, "py": 1227.8}, {"loc_id": 2243, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 3015.4, "z": -4805.7, "px": 2562.6, "py": 1227.8}, {"loc_id": 2244, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -761.5, "z": 389.2, "px": 1918.0, "py": 2114.4}, {"loc_id": 2244, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -761.5, "z": 389.2, "px": 1918.0, "py": 2114.4}, {"loc_id": 2245, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1923.6, "z": -4738.5, "px": 1719.7, "py": 1239.3}, {"loc_id": 2245, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -1923.6, "z": -4738.5, "px": 1719.7, "py": 1239.3}, {"loc_id": 2246, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7308.1, "z": -3258.5, "px": 3295.2, "py": 1491.9}, {"loc_id": 2246, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 7308.1, "z": -3258.5, "px": 3295.2, "py": 1491.9}, {"loc_id": 2247, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4077.2, "z": 3836.6, "px": 2743.8, "py": 2702.8}, {"loc_id": 2247, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 4077.2, "z": 3836.6, "px": 2743.8, "py": 2702.8}, {"loc_id": 2248, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4355.1, "z": -6448.9, "px": 1304.7, "py": 947.4}, {"loc_id": 2248, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -4355.1, "z": -6448.9, "px": 1304.7, "py": 947.4}, {"loc_id": 2249, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1005.7, "z": 5507.8, "px": 2219.6, "py": 2988.0}, {"loc_id": 2249, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 1005.7, "z": 5507.8, "px": 2219.6, "py": 2988.0}, {"loc_id": 2250, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1014.5, "z": 5419.1, "px": 2221.1, "py": 2972.9}, {"loc_id": 2250, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 1014.5, "z": 5419.1, "px": 2221.1, "py": 2972.9}, {"loc_id": 2251, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8305.9, "z": -3627.3, "px": 3465.5, "py": 1428.9}, {"loc_id": 2251, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 8305.9, "z": -3627.3, "px": 3465.5, "py": 1428.9}, {"loc_id": 2252, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 6005.8, "z": -145.0, "px": 3073.0, "py": 2023.3}, {"loc_id": 2252, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 6005.8, "z": -145.0, "px": 3073.0, "py": 2023.3}, {"loc_id": 2253, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -236.7, "z": 517.1, "px": 2007.6, "py": 2136.3}, {"loc_id": 2253, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -236.7, "z": 517.1, "px": 2007.6, "py": 2136.3}, {"loc_id": 2254, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4914.8, "z": -2181.5, "px": 2886.8, "py": 1675.7}, {"loc_id": 2254, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 4914.8, "z": -2181.5, "px": 2886.8, "py": 1675.7}, {"loc_id": 2255, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7865.4, "z": -2573.3, "px": 3390.4, "py": 1608.8}, {"loc_id": 2255, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 7865.4, "z": -2573.3, "px": 3390.4, "py": 1608.8}, {"loc_id": 2256, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2365.5, "z": -47.5, "px": 2451.7, "py": 2039.9}, {"loc_id": 2256, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2365.5, "z": -47.5, "px": 2451.7, "py": 2039.9}, {"loc_id": 2257, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5702.2, "z": -5075.8, "px": 1074.8, "py": 1181.7}, {"loc_id": 2257, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -5702.2, "z": -5075.8, "px": 1074.8, "py": 1181.7}, {"loc_id": 2258, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 946.8, "z": 319.0, "px": 2209.6, "py": 2102.4}, {"loc_id": 2258, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 946.8, "z": 319.0, "px": 2209.6, "py": 2102.4}, {"loc_id": 2259, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2479.9, "z": -6210.9, "px": 1624.8, "py": 988.0}, {"loc_id": 2259, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -2479.9, "z": -6210.9, "px": 1624.8, "py": 988.0}, {"loc_id": 2260, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7535.1, "z": -4302.2, "px": 3334.0, "py": 1313.8}, {"loc_id": 2260, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 7535.1, "z": -4302.2, "px": 3334.0, "py": 1313.8}, {"loc_id": 2261, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1606.3, "z": -6412.7, "px": 2322.1, "py": 953.6}, {"loc_id": 2261, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 1606.3, "z": -6412.7, "px": 2322.1, "py": 953.6}, {"loc_id": 2262, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5895.5, "z": 1665.2, "px": 1041.8, "py": 2332.2}, {"loc_id": 2262, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -5895.5, "z": 1665.2, "px": 1041.8, "py": 2332.2}, {"loc_id": 2263, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4911.2, "z": -3087.6, "px": 1209.8, "py": 1521.0}, {"loc_id": 2263, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -4911.2, "z": -3087.6, "px": 1209.8, "py": 1521.0}, {"loc_id": 2264, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7864.0, "z": -2439.0, "px": 3390.1, "py": 1631.7}, {"loc_id": 2264, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 7864.0, "z": -2439.0, "px": 3390.1, "py": 1631.7}, {"loc_id": 2265, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -405.0, "z": 506.1, "px": 1978.9, "py": 2134.4}, {"loc_id": 2265, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -405.0, "z": 506.1, "px": 1978.9, "py": 2134.4}, {"loc_id": 2266, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4600.1, "z": 5521.9, "px": 1262.9, "py": 2990.4}, {"loc_id": 2266, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -4600.1, "z": 5521.9, "px": 1262.9, "py": 2990.4}, {"loc_id": 2267, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7235.9, "z": -4627.9, "px": 3282.9, "py": 1258.2}, {"loc_id": 2267, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 7235.9, "z": -4627.9, "px": 3282.9, "py": 1258.2}, {"loc_id": 2268, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3206.9, "z": -2056.3, "px": 1500.7, "py": 1697.1}, {"loc_id": 2268, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -3206.9, "z": -2056.3, "px": 1500.7, "py": 1697.1}, {"loc_id": 2269, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2257.6, "z": 3830.7, "px": 2433.3, "py": 2701.8}, {"loc_id": 2269, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2257.6, "z": 3830.7, "px": 2433.3, "py": 2701.8}, {"loc_id": 2270, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1647.1, "z": -6156.8, "px": 2329.1, "py": 997.2}, {"loc_id": 2270, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 1647.1, "z": -6156.8, "px": 2329.1, "py": 997.2}, {"loc_id": 2271, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -817.4, "z": -6507.6, "px": 1908.5, "py": 937.4}, {"loc_id": 2271, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -817.4, "z": -6507.6, "px": 1908.5, "py": 937.4}, {"loc_id": 2272, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5629.9, "z": -943.4, "px": 3008.8, "py": 1887.0}, {"loc_id": 2272, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 5629.9, "z": -943.4, "px": 3008.8, "py": 1887.0}, {"loc_id": 2273, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7636.7, "z": -4801.8, "px": 744.7, "py": 1228.5}, {"loc_id": 2273, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -7636.7, "z": -4801.8, "px": 744.7, "py": 1228.5}, {"loc_id": 2274, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3794.7, "z": 1134.5, "px": 2695.6, "py": 2241.6}, {"loc_id": 2274, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 3794.7, "z": 1134.5, "px": 2695.6, "py": 2241.6}, {"loc_id": 2275, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3604.0, "z": 132.5, "px": 2663.1, "py": 2070.6}, {"loc_id": 2275, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 3604.0, "z": 132.5, "px": 2663.1, "py": 2070.6}, {"loc_id": 2276, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5251.6, "z": -652.5, "px": 2944.3, "py": 1936.6}, {"loc_id": 2276, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 5251.6, "z": -652.5, "px": 2944.3, "py": 1936.6}, {"loc_id": 2277, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8577.7, "z": -2039.4, "px": 3511.9, "py": 1699.9}, {"loc_id": 2277, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 8577.7, "z": -2039.4, "px": 3511.9, "py": 1699.9}, {"loc_id": 2278, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4660.8, "z": 5717.1, "px": 1252.6, "py": 3023.7}, {"loc_id": 2278, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -4660.8, "z": 5717.1, "px": 1252.6, "py": 3023.7}, {"loc_id": 2279, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8174.4, "z": 321.6, "px": 3443.1, "py": 2102.9}, {"loc_id": 2279, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 8174.4, "z": 321.6, "px": 3443.1, "py": 2102.9}, {"loc_id": 2280, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6771.6, "z": 567.7, "px": 892.3, "py": 2144.9}, {"loc_id": 2280, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -6771.6, "z": 567.7, "px": 892.3, "py": 2144.9}, {"loc_id": 2281, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8690.5, "z": 121.4, "px": 3531.2, "py": 2068.7}, {"loc_id": 2281, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 8690.5, "z": 121.4, "px": 3531.2, "py": 2068.7}, {"loc_id": 2282, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3640.5, "z": 5323.0, "px": 2669.3, "py": 2956.5}, {"loc_id": 2282, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 3640.5, "z": 5323.0, "px": 2669.3, "py": 2956.5}, {"loc_id": 2283, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4410.0, "z": -722.7, "px": 2800.6, "py": 1924.7}, {"loc_id": 2283, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 4410.0, "z": -722.7, "px": 2800.6, "py": 1924.7}, {"loc_id": 2284, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4404.3, "z": -5105.3, "px": 2799.7, "py": 1176.7}, {"loc_id": 2284, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 4404.3, "z": -5105.3, "px": 2799.7, "py": 1176.7}, {"loc_id": 2285, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3576.6, "z": 3908.7, "px": 2658.4, "py": 2715.1}, {"loc_id": 2285, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 3576.6, "z": 3908.7, "px": 2658.4, "py": 2715.1}, {"loc_id": 2286, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -8272.5, "z": 592.0, "px": 636.2, "py": 2149.0}, {"loc_id": 2286, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -8272.5, "z": 592.0, "px": 636.2, "py": 2149.0}, {"loc_id": 2287, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3779.3, "z": 1212.6, "px": 2693.0, "py": 2255.0}, {"loc_id": 2287, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 3779.3, "z": 1212.6, "px": 2693.0, "py": 2255.0}, {"loc_id": 2288, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9514.9, "z": -389.3, "px": 424.1, "py": 1981.6}, {"loc_id": 2288, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -9514.9, "z": -389.3, "px": 424.1, "py": 1981.6}, {"loc_id": 2289, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4146.0, "z": -2363.0, "px": 1340.4, "py": 1644.7}, {"loc_id": 2289, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -4146.0, "z": -2363.0, "px": 1340.4, "py": 1644.7}, {"loc_id": 2290, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3642.2, "z": 6795.4, "px": 1426.4, "py": 3207.7}, {"loc_id": 2290, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -3642.2, "z": 6795.4, "px": 1426.4, "py": 3207.7}, {"loc_id": 2291, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1467.7, "z": -5101.5, "px": 2298.5, "py": 1177.3}, {"loc_id": 2291, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 1467.7, "z": -5101.5, "px": 2298.5, "py": 1177.3}, {"loc_id": 2292, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3860.6, "z": -529.7, "px": 1389.1, "py": 1957.6}, {"loc_id": 2292, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -3860.6, "z": -529.7, "px": 1389.1, "py": 1957.6}, {"loc_id": 2293, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2039.8, "z": -1263.5, "px": 2396.1, "py": 1832.4}, {"loc_id": 2293, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2039.8, "z": -1263.5, "px": 2396.1, "py": 1832.4}, {"loc_id": 2294, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 9614.6, "z": 1354.7, "px": 3688.9, "py": 2279.2}, {"loc_id": 2294, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 9614.6, "z": 1354.7, "px": 3688.9, "py": 2279.2}, {"loc_id": 2295, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7308.2, "z": -4795.5, "px": 800.7, "py": 1229.6}, {"loc_id": 2295, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -7308.2, "z": -4795.5, "px": 800.7, "py": 1229.6}, {"loc_id": 2296, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1616.1, "z": -6449.4, "px": 2323.8, "py": 947.3}, {"loc_id": 2296, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 1616.1, "z": -6449.4, "px": 2323.8, "py": 947.3}, {"loc_id": 2297, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8069.6, "z": -2688.5, "px": 3425.2, "py": 1589.2}, {"loc_id": 2297, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 8069.6, "z": -2688.5, "px": 3425.2, "py": 1589.2}, {"loc_id": 2298, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4031.6, "z": 6917.5, "px": 2736.1, "py": 3228.6}, {"loc_id": 2298, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 4031.6, "z": 6917.5, "px": 2736.1, "py": 3228.6}, {"loc_id": 2299, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4044.5, "z": -258.9, "px": 1357.7, "py": 2003.8}, {"loc_id": 2299, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -4044.5, "z": -258.9, "px": 1357.7, "py": 2003.8}, {"loc_id": 2300, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3663.3, "z": 3719.0, "px": 2673.2, "py": 2682.7}, {"loc_id": 2300, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 3663.3, "z": 3719.0, "px": 2673.2, "py": 2682.7}, {"loc_id": 2301, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 657.3, "z": 246.9, "px": 2160.2, "py": 2090.1}, {"loc_id": 2301, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 657.3, "z": 246.9, "px": 2160.2, "py": 2090.1}, {"loc_id": 2302, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9165.1, "z": 2949.2, "px": 483.8, "py": 2551.3}, {"loc_id": 2302, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -9165.1, "z": 2949.2, "px": 483.8, "py": 2551.3}, {"loc_id": 2303, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7595.4, "z": -2813.8, "px": 3344.3, "py": 1567.8}, {"loc_id": 2303, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 7595.4, "z": -2813.8, "px": 3344.3, "py": 1567.8}, {"loc_id": 2304, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3792.6, "z": 3661.9, "px": 2695.3, "py": 2673.0}, {"loc_id": 2304, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 3792.6, "z": 3661.9, "px": 2695.3, "py": 2673.0}, {"loc_id": 2305, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -702.9, "z": 13.6, "px": 1928.0, "py": 2050.3}, {"loc_id": 2305, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -702.9, "z": 13.6, "px": 1928.0, "py": 2050.3}, {"loc_id": 2306, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5589.2, "z": -832.7, "px": 3001.9, "py": 1905.9}, {"loc_id": 2306, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 5589.2, "z": -832.7, "px": 3001.9, "py": 1905.9}, {"loc_id": 2307, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5135.7, "z": 3194.2, "px": 2924.5, "py": 2593.1}, {"loc_id": 2307, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 5135.7, "z": 3194.2, "px": 2924.5, "py": 2593.1}, {"loc_id": 2308, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5069.7, "z": 3217.8, "px": 2913.2, "py": 2597.2}, {"loc_id": 2308, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 5069.7, "z": 3217.8, "px": 2913.2, "py": 2597.2}, {"loc_id": 2309, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 768.4, "z": 3470.0, "px": 2179.1, "py": 2640.2}, {"loc_id": 2309, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 768.4, "z": 3470.0, "px": 2179.1, "py": 2640.2}, {"loc_id": 2310, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2759.7, "z": -3321.4, "px": 2519.0, "py": 1481.1}, {"loc_id": 2310, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2759.7, "z": -3321.4, "px": 2519.0, "py": 1481.1}, {"loc_id": 2311, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1079.5, "z": 3214.4, "px": 2232.2, "py": 2596.6}, {"loc_id": 2311, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 1079.5, "z": 3214.4, "px": 2232.2, "py": 2596.6}, {"loc_id": 2312, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5703.0, "z": 1040.9, "px": 1074.7, "py": 2225.6}, {"loc_id": 2312, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -5703.0, "z": 1040.9, "px": 1074.7, "py": 2225.6}, {"loc_id": 2313, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 845.0, "z": -80.9, "px": 2192.2, "py": 2034.2}, {"loc_id": 2313, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 845.0, "z": -80.9, "px": 2192.2, "py": 2034.2}, {"loc_id": 2314, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 584.6, "z": 5181.6, "px": 2147.8, "py": 2932.3}, {"loc_id": 2314, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 584.6, "z": 5181.6, "px": 2147.8, "py": 2932.3}, {"loc_id": 2315, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2066.4, "z": -4359.9, "px": 1695.3, "py": 1303.9}, {"loc_id": 2315, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -2066.4, "z": -4359.9, "px": 1695.3, "py": 1303.9}, {"loc_id": 2316, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6639.6, "z": 556.0, "px": 914.8, "py": 2142.9}, {"loc_id": 2316, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -6639.6, "z": 556.0, "px": 914.8, "py": 2142.9}, {"loc_id": 2317, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5315.6, "z": 6336.1, "px": 2955.2, "py": 3129.4}, {"loc_id": 2317, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 5315.6, "z": 6336.1, "px": 2955.2, "py": 3129.4}, {"loc_id": 2318, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1223.4, "z": -1556.4, "px": 1839.2, "py": 1782.4}, {"loc_id": 2318, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -1223.4, "z": -1556.4, "px": 1839.2, "py": 1782.4}, {"loc_id": 2319, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8637.6, "z": -3728.7, "px": 3522.2, "py": 1411.6}, {"loc_id": 2319, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 8637.6, "z": -3728.7, "px": 3522.2, "py": 1411.6}, {"loc_id": 2320, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1539.4, "z": -6258.1, "px": 2310.7, "py": 980.0}, {"loc_id": 2320, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 1539.4, "z": -6258.1, "px": 2310.7, "py": 980.0}, {"loc_id": 2321, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1855.7, "z": -4364.3, "px": 2364.7, "py": 1303.2}, {"loc_id": 2321, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 1855.7, "z": -4364.3, "px": 2364.7, "py": 1303.2}, {"loc_id": 2322, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 700.7, "z": 4590.5, "px": 2167.6, "py": 2831.4}, {"loc_id": 2322, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 700.7, "z": 4590.5, "px": 2167.6, "py": 2831.4}, {"loc_id": 2323, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 911.2, "z": -2235.9, "px": 2203.5, "py": 1666.4}, {"loc_id": 2323, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 911.2, "z": -2235.9, "px": 2203.5, "py": 1666.4}, {"loc_id": 2324, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2745.3, "z": -4847.1, "px": 2516.5, "py": 1220.8}, {"loc_id": 2324, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2745.3, "z": -4847.1, "px": 2516.5, "py": 1220.8}, {"loc_id": 2325, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3315.9, "z": -2644.4, "px": 2613.9, "py": 1596.7}, {"loc_id": 2325, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 3315.9, "z": -2644.4, "px": 2613.9, "py": 1596.7}, {"loc_id": 2326, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3795.7, "z": 3987.7, "px": 2695.8, "py": 2728.6}, {"loc_id": 2326, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 3795.7, "z": 3987.7, "px": 2695.8, "py": 2728.6}, {"loc_id": 2327, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7993.5, "z": -2563.8, "px": 3412.2, "py": 1610.4}, {"loc_id": 2327, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 7993.5, "z": -2563.8, "px": 3412.2, "py": 1610.4}, {"loc_id": 2328, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3153.0, "z": 4214.4, "px": 1509.9, "py": 2767.3}, {"loc_id": 2328, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -3153.0, "z": 4214.4, "px": 1509.9, "py": 2767.3}, {"loc_id": 2329, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6792.2, "z": 5560.4, "px": 888.8, "py": 2997.0}, {"loc_id": 2329, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -6792.2, "z": 5560.4, "px": 888.8, "py": 2997.0}, {"loc_id": 2330, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2219.9, "z": -1089.9, "px": 1669.1, "py": 1862.0}, {"loc_id": 2330, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -2219.9, "z": -1089.9, "px": 1669.1, "py": 1862.0}, {"loc_id": 2331, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1989.7, "z": -760.0, "px": 2387.6, "py": 1918.3}, {"loc_id": 2331, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 1989.7, "z": -760.0, "px": 2387.6, "py": 1918.3}, {"loc_id": 2332, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 400.0, "z": 379.4, "px": 2116.3, "py": 2112.8}, {"loc_id": 2332, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 400.0, "z": 379.4, "px": 2116.3, "py": 2112.8}, {"loc_id": 2333, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3897.6, "z": -323.7, "px": 1382.8, "py": 1992.8}, {"loc_id": 2333, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -3897.6, "z": -323.7, "px": 1382.8, "py": 1992.8}, {"loc_id": 2334, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1106.9, "z": -5299.6, "px": 2236.9, "py": 1143.5}, {"loc_id": 2334, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 1106.9, "z": -5299.6, "px": 2236.9, "py": 1143.5}, {"loc_id": 2335, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2830.0, "z": -4685.6, "px": 2531.0, "py": 1248.3}, {"loc_id": 2335, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2830.0, "z": -4685.6, "px": 2531.0, "py": 1248.3}, {"loc_id": 2336, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2503.1, "z": 4418.3, "px": 1620.8, "py": 2802.1}, {"loc_id": 2336, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -2503.1, "z": 4418.3, "px": 1620.8, "py": 2802.1}, {"loc_id": 2337, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3434.8, "z": 4779.7, "px": 1461.8, "py": 2863.7}, {"loc_id": 2337, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -3434.8, "z": 4779.7, "px": 1461.8, "py": 2863.7}, {"loc_id": 2338, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4853.7, "z": 5389.5, "px": 1219.6, "py": 2967.8}, {"loc_id": 2338, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -4853.7, "z": 5389.5, "px": 1219.6, "py": 2967.8}, {"loc_id": 2339, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 518.2, "z": 5122.6, "px": 2136.4, "py": 2922.3}, {"loc_id": 2339, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 518.2, "z": 5122.6, "px": 2136.4, "py": 2922.3}, {"loc_id": 2340, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 966.8, "z": 3458.3, "px": 2213.0, "py": 2638.2}, {"loc_id": 2340, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 966.8, "z": 3458.3, "px": 2213.0, "py": 2638.2}, {"loc_id": 2341, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1779.9, "z": -5677.3, "px": 1744.2, "py": 1079.1}, {"loc_id": 2341, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -1779.9, "z": -5677.3, "px": 1744.2, "py": 1079.1}, {"loc_id": 2342, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9263.2, "z": -2679.8, "px": 467.1, "py": 1590.6}, {"loc_id": 2342, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -9263.2, "z": -2679.8, "px": 467.1, "py": 1590.6}, {"loc_id": 2343, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3521.4, "z": 3385.7, "px": 2649.0, "py": 2625.8}, {"loc_id": 2343, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 3521.4, "z": 3385.7, "px": 2649.0, "py": 2625.8}, {"loc_id": 2344, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3955.6, "z": 1078.7, "px": 2723.1, "py": 2232.1}, {"loc_id": 2344, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 3955.6, "z": 1078.7, "px": 2723.1, "py": 2232.1}, {"loc_id": 2345, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6863.2, "z": 2092.3, "px": 876.7, "py": 2405.1}, {"loc_id": 2345, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -6863.2, "z": 2092.3, "px": 876.7, "py": 2405.1}, {"loc_id": 2346, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 186.9, "z": -4289.3, "px": 2079.9, "py": 1316.0}, {"loc_id": 2346, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 186.9, "z": -4289.3, "px": 2079.9, "py": 1316.0}, {"loc_id": 2347, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2250.9, "z": 47.1, "px": 2432.2, "py": 2056.0}, {"loc_id": 2347, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2250.9, "z": 47.1, "px": 2432.2, "py": 2056.0}, {"loc_id": 2348, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1866.9, "z": -4473.6, "px": 2366.6, "py": 1284.5}, {"loc_id": 2348, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 1866.9, "z": -4473.6, "px": 2366.6, "py": 1284.5}, {"loc_id": 2349, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5689.9, "z": 4875.7, "px": 1076.9, "py": 2880.1}, {"loc_id": 2349, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -5689.9, "z": 4875.7, "px": 1076.9, "py": 2880.1}, {"loc_id": 2350, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2866.1, "z": -125.1, "px": 2537.1, "py": 2026.6}, {"loc_id": 2350, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2866.1, "z": -125.1, "px": 2537.1, "py": 2026.6}, {"loc_id": 2351, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2052.2, "z": 1470.1, "px": 2398.2, "py": 2298.9}, {"loc_id": 2351, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2052.2, "z": 1470.1, "px": 2398.2, "py": 2298.9}, {"loc_id": 2352, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7164.5, "z": 1223.8, "px": 3270.7, "py": 2256.9}, {"loc_id": 2352, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 7164.5, "z": 1223.8, "px": 3270.7, "py": 2256.9}, {"loc_id": 2353, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2095.5, "z": 516.3, "px": 1690.4, "py": 2136.1}, {"loc_id": 2353, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -2095.5, "z": 516.3, "px": 1690.4, "py": 2136.1}, {"loc_id": 2354, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1939.3, "z": -957.7, "px": 2379.0, "py": 1884.6}, {"loc_id": 2354, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 1939.3, "z": -957.7, "px": 2379.0, "py": 1884.6}, {"loc_id": 2355, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5038.4, "z": -2100.7, "px": 2907.9, "py": 1689.5}, {"loc_id": 2355, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 5038.4, "z": -2100.7, "px": 2907.9, "py": 1689.5}, {"loc_id": 2356, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5100.0, "z": 5298.9, "px": 2918.4, "py": 2952.3}, {"loc_id": 2356, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 5100.0, "z": 5298.9, "px": 2918.4, "py": 2952.3}, {"loc_id": 2357, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5770.2, "z": 4546.8, "px": 1063.2, "py": 2824.0}, {"loc_id": 2357, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -5770.2, "z": 4546.8, "px": 1063.2, "py": 2824.0}, {"loc_id": 2358, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6068.5, "z": 2229.5, "px": 1012.3, "py": 2428.5}, {"loc_id": 2358, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -6068.5, "z": 2229.5, "px": 1012.3, "py": 2428.5}, {"loc_id": 2359, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 891.4, "z": 491.5, "px": 2200.1, "py": 2131.9}, {"loc_id": 2359, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 891.4, "z": 491.5, "px": 2200.1, "py": 2131.9}, {"loc_id": 2360, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9357.7, "z": -2795.6, "px": 451.0, "py": 1570.9}, {"loc_id": 2360, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -9357.7, "z": -2795.6, "px": 451.0, "py": 1570.9}, {"loc_id": 2361, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2706.4, "z": -4626.8, "px": 2509.9, "py": 1258.4}, {"loc_id": 2361, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2706.4, "z": -4626.8, "px": 2509.9, "py": 1258.4}, {"loc_id": 2362, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5063.1, "z": 5318.6, "px": 2912.1, "py": 2955.7}, {"loc_id": 2362, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 5063.1, "z": 5318.6, "px": 2912.1, "py": 2955.7}, {"loc_id": 2363, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6765.5, "z": 3893.8, "px": 893.4, "py": 2712.5}, {"loc_id": 2363, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -6765.5, "z": 3893.8, "px": 893.4, "py": 2712.5}, {"loc_id": 2364, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7492.9, "z": -2002.6, "px": 769.2, "py": 1706.2}, {"loc_id": 2364, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -7492.9, "z": -2002.6, "px": 769.2, "py": 1706.2}, {"loc_id": 2365, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8375.5, "z": 392.4, "px": 3477.4, "py": 2115.0}, {"loc_id": 2365, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 8375.5, "z": 392.4, "px": 3477.4, "py": 2115.0}, {"loc_id": 2366, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2248.5, "z": 3970.2, "px": 2431.7, "py": 2725.6}, {"loc_id": 2366, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2248.5, "z": 3970.2, "px": 2431.7, "py": 2725.6}, {"loc_id": 2367, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2116.8, "z": -4038.2, "px": 1686.7, "py": 1358.8}, {"loc_id": 2367, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -2116.8, "z": -4038.2, "px": 1686.7, "py": 1358.8}, {"loc_id": 2368, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7112.0, "z": 2155.8, "px": 3261.8, "py": 2415.9}, {"loc_id": 2368, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 7112.0, "z": 2155.8, "px": 3261.8, "py": 2415.9}, {"loc_id": 2369, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5566.8, "z": 1579.6, "px": 2998.1, "py": 2317.6}, {"loc_id": 2369, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 5566.8, "z": 1579.6, "px": 2998.1, "py": 2317.6}, {"loc_id": 2370, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6895.0, "z": 2246.8, "px": 871.3, "py": 2431.5}, {"loc_id": 2370, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -6895.0, "z": 2246.8, "px": 871.3, "py": 2431.5}, {"loc_id": 2371, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -639.0, "z": 516.5, "px": 1938.9, "py": 2136.1}, {"loc_id": 2371, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -639.0, "z": 516.5, "px": 1938.9, "py": 2136.1}, {"loc_id": 2372, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9397.3, "z": -2687.9, "px": 444.2, "py": 1589.3}, {"loc_id": 2372, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -9397.3, "z": -2687.9, "px": 444.2, "py": 1589.3}, {"loc_id": 2373, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8015.7, "z": 364.4, "px": 3416.0, "py": 2110.2}, {"loc_id": 2373, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 8015.7, "z": 364.4, "px": 3416.0, "py": 2110.2}, {"loc_id": 2374, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -8436.5, "z": -757.2, "px": 608.2, "py": 1918.8}, {"loc_id": 2374, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -8436.5, "z": -757.2, "px": 608.2, "py": 1918.8}, {"loc_id": 2375, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2674.5, "z": -3828.9, "px": 2504.4, "py": 1394.5}, {"loc_id": 2375, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2674.5, "z": -3828.9, "px": 2504.4, "py": 1394.5}, {"loc_id": 2376, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 979.7, "z": -5234.6, "px": 2215.2, "py": 1154.6}, {"loc_id": 2376, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 979.7, "z": -5234.6, "px": 2215.2, "py": 1154.6}, {"loc_id": 2377, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7544.5, "z": 2692.6, "px": 3335.6, "py": 2507.5}, {"loc_id": 2377, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 7544.5, "z": 2692.6, "px": 3335.6, "py": 2507.5}, {"loc_id": 2378, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7118.0, "z": -4108.0, "px": 3262.8, "py": 1346.9}, {"loc_id": 2378, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 7118.0, "z": -4108.0, "px": 3262.8, "py": 1346.9}, {"loc_id": 2379, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2184.5, "z": -1747.0, "px": 2420.8, "py": 1749.8}, {"loc_id": 2379, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2184.5, "z": -1747.0, "px": 2420.8, "py": 1749.8}, {"loc_id": 2380, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4108.6, "z": -198.4, "px": 1346.8, "py": 2014.1}, {"loc_id": 2380, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -4108.6, "z": -198.4, "px": 1346.8, "py": 2014.1}, {"loc_id": 2381, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4496.9, "z": 1679.0, "px": 1280.5, "py": 2334.5}, {"loc_id": 2381, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -4496.9, "z": 1679.0, "px": 1280.5, "py": 2334.5}, {"loc_id": 2382, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2896.0, "z": 7314.1, "px": 2542.3, "py": 3296.3}, {"loc_id": 2382, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": 2896.0, "z": 7314.1, "px": 2542.3, "py": 3296.3}, {"loc_id": 2383, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5960.8, "z": -620.9, "px": 1030.7, "py": 1942.0}, {"loc_id": 2383, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -5960.8, "z": -620.9, "px": 1030.7, "py": 1942.0}, {"loc_id": 2384, "loc_name": "Ruin1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3412.9, "z": 4235.5, "px": 1465.5, "py": 2770.9}, {"loc_id": 2384, "loc_name": "Ruin1", "item": "SpawnOnce: Greydwarf_Shaman", "count": 1, "x": -3412.9, "z": 4235.5, "px": 1465.5, "py": 2770.9}, {"loc_id": 2385, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4038.3, "z": -6469.5, "px": 1358.8, "py": 943.9}, {"loc_id": 2386, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5100.6, "z": 499.3, "px": 1177.5, "py": 2133.2}, {"loc_id": 2387, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 6803.3, "z": 4556.6, "px": 3209.1, "py": 2825.7}, {"loc_id": 2387, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 6803.3, "z": 4556.6, "px": 3209.1, "py": 2825.7}, {"loc_id": 2388, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2385.8, "z": 3907.3, "px": 2455.2, "py": 2714.8}, {"loc_id": 2388, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 2385.8, "z": 3907.3, "px": 2455.2, "py": 2714.8}, {"loc_id": 2389, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3828.8, "z": 969.9, "px": 2701.4, "py": 2213.5}, {"loc_id": 2389, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 3828.8, "z": 969.9, "px": 2701.4, "py": 2213.5}, {"loc_id": 2390, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4619.5, "z": -5070.4, "px": 2836.4, "py": 1182.7}, {"loc_id": 2391, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 954.7, "z": -5485.7, "px": 2210.9, "py": 1111.8}, {"loc_id": 2391, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 954.7, "z": -5485.7, "px": 2210.9, "py": 1111.8}, {"loc_id": 2392, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3634.2, "z": 3896.1, "px": 2668.2, "py": 2712.9}, {"loc_id": 2392, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 3634.2, "z": 3896.1, "px": 2668.2, "py": 2712.9}, {"loc_id": 2393, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1982.3, "z": 3667.3, "px": 2386.3, "py": 2673.9}, {"loc_id": 2393, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1982.3, "z": 3667.3, "px": 2386.3, "py": 2673.9}, {"loc_id": 2394, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5743.3, "z": -1788.7, "px": 1067.8, "py": 1742.7}, {"loc_id": 2395, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7380.3, "z": -1778.2, "px": 788.4, "py": 1744.5}, {"loc_id": 2396, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9610.1, "z": -241.6, "px": 407.9, "py": 2006.8}, {"loc_id": 2397, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2309.7, "z": 453.5, "px": 2442.2, "py": 2125.4}, {"loc_id": 2398, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1015.5, "z": 269.5, "px": 1874.7, "py": 2094.0}, {"loc_id": 2398, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -1015.5, "z": 269.5, "px": 1874.7, "py": 2094.0}, {"loc_id": 2399, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8182.8, "z": -2453.8, "px": 3444.5, "py": 1629.2}, {"loc_id": 2399, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 8182.8, "z": -2453.8, "px": 3444.5, "py": 1629.2}, {"loc_id": 2399, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 8182.8, "z": -2453.8, "px": 3444.5, "py": 1629.2}, {"loc_id": 2400, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2383.3, "z": 4488.9, "px": 1641.3, "py": 2814.1}, {"loc_id": 2401, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2316.1, "z": 3759.4, "px": 2443.3, "py": 2689.6}, {"loc_id": 2401, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 2316.1, "z": 3759.4, "px": 2443.3, "py": 2689.6}, {"loc_id": 2402, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8465.5, "z": -2051.1, "px": 3492.8, "py": 1697.9}, {"loc_id": 2403, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -8333.5, "z": -1978.2, "px": 625.7, "py": 1710.4}, {"loc_id": 2403, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -8333.5, "z": -1978.2, "px": 625.7, "py": 1710.4}, {"loc_id": 2404, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4153.8, "z": -2246.7, "px": 1339.1, "py": 1664.6}, {"loc_id": 2404, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -4153.8, "z": -2246.7, "px": 1339.1, "py": 1664.6}, {"loc_id": 2405, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7253.5, "z": -4409.3, "px": 3285.9, "py": 1295.5}, {"loc_id": 2405, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 7253.5, "z": -4409.3, "px": 3285.9, "py": 1295.5}, {"loc_id": 2406, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8236.8, "z": 891.3, "px": 3453.7, "py": 2200.1}, {"loc_id": 2406, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 8236.8, "z": 891.3, "px": 3453.7, "py": 2200.1}, {"loc_id": 2407, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7818.0, "z": -2364.9, "px": 713.7, "py": 1644.4}, {"loc_id": 2408, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5877.1, "z": -189.6, "px": 3051.0, "py": 2015.6}, {"loc_id": 2409, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3323.5, "z": -2563.9, "px": 2615.2, "py": 1610.4}, {"loc_id": 2410, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4356.1, "z": 1737.8, "px": 1304.6, "py": 2344.6}, {"loc_id": 2411, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8303.9, "z": -2565.2, "px": 3465.2, "py": 1610.2}, {"loc_id": 2411, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 8303.9, "z": -2565.2, "px": 3465.2, "py": 1610.2}, {"loc_id": 2412, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3075.7, "z": 4179.5, "px": 1523.1, "py": 2761.3}, {"loc_id": 2412, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -3075.7, "z": 4179.5, "px": 1523.1, "py": 2761.3}, {"loc_id": 2413, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4235.7, "z": -6335.4, "px": 1325.1, "py": 966.8}, {"loc_id": 2414, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8061.5, "z": 271.2, "px": 3423.8, "py": 2094.3}, {"loc_id": 2415, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7439.3, "z": -4394.0, "px": 3317.6, "py": 1298.1}, {"loc_id": 2416, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4246.1, "z": -2180.8, "px": 1323.3, "py": 1675.8}, {"loc_id": 2417, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8264.9, "z": 134.5, "px": 3458.5, "py": 2071.0}, {"loc_id": 2417, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 8264.9, "z": 134.5, "px": 3458.5, "py": 2071.0}, {"loc_id": 2418, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2747.7, "z": 333.4, "px": 2516.9, "py": 2104.9}, {"loc_id": 2418, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2747.7, "z": 333.4, "px": 2516.9, "py": 2104.9}, {"loc_id": 2419, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3590.6, "z": 3850.9, "px": 2660.8, "py": 2705.2}, {"loc_id": 2419, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 3590.6, "z": 3850.9, "px": 2660.8, "py": 2705.2}, {"loc_id": 2420, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3592.3, "z": 3960.4, "px": 2661.1, "py": 2723.9}, {"loc_id": 2420, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3592.3, "z": 3960.4, "px": 2661.1, "py": 2723.9}, {"loc_id": 2421, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6780.2, "z": 5443.2, "px": 890.8, "py": 2977.0}, {"loc_id": 2421, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -6780.2, "z": 5443.2, "px": 890.8, "py": 2977.0}, {"loc_id": 2422, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 683.2, "z": 5105.9, "px": 2164.6, "py": 2919.4}, {"loc_id": 2422, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 683.2, "z": 5105.9, "px": 2164.6, "py": 2919.4}, {"loc_id": 2423, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2056.4, "z": -4407.0, "px": 2399.0, "py": 1295.9}, {"loc_id": 2424, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 9412.1, "z": 340.4, "px": 3654.3, "py": 2106.1}, {"loc_id": 2424, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 9412.1, "z": 340.4, "px": 3654.3, "py": 2106.1}, {"loc_id": 2425, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1931.6, "z": 3647.1, "px": 2377.7, "py": 2670.4}, {"loc_id": 2425, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1931.6, "z": 3647.1, "px": 2377.7, "py": 2670.4}, {"loc_id": 2426, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4459.3, "z": -5188.5, "px": 2809.1, "py": 1162.5}, {"loc_id": 2427, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8428.2, "z": -1864.4, "px": 3486.4, "py": 1729.8}, {"loc_id": 2428, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2302.4, "z": 6351.4, "px": 2440.9, "py": 3132.0}, {"loc_id": 2428, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2302.4, "z": 6351.4, "px": 2440.9, "py": 3132.0}, {"loc_id": 2429, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2324.8, "z": -1345.4, "px": 2444.8, "py": 1818.4}, {"loc_id": 2430, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1545.4, "z": -6208.6, "px": 2311.7, "py": 988.4}, {"loc_id": 2431, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3987.8, "z": -2478.5, "px": 1367.4, "py": 1625.0}, {"loc_id": 2431, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -3987.8, "z": -2478.5, "px": 1367.4, "py": 1625.0}, {"loc_id": 2432, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4811.6, "z": 5610.1, "px": 1226.8, "py": 3005.5}, {"loc_id": 2433, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2500.0, "z": 250.6, "px": 2474.7, "py": 2090.8}, {"loc_id": 2433, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 2500.0, "z": 250.6, "px": 2474.7, "py": 2090.8}, {"loc_id": 2433, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2500.0, "z": 250.6, "px": 2474.7, "py": 2090.8}, {"loc_id": 2434, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2284.4, "z": -584.2, "px": 2437.9, "py": 1948.3}, {"loc_id": 2434, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 2284.4, "z": -584.2, "px": 2437.9, "py": 1948.3}, {"loc_id": 2435, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 943.1, "z": -5361.2, "px": 2209.0, "py": 1133.0}, {"loc_id": 2436, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 6100.9, "z": 1348.3, "px": 3089.2, "py": 2278.1}, {"loc_id": 2436, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 6100.9, "z": 1348.3, "px": 3089.2, "py": 2278.1}, {"loc_id": 2437, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2946.3, "z": -301.4, "px": 2550.8, "py": 1996.6}, {"loc_id": 2437, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2946.3, "z": -301.4, "px": 2550.8, "py": 1996.6}, {"loc_id": 2438, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4918.6, "z": 5811.5, "px": 1208.6, "py": 3039.8}, {"loc_id": 2438, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -4918.6, "z": 5811.5, "px": 1208.6, "py": 3039.8}, {"loc_id": 2439, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2282.1, "z": -3115.5, "px": 1658.5, "py": 1516.3}, {"loc_id": 2439, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -2282.1, "z": -3115.5, "px": 1658.5, "py": 1516.3}, {"loc_id": 2440, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3453.7, "z": -1796.8, "px": 1458.6, "py": 1741.3}, {"loc_id": 2440, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -3453.7, "z": -1796.8, "px": 1458.6, "py": 1741.3}, {"loc_id": 2440, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -3453.7, "z": -1796.8, "px": 1458.6, "py": 1741.3}, {"loc_id": 2441, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7733.8, "z": -2569.2, "px": 728.1, "py": 1609.5}, {"loc_id": 2442, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1671.1, "z": -767.1, "px": 2333.2, "py": 1917.1}, {"loc_id": 2443, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2419.7, "z": 1470.7, "px": 2461.0, "py": 2299.0}, {"loc_id": 2444, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3456.7, "z": 3691.8, "px": 2637.9, "py": 2678.1}, {"loc_id": 2445, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1402.1, "z": -1793.2, "px": 1808.7, "py": 1742.0}, {"loc_id": 2446, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5964.4, "z": 4523.4, "px": 1030.1, "py": 2820.0}, {"loc_id": 2447, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -789.4, "z": 4858.7, "px": 1913.3, "py": 2877.2}, {"loc_id": 2448, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1420.0, "z": -1858.4, "px": 1805.7, "py": 1730.8}, {"loc_id": 2449, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7793.5, "z": -2805.4, "px": 3378.1, "py": 1569.2}, {"loc_id": 2449, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 7793.5, "z": -2805.4, "px": 3378.1, "py": 1569.2}, {"loc_id": 2450, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7430.3, "z": -2090.0, "px": 779.9, "py": 1691.3}, {"loc_id": 2451, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1608.0, "z": -4541.0, "px": 2322.4, "py": 1273.0}, {"loc_id": 2452, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7169.2, "z": -2061.2, "px": 824.5, "py": 1696.2}, {"loc_id": 2453, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7247.3, "z": -4787.3, "px": 811.1, "py": 1231.0}, {"loc_id": 2454, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -371.5, "z": 402.2, "px": 1984.6, "py": 2116.6}, {"loc_id": 2454, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -371.5, "z": 402.2, "px": 1984.6, "py": 2116.6}, {"loc_id": 2455, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9234.8, "z": 3275.5, "px": 471.9, "py": 2607.0}, {"loc_id": 2455, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -9234.8, "z": 3275.5, "px": 471.9, "py": 2607.0}, {"loc_id": 2456, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2552.4, "z": -1655.1, "px": 2483.6, "py": 1765.5}, {"loc_id": 2456, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 2552.4, "z": -1655.1, "px": 2483.6, "py": 1765.5}, {"loc_id": 2457, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3249.9, "z": -2030.0, "px": 1493.4, "py": 1701.5}, {"loc_id": 2457, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -3249.9, "z": -2030.0, "px": 1493.4, "py": 1701.5}, {"loc_id": 2458, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8244.4, "z": -2059.2, "px": 3455.0, "py": 1696.6}, {"loc_id": 2458, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 8244.4, "z": -2059.2, "px": 3455.0, "py": 1696.6}, {"loc_id": 2458, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 8244.4, "z": -2059.2, "px": 3455.0, "py": 1696.6}, {"loc_id": 2459, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3905.6, "z": 4970.7, "px": 2714.6, "py": 2896.3}, {"loc_id": 2460, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9321.9, "z": 2830.6, "px": 457.1, "py": 2531.1}, {"loc_id": 2460, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -9321.9, "z": 2830.6, "px": 457.1, "py": 2531.1}, {"loc_id": 2461, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7880.7, "z": -2941.4, "px": 3393.0, "py": 1546.0}, {"loc_id": 2461, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 7880.7, "z": -2941.4, "px": 3393.0, "py": 1546.0}, {"loc_id": 2462, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2483.9, "z": -4411.3, "px": 2471.9, "py": 1295.1}, {"loc_id": 2463, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1518.3, "z": -5557.8, "px": 1788.9, "py": 1099.5}, {"loc_id": 2464, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6015.1, "z": 4522.4, "px": 1021.4, "py": 2819.8}, {"loc_id": 2464, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -6015.1, "z": 4522.4, "px": 1021.4, "py": 2819.8}, {"loc_id": 2465, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2539.4, "z": 1408.2, "px": 1614.6, "py": 2288.3}, {"loc_id": 2465, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -2539.4, "z": 1408.2, "px": 1614.6, "py": 2288.3}, {"loc_id": 2466, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7280.0, "z": -1724.7, "px": 805.5, "py": 1753.7}, {"loc_id": 2466, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -7280.0, "z": -1724.7, "px": 805.5, "py": 1753.7}, {"loc_id": 2467, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 518.2, "z": 5310.1, "px": 2136.4, "py": 2954.3}, {"loc_id": 2468, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2310.8, "z": 5041.9, "px": 2442.4, "py": 2908.5}, {"loc_id": 2469, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3078.2, "z": -2064.8, "px": 1522.7, "py": 1695.6}, {"loc_id": 2470, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1364.1, "z": -2032.7, "px": 1815.2, "py": 1701.1}, {"loc_id": 2471, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8946.2, "z": 182.7, "px": 3574.8, "py": 2079.2}, {"loc_id": 2472, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3069.6, "z": -188.3, "px": 2571.9, "py": 2015.9}, {"loc_id": 2473, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2291.0, "z": -879.0, "px": 2439.0, "py": 1898.0}, {"loc_id": 2474, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4414.5, "z": -445.2, "px": 2801.4, "py": 1972.0}, {"loc_id": 2475, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3857.2, "z": 3971.9, "px": 2706.3, "py": 2725.9}, {"loc_id": 2475, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3857.2, "z": 3971.9, "px": 2706.3, "py": 2725.9}, {"loc_id": 2476, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2001.1, "z": 370.1, "px": 1706.5, "py": 2111.2}, {"loc_id": 2477, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8494.9, "z": 2795.5, "px": 3497.8, "py": 2525.1}, {"loc_id": 2477, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 8494.9, "z": 2795.5, "px": 3497.8, "py": 2525.1}, {"loc_id": 2478, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3255.7, "z": -2690.3, "px": 2603.6, "py": 1588.9}, {"loc_id": 2478, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3255.7, "z": -2690.3, "px": 2603.6, "py": 1588.9}, {"loc_id": 2479, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3568.0, "z": 4660.4, "px": 1439.1, "py": 2843.4}, {"loc_id": 2480, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 6932.8, "z": -4147.5, "px": 3231.2, "py": 1340.2}, {"loc_id": 2480, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 6932.8, "z": -4147.5, "px": 3231.2, "py": 1340.2}, {"loc_id": 2481, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4034.0, "z": -81.8, "px": 1359.5, "py": 2034.0}, {"loc_id": 2481, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -4034.0, "z": -81.8, "px": 1359.5, "py": 2034.0}, {"loc_id": 2482, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9007.7, "z": 2797.3, "px": 510.7, "py": 2525.4}, {"loc_id": 2482, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -9007.7, "z": 2797.3, "px": 510.7, "py": 2525.4}, {"loc_id": 2483, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -8276.1, "z": -832.6, "px": 635.5, "py": 1905.9}, {"loc_id": 2483, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -8276.1, "z": -832.6, "px": 635.5, "py": 1905.9}, {"loc_id": 2484, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8586.1, "z": 127.8, "px": 3513.4, "py": 2069.8}, {"loc_id": 2484, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 8586.1, "z": 127.8, "px": 3513.4, "py": 2069.8}, {"loc_id": 2485, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 846.4, "z": 398.4, "px": 2192.5, "py": 2116.0}, {"loc_id": 2486, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 6645.3, "z": 3080.9, "px": 3182.1, "py": 2573.8}, {"loc_id": 2487, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3462.2, "z": 5007.8, "px": 2638.9, "py": 2902.7}, {"loc_id": 2487, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3462.2, "z": 5007.8, "px": 2638.9, "py": 2902.7}, {"loc_id": 2488, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6642.8, "z": -4588.8, "px": 914.3, "py": 1264.8}, {"loc_id": 2489, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4537.8, "z": -5033.9, "px": 2822.5, "py": 1188.9}, {"loc_id": 2490, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3960.0, "z": 6986.1, "px": 2723.8, "py": 3240.3}, {"loc_id": 2491, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1275.2, "z": -1333.2, "px": 1830.4, "py": 1820.5}, {"loc_id": 2491, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -1275.2, "z": -1333.2, "px": 1830.4, "py": 1820.5}, {"loc_id": 2492, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3903.8, "z": 5112.7, "px": 2714.2, "py": 2920.6}, {"loc_id": 2493, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1150.6, "z": -1042.8, "px": 1851.6, "py": 1870.0}, {"loc_id": 2493, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -1150.6, "z": -1042.8, "px": 1851.6, "py": 1870.0}, {"loc_id": 2494, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 628.4, "z": 5427.5, "px": 2155.2, "py": 2974.3}, {"loc_id": 2494, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 628.4, "z": 5427.5, "px": 2155.2, "py": 2974.3}, {"loc_id": 2495, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9275.0, "z": -2773.1, "px": 465.1, "py": 1574.7}, {"loc_id": 2496, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2301.7, "z": -1263.0, "px": 2440.8, "py": 1832.4}, {"loc_id": 2496, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 2301.7, "z": -1263.0, "px": 2440.8, "py": 1832.4}, {"loc_id": 2497, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 9721.6, "z": -1579.0, "px": 3707.2, "py": 1778.5}, {"loc_id": 2498, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7315.3, "z": -1969.0, "px": 799.5, "py": 1712.0}, {"loc_id": 2499, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3887.7, "z": -404.6, "px": 1384.5, "py": 1978.9}, {"loc_id": 2500, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4156.9, "z": -137.9, "px": 2757.4, "py": 2024.5}, {"loc_id": 2501, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1082.7, "z": -1470.2, "px": 1863.2, "py": 1797.1}, {"loc_id": 2501, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -1082.7, "z": -1470.2, "px": 1863.2, "py": 1797.1}, {"loc_id": 2502, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5141.8, "z": -1044.0, "px": 1170.5, "py": 1869.8}, {"loc_id": 2502, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -5141.8, "z": -1044.0, "px": 1170.5, "py": 1869.8}, {"loc_id": 2503, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4018.4, "z": 1917.0, "px": 1362.2, "py": 2375.2}, {"loc_id": 2504, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2478.1, "z": -2195.7, "px": 2470.9, "py": 1673.3}, {"loc_id": 2505, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1909.1, "z": 3727.0, "px": 2373.8, "py": 2684.1}, {"loc_id": 2506, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7730.1, "z": -2942.9, "px": 3367.3, "py": 1545.7}, {"loc_id": 2507, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -464.6, "z": 459.6, "px": 1968.7, "py": 2126.4}, {"loc_id": 2508, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2036.0, "z": 978.2, "px": 2395.5, "py": 2214.9}, {"loc_id": 2508, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 2036.0, "z": 978.2, "px": 2395.5, "py": 2214.9}, {"loc_id": 2509, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3835.9, "z": 4011.4, "px": 2702.7, "py": 2732.6}, {"loc_id": 2510, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4307.9, "z": -909.3, "px": 2783.2, "py": 1892.8}, {"loc_id": 2511, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3850.8, "z": 3766.6, "px": 2705.2, "py": 2690.8}, {"loc_id": 2512, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2510.9, "z": -272.6, "px": 1619.5, "py": 2001.5}, {"loc_id": 2513, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6846.9, "z": 5515.0, "px": 879.5, "py": 2989.2}, {"loc_id": 2514, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5166.1, "z": 5651.3, "px": 1166.3, "py": 3012.5}, {"loc_id": 2515, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2615.1, "z": -6261.4, "px": 1601.7, "py": 979.4}, {"loc_id": 2515, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -2615.1, "z": -6261.4, "px": 1601.7, "py": 979.4}, {"loc_id": 2515, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -2615.1, "z": -6261.4, "px": 1601.7, "py": 979.4}, {"loc_id": 2516, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3278.0, "z": -2442.2, "px": 2607.4, "py": 1631.2}, {"loc_id": 2517, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3477.8, "z": 3443.8, "px": 2641.5, "py": 2635.7}, {"loc_id": 2517, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3477.8, "z": 3443.8, "px": 2641.5, "py": 2635.7}, {"loc_id": 2518, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 198.3, "z": -1066.4, "px": 2081.8, "py": 1866.0}, {"loc_id": 2519, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 774.0, "z": 3504.5, "px": 2180.1, "py": 2646.1}, {"loc_id": 2520, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1850.6, "z": -1259.7, "px": 2363.8, "py": 1833.0}, {"loc_id": 2521, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2059.9, "z": 384.0, "px": 1696.4, "py": 2113.5}, {"loc_id": 2522, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -694.0, "z": -6484.7, "px": 1929.6, "py": 941.3}, {"loc_id": 2523, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 9421.8, "z": -13.3, "px": 3656.0, "py": 2045.7}, {"loc_id": 2523, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 9421.8, "z": -13.3, "px": 3656.0, "py": 2045.7}, {"loc_id": 2524, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9194.4, "z": 3378.4, "px": 478.8, "py": 2624.6}, {"loc_id": 2525, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3858.3, "z": -2705.4, "px": 1389.5, "py": 1586.3}, {"loc_id": 2525, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -3858.3, "z": -2705.4, "px": 1389.5, "py": 1586.3}, {"loc_id": 2526, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2452.4, "z": -4368.4, "px": 2466.5, "py": 1302.5}, {"loc_id": 2527, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8007.5, "z": -56.6, "px": 3414.6, "py": 2038.3}, {"loc_id": 2528, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5240.2, "z": 263.5, "px": 1153.7, "py": 2093.0}, {"loc_id": 2529, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -58.5, "z": -1645.4, "px": 2038.0, "py": 1767.2}, {"loc_id": 2529, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -58.5, "z": -1645.4, "px": 2038.0, "py": 1767.2}, {"loc_id": 2529, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -58.5, "z": -1645.4, "px": 2038.0, "py": 1767.2}, {"loc_id": 2530, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2363.8, "z": 5058.5, "px": 2451.4, "py": 2911.3}, {"loc_id": 2530, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2363.8, "z": 5058.5, "px": 2451.4, "py": 2911.3}, {"loc_id": 2531, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -321.8, "z": -4283.4, "px": 1993.1, "py": 1317.0}, {"loc_id": 2532, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1421.1, "z": -1643.8, "px": 1805.5, "py": 1767.5}, {"loc_id": 2533, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7113.8, "z": 2430.4, "px": 833.9, "py": 2462.8}, {"loc_id": 2533, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -7113.8, "z": 2430.4, "px": 833.9, "py": 2462.8}, {"loc_id": 2534, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1847.7, "z": -4177.6, "px": 1732.7, "py": 1335.0}, {"loc_id": 2535, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8824.8, "z": -1676.7, "px": 3554.1, "py": 1761.8}, {"loc_id": 2536, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5701.8, "z": -1785.1, "px": 1074.9, "py": 1743.3}, {"loc_id": 2537, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 973.4, "z": 401.0, "px": 2214.1, "py": 2116.4}, {"loc_id": 2537, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 973.4, "z": 401.0, "px": 2214.1, "py": 2116.4}, {"loc_id": 2538, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8389.8, "z": 246.0, "px": 3479.9, "py": 2090.0}, {"loc_id": 2538, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 8389.8, "z": 246.0, "px": 3479.9, "py": 2090.0}, {"loc_id": 2539, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6649.2, "z": -4718.7, "px": 913.2, "py": 1242.7}, {"loc_id": 2540, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -8127.1, "z": 2798.8, "px": 661.0, "py": 2525.7}, {"loc_id": 2541, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3473.5, "z": 3773.5, "px": 2640.8, "py": 2692.0}, {"loc_id": 2542, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -182.5, "z": 882.2, "px": 2016.9, "py": 2198.6}, {"loc_id": 2542, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -182.5, "z": 882.2, "px": 2016.9, "py": 2198.6}, {"loc_id": 2543, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5614.5, "z": -1071.5, "px": 3006.2, "py": 1865.1}, {"loc_id": 2543, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 5614.5, "z": -1071.5, "px": 3006.2, "py": 1865.1}, {"loc_id": 2544, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -384.9, "z": 575.0, "px": 1982.3, "py": 2146.1}, {"loc_id": 2544, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -384.9, "z": 575.0, "px": 1982.3, "py": 2146.1}, {"loc_id": 2545, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4556.4, "z": -4938.2, "px": 2825.6, "py": 1205.2}, {"loc_id": 2546, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -524.7, "z": 379.9, "px": 1958.5, "py": 2112.8}, {"loc_id": 2546, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -524.7, "z": 379.9, "px": 1958.5, "py": 2112.8}, {"loc_id": 2547, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 9802.1, "z": -1621.7, "px": 3720.9, "py": 1771.2}, {"loc_id": 2547, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 9802.1, "z": -1621.7, "px": 3720.9, "py": 1771.2}, {"loc_id": 2548, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1836.0, "z": -6339.4, "px": 2361.3, "py": 966.1}, {"loc_id": 2549, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8212.3, "z": -328.2, "px": 3449.6, "py": 1992.0}, {"loc_id": 2550, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4335.2, "z": 6862.9, "px": 2787.9, "py": 3219.3}, {"loc_id": 2551, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6153.9, "z": 2193.4, "px": 997.7, "py": 2422.3}, {"loc_id": 2552, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1971.7, "z": -692.0, "px": 2384.5, "py": 1929.9}, {"loc_id": 2553, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4988.7, "z": 907.4, "px": 1196.6, "py": 2202.9}, {"loc_id": 2554, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1172.9, "z": -1729.7, "px": 1847.8, "py": 1752.8}, {"loc_id": 2554, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -1172.9, "z": -1729.7, "px": 1847.8, "py": 1752.8}, {"loc_id": 2555, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7694.5, "z": -4745.6, "px": 734.8, "py": 1238.1}, {"loc_id": 2555, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -7694.5, "z": -4745.6, "px": 734.8, "py": 1238.1}, {"loc_id": 2556, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7423.7, "z": 1273.1, "px": 3315.0, "py": 2265.3}, {"loc_id": 2557, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2248.5, "z": 4036.0, "px": 2431.7, "py": 2736.8}, {"loc_id": 2557, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2248.5, "z": 4036.0, "px": 2431.7, "py": 2736.8}, {"loc_id": 2558, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -8188.0, "z": 516.7, "px": 650.6, "py": 2136.2}, {"loc_id": 2558, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -8188.0, "z": 516.7, "px": 650.6, "py": 2136.2}, {"loc_id": 2559, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8387.4, "z": -1869.3, "px": 3479.4, "py": 1729.0}, {"loc_id": 2560, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9749.4, "z": -2261.6, "px": 384.1, "py": 1662.0}, {"loc_id": 2561, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1164.8, "z": 5567.5, "px": 2246.8, "py": 2998.2}, {"loc_id": 2562, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4176.6, "z": -6321.4, "px": 1335.2, "py": 969.1}, {"loc_id": 2563, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1986.6, "z": 1455.9, "px": 2387.0, "py": 2296.5}, {"loc_id": 2563, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1986.6, "z": 1455.9, "px": 2387.0, "py": 2296.5}, {"loc_id": 2564, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1873.3, "z": -836.8, "px": 2367.7, "py": 1905.2}, {"loc_id": 2565, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5304.9, "z": 490.8, "px": 2953.4, "py": 2131.8}, {"loc_id": 2565, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 5304.9, "z": 490.8, "px": 2953.4, "py": 2131.8}, {"loc_id": 2566, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7180.7, "z": -4918.3, "px": 822.5, "py": 1208.6}, {"loc_id": 2567, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6613.7, "z": -4602.4, "px": 919.3, "py": 1262.5}, {"loc_id": 2568, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2572.1, "z": -3643.1, "px": 2487.0, "py": 1426.2}, {"loc_id": 2568, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 2572.1, "z": -3643.1, "px": 2487.0, "py": 1426.2}, {"loc_id": 2568, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2572.1, "z": -3643.1, "px": 2487.0, "py": 1426.2}, {"loc_id": 2569, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8893.7, "z": 130.4, "px": 3565.9, "py": 2070.3}, {"loc_id": 2570, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1674.4, "z": -6334.5, "px": 2333.8, "py": 966.9}, {"loc_id": 2570, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1674.4, "z": -6334.5, "px": 2333.8, "py": 966.9}, {"loc_id": 2571, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4972.1, "z": 5509.6, "px": 1199.4, "py": 2988.3}, {"loc_id": 2572, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2833.0, "z": -4970.7, "px": 2531.5, "py": 1199.7}, {"loc_id": 2572, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2833.0, "z": -4970.7, "px": 2531.5, "py": 1199.7}, {"loc_id": 2573, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3891.9, "z": 3763.3, "px": 2712.2, "py": 2690.3}, {"loc_id": 2574, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 785.6, "z": 4816.0, "px": 2182.1, "py": 2869.9}, {"loc_id": 2574, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 785.6, "z": 4816.0, "px": 2182.1, "py": 2869.9}, {"loc_id": 2575, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3709.0, "z": 3966.6, "px": 2681.0, "py": 2725.0}, {"loc_id": 2575, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 3709.0, "z": 3966.6, "px": 2681.0, "py": 2725.0}, {"loc_id": 2575, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3709.0, "z": 3966.6, "px": 2681.0, "py": 2725.0}, {"loc_id": 2576, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4842.8, "z": 5566.3, "px": 1221.5, "py": 2998.0}, {"loc_id": 2576, "loc_name": "Ruin2", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -4842.8, "z": 5566.3, "px": 1221.5, "py": 2998.0}, {"loc_id": 2576, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -4842.8, "z": 5566.3, "px": 1221.5, "py": 2998.0}, {"loc_id": 2577, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9550.3, "z": -210.7, "px": 418.1, "py": 2012.0}, {"loc_id": 2578, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1098.5, "z": 5781.6, "px": 2235.5, "py": 3034.7}, {"loc_id": 2579, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7822.4, "z": -2666.3, "px": 3383.0, "py": 1593.0}, {"loc_id": 2580, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3210.1, "z": 6576.4, "px": 1500.1, "py": 3170.4}, {"loc_id": 2580, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -3210.1, "z": 6576.4, "px": 1500.1, "py": 3170.4}, {"loc_id": 2581, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9420.1, "z": -187.3, "px": 440.3, "py": 2016.0}, {"loc_id": 2582, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6460.2, "z": 3837.9, "px": 945.5, "py": 2703.0}, {"loc_id": 2583, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5874.8, "z": -4758.0, "px": 3050.6, "py": 1236.0}, {"loc_id": 2584, "loc_name": "Ruin2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1791.1, "z": -6352.2, "px": 2353.7, "py": 963.9}, {"loc_id": 2584, "loc_name": "Ruin2", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1791.1, "z": -6352.2, "px": 2353.7, "py": 963.9}, {"loc_id": 2585, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3927.3, "z": -2407.8, "px": 1377.7, "py": 1637.1}, {"loc_id": 2585, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3927.3, "z": -2407.8, "px": 1377.7, "py": 1637.1}, {"loc_id": 2586, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 6025.5, "z": -4841.6, "px": 3076.4, "py": 1221.7}, {"loc_id": 2586, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 6025.5, "z": -4841.6, "px": 3076.4, "py": 1221.7}, {"loc_id": 2587, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 632.9, "z": -2485.7, "px": 2156.0, "py": 1623.8}, {"loc_id": 2587, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 632.9, "z": -2485.7, "px": 2156.0, "py": 1623.8}, {"loc_id": 2588, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 832.5, "z": -2328.4, "px": 2190.1, "py": 1650.6}, {"loc_id": 2588, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 832.5, "z": -2328.4, "px": 2190.1, "py": 1650.6}, {"loc_id": 2589, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5008.9, "z": 311.2, "px": 2902.9, "py": 2101.1}, {"loc_id": 2589, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 5008.9, "z": 311.2, "px": 2902.9, "py": 2101.1}, {"loc_id": 2590, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4171.9, "z": -6293.9, "px": 1336.0, "py": 973.8}, {"loc_id": 2590, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -4171.9, "z": -6293.9, "px": 1336.0, "py": 973.8}, {"loc_id": 2591, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3581.9, "z": 6729.6, "px": 1436.7, "py": 3196.5}, {"loc_id": 2591, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3581.9, "z": 6729.6, "px": 1436.7, "py": 3196.5}, {"loc_id": 2592, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5432.2, "z": -1846.5, "px": 1120.9, "py": 1732.9}, {"loc_id": 2592, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -5432.2, "z": -1846.5, "px": 1120.9, "py": 1732.9}, {"loc_id": 2593, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 22.2, "z": -4601.8, "px": 2051.8, "py": 1262.6}, {"loc_id": 2593, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 22.2, "z": -4601.8, "px": 2051.8, "py": 1262.6}, {"loc_id": 2594, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 6566.7, "z": 4689.6, "px": 3168.7, "py": 2848.4}, {"loc_id": 2594, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 6566.7, "z": 4689.6, "px": 3168.7, "py": 2848.4}, {"loc_id": 2595, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1258.3, "z": 2600.5, "px": 1833.3, "py": 2491.8}, {"loc_id": 2595, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -1258.3, "z": 2600.5, "px": 1833.3, "py": 2491.8}, {"loc_id": 2596, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 6741.3, "z": 4586.1, "px": 3198.5, "py": 2830.7}, {"loc_id": 2596, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 6741.3, "z": 4586.1, "px": 3198.5, "py": 2830.7}, {"loc_id": 2597, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3157.2, "z": 241.2, "px": 2586.8, "py": 2089.2}, {"loc_id": 2597, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3157.2, "z": 241.2, "px": 2586.8, "py": 2089.2}, {"loc_id": 2598, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5190.5, "z": 270.5, "px": 1162.2, "py": 2094.2}, {"loc_id": 2598, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -5190.5, "z": 270.5, "px": 1162.2, "py": 2094.2}, {"loc_id": 2599, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2051.3, "z": 1428.1, "px": 2398.1, "py": 2291.7}, {"loc_id": 2599, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2051.3, "z": 1428.1, "px": 2398.1, "py": 2291.7}, {"loc_id": 2600, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7421.8, "z": -1807.1, "px": 781.3, "py": 1739.6}, {"loc_id": 2600, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -7421.8, "z": -1807.1, "px": 781.3, "py": 1739.6}, {"loc_id": 2601, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1233.6, "z": -5318.4, "px": 1837.5, "py": 1140.3}, {"loc_id": 2601, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -1233.6, "z": -5318.4, "px": 1837.5, "py": 1140.3}, {"loc_id": 2602, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 465.0, "z": 5300.4, "px": 2127.4, "py": 2952.6}, {"loc_id": 2602, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 465.0, "z": 5300.4, "px": 2127.4, "py": 2952.6}, {"loc_id": 2603, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2363.8, "z": -204.2, "px": 1644.6, "py": 2013.1}, {"loc_id": 2603, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -2363.8, "z": -204.2, "px": 1644.6, "py": 2013.1}, {"loc_id": 2604, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6088.3, "z": 4056.0, "px": 1008.9, "py": 2740.2}, {"loc_id": 2604, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -6088.3, "z": 4056.0, "px": 1008.9, "py": 2740.2}, {"loc_id": 2605, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 254.3, "z": -1174.3, "px": 2091.4, "py": 1847.6}, {"loc_id": 2605, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 254.3, "z": -1174.3, "px": 2091.4, "py": 1847.6}, {"loc_id": 2606, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9167.9, "z": 3470.7, "px": 483.3, "py": 2640.3}, {"loc_id": 2606, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -9167.9, "z": 3470.7, "px": 483.3, "py": 2640.3}, {"loc_id": 2607, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -844.0, "z": 175.2, "px": 1904.0, "py": 2077.9}, {"loc_id": 2607, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -844.0, "z": 175.2, "px": 1904.0, "py": 2077.9}, {"loc_id": 2608, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 9874.6, "z": 1604.7, "px": 3733.3, "py": 2321.9}, {"loc_id": 2608, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 9874.6, "z": 1604.7, "px": 3733.3, "py": 2321.9}, {"loc_id": 2609, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9715.4, "z": 839.2, "px": 389.9, "py": 2191.2}, {"loc_id": 2609, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -9715.4, "z": 839.2, "px": 389.9, "py": 2191.2}, {"loc_id": 2610, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5364.3, "z": 496.8, "px": 1132.5, "py": 2132.8}, {"loc_id": 2610, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -5364.3, "z": 496.8, "px": 1132.5, "py": 2132.8}, {"loc_id": 2611, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3353.7, "z": -2104.0, "px": 2620.4, "py": 1688.9}, {"loc_id": 2611, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3353.7, "z": -2104.0, "px": 2620.4, "py": 1688.9}, {"loc_id": 2612, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5434.8, "z": -1996.6, "px": 1120.5, "py": 1707.2}, {"loc_id": 2612, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -5434.8, "z": -1996.6, "px": 1120.5, "py": 1707.2}, {"loc_id": 2613, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -8979.2, "z": 3402.7, "px": 515.5, "py": 2628.7}, {"loc_id": 2613, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -8979.2, "z": 3402.7, "px": 515.5, "py": 2628.7}, {"loc_id": 2614, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -8058.4, "z": 2693.7, "px": 672.7, "py": 2507.7}, {"loc_id": 2614, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -8058.4, "z": 2693.7, "px": 672.7, "py": 2507.7}, {"loc_id": 2615, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 76.2, "z": -4563.5, "px": 2061.0, "py": 1269.2}, {"loc_id": 2615, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 76.2, "z": -4563.5, "px": 2061.0, "py": 1269.2}, {"loc_id": 2616, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2638.2, "z": 5417.0, "px": 2498.3, "py": 2972.5}, {"loc_id": 2616, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2638.2, "z": 5417.0, "px": 2498.3, "py": 2972.5}, {"loc_id": 2617, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1134.7, "z": -5695.0, "px": 2241.7, "py": 1076.1}, {"loc_id": 2617, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1134.7, "z": -5695.0, "px": 2241.7, "py": 1076.1}, {"loc_id": 2618, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6769.7, "z": 619.6, "px": 892.6, "py": 2153.7}, {"loc_id": 2618, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -6769.7, "z": 619.6, "px": 892.6, "py": 2153.7}, {"loc_id": 2619, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3385.3, "z": 6777.8, "px": 1470.2, "py": 3204.7}, {"loc_id": 2619, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3385.3, "z": 6777.8, "px": 1470.2, "py": 3204.7}, {"loc_id": 2620, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8177.0, "z": -2614.4, "px": 3443.5, "py": 1601.8}, {"loc_id": 2620, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 8177.0, "z": -2614.4, "px": 3443.5, "py": 1601.8}, {"loc_id": 2621, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -658.4, "z": -25.4, "px": 1935.6, "py": 2043.7}, {"loc_id": 2621, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -658.4, "z": -25.4, "px": 1935.6, "py": 2043.7}, {"loc_id": 2622, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3071.1, "z": -4850.8, "px": 2572.1, "py": 1220.1}, {"loc_id": 2622, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3071.1, "z": -4850.8, "px": 2572.1, "py": 1220.1}, {"loc_id": 2623, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7505.9, "z": -2863.6, "px": 3329.0, "py": 1559.3}, {"loc_id": 2623, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 7505.9, "z": -2863.6, "px": 3329.0, "py": 1559.3}, {"loc_id": 2624, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2022.9, "z": -6268.2, "px": 2393.2, "py": 978.2}, {"loc_id": 2624, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2022.9, "z": -6268.2, "px": 2393.2, "py": 978.2}, {"loc_id": 2625, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3057.3, "z": 381.0, "px": 2569.8, "py": 2113.0}, {"loc_id": 2625, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3057.3, "z": 381.0, "px": 2569.8, "py": 2113.0}, {"loc_id": 2626, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6076.2, "z": 4112.3, "px": 1011.0, "py": 2749.8}, {"loc_id": 2626, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -6076.2, "z": 4112.3, "px": 1011.0, "py": 2749.8}, {"loc_id": 2627, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8046.1, "z": -2578.1, "px": 3421.2, "py": 1608.0}, {"loc_id": 2627, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 8046.1, "z": -2578.1, "px": 3421.2, "py": 1608.0}, {"loc_id": 2628, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9318.5, "z": 3203.6, "px": 457.6, "py": 2594.7}, {"loc_id": 2628, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -9318.5, "z": 3203.6, "px": 457.6, "py": 2594.7}, {"loc_id": 2629, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6758.3, "z": 3856.2, "px": 894.6, "py": 2706.1}, {"loc_id": 2629, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -6758.3, "z": 3856.2, "px": 894.6, "py": 2706.1}, {"loc_id": 2630, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8102.2, "z": 327.7, "px": 3430.8, "py": 2103.9}, {"loc_id": 2630, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 8102.2, "z": 327.7, "px": 3430.8, "py": 2103.9}, {"loc_id": 2631, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7896.7, "z": -562.6, "px": 3395.7, "py": 1952.0}, {"loc_id": 2631, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 7896.7, "z": -562.6, "px": 3395.7, "py": 1952.0}, {"loc_id": 2632, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9301.6, "z": 2905.6, "px": 460.5, "py": 2543.9}, {"loc_id": 2632, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -9301.6, "z": 2905.6, "px": 460.5, "py": 2543.9}, {"loc_id": 2633, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7413.9, "z": 311.7, "px": 782.7, "py": 2101.2}, {"loc_id": 2633, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -7413.9, "z": 311.7, "px": 782.7, "py": 2101.2}, {"loc_id": 2634, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1447.8, "z": -2199.4, "px": 2295.1, "py": 1672.6}, {"loc_id": 2634, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1447.8, "z": -2199.4, "px": 2295.1, "py": 1672.6}, {"loc_id": 2635, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1288.7, "z": -5786.0, "px": 2267.9, "py": 1060.5}, {"loc_id": 2635, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1288.7, "z": -5786.0, "px": 2267.9, "py": 1060.5}, {"loc_id": 2636, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3577.7, "z": 305.9, "px": 2658.6, "py": 2100.2}, {"loc_id": 2636, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3577.7, "z": 305.9, "px": 2658.6, "py": 2100.2}, {"loc_id": 2637, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7720.3, "z": -748.3, "px": 3365.6, "py": 1920.3}, {"loc_id": 2637, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 7720.3, "z": -748.3, "px": 3365.6, "py": 1920.3}, {"loc_id": 2638, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5888.2, "z": 4711.2, "px": 1043.1, "py": 2852.0}, {"loc_id": 2638, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -5888.2, "z": 4711.2, "px": 1043.1, "py": 2852.0}, {"loc_id": 2639, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2218.1, "z": -985.1, "px": 2426.6, "py": 1879.9}, {"loc_id": 2639, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2218.1, "z": -985.1, "px": 2426.6, "py": 1879.9}, {"loc_id": 2640, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9387.5, "z": 2921.4, "px": 445.9, "py": 2546.6}, {"loc_id": 2640, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -9387.5, "z": 2921.4, "px": 445.9, "py": 2546.6}, {"loc_id": 2641, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -8046.8, "z": 341.3, "px": 674.7, "py": 2106.2}, {"loc_id": 2641, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -8046.8, "z": 341.3, "px": 674.7, "py": 2106.2}, {"loc_id": 2642, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7799.2, "z": 64.1, "px": 716.9, "py": 2058.9}, {"loc_id": 2642, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -7799.2, "z": 64.1, "px": 716.9, "py": 2058.9}, {"loc_id": 2643, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4221.4, "z": -1075.1, "px": 2768.5, "py": 1864.5}, {"loc_id": 2643, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 4221.4, "z": -1075.1, "px": 2768.5, "py": 1864.5}, {"loc_id": 2644, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1091.6, "z": -1262.0, "px": 1861.7, "py": 1832.6}, {"loc_id": 2644, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -1091.6, "z": -1262.0, "px": 1861.7, "py": 1832.6}, {"loc_id": 2645, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3015.0, "z": 1900.8, "px": 1533.4, "py": 2372.4}, {"loc_id": 2645, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3015.0, "z": 1900.8, "px": 1533.4, "py": 2372.4}, {"loc_id": 2646, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1392.2, "z": -4949.9, "px": 2285.6, "py": 1203.2}, {"loc_id": 2646, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1392.2, "z": -4949.9, "px": 2285.6, "py": 1203.2}, {"loc_id": 2647, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 877.3, "z": -5357.1, "px": 2197.7, "py": 1133.7}, {"loc_id": 2647, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 877.3, "z": -5357.1, "px": 2197.7, "py": 1133.7}, {"loc_id": 2648, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4134.9, "z": -6090.0, "px": 1342.3, "py": 1008.6}, {"loc_id": 2648, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -4134.9, "z": -6090.0, "px": 1342.3, "py": 1008.6}, {"loc_id": 2649, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2371.2, "z": -6208.1, "px": 1643.3, "py": 988.5}, {"loc_id": 2649, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -2371.2, "z": -6208.1, "px": 1643.3, "py": 988.5}, {"loc_id": 2650, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1256.0, "z": -5807.5, "px": 2262.4, "py": 1056.9}, {"loc_id": 2650, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1256.0, "z": -5807.5, "px": 2262.4, "py": 1056.9}, {"loc_id": 2651, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1835.0, "z": -1145.6, "px": 2361.2, "py": 1852.5}, {"loc_id": 2651, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1835.0, "z": -1145.6, "px": 2361.2, "py": 1852.5}, {"loc_id": 2652, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1944.8, "z": -4539.8, "px": 1716.1, "py": 1273.2}, {"loc_id": 2652, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -1944.8, "z": -4539.8, "px": 1716.1, "py": 1273.2}, {"loc_id": 2653, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7103.0, "z": 269.5, "px": 835.8, "py": 2094.0}, {"loc_id": 2653, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -7103.0, "z": 269.5, "px": 835.8, "py": 2094.0}, {"loc_id": 2654, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6772.1, "z": 5301.9, "px": 892.2, "py": 2952.9}, {"loc_id": 2654, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -6772.1, "z": 5301.9, "px": 892.2, "py": 2952.9}, {"loc_id": 2655, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8659.0, "z": -2175.6, "px": 3525.8, "py": 1676.7}, {"loc_id": 2655, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 8659.0, "z": -2175.6, "px": 3525.8, "py": 1676.7}, {"loc_id": 2656, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5870.5, "z": -242.2, "px": 3049.9, "py": 2006.7}, {"loc_id": 2656, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 5870.5, "z": -242.2, "px": 3049.9, "py": 2006.7}, {"loc_id": 2657, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5943.3, "z": -522.0, "px": 3062.3, "py": 1958.9}, {"loc_id": 2657, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 5943.3, "z": -522.0, "px": 3062.3, "py": 1958.9}, {"loc_id": 2658, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7759.7, "z": -273.8, "px": 3372.3, "py": 2001.3}, {"loc_id": 2658, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 7759.7, "z": -273.8, "px": 3372.3, "py": 2001.3}, {"loc_id": 2659, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1786.2, "z": -6250.5, "px": 2352.8, "py": 981.2}, {"loc_id": 2659, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1786.2, "z": -6250.5, "px": 2352.8, "py": 981.2}, {"loc_id": 2660, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -343.1, "z": -4531.2, "px": 1989.4, "py": 1274.7}, {"loc_id": 2660, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -343.1, "z": -4531.2, "px": 1989.4, "py": 1274.7}, {"loc_id": 2661, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 6673.8, "z": 4425.1, "px": 3187.0, "py": 2803.2}, {"loc_id": 2661, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 6673.8, "z": 4425.1, "px": 3187.0, "py": 2803.2}, {"loc_id": 2662, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8520.6, "z": 233.3, "px": 3502.2, "py": 2087.8}, {"loc_id": 2662, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 8520.6, "z": 233.3, "px": 3502.2, "py": 2087.8}, {"loc_id": 2663, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3854.5, "z": 1145.9, "px": 2705.8, "py": 2243.6}, {"loc_id": 2663, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3854.5, "z": 1145.9, "px": 2705.8, "py": 2243.6}, {"loc_id": 2664, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8492.2, "z": -1791.9, "px": 3497.3, "py": 1742.2}, {"loc_id": 2664, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 8492.2, "z": -1791.9, "px": 3497.3, "py": 1742.2}, {"loc_id": 2665, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4205.2, "z": -6143.4, "px": 1330.3, "py": 999.5}, {"loc_id": 2665, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -4205.2, "z": -6143.4, "px": 1330.3, "py": 999.5}, {"loc_id": 2666, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5558.3, "z": -788.2, "px": 2996.6, "py": 1913.5}, {"loc_id": 2666, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 5558.3, "z": -788.2, "px": 2996.6, "py": 1913.5}, {"loc_id": 2667, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5145.6, "z": -1531.3, "px": 1169.8, "py": 1786.7}, {"loc_id": 2667, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -5145.6, "z": -1531.3, "px": 1169.8, "py": 1786.7}, {"loc_id": 2668, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5754.8, "z": 62.8, "px": 3030.2, "py": 2058.7}, {"loc_id": 2668, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 5754.8, "z": 62.8, "px": 3030.2, "py": 2058.7}, {"loc_id": 2669, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 383.9, "z": 5126.3, "px": 2113.5, "py": 2922.9}, {"loc_id": 2669, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 383.9, "z": 5126.3, "px": 2113.5, "py": 2922.9}, {"loc_id": 2670, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7669.8, "z": -1792.2, "px": 739.0, "py": 1742.1}, {"loc_id": 2670, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -7669.8, "z": -1792.2, "px": 739.0, "py": 1742.1}, {"loc_id": 2671, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4093.6, "z": -2449.5, "px": 1349.4, "py": 1630.0}, {"loc_id": 2671, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -4093.6, "z": -2449.5, "px": 1349.4, "py": 1630.0}, {"loc_id": 2672, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5234.9, "z": -1877.4, "px": 1154.6, "py": 1727.6}, {"loc_id": 2672, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -5234.9, "z": -1877.4, "px": 1154.6, "py": 1727.6}, {"loc_id": 2673, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2448.9, "z": 4304.9, "px": 1630.1, "py": 2782.7}, {"loc_id": 2673, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -2448.9, "z": 4304.9, "px": 1630.1, "py": 2782.7}, {"loc_id": 2674, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 665.7, "z": 5268.7, "px": 2161.6, "py": 2947.2}, {"loc_id": 2674, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 665.7, "z": 5268.7, "px": 2161.6, "py": 2947.2}, {"loc_id": 2675, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8367.9, "z": -383.7, "px": 3476.1, "py": 1982.5}, {"loc_id": 2675, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 8367.9, "z": -383.7, "px": 3476.1, "py": 1982.5}, {"loc_id": 2676, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9331.5, "z": -174.4, "px": 455.4, "py": 2018.2}, {"loc_id": 2676, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -9331.5, "z": -174.4, "px": 455.4, "py": 2018.2}, {"loc_id": 2677, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3444.5, "z": -2384.4, "px": 2635.9, "py": 1641.1}, {"loc_id": 2677, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3444.5, "z": -2384.4, "px": 2635.9, "py": 1641.1}, {"loc_id": 2678, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5234.3, "z": -2287.4, "px": 2941.3, "py": 1657.6}, {"loc_id": 2678, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 5234.3, "z": -2287.4, "px": 2941.3, "py": 1657.6}, {"loc_id": 2679, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2167.6, "z": -1778.5, "px": 2417.9, "py": 1744.5}, {"loc_id": 2679, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2167.6, "z": -1778.5, "px": 2417.9, "py": 1744.5}, {"loc_id": 2680, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3663.9, "z": 6999.5, "px": 1422.7, "py": 3242.6}, {"loc_id": 2680, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3663.9, "z": 6999.5, "px": 1422.7, "py": 3242.6}, {"loc_id": 2681, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5572.0, "z": -1070.9, "px": 2999.0, "py": 1865.2}, {"loc_id": 2681, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 5572.0, "z": -1070.9, "px": 2999.0, "py": 1865.2}, {"loc_id": 2682, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9362.8, "z": -2625.1, "px": 450.1, "py": 1600.0}, {"loc_id": 2682, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -9362.8, "z": -2625.1, "px": 450.1, "py": 1600.0}, {"loc_id": 2683, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6890.1, "z": 5426.6, "px": 872.1, "py": 2974.1}, {"loc_id": 2683, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -6890.1, "z": 5426.6, "px": 872.1, "py": 2974.1}, {"loc_id": 2684, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3639.4, "z": 3861.6, "px": 2669.1, "py": 2707.0}, {"loc_id": 2684, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3639.4, "z": 3861.6, "px": 2669.1, "py": 2707.0}, {"loc_id": 2685, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -8758.5, "z": -1028.7, "px": 553.2, "py": 1872.4}, {"loc_id": 2685, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -8758.5, "z": -1028.7, "px": 553.2, "py": 1872.4}, {"loc_id": 2686, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7462.0, "z": 1301.2, "px": 3321.5, "py": 2270.1}, {"loc_id": 2686, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 7462.0, "z": 1301.2, "px": 3321.5, "py": 2270.1}, {"loc_id": 2687, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4410.7, "z": -371.1, "px": 2800.8, "py": 1984.7}, {"loc_id": 2687, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 4410.7, "z": -371.1, "px": 2800.8, "py": 1984.7}, {"loc_id": 2688, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7572.0, "z": -1860.3, "px": 755.7, "py": 1730.5}, {"loc_id": 2688, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -7572.0, "z": -1860.3, "px": 755.7, "py": 1730.5}, {"loc_id": 2689, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9803.8, "z": -1994.1, "px": 374.8, "py": 1707.7}, {"loc_id": 2689, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -9803.8, "z": -1994.1, "px": 374.8, "py": 1707.7}, {"loc_id": 2690, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2564.5, "z": 6160.5, "px": 1610.3, "py": 3099.4}, {"loc_id": 2690, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -2564.5, "z": 6160.5, "px": 1610.3, "py": 3099.4}, {"loc_id": 2691, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5642.6, "z": 1670.0, "px": 3011.0, "py": 2333.0}, {"loc_id": 2691, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 5642.6, "z": 1670.0, "px": 3011.0, "py": 2333.0}, {"loc_id": 2692, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7437.8, "z": -4281.9, "px": 3317.4, "py": 1317.2}, {"loc_id": 2692, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 7437.8, "z": -4281.9, "px": 3317.4, "py": 1317.2}, {"loc_id": 2693, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1414.3, "z": -2232.3, "px": 2289.4, "py": 1667.0}, {"loc_id": 2693, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1414.3, "z": -2232.3, "px": 2289.4, "py": 1667.0}, {"loc_id": 2694, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2768.7, "z": 5186.4, "px": 2520.5, "py": 2933.1}, {"loc_id": 2694, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2768.7, "z": 5186.4, "px": 2520.5, "py": 2933.1}, {"loc_id": 2695, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3772.5, "z": -1349.6, "px": 2691.8, "py": 1817.7}, {"loc_id": 2695, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3772.5, "z": -1349.6, "px": 2691.8, "py": 1817.7}, {"loc_id": 2696, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9332.6, "z": -1526.2, "px": 455.2, "py": 1787.5}, {"loc_id": 2696, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -9332.6, "z": -1526.2, "px": 455.2, "py": 1787.5}, {"loc_id": 2697, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5881.7, "z": -5014.9, "px": 1044.2, "py": 1192.1}, {"loc_id": 2697, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -5881.7, "z": -5014.9, "px": 1044.2, "py": 1192.1}, {"loc_id": 2698, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 936.6, "z": 5643.0, "px": 2207.8, "py": 3011.1}, {"loc_id": 2698, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 936.6, "z": 5643.0, "px": 2207.8, "py": 3011.1}, {"loc_id": 2699, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3543.7, "z": 6956.6, "px": 1443.2, "py": 3235.3}, {"loc_id": 2699, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3543.7, "z": 6956.6, "px": 1443.2, "py": 3235.3}, {"loc_id": 2700, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2617.9, "z": 389.5, "px": 2494.8, "py": 2114.5}, {"loc_id": 2700, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2617.9, "z": 389.5, "px": 2494.8, "py": 2114.5}, {"loc_id": 2701, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8127.2, "z": -139.6, "px": 3435.0, "py": 2024.2}, {"loc_id": 2701, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 8127.2, "z": -139.6, "px": 3435.0, "py": 2024.2}, {"loc_id": 2702, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3752.1, "z": -3943.7, "px": 1407.6, "py": 1374.9}, {"loc_id": 2702, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3752.1, "z": -3943.7, "px": 1407.6, "py": 1374.9}, {"loc_id": 2703, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 771.1, "z": 4602.4, "px": 2179.6, "py": 2833.5}, {"loc_id": 2703, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 771.1, "z": 4602.4, "px": 2179.6, "py": 2833.5}, {"loc_id": 2704, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8768.7, "z": -1299.5, "px": 3544.5, "py": 1826.2}, {"loc_id": 2704, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 8768.7, "z": -1299.5, "px": 3544.5, "py": 1826.2}, {"loc_id": 2705, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8704.9, "z": -1773.9, "px": 3533.6, "py": 1745.3}, {"loc_id": 2705, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 8704.9, "z": -1773.9, "px": 3533.6, "py": 1745.3}, {"loc_id": 2706, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7207.1, "z": 2482.7, "px": 818.0, "py": 2471.7}, {"loc_id": 2706, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -7207.1, "z": 2482.7, "px": 818.0, "py": 2471.7}, {"loc_id": 2707, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3067.9, "z": 6599.0, "px": 1524.4, "py": 3174.2}, {"loc_id": 2707, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3067.9, "z": 6599.0, "px": 1524.4, "py": 3174.2}, {"loc_id": 2708, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3822.4, "z": -3858.9, "px": 1395.6, "py": 1389.4}, {"loc_id": 2708, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3822.4, "z": -3858.9, "px": 1395.6, "py": 1389.4}, {"loc_id": 2709, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7256.4, "z": -4845.0, "px": 809.6, "py": 1221.1}, {"loc_id": 2709, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -7256.4, "z": -4845.0, "px": 809.6, "py": 1221.1}, {"loc_id": 2710, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1239.0, "z": -1031.6, "px": 1836.5, "py": 1871.9}, {"loc_id": 2710, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -1239.0, "z": -1031.6, "px": 1836.5, "py": 1871.9}, {"loc_id": 2711, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2067.8, "z": -204.5, "px": 2400.9, "py": 2013.1}, {"loc_id": 2711, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2067.8, "z": -204.5, "px": 2400.9, "py": 2013.1}, {"loc_id": 2712, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7147.5, "z": -3960.4, "px": 3267.8, "py": 1372.1}, {"loc_id": 2712, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 7147.5, "z": -3960.4, "px": 3267.8, "py": 1372.1}, {"loc_id": 2713, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 884.2, "z": 5194.5, "px": 2198.9, "py": 2934.5}, {"loc_id": 2713, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 884.2, "z": 5194.5, "px": 2198.9, "py": 2934.5}, {"loc_id": 2714, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5997.1, "z": 1591.1, "px": 1024.5, "py": 2319.5}, {"loc_id": 2714, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -5997.1, "z": 1591.1, "px": 1024.5, "py": 2319.5}, {"loc_id": 2715, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2095.6, "z": 622.3, "px": 1690.4, "py": 2154.2}, {"loc_id": 2715, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -2095.6, "z": 622.3, "px": 1690.4, "py": 2154.2}, {"loc_id": 2716, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9548.0, "z": -2582.6, "px": 418.5, "py": 1607.2}, {"loc_id": 2716, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -9548.0, "z": -2582.6, "px": 418.5, "py": 1607.2}, {"loc_id": 2717, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7609.9, "z": -4905.3, "px": 749.2, "py": 1210.8}, {"loc_id": 2717, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -7609.9, "z": -4905.3, "px": 749.2, "py": 1210.8}, {"loc_id": 2718, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4803.7, "z": -3070.1, "px": 1228.2, "py": 1524.0}, {"loc_id": 2718, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -4803.7, "z": -3070.1, "px": 1228.2, "py": 1524.0}, {"loc_id": 2719, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7482.2, "z": -4236.1, "px": 3325.0, "py": 1325.0}, {"loc_id": 2719, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 7482.2, "z": -4236.1, "px": 3325.0, "py": 1325.0}, {"loc_id": 2720, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2118.2, "z": -1661.6, "px": 2409.5, "py": 1764.4}, {"loc_id": 2720, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2118.2, "z": -1661.6, "px": 2409.5, "py": 1764.4}, {"loc_id": 2721, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 6095.8, "z": -5894.9, "px": 3088.3, "py": 1041.9}, {"loc_id": 2721, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 6095.8, "z": -5894.9, "px": 3088.3, "py": 1041.9}, {"loc_id": 2722, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 9721.1, "z": -1520.4, "px": 3707.1, "py": 1788.5}, {"loc_id": 2722, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 9721.1, "z": -1520.4, "px": 3707.1, "py": 1788.5}, {"loc_id": 2723, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -175.5, "z": -1005.6, "px": 2018.0, "py": 1876.4}, {"loc_id": 2723, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -175.5, "z": -1005.6, "px": 2018.0, "py": 1876.4}, {"loc_id": 2724, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1832.2, "z": -4276.0, "px": 1735.3, "py": 1318.2}, {"loc_id": 2724, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -1832.2, "z": -4276.0, "px": 1735.3, "py": 1318.2}, {"loc_id": 2725, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -8114.6, "z": 471.0, "px": 663.1, "py": 2128.4}, {"loc_id": 2725, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -8114.6, "z": 471.0, "px": 663.1, "py": 2128.4}, {"loc_id": 2726, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7756.6, "z": -1838.5, "px": 724.2, "py": 1734.2}, {"loc_id": 2726, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -7756.6, "z": -1838.5, "px": 724.2, "py": 1734.2}, {"loc_id": 2727, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9473.2, "z": -2585.2, "px": 431.2, "py": 1606.8}, {"loc_id": 2727, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -9473.2, "z": -2585.2, "px": 431.2, "py": 1606.8}, {"loc_id": 2728, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3567.4, "z": 3753.3, "px": 2656.8, "py": 2688.6}, {"loc_id": 2728, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3567.4, "z": 3753.3, "px": 2656.8, "py": 2688.6}, {"loc_id": 2729, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3980.3, "z": -3757.1, "px": 1368.7, "py": 1406.8}, {"loc_id": 2729, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3980.3, "z": -3757.1, "px": 1368.7, "py": 1406.8}, {"loc_id": 2730, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7493.9, "z": -1925.9, "px": 769.0, "py": 1719.3}, {"loc_id": 2730, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -7493.9, "z": -1925.9, "px": 769.0, "py": 1719.3}, {"loc_id": 2731, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1335.9, "z": -1792.8, "px": 1820.0, "py": 1742.0}, {"loc_id": 2731, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -1335.9, "z": -1792.8, "px": 1820.0, "py": 1742.0}, {"loc_id": 2732, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6148.4, "z": -153.2, "px": 998.7, "py": 2021.9}, {"loc_id": 2732, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -6148.4, "z": -153.2, "px": 998.7, "py": 2021.9}, {"loc_id": 2733, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5703.5, "z": 4798.1, "px": 1074.6, "py": 2866.9}, {"loc_id": 2733, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -5703.5, "z": 4798.1, "px": 1074.6, "py": 2866.9}, {"loc_id": 2734, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -8388.3, "z": -1733.6, "px": 616.4, "py": 1752.1}, {"loc_id": 2734, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -8388.3, "z": -1733.6, "px": 616.4, "py": 1752.1}, {"loc_id": 2735, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6674.0, "z": 651.1, "px": 909.0, "py": 2159.1}, {"loc_id": 2735, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -6674.0, "z": 651.1, "px": 909.0, "py": 2159.1}, {"loc_id": 2736, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 240.7, "z": -1322.4, "px": 2089.1, "py": 1822.3}, {"loc_id": 2736, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 240.7, "z": -1322.4, "px": 2089.1, "py": 1822.3}, {"loc_id": 2737, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5303.1, "z": 659.6, "px": 1142.9, "py": 2160.6}, {"loc_id": 2737, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -5303.1, "z": 659.6, "px": 1142.9, "py": 2160.6}, {"loc_id": 2738, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8534.1, "z": -3672.4, "px": 3504.5, "py": 1421.2}, {"loc_id": 2738, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 8534.1, "z": -3672.4, "px": 3504.5, "py": 1421.2}, {"loc_id": 2739, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 597.7, "z": 4552.0, "px": 2150.0, "py": 2824.9}, {"loc_id": 2739, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 597.7, "z": 4552.0, "px": 2150.0, "py": 2824.9}, {"loc_id": 2740, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -599.8, "z": 342.2, "px": 1945.6, "py": 2106.4}, {"loc_id": 2740, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -599.8, "z": 342.2, "px": 1945.6, "py": 2106.4}, {"loc_id": 2741, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3928.7, "z": 4163.7, "px": 1377.5, "py": 2758.6}, {"loc_id": 2741, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3928.7, "z": 4163.7, "px": 1377.5, "py": 2758.6}, {"loc_id": 2742, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -598.2, "z": -15.7, "px": 1945.9, "py": 2045.3}, {"loc_id": 2742, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -598.2, "z": -15.7, "px": 1945.9, "py": 2045.3}, {"loc_id": 2743, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1768.3, "z": -902.7, "px": 2349.8, "py": 1893.9}, {"loc_id": 2743, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1768.3, "z": -902.7, "px": 2349.8, "py": 1893.9}, {"loc_id": 2744, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9105.5, "z": 2690.9, "px": 494.0, "py": 2507.2}, {"loc_id": 2744, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -9105.5, "z": 2690.9, "px": 494.0, "py": 2507.2}, {"loc_id": 2745, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6719.8, "z": 3828.9, "px": 901.2, "py": 2701.5}, {"loc_id": 2745, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -6719.8, "z": 3828.9, "px": 901.2, "py": 2701.5}, {"loc_id": 2746, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9089.5, "z": 2865.8, "px": 496.7, "py": 2537.1}, {"loc_id": 2746, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -9089.5, "z": 2865.8, "px": 496.7, "py": 2537.1}, {"loc_id": 2747, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5555.3, "z": -1937.2, "px": 1099.9, "py": 1717.4}, {"loc_id": 2747, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -5555.3, "z": -1937.2, "px": 1099.9, "py": 1717.4}, {"loc_id": 2748, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1808.5, "z": 7246.8, "px": 2356.7, "py": 3284.8}, {"loc_id": 2748, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1808.5, "z": 7246.8, "px": 2356.7, "py": 3284.8}, {"loc_id": 2749, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 6004.3, "z": -441.1, "px": 3072.7, "py": 1972.7}, {"loc_id": 2749, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 6004.3, "z": -441.1, "px": 3072.7, "py": 1972.7}, {"loc_id": 2750, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5350.1, "z": 6332.8, "px": 2961.1, "py": 3128.8}, {"loc_id": 2750, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 5350.1, "z": 6332.8, "px": 2961.1, "py": 3128.8}, {"loc_id": 2751, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6120.5, "z": 1403.1, "px": 1003.4, "py": 2287.5}, {"loc_id": 2751, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -6120.5, "z": 1403.1, "px": 1003.4, "py": 2287.5}, {"loc_id": 2752, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9396.3, "z": 3024.5, "px": 444.4, "py": 2564.2}, {"loc_id": 2752, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -9396.3, "z": 3024.5, "px": 444.4, "py": 2564.2}, {"loc_id": 2753, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5075.2, "z": 181.1, "px": 1181.8, "py": 2078.9}, {"loc_id": 2753, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -5075.2, "z": 181.1, "px": 1181.8, "py": 2078.9}, {"loc_id": 2754, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3057.1, "z": -126.7, "px": 2569.7, "py": 2026.4}, {"loc_id": 2754, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3057.1, "z": -126.7, "px": 2569.7, "py": 2026.4}, {"loc_id": 2755, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7278.9, "z": -4966.0, "px": 805.7, "py": 1200.5}, {"loc_id": 2755, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -7278.9, "z": -4966.0, "px": 805.7, "py": 1200.5}, {"loc_id": 2756, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5399.8, "z": 6443.1, "px": 2969.6, "py": 3147.6}, {"loc_id": 2756, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 5399.8, "z": 6443.1, "px": 2969.6, "py": 3147.6}, {"loc_id": 2757, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3906.9, "z": 1899.4, "px": 1381.2, "py": 2372.2}, {"loc_id": 2757, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3906.9, "z": 1899.4, "px": 1381.2, "py": 2372.2}, {"loc_id": 2758, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1038.5, "z": 5237.3, "px": 2225.2, "py": 2941.8}, {"loc_id": 2758, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1038.5, "z": 5237.3, "px": 2225.2, "py": 2941.8}, {"loc_id": 2759, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6671.2, "z": 408.0, "px": 909.4, "py": 2117.6}, {"loc_id": 2759, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -6671.2, "z": 408.0, "px": 909.4, "py": 2117.6}, {"loc_id": 2760, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -118.6, "z": -4466.5, "px": 2027.8, "py": 1285.7}, {"loc_id": 2760, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -118.6, "z": -4466.5, "px": 2027.8, "py": 1285.7}, {"loc_id": 2761, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5330.5, "z": 392.1, "px": 1138.3, "py": 2114.9}, {"loc_id": 2761, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -5330.5, "z": 392.1, "px": 1138.3, "py": 2114.9}, {"loc_id": 2762, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 812.4, "z": -2806.0, "px": 2186.6, "py": 1569.1}, {"loc_id": 2762, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 812.4, "z": -2806.0, "px": 2186.6, "py": 1569.1}, {"loc_id": 2763, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5844.2, "z": 69.6, "px": 3045.4, "py": 2059.9}, {"loc_id": 2763, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 5844.2, "z": 69.6, "px": 3045.4, "py": 2059.9}, {"loc_id": 2764, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 240.7, "z": -1191.2, "px": 2089.1, "py": 1844.7}, {"loc_id": 2764, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 240.7, "z": -1191.2, "px": 2089.1, "py": 1844.7}, {"loc_id": 2765, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1624.7, "z": -4298.3, "px": 1770.7, "py": 1314.4}, {"loc_id": 2765, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -1624.7, "z": -4298.3, "px": 1770.7, "py": 1314.4}, {"loc_id": 2766, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3087.0, "z": 1846.2, "px": 1521.2, "py": 2363.1}, {"loc_id": 2766, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3087.0, "z": 1846.2, "px": 1521.2, "py": 2363.1}, {"loc_id": 2767, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5311.5, "z": 526.4, "px": 1141.5, "py": 2137.8}, {"loc_id": 2767, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -5311.5, "z": 526.4, "px": 1141.5, "py": 2137.8}, {"loc_id": 2768, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2234.2, "z": -368.5, "px": 2429.3, "py": 1985.1}, {"loc_id": 2768, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2234.2, "z": -368.5, "px": 2429.3, "py": 1985.1}, {"loc_id": 2769, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2604.6, "z": 1493.0, "px": 1603.5, "py": 2302.8}, {"loc_id": 2769, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -2604.6, "z": 1493.0, "px": 1603.5, "py": 2302.8}, {"loc_id": 2770, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1939.0, "z": 1399.9, "px": 2378.9, "py": 2286.9}, {"loc_id": 2770, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1939.0, "z": 1399.9, "px": 2378.9, "py": 2286.9}, {"loc_id": 2771, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3414.4, "z": -1805.4, "px": 1465.3, "py": 1739.9}, {"loc_id": 2771, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3414.4, "z": -1805.4, "px": 1465.3, "py": 1739.9}, {"loc_id": 2772, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1076.6, "z": -2199.7, "px": 2231.7, "py": 1672.6}, {"loc_id": 2772, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1076.6, "z": -2199.7, "px": 2231.7, "py": 1672.6}, {"loc_id": 2773, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3645.8, "z": 6742.4, "px": 1425.8, "py": 3198.7}, {"loc_id": 2773, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3645.8, "z": 6742.4, "px": 1425.8, "py": 3198.7}, {"loc_id": 2774, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6632.3, "z": 3923.3, "px": 916.1, "py": 2717.6}, {"loc_id": 2774, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -6632.3, "z": 3923.3, "px": 916.1, "py": 2717.6}, {"loc_id": 2775, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1847.2, "z": -4083.3, "px": 1732.7, "py": 1351.1}, {"loc_id": 2775, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -1847.2, "z": -4083.3, "px": 1732.7, "py": 1351.1}, {"loc_id": 2776, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7348.6, "z": -3993.2, "px": 3302.2, "py": 1366.5}, {"loc_id": 2776, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 7348.6, "z": -3993.2, "px": 3302.2, "py": 1366.5}, {"loc_id": 2777, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5098.0, "z": -2073.6, "px": 2918.1, "py": 1694.1}, {"loc_id": 2777, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 5098.0, "z": -2073.6, "px": 2918.1, "py": 1694.1}, {"loc_id": 2778, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7728.5, "z": -337.3, "px": 3367.0, "py": 1990.4}, {"loc_id": 2778, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 7728.5, "z": -337.3, "px": 3367.0, "py": 1990.4}, {"loc_id": 2779, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9514.0, "z": 3015.3, "px": 424.3, "py": 2562.6}, {"loc_id": 2779, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -9514.0, "z": 3015.3, "px": 424.3, "py": 2562.6}, {"loc_id": 2780, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3827.2, "z": 855.3, "px": 2701.2, "py": 2194.0}, {"loc_id": 2780, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3827.2, "z": 855.3, "px": 2701.2, "py": 2194.0}, {"loc_id": 2781, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1202.0, "z": -1073.6, "px": 1842.9, "py": 1864.8}, {"loc_id": 2781, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -1202.0, "z": -1073.6, "px": 1842.9, "py": 1864.8}, {"loc_id": 2782, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5528.7, "z": -5201.5, "px": 1104.4, "py": 1160.3}, {"loc_id": 2782, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -5528.7, "z": -5201.5, "px": 1104.4, "py": 1160.3}, {"loc_id": 2783, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8189.0, "z": -2358.9, "px": 3445.6, "py": 1645.4}, {"loc_id": 2783, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 8189.0, "z": -2358.9, "px": 3445.6, "py": 1645.4}, {"loc_id": 2784, "loc_name": "StoneHouse3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2452.2, "z": -295.1, "px": 1629.5, "py": 1997.6}, {"loc_id": 2784, "loc_name": "StoneHouse3", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -2452.2, "z": -295.1, "px": 1629.5, "py": 1997.6}, {"loc_id": 2786, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 5900.5, "z": -559.0, "px": 3055.0, "py": 1952.6}, {"loc_id": 2788, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -2229.8, "z": 763.4, "px": 1667.4, "py": 2178.3}, {"loc_id": 2790, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2200.5, "z": 4904.3, "px": 2423.6, "py": 2885.0}, {"loc_id": 2791, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3842.3, "z": -2514.8, "px": 1392.2, "py": 1618.8}, {"loc_id": 2796, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -6404.3, "z": -370.9, "px": 955.0, "py": 1984.7}, {"loc_id": 2797, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 4919.5, "z": 112.9, "px": 2887.6, "py": 2067.3}, {"loc_id": 2799, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 7529.8, "z": -4331.4, "px": 3333.1, "py": 1308.8}, {"loc_id": 2802, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2262.8, "z": 6187.7, "px": 2434.2, "py": 3104.0}, {"loc_id": 2803, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 937.3, "z": -2737.0, "px": 2208.0, "py": 1580.9}, {"loc_id": 2805, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 555.2, "z": 5059.8, "px": 2142.8, "py": 2911.5}, {"loc_id": 2809, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 8261.4, "z": -3800.8, "px": 3457.9, "py": 1399.3}, {"loc_id": 2815, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3837.3, "z": -443.0, "px": 2702.9, "py": 1972.4}, {"loc_id": 2817, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1940.3, "z": -4465.4, "px": 2379.1, "py": 1285.9}, {"loc_id": 2819, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3896.4, "z": 1212.5, "px": 2713.0, "py": 2254.9}, {"loc_id": 2822, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1712.9, "z": -6318.5, "px": 2340.3, "py": 969.6}, {"loc_id": 2824, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3879.5, "z": -1323.6, "px": 2710.1, "py": 1822.1}, {"loc_id": 2825, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3146.8, "z": -2472.0, "px": 2585.1, "py": 1626.1}, {"loc_id": 2826, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3589.7, "z": 7159.0, "px": 1435.4, "py": 3269.8}, {"loc_id": 2827, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3416.5, "z": 3646.5, "px": 2631.1, "py": 2670.3}, {"loc_id": 2828, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3831.3, "z": 3863.1, "px": 2701.9, "py": 2707.3}, {"loc_id": 2829, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 5383.6, "z": 6421.8, "px": 2966.8, "py": 3144.0}, {"loc_id": 2831, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -7894.6, "z": -2518.3, "px": 700.7, "py": 1618.2}, {"loc_id": 2832, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -9212.9, "z": -1299.5, "px": 475.7, "py": 1826.2}, {"loc_id": 2833, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -5700.9, "z": -1751.7, "px": 1075.0, "py": 1749.0}, {"loc_id": 2835, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -133.0, "z": -4691.8, "px": 2025.3, "py": 1247.3}, {"loc_id": 2836, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2608.5, "z": -4552.6, "px": 2493.2, "py": 1271.0}, {"loc_id": 2837, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3368.2, "z": -4.8, "px": 2622.8, "py": 2047.2}, {"loc_id": 2839, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -5102.9, "z": 825.5, "px": 1177.1, "py": 2188.9}, {"loc_id": 2842, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -8362.9, "z": -2044.6, "px": 620.7, "py": 1699.1}, {"loc_id": 2843, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1926.1, "z": -710.5, "px": 2376.7, "py": 1926.7}, {"loc_id": 2848, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2695.6, "z": -3477.2, "px": 2508.0, "py": 1454.6}, {"loc_id": 2849, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 947.7, "z": 5040.2, "px": 2209.7, "py": 2908.2}, {"loc_id": 2850, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2381.4, "z": -4477.2, "px": 2454.4, "py": 1283.9}, {"loc_id": 2851, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2307.3, "z": -53.6, "px": 2441.8, "py": 2038.9}, {"loc_id": 2853, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 6028.9, "z": -338.5, "px": 3076.9, "py": 1990.2}, {"loc_id": 2854, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 5567.0, "z": -269.4, "px": 2998.1, "py": 2002.0}, {"loc_id": 2860, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 919.7, "z": -2200.1, "px": 2205.0, "py": 1672.5}, {"loc_id": 2863, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -5710.0, "z": -5006.1, "px": 1073.5, "py": 1193.6}, {"loc_id": 2865, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1023.1, "z": -5072.8, "px": 2222.6, "py": 1182.2}, {"loc_id": 2867, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2454.8, "z": -1294.1, "px": 2467.0, "py": 1827.1}, {"loc_id": 2871, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -7759.7, "z": -2599.4, "px": 723.7, "py": 1604.4}, {"loc_id": 2872, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3715.0, "z": -344.3, "px": 2682.0, "py": 1989.2}, {"loc_id": 2873, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 7191.4, "z": -4623.2, "px": 3275.3, "py": 1259.0}, {"loc_id": 2877, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3198.7, "z": 4166.8, "px": 1502.1, "py": 2759.1}, {"loc_id": 2878, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3022.2, "z": 4347.9, "px": 1532.2, "py": 2790.0}, {"loc_id": 2882, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2550.6, "z": 1261.0, "px": 2483.3, "py": 2263.2}, {"loc_id": 2883, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2221.4, "z": 3909.7, "px": 2427.1, "py": 2715.3}, {"loc_id": 2885, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 4021.4, "z": -399.2, "px": 2734.3, "py": 1979.9}, {"loc_id": 2886, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -1924.4, "z": -906.4, "px": 1719.6, "py": 1893.3}, {"loc_id": 2887, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1071.0, "z": 3342.1, "px": 2230.8, "py": 2618.4}, {"loc_id": 2888, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -9164.5, "z": 2888.3, "px": 483.9, "py": 2540.9}, {"loc_id": 2889, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -2347.6, "z": 4431.8, "px": 1647.3, "py": 2804.4}, {"loc_id": 2890, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 9725.1, "z": 1319.8, "px": 3707.8, "py": 2273.2}, {"loc_id": 2893, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 7120.9, "z": 1171.4, "px": 3263.3, "py": 2247.9}, {"loc_id": 2896, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -8913.1, "z": 2893.3, "px": 526.8, "py": 2541.8}, {"loc_id": 2897, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2967.2, "z": -4792.6, "px": 2554.4, "py": 1230.1}, {"loc_id": 2898, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -1337.4, "z": -1960.6, "px": 1819.8, "py": 1713.4}, {"loc_id": 2901, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -8724.3, "z": -519.4, "px": 559.1, "py": 1959.4}, {"loc_id": 2903, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 5996.5, "z": -6029.9, "px": 3071.4, "py": 1018.9}, {"loc_id": 2904, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -4985.1, "z": 5289.8, "px": 1197.2, "py": 2950.8}, {"loc_id": 2905, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3946.8, "z": 5064.5, "px": 2721.6, "py": 2912.3}, {"loc_id": 2906, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 9875.7, "z": -1529.8, "px": 3733.5, "py": 1786.9}, {"loc_id": 2908, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2088.4, "z": 773.8, "px": 2404.4, "py": 2180.1}, {"loc_id": 2911, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2313.1, "z": -4409.9, "px": 2442.8, "py": 1295.4}, {"loc_id": 2912, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -8893.7, "z": 2964.1, "px": 530.1, "py": 2553.9}, {"loc_id": 2913, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2686.1, "z": -4425.0, "px": 2506.4, "py": 1292.8}, {"loc_id": 2918, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1913.5, "z": -6202.2, "px": 2374.6, "py": 989.5}, {"loc_id": 2922, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -8554.0, "z": -1919.0, "px": 588.1, "py": 1720.5}, {"loc_id": 2925, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -5609.7, "z": -6322.3, "px": 1090.6, "py": 969.0}, {"loc_id": 2926, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -2311.3, "z": -12.9, "px": 1653.5, "py": 2045.8}, {"loc_id": 2929, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3111.3, "z": 1843.9, "px": 1517.0, "py": 2362.7}, {"loc_id": 2930, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -75.2, "z": -984.2, "px": 2035.2, "py": 1880.0}, {"loc_id": 2933, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2319.3, "z": 1403.5, "px": 2443.8, "py": 2287.5}, {"loc_id": 2937, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -7744.2, "z": 4312.7, "px": 726.3, "py": 2784.0}, {"loc_id": 2943, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2261.4, "z": -4376.4, "px": 2433.9, "py": 1301.1}, {"loc_id": 2944, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 11.2, "z": -4815.1, "px": 2049.9, "py": 1226.2}, {"loc_id": 2946, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2193.4, "z": 5058.6, "px": 2422.3, "py": 2911.3}, {"loc_id": 2948, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 9747.5, "z": -1486.3, "px": 3711.6, "py": 1794.3}, {"loc_id": 2949, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3241.9, "z": -2258.5, "px": 1494.7, "py": 1662.5}, {"loc_id": 2952, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 5057.2, "z": 2889.7, "px": 2911.1, "py": 2541.2}, {"loc_id": 2955, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3472.5, "z": 4244.0, "px": 1455.4, "py": 2772.3}, {"loc_id": 2958, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -7107.7, "z": -4884.5, "px": 835.0, "py": 1214.4}, {"loc_id": 2959, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3005.5, "z": 3822.0, "px": 2560.9, "py": 2700.3}, {"loc_id": 2962, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1023.3, "z": 5353.4, "px": 2222.6, "py": 2961.6}, {"loc_id": 2963, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3479.6, "z": 5355.9, "px": 2641.9, "py": 2962.1}, {"loc_id": 2966, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2166.1, "z": 1141.8, "px": 2417.7, "py": 2242.9}, {"loc_id": 2968, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1384.9, "z": -2379.3, "px": 2284.4, "py": 1641.9}, {"loc_id": 2969, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2251.8, "z": 3790.2, "px": 2432.3, "py": 2694.9}, {"loc_id": 2970, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -7759.7, "z": -4721.8, "px": 723.7, "py": 1242.1}, {"loc_id": 2974, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -2632.3, "z": -6130.7, "px": 1598.8, "py": 1001.7}, {"loc_id": 2975, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -4694.3, "z": 5636.3, "px": 1246.8, "py": 3009.9}, {"loc_id": 2976, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 8139.7, "z": -565.4, "px": 3437.2, "py": 1951.5}, {"loc_id": 2977, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -1789.0, "z": 4713.6, "px": 1742.7, "py": 2852.5}, {"loc_id": 2978, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 4016.8, "z": 3793.5, "px": 2733.5, "py": 2695.4}, {"loc_id": 2979, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -40.1, "z": -4734.4, "px": 2041.2, "py": 1240.0}, {"loc_id": 2980, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -4352.7, "z": 1580.2, "px": 1305.1, "py": 2317.7}, {"loc_id": 2981, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 4410.0, "z": -1027.4, "px": 2800.6, "py": 1872.7}, {"loc_id": 2984, "loc_name": "StoneHouse4", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -4819.2, "z": -3131.3, "px": 1225.5, "py": 1513.6}, {"loc_id": 2985, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -3528.3, "z": 3639.5, "px": 1445.8, "py": 2669.1}, {"loc_id": 2986, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 5485.0, "z": 256.7, "px": 2984.1, "py": 2091.8}, {"loc_id": 2987, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -2701.7, "z": -2961.3, "px": 1586.9, "py": 1542.6}, {"loc_id": 2988, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -1339.4, "z": -5099.1, "px": 1819.4, "py": 1177.8}, {"loc_id": 2989, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 5802.4, "z": -1069.0, "px": 3038.3, "py": 1865.6}, {"loc_id": 2990, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 3786.4, "z": -646.2, "px": 2694.2, "py": 1937.7}, {"loc_id": 2991, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 7220.7, "z": -968.1, "px": 3280.3, "py": 1882.8}, {"loc_id": 2992, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -3981.8, "z": 59.5, "px": 1368.4, "py": 2058.2}, {"loc_id": 2993, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 2440.9, "z": -3690.1, "px": 2464.6, "py": 1418.2}, {"loc_id": 2994, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 1471.4, "z": 3188.2, "px": 2299.1, "py": 2592.1}, {"loc_id": 2995, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -42.9, "z": -5765.1, "px": 2040.7, "py": 1064.1}, {"loc_id": 2996, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 954.1, "z": 4851.0, "px": 2210.8, "py": 2875.9}, {"loc_id": 2997, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -5903.0, "z": 2154.2, "px": 1040.6, "py": 2415.7}, {"loc_id": 2998, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 1348.5, "z": -4211.5, "px": 2278.1, "py": 1329.2}, {"loc_id": 2999, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -3217.6, "z": 2438.8, "px": 1498.9, "py": 2464.2}, {"loc_id": 3000, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 269.9, "z": 5500.0, "px": 2094.1, "py": 2986.7}, {"loc_id": 3001, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 4563.2, "z": -1416.9, "px": 2826.8, "py": 1806.2}, {"loc_id": 3002, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -3064.0, "z": 5178.4, "px": 1525.1, "py": 2931.8}, {"loc_id": 3003, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 5112.0, "z": 3093.0, "px": 2920.4, "py": 2575.9}, {"loc_id": 3004, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 3210.4, "z": -469.0, "px": 2595.9, "py": 1968.0}, {"loc_id": 3005, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -3134.7, "z": 5879.6, "px": 1513.0, "py": 3051.5}, {"loc_id": 3006, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -4370.1, "z": -5699.8, "px": 1302.2, "py": 1075.2}, {"loc_id": 3007, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 4014.1, "z": 4285.2, "px": 2733.1, "py": 2779.3}, {"loc_id": 3008, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -3826.3, "z": 2475.6, "px": 1395.0, "py": 2470.5}, {"loc_id": 3009, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 2988.6, "z": -2944.1, "px": 2558.1, "py": 1545.5}, {"loc_id": 3010, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -696.9, "z": 5121.4, "px": 1929.1, "py": 2922.1}, {"loc_id": 3011, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -4011.6, "z": 2956.5, "px": 1363.4, "py": 2552.6}, {"loc_id": 3012, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 6058.5, "z": 1594.3, "px": 3082.0, "py": 2320.1}, {"loc_id": 3013, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -5557.1, "z": 557.8, "px": 1099.6, "py": 2143.2}, {"loc_id": 3014, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 3911.0, "z": 1337.4, "px": 2715.5, "py": 2276.2}, {"loc_id": 3015, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 4728.4, "z": -1976.8, "px": 2855.0, "py": 1710.6}, {"loc_id": 3016, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -466.3, "z": -6255.7, "px": 1968.4, "py": 980.4}, {"loc_id": 3017, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 3091.6, "z": -5108.7, "px": 2575.6, "py": 1176.1}, {"loc_id": 3018, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -7315.4, "z": 2443.9, "px": 799.5, "py": 2465.1}, {"loc_id": 3019, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -7083.7, "z": -129.6, "px": 839.0, "py": 2025.9}, {"loc_id": 3020, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -4139.8, "z": -4283.5, "px": 1341.5, "py": 1316.9}, {"loc_id": 3021, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -898.2, "z": -3963.9, "px": 1894.7, "py": 1371.5}, {"loc_id": 3022, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 2421.8, "z": 4685.9, "px": 2461.3, "py": 2847.7}, {"loc_id": 3023, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 2351.1, "z": -4908.0, "px": 2449.3, "py": 1210.4}, {"loc_id": 3024, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -836.2, "z": 3976.5, "px": 1905.3, "py": 2726.7}, {"loc_id": 3025, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 5296.6, "z": -1581.4, "px": 2952.0, "py": 1778.1}, {"loc_id": 3026, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 4910.1, "z": -2505.8, "px": 2886.0, "py": 1620.3}, {"loc_id": 3027, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 5495.7, "z": -2190.2, "px": 2985.9, "py": 1674.2}, {"loc_id": 3028, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 6797.9, "z": 3029.4, "px": 3208.2, "py": 2565.0}, {"loc_id": 3029, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 1862.6, "z": 4548.5, "px": 2365.9, "py": 2824.3}, {"loc_id": 3030, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -3133.1, "z": 1350.0, "px": 1513.3, "py": 2278.4}, {"loc_id": 3031, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 1172.6, "z": 3839.6, "px": 2248.1, "py": 2703.3}, {"loc_id": 3032, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -6602.4, "z": -3598.2, "px": 921.2, "py": 1433.9}, {"loc_id": 3033, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": 6921.0, "z": 2069.5, "px": 3229.2, "py": 2401.2}, {"loc_id": 3034, "loc_name": "Ruin3", "item": "Container: TreasureChest_heath", "count": 1, "x": -3986.1, "z": 1201.6, "px": 1367.7, "py": 2253.1}, {"loc_id": 3035, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 2302.1, "z": 5886.9, "px": 2440.9, "py": 3052.7}, {"loc_id": 3035, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 2302.1, "z": 5886.9, "px": 2440.9, "py": 3052.7}, {"loc_id": 3036, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 3969.5, "z": -1152.7, "px": 2725.5, "py": 1851.3}, {"loc_id": 3036, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 3969.5, "z": -1152.7, "px": 2725.5, "py": 1851.3}, {"loc_id": 3038, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 4542.7, "z": 1025.5, "px": 2823.3, "py": 2223.0}, {"loc_id": 3038, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 4542.7, "z": 1025.5, "px": 2823.3, "py": 2223.0}, {"loc_id": 3039, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 4095.8, "z": -897.4, "px": 2747.0, "py": 1894.8}, {"loc_id": 3041, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 3264.9, "z": -319.5, "px": 2605.2, "py": 1993.5}, {"loc_id": 3041, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 3264.9, "z": -319.5, "px": 2605.2, "py": 1993.5}, {"loc_id": 3041, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 3264.9, "z": -319.5, "px": 2605.2, "py": 1993.5}, {"loc_id": 3042, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 5184.1, "z": -2368.4, "px": 2932.8, "py": 1643.8}, {"loc_id": 3042, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": 5184.1, "z": -2368.4, "px": 2932.8, "py": 1643.8}, {"loc_id": 3043, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -4863.5, "z": 3966.2, "px": 1218.0, "py": 2724.9}, {"loc_id": 3044, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -1024.1, "z": -4863.7, "px": 1873.2, "py": 1217.9}, {"loc_id": 3045, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 4928.6, "z": 1279.0, "px": 2889.1, "py": 2266.3}, {"loc_id": 3046, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 4289.0, "z": 5185.2, "px": 2780.0, "py": 2932.9}, {"loc_id": 3046, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 4289.0, "z": 5185.2, "px": 2780.0, "py": 2932.9}, {"loc_id": 3047, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -1985.3, "z": 3584.1, "px": 1709.2, "py": 2659.7}, {"loc_id": 3048, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 1536.3, "z": -4286.4, "px": 2310.2, "py": 1316.5}, {"loc_id": 3048, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 1, "x": 1536.3, "z": -4286.4, "px": 2310.2, "py": 1316.5}, {"loc_id": 3049, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 3265.8, "z": -1407.4, "px": 2605.4, "py": 1807.8}, {"loc_id": 3049, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 1, "x": 3265.8, "z": -1407.4, "px": 2605.4, "py": 1807.8}, {"loc_id": 3049, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 1, "x": 3265.8, "z": -1407.4, "px": 2605.4, "py": 1807.8}, {"loc_id": 3050, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 766.5, "z": -7231.9, "px": 2178.8, "py": 813.8}, {"loc_id": 3050, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 1, "x": 766.5, "z": -7231.9, "px": 2178.8, "py": 813.8}, {"loc_id": 3052, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": -6206.2, "z": 1408.8, "px": 988.8, "py": 2288.4}, {"loc_id": 3053, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -6464.8, "z": -3839.8, "px": 944.7, "py": 1392.7}, {"loc_id": 3053, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 1, "x": -6464.8, "z": -3839.8, "px": 944.7, "py": 1392.7}, {"loc_id": 3056, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -4993.1, "z": 3711.1, "px": 1195.8, "py": 2681.4}, {"loc_id": 3056, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -4993.1, "z": 3711.1, "px": 1195.8, "py": 2681.4}, {"loc_id": 3057, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -1534.8, "z": -6655.5, "px": 1786.1, "py": 912.1}, {"loc_id": 3057, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 1, "x": -1534.8, "z": -6655.5, "px": 1786.1, "py": 912.1}, {"loc_id": 3058, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": -4290.0, "z": 959.0, "px": 1315.8, "py": 2211.7}, {"loc_id": 3058, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -4290.0, "z": 959.0, "px": 1315.8, "py": 2211.7}, {"loc_id": 3059, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -62.5, "z": -4926.3, "px": 2037.3, "py": 1207.2}, {"loc_id": 3060, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -5758.6, "z": -1345.1, "px": 1065.2, "py": 1818.4}, {"loc_id": 3061, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 1, "x": -4223.5, "z": 3007.5, "px": 1327.2, "py": 2561.3}, {"loc_id": 3062, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 1, "x": -1215.9, "z": -4353.4, "px": 1840.5, "py": 1305.0}, {"loc_id": 3063, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -128.6, "z": -5822.9, "px": 2026.1, "py": 1054.2}, {"loc_id": 3064, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -5950.0, "z": -4991.2, "px": 1032.5, "py": 1196.2}, {"loc_id": 3064, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -5950.0, "z": -4991.2, "px": 1032.5, "py": 1196.2}, {"loc_id": 3065, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -4544.0, "z": -5568.1, "px": 1272.5, "py": 1097.7}, {"loc_id": 3065, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -4544.0, "z": -5568.1, "px": 1272.5, "py": 1097.7}, {"loc_id": 3065, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -4544.0, "z": -5568.1, "px": 1272.5, "py": 1097.7}, {"loc_id": 3065, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 1, "x": -4544.0, "z": -5568.1, "px": 1272.5, "py": 1097.7}, {"loc_id": 3067, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -2816.7, "z": 2177.2, "px": 1567.3, "py": 2419.6}, {"loc_id": 3067, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -2816.7, "z": 2177.2, "px": 1567.3, "py": 2419.6}, {"loc_id": 3067, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -2816.7, "z": 2177.2, "px": 1567.3, "py": 2419.6}, {"loc_id": 3068, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -5185.2, "z": -1022.1, "px": 1163.1, "py": 1873.6}, {"loc_id": 3069, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": -3393.3, "z": 2305.2, "px": 1468.9, "py": 2441.4}, {"loc_id": 3069, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -3393.3, "z": 2305.2, "px": 1468.9, "py": 2441.4}, {"loc_id": 3070, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -2112.0, "z": 3137.1, "px": 1687.6, "py": 2583.4}, {"loc_id": 3070, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 1, "x": -2112.0, "z": 3137.1, "px": 1687.6, "py": 2583.4}, {"loc_id": 3071, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 3776.6, "z": 1729.7, "px": 2692.5, "py": 2343.2}, {"loc_id": 3071, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 3776.6, "z": 1729.7, "px": 2692.5, "py": 2343.2}, {"loc_id": 3071, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 3776.6, "z": 1729.7, "px": 2692.5, "py": 2343.2}, {"loc_id": 3073, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -3968.4, "z": 1150.8, "px": 1370.7, "py": 2244.4}, {"loc_id": 3073, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -3968.4, "z": 1150.8, "px": 1370.7, "py": 2244.4}, {"loc_id": 3073, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": -3968.4, "z": 1150.8, "px": 1370.7, "py": 2244.4}, {"loc_id": 3074, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 6720.6, "z": 2302.1, "px": 3195.0, "py": 2440.9}, {"loc_id": 3074, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 1, "x": 6720.6, "z": 2302.1, "px": 3195.0, "py": 2440.9}, {"loc_id": 3075, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -6209.3, "z": -4736.0, "px": 988.3, "py": 1239.7}, {"loc_id": 3075, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -6209.3, "z": -4736.0, "px": 988.3, "py": 1239.7}, {"loc_id": 3076, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 6849.0, "z": -2369.3, "px": 3216.9, "py": 1643.6}, {"loc_id": 3077, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 5889.6, "z": -4990.1, "px": 3053.2, "py": 1196.4}, {"loc_id": 3079, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 4415.1, "z": -1345.8, "px": 2801.5, "py": 1818.3}, {"loc_id": 3081, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -3137.5, "z": 5951.5, "px": 1512.5, "py": 3063.7}, {"loc_id": 3082, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -6017.1, "z": 2176.9, "px": 1021.1, "py": 2419.5}, {"loc_id": 3082, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 1, "x": -6017.1, "z": 2176.9, "px": 1021.1, "py": 2419.5}, {"loc_id": 3083, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 2753.6, "z": -5953.6, "px": 2517.9, "py": 1031.9}, {"loc_id": 3083, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": 2753.6, "z": -5953.6, "px": 2517.9, "py": 1031.9}, {"loc_id": 3084, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -3071.2, "z": 1215.7, "px": 1523.8, "py": 2255.5}, {"loc_id": 3085, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -4543.6, "z": -6143.1, "px": 1272.6, "py": 999.6}, {"loc_id": 3085, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 1, "x": -4543.6, "z": -6143.1, "px": 1272.6, "py": 999.6}, {"loc_id": 3085, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -4543.6, "z": -6143.1, "px": 1272.6, "py": 999.6}, {"loc_id": 3085, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": -4543.6, "z": -6143.1, "px": 1272.6, "py": 999.6}, {"loc_id": 3086, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 4032.1, "z": -4990.2, "px": 2736.1, "py": 1196.3}, {"loc_id": 3087, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 1024.6, "z": 4097.5, "px": 2222.9, "py": 2747.3}, {"loc_id": 3088, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -3647.2, "z": 2177.6, "px": 1425.5, "py": 2419.6}, {"loc_id": 3088, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -3647.2, "z": 2177.6, "px": 1425.5, "py": 2419.6}, {"loc_id": 3089, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 2750.5, "z": -5567.8, "px": 2517.4, "py": 1097.8}, {"loc_id": 3089, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 2750.5, "z": -5567.8, "px": 2517.4, "py": 1097.8}, {"loc_id": 3090, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 1022.6, "z": 5824.3, "px": 2222.5, "py": 3042.0}, {"loc_id": 3090, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 1022.6, "z": 5824.3, "px": 2222.5, "py": 3042.0}, {"loc_id": 3092, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -4289.7, "z": -6142.8, "px": 1315.9, "py": 999.6}, {"loc_id": 3092, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -4289.7, "z": -6142.8, "px": 1315.9, "py": 999.6}, {"loc_id": 3092, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": -4289.7, "z": -6142.8, "px": 1315.9, "py": 999.6}, {"loc_id": 3092, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -4289.7, "z": -6142.8, "px": 1315.9, "py": 999.6}, {"loc_id": 3094, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -641.3, "z": 4094.2, "px": 1938.6, "py": 2746.7}, {"loc_id": 3094, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -641.3, "z": 4094.2, "px": 1938.6, "py": 2746.7}, {"loc_id": 3095, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -7681.2, "z": -1983.8, "px": 737.1, "py": 1709.4}, {"loc_id": 3095, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -7681.2, "z": -1983.8, "px": 737.1, "py": 1709.4}, {"loc_id": 3096, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 1982.5, "z": 7040.4, "px": 2386.3, "py": 3249.6}, {"loc_id": 3096, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": 1982.5, "z": 7040.4, "px": 2386.3, "py": 3249.6}, {"loc_id": 3098, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 3136.5, "z": 2750.3, "px": 2583.3, "py": 2517.4}, {"loc_id": 3099, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 3776.9, "z": 1407.8, "px": 2692.6, "py": 2288.3}, {"loc_id": 3099, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 3776.9, "z": 1407.8, "px": 2692.6, "py": 2288.3}, {"loc_id": 3100, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -704.8, "z": -6207.4, "px": 1927.7, "py": 988.6}, {"loc_id": 3101, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -3647.2, "z": -1599.4, "px": 1425.5, "py": 1775.0}, {"loc_id": 3101, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -3647.2, "z": -1599.4, "px": 1425.5, "py": 1775.0}, {"loc_id": 3101, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -3647.2, "z": -1599.4, "px": 1425.5, "py": 1775.0}, {"loc_id": 3103, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 1, "x": 2238.9, "z": -4798.2, "px": 2430.1, "py": 1229.1}, {"loc_id": 3103, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 2238.9, "z": -4798.2, "px": 2430.1, "py": 1229.1}, {"loc_id": 3104, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -4094.7, "z": -4352.5, "px": 1349.2, "py": 1305.2}, {"loc_id": 3104, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -4094.7, "z": -4352.5, "px": 1349.2, "py": 1305.2}, {"loc_id": 3105, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -2880.0, "z": 5761.0, "px": 1556.5, "py": 3031.2}, {"loc_id": 3105, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -2880.0, "z": 5761.0, "px": 1556.5, "py": 3031.2}, {"loc_id": 3106, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 5758.1, "z": -1023.1, "px": 3030.7, "py": 1873.4}, {"loc_id": 3106, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 5758.1, "z": -1023.1, "px": 3030.7, "py": 1873.4}, {"loc_id": 3107, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 1664.6, "z": 3393.8, "px": 2332.1, "py": 2627.2}, {"loc_id": 3108, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -3646.9, "z": 2561.5, "px": 1425.6, "py": 2485.2}, {"loc_id": 3109, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 127.2, "z": 3518.4, "px": 2069.7, "py": 2648.5}, {"loc_id": 3109, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 127.2, "z": 3518.4, "px": 2069.7, "py": 2648.5}, {"loc_id": 3110, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -1918.3, "z": -3072.8, "px": 1720.6, "py": 1523.6}, {"loc_id": 3110, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -1918.3, "z": -3072.8, "px": 1720.6, "py": 1523.6}, {"loc_id": 3111, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 5312.2, "z": -1921.8, "px": 2954.6, "py": 1720.0}, {"loc_id": 3111, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 5312.2, "z": -1921.8, "px": 2954.6, "py": 1720.0}, {"loc_id": 3112, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 3009.4, "z": -1473.1, "px": 2561.6, "py": 1796.6}, {"loc_id": 3112, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 3009.4, "z": -1473.1, "px": 2561.6, "py": 1796.6}, {"loc_id": 3113, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 1984.9, "z": 5057.2, "px": 2386.8, "py": 2911.1}, {"loc_id": 3113, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 1984.9, "z": 5057.2, "px": 2386.8, "py": 2911.1}, {"loc_id": 3113, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 1, "x": 1984.9, "z": 5057.2, "px": 2386.8, "py": 2911.1}, {"loc_id": 3114, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -4097.1, "z": -2687.0, "px": 1348.8, "py": 1589.4}, {"loc_id": 3114, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -4097.1, "z": -2687.0, "px": 1348.8, "py": 1589.4}, {"loc_id": 3116, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 1279.3, "z": 3262.7, "px": 2266.3, "py": 2604.8}, {"loc_id": 3116, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": 1279.3, "z": 3262.7, "px": 2266.3, "py": 2604.8}, {"loc_id": 3117, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 320.4, "z": 4033.3, "px": 2102.7, "py": 2736.3}, {"loc_id": 3117, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 320.4, "z": 4033.3, "px": 2102.7, "py": 2736.3}, {"loc_id": 3120, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 960.4, "z": -3967.4, "px": 2211.9, "py": 1370.9}, {"loc_id": 3120, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 1, "x": 960.4, "z": -3967.4, "px": 2211.9, "py": 1370.9}, {"loc_id": 3121, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -2816.6, "z": -7168.1, "px": 1567.3, "py": 824.6}, {"loc_id": 3122, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 959.4, "z": 4609.2, "px": 2211.7, "py": 2834.6}, {"loc_id": 3123, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -4801.2, "z": 2239.1, "px": 1228.6, "py": 2430.1}, {"loc_id": 3123, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -4801.2, "z": 2239.1, "px": 1228.6, "py": 2430.1}, {"loc_id": 3123, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -4801.2, "z": 2239.1, "px": 1228.6, "py": 2430.1}, {"loc_id": 3123, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -4801.2, "z": 2239.1, "px": 1228.6, "py": 2430.1}, {"loc_id": 3124, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -3134.6, "z": -2367.8, "px": 1513.0, "py": 1643.9}, {"loc_id": 3126, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 7294.1, "z": 1022.7, "px": 3292.9, "py": 2222.5}, {"loc_id": 3126, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 1, "x": 7294.1, "z": 1022.7, "px": 3292.9, "py": 2222.5}, {"loc_id": 3127, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": 5759.4, "z": -4737.0, "px": 3030.9, "py": 1239.6}, {"loc_id": 3128, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 2878.7, "z": 5118.9, "px": 2539.3, "py": 2921.6}, {"loc_id": 3128, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 2878.7, "z": 5118.9, "px": 2539.3, "py": 2921.6}, {"loc_id": 3129, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 2816.9, "z": -3392.4, "px": 2528.8, "py": 1469.0}, {"loc_id": 3129, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 2816.9, "z": -3392.4, "px": 2528.8, "py": 1469.0}, {"loc_id": 3130, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 7166.7, "z": 1791.3, "px": 3271.1, "py": 2353.7}, {"loc_id": 3130, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 7166.7, "z": 1791.3, "px": 3271.1, "py": 2353.7}, {"loc_id": 3130, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 7166.7, "z": 1791.3, "px": 3271.1, "py": 2353.7}, {"loc_id": 3131, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -4031.6, "z": 63.7, "px": 1359.9, "py": 2058.9}, {"loc_id": 3131, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 1, "x": -4031.6, "z": 63.7, "px": 1359.9, "py": 2058.9}, {"loc_id": 3131, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 1, "x": -4031.6, "z": 63.7, "px": 1359.9, "py": 2058.9}, {"loc_id": 3132, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 2369.7, "z": -2238.3, "px": 2452.4, "py": 1666.0}, {"loc_id": 3133, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 3840.8, "z": 4158.3, "px": 2703.5, "py": 2757.7}, {"loc_id": 3134, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 4606.7, "z": -1534.5, "px": 2834.2, "py": 1786.1}, {"loc_id": 3134, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 4606.7, "z": -1534.5, "px": 2834.2, "py": 1786.1}, {"loc_id": 3135, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": 5634.0, "z": -2047.5, "px": 3009.5, "py": 1698.6}, {"loc_id": 3136, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -1728.2, "z": -4735.4, "px": 1753.1, "py": 1239.8}, {"loc_id": 3136, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -1728.2, "z": -4735.4, "px": 1753.1, "py": 1239.8}, {"loc_id": 3137, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 4862.4, "z": 5057.9, "px": 2877.8, "py": 2911.2}, {"loc_id": 3139, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 2879.9, "z": -3647.5, "px": 2539.5, "py": 1425.5}, {"loc_id": 3139, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": 2879.9, "z": -3647.5, "px": 2539.5, "py": 1425.5}, {"loc_id": 3139, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 2879.9, "z": -3647.5, "px": 2539.5, "py": 1425.5}, {"loc_id": 3140, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -2879.7, "z": 831.4, "px": 1556.5, "py": 2189.9}, {"loc_id": 3140, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -2879.7, "z": 831.4, "px": 1556.5, "py": 2189.9}, {"loc_id": 3141, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 1857.8, "z": 3713.0, "px": 2365.1, "py": 2681.7}, {"loc_id": 3142, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 3071.4, "z": 191.8, "px": 2572.2, "py": 2080.7}, {"loc_id": 3143, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 3969.5, "z": -639.1, "px": 2725.5, "py": 1938.9}, {"loc_id": 3144, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -4032.3, "z": 3582.0, "px": 1359.8, "py": 2659.3}, {"loc_id": 3144, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": -4032.3, "z": 3582.0, "px": 1359.8, "py": 2659.3}, {"loc_id": 3144, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -4032.3, "z": 3582.0, "px": 1359.8, "py": 2659.3}, {"loc_id": 3146, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 2687.8, "z": 7167.6, "px": 2506.7, "py": 3271.3}, {"loc_id": 3146, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 2687.8, "z": 7167.6, "px": 2506.7, "py": 3271.3}, {"loc_id": 3147, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -7422.2, "z": -2176.9, "px": 781.3, "py": 1676.5}, {"loc_id": 3148, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 7166.5, "z": -958.4, "px": 3271.1, "py": 1884.4}, {"loc_id": 3148, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 7166.5, "z": -958.4, "px": 3271.1, "py": 1884.4}, {"loc_id": 3150, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 4160.5, "z": 1473.5, "px": 2758.1, "py": 2299.5}, {"loc_id": 3151, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 4926.9, "z": -1279.3, "px": 2888.9, "py": 1829.7}, {"loc_id": 3152, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -2494.3, "z": -1790.4, "px": 1622.3, "py": 1742.4}, {"loc_id": 3153, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -4353.2, "z": 1984.7, "px": 1305.1, "py": 2386.7}, {"loc_id": 3153, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -4353.2, "z": 1984.7, "px": 1305.1, "py": 2386.7}, {"loc_id": 3154, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 1, "x": -961.8, "z": 4159.9, "px": 1883.9, "py": 2758.0}, {"loc_id": 3154, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -961.8, "z": 4159.9, "px": 1883.9, "py": 2758.0}, {"loc_id": 3154, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -961.8, "z": 4159.9, "px": 1883.9, "py": 2758.0}, {"loc_id": 3154, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -961.8, "z": 4159.9, "px": 1883.9, "py": 2758.0}, {"loc_id": 3154, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -961.8, "z": 4159.9, "px": 1883.9, "py": 2758.0}, {"loc_id": 3156, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 1, "x": 5568.9, "z": -1793.4, "px": 2998.4, "py": 1741.9}, {"loc_id": 3156, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": 5568.9, "z": -1793.4, "px": 2998.4, "py": 1741.9}, {"loc_id": 3157, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 4158.4, "z": 1086.2, "px": 2757.7, "py": 2233.4}, {"loc_id": 3157, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": 4158.4, "z": 1086.2, "px": 2757.7, "py": 2233.4}, {"loc_id": 3158, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 3327.5, "z": -1665.3, "px": 2615.9, "py": 1763.8}, {"loc_id": 3158, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 3327.5, "z": -1665.3, "px": 2615.9, "py": 1763.8}, {"loc_id": 3158, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": 3327.5, "z": -1665.3, "px": 2615.9, "py": 1763.8}, {"loc_id": 3159, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -2239.2, "z": -1919.6, "px": 1665.8, "py": 1720.4}, {"loc_id": 3160, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": -4481.0, "z": -5823.9, "px": 1283.2, "py": 1054.1}, {"loc_id": 3160, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -4481.0, "z": -5823.9, "px": 1283.2, "py": 1054.1}, {"loc_id": 3162, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 2944.5, "z": 4287.1, "px": 2550.5, "py": 2779.7}, {"loc_id": 3162, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 2944.5, "z": 4287.1, "px": 2550.5, "py": 2779.7}, {"loc_id": 3163, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 4927.2, "z": 3326.8, "px": 2888.9, "py": 2615.8}, {"loc_id": 3164, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 2370.0, "z": -5121.3, "px": 2452.5, "py": 1174.0}, {"loc_id": 3164, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 2370.0, "z": -5121.3, "px": 2452.5, "py": 1174.0}, {"loc_id": 3164, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 1, "x": 2370.0, "z": -5121.3, "px": 2452.5, "py": 1174.0}, {"loc_id": 3164, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": 2370.0, "z": -5121.3, "px": 2452.5, "py": 1174.0}, {"loc_id": 3165, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -2496.7, "z": 3073.0, "px": 1621.9, "py": 2572.5}, {"loc_id": 3165, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": -2496.7, "z": 3073.0, "px": 1621.9, "py": 2572.5}, {"loc_id": 3166, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -2368.6, "z": 4031.0, "px": 1643.8, "py": 2736.0}, {"loc_id": 3166, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -2368.6, "z": 4031.0, "px": 1643.8, "py": 2736.0}, {"loc_id": 3167, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 2814.4, "z": 1151.4, "px": 2528.3, "py": 2244.5}, {"loc_id": 3167, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 1, "x": 2814.4, "z": 1151.4, "px": 2528.3, "py": 2244.5}, {"loc_id": 3167, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 2814.4, "z": 1151.4, "px": 2528.3, "py": 2244.5}, {"loc_id": 3168, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 1, "x": 3712.5, "z": -448.2, "px": 2681.6, "py": 1971.5}, {"loc_id": 3170, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 4735.2, "z": -2366.2, "px": 2856.1, "py": 1644.2}, {"loc_id": 3171, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -1023.3, "z": -6271.8, "px": 1873.4, "py": 977.6}, {"loc_id": 3171, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": -1023.3, "z": -6271.8, "px": 1873.4, "py": 977.6}, {"loc_id": 3171, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -1023.3, "z": -6271.8, "px": 1873.4, "py": 977.6}, {"loc_id": 3173, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 4096.5, "z": 4351.2, "px": 2747.1, "py": 2790.6}, {"loc_id": 3174, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -1601.6, "z": -3134.8, "px": 1774.7, "py": 1513.0}, {"loc_id": 3174, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -1601.6, "z": -3134.8, "px": 1774.7, "py": 1513.0}, {"loc_id": 3174, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 1, "x": -1601.6, "z": -3134.8, "px": 1774.7, "py": 1513.0}, {"loc_id": 3175, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 1, "x": -5185.1, "z": -2624.5, "px": 1163.1, "py": 1600.1}, {"loc_id": 3176, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 318.1, "z": 5502.9, "px": 2102.3, "py": 2987.2}, {"loc_id": 3177, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 6784.1, "z": 2881.4, "px": 3205.8, "py": 2539.8}, {"loc_id": 3178, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 4673.3, "z": 2751.8, "px": 2845.6, "py": 2517.6}, {"loc_id": 3178, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 4673.3, "z": 2751.8, "px": 2845.6, "py": 2517.6}, {"loc_id": 3178, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 4673.3, "z": 2751.8, "px": 2845.6, "py": 2517.6}, {"loc_id": 3178, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 1, "x": 4673.3, "z": 2751.8, "px": 2845.6, "py": 2517.6}, {"loc_id": 3179, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -385.1, "z": -3713.6, "px": 1982.3, "py": 1414.2}, {"loc_id": 3179, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -385.1, "z": -3713.6, "px": 1982.3, "py": 1414.2}, {"loc_id": 3180, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 2113.9, "z": -2497.2, "px": 2408.8, "py": 1621.8}, {"loc_id": 3180, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": 2113.9, "z": -2497.2, "px": 2408.8, "py": 1621.8}, {"loc_id": 3180, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 2113.9, "z": -2497.2, "px": 2408.8, "py": 1621.8}, {"loc_id": 3181, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 2110.8, "z": 6080.7, "px": 2408.2, "py": 3085.8}, {"loc_id": 3182, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": 5184.7, "z": 4800.3, "px": 2932.9, "py": 2867.3}, {"loc_id": 3184, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -961.6, "z": 5057.4, "px": 1883.9, "py": 2911.1}, {"loc_id": 3185, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 3839.5, "z": 4673.0, "px": 2703.3, "py": 2845.5}, {"loc_id": 3186, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 4673.3, "z": -1086.3, "px": 2845.6, "py": 1862.6}, {"loc_id": 3186, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 4673.3, "z": -1086.3, "px": 2845.6, "py": 1862.6}, {"loc_id": 3186, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 4673.3, "z": -1086.3, "px": 2845.6, "py": 1862.6}, {"loc_id": 3187, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -2942.1, "z": -2560.2, "px": 1545.9, "py": 1611.1}, {"loc_id": 3187, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -2942.1, "z": -2560.2, "px": 1545.9, "py": 1611.1}, {"loc_id": 3188, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -5502.5, "z": 5377.2, "px": 1108.9, "py": 2965.7}, {"loc_id": 3188, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -5502.5, "z": 5377.2, "px": 1108.9, "py": 2965.7}, {"loc_id": 3189, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": 2622.6, "z": -7361.3, "px": 2495.6, "py": 791.7}, {"loc_id": 3190, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 1, "x": -1854.6, "z": 3328.0, "px": 1731.5, "py": 2616.0}, {"loc_id": 3191, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 6016.2, "z": 1601.9, "px": 3074.8, "py": 2321.4}, {"loc_id": 3191, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 6016.2, "z": 1601.9, "px": 3074.8, "py": 2321.4}, {"loc_id": 3191, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 1, "x": 6016.2, "z": 1601.9, "px": 3074.8, "py": 2321.4}, {"loc_id": 3192, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 1664.9, "z": 7424.3, "px": 2332.1, "py": 3315.1}, {"loc_id": 3193, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 1982.3, "z": -3329.8, "px": 2386.3, "py": 1479.7}, {"loc_id": 3194, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -3327.1, "z": -1663.5, "px": 1480.2, "py": 1764.1}, {"loc_id": 3195, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -4928.4, "z": -1985.0, "px": 1206.9, "py": 1709.2}, {"loc_id": 3197, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 3198.6, "z": 4350.7, "px": 2593.9, "py": 2790.5}, {"loc_id": 3197, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": 3198.6, "z": 4350.7, "px": 2593.9, "py": 2790.5}, {"loc_id": 3198, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": -3904.8, "z": 3006.7, "px": 1381.6, "py": 2561.1}, {"loc_id": 3198, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -3904.8, "z": 3006.7, "px": 1381.6, "py": 2561.1}, {"loc_id": 3198, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -3904.8, "z": 3006.7, "px": 1381.6, "py": 2561.1}, {"loc_id": 3199, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -3646.6, "z": 3583.7, "px": 1425.6, "py": 2659.6}, {"loc_id": 3199, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": -3646.6, "z": 3583.7, "px": 1425.6, "py": 2659.6}, {"loc_id": 3200, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 513.9, "z": -7296.5, "px": 2135.7, "py": 802.7}, {"loc_id": 3200, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 513.9, "z": -7296.5, "px": 2135.7, "py": 802.7}, {"loc_id": 3200, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 1, "x": 513.9, "z": -7296.5, "px": 2135.7, "py": 802.7}, {"loc_id": 3201, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": -1280.2, "z": -6655.9, "px": 1829.5, "py": 912.1}, {"loc_id": 3201, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -1280.2, "z": -6655.9, "px": 1829.5, "py": 912.1}, {"loc_id": 3201, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -1280.2, "z": -6655.9, "px": 1829.5, "py": 912.1}, {"loc_id": 3202, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": 2688.2, "z": -5121.5, "px": 2506.8, "py": 1173.9}, {"loc_id": 3203, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 3519.8, "z": 3262.7, "px": 2648.7, "py": 2604.8}, {"loc_id": 3203, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 3519.8, "z": 3262.7, "px": 2648.7, "py": 2604.8}, {"loc_id": 3203, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": 3519.8, "z": 3262.7, "px": 2648.7, "py": 2604.8}, {"loc_id": 3204, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -4416.6, "z": 6334.7, "px": 1294.2, "py": 3129.1}, {"loc_id": 3205, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -2495.7, "z": -3007.5, "px": 1622.1, "py": 1534.7}, {"loc_id": 3206, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -3649.1, "z": -1920.6, "px": 1425.2, "py": 1720.2}, {"loc_id": 3206, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -3649.1, "z": -1920.6, "px": 1425.2, "py": 1720.2}, {"loc_id": 3207, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -4928.9, "z": -2688.9, "px": 1206.8, "py": 1589.1}, {"loc_id": 3207, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -4928.9, "z": -2688.9, "px": 1206.8, "py": 1589.1}, {"loc_id": 3208, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 1983.3, "z": 4098.0, "px": 2386.5, "py": 2747.4}, {"loc_id": 3209, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -5184.6, "z": -1921.3, "px": 1163.2, "py": 1720.1}, {"loc_id": 3209, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -5184.6, "z": -1921.3, "px": 1163.2, "py": 1720.1}, {"loc_id": 3209, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -5184.6, "z": -1921.3, "px": 1163.2, "py": 1720.1}, {"loc_id": 3210, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -3584.7, "z": 7105.2, "px": 1436.2, "py": 3260.6}, {"loc_id": 3210, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -3584.7, "z": 7105.2, "px": 1436.2, "py": 3260.6}, {"loc_id": 3210, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -3584.7, "z": 7105.2, "px": 1436.2, "py": 3260.6}, {"loc_id": 3210, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 1, "x": -3584.7, "z": 7105.2, "px": 1436.2, "py": 3260.6}, {"loc_id": 3211, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 2048.1, "z": 4415.5, "px": 2397.5, "py": 2801.6}, {"loc_id": 3211, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 2048.1, "z": 4415.5, "px": 2397.5, "py": 2801.6}, {"loc_id": 3213, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -6656.3, "z": -3646.2, "px": 912.0, "py": 1425.7}, {"loc_id": 3214, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -3134.9, "z": 7103.2, "px": 1513.0, "py": 3260.3}, {"loc_id": 3214, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinArcher", "count": 1, "x": -3134.9, "z": 7103.2, "px": 1513.0, "py": 3260.3}, {"loc_id": 3214, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -3134.9, "z": 7103.2, "px": 1513.0, "py": 3260.3}, {"loc_id": 3215, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -3198.4, "z": 4030.7, "px": 1502.1, "py": 2735.9}, {"loc_id": 3215, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -3198.4, "z": 4030.7, "px": 1502.1, "py": 2735.9}, {"loc_id": 3217, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -5502.3, "z": 641.6, "px": 1108.9, "py": 2157.5}, {"loc_id": 3218, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 6273.8, "z": 1535.8, "px": 3118.7, "py": 2310.1}, {"loc_id": 3219, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -2942.9, "z": 4096.3, "px": 1545.7, "py": 2747.1}, {"loc_id": 3220, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -2750.4, "z": -3711.7, "px": 1578.6, "py": 1414.5}, {"loc_id": 3221, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 7105.1, "z": 2113.2, "px": 3260.6, "py": 2408.7}, {"loc_id": 3222, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 896.5, "z": 3584.0, "px": 2201.0, "py": 2659.7}, {"loc_id": 3222, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": 896.5, "z": 3584.0, "px": 2201.0, "py": 2659.7}, {"loc_id": 3223, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -5888.9, "z": 961.8, "px": 1043.0, "py": 2212.1}, {"loc_id": 3223, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -5888.9, "z": 961.8, "px": 1043.0, "py": 2212.1}, {"loc_id": 3224, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -5823.9, "z": 4351.9, "px": 1054.1, "py": 2790.7}, {"loc_id": 3225, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 2945.0, "z": -5056.6, "px": 2550.6, "py": 1185.0}, {"loc_id": 3226, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": 1342.7, "z": 5057.3, "px": 2277.2, "py": 2911.1}, {"loc_id": 3227, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 769.6, "z": 4094.1, "px": 2179.3, "py": 2746.7}, {"loc_id": 3228, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 3969.0, "z": 895.5, "px": 2725.4, "py": 2200.8}, {"loc_id": 3228, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 3969.0, "z": 895.5, "px": 2725.4, "py": 2200.8}, {"loc_id": 3229, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -5441.0, "z": 383.3, "px": 1119.4, "py": 2113.4}, {"loc_id": 3229, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": -5441.0, "z": 383.3, "px": 1119.4, "py": 2113.4}, {"loc_id": 3230, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": -4993.4, "z": 3007.5, "px": 1195.8, "py": 2561.3}, {"loc_id": 3230, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 1, "x": -4993.4, "z": 3007.5, "px": 1195.8, "py": 2561.3}, {"loc_id": 3231, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 4735.4, "z": -2944.6, "px": 2856.2, "py": 1545.5}, {"loc_id": 3231, "loc_name": "GoblinCamp2", "item": "Pickable: GoblinTotem", "count": 1, "x": 4735.4, "z": -2944.6, "px": 2856.2, "py": 1545.5}, {"loc_id": 3231, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 4735.4, "z": -2944.6, "px": 2856.2, "py": 1545.5}, {"loc_id": 3232, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -4610.0, "z": -575.2, "px": 1261.2, "py": 1949.8}, {"loc_id": 3232, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": -4610.0, "z": -575.2, "px": 1261.2, "py": 1949.8}, {"loc_id": 3232, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": -4610.0, "z": -575.2, "px": 1261.2, "py": 1949.8}, {"loc_id": 3233, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 3134.9, "z": -2943.1, "px": 2583.0, "py": 1545.7}, {"loc_id": 3233, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 3134.9, "z": -2943.1, "px": 2583.0, "py": 1545.7}, {"loc_id": 3233, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath", "count": 1, "x": 3134.9, "z": -2943.1, "px": 2583.0, "py": 1545.7}, {"loc_id": 3234, "loc_name": "GoblinCamp2", "item": "Pickable: Dandelion", "count": 1, "x": 4031.6, "z": 5118.5, "px": 2736.1, "py": 2921.6}, {"loc_id": 3234, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 4031.6, "z": 5118.5, "px": 2736.1, "py": 2921.6}, {"loc_id": 3234, "loc_name": "GoblinCamp2", "item": "SpawnOnce: GoblinShaman", "count": 1, "x": 4031.6, "z": 5118.5, "px": 2736.1, "py": 2921.6}, {"loc_id": 3234, "loc_name": "GoblinCamp2", "item": "Container: TreasureChest_heath (1)", "count": 1, "x": 4031.6, "z": 5118.5, "px": 2736.1, "py": 2921.6}, {"loc_id": 3235, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": 3006.8, "z": -3463.3, "px": 2561.2, "py": 1456.9}, {"loc_id": 3235, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": 3006.8, "z": -3463.3, "px": 2561.2, "py": 1456.9}, {"loc_id": 3236, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -5039.8, "z": -5442.1, "px": 1187.9, "py": 1119.2}, {"loc_id": 3236, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": -5039.8, "z": -5442.1, "px": 1187.9, "py": 1119.2}, {"loc_id": 3237, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": 1806.0, "z": 3774.9, "px": 2356.2, "py": 2692.2}, {"loc_id": 3238, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -4471.8, "z": 3253.7, "px": 1284.8, "py": 2603.3}, {"loc_id": 3239, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": 4723.3, "z": 1155.5, "px": 2854.1, "py": 2245.2}, {"loc_id": 3240, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -2926.6, "z": 835.4, "px": 1548.5, "py": 2190.6}, {"loc_id": 3241, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -1392.6, "z": -6780.2, "px": 1810.3, "py": 890.8}, {"loc_id": 3242, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": 3888.2, "z": -5168.2, "px": 2711.6, "py": 1166.0}, {"loc_id": 3242, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": 3888.2, "z": -5168.2, "px": 2711.6, "py": 1166.0}, {"loc_id": 3243, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -14.8, "z": -4868.4, "px": 2045.5, "py": 1217.1}, {"loc_id": 3243, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": -14.8, "z": -4868.4, "px": 2045.5, "py": 1217.1}, {"loc_id": 3244, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -4339.2, "z": 6088.6, "px": 1307.4, "py": 3087.1}, {"loc_id": 3245, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": 181.8, "z": 3450.7, "px": 2079.0, "py": 2636.9}, {"loc_id": 3245, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": 181.8, "z": 3450.7, "px": 2079.0, "py": 2636.9}, {"loc_id": 3246, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -4239.4, "z": -2419.6, "px": 1324.5, "py": 1635.1}, {"loc_id": 3247, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -5118.4, "z": 2937.6, "px": 1174.5, "py": 2549.4}, {"loc_id": 3248, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": 3015.8, "z": 249.6, "px": 2562.7, "py": 2090.6}, {"loc_id": 3248, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": 3015.8, "z": 249.6, "px": 2562.7, "py": 2090.6}, {"loc_id": 3249, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -7626.8, "z": -2000.3, "px": 746.4, "py": 1706.6}, {"loc_id": 3249, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": -7626.8, "z": -2000.3, "px": 746.4, "py": 1706.6}, {"loc_id": 3250, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -2360.9, "z": 5073.2, "px": 1645.1, "py": 2913.8}, {"loc_id": 3250, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": -2360.9, "z": 5073.2, "px": 1645.1, "py": 2913.8}, {"loc_id": 3251, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -5004.6, "z": 3952.7, "px": 1193.9, "py": 2722.6}, {"loc_id": 3251, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": -5004.6, "z": 3952.7, "px": 1193.9, "py": 2722.6}, {"loc_id": 3252, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": 2828.2, "z": -6146.1, "px": 2530.7, "py": 999.1}, {"loc_id": 3253, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -4177.7, "z": -1408.0, "px": 1335.0, "py": 1807.7}, {"loc_id": 3254, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": 4606.2, "z": 2943.7, "px": 2834.1, "py": 2550.4}, {"loc_id": 3255, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": 6918.8, "z": -2478.2, "px": 3228.8, "py": 1625.1}, {"loc_id": 3255, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": 6918.8, "z": -2478.2, "px": 3228.8, "py": 1625.1}, {"loc_id": 3256, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -2612.1, "z": 6065.8, "px": 1602.2, "py": 3083.2}, {"loc_id": 3256, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": -2612.1, "z": 6065.8, "px": 1602.2, "py": 3083.2}, {"loc_id": 3257, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": 2106.5, "z": 5960.8, "px": 2407.5, "py": 3065.3}, {"loc_id": 3258, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": 3894.5, "z": -1284.0, "px": 2712.7, "py": 1828.9}, {"loc_id": 3259, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -5699.2, "z": -1273.3, "px": 1075.3, "py": 1830.7}, {"loc_id": 3259, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": -5699.2, "z": -1273.3, "px": 1075.3, "py": 1830.7}, {"loc_id": 3260, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": 3018.7, "z": -1606.4, "px": 2563.2, "py": 1773.8}, {"loc_id": 3261, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": 2111.3, "z": -2879.5, "px": 2408.3, "py": 1556.6}, {"loc_id": 3261, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": 2111.3, "z": -2879.5, "px": 2408.3, "py": 1556.6}, {"loc_id": 3262, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -2513.3, "z": 3978.5, "px": 1619.1, "py": 2727.0}, {"loc_id": 3262, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": -2513.3, "z": 3978.5, "px": 1619.1, "py": 2727.0}, {"loc_id": 3263, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -5060.6, "z": -2876.7, "px": 1184.3, "py": 1557.0}, {"loc_id": 3264, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -4028.3, "z": 3776.2, "px": 1360.5, "py": 2692.5}, {"loc_id": 3264, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": -4028.3, "z": 3776.2, "px": 1360.5, "py": 2692.5}, {"loc_id": 3265, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -1846.3, "z": -3970.1, "px": 1732.9, "py": 1370.4}, {"loc_id": 3265, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": -1846.3, "z": -3970.1, "px": 1732.9, "py": 1370.4}, {"loc_id": 3266, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": 3956.6, "z": 4799.5, "px": 2723.3, "py": 2867.1}, {"loc_id": 3266, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": 3956.6, "z": 4799.5, "px": 2723.3, "py": 2867.1}, {"loc_id": 3267, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -17.6, "z": -3847.1, "px": 2045.0, "py": 1391.4}, {"loc_id": 3267, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": -17.6, "z": -3847.1, "px": 2045.0, "py": 1391.4}, {"loc_id": 3268, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -1011.0, "z": -6214.7, "px": 1875.5, "py": 987.4}, {"loc_id": 3269, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -1802.5, "z": 3326.0, "px": 1740.4, "py": 2615.6}, {"loc_id": 3269, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": -1802.5, "z": 3326.0, "px": 1740.4, "py": 2615.6}, {"loc_id": 3270, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -1973.7, "z": -5510.0, "px": 1711.2, "py": 1107.6}, {"loc_id": 3270, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": -1973.7, "z": -5510.0, "px": 1711.2, "py": 1107.6}, {"loc_id": 3271, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": 2058.2, "z": 5171.6, "px": 2399.3, "py": 2930.6}, {"loc_id": 3272, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": 3255.2, "z": 4480.1, "px": 2603.6, "py": 2812.6}, {"loc_id": 3273, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": 7984.1, "z": 261.4, "px": 3410.6, "py": 2092.6}, {"loc_id": 3274, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -2890.1, "z": -7102.0, "px": 1554.8, "py": 835.9}, {"loc_id": 3274, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": -2890.1, "z": -7102.0, "px": 1554.8, "py": 835.9}, {"loc_id": 3275, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": 5113.0, "z": -1093.7, "px": 2920.6, "py": 1861.3}, {"loc_id": 3276, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": 5897.9, "z": -4872.5, "px": 3054.6, "py": 1216.4}, {"loc_id": 3277, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -5881.5, "z": -4804.9, "px": 1044.2, "py": 1228.0}, {"loc_id": 3277, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": -5881.5, "z": -4804.9, "px": 1044.2, "py": 1228.0}, {"loc_id": 3278, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -5513.4, "z": 1738.8, "px": 1107.0, "py": 2344.8}, {"loc_id": 3278, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": -5513.4, "z": 1738.8, "px": 1107.0, "py": 2344.8}, {"loc_id": 3279, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -5313.8, "z": -2119.8, "px": 1141.1, "py": 1686.2}, {"loc_id": 3279, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": -5313.8, "z": -2119.8, "px": 1141.1, "py": 1686.2}, {"loc_id": 3280, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -3597.5, "z": -1584.1, "px": 1434.0, "py": 1777.6}, {"loc_id": 3281, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": 3125.2, "z": 3145.9, "px": 2581.4, "py": 2584.9}, {"loc_id": 3281, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": 3125.2, "z": 3145.9, "px": 2581.4, "py": 2584.9}, {"loc_id": 3282, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -2634.1, "z": -3522.3, "px": 1598.4, "py": 1446.9}, {"loc_id": 3283, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": 4090.8, "z": 6842.0, "px": 2746.2, "py": 3215.7}, {"loc_id": 3283, "loc_name": "StoneTower1", "item": "Container: TreasureChest_heath", "count": 1, "x": 4090.8, "z": 6842.0, "px": 2746.2, "py": 3215.7}, {"loc_id": 3284, "loc_name": "StoneTower1", "item": "Pickable: GoblinTotem", "count": 1, "x": -2443.7, "z": 2953.1, "px": 1630.9, "py": 2552.0}, {"loc_id": 3288, "loc_name": "StoneTower3", "item": "Container: TreasureChest_heath", "count": 1, "x": -2036.5, "z": -3262.1, "px": 1700.4, "py": 1491.3}, {"loc_id": 3290, "loc_name": "StoneTower3", "item": "Container: TreasureChest_heath", "count": 1, "x": 5131.0, "z": 5069.9, "px": 2923.7, "py": 2913.3}, {"loc_id": 3291, "loc_name": "StoneTower3", "item": "Container: TreasureChest_heath", "count": 1, "x": -1611.3, "z": -4625.6, "px": 1773.0, "py": 1258.6}, {"loc_id": 3292, "loc_name": "StoneTower3", "item": "Container: TreasureChest_heath", "count": 1, "x": -4358.2, "z": -6261.6, "px": 1304.2, "py": 979.4}, {"loc_id": 3297, "loc_name": "StoneTower3", "item": "Container: TreasureChest_heath", "count": 1, "x": 4142.0, "z": -2159.1, "px": 2754.9, "py": 1679.5}, {"loc_id": 3301, "loc_name": "StoneTower3", "item": "Container: TreasureChest_heath", "count": 1, "x": 2375.7, "z": -2363.8, "px": 2453.5, "py": 1644.6}, {"loc_id": 3304, "loc_name": "StoneTower3", "item": "Container: TreasureChest_heath", "count": 1, "x": -2293.3, "z": -6334.3, "px": 1656.6, "py": 966.9}, {"loc_id": 3305, "loc_name": "StoneTower3", "item": "Container: TreasureChest_heath", "count": 1, "x": 2618.7, "z": -7297.7, "px": 2494.9, "py": 802.5}, {"loc_id": 3307, "loc_name": "StoneTower3", "item": "Container: TreasureChest_heath", "count": 1, "x": -1102.4, "z": -4493.1, "px": 1859.9, "py": 1281.2}, {"loc_id": 3310, "loc_name": "StoneTower3", "item": "Container: TreasureChest_heath", "count": 1, "x": -5127.7, "z": 5186.4, "px": 1172.9, "py": 2933.1}, {"loc_id": 3312, "loc_name": "StoneTower3", "item": "Container: TreasureChest_heath", "count": 1, "x": -4349.3, "z": -814.8, "px": 1305.7, "py": 1908.9}, {"loc_id": 3313, "loc_name": "StoneTower3", "item": "Container: TreasureChest_heath", "count": 1, "x": -5746.5, "z": 4412.1, "px": 1067.3, "py": 2801.0}, {"loc_id": 3315, "loc_name": "StoneTower3", "item": "Container: TreasureChest_heath", "count": 1, "x": -5191.2, "z": -963.4, "px": 1162.0, "py": 1883.6}, {"loc_id": 3317, "loc_name": "StoneTower3", "item": "Container: TreasureChest_heath", "count": 1, "x": -4621.8, "z": -3639.7, "px": 1259.2, "py": 1426.8}, {"loc_id": 3324, "loc_name": "StoneTower3", "item": "Container: TreasureChest_heath", "count": 1, "x": 2824.6, "z": 1084.8, "px": 2530.1, "py": 2233.1}, {"loc_id": 3326, "loc_name": "StoneTower3", "item": "Container: TreasureChest_heath", "count": 1, "x": -4047.9, "z": -2936.7, "px": 1357.2, "py": 1546.8}, {"loc_id": 3327, "loc_name": "StoneTower3", "item": "Container: TreasureChest_heath", "count": 1, "x": -2895.8, "z": -5038.1, "px": 1553.8, "py": 1188.2}, {"loc_id": 3329, "loc_name": "StoneTower3", "item": "Container: TreasureChest_heath", "count": 1, "x": -1738.1, "z": 2762.5, "px": 1751.4, "py": 2519.5}, {"loc_id": 3330, "loc_name": "StoneTower3", "item": "Container: TreasureChest_heath", "count": 1, "x": 5623.2, "z": 1912.5, "px": 3007.7, "py": 2374.4}, {"loc_id": 3332, "loc_name": "StoneTower3", "item": "Container: TreasureChest_heath", "count": 1, "x": -6327.3, "z": -1535.2, "px": 968.1, "py": 1786.0}, {"loc_id": 3334, "loc_name": "StoneTower3", "item": "Container: TreasureChest_heath", "count": 1, "x": 6898.6, "z": -4017.4, "px": 3225.4, "py": 1362.4}, {"loc_id": 3335, "loc_name": "StoneHenge1", "item": "Container: TreasureChest_plains_stone", "count": 1, "x": 3328.4, "z": -447.7, "px": 2616.0, "py": 1971.6}, {"loc_id": 3335, "loc_name": "StoneHenge1", "item": "Vegvisir: GoblinKing ($enemy_goblinking)", "count": 1, "x": 3328.4, "z": -447.7, "px": 2616.0, "py": 1971.6}, {"loc_id": 3337, "loc_name": "StoneHenge1", "item": "Container: TreasureChest_plains_stone", "count": 1, "x": 7039.0, "z": -2432.9, "px": 3249.3, "py": 1632.8}, {"loc_id": 3338, "loc_name": "StoneHenge1", "item": "Container: TreasureChest_plains_stone", "count": 1, "x": -5824.1, "z": 1919.2, "px": 1054.0, "py": 2375.5}, {"loc_id": 3339, "loc_name": "StoneHenge1", "item": "Container: TreasureChest_plains_stone", "count": 1, "x": -896.5, "z": -6334.6, "px": 1895.0, "py": 966.9}, {"loc_id": 3340, "loc_name": "StoneHenge2", "item": "Container: TreasureChest_plains_stone", "count": 1, "x": -1857.7, "z": 3198.3, "px": 1731.0, "py": 2593.8}, {"loc_id": 3343, "loc_name": "StoneHenge2", "item": "Container: TreasureChest_plains_stone", "count": 1, "x": 1470.9, "z": -4351.9, "px": 2299.0, "py": 1305.3}, {"loc_id": 3343, "loc_name": "StoneHenge2", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 1470.9, "z": -4351.9, "px": 2299.0, "py": 1305.3}, {"loc_id": 3344, "loc_name": "StoneHenge2", "item": "Container: TreasureChest_plains_stone", "count": 1, "x": 831.8, "z": -7360.0, "px": 2190.0, "py": 791.9}, {"loc_id": 3345, "loc_name": "StoneHenge3", "item": "Container: TreasureChest_plains_stone", "count": 1, "x": -3198.3, "z": 5952.2, "px": 1502.2, "py": 3063.8}, {"loc_id": 3345, "loc_name": "StoneHenge3", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -3198.3, "z": 5952.2, "px": 1502.2, "py": 3063.8}, {"loc_id": 3346, "loc_name": "StoneHenge3", "item": "Container: TreasureChest_plains_stone", "count": 1, "x": -3583.4, "z": -1726.5, "px": 1436.4, "py": 1753.3}, {"loc_id": 3346, "loc_name": "StoneHenge3", "item": "Vegvisir: GoblinKing ($enemy_goblinking)", "count": 1, "x": -3583.4, "z": -1726.5, "px": 1436.4, "py": 1753.3}, {"loc_id": 3349, "loc_name": "StoneHenge3", "item": "Container: TreasureChest_plains_stone", "count": 1, "x": 3711.9, "z": 1727.4, "px": 2681.5, "py": 2342.8}, {"loc_id": 3349, "loc_name": "StoneHenge3", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 3711.9, "z": 1727.4, "px": 2681.5, "py": 2342.8}, {"loc_id": 3350, "loc_name": "StoneHenge4", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": -4479.1, "z": -6079.4, "px": 1283.6, "py": 1010.4}, {"loc_id": 3352, "loc_name": "StoneHenge4", "item": "SpawnOnce: GoblinBrute", "count": 1, "x": 5822.1, "z": -4800.2, "px": 3041.6, "py": 1228.8}, {"loc_id": 3356, "loc_name": "StoneHenge5", "item": "Vegvisir: GoblinKing ($enemy_goblinking)", "count": 1, "x": -3850.2, "z": 2802.6, "px": 1390.9, "py": 2526.3}, {"loc_id": 3357, "loc_name": "StoneHenge5", "item": "Vegvisir: GoblinKing ($enemy_goblinking)", "count": 1, "x": 6223.2, "z": 1596.2, "px": 3110.1, "py": 2320.4}, {"loc_id": 3360, "loc_name": "StoneHenge5", "item": "SpawnOnce: Goblin", "count": 1, "x": -1851.5, "z": -3257.9, "px": 1732.0, "py": 1492.0}, {"loc_id": 3360, "loc_name": "StoneHenge5", "item": "Vegvisir: GoblinKing ($enemy_goblinking)", "count": 1, "x": -1851.5, "z": -3257.9, "px": 1732.0, "py": 1492.0}, {"loc_id": 3364, "loc_name": "StoneHenge5", "item": "Vegvisir: GoblinKing ($enemy_goblinking)", "count": 1, "x": 373.8, "z": 3343.2, "px": 2111.8, "py": 2618.6}, {"loc_id": 3367, "loc_name": "StoneHenge5", "item": "Vegvisir: GoblinKing ($enemy_goblinking)", "count": 1, "x": 4623.5, "z": 1466.9, "px": 2837.1, "py": 2298.4}, {"loc_id": 3368, "loc_name": "StoneHenge5", "item": "SpawnOnce: Goblin", "count": 1, "x": -1671.1, "z": -4999.9, "px": 1762.8, "py": 1194.7}, {"loc_id": 3370, "loc_name": "StoneHenge5", "item": "Vegvisir: GoblinKing ($enemy_goblinking)", "count": 1, "x": 4724.6, "z": -1717.8, "px": 2854.3, "py": 1754.8}, {"loc_id": 3372, "loc_name": "StoneHenge5", "item": "SpawnOnce: Goblin", "count": 1, "x": 2510.1, "z": -7346.9, "px": 2476.4, "py": 794.1}, {"loc_id": 3373, "loc_name": "StoneHenge5", "item": "SpawnOnce: Goblin", "count": 1, "x": -11.1, "z": -5133.6, "px": 2046.1, "py": 1171.9}, {"loc_id": 3374, "loc_name": "StoneHenge5", "item": "SpawnOnce: Goblin", "count": 1, "x": 4723.5, "z": -2803.1, "px": 2854.1, "py": 1569.6}, {"loc_id": 3374, "loc_name": "StoneHenge5", "item": "Vegvisir: GoblinKing ($enemy_goblinking)", "count": 1, "x": 4723.5, "z": -2803.1, "px": 2854.1, "py": 1569.6}, {"loc_id": 3395, "loc_name": "WoodHouse1", "item": "Container: TreasureChest_meadows", "count": 1, "x": 2609.8, "z": -3088.8, "px": 2493.4, "py": 1520.8}, {"loc_id": 3398, "loc_name": "WoodHouse1", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -4887.6, "z": 511.2, "px": 1213.8, "py": 2135.2}, {"loc_id": 3401, "loc_name": "WoodHouse1", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 4105.5, "z": -1489.7, "px": 2748.7, "py": 1793.8}, {"loc_id": 3403, "loc_name": "WoodHouse1", "item": "Container: TreasureChest_meadows", "count": 1, "x": 2768.6, "z": -3013.3, "px": 2520.5, "py": 1533.7}, {"loc_id": 3404, "loc_name": "WoodHouse1", "item": "Container: TreasureChest_meadows", "count": 1, "x": 1148.3, "z": -2122.4, "px": 2244.0, "py": 1685.8}, {"loc_id": 3406, "loc_name": "WoodHouse1", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 2376.4, "z": 1024.9, "px": 2453.6, "py": 2222.9}, {"loc_id": 3407, "loc_name": "WoodHouse1", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 3447.0, "z": -1934.2, "px": 2636.3, "py": 1717.9}, {"loc_id": 3408, "loc_name": "WoodHouse1", "item": "Container: TreasureChest_meadows", "count": 1, "x": -1656.1, "z": -684.3, "px": 1765.4, "py": 1931.2}, {"loc_id": 3408, "loc_name": "WoodHouse1", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -1656.1, "z": -684.3, "px": 1765.4, "py": 1931.2}, {"loc_id": 3409, "loc_name": "WoodHouse1", "item": "Container: TreasureChest_meadows", "count": 1, "x": -115.7, "z": -1933.2, "px": 2028.3, "py": 1718.1}, {"loc_id": 3409, "loc_name": "WoodHouse1", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -115.7, "z": -1933.2, "px": 2028.3, "py": 1718.1}, {"loc_id": 3410, "loc_name": "WoodHouse1", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 947.7, "z": 3210.1, "px": 2209.7, "py": 2595.9}, {"loc_id": 3411, "loc_name": "WoodHouse1", "item": "Container: TreasureChest_meadows", "count": 1, "x": -439.3, "z": 105.7, "px": 1973.0, "py": 2066.0}, {"loc_id": 3411, "loc_name": "WoodHouse1", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -439.3, "z": 105.7, "px": 1973.0, "py": 2066.0}, {"loc_id": 3412, "loc_name": "WoodHouse1", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 3120.3, "z": -2576.7, "px": 2580.5, "py": 1608.2}, {"loc_id": 3415, "loc_name": "WoodHouse2", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 67.3, "z": -4098.4, "px": 2059.5, "py": 1348.5}, {"loc_id": 3417, "loc_name": "WoodHouse2", "item": "Container: TreasureChest_meadows_02", "count": 1, "x": -2105.3, "z": -1744.1, "px": 1688.7, "py": 1750.3}, {"loc_id": 3418, "loc_name": "WoodHouse2", "item": "Container: TreasureChest_meadows_02", "count": 1, "x": 2412.1, "z": -3893.5, "px": 2459.7, "py": 1383.5}, {"loc_id": 3419, "loc_name": "WoodHouse2", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -327.0, "z": -1011.9, "px": 1992.2, "py": 1875.3}, {"loc_id": 3420, "loc_name": "WoodHouse2", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 967.3, "z": 515.3, "px": 2213.1, "py": 2135.9}, {"loc_id": 3421, "loc_name": "WoodHouse2", "item": "Container: TreasureChest_meadows_02", "count": 1, "x": -4996.8, "z": 587.0, "px": 1195.2, "py": 2148.2}, {"loc_id": 3422, "loc_name": "WoodHouse2", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -1658.3, "z": 4648.2, "px": 1765.0, "py": 2841.3}, {"loc_id": 3422, "loc_name": "WoodHouse2", "item": "Container: TreasureChest_meadows_02", "count": 1, "x": -1658.3, "z": 4648.2, "px": 1765.0, "py": 2841.3}, {"loc_id": 3423, "loc_name": "WoodHouse2", "item": "Container: TreasureChest_meadows_02", "count": 1, "x": -2071.9, "z": 1961.0, "px": 1694.4, "py": 2382.7}, {"loc_id": 3424, "loc_name": "WoodHouse2", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 328.2, "z": 391.3, "px": 2104.0, "py": 2114.8}, {"loc_id": 3424, "loc_name": "WoodHouse2", "item": "Container: TreasureChest_meadows_02", "count": 1, "x": 328.2, "z": 391.3, "px": 2104.0, "py": 2114.8}, {"loc_id": 3425, "loc_name": "WoodHouse2", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -493.2, "z": -1389.4, "px": 1963.8, "py": 1810.9}, {"loc_id": 3427, "loc_name": "WoodHouse2", "item": "Container: TreasureChest_meadows_02", "count": 1, "x": -395.0, "z": 204.1, "px": 1980.6, "py": 2082.8}, {"loc_id": 3428, "loc_name": "WoodHouse2", "item": "Container: TreasureChest_meadows_02", "count": 1, "x": -399.9, "z": 106.7, "px": 1979.8, "py": 2066.2}, {"loc_id": 3429, "loc_name": "WoodHouse2", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 2025.9, "z": -1851.3, "px": 2393.8, "py": 1732.0}, {"loc_id": 3429, "loc_name": "WoodHouse2", "item": "Container: TreasureChest_meadows_02", "count": 1, "x": 2025.9, "z": -1851.3, "px": 2393.8, "py": 1732.0}, {"loc_id": 3432, "loc_name": "WoodHouse2", "item": "Container: TreasureChest_meadows_02", "count": 1, "x": 2472.8, "z": -2409.6, "px": 2470.0, "py": 1636.8}, {"loc_id": 3433, "loc_name": "WoodHouse2", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -3707.5, "z": -2126.1, "px": 1415.3, "py": 1685.1}, {"loc_id": 3435, "loc_name": "WoodHouse3", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -3712.5, "z": -2605.3, "px": 1414.4, "py": 1603.4}, {"loc_id": 3437, "loc_name": "WoodHouse3", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -266.4, "z": -272.9, "px": 2002.5, "py": 2001.4}, {"loc_id": 3442, "loc_name": "WoodHouse3", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -3344.6, "z": 2986.3, "px": 1477.2, "py": 2557.7}, {"loc_id": 3444, "loc_name": "WoodHouse3", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -404.7, "z": 54.8, "px": 1978.9, "py": 2057.4}, {"loc_id": 3453, "loc_name": "WoodHouse3", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 3124.6, "z": -2617.4, "px": 2581.3, "py": 1601.3}, {"loc_id": 3454, "loc_name": "WoodHouse3", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 336.5, "z": -49.2, "px": 2105.4, "py": 2039.6}, {"loc_id": 3457, "loc_name": "WoodHouse4", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -452.2, "z": 76.9, "px": 1970.8, "py": 2061.1}, {"loc_id": 3458, "loc_name": "WoodHouse4", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 3950.0, "z": -1581.7, "px": 2722.1, "py": 1778.1}, {"loc_id": 3462, "loc_name": "WoodHouse4", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 190.9, "z": -371.0, "px": 2080.6, "py": 1984.7}, {"loc_id": 3469, "loc_name": "WoodHouse4", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -3735.7, "z": -2573.6, "px": 1410.4, "py": 1608.8}, {"loc_id": 3473, "loc_name": "WoodHouse4", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -1090.5, "z": -510.3, "px": 1861.9, "py": 1960.9}, {"loc_id": 3476, "loc_name": "WoodHouse5", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -67.2, "z": -2034.9, "px": 2036.5, "py": 1700.7}, {"loc_id": 3478, "loc_name": "WoodHouse5", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -198.8, "z": -52.2, "px": 2014.1, "py": 2039.1}, {"loc_id": 3487, "loc_name": "WoodHouse5", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 3768.2, "z": -1676.1, "px": 2691.1, "py": 1761.9}, {"loc_id": 3491, "loc_name": "WoodHouse5", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -1781.4, "z": 3156.6, "px": 1744.0, "py": 2586.7}, {"loc_id": 3494, "loc_name": "WoodHouse5", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -1192.5, "z": -558.6, "px": 1844.5, "py": 1952.7}, {"loc_id": 3495, "loc_name": "WoodHouse6", "item": "Container: TreasureChest_meadows_01", "count": 1, "x": -4101.2, "z": 1875.1, "px": 1348.1, "py": 2368.0}, {"loc_id": 3496, "loc_name": "WoodHouse6", "item": "Container: TreasureChest_meadows_01", "count": 1, "x": 317.9, "z": 65.6, "px": 2102.3, "py": 2059.2}, {"loc_id": 3497, "loc_name": "WoodHouse6", "item": "Container: TreasureChest_meadows_01", "count": 1, "x": -3415.8, "z": 3189.7, "px": 1465.0, "py": 2592.4}, {"loc_id": 3498, "loc_name": "WoodHouse6", "item": "Container: TreasureChest_meadows_01", "count": 1, "x": -1542.4, "z": -876.2, "px": 1784.8, "py": 1898.5}, {"loc_id": 3499, "loc_name": "WoodHouse6", "item": "Container: TreasureChest_meadows_01", "count": 1, "x": -3394.5, "z": 2921.0, "px": 1468.7, "py": 2546.5}, {"loc_id": 3500, "loc_name": "WoodHouse6", "item": "Container: TreasureChest_meadows_01", "count": 1, "x": -3774.5, "z": -2102.1, "px": 1403.8, "py": 1689.2}, {"loc_id": 3501, "loc_name": "WoodHouse6", "item": "Container: TreasureChest_meadows_01", "count": 1, "x": -3284.8, "z": 3066.8, "px": 1487.4, "py": 2571.4}, {"loc_id": 3502, "loc_name": "WoodHouse6", "item": "Container: TreasureChest_meadows_01", "count": 1, "x": 3923.2, "z": -1462.7, "px": 2717.6, "py": 1798.4}, {"loc_id": 3503, "loc_name": "WoodHouse6", "item": "Container: TreasureChest_meadows_01", "count": 1, "x": -4944.1, "z": 595.3, "px": 1204.2, "py": 2149.6}, {"loc_id": 3504, "loc_name": "WoodHouse6", "item": "Container: TreasureChest_meadows_01", "count": 1, "x": -1398.1, "z": -653.2, "px": 1809.4, "py": 1936.5}, {"loc_id": 3505, "loc_name": "WoodHouse6", "item": "Container: TreasureChest_meadows_01", "count": 1, "x": -2037.3, "z": 80.7, "px": 1700.3, "py": 2061.8}, {"loc_id": 3506, "loc_name": "WoodHouse6", "item": "Container: TreasureChest_meadows_01", "count": 1, "x": -525.4, "z": -3758.9, "px": 1958.3, "py": 1406.5}, {"loc_id": 3507, "loc_name": "WoodHouse6", "item": "Container: TreasureChest_meadows_01", "count": 1, "x": -5050.5, "z": 497.1, "px": 1186.0, "py": 2132.8}, {"loc_id": 3508, "loc_name": "WoodHouse6", "item": "Container: TreasureChest_meadows_01", "count": 1, "x": 2742.7, "z": -2452.6, "px": 2516.1, "py": 1629.4}, {"loc_id": 3508, "loc_name": "WoodHouse6", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 2742.7, "z": -2452.6, "px": 2516.1, "py": 1629.4}, {"loc_id": 3509, "loc_name": "WoodHouse6", "item": "Container: TreasureChest_meadows_01", "count": 1, "x": -1032.0, "z": -587.2, "px": 1871.9, "py": 1947.8}, {"loc_id": 3510, "loc_name": "WoodHouse6", "item": "Container: TreasureChest_meadows_01", "count": 1, "x": -2096.9, "z": -1841.5, "px": 1690.1, "py": 1733.7}, {"loc_id": 3511, "loc_name": "WoodHouse6", "item": "Container: TreasureChest_meadows_01", "count": 1, "x": -3332.2, "z": 1429.2, "px": 1479.3, "py": 2291.9}, {"loc_id": 3512, "loc_name": "WoodHouse6", "item": "Container: TreasureChest_meadows_01", "count": 1, "x": 4016.2, "z": -1326.5, "px": 2733.4, "py": 1821.6}, {"loc_id": 3513, "loc_name": "WoodHouse6", "item": "Container: TreasureChest_meadows_01", "count": 1, "x": 2870.4, "z": -2933.2, "px": 2537.9, "py": 1547.4}, {"loc_id": 3513, "loc_name": "WoodHouse6", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 2870.4, "z": -2933.2, "px": 2537.9, "py": 1547.4}, {"loc_id": 3514, "loc_name": "WoodHouse6", "item": "Container: TreasureChest_meadows_01", "count": 1, "x": -1577.2, "z": -1270.1, "px": 1778.8, "py": 1831.2}, {"loc_id": 3514, "loc_name": "WoodHouse6", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -1577.2, "z": -1270.1, "px": 1778.8, "py": 1831.2}, {"loc_id": 3515, "loc_name": "WoodHouse7", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -4241.6, "z": 1942.1, "px": 1324.1, "py": 2379.5}, {"loc_id": 3515, "loc_name": "WoodHouse7", "item": "Container: TreasureChest_meadows", "count": 1, "x": -4241.6, "z": 1942.1, "px": 1324.1, "py": 2379.5}, {"loc_id": 3516, "loc_name": "WoodHouse7", "item": "Container: TreasureChest_meadows", "count": 1, "x": -459.4, "z": -898.7, "px": 1969.6, "py": 1894.6}, {"loc_id": 3517, "loc_name": "WoodHouse7", "item": "Container: TreasureChest_meadows", "count": 1, "x": 332.1, "z": -276.9, "px": 2104.7, "py": 2000.7}, {"loc_id": 3518, "loc_name": "WoodHouse7", "item": "Container: TreasureChest_meadows", "count": 1, "x": 2760.0, "z": -2382.7, "px": 2519.0, "py": 1641.4}, {"loc_id": 3521, "loc_name": "WoodHouse7", "item": "Container: TreasureChest_meadows", "count": 1, "x": 1132.4, "z": -131.1, "px": 2241.3, "py": 2025.6}, {"loc_id": 3522, "loc_name": "WoodHouse7", "item": "Container: TreasureChest_meadows", "count": 1, "x": -1711.7, "z": -819.7, "px": 1755.9, "py": 1908.1}, {"loc_id": 3526, "loc_name": "WoodHouse7", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -233.0, "z": 387.1, "px": 2008.2, "py": 2114.1}, {"loc_id": 3529, "loc_name": "WoodHouse7", "item": "Container: TreasureChest_meadows", "count": 1, "x": -2409.4, "z": 388.7, "px": 1636.8, "py": 2114.3}, {"loc_id": 3530, "loc_name": "WoodHouse7", "item": "Container: TreasureChest_meadows", "count": 1, "x": -3477.4, "z": 2923.3, "px": 1454.5, "py": 2546.9}, {"loc_id": 3532, "loc_name": "WoodHouse7", "item": "Container: TreasureChest_meadows", "count": 1, "x": -2237.3, "z": 4425.5, "px": 1666.2, "py": 2803.3}, {"loc_id": 3533, "loc_name": "WoodHouse7", "item": "Container: TreasureChest_meadows", "count": 1, "x": -372.3, "z": 5.5, "px": 1984.5, "py": 2048.9}, {"loc_id": 3534, "loc_name": "WoodHouse7", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -444.7, "z": -45.1, "px": 1972.1, "py": 2040.3}, {"loc_id": 3535, "loc_name": "WoodHouse8", "item": "Pickable: Dandelion", "count": 1, "x": 4178.1, "z": -1459.1, "px": 2761.1, "py": 1799.0}, {"loc_id": 3536, "loc_name": "WoodHouse8", "item": "Pickable: Dandelion", "count": 1, "x": 106.7, "z": 447.6, "px": 2066.2, "py": 2124.4}, {"loc_id": 3548, "loc_name": "WoodHouse8", "item": "Pickable: Dandelion", "count": 1, "x": 1263.3, "z": -246.4, "px": 2263.6, "py": 2005.9}, {"loc_id": 3549, "loc_name": "WoodHouse8", "item": "Pickable: Dandelion", "count": 1, "x": 554.8, "z": -60.6, "px": 2142.7, "py": 2037.7}, {"loc_id": 3553, "loc_name": "WoodHouse8", "item": "Pickable: Dandelion", "count": 1, "x": 122.3, "z": 3856.4, "px": 2068.9, "py": 2706.2}, {"loc_id": 3554, "loc_name": "WoodHouse8", "item": "Pickable: Dandelion", "count": 1, "x": 511.1, "z": 318.3, "px": 2135.2, "py": 2102.3}, {"loc_id": 3555, "loc_name": "WoodHouse9", "item": "Container: TreasureChest_meadows", "count": 1, "x": 3403.5, "z": -126.4, "px": 2628.9, "py": 2026.4}, {"loc_id": 3560, "loc_name": "WoodHouse9", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 2741.0, "z": -3950.5, "px": 2515.8, "py": 1373.8}, {"loc_id": 3560, "loc_name": "WoodHouse9", "item": "Container: TreasureChest_meadows", "count": 1, "x": 2741.0, "z": -3950.5, "px": 2515.8, "py": 1373.8}, {"loc_id": 3561, "loc_name": "WoodHouse9", "item": "Container: TreasureChest_meadows", "count": 1, "x": -4176.5, "z": -2168.1, "px": 1335.2, "py": 1678.0}, {"loc_id": 3562, "loc_name": "WoodHouse9", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 1363.4, "z": 252.6, "px": 2280.7, "py": 2091.1}, {"loc_id": 3563, "loc_name": "WoodHouse9", "item": "Container: TreasureChest_meadows", "count": 1, "x": 47.4, "z": 430.0, "px": 2056.1, "py": 2121.4}, {"loc_id": 3564, "loc_name": "WoodHouse9", "item": "Container: TreasureChest_meadows", "count": 1, "x": -65.7, "z": 304.5, "px": 2036.8, "py": 2100.0}, {"loc_id": 3566, "loc_name": "WoodHouse9", "item": "Container: TreasureChest_meadows", "count": 1, "x": -191.1, "z": 198.0, "px": 2015.4, "py": 2081.8}, {"loc_id": 3568, "loc_name": "WoodHouse9", "item": "Container: TreasureChest_meadows", "count": 1, "x": 2481.7, "z": -3115.6, "px": 2471.5, "py": 1516.3}, {"loc_id": 3571, "loc_name": "WoodHouse9", "item": "Container: TreasureChest_meadows", "count": 1, "x": 130.7, "z": 3783.5, "px": 2070.3, "py": 2693.7}, {"loc_id": 3572, "loc_name": "WoodHouse9", "item": "Container: TreasureChest_meadows", "count": 1, "x": -3769.7, "z": -2059.1, "px": 1404.6, "py": 1696.6}, {"loc_id": 3573, "loc_name": "WoodHouse9", "item": "Container: TreasureChest_meadows", "count": 1, "x": -82.2, "z": 400.7, "px": 2034.0, "py": 2116.4}, {"loc_id": 3576, "loc_name": "WoodHouse10", "item": "Container: TreasureChest_meadows", "count": 1, "x": 1072.7, "z": -3832.0, "px": 2231.1, "py": 1394.0}, {"loc_id": 3578, "loc_name": "WoodHouse10", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 1098.1, "z": -2132.1, "px": 2235.4, "py": 1684.1}, {"loc_id": 3580, "loc_name": "WoodHouse10", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 2672.2, "z": -956.5, "px": 2504.1, "py": 1884.8}, {"loc_id": 3581, "loc_name": "WoodHouse10", "item": "Container: TreasureChest_meadows", "count": 1, "x": 2688.8, "z": -3126.0, "px": 2506.9, "py": 1514.5}, {"loc_id": 3582, "loc_name": "WoodHouse10", "item": "Container: TreasureChest_meadows", "count": 1, "x": 2582.1, "z": -3948.1, "px": 2488.7, "py": 1374.2}, {"loc_id": 3585, "loc_name": "WoodHouse10", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 1341.7, "z": -2162.7, "px": 2277.0, "py": 1678.9}, {"loc_id": 3586, "loc_name": "WoodHouse10", "item": "Container: TreasureChest_meadows", "count": 1, "x": 2964.0, "z": 3774.5, "px": 2553.9, "py": 2692.2}, {"loc_id": 3587, "loc_name": "WoodHouse10", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 456.1, "z": 214.0, "px": 2125.8, "py": 2084.5}, {"loc_id": 3590, "loc_name": "WoodHouse10", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -1843.7, "z": -723.9, "px": 1733.3, "py": 1924.5}, {"loc_id": 3590, "loc_name": "WoodHouse10", "item": "Container: TreasureChest_meadows", "count": 1, "x": -1843.7, "z": -723.9, "px": 1733.3, "py": 1924.5}, {"loc_id": 3592, "loc_name": "WoodHouse10", "item": "Container: TreasureChest_meadows", "count": 1, "x": -1857.4, "z": -131.6, "px": 1731.0, "py": 2025.5}, {"loc_id": 3594, "loc_name": "WoodHouse10", "item": "Container: TreasureChest_meadows", "count": 1, "x": -587.8, "z": 212.4, "px": 1947.7, "py": 2084.2}, {"loc_id": 3595, "loc_name": "WoodHouse11", "item": "Container: TreasureChest_meadows", "count": 1, "x": -3632.8, "z": 1265.6, "px": 1428.0, "py": 2264.0}, {"loc_id": 3597, "loc_name": "WoodHouse11", "item": "Container: TreasureChest_meadows", "count": 1, "x": -1856.5, "z": -780.5, "px": 1731.2, "py": 1914.8}, {"loc_id": 3600, "loc_name": "WoodHouse11", "item": "Container: TreasureChest_meadows", "count": 1, "x": 853.7, "z": -117.2, "px": 2193.7, "py": 2028.0}, {"loc_id": 3600, "loc_name": "WoodHouse11", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 853.7, "z": -117.2, "px": 2193.7, "py": 2028.0}, {"loc_id": 3601, "loc_name": "WoodHouse11", "item": "Container: TreasureChest_meadows", "count": 1, "x": -49.4, "z": -236.4, "px": 2039.6, "py": 2007.7}, {"loc_id": 3602, "loc_name": "WoodHouse11", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -1523.4, "z": -757.6, "px": 1788.0, "py": 1918.7}, {"loc_id": 3603, "loc_name": "WoodHouse11", "item": "Container: TreasureChest_meadows", "count": 1, "x": 3134.5, "z": -2684.7, "px": 2583.0, "py": 1589.8}, {"loc_id": 3604, "loc_name": "WoodHouse11", "item": "Container: TreasureChest_meadows", "count": 1, "x": -309.8, "z": -4018.4, "px": 1995.1, "py": 1362.2}, {"loc_id": 3605, "loc_name": "WoodHouse11", "item": "Container: TreasureChest_meadows", "count": 1, "x": -1596.1, "z": -772.3, "px": 1775.6, "py": 1916.2}, {"loc_id": 3608, "loc_name": "WoodHouse11", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -1220.2, "z": -524.5, "px": 1839.8, "py": 1958.5}, {"loc_id": 3609, "loc_name": "WoodHouse11", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 178.4, "z": 3725.8, "px": 2078.4, "py": 2683.9}, {"loc_id": 3612, "loc_name": "WoodHouse11", "item": "Container: TreasureChest_meadows", "count": 1, "x": -318.2, "z": -4083.8, "px": 1993.7, "py": 1351.0}, {"loc_id": 3612, "loc_name": "WoodHouse11", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -318.2, "z": -4083.8, "px": 1993.7, "py": 1351.0}, {"loc_id": 3614, "loc_name": "WoodHouse11", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -3532.3, "z": 2708.2, "px": 1445.2, "py": 2510.2}, {"loc_id": 3615, "loc_name": "WoodHouse12", "item": "Container: TreasureChest_meadows", "count": 1, "x": -1979.3, "z": 61.8, "px": 1710.2, "py": 2058.5}, {"loc_id": 3616, "loc_name": "WoodHouse12", "item": "Pickable: Mushroom", "count": 1, "x": 1451.6, "z": -210.7, "px": 2295.7, "py": 2012.0}, {"loc_id": 3617, "loc_name": "WoodHouse12", "item": "Pickable: Mushroom", "count": 1, "x": 2363.1, "z": -3010.2, "px": 2451.3, "py": 1534.3}, {"loc_id": 3618, "loc_name": "WoodHouse12", "item": "Container: TreasureChest_meadows", "count": 1, "x": 2855.0, "z": -2514.8, "px": 2535.3, "py": 1618.8}, {"loc_id": 3619, "loc_name": "WoodHouse12", "item": "Container: TreasureChest_meadows", "count": 1, "x": -1680.1, "z": -566.6, "px": 1761.3, "py": 1951.3}, {"loc_id": 3621, "loc_name": "WoodHouse12", "item": "Container: TreasureChest_meadows", "count": 1, "x": 3652.5, "z": -371.3, "px": 2671.4, "py": 1984.6}, {"loc_id": 3622, "loc_name": "WoodHouse12", "item": "Pickable: Mushroom", "count": 1, "x": 2031.4, "z": -1733.7, "px": 2394.7, "py": 1752.1}, {"loc_id": 3623, "loc_name": "WoodHouse12", "item": "Container: TreasureChest_meadows", "count": 1, "x": 2738.5, "z": -3918.0, "px": 2515.4, "py": 1379.3}, {"loc_id": 3623, "loc_name": "WoodHouse12", "item": "Pickable: Mushroom", "count": 1, "x": 2738.5, "z": -3918.0, "px": 2515.4, "py": 1379.3}, {"loc_id": 3624, "loc_name": "WoodHouse12", "item": "Container: TreasureChest_meadows", "count": 1, "x": -3814.9, "z": 2904.6, "px": 1396.9, "py": 2543.7}, {"loc_id": 3624, "loc_name": "WoodHouse12", "item": "Pickable: Mushroom", "count": 1, "x": -3814.9, "z": 2904.6, "px": 1396.9, "py": 2543.7}, {"loc_id": 3625, "loc_name": "WoodHouse12", "item": "Container: TreasureChest_meadows", "count": 1, "x": 2540.8, "z": -3130.1, "px": 2481.6, "py": 1513.8}, {"loc_id": 3625, "loc_name": "WoodHouse12", "item": "Pickable: Mushroom", "count": 1, "x": 2540.8, "z": -3130.1, "px": 2481.6, "py": 1513.8}, {"loc_id": 3628, "loc_name": "WoodHouse12", "item": "Container: TreasureChest_meadows", "count": 1, "x": 3772.4, "z": -1578.9, "px": 2691.8, "py": 1778.5}, {"loc_id": 3629, "loc_name": "WoodHouse12", "item": "Container: TreasureChest_meadows", "count": 1, "x": -113.3, "z": 551.4, "px": 2028.7, "py": 2142.1}, {"loc_id": 3630, "loc_name": "WoodHouse12", "item": "Container: TreasureChest_meadows", "count": 1, "x": 4331.7, "z": -1257.7, "px": 2787.3, "py": 1833.4}, {"loc_id": 3630, "loc_name": "WoodHouse12", "item": "Pickable: Mushroom", "count": 1, "x": 4331.7, "z": -1257.7, "px": 2787.3, "py": 1833.4}, {"loc_id": 3632, "loc_name": "WoodHouse12", "item": "Container: TreasureChest_meadows", "count": 1, "x": 2805.1, "z": -696.2, "px": 2526.7, "py": 1929.2}, {"loc_id": 3633, "loc_name": "WoodHouse12", "item": "Pickable: Mushroom", "count": 1, "x": -1331.6, "z": -935.2, "px": 1820.7, "py": 1888.4}, {"loc_id": 3634, "loc_name": "WoodHouse12", "item": "Container: TreasureChest_meadows", "count": 1, "x": 3708.0, "z": -1428.1, "px": 2680.8, "py": 1804.3}, {"loc_id": 3635, "loc_name": "WoodHouse13", "item": "Container: TreasureChest_meadows", "count": 1, "x": 278.0, "z": -1531.2, "px": 2095.4, "py": 1786.7}, {"loc_id": 3640, "loc_name": "WoodHouse13", "item": "Container: TreasureChest_meadows", "count": 1, "x": -2192.4, "z": 85.6, "px": 1673.8, "py": 2062.6}, {"loc_id": 3641, "loc_name": "WoodHouse13", "item": "Container: TreasureChest_meadows", "count": 1, "x": 4304.3, "z": -1144.4, "px": 2782.6, "py": 1852.7}, {"loc_id": 3642, "loc_name": "WoodHouse13", "item": "Container: TreasureChest_meadows", "count": 1, "x": -2070.2, "z": -1737.2, "px": 1694.7, "py": 1751.5}, {"loc_id": 3643, "loc_name": "WoodHouse13", "item": "Container: TreasureChest_meadows", "count": 1, "x": 2427.0, "z": -622.7, "px": 2462.2, "py": 1941.7}, {"loc_id": 3644, "loc_name": "WoodHouse13", "item": "Container: TreasureChest_meadows", "count": 1, "x": 2556.3, "z": -3309.3, "px": 2484.3, "py": 1483.2}, {"loc_id": 3645, "loc_name": "WoodHouse13", "item": "Container: TreasureChest_meadows", "count": 1, "x": -3525.9, "z": 3020.9, "px": 1446.2, "py": 2563.6}, {"loc_id": 3646, "loc_name": "WoodHouse13", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 4224.7, "z": -1525.5, "px": 2769.0, "py": 1787.6}, {"loc_id": 3646, "loc_name": "WoodHouse13", "item": "Container: TreasureChest_meadows", "count": 1, "x": 4224.7, "z": -1525.5, "px": 2769.0, "py": 1787.6}, {"loc_id": 3647, "loc_name": "WoodHouse13", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 3498.0, "z": -175.1, "px": 2645.0, "py": 2018.1}, {"loc_id": 3647, "loc_name": "WoodHouse13", "item": "Container: TreasureChest_meadows", "count": 1, "x": 3498.0, "z": -175.1, "px": 2645.0, "py": 2018.1}, {"loc_id": 3648, "loc_name": "WoodHouse13", "item": "Container: TreasureChest_meadows", "count": 1, "x": -1647.1, "z": -1476.3, "px": 1766.9, "py": 1796.0}, {"loc_id": 3651, "loc_name": "WoodHouse13", "item": "Container: TreasureChest_meadows", "count": 1, "x": -205.8, "z": 386.3, "px": 2012.9, "py": 2113.9}, {"loc_id": 3652, "loc_name": "WoodHouse13", "item": "Container: TreasureChest_meadows", "count": 1, "x": 3216.2, "z": -142.8, "px": 2596.9, "py": 2023.6}, {"loc_id": 3653, "loc_name": "WoodHouse13", "item": "Container: TreasureChest_meadows", "count": 1, "x": 327.1, "z": -1302.9, "px": 2103.8, "py": 1825.6}, {"loc_id": 3655, "loc_name": "WoodFarm1", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -1408.0, "z": -1152.0, "px": 1807.7, "py": 1851.4}, {"loc_id": 3656, "loc_name": "WoodFarm1", "item": "Container: TreasureChest_meadows", "count": 1, "x": 512.0, "z": 128.0, "px": 2135.4, "py": 2069.8}, {"loc_id": 3657, "loc_name": "WoodFarm1", "item": "Container: TreasureChest_meadows", "count": 1, "x": 1088.0, "z": 768.0, "px": 2233.7, "py": 2179.1}, {"loc_id": 3659, "loc_name": "WoodFarm1", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 1792.0, "z": 0.0, "px": 2353.8, "py": 2048.0}, {"loc_id": 3660, "loc_name": "WoodFarm1", "item": "Container: TreasureChest_meadows", "count": 1, "x": -1472.0, "z": -1344.0, "px": 1796.8, "py": 1818.6}, {"loc_id": 3660, "loc_name": "WoodFarm1", "item": "SpawnOnce: Boar", "count": 1, "x": -1472.0, "z": -1344.0, "px": 1796.8, "py": 1818.6}, {"loc_id": 3661, "loc_name": "WoodFarm1", "item": "SpawnOnce: Boar", "count": 1, "x": 1792.0, "z": -128.0, "px": 2353.8, "py": 2026.2}, {"loc_id": 3661, "loc_name": "WoodFarm1", "item": "Container: TreasureChest_meadows", "count": 1, "x": 1792.0, "z": -128.0, "px": 2353.8, "py": 2026.2}, {"loc_id": 3662, "loc_name": "WoodFarm1", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 448.0, "z": 256.0, "px": 2124.5, "py": 2091.7}, {"loc_id": 3662, "loc_name": "WoodFarm1", "item": "SpawnOnce: Boar", "count": 1, "x": 448.0, "z": 256.0, "px": 2124.5, "py": 2091.7}, {"loc_id": 3664, "loc_name": "WoodFarm1", "item": "SpawnOnce: Boar", "count": 1, "x": -1344.0, "z": -768.0, "px": 1818.6, "py": 1916.9}, {"loc_id": 3665, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows (1)", "count": 1, "x": 4288.0, "z": -1216.0, "px": 2779.8, "py": 1840.5}, {"loc_id": 3667, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -2176.0, "z": -1792.0, "px": 1676.6, "py": 1742.2}, {"loc_id": 3667, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows (1)", "count": 1, "x": -2176.0, "z": -1792.0, "px": 1676.6, "py": 1742.2}, {"loc_id": 3669, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -4800.0, "z": 640.0, "px": 1228.8, "py": 2157.2}, {"loc_id": 3670, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -2368.0, "z": 384.0, "px": 1643.9, "py": 2113.5}, {"loc_id": 3670, "loc_name": "WoodVillage1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": -2368.0, "z": 384.0, "px": 1643.9, "py": 2113.5}, {"loc_id": 3670, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows", "count": 1, "x": -2368.0, "z": 384.0, "px": 1643.9, "py": 2113.5}, {"loc_id": 3670, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows (1)", "count": 1, "x": -2368.0, "z": 384.0, "px": 1643.9, "py": 2113.5}, {"loc_id": 3670, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows (2)", "count": 1, "x": -2368.0, "z": 384.0, "px": 1643.9, "py": 2113.5}, {"loc_id": 3673, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows", "count": 1, "x": 3264.0, "z": 2496.0, "px": 2605.1, "py": 2474.0}, {"loc_id": 3673, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 3264.0, "z": 2496.0, "px": 2605.1, "py": 2474.0}, {"loc_id": 3674, "loc_name": "WoodVillage1", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -4928.0, "z": 384.0, "px": 1207.0, "py": 2113.5}, {"loc_id": 3674, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows (1)", "count": 1, "x": -4928.0, "z": 384.0, "px": 1207.0, "py": 2113.5}, {"loc_id": 3674, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows (2)", "count": 1, "x": -4928.0, "z": 384.0, "px": 1207.0, "py": 2113.5}, {"loc_id": 3675, "loc_name": "WoodVillage1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -2112.0, "z": 320.0, "px": 1687.6, "py": 2102.6}, {"loc_id": 3677, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows", "count": 1, "x": -3712.0, "z": -2048.0, "px": 1414.5, "py": 1698.5}, {"loc_id": 3679, "loc_name": "WoodVillage1", "item": "AreaSpawner: Draugr[1-3] Draugr_Elite[1-3] Draugr_Ranged[1-3] (respawn every 5 seconds)", "count": 1, "x": 3072.0, "z": 2304.0, "px": 2572.3, "py": 2441.2}, {"loc_id": 3679, "loc_name": "WoodVillage1", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 3072.0, "z": 2304.0, "px": 2572.3, "py": 2441.2}, {"loc_id": 3679, "loc_name": "WoodVillage1", "item": "Container: TreasureChest_meadows", "count": 1, "x": 3072.0, "z": 2304.0, "px": 2572.3, "py": 2441.2}, {"loc_id": 3680, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -7490.7, "z": 4796.9, "px": 769.6, "py": 2866.7}, {"loc_id": 3680, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -7490.7, "z": 4796.9, "px": 769.6, "py": 2866.7}, {"loc_id": 3681, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 1981.9, "z": 1210.0, "px": 2386.2, "py": 2254.5}, {"loc_id": 3681, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 1981.9, "z": 1210.0, "px": 2386.2, "py": 2254.5}, {"loc_id": 3681, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 1981.9, "z": 1210.0, "px": 2386.2, "py": 2254.5}, {"loc_id": 3681, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": 1981.9, "z": 1210.0, "px": 2386.2, "py": 2254.5}, {"loc_id": 3682, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 8764.5, "z": -3834.4, "px": 3543.8, "py": 1393.6}, {"loc_id": 3682, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 8764.5, "z": -3834.4, "px": 3543.8, "py": 1393.6}, {"loc_id": 3682, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 8764.5, "z": -3834.4, "px": 3543.8, "py": 1393.6}, {"loc_id": 3682, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": 8764.5, "z": -3834.4, "px": 3543.8, "py": 1393.6}, {"loc_id": 3683, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -1272.0, "z": -1862.3, "px": 1830.9, "py": 1730.2}, {"loc_id": 3683, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -1272.0, "z": -1862.3, "px": 1830.9, "py": 1730.2}, {"loc_id": 3683, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -1272.0, "z": -1862.3, "px": 1830.9, "py": 1730.2}, {"loc_id": 3684, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 4994.6, "z": -2173.4, "px": 2900.4, "py": 1677.1}, {"loc_id": 3684, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 4994.6, "z": -2173.4, "px": 2900.4, "py": 1677.1}, {"loc_id": 3684, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 4994.6, "z": -2173.4, "px": 2900.4, "py": 1677.1}, {"loc_id": 3685, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": 4484.1, "z": -325.2, "px": 2813.3, "py": 1992.5}, {"loc_id": 3686, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -8383.0, "z": -828.8, "px": 617.3, "py": 1906.6}, {"loc_id": 3686, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -8383.0, "z": -828.8, "px": 617.3, "py": 1906.6}, {"loc_id": 3687, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 60.5, "z": -1029.2, "px": 2058.3, "py": 1872.3}, {"loc_id": 3688, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -312.7, "z": -4487.1, "px": 1994.6, "py": 1282.2}, {"loc_id": 3689, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 2756.7, "z": -3714.8, "px": 2518.5, "py": 1414.0}, {"loc_id": 3689, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 2756.7, "z": -3714.8, "px": 2518.5, "py": 1414.0}, {"loc_id": 3691, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -3460.7, "z": 6716.9, "px": 1457.4, "py": 3194.4}, {"loc_id": 3692, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 3386.7, "z": -2688.7, "px": 2626.0, "py": 1589.1}, {"loc_id": 3692, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 3386.7, "z": -2688.7, "px": 2626.0, "py": 1589.1}, {"loc_id": 3692, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 3386.7, "z": -2688.7, "px": 2626.0, "py": 1589.1}, {"loc_id": 3693, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 3969.6, "z": -444.6, "px": 2725.5, "py": 1972.1}, {"loc_id": 3693, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 3969.6, "z": -444.6, "px": 2725.5, "py": 1972.1}, {"loc_id": 3694, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -572.7, "z": 582.5, "px": 1950.3, "py": 2147.4}, {"loc_id": 3696, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -9145.4, "z": 3265.8, "px": 487.2, "py": 2605.4}, {"loc_id": 3696, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -9145.4, "z": 3265.8, "px": 487.2, "py": 2605.4}, {"loc_id": 3697, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 6713.5, "z": 4869.0, "px": 3193.8, "py": 2879.0}, {"loc_id": 3697, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 6713.5, "z": 4869.0, "px": 3193.8, "py": 2879.0}, {"loc_id": 3698, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 1211.3, "z": -5761.3, "px": 2254.7, "py": 1064.7}, {"loc_id": 3698, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 1211.3, "z": -5761.3, "px": 2254.7, "py": 1064.7}, {"loc_id": 3699, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 1724.6, "z": -6208.0, "px": 2342.3, "py": 988.5}, {"loc_id": 3699, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 1724.6, "z": -6208.0, "px": 2342.3, "py": 988.5}, {"loc_id": 3699, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 1724.6, "z": -6208.0, "px": 2342.3, "py": 988.5}, {"loc_id": 3699, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": 1724.6, "z": -6208.0, "px": 2342.3, "py": 988.5}, {"loc_id": 3700, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -6919.8, "z": 2370.7, "px": 867.0, "py": 2452.6}, {"loc_id": 3700, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -6919.8, "z": 2370.7, "px": 867.0, "py": 2452.6}, {"loc_id": 3700, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -6919.8, "z": 2370.7, "px": 867.0, "py": 2452.6}, {"loc_id": 3702, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 8057.5, "z": -2623.5, "px": 3423.1, "py": 1600.3}, {"loc_id": 3702, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 8057.5, "z": -2623.5, "px": 3423.1, "py": 1600.3}, {"loc_id": 3703, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 7425.8, "z": -4225.3, "px": 3315.3, "py": 1326.9}, {"loc_id": 3703, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": 7425.8, "z": -4225.3, "px": 3315.3, "py": 1326.9}, {"loc_id": 3704, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 1728.8, "z": 6406.7, "px": 2343.0, "py": 3141.4}, {"loc_id": 3704, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 1728.8, "z": 6406.7, "px": 2343.0, "py": 3141.4}, {"loc_id": 3704, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 1728.8, "z": 6406.7, "px": 2343.0, "py": 3141.4}, {"loc_id": 3706, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -5254.2, "z": 378.8, "px": 1151.3, "py": 2112.6}, {"loc_id": 3706, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -5254.2, "z": 378.8, "px": 1151.3, "py": 2112.6}, {"loc_id": 3706, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -5254.2, "z": 378.8, "px": 1151.3, "py": 2112.6}, {"loc_id": 3707, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 3845.3, "z": 3655.8, "px": 2704.3, "py": 2671.9}, {"loc_id": 3707, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 3845.3, "z": 3655.8, "px": 2704.3, "py": 2671.9}, {"loc_id": 3709, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 2939.3, "z": 381.0, "px": 2549.6, "py": 2113.0}, {"loc_id": 3709, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 2939.3, "z": 381.0, "px": 2549.6, "py": 2113.0}, {"loc_id": 3710, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -9210.6, "z": 3012.9, "px": 476.1, "py": 2562.2}, {"loc_id": 3710, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -9210.6, "z": 3012.9, "px": 476.1, "py": 2562.2}, {"loc_id": 3710, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -9210.6, "z": 3012.9, "px": 476.1, "py": 2562.2}, {"loc_id": 3710, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": -9210.6, "z": 3012.9, "px": 476.1, "py": 2562.2}, {"loc_id": 3712, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -3719.4, "z": 4217.5, "px": 1413.2, "py": 2767.8}, {"loc_id": 3715, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 5818.9, "z": 191.6, "px": 3041.1, "py": 2080.7}, {"loc_id": 3715, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 5818.9, "z": 191.6, "px": 3041.1, "py": 2080.7}, {"loc_id": 3715, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 5818.9, "z": 191.6, "px": 3041.1, "py": 2080.7}, {"loc_id": 3715, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": 5818.9, "z": 191.6, "px": 3041.1, "py": 2080.7}, {"loc_id": 3716, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 7809.1, "z": -2757.9, "px": 3380.8, "py": 1577.3}, {"loc_id": 3717, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -2362.6, "z": -69.7, "px": 1644.8, "py": 2036.1}, {"loc_id": 3718, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -1093.3, "z": -1345.6, "px": 1861.4, "py": 1818.4}, {"loc_id": 3719, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 2298.1, "z": 1216.5, "px": 2440.2, "py": 2255.6}, {"loc_id": 3720, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 2234.2, "z": -1662.2, "px": 2429.3, "py": 1764.3}, {"loc_id": 3720, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 2234.2, "z": -1662.2, "px": 2429.3, "py": 1764.3}, {"loc_id": 3720, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 2234.2, "z": -1662.2, "px": 2429.3, "py": 1764.3}, {"loc_id": 3721, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 197.6, "z": -4409.8, "px": 2081.7, "py": 1295.4}, {"loc_id": 3721, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 197.6, "z": -4409.8, "px": 2081.7, "py": 1295.4}, {"loc_id": 3722, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -2947.2, "z": 4290.9, "px": 1545.0, "py": 2780.3}, {"loc_id": 3722, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -2947.2, "z": 4290.9, "px": 1545.0, "py": 2780.3}, {"loc_id": 3722, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -2947.2, "z": 4290.9, "px": 1545.0, "py": 2780.3}, {"loc_id": 3723, "loc_name": "TrollCave02", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": 1219.3, "z": -5368.6, "px": 2256.1, "py": 1131.8}, {"loc_id": 3724, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 8580.7, "z": -2168.7, "px": 3512.4, "py": 1677.9}, {"loc_id": 3724, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 8580.7, "z": -2168.7, "px": 3512.4, "py": 1677.9}, {"loc_id": 3724, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 8580.7, "z": -2168.7, "px": 3512.4, "py": 1677.9}, {"loc_id": 3725, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -1732.3, "z": -4410.7, "px": 1752.4, "py": 1295.2}, {"loc_id": 3725, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -1732.3, "z": -4410.7, "px": 1752.4, "py": 1295.2}, {"loc_id": 3726, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 709.5, "z": 507.3, "px": 2169.1, "py": 2134.6}, {"loc_id": 3726, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 709.5, "z": 507.3, "px": 2169.1, "py": 2134.6}, {"loc_id": 3726, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 709.5, "z": 507.3, "px": 2169.1, "py": 2134.6}, {"loc_id": 3726, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": 709.5, "z": 507.3, "px": 2169.1, "py": 2134.6}, {"loc_id": 3727, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 2051.3, "z": 3580.5, "px": 2398.1, "py": 2659.1}, {"loc_id": 3727, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 2051.3, "z": 3580.5, "px": 2398.1, "py": 2659.1}, {"loc_id": 3728, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 515.5, "z": 4612.2, "px": 2136.0, "py": 2835.1}, {"loc_id": 3728, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 515.5, "z": 4612.2, "px": 2136.0, "py": 2835.1}, {"loc_id": 3728, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": 515.5, "z": 4612.2, "px": 2136.0, "py": 2835.1}, {"loc_id": 3729, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -5828.9, "z": -5048.7, "px": 1053.2, "py": 1186.4}, {"loc_id": 3729, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -5828.9, "z": -5048.7, "px": 1053.2, "py": 1186.4}, {"loc_id": 3729, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -5828.9, "z": -5048.7, "px": 1053.2, "py": 1186.4}, {"loc_id": 3730, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -7354.9, "z": -4678.6, "px": 792.8, "py": 1249.5}, {"loc_id": 3730, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -7354.9, "z": -4678.6, "px": 792.8, "py": 1249.5}, {"loc_id": 3731, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 380.8, "z": 5241.2, "px": 2113.0, "py": 2942.5}, {"loc_id": 3731, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 380.8, "z": 5241.2, "px": 2113.0, "py": 2942.5}, {"loc_id": 3732, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 894.7, "z": 5126.4, "px": 2200.7, "py": 2922.9}, {"loc_id": 3732, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 894.7, "z": 5126.4, "px": 2200.7, "py": 2922.9}, {"loc_id": 3732, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 894.7, "z": 5126.4, "px": 2200.7, "py": 2922.9}, {"loc_id": 3733, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 3451.4, "z": 3584.6, "px": 2637.0, "py": 2659.8}, {"loc_id": 3733, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 3451.4, "z": 3584.6, "px": 2637.0, "py": 2659.8}, {"loc_id": 3734, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -3832.3, "z": -313.4, "px": 1394.0, "py": 1994.5}, {"loc_id": 3734, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -3832.3, "z": -313.4, "px": 1394.0, "py": 1994.5}, {"loc_id": 3736, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 1222.7, "z": 5702.9, "px": 2256.7, "py": 3021.3}, {"loc_id": 3737, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 699.1, "z": 5376.2, "px": 2167.3, "py": 2965.5}, {"loc_id": 3737, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 699.1, "z": 5376.2, "px": 2167.3, "py": 2965.5}, {"loc_id": 3738, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 5118.3, "z": 5370.0, "px": 2921.5, "py": 2964.5}, {"loc_id": 3738, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 5118.3, "z": 5370.0, "px": 2921.5, "py": 2964.5}, {"loc_id": 3739, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 7045.3, "z": -4227.9, "px": 3250.4, "py": 1326.4}, {"loc_id": 3740, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 1927.7, "z": 6714.1, "px": 2377.0, "py": 3193.9}, {"loc_id": 3740, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 1927.7, "z": 6714.1, "px": 2377.0, "py": 3193.9}, {"loc_id": 3740, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 1927.7, "z": 6714.1, "px": 2377.0, "py": 3193.9}, {"loc_id": 3740, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": 1927.7, "z": 6714.1, "px": 2377.0, "py": 3193.9}, {"loc_id": 3741, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -5753.1, "z": -1594.3, "px": 1066.1, "py": 1775.9}, {"loc_id": 3741, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -5753.1, "z": -1594.3, "px": 1066.1, "py": 1775.9}, {"loc_id": 3741, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -5753.1, "z": -1594.3, "px": 1066.1, "py": 1775.9}, {"loc_id": 3741, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -5753.1, "z": -1594.3, "px": 1066.1, "py": 1775.9}, {"loc_id": 3742, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 1916.6, "z": -1155.5, "px": 2375.1, "py": 1850.8}, {"loc_id": 3742, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 1916.6, "z": -1155.5, "px": 2375.1, "py": 1850.8}, {"loc_id": 3743, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 2500.4, "z": -1413.7, "px": 2474.7, "py": 1806.7}, {"loc_id": 3743, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 2500.4, "z": -1413.7, "px": 2474.7, "py": 1806.7}, {"loc_id": 3743, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 2500.4, "z": -1413.7, "px": 2474.7, "py": 1806.7}, {"loc_id": 3744, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -6714.7, "z": 5381.9, "px": 902.0, "py": 2966.5}, {"loc_id": 3744, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -6714.7, "z": 5381.9, "px": 902.0, "py": 2966.5}, {"loc_id": 3745, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -5823.3, "z": -192.9, "px": 1054.2, "py": 2015.1}, {"loc_id": 3746, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -4097.4, "z": -6395.4, "px": 1348.7, "py": 956.5}, {"loc_id": 3746, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -4097.4, "z": -6395.4, "px": 1348.7, "py": 956.5}, {"loc_id": 3746, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -4097.4, "z": -6395.4, "px": 1348.7, "py": 956.5}, {"loc_id": 3747, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 2493.6, "z": -4479.4, "px": 2473.6, "py": 1283.5}, {"loc_id": 3747, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 2493.6, "z": -4479.4, "px": 2473.6, "py": 1283.5}, {"loc_id": 3748, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 7356.0, "z": 1215.8, "px": 3303.4, "py": 2255.5}, {"loc_id": 3748, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 7356.0, "z": 1215.8, "px": 3303.4, "py": 2255.5}, {"loc_id": 3748, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": 7356.0, "z": 1215.8, "px": 3303.4, "py": 2255.5}, {"loc_id": 3750, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": 8192.4, "z": -3780.4, "px": 3446.2, "py": 1402.8}, {"loc_id": 3751, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 2496.6, "z": 4930.4, "px": 2474.1, "py": 2889.5}, {"loc_id": 3751, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 2496.6, "z": 4930.4, "px": 2474.1, "py": 2889.5}, {"loc_id": 3751, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 2496.6, "z": 4930.4, "px": 2474.1, "py": 2889.5}, {"loc_id": 3751, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": 2496.6, "z": 4930.4, "px": 2474.1, "py": 2889.5}, {"loc_id": 3752, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -8251.8, "z": -2047.4, "px": 639.7, "py": 1698.6}, {"loc_id": 3752, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -8251.8, "z": -2047.4, "px": 639.7, "py": 1698.6}, {"loc_id": 3753, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -7482.5, "z": -1856.3, "px": 771.0, "py": 1731.2}, {"loc_id": 3753, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -7482.5, "z": -1856.3, "px": 771.0, "py": 1731.2}, {"loc_id": 3753, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -7482.5, "z": -1856.3, "px": 771.0, "py": 1731.2}, {"loc_id": 3753, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -7482.5, "z": -1856.3, "px": 771.0, "py": 1731.2}, {"loc_id": 3755, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 1793.5, "z": -4609.6, "px": 2354.1, "py": 1261.3}, {"loc_id": 3755, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 1793.5, "z": -4609.6, "px": 2354.1, "py": 1261.3}, {"loc_id": 3755, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 1793.5, "z": -4609.6, "px": 2354.1, "py": 1261.3}, {"loc_id": 3757, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 9466.6, "z": 1344.4, "px": 3663.6, "py": 2277.4}, {"loc_id": 3758, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 2043.5, "z": 891.3, "px": 2396.8, "py": 2200.1}, {"loc_id": 3758, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 2043.5, "z": 891.3, "px": 2396.8, "py": 2200.1}, {"loc_id": 3759, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 8001.0, "z": -2363.9, "px": 3413.5, "py": 1644.6}, {"loc_id": 3759, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 8001.0, "z": -2363.9, "px": 3413.5, "py": 1644.6}, {"loc_id": 3761, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 2617.2, "z": -3463.9, "px": 2494.7, "py": 1456.8}, {"loc_id": 3761, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": 2617.2, "z": -3463.9, "px": 2494.7, "py": 1456.8}, {"loc_id": 3762, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -8130.1, "z": 2744.9, "px": 660.5, "py": 2516.5}, {"loc_id": 3762, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -8130.1, "z": 2744.9, "px": 660.5, "py": 2516.5}, {"loc_id": 3763, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -5888.7, "z": 1532.4, "px": 1043.0, "py": 2309.5}, {"loc_id": 3763, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -5888.7, "z": 1532.4, "px": 1043.0, "py": 2309.5}, {"loc_id": 3763, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -5888.7, "z": 1532.4, "px": 1043.0, "py": 2309.5}, {"loc_id": 3764, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -9210.9, "z": 2749.0, "px": 476.0, "py": 2517.2}, {"loc_id": 3764, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -9210.9, "z": 2749.0, "px": 476.0, "py": 2517.2}, {"loc_id": 3764, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -9210.9, "z": 2749.0, "px": 476.0, "py": 2517.2}, {"loc_id": 3765, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -4349.8, "z": 1666.7, "px": 1305.6, "py": 2332.5}, {"loc_id": 3765, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -4349.8, "z": 1666.7, "px": 1305.6, "py": 2332.5}, {"loc_id": 3765, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -4349.8, "z": 1666.7, "px": 1305.6, "py": 2332.5}, {"loc_id": 3766, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -8762.2, "z": -769.8, "px": 552.6, "py": 1916.6}, {"loc_id": 3766, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -8762.2, "z": -769.8, "px": 552.6, "py": 1916.6}, {"loc_id": 3768, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 8256.0, "z": 256.4, "px": 3457.0, "py": 2091.8}, {"loc_id": 3769, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -4735.0, "z": 5820.1, "px": 1239.9, "py": 3041.3}, {"loc_id": 3769, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -4735.0, "z": 5820.1, "px": 1239.9, "py": 3041.3}, {"loc_id": 3769, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -4735.0, "z": 5820.1, "px": 1239.9, "py": 3041.3}, {"loc_id": 3770, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -1537.8, "z": -1788.4, "px": 1785.5, "py": 1742.8}, {"loc_id": 3770, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -1537.8, "z": -1788.4, "px": 1785.5, "py": 1742.8}, {"loc_id": 3772, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 2047.5, "z": -893.5, "px": 2397.4, "py": 1895.5}, {"loc_id": 3772, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 2047.5, "z": -893.5, "px": 2397.4, "py": 1895.5}, {"loc_id": 3773, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -5755.6, "z": 4868.9, "px": 1065.7, "py": 2879.0}, {"loc_id": 3775, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 3011.2, "z": -2307.9, "px": 2561.9, "py": 1654.1}, {"loc_id": 3775, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 3011.2, "z": -2307.9, "px": 2561.9, "py": 1654.1}, {"loc_id": 3776, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 1080.6, "z": 5436.8, "px": 2232.4, "py": 2975.9}, {"loc_id": 3777, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -3462.0, "z": 4673.6, "px": 1457.2, "py": 2845.6}, {"loc_id": 3777, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -3462.0, "z": 4673.6, "px": 1457.2, "py": 2845.6}, {"loc_id": 3777, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -3462.0, "z": 4673.6, "px": 1457.2, "py": 2845.6}, {"loc_id": 3778, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 2238.2, "z": 5052.9, "px": 2430.0, "py": 2910.4}, {"loc_id": 3778, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 2238.2, "z": 5052.9, "px": 2430.0, "py": 2910.4}, {"loc_id": 3779, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -7864.9, "z": -2428.8, "px": 705.7, "py": 1633.5}, {"loc_id": 3780, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -1728.8, "z": 4739.2, "px": 1753.0, "py": 2856.8}, {"loc_id": 3781, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 2876.8, "z": -5.6, "px": 2539.0, "py": 2047.0}, {"loc_id": 3781, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 2876.8, "z": -5.6, "px": 2539.0, "py": 2047.0}, {"loc_id": 3782, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 895.5, "z": -5562.6, "px": 2200.8, "py": 1098.6}, {"loc_id": 3782, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 895.5, "z": -5562.6, "px": 2200.8, "py": 1098.6}, {"loc_id": 3783, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -829.5, "z": -0.2, "px": 1906.4, "py": 2048.0}, {"loc_id": 3783, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -829.5, "z": -0.2, "px": 1906.4, "py": 2048.0}, {"loc_id": 3784, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -8321.6, "z": -1671.9, "px": 627.8, "py": 1762.7}, {"loc_id": 3784, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -8321.6, "z": -1671.9, "px": 627.8, "py": 1762.7}, {"loc_id": 3784, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -8321.6, "z": -1671.9, "px": 627.8, "py": 1762.7}, {"loc_id": 3785, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 6073.2, "z": -5959.7, "px": 3084.5, "py": 1030.9}, {"loc_id": 3785, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 6073.2, "z": -5959.7, "px": 3084.5, "py": 1030.9}, {"loc_id": 3786, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -6713.9, "z": -4667.5, "px": 902.2, "py": 1251.4}, {"loc_id": 3787, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 4221.6, "z": -249.2, "px": 2768.5, "py": 2005.5}, {"loc_id": 3787, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 4221.6, "z": -249.2, "px": 2768.5, "py": 2005.5}, {"loc_id": 3788, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -7622.4, "z": -4869.7, "px": 747.1, "py": 1216.9}, {"loc_id": 3788, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -7622.4, "z": -4869.7, "px": 747.1, "py": 1216.9}, {"loc_id": 3789, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -1147.2, "z": -1093.0, "px": 1852.2, "py": 1861.5}, {"loc_id": 3789, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -1147.2, "z": -1093.0, "px": 1852.2, "py": 1861.5}, {"loc_id": 3790, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 8190.4, "z": 1.8, "px": 3445.8, "py": 2048.3}, {"loc_id": 3791, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -3714.2, "z": 6916.4, "px": 1414.1, "py": 3228.4}, {"loc_id": 3791, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -3714.2, "z": 6916.4, "px": 1414.1, "py": 3228.4}, {"loc_id": 3792, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -2243.9, "z": -3007.8, "px": 1665.0, "py": 1534.7}, {"loc_id": 3792, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -2243.9, "z": -3007.8, "px": 1665.0, "py": 1534.7}, {"loc_id": 3792, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -2243.9, "z": -3007.8, "px": 1665.0, "py": 1534.7}, {"loc_id": 3793, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 9471.5, "z": 5.8, "px": 3664.5, "py": 2049.0}, {"loc_id": 3793, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 9471.5, "z": 5.8, "px": 3664.5, "py": 2049.0}, {"loc_id": 3793, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 9471.5, "z": 5.8, "px": 3664.5, "py": 2049.0}, {"loc_id": 3794, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 2878.4, "z": -4863.1, "px": 2539.2, "py": 1218.0}, {"loc_id": 3794, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 2878.4, "z": -4863.1, "px": 2539.2, "py": 1218.0}, {"loc_id": 3795, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 6850.4, "z": -3901.3, "px": 3217.1, "py": 1382.2}, {"loc_id": 3796, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -9791.4, "z": -195.1, "px": 376.9, "py": 2014.7}, {"loc_id": 3797, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -4099.4, "z": -2360.3, "px": 1348.4, "py": 1645.2}, {"loc_id": 3797, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -4099.4, "z": -2360.3, "px": 1348.4, "py": 1645.2}, {"loc_id": 3797, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -4099.4, "z": -2360.3, "px": 1348.4, "py": 1645.2}, {"loc_id": 3797, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -4099.4, "z": -2360.3, "px": 1348.4, "py": 1645.2}, {"loc_id": 3798, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -8958.8, "z": 3075.5, "px": 519.0, "py": 2572.9}, {"loc_id": 3798, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -8958.8, "z": 3075.5, "px": 519.0, "py": 2572.9}, {"loc_id": 3798, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -8958.8, "z": 3075.5, "px": 519.0, "py": 2572.9}, {"loc_id": 3799, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 2499.3, "z": 1410.3, "px": 2474.5, "py": 2288.7}, {"loc_id": 3799, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": 2499.3, "z": 1410.3, "px": 2474.5, "py": 2288.7}, {"loc_id": 3800, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 960.1, "z": 3394.0, "px": 2211.9, "py": 2627.2}, {"loc_id": 3800, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 960.1, "z": 3394.0, "px": 2211.9, "py": 2627.2}, {"loc_id": 3802, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -2105.1, "z": 1030.1, "px": 1688.7, "py": 2223.8}, {"loc_id": 3802, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -2105.1, "z": 1030.1, "px": 1688.7, "py": 2223.8}, {"loc_id": 3803, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -9670.8, "z": 582.3, "px": 397.5, "py": 2147.4}, {"loc_id": 3803, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -9670.8, "z": 582.3, "px": 397.5, "py": 2147.4}, {"loc_id": 3804, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 7549.6, "z": -2883.2, "px": 3336.5, "py": 1555.9}, {"loc_id": 3804, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 7549.6, "z": -2883.2, "px": 3336.5, "py": 1555.9}, {"loc_id": 3804, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 7549.6, "z": -2883.2, "px": 3336.5, "py": 1555.9}, {"loc_id": 3804, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": 7549.6, "z": -2883.2, "px": 3336.5, "py": 1555.9}, {"loc_id": 3805, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -4.8, "z": -4738.9, "px": 2047.2, "py": 1239.2}, {"loc_id": 3805, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -4.8, "z": -4738.9, "px": 2047.2, "py": 1239.2}, {"loc_id": 3807, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -1275.9, "z": -5382.8, "px": 1830.2, "py": 1129.3}, {"loc_id": 3808, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -9411.7, "z": -133.3, "px": 441.7, "py": 2025.3}, {"loc_id": 3808, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -9411.7, "z": -133.3, "px": 441.7, "py": 2025.3}, {"loc_id": 3808, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -9411.7, "z": -133.3, "px": 441.7, "py": 2025.3}, {"loc_id": 3809, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 8769.6, "z": -1413.0, "px": 3544.7, "py": 1806.8}, {"loc_id": 3809, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 8769.6, "z": -1413.0, "px": 3544.7, "py": 1806.8}, {"loc_id": 3810, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 7425.5, "z": -3262.8, "px": 3315.3, "py": 1491.1}, {"loc_id": 3810, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 7425.5, "z": -3262.8, "px": 3315.3, "py": 1491.1}, {"loc_id": 3811, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 1413.4, "z": -2500.8, "px": 2289.2, "py": 1621.2}, {"loc_id": 3811, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 1413.4, "z": -2500.8, "px": 2289.2, "py": 1621.2}, {"loc_id": 3812, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -5566.6, "z": -5180.0, "px": 1098.0, "py": 1163.9}, {"loc_id": 3812, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -5566.6, "z": -5180.0, "px": 1098.0, "py": 1163.9}, {"loc_id": 3813, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -826.8, "z": 512.6, "px": 1906.9, "py": 2135.5}, {"loc_id": 3813, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -826.8, "z": 512.6, "px": 1906.9, "py": 2135.5}, {"loc_id": 3814, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -8316.8, "z": -1210.1, "px": 628.6, "py": 1841.5}, {"loc_id": 3814, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -8316.8, "z": -1210.1, "px": 628.6, "py": 1841.5}, {"loc_id": 3814, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -8316.8, "z": -1210.1, "px": 628.6, "py": 1841.5}, {"loc_id": 3815, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 4288.4, "z": -963.1, "px": 2779.9, "py": 1883.6}, {"loc_id": 3815, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 4288.4, "z": -963.1, "px": 2779.9, "py": 1883.6}, {"loc_id": 3818, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 5308.7, "z": 5052.4, "px": 2954.0, "py": 2910.3}, {"loc_id": 3818, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 5308.7, "z": 5052.4, "px": 2954.0, "py": 2910.3}, {"loc_id": 3818, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 5308.7, "z": 5052.4, "px": 2954.0, "py": 2910.3}, {"loc_id": 3819, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 5374.1, "z": -962.4, "px": 2965.2, "py": 1883.8}, {"loc_id": 3819, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 5374.1, "z": -962.4, "px": 2965.2, "py": 1883.8}, {"loc_id": 3820, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -9158.0, "z": 3524.6, "px": 485.0, "py": 2649.5}, {"loc_id": 3820, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -9158.0, "z": 3524.6, "px": 485.0, "py": 2649.5}, {"loc_id": 3821, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -6919.7, "z": 260.0, "px": 867.0, "py": 2092.4}, {"loc_id": 3821, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -6919.7, "z": 260.0, "px": 867.0, "py": 2092.4}, {"loc_id": 3823, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -6791.2, "z": 3718.5, "px": 889.0, "py": 2682.6}, {"loc_id": 3823, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -6791.2, "z": 3718.5, "px": 889.0, "py": 2682.6}, {"loc_id": 3823, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -6791.2, "z": 3718.5, "px": 889.0, "py": 2682.6}, {"loc_id": 3823, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -6791.2, "z": 3718.5, "px": 889.0, "py": 2682.6}, {"loc_id": 3825, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -9337.1, "z": -2692.8, "px": 454.5, "py": 1588.4}, {"loc_id": 3825, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -9337.1, "z": -2692.8, "px": 454.5, "py": 1588.4}, {"loc_id": 3825, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -9337.1, "z": -2692.8, "px": 454.5, "py": 1588.4}, {"loc_id": 3826, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 2173.8, "z": 3842.8, "px": 2419.0, "py": 2703.8}, {"loc_id": 3828, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 7804.1, "z": -765.8, "px": 3379.9, "py": 1917.3}, {"loc_id": 3828, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 7804.1, "z": -765.8, "px": 3379.9, "py": 1917.3}, {"loc_id": 3828, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 7804.1, "z": -765.8, "px": 3379.9, "py": 1917.3}, {"loc_id": 3829, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 2566.7, "z": 323.5, "px": 2486.1, "py": 2103.2}, {"loc_id": 3829, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 2566.7, "z": 323.5, "px": 2486.1, "py": 2103.2}, {"loc_id": 3830, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -3133.3, "z": 6651.7, "px": 1513.3, "py": 3183.2}, {"loc_id": 3830, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -3133.3, "z": 6651.7, "px": 1513.3, "py": 3183.2}, {"loc_id": 3830, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -3133.3, "z": 6651.7, "px": 1513.3, "py": 3183.2}, {"loc_id": 3832, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -1988.7, "z": -4732.3, "px": 1708.6, "py": 1240.4}, {"loc_id": 3832, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -1988.7, "z": -4732.3, "px": 1708.6, "py": 1240.4}, {"loc_id": 3833, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 8258.3, "z": -4158.8, "px": 3457.4, "py": 1338.2}, {"loc_id": 3833, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 8258.3, "z": -4158.8, "px": 3457.4, "py": 1338.2}, {"loc_id": 3833, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": 8258.3, "z": -4158.8, "px": 3457.4, "py": 1338.2}, {"loc_id": 3834, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 3704.4, "z": 3395.4, "px": 2680.2, "py": 2627.5}, {"loc_id": 3834, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 3704.4, "z": 3395.4, "px": 2680.2, "py": 2627.5}, {"loc_id": 3835, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 4600.8, "z": -5114.6, "px": 2833.2, "py": 1175.1}, {"loc_id": 3835, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 4600.8, "z": -5114.6, "px": 2833.2, "py": 1175.1}, {"loc_id": 3835, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 4600.8, "z": -5114.6, "px": 2833.2, "py": 1175.1}, {"loc_id": 3836, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -5689.6, "z": 4606.9, "px": 1077.0, "py": 2834.2}, {"loc_id": 3836, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -5689.6, "z": 4606.9, "px": 1077.0, "py": 2834.2}, {"loc_id": 3836, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -5689.6, "z": 4606.9, "px": 1077.0, "py": 2834.2}, {"loc_id": 3836, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -5689.6, "z": 4606.9, "px": 1077.0, "py": 2834.2}, {"loc_id": 3837, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -1727.8, "z": 4999.6, "px": 1753.1, "py": 2901.3}, {"loc_id": 3837, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -1727.8, "z": 4999.6, "px": 1753.1, "py": 2901.3}, {"loc_id": 3837, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -1727.8, "z": 4999.6, "px": 1753.1, "py": 2901.3}, {"loc_id": 3837, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -1727.8, "z": 4999.6, "px": 1753.1, "py": 2901.3}, {"loc_id": 3839, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 1731.9, "z": -826.9, "px": 2343.6, "py": 1906.9}, {"loc_id": 3839, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 1731.9, "z": -826.9, "px": 2343.6, "py": 1906.9}, {"loc_id": 3839, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 1731.9, "z": -826.9, "px": 2343.6, "py": 1906.9}, {"loc_id": 3840, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -5499.1, "z": -6213.3, "px": 1109.5, "py": 987.6}, {"loc_id": 3841, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 450.3, "z": 642.2, "px": 2124.9, "py": 2157.6}, {"loc_id": 3841, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 450.3, "z": 642.2, "px": 2124.9, "py": 2157.6}, {"loc_id": 3841, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 450.3, "z": 642.2, "px": 2124.9, "py": 2157.6}, {"loc_id": 3842, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -955.8, "z": 259.9, "px": 1884.9, "py": 2092.4}, {"loc_id": 3842, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -955.8, "z": 259.9, "px": 1884.9, "py": 2092.4}, {"loc_id": 3843, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -7354.8, "z": -4988.7, "px": 792.8, "py": 1196.6}, {"loc_id": 3843, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -7354.8, "z": -4988.7, "px": 792.8, "py": 1196.6}, {"loc_id": 3843, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -7354.8, "z": -4988.7, "px": 792.8, "py": 1196.6}, {"loc_id": 3844, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -6713.3, "z": 445.6, "px": 902.3, "py": 2124.0}, {"loc_id": 3844, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -6713.3, "z": 445.6, "px": 902.3, "py": 2124.0}, {"loc_id": 3844, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -6713.3, "z": 445.6, "px": 902.3, "py": 2124.0}, {"loc_id": 3845, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 5953.2, "z": -250.6, "px": 3064.0, "py": 2005.2}, {"loc_id": 3845, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 5953.2, "z": -250.6, "px": 3064.0, "py": 2005.2}, {"loc_id": 3845, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": 5953.2, "z": -250.6, "px": 3064.0, "py": 2005.2}, {"loc_id": 3846, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -5510.3, "z": -1859.5, "px": 1107.6, "py": 1730.6}, {"loc_id": 3846, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -5510.3, "z": -1859.5, "px": 1107.6, "py": 1730.6}, {"loc_id": 3847, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -4216.1, "z": -257.4, "px": 1328.5, "py": 2004.1}, {"loc_id": 3847, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -4216.1, "z": -257.4, "px": 1328.5, "py": 2004.1}, {"loc_id": 3847, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": -4216.1, "z": -257.4, "px": 1328.5, "py": 2004.1}, {"loc_id": 3847, "loc_name": "TrollCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -4216.1, "z": -257.4, "px": 1328.5, "py": 2004.1}, {"loc_id": 3848, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 7865.7, "z": -3013.2, "px": 3390.4, "py": 1533.7}, {"loc_id": 3848, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 7865.7, "z": -3013.2, "px": 3390.4, "py": 1533.7}, {"loc_id": 3848, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 7865.7, "z": -3013.2, "px": 3390.4, "py": 1533.7}, {"loc_id": 3849, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 9784.1, "z": 1209.0, "px": 3717.8, "py": 2254.3}, {"loc_id": 3850, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 771.1, "z": -2689.5, "px": 2179.6, "py": 1589.0}, {"loc_id": 3851, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -1339.4, "z": -1600.6, "px": 1819.4, "py": 1774.8}, {"loc_id": 3851, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": -1339.4, "z": -1600.6, "px": 1819.4, "py": 1774.8}, {"loc_id": 3852, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": -7224.3, "z": -1976.6, "px": 815.1, "py": 1710.7}, {"loc_id": 3853, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 9786.0, "z": -1543.8, "px": 3718.1, "py": 1784.5}, {"loc_id": 3853, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 9786.0, "z": -1543.8, "px": 3718.1, "py": 1784.5}, {"loc_id": 3854, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 7613.6, "z": 3776.7, "px": 3347.4, "py": 2692.6}, {"loc_id": 3854, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 7613.6, "z": 3776.7, "px": 3347.4, "py": 2692.6}, {"loc_id": 3854, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 7613.6, "z": 3776.7, "px": 3347.4, "py": 2692.6}, {"loc_id": 3856, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 5306.9, "z": 6399.7, "px": 2953.7, "py": 3140.2}, {"loc_id": 3856, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave", "count": 1, "x": 5306.9, "z": 6399.7, "px": 2953.7, "py": 3140.2}, {"loc_id": 3856, "loc_name": "TrollCave02", "item": "Container: TreasureChest_trollcave (1)", "count": 1, "x": 5306.9, "z": 6399.7, "px": 2953.7, "py": 3140.2}, {"loc_id": 3857, "loc_name": "TrollCave02", "item": "SpawnOnce: Troll", "count": 1, "x": 6782.9, "z": 4614.1, "px": 3205.6, "py": 2835.5}, {"loc_id": 3858, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 6834.8, "z": -3823.5, "px": 3214.5, "py": 1395.5}, {"loc_id": 3858, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 6834.8, "z": -3823.5, "px": 3214.5, "py": 1395.5}, {"loc_id": 3859, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 2380.4, "z": -1394.2, "px": 2454.3, "py": 1810.1}, {"loc_id": 3859, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 2380.4, "z": -1394.2, "px": 2454.3, "py": 1810.1}, {"loc_id": 3860, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 2231.1, "z": 1389.2, "px": 2428.8, "py": 2285.1}, {"loc_id": 3861, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 3513.5, "z": 5058.0, "px": 2647.6, "py": 2911.2}, {"loc_id": 3861, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 3513.5, "z": 5058.0, "px": 2647.6, "py": 2911.2}, {"loc_id": 3863, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 8000.5, "z": -3094.8, "px": 3413.4, "py": 1519.8}, {"loc_id": 3863, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 8000.5, "z": -3094.8, "px": 3413.4, "py": 1519.8}, {"loc_id": 3864, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -3497.3, "z": 4734.6, "px": 1451.1, "py": 2856.0}, {"loc_id": 3864, "loc_name": "Dolmen01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -3497.3, "z": 4734.6, "px": 1451.1, "py": 2856.0}, {"loc_id": 3865, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 2934.0, "z": -2248.8, "px": 2548.7, "py": 1664.2}, {"loc_id": 3865, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 2934.0, "z": -2248.8, "px": 2548.7, "py": 1664.2}, {"loc_id": 3867, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -497.9, "z": 46.8, "px": 1963.0, "py": 2056.0}, {"loc_id": 3868, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 2699.7, "z": -3349.7, "px": 2508.7, "py": 1476.3}, {"loc_id": 3868, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 2699.7, "z": -3349.7, "px": 2508.7, "py": 1476.3}, {"loc_id": 3868, "loc_name": "Dolmen01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 2699.7, "z": -3349.7, "px": 2508.7, "py": 1476.3}, {"loc_id": 3869, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -5113.8, "z": 5651.2, "px": 1175.2, "py": 3012.5}, {"loc_id": 3870, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -3455.7, "z": -2501.1, "px": 1458.2, "py": 1621.1}, {"loc_id": 3871, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -3135.0, "z": 3112.8, "px": 1513.0, "py": 2579.3}, {"loc_id": 3872, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -1805.5, "z": -84.0, "px": 1739.9, "py": 2033.7}, {"loc_id": 3873, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 2745.9, "z": -4969.2, "px": 2516.6, "py": 1199.9}, {"loc_id": 3874, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 8529.2, "z": 196.7, "px": 3503.7, "py": 2081.6}, {"loc_id": 3876, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 2187.7, "z": 5137.7, "px": 2421.4, "py": 2924.8}, {"loc_id": 3877, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -2550.4, "z": -6189.7, "px": 1612.7, "py": 991.6}, {"loc_id": 3878, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -3841.9, "z": 1204.8, "px": 1392.3, "py": 2253.6}, {"loc_id": 3878, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -3841.9, "z": 1204.8, "px": 1392.3, "py": 2253.6}, {"loc_id": 3879, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -9110.2, "z": 3014.1, "px": 493.2, "py": 2562.4}, {"loc_id": 3880, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -9293.8, "z": 2733.4, "px": 461.9, "py": 2514.5}, {"loc_id": 3881, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 2623.6, "z": 4931.0, "px": 2495.8, "py": 2889.6}, {"loc_id": 3881, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 2623.6, "z": 4931.0, "px": 2495.8, "py": 2889.6}, {"loc_id": 3882, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -1280.6, "z": -5494.6, "px": 1829.4, "py": 1110.3}, {"loc_id": 3882, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -1280.6, "z": -5494.6, "px": 1829.4, "py": 1110.3}, {"loc_id": 3885, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 2372.7, "z": 3643.1, "px": 2452.9, "py": 2669.8}, {"loc_id": 3885, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 2372.7, "z": 3643.1, "px": 2452.9, "py": 2669.8}, {"loc_id": 3887, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -4860.9, "z": 5506.6, "px": 1218.4, "py": 2987.8}, {"loc_id": 3888, "loc_name": "Dolmen01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -2000.5, "z": 3.5, "px": 1706.6, "py": 2048.6}, {"loc_id": 3889, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -3396.4, "z": 1520.3, "px": 1468.3, "py": 2307.5}, {"loc_id": 3890, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -7234.7, "z": 2536.8, "px": 813.3, "py": 2480.9}, {"loc_id": 3891, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -1211.3, "z": -1287.4, "px": 1841.3, "py": 1828.3}, {"loc_id": 3891, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -1211.3, "z": -1287.4, "px": 1841.3, "py": 1828.3}, {"loc_id": 3892, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -6888.5, "z": 5378.9, "px": 872.4, "py": 2966.0}, {"loc_id": 3892, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -6888.5, "z": 5378.9, "px": 872.4, "py": 2966.0}, {"loc_id": 3893, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 134.5, "z": -41.0, "px": 2071.0, "py": 2041.0}, {"loc_id": 3894, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -5000.6, "z": 5821.3, "px": 1194.6, "py": 3041.5}, {"loc_id": 3895, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 2420.8, "z": -3392.8, "px": 2461.1, "py": 1469.0}, {"loc_id": 3895, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 2420.8, "z": -3392.8, "px": 2461.1, "py": 1469.0}, {"loc_id": 3896, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -7415.4, "z": -2024.3, "px": 782.4, "py": 1702.5}, {"loc_id": 3896, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -7415.4, "z": -2024.3, "px": 782.4, "py": 1702.5}, {"loc_id": 3897, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 896.9, "z": -3979.1, "px": 2201.1, "py": 1368.9}, {"loc_id": 3900, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 2964.1, "z": -2902.3, "px": 2553.9, "py": 1552.7}, {"loc_id": 3902, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -1814.1, "z": -749.0, "px": 1738.4, "py": 1920.2}, {"loc_id": 3903, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -1705.3, "z": -1099.1, "px": 1757.0, "py": 1860.4}, {"loc_id": 3904, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -9650.2, "z": 640.5, "px": 401.0, "py": 2157.3}, {"loc_id": 3904, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -9650.2, "z": 640.5, "px": 401.0, "py": 2157.3}, {"loc_id": 3905, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 7794.5, "z": -209.0, "px": 3378.3, "py": 2012.3}, {"loc_id": 3906, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -1236.5, "z": -2027.4, "px": 1837.0, "py": 1702.0}, {"loc_id": 3906, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -1236.5, "z": -2027.4, "px": 1837.0, "py": 1702.0}, {"loc_id": 3908, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 721.4, "z": 3340.9, "px": 2171.1, "py": 2618.2}, {"loc_id": 3908, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 721.4, "z": 3340.9, "px": 2171.1, "py": 2618.2}, {"loc_id": 3909, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 4.3, "z": -374.5, "px": 2048.7, "py": 1984.1}, {"loc_id": 3911, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 8196.8, "z": -2473.2, "px": 3446.9, "py": 1625.9}, {"loc_id": 3911, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 8196.8, "z": -2473.2, "px": 3446.9, "py": 1625.9}, {"loc_id": 3912, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -5241.1, "z": 722.5, "px": 1153.5, "py": 2171.3}, {"loc_id": 3913, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -6274.1, "z": 2361.1, "px": 977.2, "py": 2451.0}, {"loc_id": 3914, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -3434.2, "z": 3209.1, "px": 1461.9, "py": 2595.7}, {"loc_id": 3915, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -566.5, "z": 104.9, "px": 1951.3, "py": 2065.9}, {"loc_id": 3915, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -566.5, "z": 104.9, "px": 1951.3, "py": 2065.9}, {"loc_id": 3916, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 3919.6, "z": 3647.0, "px": 2716.9, "py": 2670.4}, {"loc_id": 3917, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -9045.5, "z": 3258.0, "px": 504.2, "py": 2604.0}, {"loc_id": 3917, "loc_name": "Dolmen01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -9045.5, "z": 3258.0, "px": 504.2, "py": 2604.0}, {"loc_id": 3918, "loc_name": "Dolmen01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 4084.5, "z": -1525.6, "px": 2745.1, "py": 1787.6}, {"loc_id": 3919, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -1682.1, "z": -361.8, "px": 1760.9, "py": 1986.3}, {"loc_id": 3919, "loc_name": "Dolmen01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -1682.1, "z": -361.8, "px": 1760.9, "py": 1986.3}, {"loc_id": 3920, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 6010.7, "z": 1403.0, "px": 3073.8, "py": 2287.4}, {"loc_id": 3921, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 1740.2, "z": -14.2, "px": 2345.0, "py": 2045.6}, {"loc_id": 3922, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -586.7, "z": -45.0, "px": 1947.9, "py": 2040.3}, {"loc_id": 3922, "loc_name": "Dolmen01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -586.7, "z": -45.0, "px": 1947.9, "py": 2040.3}, {"loc_id": 3923, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -1171.5, "z": -5360.5, "px": 1848.1, "py": 1133.1}, {"loc_id": 3924, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 3187.2, "z": -2772.8, "px": 2591.9, "py": 1574.8}, {"loc_id": 3924, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 3187.2, "z": -2772.8, "px": 2591.9, "py": 1574.8}, {"loc_id": 3926, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 7317.2, "z": -4113.4, "px": 3296.8, "py": 1346.0}, {"loc_id": 3927, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -2429.6, "z": -1654.9, "px": 1633.3, "py": 1765.6}, {"loc_id": 3928, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -6762.9, "z": 5488.9, "px": 893.8, "py": 2984.8}, {"loc_id": 3928, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -6762.9, "z": 5488.9, "px": 893.8, "py": 2984.8}, {"loc_id": 3929, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 1454.0, "z": 122.2, "px": 2296.1, "py": 2068.9}, {"loc_id": 3930, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -4299.7, "z": -382.3, "px": 1314.2, "py": 1982.8}, {"loc_id": 3930, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -4299.7, "z": -382.3, "px": 1314.2, "py": 1982.8}, {"loc_id": 3931, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 4266.8, "z": -307.8, "px": 2776.2, "py": 1995.5}, {"loc_id": 3931, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 4266.8, "z": -307.8, "px": 2776.2, "py": 1995.5}, {"loc_id": 3932, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 2951.6, "z": -2325.0, "px": 2551.7, "py": 1651.2}, {"loc_id": 3932, "loc_name": "Dolmen01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 2951.6, "z": -2325.0, "px": 2551.7, "py": 1651.2}, {"loc_id": 3933, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -6930.4, "z": 2302.0, "px": 865.2, "py": 2440.9}, {"loc_id": 3934, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -9715.4, "z": -399.7, "px": 389.9, "py": 1979.8}, {"loc_id": 3936, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 5498.1, "z": 497.8, "px": 2986.3, "py": 2133.0}, {"loc_id": 3937, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -1724.9, "z": 3055.9, "px": 1753.6, "py": 2569.5}, {"loc_id": 3938, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -7311.8, "z": 2519.5, "px": 800.1, "py": 2478.0}, {"loc_id": 3938, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -7311.8, "z": 2519.5, "px": 800.1, "py": 2478.0}, {"loc_id": 3939, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 7279.6, "z": 3783.4, "px": 3290.4, "py": 2693.7}, {"loc_id": 3940, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 881.4, "z": -2728.2, "px": 2198.4, "py": 1582.4}, {"loc_id": 3940, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 881.4, "z": -2728.2, "px": 2198.4, "py": 1582.4}, {"loc_id": 3941, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -4074.5, "z": -2052.6, "px": 1352.6, "py": 1697.7}, {"loc_id": 3943, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -3179.8, "z": 4227.6, "px": 1505.3, "py": 2769.5}, {"loc_id": 3944, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -3445.1, "z": 2861.7, "px": 1460.0, "py": 2536.4}, {"loc_id": 3946, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 5268.2, "z": 4860.6, "px": 2947.1, "py": 2877.5}, {"loc_id": 3947, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -7144.6, "z": 2639.8, "px": 828.7, "py": 2498.5}, {"loc_id": 3947, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -7144.6, "z": 2639.8, "px": 828.7, "py": 2498.5}, {"loc_id": 3948, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 3401.2, "z": 3571.1, "px": 2628.5, "py": 2657.5}, {"loc_id": 3950, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 8888.3, "z": -1641.6, "px": 3564.9, "py": 1767.8}, {"loc_id": 3950, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 8888.3, "z": -1641.6, "px": 3564.9, "py": 1767.8}, {"loc_id": 3951, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": 3279.2, "z": -2293.1, "px": 2607.7, "py": 1656.6}, {"loc_id": 3951, "loc_name": "Dolmen01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 3279.2, "z": -2293.1, "px": 2607.7, "py": 1656.6}, {"loc_id": 3953, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -270.5, "z": -4182.6, "px": 2001.8, "py": 1334.2}, {"loc_id": 3953, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -270.5, "z": -4182.6, "px": 2001.8, "py": 1334.2}, {"loc_id": 3955, "loc_name": "Dolmen01", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 110.5, "z": -208.7, "px": 2066.9, "py": 2012.4}, {"loc_id": 3956, "loc_name": "Dolmen01", "item": "Pickable: BoneFragments", "count": 1, "x": -6643.0, "z": 5526.4, "px": 914.3, "py": 2991.2}, {"loc_id": 3958, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": -3562.5, "z": -1962.9, "px": 1440.0, "py": 1713.0}, {"loc_id": 3959, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 3882.8, "z": -1525.9, "px": 2710.7, "py": 1787.6}, {"loc_id": 3960, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -1493.5, "z": -1163.4, "px": 1793.1, "py": 1849.4}, {"loc_id": 3960, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": -1493.5, "z": -1163.4, "px": 1793.1, "py": 1849.4}, {"loc_id": 3961, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 2100.2, "z": 1015.7, "px": 2406.4, "py": 2221.3}, {"loc_id": 3961, "loc_name": "Dolmen02", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 2100.2, "z": 1015.7, "px": 2406.4, "py": 2221.3}, {"loc_id": 3961, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 2100.2, "z": 1015.7, "px": 2406.4, "py": 2221.3}, {"loc_id": 3962, "loc_name": "Dolmen02", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 1541.6, "z": -148.2, "px": 2311.1, "py": 2022.7}, {"loc_id": 3963, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 3724.3, "z": 1329.8, "px": 2683.6, "py": 2275.0}, {"loc_id": 3963, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 3724.3, "z": 1329.8, "px": 2683.6, "py": 2275.0}, {"loc_id": 3964, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 380.8, "z": 5185.4, "px": 2113.0, "py": 2933.0}, {"loc_id": 3967, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 949.0, "z": 112.6, "px": 2210.0, "py": 2067.2}, {"loc_id": 3968, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": -8332.4, "z": 2546.9, "px": 625.9, "py": 2482.7}, {"loc_id": 3969, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": -3535.9, "z": -2493.5, "px": 1444.5, "py": 1622.4}, {"loc_id": 3970, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 175.9, "z": -58.0, "px": 2078.0, "py": 2038.1}, {"loc_id": 3970, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 175.9, "z": -58.0, "px": 2078.0, "py": 2038.1}, {"loc_id": 3971, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": -336.9, "z": -947.6, "px": 1990.5, "py": 1886.3}, {"loc_id": 3972, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 9722.0, "z": 1208.9, "px": 3707.2, "py": 2254.3}, {"loc_id": 3972, "loc_name": "Dolmen02", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 9722.0, "z": 1208.9, "px": 3707.2, "py": 2254.3}, {"loc_id": 3972, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 9722.0, "z": 1208.9, "px": 3707.2, "py": 2254.3}, {"loc_id": 3973, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 4356.3, "z": 6803.5, "px": 2791.5, "py": 3209.1}, {"loc_id": 3974, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 4137.0, "z": 6766.7, "px": 2754.0, "py": 3202.9}, {"loc_id": 3974, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 4137.0, "z": 6766.7, "px": 2754.0, "py": 3202.9}, {"loc_id": 3975, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -2166.5, "z": -4084.0, "px": 1678.3, "py": 1351.0}, {"loc_id": 3975, "loc_name": "Dolmen02", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -2166.5, "z": -4084.0, "px": 1678.3, "py": 1351.0}, {"loc_id": 3975, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": -2166.5, "z": -4084.0, "px": 1678.3, "py": 1351.0}, {"loc_id": 3976, "loc_name": "Dolmen02", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 2105.1, "z": 704.3, "px": 2407.3, "py": 2168.2}, {"loc_id": 3976, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 2105.1, "z": 704.3, "px": 2407.3, "py": 2168.2}, {"loc_id": 3977, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 7952.5, "z": -2307.4, "px": 3405.2, "py": 1654.2}, {"loc_id": 3978, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 8113.8, "z": -3913.0, "px": 3432.8, "py": 1380.2}, {"loc_id": 3979, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -2244.4, "z": 428.5, "px": 1665.0, "py": 2121.1}, {"loc_id": 3979, "loc_name": "Dolmen02", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -2244.4, "z": 428.5, "px": 1665.0, "py": 2121.1}, {"loc_id": 3981, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 787.0, "z": -119.5, "px": 2182.3, "py": 2027.6}, {"loc_id": 3982, "loc_name": "Dolmen02", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -2836.0, "z": 918.9, "px": 1564.0, "py": 2204.8}, {"loc_id": 3983, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": -75.4, "z": 893.5, "px": 2035.1, "py": 2200.5}, {"loc_id": 3985, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": -2106.1, "z": -4359.7, "px": 1688.6, "py": 1303.9}, {"loc_id": 3987, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -5905.1, "z": -66.8, "px": 1040.2, "py": 2036.6}, {"loc_id": 3987, "loc_name": "Dolmen02", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -5905.1, "z": -66.8, "px": 1040.2, "py": 2036.6}, {"loc_id": 3988, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 3880.5, "z": 1066.9, "px": 2710.3, "py": 2230.1}, {"loc_id": 3988, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 3880.5, "z": 1066.9, "px": 2710.3, "py": 2230.1}, {"loc_id": 3990, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -7126.5, "z": -1905.8, "px": 831.7, "py": 1722.7}, {"loc_id": 3991, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -581.6, "z": 272.7, "px": 1948.7, "py": 2094.5}, {"loc_id": 3992, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -1751.9, "z": -4156.9, "px": 1749.0, "py": 1338.6}, {"loc_id": 3992, "loc_name": "Dolmen02", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -1751.9, "z": -4156.9, "px": 1749.0, "py": 1338.6}, {"loc_id": 3992, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": -1751.9, "z": -4156.9, "px": 1749.0, "py": 1338.6}, {"loc_id": 3993, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": -1220.0, "z": -1451.4, "px": 1839.8, "py": 1800.3}, {"loc_id": 3994, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -6796.4, "z": 3671.0, "px": 888.1, "py": 2674.5}, {"loc_id": 3994, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": -6796.4, "z": 3671.0, "px": 888.1, "py": 2674.5}, {"loc_id": 3995, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -5508.6, "z": -1978.7, "px": 1107.9, "py": 1710.3}, {"loc_id": 3995, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": -5508.6, "z": -1978.7, "px": 1107.9, "py": 1710.3}, {"loc_id": 3996, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 1928.2, "z": -4604.2, "px": 2377.1, "py": 1262.2}, {"loc_id": 3996, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 1928.2, "z": -4604.2, "px": 2377.1, "py": 1262.2}, {"loc_id": 3997, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 952.9, "z": 5715.4, "px": 2210.6, "py": 3023.4}, {"loc_id": 3998, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 2837.7, "z": -71.9, "px": 2532.3, "py": 2035.7}, {"loc_id": 3998, "loc_name": "Dolmen02", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 2837.7, "z": -71.9, "px": 2532.3, "py": 2035.7}, {"loc_id": 3999, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -2129.8, "z": -3122.4, "px": 1684.5, "py": 1515.1}, {"loc_id": 3999, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": -2129.8, "z": -3122.4, "px": 1684.5, "py": 1515.1}, {"loc_id": 4000, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 3024.5, "z": -2500.5, "px": 2564.2, "py": 1621.2}, {"loc_id": 4000, "loc_name": "Dolmen02", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 3024.5, "z": -2500.5, "px": 2564.2, "py": 1621.2}, {"loc_id": 4000, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 3024.5, "z": -2500.5, "px": 2564.2, "py": 1621.2}, {"loc_id": 4002, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": -6889.5, "z": 5319.0, "px": 872.2, "py": 2955.8}, {"loc_id": 4006, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 9491.2, "z": 54.2, "px": 3667.8, "py": 2057.3}, {"loc_id": 4006, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 9491.2, "z": 54.2, "px": 3667.8, "py": 2057.3}, {"loc_id": 4007, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 2358.9, "z": 3948.2, "px": 2450.6, "py": 2721.8}, {"loc_id": 4009, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 6714.3, "z": 4989.4, "px": 3193.9, "py": 2899.5}, {"loc_id": 4010, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": -5040.4, "z": 620.7, "px": 1187.8, "py": 2153.9}, {"loc_id": 4011, "loc_name": "Dolmen02", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 55.0, "z": 212.4, "px": 2057.4, "py": 2084.2}, {"loc_id": 4011, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 55.0, "z": 212.4, "px": 2057.4, "py": 2084.2}, {"loc_id": 4012, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 266.3, "z": 5191.9, "px": 2093.4, "py": 2934.1}, {"loc_id": 4012, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 266.3, "z": 5191.9, "px": 2093.4, "py": 2934.1}, {"loc_id": 4015, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 7464.1, "z": -4417.4, "px": 3321.9, "py": 1294.1}, {"loc_id": 4016, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 2903.4, "z": -2627.6, "px": 2543.5, "py": 1599.6}, {"loc_id": 4016, "loc_name": "Dolmen02", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 2903.4, "z": -2627.6, "px": 2543.5, "py": 1599.6}, {"loc_id": 4016, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 2903.4, "z": -2627.6, "px": 2543.5, "py": 1599.6}, {"loc_id": 4017, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -6608.2, "z": 3526.8, "px": 920.2, "py": 2649.9}, {"loc_id": 4017, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": -6608.2, "z": 3526.8, "px": 920.2, "py": 2649.9}, {"loc_id": 4019, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -2233.8, "z": -3113.0, "px": 1666.8, "py": 1516.7}, {"loc_id": 4021, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 1097.4, "z": -5167.3, "px": 2235.3, "py": 1166.1}, {"loc_id": 4022, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 2262.9, "z": -824.9, "px": 2434.2, "py": 1907.2}, {"loc_id": 4023, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 1366.8, "z": -197.6, "px": 2281.3, "py": 2014.3}, {"loc_id": 4024, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -5550.1, "z": -5245.6, "px": 1100.8, "py": 1152.8}, {"loc_id": 4025, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 2765.0, "z": -3820.7, "px": 2519.9, "py": 1395.9}, {"loc_id": 4026, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 5634.0, "z": 4983.8, "px": 3009.5, "py": 2898.6}, {"loc_id": 4028, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 3839.8, "z": 4879.4, "px": 2703.3, "py": 2880.8}, {"loc_id": 4031, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -6639.1, "z": 3625.9, "px": 914.9, "py": 2666.8}, {"loc_id": 4032, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 1841.3, "z": 1276.3, "px": 2362.2, "py": 2265.8}, {"loc_id": 4032, "loc_name": "Dolmen02", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 1841.3, "z": 1276.3, "px": 2362.2, "py": 2265.8}, {"loc_id": 4033, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 300.4, "z": 3895.7, "px": 2099.3, "py": 2712.9}, {"loc_id": 4034, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 3947.7, "z": -1340.0, "px": 2721.7, "py": 1819.3}, {"loc_id": 4035, "loc_name": "Dolmen02", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -5012.8, "z": 301.8, "px": 1192.5, "py": 2099.5}, {"loc_id": 4036, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 123.7, "z": -1354.6, "px": 2069.1, "py": 1816.8}, {"loc_id": 4036, "loc_name": "Dolmen02", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 123.7, "z": -1354.6, "px": 2069.1, "py": 1816.8}, {"loc_id": 4036, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 123.7, "z": -1354.6, "px": 2069.1, "py": 1816.8}, {"loc_id": 4037, "loc_name": "Dolmen02", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -9915.3, "z": -176.7, "px": 355.8, "py": 2017.8}, {"loc_id": 4039, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -5119.9, "z": 5806.3, "px": 1174.2, "py": 3038.9}, {"loc_id": 4040, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 2548.7, "z": -1608.7, "px": 2483.0, "py": 1773.4}, {"loc_id": 4042, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -2992.3, "z": 1793.3, "px": 1537.3, "py": 2354.1}, {"loc_id": 4045, "loc_name": "Dolmen02", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 2249.5, "z": 907.7, "px": 2431.9, "py": 2202.9}, {"loc_id": 4046, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": -3341.3, "z": 4271.0, "px": 1477.8, "py": 2776.9}, {"loc_id": 4048, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": -5929.3, "z": 4844.0, "px": 1036.1, "py": 2874.7}, {"loc_id": 4049, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 5335.5, "z": -785.8, "px": 2958.6, "py": 1913.9}, {"loc_id": 4050, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 3455.7, "z": -1746.0, "px": 2637.8, "py": 1750.0}, {"loc_id": 4051, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -3714.0, "z": 2928.2, "px": 1414.1, "py": 2547.7}, {"loc_id": 4052, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 2359.2, "z": 1201.8, "px": 2450.6, "py": 2253.1}, {"loc_id": 4053, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 8365.2, "z": 142.4, "px": 3475.7, "py": 2072.3}, {"loc_id": 4054, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": -4028.7, "z": -2558.3, "px": 1360.4, "py": 1611.4}, {"loc_id": 4055, "loc_name": "Dolmen02", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -753.8, "z": -6485.7, "px": 1919.4, "py": 941.1}, {"loc_id": 4055, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": -753.8, "z": -6485.7, "px": 1919.4, "py": 941.1}, {"loc_id": 4056, "loc_name": "Dolmen02", "item": "Pickable: BoneFragments", "count": 1, "x": 2798.1, "z": 22.0, "px": 2525.5, "py": 2051.8}, {"loc_id": 4059, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": 1100.8, "z": 2126.5, "px": 2235.9, "py": 2410.9}, {"loc_id": 4059, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 1100.8, "z": 2126.5, "px": 2235.9, "py": 2410.9}, {"loc_id": 4061, "loc_name": "Dolmen03", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -149.5, "z": 889.9, "px": 2022.5, "py": 2199.9}, {"loc_id": 4062, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": -3667.0, "z": 1169.3, "px": 1422.2, "py": 2247.6}, {"loc_id": 4062, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -3667.0, "z": 1169.3, "px": 1422.2, "py": 2247.6}, {"loc_id": 4063, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": 1491.0, "z": -2355.7, "px": 2302.5, "py": 1646.0}, {"loc_id": 4063, "loc_name": "Dolmen03", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 1491.0, "z": -2355.7, "px": 2302.5, "py": 1646.0}, {"loc_id": 4064, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -9040.7, "z": 2899.2, "px": 505.1, "py": 2542.8}, {"loc_id": 4065, "loc_name": "Dolmen03", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 2101.9, "z": -1221.5, "px": 2406.7, "py": 1839.5}, {"loc_id": 4066, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": -6677.7, "z": 3698.6, "px": 908.3, "py": 2679.2}, {"loc_id": 4066, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -6677.7, "z": 3698.6, "px": 908.3, "py": 2679.2}, {"loc_id": 4066, "loc_name": "Dolmen03", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -6677.7, "z": 3698.6, "px": 908.3, "py": 2679.2}, {"loc_id": 4067, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": 8053.7, "z": -2451.8, "px": 3422.5, "py": 1629.6}, {"loc_id": 4067, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 8053.7, "z": -2451.8, "px": 3422.5, "py": 1629.6}, {"loc_id": 4067, "loc_name": "Dolmen03", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 8053.7, "z": -2451.8, "px": 3422.5, "py": 1629.6}, {"loc_id": 4068, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": 8633.5, "z": -1872.3, "px": 3521.5, "py": 1728.5}, {"loc_id": 4068, "loc_name": "Dolmen03", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 8633.5, "z": -1872.3, "px": 3521.5, "py": 1728.5}, {"loc_id": 4069, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": -85.7, "z": -127.0, "px": 2033.4, "py": 2026.3}, {"loc_id": 4069, "loc_name": "Dolmen03", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -85.7, "z": -127.0, "px": 2033.4, "py": 2026.3}, {"loc_id": 4070, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -2103.3, "z": 1663.5, "px": 1689.0, "py": 2331.9}, {"loc_id": 4071, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": 2380.3, "z": -4422.4, "px": 2454.2, "py": 1293.2}, {"loc_id": 4071, "loc_name": "Dolmen03", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 2380.3, "z": -4422.4, "px": 2454.2, "py": 1293.2}, {"loc_id": 4072, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": -371.5, "z": -4532.7, "px": 1984.6, "py": 1274.4}, {"loc_id": 4072, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -371.5, "z": -4532.7, "px": 1984.6, "py": 1274.4}, {"loc_id": 4073, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": 2417.9, "z": 1263.6, "px": 2460.7, "py": 2263.7}, {"loc_id": 4074, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": -4018.4, "z": 4174.8, "px": 1362.2, "py": 2760.5}, {"loc_id": 4074, "loc_name": "Dolmen03", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -4018.4, "z": 4174.8, "px": 1362.2, "py": 2760.5}, {"loc_id": 4075, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -8775.3, "z": -466.1, "px": 550.3, "py": 1968.5}, {"loc_id": 4075, "loc_name": "Dolmen03", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -8775.3, "z": -466.1, "px": 550.3, "py": 1968.5}, {"loc_id": 4076, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": -1775.3, "z": 2929.6, "px": 1745.0, "py": 2548.0}, {"loc_id": 4076, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -1775.3, "z": 2929.6, "px": 1745.0, "py": 2548.0}, {"loc_id": 4076, "loc_name": "Dolmen03", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -1775.3, "z": 2929.6, "px": 1745.0, "py": 2548.0}, {"loc_id": 4079, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": 2808.5, "z": -3898.5, "px": 2527.3, "py": 1382.7}, {"loc_id": 4079, "loc_name": "Dolmen03", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 2808.5, "z": -3898.5, "px": 2527.3, "py": 1382.7}, {"loc_id": 4080, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 8338.7, "z": -2028.6, "px": 3471.1, "py": 1701.8}, {"loc_id": 4081, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -1224.9, "z": -5381.7, "px": 1839.0, "py": 1129.5}, {"loc_id": 4082, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": -4140.9, "z": 1811.8, "px": 1341.3, "py": 2357.2}, {"loc_id": 4082, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -4140.9, "z": 1811.8, "px": 1341.3, "py": 2357.2}, {"loc_id": 4084, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 8145.7, "z": -528.7, "px": 3438.2, "py": 1957.8}, {"loc_id": 4085, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -5614.6, "z": -1834.6, "px": 1089.8, "py": 1734.9}, {"loc_id": 4087, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": -2430.1, "z": -1717.8, "px": 1633.3, "py": 1754.8}, {"loc_id": 4087, "loc_name": "Dolmen03", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -2430.1, "z": -1717.8, "px": 1633.3, "py": 1754.8}, {"loc_id": 4088, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": -3327.1, "z": 3280.1, "px": 1480.2, "py": 2607.8}, {"loc_id": 4090, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": 2762.3, "z": 5.1, "px": 2519.4, "py": 2048.9}, {"loc_id": 4091, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": 1074.9, "z": 5265.1, "px": 2231.4, "py": 2946.6}, {"loc_id": 4092, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -9674.9, "z": -274.1, "px": 396.8, "py": 2001.2}, {"loc_id": 4093, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": 8576.1, "z": -3648.8, "px": 3511.7, "py": 1425.3}, {"loc_id": 4093, "loc_name": "Dolmen03", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 8576.1, "z": -3648.8, "px": 3511.7, "py": 1425.3}, {"loc_id": 4094, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -4291.9, "z": 1873.9, "px": 1315.5, "py": 2367.8}, {"loc_id": 4095, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": -4934.2, "z": 5265.2, "px": 1205.9, "py": 2946.6}, {"loc_id": 4096, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 6033.0, "z": -5803.2, "px": 3077.6, "py": 1057.6}, {"loc_id": 4097, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": 7658.4, "z": 3659.1, "px": 3355.0, "py": 2672.5}, {"loc_id": 4098, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": 5123.7, "z": -2097.4, "px": 2922.4, "py": 1690.0}, {"loc_id": 4098, "loc_name": "Dolmen03", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 5123.7, "z": -2097.4, "px": 2922.4, "py": 1690.0}, {"loc_id": 4099, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": -118.2, "z": -4800.4, "px": 2027.8, "py": 1228.7}, {"loc_id": 4100, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": -9429.9, "z": -302.9, "px": 438.6, "py": 1996.3}, {"loc_id": 4100, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -9429.9, "z": -302.9, "px": 438.6, "py": 1996.3}, {"loc_id": 4100, "loc_name": "Dolmen03", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -9429.9, "z": -302.9, "px": 438.6, "py": 1996.3}, {"loc_id": 4101, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": 3890.3, "z": 974.3, "px": 2711.9, "py": 2214.3}, {"loc_id": 4101, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 3890.3, "z": 974.3, "px": 2711.9, "py": 2214.3}, {"loc_id": 4102, "loc_name": "Dolmen03", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -4781.0, "z": 700.3, "px": 1232.0, "py": 2167.5}, {"loc_id": 4103, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": 8826.9, "z": -1550.5, "px": 3554.5, "py": 1783.4}, {"loc_id": 4103, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": 8826.9, "z": -1550.5, "px": 3554.5, "py": 1783.4}, {"loc_id": 4104, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": 2498.2, "z": -4348.4, "px": 2474.4, "py": 1305.9}, {"loc_id": 4104, "loc_name": "Dolmen03", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 2498.2, "z": -4348.4, "px": 2474.4, "py": 1305.9}, {"loc_id": 4105, "loc_name": "Dolmen03", "item": "Pickable: BoneFragments", "count": 1, "x": -1652.7, "z": -4400.3, "px": 1765.9, "py": 1297.0}, {"loc_id": 4105, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -1652.7, "z": -4400.3, "px": 1765.9, "py": 1297.0}, {"loc_id": 4107, "loc_name": "Dolmen03", "item": "SpawnOnce: Skeleton_NoArcher", "count": 1, "x": -8912.5, "z": 3249.2, "px": 526.9, "py": 2602.5}, {"loc_id": 4108, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 8504.1, "z": -1928.2, "px": 3499.4, "py": 1718.9}, {"loc_id": 4109, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2942.1, "z": 903.8, "px": 2550.1, "py": 2202.2}, {"loc_id": 4109, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2942.1, "z": 903.8, "px": 2550.1, "py": 2202.2}, {"loc_id": 4110, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -3637.8, "z": 4362.6, "px": 1427.1, "py": 2792.6}, {"loc_id": 4110, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -3637.8, "z": 4362.6, "px": 1427.1, "py": 2792.6}, {"loc_id": 4111, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 5448.4, "z": -1157.3, "px": 2977.9, "py": 1850.5}, {"loc_id": 4111, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 5448.4, "z": -1157.3, "px": 2977.9, "py": 1850.5}, {"loc_id": 4111, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 5448.4, "z": -1157.3, "px": 2977.9, "py": 1850.5}, {"loc_id": 4111, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 5448.4, "z": -1157.3, "px": 2977.9, "py": 1850.5}, {"loc_id": 4112, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 513.6, "z": 5365.1, "px": 2135.7, "py": 2963.6}, {"loc_id": 4112, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 513.6, "z": 5365.1, "px": 2135.7, "py": 2963.6}, {"loc_id": 4113, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 2939.2, "z": -125.2, "px": 2549.6, "py": 2026.6}, {"loc_id": 4113, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 2939.2, "z": -125.2, "px": 2549.6, "py": 2026.6}, {"loc_id": 4113, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 2939.2, "z": -125.2, "px": 2549.6, "py": 2026.6}, {"loc_id": 4114, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -8966.8, "z": 2952.0, "px": 517.7, "py": 2551.8}, {"loc_id": 4114, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -8966.8, "z": 2952.0, "px": 517.7, "py": 2551.8}, {"loc_id": 4115, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5001.8, "z": 777.7, "px": 1194.4, "py": 2180.7}, {"loc_id": 4115, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -5001.8, "z": 777.7, "px": 1194.4, "py": 2180.7}, {"loc_id": 4115, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -5001.8, "z": 777.7, "px": 1194.4, "py": 2180.7}, {"loc_id": 4117, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": -4740.3, "z": 5570.9, "px": 1239.0, "py": 2998.8}, {"loc_id": 4118, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": -9206.7, "z": 3189.3, "px": 476.7, "py": 2592.3}, {"loc_id": 4119, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 2236.0, "z": -1290.8, "px": 2429.6, "py": 1827.7}, {"loc_id": 4119, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2236.0, "z": -1290.8, "px": 2429.6, "py": 1827.7}, {"loc_id": 4119, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2236.0, "z": -1290.8, "px": 2429.6, "py": 1827.7}, {"loc_id": 4120, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -6462.9, "z": -4733.3, "px": 945.0, "py": 1240.2}, {"loc_id": 4120, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -6462.9, "z": -4733.3, "px": 945.0, "py": 1240.2}, {"loc_id": 4120, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -6462.9, "z": -4733.3, "px": 945.0, "py": 1240.2}, {"loc_id": 4121, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 3272.7, "z": -4548.3, "px": 2606.5, "py": 1271.8}, {"loc_id": 4122, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 3384.6, "z": -2614.5, "px": 2625.6, "py": 1601.8}, {"loc_id": 4122, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 3384.6, "z": -2614.5, "px": 2625.6, "py": 1601.8}, {"loc_id": 4123, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -7167.3, "z": -1866.0, "px": 824.8, "py": 1729.5}, {"loc_id": 4123, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -7167.3, "z": -1866.0, "px": 824.8, "py": 1729.5}, {"loc_id": 4126, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 8251.4, "z": -388.6, "px": 3456.2, "py": 1981.7}, {"loc_id": 4126, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 8251.4, "z": -388.6, "px": 3456.2, "py": 1981.7}, {"loc_id": 4127, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -9343.8, "z": 2946.3, "px": 453.3, "py": 2550.8}, {"loc_id": 4128, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -4281.1, "z": 1733.4, "px": 1317.4, "py": 2343.8}, {"loc_id": 4129, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": -6527.9, "z": 5445.1, "px": 933.9, "py": 2977.3}, {"loc_id": 4130, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 4938.7, "z": -2114.9, "px": 2890.9, "py": 1687.1}, {"loc_id": 4131, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5766.6, "z": -5058.9, "px": 1063.8, "py": 1184.6}, {"loc_id": 4131, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -5766.6, "z": -5058.9, "px": 1063.8, "py": 1184.6}, {"loc_id": 4131, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -5766.6, "z": -5058.9, "px": 1063.8, "py": 1184.6}, {"loc_id": 4132, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1077.3, "z": -5511.5, "px": 2231.9, "py": 1107.4}, {"loc_id": 4132, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 1077.3, "z": -5511.5, "px": 2231.9, "py": 1107.4}, {"loc_id": 4133, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2500.2, "z": 1219.2, "px": 2474.7, "py": 2256.1}, {"loc_id": 4133, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 2500.2, "z": 1219.2, "px": 2474.7, "py": 2256.1}, {"loc_id": 4134, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3018.6, "z": -4425.6, "px": 2563.2, "py": 1292.7}, {"loc_id": 4134, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 3018.6, "z": -4425.6, "px": 2563.2, "py": 1292.7}, {"loc_id": 4135, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 2434.5, "z": 5052.4, "px": 2463.5, "py": 2910.3}, {"loc_id": 4135, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2434.5, "z": 5052.4, "px": 2463.5, "py": 2910.3}, {"loc_id": 4137, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1785.0, "z": -1220.8, "px": 2352.6, "py": 1839.7}, {"loc_id": 4139, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -4995.9, "z": 5704.5, "px": 1195.4, "py": 3021.6}, {"loc_id": 4139, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -4995.9, "z": 5704.5, "px": 1195.4, "py": 3021.6}, {"loc_id": 4140, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 5192.8, "z": -2238.7, "px": 2934.2, "py": 1665.9}, {"loc_id": 4141, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -8380.7, "z": -710.6, "px": 617.7, "py": 1926.7}, {"loc_id": 4142, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -2429.2, "z": -118.6, "px": 1633.4, "py": 2027.8}, {"loc_id": 4142, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2429.2, "z": -118.6, "px": 1633.4, "py": 2027.8}, {"loc_id": 4142, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": -2429.2, "z": -118.6, "px": 1633.4, "py": 2027.8}, {"loc_id": 4143, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3581.2, "z": 3573.3, "px": 2659.2, "py": 2657.8}, {"loc_id": 4143, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 3581.2, "z": 3573.3, "px": 2659.2, "py": 2657.8}, {"loc_id": 4144, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": 7544.4, "z": -2691.5, "px": 3335.6, "py": 1588.7}, {"loc_id": 4144, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 7544.4, "z": -2691.5, "px": 3335.6, "py": 1588.7}, {"loc_id": 4145, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 761.7, "z": 262.0, "px": 2178.0, "py": 2092.7}, {"loc_id": 4146, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2298.1, "z": 6275.1, "px": 2440.2, "py": 3119.0}, {"loc_id": 4146, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 2298.1, "z": 6275.1, "px": 2440.2, "py": 3119.0}, {"loc_id": 4146, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 2298.1, "z": 6275.1, "px": 2440.2, "py": 3119.0}, {"loc_id": 4147, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -9157.9, "z": 3333.6, "px": 485.1, "py": 2616.9}, {"loc_id": 4148, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 2038.7, "z": -1161.5, "px": 2395.9, "py": 1849.8}, {"loc_id": 4150, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -9221.4, "z": 2885.5, "px": 474.2, "py": 2540.5}, {"loc_id": 4152, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 5113.9, "z": 5255.2, "px": 2920.8, "py": 2944.9}, {"loc_id": 4152, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 5113.9, "z": 5255.2, "px": 2920.8, "py": 2944.9}, {"loc_id": 4153, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -6601.9, "z": 571.6, "px": 921.3, "py": 2145.6}, {"loc_id": 4153, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -6601.9, "z": 571.6, "px": 921.3, "py": 2145.6}, {"loc_id": 4154, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": -1339.3, "z": -1343.6, "px": 1819.4, "py": 1818.7}, {"loc_id": 4155, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 5321.9, "z": 4856.1, "px": 2956.3, "py": 2876.8}, {"loc_id": 4156, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 6653.1, "z": 4920.0, "px": 3183.5, "py": 2887.7}, {"loc_id": 4157, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -9159.0, "z": 3018.4, "px": 484.9, "py": 2563.1}, {"loc_id": 4158, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 1157.1, "z": -5302.3, "px": 2245.5, "py": 1143.1}, {"loc_id": 4158, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 1157.1, "z": -5302.3, "px": 2245.5, "py": 1143.1}, {"loc_id": 4158, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 1, "x": 1157.1, "z": -5302.3, "px": 2245.5, "py": 1143.1}, {"loc_id": 4159, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -2231.0, "z": 4486.8, "px": 1667.2, "py": 2813.7}, {"loc_id": 4160, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -8074.3, "z": 376.3, "px": 670.0, "py": 2112.2}, {"loc_id": 4160, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -8074.3, "z": 376.3, "px": 670.0, "py": 2112.2}, {"loc_id": 4161, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 6406.0, "z": 3253.2, "px": 3141.3, "py": 2603.2}, {"loc_id": 4162, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 7496.6, "z": -4341.8, "px": 3327.4, "py": 1307.0}, {"loc_id": 4162, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 7496.6, "z": -4341.8, "px": 3327.4, "py": 1307.0}, {"loc_id": 4162, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": 7496.6, "z": -4341.8, "px": 3327.4, "py": 1307.0}, {"loc_id": 4163, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -1787.8, "z": -4426.4, "px": 1742.9, "py": 1292.6}, {"loc_id": 4164, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -7426.8, "z": -4985.2, "px": 780.5, "py": 1197.2}, {"loc_id": 4164, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -7426.8, "z": -4985.2, "px": 780.5, "py": 1197.2}, {"loc_id": 4164, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -7426.8, "z": -4985.2, "px": 780.5, "py": 1197.2}, {"loc_id": 4164, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -7426.8, "z": -4985.2, "px": 780.5, "py": 1197.2}, {"loc_id": 4165, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -3838.5, "z": -380.1, "px": 1392.9, "py": 1983.1}, {"loc_id": 4165, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -3838.5, "z": -380.1, "px": 1392.9, "py": 1983.1}, {"loc_id": 4167, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 447.7, "z": 375.2, "px": 2124.4, "py": 2112.0}, {"loc_id": 4167, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 447.7, "z": 375.2, "px": 2124.4, "py": 2112.0}, {"loc_id": 4167, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 447.7, "z": 375.2, "px": 2124.4, "py": 2112.0}, {"loc_id": 4167, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 447.7, "z": 375.2, "px": 2124.4, "py": 2112.0}, {"loc_id": 4168, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 8825.5, "z": -3830.4, "px": 3554.2, "py": 1394.3}, {"loc_id": 4168, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 8825.5, "z": -3830.4, "px": 3554.2, "py": 1394.3}, {"loc_id": 4168, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 8825.5, "z": -3830.4, "px": 3554.2, "py": 1394.3}, {"loc_id": 4168, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 8825.5, "z": -3830.4, "px": 3554.2, "py": 1394.3}, {"loc_id": 4169, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1218.9, "z": -2236.2, "px": 2256.0, "py": 1666.4}, {"loc_id": 4169, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1218.9, "z": -2236.2, "px": 2256.0, "py": 1666.4}, {"loc_id": 4169, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 1218.9, "z": -2236.2, "px": 2256.0, "py": 1666.4}, {"loc_id": 4170, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1734.2, "z": 7416.2, "px": 2344.0, "py": 3313.7}, {"loc_id": 4170, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 1734.2, "z": 7416.2, "px": 2344.0, "py": 3313.7}, {"loc_id": 4170, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 1734.2, "z": 7416.2, "px": 2344.0, "py": 3313.7}, {"loc_id": 4171, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -4031.3, "z": -2490.3, "px": 1360.0, "py": 1623.0}, {"loc_id": 4172, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -8070.8, "z": 517.7, "px": 670.6, "py": 2136.4}, {"loc_id": 4174, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 1161.6, "z": 5507.9, "px": 2246.2, "py": 2988.0}, {"loc_id": 4174, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1161.6, "z": 5507.9, "px": 2246.2, "py": 2988.0}, {"loc_id": 4174, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1161.6, "z": 5507.9, "px": 2246.2, "py": 2988.0}, {"loc_id": 4175, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -1674.2, "z": 4799.8, "px": 1762.3, "py": 2867.2}, {"loc_id": 4175, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -1674.2, "z": 4799.8, "px": 1762.3, "py": 2867.2}, {"loc_id": 4176, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 899.2, "z": 3392.5, "px": 2201.5, "py": 2627.0}, {"loc_id": 4176, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 899.2, "z": 3392.5, "px": 2201.5, "py": 2627.0}, {"loc_id": 4177, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -3203.0, "z": 4417.2, "px": 1501.4, "py": 2801.9}, {"loc_id": 4178, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton", "count": 1, "x": 5053.1, "z": 5444.3, "px": 2910.4, "py": 2977.2}, {"loc_id": 4178, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 1, "x": 5053.1, "z": 5444.3, "px": 2910.4, "py": 2977.2}, {"loc_id": 4179, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -7242.2, "z": -4937.2, "px": 812.0, "py": 1205.4}, {"loc_id": 4179, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -7242.2, "z": -4937.2, "px": 812.0, "py": 1205.4}, {"loc_id": 4180, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 1992.1, "z": -4477.5, "px": 2388.0, "py": 1283.8}, {"loc_id": 4180, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1992.1, "z": -4477.5, "px": 2388.0, "py": 1283.8}, {"loc_id": 4181, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 842.8, "z": -3.9, "px": 2191.8, "py": 2047.3}, {"loc_id": 4183, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -7557.0, "z": -4745.1, "px": 758.3, "py": 1238.2}, {"loc_id": 4184, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -1341.5, "z": -1738.7, "px": 1819.1, "py": 1751.3}, {"loc_id": 4185, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5579.0, "z": -4997.9, "px": 1095.9, "py": 1195.0}, {"loc_id": 4185, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -5579.0, "z": -4997.9, "px": 1095.9, "py": 1195.0}, {"loc_id": 4185, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -5579.0, "z": -4997.9, "px": 1095.9, "py": 1195.0}, {"loc_id": 4186, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 7875.4, "z": -2620.2, "px": 3392.1, "py": 1600.8}, {"loc_id": 4186, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 7875.4, "z": -2620.2, "px": 3392.1, "py": 1600.8}, {"loc_id": 4187, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2357.9, "z": -1343.9, "px": 2450.4, "py": 1818.6}, {"loc_id": 4188, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 3456.5, "z": -2434.8, "px": 2637.9, "py": 1632.5}, {"loc_id": 4189, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2811.4, "z": -4794.0, "px": 2527.8, "py": 1229.8}, {"loc_id": 4189, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 2811.4, "z": -4794.0, "px": 2527.8, "py": 1229.8}, {"loc_id": 4190, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2058.7, "z": 1015.3, "px": 2399.4, "py": 2221.3}, {"loc_id": 4191, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 3893.5, "z": 4862.5, "px": 2712.5, "py": 2877.9}, {"loc_id": 4191, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 3893.5, "z": 4862.5, "px": 2712.5, "py": 2877.9}, {"loc_id": 4192, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 7925.4, "z": -2948.4, "px": 3400.6, "py": 1544.8}, {"loc_id": 4192, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 7925.4, "z": -2948.4, "px": 3400.6, "py": 1544.8}, {"loc_id": 4192, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 7925.4, "z": -2948.4, "px": 3400.6, "py": 1544.8}, {"loc_id": 4192, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 7925.4, "z": -2948.4, "px": 3400.6, "py": 1544.8}, {"loc_id": 4193, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2503.9, "z": -4613.5, "px": 2475.3, "py": 1260.6}, {"loc_id": 4193, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 2503.9, "z": -4613.5, "px": 2475.3, "py": 1260.6}, {"loc_id": 4194, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1215.8, "z": -5496.9, "px": 2255.5, "py": 1109.9}, {"loc_id": 4194, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1215.8, "z": -5496.9, "px": 2255.5, "py": 1109.9}, {"loc_id": 4195, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3199.5, "z": -2569.3, "px": 2594.0, "py": 1609.5}, {"loc_id": 4195, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 3199.5, "z": -2569.3, "px": 2594.0, "py": 1609.5}, {"loc_id": 4196, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1976.2, "z": -957.5, "px": 2385.3, "py": 1884.6}, {"loc_id": 4196, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1976.2, "z": -957.5, "px": 2385.3, "py": 1884.6}, {"loc_id": 4196, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 1976.2, "z": -957.5, "px": 2385.3, "py": 1884.6}, {"loc_id": 4197, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": -8693.4, "z": -457.0, "px": 564.3, "py": 1970.0}, {"loc_id": 4197, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -8693.4, "z": -457.0, "px": 564.3, "py": 1970.0}, {"loc_id": 4198, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 3829.0, "z": 1215.6, "px": 2701.5, "py": 2255.5}, {"loc_id": 4198, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3829.0, "z": 1215.6, "px": 2701.5, "py": 2255.5}, {"loc_id": 4198, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 3829.0, "z": 1215.6, "px": 2701.5, "py": 2255.5}, {"loc_id": 4199, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2884.2, "z": -2239.6, "px": 2540.2, "py": 1665.8}, {"loc_id": 4199, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2884.2, "z": -2239.6, "px": 2540.2, "py": 1665.8}, {"loc_id": 4200, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 2247.2, "z": 6136.8, "px": 2431.5, "py": 3095.3}, {"loc_id": 4200, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2247.2, "z": 6136.8, "px": 2431.5, "py": 3095.3}, {"loc_id": 4200, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 2247.2, "z": 6136.8, "px": 2431.5, "py": 3095.3}, {"loc_id": 4201, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1916.7, "z": 7036.3, "px": 2375.1, "py": 3248.9}, {"loc_id": 4201, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 1916.7, "z": 7036.3, "px": 2375.1, "py": 3248.9}, {"loc_id": 4202, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -8186.5, "z": 2743.4, "px": 650.8, "py": 2516.2}, {"loc_id": 4202, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -8186.5, "z": 2743.4, "px": 650.8, "py": 2516.2}, {"loc_id": 4203, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2238.2, "z": 1021.5, "px": 2430.0, "py": 2222.3}, {"loc_id": 4204, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 3832.5, "z": 3901.3, "px": 2702.1, "py": 2713.8}, {"loc_id": 4204, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3832.5, "z": 3901.3, "px": 2702.1, "py": 2713.8}, {"loc_id": 4204, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3832.5, "z": 3901.3, "px": 2702.1, "py": 2713.8}, {"loc_id": 4204, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 3832.5, "z": 3901.3, "px": 2702.1, "py": 2713.8}, {"loc_id": 4205, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -7223.4, "z": -4729.8, "px": 815.2, "py": 1240.8}, {"loc_id": 4206, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 7049.9, "z": -4285.7, "px": 3251.2, "py": 1316.6}, {"loc_id": 4209, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 4603.6, "z": -5193.7, "px": 2833.7, "py": 1161.6}, {"loc_id": 4209, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 4603.6, "z": -5193.7, "px": 2833.7, "py": 1161.6}, {"loc_id": 4210, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2503.3, "z": 1718.0, "px": 1620.8, "py": 2341.2}, {"loc_id": 4211, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 1342.8, "z": -5442.2, "px": 2277.2, "py": 1119.2}, {"loc_id": 4212, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -5377.4, "z": -2041.4, "px": 1130.3, "py": 1699.6}, {"loc_id": 4213, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -9607.3, "z": 584.3, "px": 408.4, "py": 2147.7}, {"loc_id": 4214, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 8389.3, "z": 330.5, "px": 3479.8, "py": 2104.4}, {"loc_id": 4214, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 8389.3, "z": 330.5, "px": 3479.8, "py": 2104.4}, {"loc_id": 4214, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 8389.3, "z": 330.5, "px": 3479.8, "py": 2104.4}, {"loc_id": 4215, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -3967.1, "z": -2613.4, "px": 1370.9, "py": 1602.0}, {"loc_id": 4216, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 124.1, "z": -4545.7, "px": 2069.2, "py": 1272.2}, {"loc_id": 4217, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2361.2, "z": 3838.0, "px": 2451.0, "py": 2703.0}, {"loc_id": 4217, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 2361.2, "z": 3838.0, "px": 2451.0, "py": 2703.0}, {"loc_id": 4219, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -5114.9, "z": 309.7, "px": 1175.1, "py": 2100.9}, {"loc_id": 4219, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": -5114.9, "z": 309.7, "px": 1175.1, "py": 2100.9}, {"loc_id": 4219, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -5114.9, "z": 309.7, "px": 1175.1, "py": 2100.9}, {"loc_id": 4220, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 8705.3, "z": -3714.4, "px": 3533.7, "py": 1414.1}, {"loc_id": 4221, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -4150.3, "z": -117.1, "px": 1339.7, "py": 2028.0}, {"loc_id": 4221, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -4150.3, "z": -117.1, "px": 1339.7, "py": 2028.0}, {"loc_id": 4222, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 833.8, "z": -2569.4, "px": 2190.3, "py": 1609.5}, {"loc_id": 4222, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": 833.8, "z": -2569.4, "px": 2190.3, "py": 1609.5}, {"loc_id": 4222, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 833.8, "z": -2569.4, "px": 2190.3, "py": 1609.5}, {"loc_id": 4223, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1789.2, "z": 6727.5, "px": 2353.4, "py": 3196.2}, {"loc_id": 4223, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 1789.2, "z": 6727.5, "px": 2353.4, "py": 3196.2}, {"loc_id": 4224, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1013.1, "z": 5697.9, "px": 2220.9, "py": 3020.4}, {"loc_id": 4224, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 1013.1, "z": 5697.9, "px": 2220.9, "py": 3020.4}, {"loc_id": 4224, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1013.1, "z": 5697.9, "px": 2220.9, "py": 3020.4}, {"loc_id": 4224, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 1013.1, "z": 5697.9, "px": 2220.9, "py": 3020.4}, {"loc_id": 4225, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -3832.3, "z": -2556.2, "px": 1394.0, "py": 1611.7}, {"loc_id": 4226, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 8135.3, "z": -2488.2, "px": 3436.4, "py": 1623.3}, {"loc_id": 4227, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 1924.7, "z": -830.3, "px": 2376.5, "py": 1906.3}, {"loc_id": 4227, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 1924.7, "z": -830.3, "px": 2376.5, "py": 1906.3}, {"loc_id": 4228, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2681.5, "z": -4486.6, "px": 2505.6, "py": 1282.3}, {"loc_id": 4228, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 1, "x": 2681.5, "z": -4486.6, "px": 2505.6, "py": 1282.3}, {"loc_id": 4229, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 907.0, "z": 5564.8, "px": 2202.8, "py": 2997.7}, {"loc_id": 4229, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 907.0, "z": 5564.8, "px": 2202.8, "py": 2997.7}, {"loc_id": 4229, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 907.0, "z": 5564.8, "px": 2202.8, "py": 2997.7}, {"loc_id": 4230, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -7741.6, "z": 4344.6, "px": 726.8, "py": 2789.5}, {"loc_id": 4230, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -7741.6, "z": 4344.6, "px": 726.8, "py": 2789.5}, {"loc_id": 4231, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 5060.5, "z": -2175.6, "px": 2911.7, "py": 1676.7}, {"loc_id": 4231, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 5060.5, "z": -2175.6, "px": 2911.7, "py": 1676.7}, {"loc_id": 4231, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 5060.5, "z": -2175.6, "px": 2911.7, "py": 1676.7}, {"loc_id": 4232, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 5628.7, "z": -1013.6, "px": 3008.6, "py": 1875.0}, {"loc_id": 4233, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -9029.0, "z": 3203.1, "px": 507.1, "py": 2594.7}, {"loc_id": 4233, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -9029.0, "z": 3203.1, "px": 507.1, "py": 2594.7}, {"loc_id": 4233, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -9029.0, "z": 3203.1, "px": 507.1, "py": 2594.7}, {"loc_id": 4233, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -9029.0, "z": 3203.1, "px": 507.1, "py": 2594.7}, {"loc_id": 4233, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -9029.0, "z": 3203.1, "px": 507.1, "py": 2594.7}, {"loc_id": 4234, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2241.6, "z": 5178.2, "px": 2430.6, "py": 2931.7}, {"loc_id": 4235, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4286.9, "z": -838.4, "px": 2779.6, "py": 1904.9}, {"loc_id": 4235, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 4286.9, "z": -838.4, "px": 2779.6, "py": 1904.9}, {"loc_id": 4236, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5256.6, "z": 5576.3, "px": 1150.9, "py": 2999.7}, {"loc_id": 4236, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -5256.6, "z": 5576.3, "px": 1150.9, "py": 2999.7}, {"loc_id": 4236, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -5256.6, "z": 5576.3, "px": 1150.9, "py": 2999.7}, {"loc_id": 4237, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 8254.8, "z": -1992.0, "px": 3456.8, "py": 1708.0}, {"loc_id": 4238, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 9473.5, "z": 201.9, "px": 3664.8, "py": 2082.5}, {"loc_id": 4239, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 1726.7, "z": -4362.4, "px": 2342.7, "py": 1303.5}, {"loc_id": 4239, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1726.7, "z": -4362.4, "px": 2342.7, "py": 1303.5}, {"loc_id": 4239, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 1726.7, "z": -4362.4, "px": 2342.7, "py": 1303.5}, {"loc_id": 4239, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1726.7, "z": -4362.4, "px": 2342.7, "py": 1303.5}, {"loc_id": 4240, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -326.5, "z": -4228.1, "px": 1992.3, "py": 1326.4}, {"loc_id": 4240, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -326.5, "z": -4228.1, "px": 1992.3, "py": 1326.4}, {"loc_id": 4242, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2167.4, "z": 702.4, "px": 1678.1, "py": 2167.9}, {"loc_id": 4243, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 579.7, "z": 185.9, "px": 2146.9, "py": 2079.7}, {"loc_id": 4243, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 579.7, "z": 185.9, "px": 2146.9, "py": 2079.7}, {"loc_id": 4243, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 579.7, "z": 185.9, "px": 2146.9, "py": 2079.7}, {"loc_id": 4244, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5828.6, "z": 4542.6, "px": 1053.3, "py": 2823.3}, {"loc_id": 4244, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -5828.6, "z": 4542.6, "px": 1053.3, "py": 2823.3}, {"loc_id": 4244, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -5828.6, "z": 4542.6, "px": 1053.3, "py": 2823.3}, {"loc_id": 4245, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 8067.7, "z": 323.4, "px": 3424.9, "py": 2103.2}, {"loc_id": 4245, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 8067.7, "z": 323.4, "px": 3424.9, "py": 2103.2}, {"loc_id": 4246, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5832.1, "z": 1476.6, "px": 1052.7, "py": 2300.0}, {"loc_id": 4246, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -5832.1, "z": 1476.6, "px": 1052.7, "py": 2300.0}, {"loc_id": 4246, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -5832.1, "z": 1476.6, "px": 1052.7, "py": 2300.0}, {"loc_id": 4247, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2744.6, "z": 5254.7, "px": 2516.4, "py": 2944.8}, {"loc_id": 4247, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 2744.6, "z": 5254.7, "px": 2516.4, "py": 2944.8}, {"loc_id": 4247, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2744.6, "z": 5254.7, "px": 2516.4, "py": 2944.8}, {"loc_id": 4248, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -5761.9, "z": 1610.3, "px": 1064.6, "py": 2322.8}, {"loc_id": 4249, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 7430.7, "z": -3206.4, "px": 3316.2, "py": 1500.8}, {"loc_id": 4249, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 7430.7, "z": -3206.4, "px": 3316.2, "py": 1500.8}, {"loc_id": 4251, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5947.0, "z": 1400.3, "px": 1033.0, "py": 2287.0}, {"loc_id": 4251, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -5947.0, "z": 1400.3, "px": 1033.0, "py": 2287.0}, {"loc_id": 4251, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": -5947.0, "z": 1400.3, "px": 1033.0, "py": 2287.0}, {"loc_id": 4252, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -6152.8, "z": 2296.4, "px": 997.9, "py": 2439.9}, {"loc_id": 4252, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -6152.8, "z": 2296.4, "px": 997.9, "py": 2439.9}, {"loc_id": 4252, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": -6152.8, "z": 2296.4, "px": 997.9, "py": 2439.9}, {"loc_id": 4253, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -7557.9, "z": -1993.0, "px": 758.1, "py": 1707.9}, {"loc_id": 4253, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": -7557.9, "z": -1993.0, "px": 758.1, "py": 1707.9}, {"loc_id": 4254, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 2185.2, "z": 1205.6, "px": 2420.9, "py": 2253.8}, {"loc_id": 4254, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 2185.2, "z": 1205.6, "px": 2420.9, "py": 2253.8}, {"loc_id": 4255, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -7035.7, "z": 2438.1, "px": 847.2, "py": 2464.1}, {"loc_id": 4256, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 2299.3, "z": 1538.2, "px": 2440.4, "py": 2310.5}, {"loc_id": 4256, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 2299.3, "z": 1538.2, "px": 2440.4, "py": 2310.5}, {"loc_id": 4256, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2299.3, "z": 1538.2, "px": 2440.4, "py": 2310.5}, {"loc_id": 4257, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -649.4, "z": -6517.8, "px": 1937.2, "py": 935.6}, {"loc_id": 4258, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -1079.5, "z": -5820.3, "px": 1863.8, "py": 1054.7}, {"loc_id": 4259, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 7996.1, "z": -2755.7, "px": 3412.7, "py": 1577.7}, {"loc_id": 4259, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 7996.1, "z": -2755.7, "px": 3412.7, "py": 1577.7}, {"loc_id": 4259, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 7996.1, "z": -2755.7, "px": 3412.7, "py": 1577.7}, {"loc_id": 4262, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 1, "x": 713.0, "z": 5437.3, "px": 2169.7, "py": 2976.0}, {"loc_id": 4263, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -5571.4, "z": 5003.0, "px": 1097.1, "py": 2901.8}, {"loc_id": 4264, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 8056.3, "z": -2882.2, "px": 3422.9, "py": 1556.1}, {"loc_id": 4264, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 8056.3, "z": -2882.2, "px": 3422.9, "py": 1556.1}, {"loc_id": 4264, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 8056.3, "z": -2882.2, "px": 3422.9, "py": 1556.1}, {"loc_id": 4265, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2375.4, "z": -1605.8, "px": 2453.4, "py": 1773.9}, {"loc_id": 4266, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 632.8, "z": 5047.1, "px": 2156.0, "py": 2909.4}, {"loc_id": 4267, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -3721.4, "z": 6782.4, "px": 1412.9, "py": 3205.5}, {"loc_id": 4267, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -3721.4, "z": 6782.4, "px": 1412.9, "py": 3205.5}, {"loc_id": 4268, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 3143.0, "z": -2424.5, "px": 2584.4, "py": 1634.2}, {"loc_id": 4268, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3143.0, "z": -2424.5, "px": 2584.4, "py": 1634.2}, {"loc_id": 4268, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 3143.0, "z": -2424.5, "px": 2584.4, "py": 1634.2}, {"loc_id": 4270, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -3338.7, "z": -2428.5, "px": 1478.2, "py": 1633.5}, {"loc_id": 4270, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -3338.7, "z": -2428.5, "px": 1478.2, "py": 1633.5}, {"loc_id": 4271, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -6662.5, "z": 5429.6, "px": 910.9, "py": 2974.7}, {"loc_id": 4272, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -9543.9, "z": -2625.6, "px": 419.2, "py": 1599.9}, {"loc_id": 4273, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 1912.7, "z": 6784.9, "px": 2374.4, "py": 3206.0}, {"loc_id": 4274, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -9671.9, "z": -2564.5, "px": 397.3, "py": 1610.3}, {"loc_id": 4274, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": -9671.9, "z": -2564.5, "px": 397.3, "py": 1610.3}, {"loc_id": 4275, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -4100.0, "z": -2235.3, "px": 1348.3, "py": 1666.5}, {"loc_id": 4275, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4100.0, "z": -2235.3, "px": 1348.3, "py": 1666.5}, {"loc_id": 4276, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -1415.9, "z": -2056.9, "px": 1806.4, "py": 1697.0}, {"loc_id": 4278, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 2569.6, "z": 4988.7, "px": 2486.5, "py": 2899.4}, {"loc_id": 4279, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 3849.9, "z": 3584.6, "px": 2705.0, "py": 2659.8}, {"loc_id": 4279, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3849.9, "z": 3584.6, "px": 2705.0, "py": 2659.8}, {"loc_id": 4280, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -2302.1, "z": -3017.9, "px": 1655.1, "py": 1532.9}, {"loc_id": 4281, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -1027.4, "z": -5060.9, "px": 1872.7, "py": 1184.3}, {"loc_id": 4282, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -6016.3, "z": 4606.7, "px": 1021.2, "py": 2834.2}, {"loc_id": 4283, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -1219.6, "z": -1141.5, "px": 1839.9, "py": 1853.2}, {"loc_id": 4283, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -1219.6, "z": -1141.5, "px": 1839.9, "py": 1853.2}, {"loc_id": 4284, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 3833.1, "z": 894.9, "px": 2702.2, "py": 2200.7}, {"loc_id": 4284, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3833.1, "z": 894.9, "px": 2702.2, "py": 2200.7}, {"loc_id": 4284, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3833.1, "z": 894.9, "px": 2702.2, "py": 2200.7}, {"loc_id": 4284, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 3833.1, "z": 894.9, "px": 2702.2, "py": 2200.7}, {"loc_id": 4285, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -9146.8, "z": -1529.4, "px": 486.9, "py": 1787.0}, {"loc_id": 4286, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 772.0, "z": 5308.1, "px": 2179.8, "py": 2953.9}, {"loc_id": 4287, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4214.3, "z": -2304.7, "px": 1328.8, "py": 1654.7}, {"loc_id": 4287, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -4214.3, "z": -2304.7, "px": 1328.8, "py": 1654.7}, {"loc_id": 4288, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4550.6, "z": -4986.1, "px": 2824.6, "py": 1197.0}, {"loc_id": 4289, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 7161.4, "z": -4478.0, "px": 3270.2, "py": 1283.8}, {"loc_id": 4289, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 7161.4, "z": -4478.0, "px": 3270.2, "py": 1283.8}, {"loc_id": 4292, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 1531.7, "z": 6326.6, "px": 2309.4, "py": 3127.7}, {"loc_id": 4293, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2745.6, "z": 455.2, "px": 2516.6, "py": 2125.7}, {"loc_id": 4294, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -7735.8, "z": -2246.0, "px": 727.8, "py": 1664.7}, {"loc_id": 4294, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -7735.8, "z": -2246.0, "px": 727.8, "py": 1664.7}, {"loc_id": 4295, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -8200.0, "z": 2570.1, "px": 648.5, "py": 2486.6}, {"loc_id": 4295, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -8200.0, "z": 2570.1, "px": 648.5, "py": 2486.6}, {"loc_id": 4296, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -2248.7, "z": 1737.9, "px": 1664.2, "py": 2344.6}, {"loc_id": 4297, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 968.5, "z": 5317.9, "px": 2213.3, "py": 2955.6}, {"loc_id": 4298, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 6791.1, "z": 4738.8, "px": 3207.0, "py": 2856.8}, {"loc_id": 4298, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 6791.1, "z": 4738.8, "px": 3207.0, "py": 2856.8}, {"loc_id": 4299, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2947.0, "z": 3833.6, "px": 2551.0, "py": 2702.3}, {"loc_id": 4299, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": 2947.0, "z": 3833.6, "px": 2551.0, "py": 2702.3}, {"loc_id": 4299, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 2947.0, "z": 3833.6, "px": 2551.0, "py": 2702.3}, {"loc_id": 4300, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 7413.3, "z": -4476.7, "px": 3313.2, "py": 1284.0}, {"loc_id": 4300, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 7413.3, "z": -4476.7, "px": 3313.2, "py": 1284.0}, {"loc_id": 4301, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 2058.1, "z": -834.7, "px": 2399.2, "py": 1905.5}, {"loc_id": 4302, "loc_name": "Crypt3", "item": "Pickable: SurtlingCore", "count": 1, "x": -3838.8, "z": -251.4, "px": 1392.8, "py": 2005.1}, {"loc_id": 4303, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -516.3, "z": 325.0, "px": 1959.9, "py": 2103.5}, {"loc_id": 4303, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -516.3, "z": 325.0, "px": 1959.9, "py": 2103.5}, {"loc_id": 4303, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": -516.3, "z": 325.0, "px": 1959.9, "py": 2103.5}, {"loc_id": 4304, "loc_name": "Crypt3", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 9.6, "z": -4220.6, "px": 2049.6, "py": 1327.7}, {"loc_id": 4304, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": 9.6, "z": -4220.6, "px": 2049.6, "py": 1327.7}, {"loc_id": 4304, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 9.6, "z": -4220.6, "px": 2049.6, "py": 1327.7}, {"loc_id": 4305, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -6663.1, "z": 3777.2, "px": 910.8, "py": 2692.6}, {"loc_id": 4305, "loc_name": "Crypt3", "item": "SpawnOnce: Ghost", "count": 1, "x": -6663.1, "z": 3777.2, "px": 910.8, "py": 2692.6}, {"loc_id": 4306, "loc_name": "Crypt3", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3400.3, "z": -2175.3, "px": 2628.3, "py": 1676.7}, {"loc_id": 4306, "loc_name": "Crypt3", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 3400.3, "z": -2175.3, "px": 2628.3, "py": 1676.7}, {"loc_id": 4306, "loc_name": "Crypt3", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3400.3, "z": -2175.3, "px": 2628.3, "py": 1676.7}, {"loc_id": 4306, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 3400.3, "z": -2175.3, "px": 2628.3, "py": 1676.7}, {"loc_id": 4307, "loc_name": "Crypt3", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": 5049.3, "z": 3338.7, "px": 2909.7, "py": 2617.8}, {"loc_id": 4307, "loc_name": "Crypt3", "item": "Pickable: BoneFragments", "count": 1, "x": 5049.3, "z": 3338.7, "px": 2909.7, "py": 2617.8}, {"loc_id": 4308, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 5503.2, "z": -2502.2, "px": 2987.2, "py": 1621.0}, {"loc_id": 4309, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -3079.9, "z": 4483.3, "px": 1522.4, "py": 2813.1}, {"loc_id": 4309, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -3079.9, "z": 4483.3, "px": 1522.4, "py": 2813.1}, {"loc_id": 4309, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 1, "x": -3079.9, "z": 4483.3, "px": 1522.4, "py": 2813.1}, {"loc_id": 4309, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -3079.9, "z": 4483.3, "px": 1522.4, "py": 2813.1}, {"loc_id": 4309, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -3079.9, "z": 4483.3, "px": 1522.4, "py": 2813.1}, {"loc_id": 4310, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -1786.0, "z": 4667.8, "px": 1743.2, "py": 2844.6}, {"loc_id": 4311, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 2953.2, "z": -2112.1, "px": 2552.0, "py": 1687.5}, {"loc_id": 4311, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2953.2, "z": -2112.1, "px": 2552.0, "py": 1687.5}, {"loc_id": 4311, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 2953.2, "z": -2112.1, "px": 2552.0, "py": 1687.5}, {"loc_id": 4312, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2168.5, "z": -1334.2, "px": 2418.1, "py": 1820.3}, {"loc_id": 4312, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 2168.5, "z": -1334.2, "px": 2418.1, "py": 1820.3}, {"loc_id": 4312, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 2168.5, "z": -1334.2, "px": 2418.1, "py": 1820.3}, {"loc_id": 4312, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2168.5, "z": -1334.2, "px": 2418.1, "py": 1820.3}, {"loc_id": 4313, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 968.2, "z": 5495.6, "px": 2213.2, "py": 2985.9}, {"loc_id": 4313, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": 968.2, "z": 5495.6, "px": 2213.2, "py": 2985.9}, {"loc_id": 4314, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -6971.4, "z": 2491.2, "px": 858.2, "py": 2473.2}, {"loc_id": 4315, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 7231.3, "z": 1270.3, "px": 3282.1, "py": 2264.8}, {"loc_id": 4315, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 7231.3, "z": 1270.3, "px": 3282.1, "py": 2264.8}, {"loc_id": 4316, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 7689.0, "z": -3067.6, "px": 3360.3, "py": 1524.5}, {"loc_id": 4317, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2230.8, "z": 1097.7, "px": 2428.7, "py": 2235.3}, {"loc_id": 4317, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 2230.8, "z": 1097.7, "px": 2428.7, "py": 2235.3}, {"loc_id": 4318, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -6719.5, "z": -4808.2, "px": 901.2, "py": 1227.4}, {"loc_id": 4319, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": 2298.7, "z": -522.1, "px": 2440.3, "py": 1958.9}, {"loc_id": 4319, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 2298.7, "z": -522.1, "px": 2440.3, "py": 1958.9}, {"loc_id": 4320, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 1, "x": 1529.8, "z": -6332.0, "px": 2309.1, "py": 967.3}, {"loc_id": 4320, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 1529.8, "z": -6332.0, "px": 2309.1, "py": 967.3}, {"loc_id": 4322, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -1535.3, "z": -1858.3, "px": 1786.0, "py": 1730.9}, {"loc_id": 4322, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 1, "x": -1535.3, "z": -1858.3, "px": 1786.0, "py": 1730.9}, {"loc_id": 4322, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -1535.3, "z": -1858.3, "px": 1786.0, "py": 1730.9}, {"loc_id": 4323, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5815.7, "z": 4610.4, "px": 1055.5, "py": 2834.8}, {"loc_id": 4323, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -5815.7, "z": 4610.4, "px": 1055.5, "py": 2834.8}, {"loc_id": 4323, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -5815.7, "z": 4610.4, "px": 1055.5, "py": 2834.8}, {"loc_id": 4324, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 3912.6, "z": -507.5, "px": 2715.8, "py": 1961.4}, {"loc_id": 4327, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 959.4, "z": 5365.3, "px": 2211.7, "py": 2963.7}, {"loc_id": 4327, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 959.4, "z": 5365.3, "px": 2211.7, "py": 2963.7}, {"loc_id": 4328, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -3191.1, "z": 6518.2, "px": 1503.4, "py": 3160.4}, {"loc_id": 4329, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 7222.2, "z": -4105.2, "px": 3280.6, "py": 1347.4}, {"loc_id": 4329, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 7222.2, "z": -4105.2, "px": 3280.6, "py": 1347.4}, {"loc_id": 4330, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -7228.8, "z": -1924.0, "px": 814.3, "py": 1719.6}, {"loc_id": 4331, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -7416.6, "z": 4353.4, "px": 782.2, "py": 2791.0}, {"loc_id": 4331, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -7416.6, "z": 4353.4, "px": 782.2, "py": 2791.0}, {"loc_id": 4332, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -9217.9, "z": -2808.8, "px": 474.8, "py": 1568.6}, {"loc_id": 4332, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -9217.9, "z": -2808.8, "px": 474.8, "py": 1568.6}, {"loc_id": 4332, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -9217.9, "z": -2808.8, "px": 474.8, "py": 1568.6}, {"loc_id": 4333, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -7349.3, "z": -1663.5, "px": 793.7, "py": 1764.1}, {"loc_id": 4334, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -4345.2, "z": -6326.3, "px": 1306.4, "py": 968.3}, {"loc_id": 4335, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": -2042.7, "z": -5630.1, "px": 1699.4, "py": 1087.1}, {"loc_id": 4336, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 2820.0, "z": -4873.7, "px": 2529.3, "py": 1216.2}, {"loc_id": 4336, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 2820.0, "z": -4873.7, "px": 2529.3, "py": 1216.2}, {"loc_id": 4337, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -8387.1, "z": -1974.8, "px": 616.6, "py": 1711.0}, {"loc_id": 4337, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -8387.1, "z": -1974.8, "px": 616.6, "py": 1711.0}, {"loc_id": 4337, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -8387.1, "z": -1974.8, "px": 616.6, "py": 1711.0}, {"loc_id": 4337, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 1, "x": -8387.1, "z": -1974.8, "px": 616.6, "py": 1711.0}, {"loc_id": 4338, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -1467.5, "z": -1670.1, "px": 1797.5, "py": 1763.0}, {"loc_id": 4338, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -1467.5, "z": -1670.1, "px": 1797.5, "py": 1763.0}, {"loc_id": 4338, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -1467.5, "z": -1670.1, "px": 1797.5, "py": 1763.0}, {"loc_id": 4339, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 566.2, "z": 5367.6, "px": 2144.6, "py": 2964.1}, {"loc_id": 4339, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": 566.2, "z": 5367.6, "px": 2144.6, "py": 2964.1}, {"loc_id": 4339, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 1, "x": 566.2, "z": 5367.6, "px": 2144.6, "py": 2964.1}, {"loc_id": 4340, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -5185.9, "z": 330.5, "px": 1162.9, "py": 2104.4}, {"loc_id": 4340, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5185.9, "z": 330.5, "px": 1162.9, "py": 2104.4}, {"loc_id": 4341, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3324.6, "z": -2746.9, "px": 2615.4, "py": 1579.2}, {"loc_id": 4341, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 3324.6, "z": -2746.9, "px": 2615.4, "py": 1579.2}, {"loc_id": 4342, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -8323.5, "z": -1738.5, "px": 627.5, "py": 1751.3}, {"loc_id": 4343, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 3840.5, "z": 1278.9, "px": 2703.4, "py": 2266.3}, {"loc_id": 4343, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 3840.5, "z": 1278.9, "px": 2703.4, "py": 2266.3}, {"loc_id": 4344, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -9541.9, "z": -313.4, "px": 419.5, "py": 1994.5}, {"loc_id": 4344, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -9541.9, "z": -313.4, "px": 419.5, "py": 1994.5}, {"loc_id": 4345, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2618.7, "z": -3525.7, "px": 2494.9, "py": 1446.3}, {"loc_id": 4346, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 5045.5, "z": 2760.5, "px": 2909.1, "py": 2519.1}, {"loc_id": 4346, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 5045.5, "z": 2760.5, "px": 2909.1, "py": 2519.1}, {"loc_id": 4347, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2690.0, "z": -4345.6, "px": 2507.1, "py": 1306.4}, {"loc_id": 4347, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 2690.0, "z": -4345.6, "px": 2507.1, "py": 1306.4}, {"loc_id": 4347, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2690.0, "z": -4345.6, "px": 2507.1, "py": 1306.4}, {"loc_id": 4348, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 7751.4, "z": -2879.9, "px": 3370.9, "py": 1556.5}, {"loc_id": 4348, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 7751.4, "z": -2879.9, "px": 3370.9, "py": 1556.5}, {"loc_id": 4348, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 7751.4, "z": -2879.9, "px": 3370.9, "py": 1556.5}, {"loc_id": 4348, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 7751.4, "z": -2879.9, "px": 3370.9, "py": 1556.5}, {"loc_id": 4349, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 3638.2, "z": 3256.7, "px": 2668.9, "py": 2603.8}, {"loc_id": 4350, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -5947.4, "z": 1598.8, "px": 1033.0, "py": 2320.9}, {"loc_id": 4350, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -5947.4, "z": 1598.8, "px": 1033.0, "py": 2320.9}, {"loc_id": 4351, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -6072.7, "z": 1407.4, "px": 1011.6, "py": 2288.2}, {"loc_id": 4352, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 2186.2, "z": 3782.1, "px": 2421.1, "py": 2693.5}, {"loc_id": 4352, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2186.2, "z": 3782.1, "px": 2421.1, "py": 2693.5}, {"loc_id": 4352, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 2186.2, "z": 3782.1, "px": 2421.1, "py": 2693.5}, {"loc_id": 4352, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 2186.2, "z": 3782.1, "px": 2421.1, "py": 2693.5}, {"loc_id": 4353, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -3525.6, "z": 6778.0, "px": 1446.3, "py": 3204.8}, {"loc_id": 4353, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -3525.6, "z": 6778.0, "px": 1446.3, "py": 3204.8}, {"loc_id": 4354, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -253.6, "z": -4213.8, "px": 2004.7, "py": 1328.8}, {"loc_id": 4354, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -253.6, "z": -4213.8, "px": 2004.7, "py": 1328.8}, {"loc_id": 4354, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -253.6, "z": -4213.8, "px": 2004.7, "py": 1328.8}, {"loc_id": 4356, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4296.6, "z": 6795.0, "px": 2781.3, "py": 3207.7}, {"loc_id": 4356, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 4296.6, "z": 6795.0, "px": 2781.3, "py": 3207.7}, {"loc_id": 4356, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 4296.6, "z": 6795.0, "px": 2781.3, "py": 3207.7}, {"loc_id": 4357, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 7558.7, "z": -2818.9, "px": 3338.0, "py": 1566.9}, {"loc_id": 4358, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 8125.6, "z": -196.7, "px": 3434.8, "py": 2014.4}, {"loc_id": 4358, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 8125.6, "z": -196.7, "px": 3434.8, "py": 2014.4}, {"loc_id": 4359, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -568.3, "z": 512.2, "px": 1951.0, "py": 2135.4}, {"loc_id": 4360, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -3975.9, "z": -574.4, "px": 1369.4, "py": 1950.0}, {"loc_id": 4360, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -3975.9, "z": -574.4, "px": 1369.4, "py": 1950.0}, {"loc_id": 4360, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -3975.9, "z": -574.4, "px": 1369.4, "py": 1950.0}, {"loc_id": 4360, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -3975.9, "z": -574.4, "px": 1369.4, "py": 1950.0}, {"loc_id": 4361, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -6843.9, "z": 501.8, "px": 880.0, "py": 2133.6}, {"loc_id": 4362, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 3191.6, "z": -2309.6, "px": 2592.7, "py": 1653.8}, {"loc_id": 4362, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3191.6, "z": -2309.6, "px": 2592.7, "py": 1653.8}, {"loc_id": 4362, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 3191.6, "z": -2309.6, "px": 2592.7, "py": 1653.8}, {"loc_id": 4363, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 8010.6, "z": 188.7, "px": 3415.1, "py": 2080.2}, {"loc_id": 4364, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -6595.0, "z": 5437.6, "px": 922.5, "py": 2976.0}, {"loc_id": 4364, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -6595.0, "z": 5437.6, "px": 922.5, "py": 2976.0}, {"loc_id": 4365, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 1276.2, "z": 5630.3, "px": 2265.8, "py": 3008.9}, {"loc_id": 4366, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1930.9, "z": 1147.1, "px": 2377.5, "py": 2243.8}, {"loc_id": 4366, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 1, "x": 1930.9, "z": 1147.1, "px": 2377.5, "py": 2243.8}, {"loc_id": 4366, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1930.9, "z": 1147.1, "px": 2377.5, "py": 2243.8}, {"loc_id": 4366, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 1930.9, "z": 1147.1, "px": 2377.5, "py": 2243.8}, {"loc_id": 4367, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -1032.8, "z": 377.8, "px": 1871.7, "py": 2112.5}, {"loc_id": 4368, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -9275.3, "z": 3326.7, "px": 465.0, "py": 2615.8}, {"loc_id": 4368, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -9275.3, "z": 3326.7, "px": 465.0, "py": 2615.8}, {"loc_id": 4368, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -9275.3, "z": 3326.7, "px": 465.0, "py": 2615.8}, {"loc_id": 4369, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton", "count": 1, "x": 2044.7, "z": -1077.5, "px": 2397.0, "py": 1864.1}, {"loc_id": 4369, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2044.7, "z": -1077.5, "px": 2397.0, "py": 1864.1}, {"loc_id": 4369, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2044.7, "z": -1077.5, "px": 2397.0, "py": 1864.1}, {"loc_id": 4370, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 3528.1, "z": 3652.7, "px": 2650.1, "py": 2671.4}, {"loc_id": 4370, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3528.1, "z": 3652.7, "px": 2650.1, "py": 2671.4}, {"loc_id": 4371, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 2562.5, "z": -4486.3, "px": 2485.3, "py": 1282.3}, {"loc_id": 4372, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 5112.1, "z": 3129.1, "px": 2920.5, "py": 2582.0}, {"loc_id": 4372, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 5112.1, "z": 3129.1, "px": 2920.5, "py": 2582.0}, {"loc_id": 4373, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 7289.3, "z": -3133.3, "px": 3292.0, "py": 1513.3}, {"loc_id": 4373, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 7289.3, "z": -3133.3, "px": 3292.0, "py": 1513.3}, {"loc_id": 4373, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 7289.3, "z": -3133.3, "px": 3292.0, "py": 1513.3}, {"loc_id": 4374, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 506.0, "z": 4674.8, "px": 2134.4, "py": 2845.8}, {"loc_id": 4375, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -8056.8, "z": 2757.5, "px": 673.0, "py": 2518.6}, {"loc_id": 4375, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -8056.8, "z": 2757.5, "px": 673.0, "py": 2518.6}, {"loc_id": 4375, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -8056.8, "z": 2757.5, "px": 673.0, "py": 2518.6}, {"loc_id": 4376, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2488.8, "z": -1352.3, "px": 2472.8, "py": 1817.2}, {"loc_id": 4376, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 2488.8, "z": -1352.3, "px": 2472.8, "py": 1817.2}, {"loc_id": 4377, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4170.2, "z": -1086.8, "px": 2759.7, "py": 1862.5}, {"loc_id": 4377, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 4170.2, "z": -1086.8, "px": 2759.7, "py": 1862.5}, {"loc_id": 4377, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 4170.2, "z": -1086.8, "px": 2759.7, "py": 1862.5}, {"loc_id": 4378, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -1334.3, "z": -1916.0, "px": 1820.3, "py": 1721.0}, {"loc_id": 4378, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -1334.3, "z": -1916.0, "px": 1820.3, "py": 1721.0}, {"loc_id": 4379, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2684.9, "z": -3701.4, "px": 2506.2, "py": 1416.3}, {"loc_id": 4379, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 2684.9, "z": -3701.4, "px": 2506.2, "py": 1416.3}, {"loc_id": 4379, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2684.9, "z": -3701.4, "px": 2506.2, "py": 1416.3}, {"loc_id": 4380, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 5123.8, "z": 5194.0, "px": 2922.5, "py": 2934.4}, {"loc_id": 4380, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 5123.8, "z": 5194.0, "px": 2922.5, "py": 2934.4}, {"loc_id": 4380, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 5123.8, "z": 5194.0, "px": 2922.5, "py": 2934.4}, {"loc_id": 4380, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 5123.8, "z": 5194.0, "px": 2922.5, "py": 2934.4}, {"loc_id": 4381, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -8694.4, "z": -828.0, "px": 564.2, "py": 1906.7}, {"loc_id": 4381, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -8694.4, "z": -828.0, "px": 564.2, "py": 1906.7}, {"loc_id": 4381, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -8694.4, "z": -828.0, "px": 564.2, "py": 1906.7}, {"loc_id": 4382, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -7489.9, "z": -4736.3, "px": 769.7, "py": 1239.7}, {"loc_id": 4382, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -7489.9, "z": -4736.3, "px": 769.7, "py": 1239.7}, {"loc_id": 4382, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -7489.9, "z": -4736.3, "px": 769.7, "py": 1239.7}, {"loc_id": 4383, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -1781.4, "z": -4545.8, "px": 1744.0, "py": 1272.2}, {"loc_id": 4383, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -1781.4, "z": -4545.8, "px": 1744.0, "py": 1272.2}, {"loc_id": 4384, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 1482.1, "z": 6272.2, "px": 2300.9, "py": 3118.5}, {"loc_id": 4384, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": 1482.1, "z": 6272.2, "px": 2300.9, "py": 3118.5}, {"loc_id": 4384, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 1482.1, "z": 6272.2, "px": 2300.9, "py": 3118.5}, {"loc_id": 4385, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 2042.6, "z": 3914.5, "px": 2396.6, "py": 2716.1}, {"loc_id": 4385, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2042.6, "z": 3914.5, "px": 2396.6, "py": 2716.1}, {"loc_id": 4385, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 2042.6, "z": 3914.5, "px": 2396.6, "py": 2716.1}, {"loc_id": 4386, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 8323.7, "z": 195.3, "px": 3468.6, "py": 2081.3}, {"loc_id": 4386, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 8323.7, "z": 195.3, "px": 3468.6, "py": 2081.3}, {"loc_id": 4386, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 8323.7, "z": 195.3, "px": 3468.6, "py": 2081.3}, {"loc_id": 4387, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 5190.4, "z": 5056.9, "px": 2933.8, "py": 2911.0}, {"loc_id": 4387, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 5190.4, "z": 5056.9, "px": 2933.8, "py": 2911.0}, {"loc_id": 4387, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 5190.4, "z": 5056.9, "px": 2933.8, "py": 2911.0}, {"loc_id": 4387, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 5190.4, "z": 5056.9, "px": 2933.8, "py": 2911.0}, {"loc_id": 4388, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 1660.3, "z": -4422.1, "px": 2331.4, "py": 1293.3}, {"loc_id": 4388, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 1660.3, "z": -4422.1, "px": 2331.4, "py": 1293.3}, {"loc_id": 4389, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 7416.7, "z": 1096.8, "px": 3313.8, "py": 2235.2}, {"loc_id": 4390, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 2373.4, "z": 3769.6, "px": 2453.1, "py": 2691.3}, {"loc_id": 4390, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2373.4, "z": 3769.6, "px": 2453.1, "py": 2691.3}, {"loc_id": 4391, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -6849.0, "z": 3786.3, "px": 879.1, "py": 2694.2}, {"loc_id": 4391, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -6849.0, "z": 3786.3, "px": 879.1, "py": 2694.2}, {"loc_id": 4392, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2299.3, "z": 5187.5, "px": 2440.4, "py": 2933.3}, {"loc_id": 4393, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -7365.5, "z": -1859.4, "px": 791.0, "py": 1730.7}, {"loc_id": 4394, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -8376.6, "z": 636.4, "px": 618.4, "py": 2156.6}, {"loc_id": 4394, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -8376.6, "z": 636.4, "px": 618.4, "py": 2156.6}, {"loc_id": 4395, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 506.6, "z": 5049.8, "px": 2134.5, "py": 2909.8}, {"loc_id": 4395, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 506.6, "z": 5049.8, "px": 2134.5, "py": 2909.8}, {"loc_id": 4396, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 889.9, "z": 3450.9, "px": 2199.9, "py": 2637.0}, {"loc_id": 4396, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 889.9, "z": 3450.9, "px": 2199.9, "py": 2637.0}, {"loc_id": 4396, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 889.9, "z": 3450.9, "px": 2199.9, "py": 2637.0}, {"loc_id": 4397, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 7352.3, "z": -3330.0, "px": 3302.8, "py": 1479.7}, {"loc_id": 4398, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 5256.1, "z": -2236.2, "px": 2945.0, "py": 1666.4}, {"loc_id": 4398, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 5256.1, "z": -2236.2, "px": 2945.0, "py": 1666.4}, {"loc_id": 4398, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 5256.1, "z": -2236.2, "px": 2945.0, "py": 1666.4}, {"loc_id": 4398, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 5256.1, "z": -2236.2, "px": 2945.0, "py": 1666.4}, {"loc_id": 4399, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -9589.9, "z": -183.4, "px": 411.3, "py": 2016.7}, {"loc_id": 4399, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -9589.9, "z": -183.4, "px": 411.3, "py": 2016.7}, {"loc_id": 4399, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -9589.9, "z": -183.4, "px": 411.3, "py": 2016.7}, {"loc_id": 4400, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3450.0, "z": -2686.0, "px": 2636.8, "py": 1589.6}, {"loc_id": 4401, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 2939.6, "z": -257.2, "px": 2549.7, "py": 2004.1}, {"loc_id": 4401, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2939.6, "z": -257.2, "px": 2549.7, "py": 2004.1}, {"loc_id": 4403, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -5239.2, "z": 764.2, "px": 1153.8, "py": 2178.4}, {"loc_id": 4404, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 1985.8, "z": -6334.0, "px": 2386.9, "py": 967.0}, {"loc_id": 4405, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -6005.8, "z": 4800.9, "px": 1023.0, "py": 2867.4}, {"loc_id": 4406, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -6645.1, "z": 3574.4, "px": 913.9, "py": 2658.0}, {"loc_id": 4406, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -6645.1, "z": 3574.4, "px": 913.9, "py": 2658.0}, {"loc_id": 4406, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -6645.1, "z": 3574.4, "px": 913.9, "py": 2658.0}, {"loc_id": 4406, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -6645.1, "z": 3574.4, "px": 913.9, "py": 2658.0}, {"loc_id": 4409, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4025.2, "z": -322.6, "px": 1361.0, "py": 1992.9}, {"loc_id": 4409, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -4025.2, "z": -322.6, "px": 1361.0, "py": 1992.9}, {"loc_id": 4410, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3274.8, "z": -4.6, "px": 2606.9, "py": 2047.2}, {"loc_id": 4411, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 8574.1, "z": -3708.9, "px": 3511.3, "py": 1415.0}, {"loc_id": 4411, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 8574.1, "z": -3708.9, "px": 3511.3, "py": 1415.0}, {"loc_id": 4412, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -1215.7, "z": -1221.1, "px": 1840.5, "py": 1839.6}, {"loc_id": 4413, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -1670.7, "z": -4227.6, "px": 1762.9, "py": 1326.5}, {"loc_id": 4413, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -1670.7, "z": -4227.6, "px": 1762.9, "py": 1326.5}, {"loc_id": 4413, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -1670.7, "z": -4227.6, "px": 1762.9, "py": 1326.5}, {"loc_id": 4414, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -1983.0, "z": -831.7, "px": 1709.6, "py": 1906.1}, {"loc_id": 4415, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -5956.5, "z": -70.0, "px": 1031.4, "py": 2036.1}, {"loc_id": 4415, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -5956.5, "z": -70.0, "px": 1031.4, "py": 2036.1}, {"loc_id": 4416, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -3705.2, "z": 7113.6, "px": 1415.6, "py": 3262.1}, {"loc_id": 4416, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -3705.2, "z": 7113.6, "px": 1415.6, "py": 3262.1}, {"loc_id": 4417, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 7298.0, "z": -4547.5, "px": 3293.5, "py": 1271.9}, {"loc_id": 4417, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 7298.0, "z": -4547.5, "px": 3293.5, "py": 1271.9}, {"loc_id": 4418, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 3208.8, "z": -2630.5, "px": 2595.6, "py": 1599.1}, {"loc_id": 4419, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 4991.3, "z": -2122.8, "px": 2899.8, "py": 1685.7}, {"loc_id": 4419, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 4991.3, "z": -2122.8, "px": 2899.8, "py": 1685.7}, {"loc_id": 4420, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 2427.3, "z": -1475.0, "px": 2462.3, "py": 1796.3}, {"loc_id": 4421, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 5510.4, "z": -969.9, "px": 2988.4, "py": 1882.5}, {"loc_id": 4421, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 5510.4, "z": -969.9, "px": 2988.4, "py": 1882.5}, {"loc_id": 4422, "loc_name": "Crypt4", "item": "Item: One Of: Coins[5-20], Ruby[1-2], Amber[1-5], AmberPearl[1-3]", "count": 1, "x": -1219.5, "z": -1606.9, "px": 1839.9, "py": 1773.8}, {"loc_id": 4422, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -1219.5, "z": -1606.9, "px": 1839.9, "py": 1773.8}, {"loc_id": 4423, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -5955.5, "z": 4667.7, "px": 1031.6, "py": 2844.6}, {"loc_id": 4423, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -5955.5, "z": 4667.7, "px": 1031.6, "py": 2844.6}, {"loc_id": 4423, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -5955.5, "z": 4667.7, "px": 1031.6, "py": 2844.6}, {"loc_id": 4426, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 8777.6, "z": -1335.1, "px": 3546.0, "py": 1820.1}, {"loc_id": 4426, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 8777.6, "z": -1335.1, "px": 3546.0, "py": 1820.1}, {"loc_id": 4427, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 1735.8, "z": -1148.4, "px": 2344.2, "py": 1852.0}, {"loc_id": 4427, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1735.8, "z": -1148.4, "px": 2344.2, "py": 1852.0}, {"loc_id": 4427, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1735.8, "z": -1148.4, "px": 2344.2, "py": 1852.0}, {"loc_id": 4428, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -59.6, "z": -1013.7, "px": 2037.8, "py": 1875.0}, {"loc_id": 4428, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -59.6, "z": -1013.7, "px": 2037.8, "py": 1875.0}, {"loc_id": 4428, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -59.6, "z": -1013.7, "px": 2037.8, "py": 1875.0}, {"loc_id": 4429, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 5067.0, "z": 377.9, "px": 2912.8, "py": 2112.5}, {"loc_id": 4430, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -4101.4, "z": -2312.7, "px": 1348.0, "py": 1653.3}, {"loc_id": 4430, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -4101.4, "z": -2312.7, "px": 1348.0, "py": 1653.3}, {"loc_id": 4431, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 5367.0, "z": 522.6, "px": 2964.0, "py": 2137.2}, {"loc_id": 4431, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 5367.0, "z": 522.6, "px": 2964.0, "py": 2137.2}, {"loc_id": 4431, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 5367.0, "z": 522.6, "px": 2964.0, "py": 2137.2}, {"loc_id": 4432, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -890.1, "z": -5825.4, "px": 1896.1, "py": 1053.8}, {"loc_id": 4433, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 6602.0, "z": 4795.5, "px": 3174.7, "py": 2866.4}, {"loc_id": 4434, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -9078.9, "z": 3462.7, "px": 498.5, "py": 2639.0}, {"loc_id": 4434, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -9078.9, "z": 3462.7, "px": 498.5, "py": 2639.0}, {"loc_id": 4435, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 4406.6, "z": 6657.9, "px": 2800.1, "py": 3184.3}, {"loc_id": 4435, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 4406.6, "z": 6657.9, "px": 2800.1, "py": 3184.3}, {"loc_id": 4436, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1152.8, "z": 5443.9, "px": 2244.7, "py": 2977.1}, {"loc_id": 4436, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 1152.8, "z": 5443.9, "px": 2244.7, "py": 2977.1}, {"loc_id": 4436, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1152.8, "z": 5443.9, "px": 2244.7, "py": 2977.1}, {"loc_id": 4437, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 6726.1, "z": 4922.7, "px": 3195.9, "py": 2888.1}, {"loc_id": 4438, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -7037.2, "z": 246.7, "px": 847.0, "py": 2090.1}, {"loc_id": 4439, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 5825.4, "z": -4736.0, "px": 3042.2, "py": 1239.7}, {"loc_id": 4439, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 5825.4, "z": -4736.0, "px": 3042.2, "py": 1239.7}, {"loc_id": 4440, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 4425.2, "z": 6792.0, "px": 2803.2, "py": 3207.2}, {"loc_id": 4441, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -192.8, "z": 572.5, "px": 2015.1, "py": 2145.7}, {"loc_id": 4441, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -192.8, "z": 572.5, "px": 2015.1, "py": 2145.7}, {"loc_id": 4441, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -192.8, "z": 572.5, "px": 2015.1, "py": 2145.7}, {"loc_id": 4442, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 2816.5, "z": -136.0, "px": 2528.7, "py": 2024.8}, {"loc_id": 4442, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2816.5, "z": -136.0, "px": 2528.7, "py": 2024.8}, {"loc_id": 4443, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 1025.3, "z": -5563.5, "px": 2223.0, "py": 1098.5}, {"loc_id": 4443, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1025.3, "z": -5563.5, "px": 2223.0, "py": 1098.5}, {"loc_id": 4443, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 1025.3, "z": -5563.5, "px": 2223.0, "py": 1098.5}, {"loc_id": 4443, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 1025.3, "z": -5563.5, "px": 2223.0, "py": 1098.5}, {"loc_id": 4444, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -9150.6, "z": 2822.4, "px": 486.3, "py": 2529.7}, {"loc_id": 4444, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -9150.6, "z": 2822.4, "px": 486.3, "py": 2529.7}, {"loc_id": 4444, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -9150.6, "z": 2822.4, "px": 486.3, "py": 2529.7}, {"loc_id": 4447, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 6773.8, "z": 4795.9, "px": 3204.1, "py": 2866.5}, {"loc_id": 4448, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -6717.4, "z": 5561.0, "px": 901.6, "py": 2997.1}, {"loc_id": 4448, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -6717.4, "z": 5561.0, "px": 901.6, "py": 2997.1}, {"loc_id": 4448, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -6717.4, "z": 5561.0, "px": 901.6, "py": 2997.1}, {"loc_id": 4449, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -9086.4, "z": 3208.4, "px": 497.3, "py": 2595.6}, {"loc_id": 4449, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -9086.4, "z": 3208.4, "px": 497.3, "py": 2595.6}, {"loc_id": 4450, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -8954.4, "z": 3016.4, "px": 519.8, "py": 2562.8}, {"loc_id": 4450, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -8954.4, "z": 3016.4, "px": 519.8, "py": 2562.8}, {"loc_id": 4450, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -8954.4, "z": 3016.4, "px": 519.8, "py": 2562.8}, {"loc_id": 4451, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -3511.8, "z": 4799.5, "px": 1448.7, "py": 2867.1}, {"loc_id": 4451, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -3511.8, "z": 4799.5, "px": 1448.7, "py": 2867.1}, {"loc_id": 4452, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -5703.6, "z": 4931.1, "px": 1074.6, "py": 2889.6}, {"loc_id": 4453, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -3274.2, "z": 4359.9, "px": 1489.2, "py": 2792.1}, {"loc_id": 4453, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -3274.2, "z": 4359.9, "px": 1489.2, "py": 2792.1}, {"loc_id": 4454, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 9791.7, "z": -1482.1, "px": 3719.1, "py": 1795.1}, {"loc_id": 4455, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 9526.9, "z": 1407.6, "px": 3673.9, "py": 2288.2}, {"loc_id": 4455, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 9526.9, "z": 1407.6, "px": 3673.9, "py": 2288.2}, {"loc_id": 4455, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 9526.9, "z": 1407.6, "px": 3673.9, "py": 2288.2}, {"loc_id": 4456, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 7751.7, "z": -2687.8, "px": 3371.0, "py": 1589.3}, {"loc_id": 4457, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -4149.9, "z": -198.9, "px": 1339.8, "py": 2014.1}, {"loc_id": 4457, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -4149.9, "z": -198.9, "px": 1339.8, "py": 2014.1}, {"loc_id": 4457, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -4149.9, "z": -198.9, "px": 1339.8, "py": 2014.1}, {"loc_id": 4457, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -4149.9, "z": -198.9, "px": 1339.8, "py": 2014.1}, {"loc_id": 4458, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -8120.2, "z": 2564.7, "px": 662.2, "py": 2485.7}, {"loc_id": 4458, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -8120.2, "z": 2564.7, "px": 662.2, "py": 2485.7}, {"loc_id": 4458, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -8120.2, "z": 2564.7, "px": 662.2, "py": 2485.7}, {"loc_id": 4459, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 584.4, "z": 4475.8, "px": 2147.7, "py": 2811.9}, {"loc_id": 4459, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 584.4, "z": 4475.8, "px": 2147.7, "py": 2811.9}, {"loc_id": 4460, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -7484.5, "z": -4990.2, "px": 770.6, "py": 1196.3}, {"loc_id": 4460, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -7484.5, "z": -4990.2, "px": 770.6, "py": 1196.3}, {"loc_id": 4462, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2112.5, "z": -4356.6, "px": 2408.5, "py": 1304.5}, {"loc_id": 4462, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2112.5, "z": -4356.6, "px": 2408.5, "py": 1304.5}, {"loc_id": 4462, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 2112.5, "z": -4356.6, "px": 2408.5, "py": 1304.5}, {"loc_id": 4462, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 2112.5, "z": -4356.6, "px": 2408.5, "py": 1304.5}, {"loc_id": 4463, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 648.8, "z": 309.0, "px": 2158.7, "py": 2100.7}, {"loc_id": 4463, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 648.8, "z": 309.0, "px": 2158.7, "py": 2100.7}, {"loc_id": 4463, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 648.8, "z": 309.0, "px": 2158.7, "py": 2100.7}, {"loc_id": 4464, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 3768.6, "z": -386.4, "px": 2691.2, "py": 1982.1}, {"loc_id": 4464, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 3768.6, "z": -386.4, "px": 2691.2, "py": 1982.1}, {"loc_id": 4466, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 1162.4, "z": -2230.1, "px": 2246.4, "py": 1667.4}, {"loc_id": 4466, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1162.4, "z": -2230.1, "px": 2246.4, "py": 1667.4}, {"loc_id": 4468, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 3901.0, "z": 1013.6, "px": 2713.8, "py": 2221.0}, {"loc_id": 4468, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 3901.0, "z": 1013.6, "px": 2713.8, "py": 2221.0}, {"loc_id": 4469, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 4477.9, "z": -5048.3, "px": 2812.2, "py": 1186.4}, {"loc_id": 4469, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 1, "x": 4477.9, "z": -5048.3, "px": 2812.2, "py": 1186.4}, {"loc_id": 4470, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -1216.5, "z": 2569.6, "px": 1840.4, "py": 2486.5}, {"loc_id": 4471, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 6596.3, "z": 3146.6, "px": 3173.8, "py": 2585.0}, {"loc_id": 4471, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 6596.3, "z": 3146.6, "px": 3173.8, "py": 2585.0}, {"loc_id": 4472, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 378.2, "z": 5310.1, "px": 2112.5, "py": 2954.3}, {"loc_id": 4473, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -1352.6, "z": -1536.9, "px": 1817.2, "py": 1785.7}, {"loc_id": 4474, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -6838.8, "z": 5306.6, "px": 880.8, "py": 2953.7}, {"loc_id": 4474, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -6838.8, "z": 5306.6, "px": 880.8, "py": 2953.7}, {"loc_id": 4474, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -6838.8, "z": 5306.6, "px": 880.8, "py": 2953.7}, {"loc_id": 4475, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1734.3, "z": -4545.6, "px": 2344.0, "py": 1272.2}, {"loc_id": 4475, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1734.3, "z": -4545.6, "px": 2344.0, "py": 1272.2}, {"loc_id": 4476, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -3898.5, "z": -138.6, "px": 1382.7, "py": 2024.3}, {"loc_id": 4477, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": 2108.3, "z": 1209.2, "px": 2407.8, "py": 2254.4}, {"loc_id": 4477, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2108.3, "z": 1209.2, "px": 2407.8, "py": 2254.4}, {"loc_id": 4478, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2374.0, "z": -6154.7, "px": 1642.8, "py": 997.6}, {"loc_id": 4478, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -2374.0, "z": -6154.7, "px": 1642.8, "py": 997.6}, {"loc_id": 4479, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -1589.2, "z": -5703.7, "px": 1776.8, "py": 1074.6}, {"loc_id": 4480, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -124.8, "z": -4743.5, "px": 2026.7, "py": 1238.4}, {"loc_id": 4481, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -1911.4, "z": -4671.1, "px": 1721.8, "py": 1250.8}, {"loc_id": 4481, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -1911.4, "z": -4671.1, "px": 1721.8, "py": 1250.8}, {"loc_id": 4481, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -1911.4, "z": -4671.1, "px": 1721.8, "py": 1250.8}, {"loc_id": 4482, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2112.1, "z": 903.8, "px": 2408.5, "py": 2202.2}, {"loc_id": 4483, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -4800.9, "z": 5752.8, "px": 1228.6, "py": 3029.8}, {"loc_id": 4484, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 9404.2, "z": 56.3, "px": 3653.0, "py": 2057.6}, {"loc_id": 4484, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 9404.2, "z": 56.3, "px": 3653.0, "py": 2057.6}, {"loc_id": 4485, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 3648.4, "z": 197.1, "px": 2670.7, "py": 2081.6}, {"loc_id": 4485, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3648.4, "z": 197.1, "px": 2670.7, "py": 2081.6}, {"loc_id": 4486, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3395.3, "z": -2438.4, "px": 2627.5, "py": 1631.8}, {"loc_id": 4486, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 3395.3, "z": -2438.4, "px": 2627.5, "py": 1631.8}, {"loc_id": 4487, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1917.8, "z": 7177.5, "px": 2375.3, "py": 3273.0}, {"loc_id": 4488, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -5891.9, "z": 4474.7, "px": 1042.4, "py": 2811.7}, {"loc_id": 4488, "loc_name": "Crypt4", "item": "Pickable: SurtlingCore", "count": 1, "x": -5891.9, "z": 4474.7, "px": 1042.4, "py": 2811.7}, {"loc_id": 4488, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -5891.9, "z": 4474.7, "px": 1042.4, "py": 2811.7}, {"loc_id": 4489, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 8070.1, "z": 59.3, "px": 3425.3, "py": 2058.1}, {"loc_id": 4489, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 8070.1, "z": 59.3, "px": 3425.3, "py": 2058.1}, {"loc_id": 4489, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 8070.1, "z": 59.3, "px": 3425.3, "py": 2058.1}, {"loc_id": 4490, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -5060.1, "z": 761.5, "px": 1184.4, "py": 2178.0}, {"loc_id": 4491, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2042.1, "z": 510.0, "px": 1699.5, "py": 2135.0}, {"loc_id": 4491, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -2042.1, "z": 510.0, "px": 1699.5, "py": 2135.0}, {"loc_id": 4492, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 831.2, "z": 5252.1, "px": 2189.9, "py": 2944.4}, {"loc_id": 4492, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 831.2, "z": 5252.1, "px": 2189.9, "py": 2944.4}, {"loc_id": 4493, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -3957.2, "z": -2552.7, "px": 1372.6, "py": 1612.3}, {"loc_id": 4493, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -3957.2, "z": -2552.7, "px": 1372.6, "py": 1612.3}, {"loc_id": 4493, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -3957.2, "z": -2552.7, "px": 1372.6, "py": 1612.3}, {"loc_id": 4493, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": -3957.2, "z": -2552.7, "px": 1372.6, "py": 1612.3}, {"loc_id": 4494, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -4989.8, "z": 5566.0, "px": 1196.4, "py": 2997.9}, {"loc_id": 4495, "loc_name": "Crypt4", "item": "Container: TreasureChest_forestcrypt", "count": 1, "x": -8956.0, "z": 2882.7, "px": 519.5, "py": 2540.0}, {"loc_id": 4495, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -8956.0, "z": 2882.7, "px": 519.5, "py": 2540.0}, {"loc_id": 4495, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -8956.0, "z": 2882.7, "px": 519.5, "py": 2540.0}, {"loc_id": 4495, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -8956.0, "z": 2882.7, "px": 519.5, "py": 2540.0}, {"loc_id": 4495, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": -8956.0, "z": 2882.7, "px": 519.5, "py": 2540.0}, {"loc_id": 4496, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -886.5, "z": 518.3, "px": 1896.7, "py": 2136.5}, {"loc_id": 4497, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4920.5, "z": 198.6, "px": 2887.8, "py": 2081.9}, {"loc_id": 4497, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 4920.5, "z": 198.6, "px": 2887.8, "py": 2081.9}, {"loc_id": 4498, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1098.3, "z": -5692.8, "px": 2235.4, "py": 1076.4}, {"loc_id": 4499, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 450.4, "z": 440.0, "px": 2124.9, "py": 2123.1}, {"loc_id": 4499, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 450.4, "z": 440.0, "px": 2124.9, "py": 2123.1}, {"loc_id": 4500, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -3201.7, "z": -2365.6, "px": 1501.6, "py": 1644.3}, {"loc_id": 4501, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 1659.5, "z": -898.7, "px": 2331.2, "py": 1894.6}, {"loc_id": 4501, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 1659.5, "z": -898.7, "px": 2331.2, "py": 1894.6}, {"loc_id": 4502, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 1737.4, "z": -1014.3, "px": 2344.5, "py": 1874.9}, {"loc_id": 4502, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1737.4, "z": -1014.3, "px": 2344.5, "py": 1874.9}, {"loc_id": 4503, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 8635.6, "z": -1917.6, "px": 3521.8, "py": 1720.7}, {"loc_id": 4503, "loc_name": "Crypt4", "item": "Pickable: BoneFragments", "count": 1, "x": 8635.6, "z": -1917.6, "px": 3521.8, "py": 1720.7}, {"loc_id": 4504, "loc_name": "Crypt4", "item": "SpawnOnce: Ghost", "count": 1, "x": 2173.2, "z": -965.9, "px": 2418.9, "py": 1883.2}, {"loc_id": 4504, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": 2173.2, "z": -965.9, "px": 2418.9, "py": 1883.2}, {"loc_id": 4505, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -9609.6, "z": 699.3, "px": 408.0, "py": 2167.3}, {"loc_id": 4505, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -9609.6, "z": 699.3, "px": 408.0, "py": 2167.3}, {"loc_id": 4505, "loc_name": "Crypt4", "item": "SpawnOnce: Skeleton_Poison", "count": 1, "x": -9609.6, "z": 699.3, "px": 408.0, "py": 2167.3}, {"loc_id": 4506, "loc_name": "Crypt4", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 5060.4, "z": -2244.4, "px": 2911.6, "py": 1665.0}, {"loc_id": 4507, "loc_name": "Crypt4", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 8121.8, "z": -3975.7, "px": 3434.1, "py": 1369.5}, {"loc_id": 5208, "loc_name": "SwampHut1", "item": "SpawnOnce: Wraith", "count": 1, "x": -3818.9, "z": 3195.0, "px": 1396.2, "py": 2593.3}, {"loc_id": 5208, "loc_name": "SwampHut1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3818.9, "z": 3195.0, "px": 1396.2, "py": 2593.3}, {"loc_id": 5210, "loc_name": "SwampHut1", "item": "SpawnOnce: Wraith", "count": 1, "x": 4093.1, "z": 567.1, "px": 2746.6, "py": 2144.8}, {"loc_id": 5210, "loc_name": "SwampHut1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4093.1, "z": 567.1, "px": 2746.6, "py": 2144.8}, {"loc_id": 5216, "loc_name": "SwampHut1", "item": "SpawnOnce: Wraith", "count": 1, "x": -1394.5, "z": -5682.6, "px": 1810.0, "py": 1078.2}, {"loc_id": 5216, "loc_name": "SwampHut1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1394.5, "z": -5682.6, "px": 1810.0, "py": 1078.2}, {"loc_id": 5217, "loc_name": "SwampHut1", "item": "SpawnOnce: Wraith", "count": 1, "x": 3692.8, "z": 4627.0, "px": 2678.2, "py": 2837.7}, {"loc_id": 5217, "loc_name": "SwampHut1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3692.8, "z": 4627.0, "px": 2678.2, "py": 2837.7}, {"loc_id": 5235, "loc_name": "SwampHut1", "item": "SpawnOnce: Wraith", "count": 1, "x": -2989.2, "z": 5192.3, "px": 1537.8, "py": 2934.2}, {"loc_id": 5235, "loc_name": "SwampHut1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2989.2, "z": 5192.3, "px": 1537.8, "py": 2934.2}, {"loc_id": 5251, "loc_name": "SwampHut1", "item": "SpawnOnce: Wraith", "count": 1, "x": -3596.0, "z": 3012.6, "px": 1434.3, "py": 2562.2}, {"loc_id": 5251, "loc_name": "SwampHut1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3596.0, "z": 3012.6, "px": 1434.3, "py": 2562.2}, {"loc_id": 5252, "loc_name": "SwampHut1", "item": "SpawnOnce: Wraith", "count": 1, "x": 3223.0, "z": 4713.7, "px": 2598.1, "py": 2852.5}, {"loc_id": 5252, "loc_name": "SwampHut1", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3223.0, "z": 4713.7, "px": 2598.1, "py": 2852.5}, {"loc_id": 5269, "loc_name": "SwampHut2", "item": "SpawnOnce: Wraith", "count": 1, "x": 1165.8, "z": 2127.2, "px": 2247.0, "py": 2411.0}, {"loc_id": 5269, "loc_name": "SwampHut2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1165.8, "z": 2127.2, "px": 2247.0, "py": 2411.0}, {"loc_id": 5292, "loc_name": "SwampHut2", "item": "SpawnOnce: Wraith", "count": 1, "x": -4865.8, "z": -239.9, "px": 1217.6, "py": 2007.1}, {"loc_id": 5292, "loc_name": "SwampHut2", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4865.8, "z": -239.9, "px": 1217.6, "py": 2007.1}, {"loc_id": 5317, "loc_name": "SwampHut3", "item": "SpawnOnce: Wraith", "count": 1, "x": -2606.4, "z": -4092.0, "px": 1603.2, "py": 1349.6}, {"loc_id": 5317, "loc_name": "SwampHut3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2606.4, "z": -4092.0, "px": 1603.2, "py": 1349.6}, {"loc_id": 5324, "loc_name": "SwampHut3", "item": "SpawnOnce: Wraith", "count": 1, "x": -2884.9, "z": 527.7, "px": 1555.6, "py": 2138.1}, {"loc_id": 5324, "loc_name": "SwampHut3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2884.9, "z": 527.7, "px": 1555.6, "py": 2138.1}, {"loc_id": 5337, "loc_name": "SwampHut3", "item": "SpawnOnce: Wraith", "count": 1, "x": 5244.4, "z": 1234.7, "px": 2943.0, "py": 2258.7}, {"loc_id": 5337, "loc_name": "SwampHut3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5244.4, "z": 1234.7, "px": 2943.0, "py": 2258.7}, {"loc_id": 5340, "loc_name": "SwampHut3", "item": "SpawnOnce: Wraith", "count": 1, "x": 1555.0, "z": -5003.5, "px": 2313.4, "py": 1194.1}, {"loc_id": 5340, "loc_name": "SwampHut3", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1555.0, "z": -5003.5, "px": 2313.4, "py": 1194.1}, {"loc_id": 5358, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2442.6, "z": -1398.0, "px": 1631.1, "py": 1809.4}, {"loc_id": 5359, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 0.4, "z": 2508.9, "px": 2048.1, "py": 2476.2}, {"loc_id": 5359, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr_Ranged", "count": 1, "x": 0.4, "z": 2508.9, "px": 2048.1, "py": 2476.2}, {"loc_id": 5361, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr_Ranged", "count": 1, "x": 1988.4, "z": 4288.1, "px": 2387.4, "py": 2779.8}, {"loc_id": 5362, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2550.4, "z": 4925.3, "px": 1612.7, "py": 2888.6}, {"loc_id": 5362, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr_Ranged", "count": 1, "x": -2550.4, "z": 4925.3, "px": 1612.7, "py": 2888.6}, {"loc_id": 5363, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3479.7, "z": 3119.6, "px": 1454.1, "py": 2580.4}, {"loc_id": 5364, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2261.3, "z": -5297.6, "px": 2433.9, "py": 1143.9}, {"loc_id": 5366, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3374.9, "z": 554.7, "px": 2624.0, "py": 2142.7}, {"loc_id": 5367, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4552.4, "z": 1478.9, "px": 1271.1, "py": 2300.4}, {"loc_id": 5368, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5013.9, "z": 1521.4, "px": 1192.3, "py": 2307.7}, {"loc_id": 5369, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5736.7, "z": 1712.4, "px": 3027.1, "py": 2340.2}, {"loc_id": 5370, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5772.1, "z": -628.9, "px": 1062.9, "py": 1940.7}, {"loc_id": 5370, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr_Ranged", "count": 1, "x": -5772.1, "z": -628.9, "px": 1062.9, "py": 1940.7}, {"loc_id": 5371, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2555.7, "z": -1723.5, "px": 1611.8, "py": 1753.9}, {"loc_id": 5371, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr_Ranged", "count": 1, "x": -2555.7, "z": -1723.5, "px": 1611.8, "py": 1753.9}, {"loc_id": 5372, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2447.9, "z": 238.8, "px": 2465.8, "py": 2088.8}, {"loc_id": 5373, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -961.5, "z": -3884.1, "px": 1883.9, "py": 1385.1}, {"loc_id": 5374, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5827.8, "z": -506.9, "px": 1053.4, "py": 1961.5}, {"loc_id": 5376, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2965.2, "z": 3665.6, "px": 2554.1, "py": 2673.6}, {"loc_id": 5376, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr_Ranged", "count": 1, "x": 2965.2, "z": 3665.6, "px": 2554.1, "py": 2673.6}, {"loc_id": 5379, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2485.7, "z": -3389.8, "px": 2472.2, "py": 1469.5}, {"loc_id": 5380, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 643.5, "z": -2185.1, "px": 2157.8, "py": 1675.1}, {"loc_id": 5382, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr_Ranged", "count": 1, "x": -3654.3, "z": -4207.8, "px": 1424.3, "py": 1329.9}, {"loc_id": 5383, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5329.9, "z": -1901.2, "px": 1138.4, "py": 1723.5}, {"loc_id": 5384, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2286.4, "z": -5428.1, "px": 2438.2, "py": 1121.6}, {"loc_id": 5385, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2364.9, "z": 4500.7, "px": 2451.6, "py": 2816.1}, {"loc_id": 5386, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2448.9, "z": -5062.4, "px": 1630.1, "py": 1184.0}, {"loc_id": 5387, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr_Ranged", "count": 1, "x": 2193.0, "z": -1034.9, "px": 2422.3, "py": 1871.4}, {"loc_id": 5388, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3520.9, "z": 2635.1, "px": 1447.1, "py": 2497.7}, {"loc_id": 5388, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr_Ranged", "count": 1, "x": -3520.9, "z": 2635.1, "px": 1447.1, "py": 2497.7}, {"loc_id": 5389, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4668.1, "z": -531.8, "px": 2844.7, "py": 1957.2}, {"loc_id": 5389, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr_Ranged", "count": 1, "x": 4668.1, "z": -531.8, "px": 2844.7, "py": 1957.2}, {"loc_id": 5390, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2381.3, "z": -848.2, "px": 2454.4, "py": 1903.2}, {"loc_id": 5391, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2505.8, "z": -5227.1, "px": 2475.7, "py": 1155.9}, {"loc_id": 5391, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr_Ranged", "count": 1, "x": 2505.8, "z": -5227.1, "px": 2475.7, "py": 1155.9}, {"loc_id": 5392, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4500.8, "z": -3269.3, "px": 2816.1, "py": 1490.0}, {"loc_id": 5392, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr_Ranged", "count": 1, "x": 4500.8, "z": -3269.3, "px": 2816.1, "py": 1490.0}, {"loc_id": 5393, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2769.9, "z": 3782.5, "px": 2520.7, "py": 2693.5}, {"loc_id": 5394, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2134.6, "z": 4310.1, "px": 1683.7, "py": 2783.6}, {"loc_id": 5395, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3516.6, "z": 3270.8, "px": 1447.8, "py": 2606.2}, {"loc_id": 5396, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3221.7, "z": -4463.7, "px": 2597.8, "py": 1286.2}, {"loc_id": 5396, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr_Ranged", "count": 1, "x": 3221.7, "z": -4463.7, "px": 2597.8, "py": 1286.2}, {"loc_id": 5397, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2685.3, "z": 3972.2, "px": 2506.3, "py": 2725.9}, {"loc_id": 5398, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3343.6, "z": 4880.5, "px": 2618.6, "py": 2880.9}, {"loc_id": 5398, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr_Ranged", "count": 1, "x": 3343.6, "z": 4880.5, "px": 2618.6, "py": 2880.9}, {"loc_id": 5399, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2558.4, "z": 3591.3, "px": 2484.6, "py": 2660.9}, {"loc_id": 5400, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3710.2, "z": -3977.7, "px": 1414.8, "py": 1369.1}, {"loc_id": 5400, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr_Ranged", "count": 1, "x": -3710.2, "z": -3977.7, "px": 1414.8, "py": 1369.1}, {"loc_id": 5401, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr_Ranged", "count": 1, "x": -4345.2, "z": 3771.6, "px": 1306.4, "py": 2691.7}, {"loc_id": 5402, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2216.4, "z": 623.7, "px": 2426.3, "py": 2154.4}, {"loc_id": 5402, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr_Ranged", "count": 1, "x": 2216.4, "z": 623.7, "px": 2426.3, "py": 2154.4}, {"loc_id": 5404, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5416.1, "z": -1787.9, "px": 1123.7, "py": 1742.9}, {"loc_id": 5405, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2623.9, "z": -829.4, "px": 1600.2, "py": 1906.4}, {"loc_id": 5405, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr_Ranged", "count": 1, "x": -2623.9, "z": -829.4, "px": 1600.2, "py": 1906.4}, {"loc_id": 5406, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -134.1, "z": 2865.5, "px": 2025.1, "py": 2537.0}, {"loc_id": 5407, "loc_name": "SwampHut4", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2485.3, "z": -186.9, "px": 2472.2, "py": 2016.1}, {"loc_id": 5407, "loc_name": "SwampHut4", "item": "SpawnOnce: Draugr_Ranged", "count": 1, "x": 2485.3, "z": -186.9, "px": 2472.2, "py": 2016.1}, {"loc_id": 5418, "loc_name": "SwampHut5", "item": "SpawnOnce: Wraith", "count": 1, "x": -2162.2, "z": -4216.4, "px": 1679.0, "py": 1328.4}, {"loc_id": 5418, "loc_name": "SwampHut5", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2162.2, "z": -4216.4, "px": 1679.0, "py": 1328.4}, {"loc_id": 5433, "loc_name": "SwampWell1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 2549.9, "z": -939.1, "px": 2483.2, "py": 1887.7}, {"loc_id": 5435, "loc_name": "SwampWell1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -819.8, "z": -3916.0, "px": 1908.1, "py": 1379.7}, {"loc_id": 5436, "loc_name": "SwampWell1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -5248.0, "z": 1840.3, "px": 1152.3, "py": 2362.1}, {"loc_id": 5438, "loc_name": "SwampWell1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 5117.2, "z": -111.9, "px": 2921.3, "py": 2028.9}, {"loc_id": 5441, "loc_name": "SwampWell1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -5316.4, "z": -724.2, "px": 1140.7, "py": 1924.4}, {"loc_id": 5442, "loc_name": "SwampWell1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 3515.1, "z": -2240.8, "px": 2647.9, "py": 1665.6}, {"loc_id": 5444, "loc_name": "SwampWell1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 1777.7, "z": 1409.3, "px": 2351.4, "py": 2288.5}, {"loc_id": 5445, "loc_name": "SwampWell1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -368.3, "z": 2697.2, "px": 1985.1, "py": 2508.3}, {"loc_id": 5446, "loc_name": "SwampWell1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 1089.5, "z": 2357.5, "px": 2233.9, "py": 2450.3}, {"loc_id": 5451, "loc_name": "SwampWell1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -3601.9, "z": 2643.7, "px": 1433.3, "py": 2499.2}, {"loc_id": 5455, "loc_name": "SwampWell1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": 3437.2, "z": -4661.0, "px": 2634.6, "py": 1252.5}, {"loc_id": 5457, "loc_name": "SwampWell1", "item": "SpawnOnce: Draugr_Elite", "count": 1, "x": -4044.0, "z": 198.1, "px": 1357.8, "py": 2081.8}, {"loc_id": 5458, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 4739.1, "z": -5379.6, "px": 2856.8, "py": 1129.9}, {"loc_id": 5458, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 4739.1, "z": -5379.6, "px": 2856.8, "py": 1129.9}, {"loc_id": 5459, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 2504.1, "z": 829.5, "px": 2475.4, "py": 2189.6}, {"loc_id": 5460, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 2991.8, "z": 685.4, "px": 2558.6, "py": 2165.0}, {"loc_id": 5460, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2991.8, "z": 685.4, "px": 2558.6, "py": 2165.0}, {"loc_id": 5461, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 2497.2, "z": -2940.0, "px": 2474.2, "py": 1546.2}, {"loc_id": 5461, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2497.2, "z": -2940.0, "px": 2474.2, "py": 1546.2}, {"loc_id": 5461, "loc_name": "StoneTowerRuins04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 2497.2, "z": -2940.0, "px": 2474.2, "py": 1546.2}, {"loc_id": 5462, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": -2734.1, "z": 7213.6, "px": 1581.4, "py": 3279.1}, {"loc_id": 5463, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": -9726.7, "z": -697.4, "px": 388.0, "py": 1929.0}, {"loc_id": 5464, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 46.7, "z": -1205.1, "px": 2056.0, "py": 1842.3}, {"loc_id": 5465, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": -274.0, "z": -1332.4, "px": 2001.2, "py": 1820.6}, {"loc_id": 5466, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 2642.8, "z": -2821.8, "px": 2499.0, "py": 1566.4}, {"loc_id": 5466, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2642.8, "z": -2821.8, "px": 2499.0, "py": 1566.4}, {"loc_id": 5468, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 3502.0, "z": 9265.2, "px": 2645.7, "py": 3629.3}, {"loc_id": 5469, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": -3985.9, "z": 1478.6, "px": 1367.7, "py": 2300.3}, {"loc_id": 5469, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -3985.9, "z": 1478.6, "px": 1367.7, "py": 2300.3}, {"loc_id": 5470, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -3831.3, "z": 1467.3, "px": 1394.1, "py": 2298.4}, {"loc_id": 5470, "loc_name": "StoneTowerRuins04", "item": "SpawnOnce: Skeleton", "count": 1, "x": -3831.3, "z": 1467.3, "px": 1394.1, "py": 2298.4}, {"loc_id": 5472, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 6573.4, "z": 6894.7, "px": 3169.9, "py": 3224.7}, {"loc_id": 5473, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2691.1, "z": 692.2, "px": 2507.3, "py": 2166.1}, {"loc_id": 5474, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": -200.0, "z": -1134.2, "px": 2013.9, "py": 1854.4}, {"loc_id": 5474, "loc_name": "StoneTowerRuins04", "item": "SpawnOnce: Skeleton", "count": 1, "x": -200.0, "z": -1134.2, "px": 2013.9, "py": 1854.4}, {"loc_id": 5476, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 5772.6, "z": 4720.9, "px": 3033.2, "py": 2853.7}, {"loc_id": 5477, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -9810.2, "z": -620.5, "px": 373.7, "py": 1942.1}, {"loc_id": 5478, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 6673.4, "z": 6983.1, "px": 3186.9, "py": 3239.8}, {"loc_id": 5478, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 6673.4, "z": 6983.1, "px": 3186.9, "py": 3239.8}, {"loc_id": 5479, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 5770.0, "z": 4555.7, "px": 3032.7, "py": 2825.5}, {"loc_id": 5479, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 5770.0, "z": 4555.7, "px": 3032.7, "py": 2825.5}, {"loc_id": 5481, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 6445.0, "z": 6671.3, "px": 3147.9, "py": 3186.6}, {"loc_id": 5482, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": -4360.4, "z": -3952.1, "px": 1303.8, "py": 1373.5}, {"loc_id": 5483, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 6457.2, "z": 6532.6, "px": 3150.0, "py": 3162.9}, {"loc_id": 5484, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -3842.2, "z": 1589.1, "px": 1392.3, "py": 2319.2}, {"loc_id": 5485, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": -2034.3, "z": -620.9, "px": 1700.8, "py": 1942.0}, {"loc_id": 5485, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -2034.3, "z": -620.9, "px": 1700.8, "py": 1942.0}, {"loc_id": 5486, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2357.0, "z": -2831.5, "px": 2450.3, "py": 1564.8}, {"loc_id": 5488, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 2808.1, "z": 840.7, "px": 2527.2, "py": 2191.5}, {"loc_id": 5488, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2808.1, "z": 840.7, "px": 2527.2, "py": 2191.5}, {"loc_id": 5489, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": -2186.6, "z": -429.3, "px": 1674.8, "py": 1974.7}, {"loc_id": 5489, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -2186.6, "z": -429.3, "px": 1674.8, "py": 1974.7}, {"loc_id": 5490, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 4367.5, "z": -5771.5, "px": 2793.4, "py": 1063.0}, {"loc_id": 5490, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 4367.5, "z": -5771.5, "px": 2793.4, "py": 1063.0}, {"loc_id": 5491, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 4224.4, "z": -1923.7, "px": 2769.0, "py": 1719.7}, {"loc_id": 5492, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 2445.0, "z": 707.1, "px": 2465.3, "py": 2168.7}, {"loc_id": 5493, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 1229.8, "z": 8524.8, "px": 2257.9, "py": 3502.9}, {"loc_id": 5494, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 5641.4, "z": 2251.3, "px": 3010.8, "py": 2432.2}, {"loc_id": 5494, "loc_name": "StoneTowerRuins04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 5641.4, "z": 2251.3, "px": 3010.8, "py": 2432.2}, {"loc_id": 5495, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 6127.9, "z": 4490.7, "px": 3093.8, "py": 2814.4}, {"loc_id": 5495, "loc_name": "StoneTowerRuins04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 6127.9, "z": 4490.7, "px": 3093.8, "py": 2814.4}, {"loc_id": 5497, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -6717.2, "z": -2257.6, "px": 901.6, "py": 1662.7}, {"loc_id": 5498, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 5944.4, "z": 4468.1, "px": 3062.5, "py": 2810.6}, {"loc_id": 5499, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 2413.8, "z": -2576.8, "px": 2460.0, "py": 1608.2}, {"loc_id": 5500, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 6541.6, "z": 7099.7, "px": 3164.4, "py": 3259.7}, {"loc_id": 5501, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 5880.3, "z": 4591.8, "px": 3051.6, "py": 2831.7}, {"loc_id": 5501, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 5880.3, "z": 4591.8, "px": 3051.6, "py": 2831.7}, {"loc_id": 5502, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 2640.3, "z": 882.4, "px": 2498.6, "py": 2198.6}, {"loc_id": 5502, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2640.3, "z": 882.4, "px": 2498.6, "py": 2198.6}, {"loc_id": 5503, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 1345.7, "z": 6913.4, "px": 2277.7, "py": 3227.9}, {"loc_id": 5503, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 1345.7, "z": 6913.4, "px": 2277.7, "py": 3227.9}, {"loc_id": 5505, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 6597.1, "z": 6765.1, "px": 3173.9, "py": 3202.6}, {"loc_id": 5506, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 4430.5, "z": -1804.8, "px": 2804.1, "py": 1740.0}, {"loc_id": 5506, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 4430.5, "z": -1804.8, "px": 2804.1, "py": 1740.0}, {"loc_id": 5507, "loc_name": "StoneTowerRuins04", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": -4478.7, "z": -3898.5, "px": 1283.6, "py": 1382.7}, {"loc_id": 5507, "loc_name": "StoneTowerRuins04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -4478.7, "z": -3898.5, "px": 1283.6, "py": 1382.7}, {"loc_id": 5508, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": 5958.2, "z": 4352.4, "px": 3064.9, "py": 2790.8}, {"loc_id": 5508, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 1, "x": 5958.2, "z": 4352.4, "px": 3064.9, "py": 2790.8}, {"loc_id": 5509, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 1, "x": 4485.1, "z": -5831.6, "px": 2813.5, "py": 1052.7}, {"loc_id": 5509, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": 4485.1, "z": -5831.6, "px": 2813.5, "py": 1052.7}, {"loc_id": 5510, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": -4999.7, "z": 2686.3, "px": 1194.7, "py": 2506.5}, {"loc_id": 5510, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 1, "x": -4999.7, "z": 2686.3, "px": 1194.7, "py": 2506.5}, {"loc_id": 5511, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 1, "x": 5372.6, "z": 118.3, "px": 2964.9, "py": 2068.2}, {"loc_id": 5514, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": -6846.2, "z": -2309.9, "px": 879.6, "py": 1653.8}, {"loc_id": 5515, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": 1353.3, "z": 8516.8, "px": 2279.0, "py": 3501.5}, {"loc_id": 5516, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": 4486.9, "z": -5568.4, "px": 2813.8, "py": 1097.7}, {"loc_id": 5516, "loc_name": "StoneTowerRuins05", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4486.9, "z": -5568.4, "px": 2813.8, "py": 1097.7}, {"loc_id": 5518, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": 1289.9, "z": -5129.2, "px": 2268.1, "py": 1172.6}, {"loc_id": 5520, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": 3333.8, "z": 324.5, "px": 2617.0, "py": 2103.4}, {"loc_id": 5520, "loc_name": "StoneTowerRuins05", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3333.8, "z": 324.5, "px": 2617.0, "py": 2103.4}, {"loc_id": 5522, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": -2048.4, "z": -314.0, "px": 1698.4, "py": 1994.4}, {"loc_id": 5524, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": 1093.2, "z": -2564.6, "px": 2234.6, "py": 1610.3}, {"loc_id": 5525, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 1, "x": 1475.1, "z": 6917.5, "px": 2299.8, "py": 3228.6}, {"loc_id": 5525, "loc_name": "StoneTowerRuins05", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1475.1, "z": 6917.5, "px": 2299.8, "py": 3228.6}, {"loc_id": 5526, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": -886.6, "z": 8517.9, "px": 1896.7, "py": 3501.7}, {"loc_id": 5526, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 1, "x": -886.6, "z": 8517.9, "px": 1896.7, "py": 3501.7}, {"loc_id": 5527, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": 1082.7, "z": -2436.7, "px": 2232.8, "py": 1632.1}, {"loc_id": 5528, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": 4800.6, "z": -5242.5, "px": 2867.3, "py": 1153.3}, {"loc_id": 5529, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": 4413.0, "z": -1974.5, "px": 2801.2, "py": 1711.0}, {"loc_id": 5529, "loc_name": "StoneTowerRuins05", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 4413.0, "z": -1974.5, "px": 2801.2, "py": 1711.0}, {"loc_id": 5530, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2102.4, "z": 4680.0, "px": 2406.8, "py": 2846.7}, {"loc_id": 5530, "loc_name": "StoneTowerRuins05", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2102.4, "z": 4680.0, "px": 2406.8, "py": 2846.7}, {"loc_id": 5531, "loc_name": "StoneTowerRuins05", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2116.0, "z": -3586.8, "px": 2409.1, "py": 1435.9}, {"loc_id": 5532, "loc_name": "StoneTowerRuins05", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1283.5, "z": 6792.2, "px": 2267.1, "py": 3207.2}, {"loc_id": 5533, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": -2630.0, "z": 7290.9, "px": 1599.1, "py": 3292.3}, {"loc_id": 5533, "loc_name": "StoneTowerRuins05", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2630.0, "z": 7290.9, "px": 1599.1, "py": 3292.3}, {"loc_id": 5534, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": 6075.1, "z": 4605.5, "px": 3084.8, "py": 2834.0}, {"loc_id": 5534, "loc_name": "StoneTowerRuins05", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 6075.1, "z": 4605.5, "px": 3084.8, "py": 2834.0}, {"loc_id": 5535, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": -3329.2, "z": 6329.3, "px": 1479.8, "py": 3128.2}, {"loc_id": 5535, "loc_name": "StoneTowerRuins05", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -3329.2, "z": 6329.3, "px": 1479.8, "py": 3128.2}, {"loc_id": 5536, "loc_name": "StoneTowerRuins05", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -6596.6, "z": -2053.3, "px": 922.2, "py": 1697.6}, {"loc_id": 5537, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 1, "x": 6725.8, "z": 6727.0, "px": 3195.9, "py": 3196.1}, {"loc_id": 5537, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": 6725.8, "z": 6727.0, "px": 3195.9, "py": 3196.1}, {"loc_id": 5538, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": 7164.2, "z": -456.2, "px": 3270.7, "py": 1970.1}, {"loc_id": 5538, "loc_name": "StoneTowerRuins05", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 7164.2, "z": -456.2, "px": 3270.7, "py": 1970.1}, {"loc_id": 5540, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 1, "x": -3648.2, "z": 1464.1, "px": 1425.4, "py": 2297.9}, {"loc_id": 5540, "loc_name": "StoneTowerRuins05", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -3648.2, "z": 1464.1, "px": 1425.4, "py": 2297.9}, {"loc_id": 5541, "loc_name": "StoneTowerRuins05", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 8440.8, "z": -3972.8, "px": 3488.6, "py": 1370.0}, {"loc_id": 5542, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 1, "x": 1594.8, "z": 6785.0, "px": 2320.2, "py": 3206.0}, {"loc_id": 5544, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": 518.2, "z": 4297.4, "px": 2136.4, "py": 2781.4}, {"loc_id": 5546, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": 4790.1, "z": -5628.2, "px": 2865.5, "py": 1087.5}, {"loc_id": 5547, "loc_name": "StoneTowerRuins05", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -9910.3, "z": -707.8, "px": 356.6, "py": 1927.2}, {"loc_id": 5548, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 1, "x": 1403.3, "z": 6792.6, "px": 2287.5, "py": 3207.3}, {"loc_id": 5548, "loc_name": "StoneTowerRuins05", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 1403.3, "z": 6792.6, "px": 2287.5, "py": 3207.3}, {"loc_id": 5550, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": -6906.9, "z": -2433.2, "px": 869.2, "py": 1632.7}, {"loc_id": 5551, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": 4538.6, "z": -5448.0, "px": 2822.6, "py": 1118.2}, {"loc_id": 5551, "loc_name": "StoneTowerRuins05", "item": "SpawnOnce: Skeleton", "count": 1, "x": 4538.6, "z": -5448.0, "px": 2822.6, "py": 1118.2}, {"loc_id": 5552, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2295.8, "z": -2691.5, "px": 2439.8, "py": 1588.7}, {"loc_id": 5552, "loc_name": "StoneTowerRuins05", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2295.8, "z": -2691.5, "px": 2439.8, "py": 1588.7}, {"loc_id": 5553, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": -317.6, "z": -1206.2, "px": 1993.8, "py": 1842.1}, {"loc_id": 5554, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2629.6, "z": 585.4, "px": 2496.8, "py": 2147.9}, {"loc_id": 5554, "loc_name": "StoneTowerRuins05", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 2629.6, "z": 585.4, "px": 2496.8, "py": 2147.9}, {"loc_id": 5555, "loc_name": "StoneTowerRuins05", "item": "Container: TreasureChest_mountains", "count": 1, "x": 968.3, "z": -2499.9, "px": 2213.3, "py": 1621.4}, {"loc_id": 5558, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3413.4, "z": -1840.1, "px": 1465.4, "py": 1734.0}, {"loc_id": 5559, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 821.8, "z": 4425.4, "px": 2188.3, "py": 2803.3}, {"loc_id": 5559, "loc_name": "StoneTowerRuins03", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 821.8, "z": 4425.4, "px": 2188.3, "py": 2803.3}, {"loc_id": 5559, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 821.8, "z": 4425.4, "px": 2188.3, "py": 2803.3}, {"loc_id": 5560, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3695.7, "z": 4028.7, "px": 2678.7, "py": 2735.6}, {"loc_id": 5560, "loc_name": "StoneTowerRuins03", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 3695.7, "z": 4028.7, "px": 2678.7, "py": 2735.6}, {"loc_id": 5560, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 3695.7, "z": 4028.7, "px": 2678.7, "py": 2735.6}, {"loc_id": 5560, "loc_name": "StoneTowerRuins03", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3695.7, "z": 4028.7, "px": 2678.7, "py": 2735.6}, {"loc_id": 5561, "loc_name": "StoneTowerRuins03", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 8194.2, "z": 135.5, "px": 3446.5, "py": 2071.1}, {"loc_id": 5562, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7190.1, "z": 1270.7, "px": 3275.1, "py": 2264.9}, {"loc_id": 5562, "loc_name": "StoneTowerRuins03", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 7190.1, "z": 1270.7, "px": 3275.1, "py": 2264.9}, {"loc_id": 5562, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 7190.1, "z": 1270.7, "px": 3275.1, "py": 2264.9}, {"loc_id": 5563, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1004.6, "z": -902.1, "px": 1876.5, "py": 1894.0}, {"loc_id": 5563, "loc_name": "StoneTowerRuins03", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -1004.6, "z": -902.1, "px": 1876.5, "py": 1894.0}, {"loc_id": 5564, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3347.9, "z": -2353.0, "px": 1476.6, "py": 1646.4}, {"loc_id": 5564, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -3347.9, "z": -2353.0, "px": 1476.6, "py": 1646.4}, {"loc_id": 5565, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2670.0, "z": -3595.2, "px": 2503.7, "py": 1434.4}, {"loc_id": 5567, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5378.4, "z": -2002.3, "px": 1130.1, "py": 1706.3}, {"loc_id": 5567, "loc_name": "StoneTowerRuins03", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -5378.4, "z": -2002.3, "px": 1130.1, "py": 1706.3}, {"loc_id": 5567, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -5378.4, "z": -2002.3, "px": 1130.1, "py": 1706.3}, {"loc_id": 5569, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6890.1, "z": 404.8, "px": 872.1, "py": 2117.1}, {"loc_id": 5569, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -6890.1, "z": 404.8, "px": 872.1, "py": 2117.1}, {"loc_id": 5569, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -6890.1, "z": 404.8, "px": 872.1, "py": 2117.1}, {"loc_id": 5570, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -8761.7, "z": -579.8, "px": 552.7, "py": 1949.0}, {"loc_id": 5570, "loc_name": "StoneTowerRuins03", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -8761.7, "z": -579.8, "px": 552.7, "py": 1949.0}, {"loc_id": 5570, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -8761.7, "z": -579.8, "px": 552.7, "py": 1949.0}, {"loc_id": 5572, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3723.6, "z": 3349.7, "px": 2683.5, "py": 2619.7}, {"loc_id": 5572, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3723.6, "z": 3349.7, "px": 2683.5, "py": 2619.7}, {"loc_id": 5572, "loc_name": "StoneTowerRuins03", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3723.6, "z": 3349.7, "px": 2683.5, "py": 2619.7}, {"loc_id": 5573, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3921.5, "z": 1138.9, "px": 2717.3, "py": 2242.4}, {"loc_id": 5573, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 3921.5, "z": 1138.9, "px": 2717.3, "py": 2242.4}, {"loc_id": 5573, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 3921.5, "z": 1138.9, "px": 2717.3, "py": 2242.4}, {"loc_id": 5574, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8451.1, "z": 213.9, "px": 3490.3, "py": 2084.5}, {"loc_id": 5576, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1535.1, "z": -1902.5, "px": 1786.0, "py": 1723.3}, {"loc_id": 5576, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -1535.1, "z": -1902.5, "px": 1786.0, "py": 1723.3}, {"loc_id": 5577, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -1589.1, "z": 4845.1, "px": 1776.8, "py": 2874.9}, {"loc_id": 5578, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3660.9, "z": 7098.4, "px": 1423.2, "py": 3259.5}, {"loc_id": 5578, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -3660.9, "z": 7098.4, "px": 1423.2, "py": 3259.5}, {"loc_id": 5579, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7466.1, "z": 3690.7, "px": 3322.2, "py": 2677.9}, {"loc_id": 5579, "loc_name": "StoneTowerRuins03", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 7466.1, "z": 3690.7, "px": 3322.2, "py": 2677.9}, {"loc_id": 5580, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7349.0, "z": -4485.3, "px": 3302.2, "py": 1282.5}, {"loc_id": 5580, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 7349.0, "z": -4485.3, "px": 3302.2, "py": 1282.5}, {"loc_id": 5580, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 7349.0, "z": -4485.3, "px": 3302.2, "py": 1282.5}, {"loc_id": 5580, "loc_name": "StoneTowerRuins03", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 7349.0, "z": -4485.3, "px": 3302.2, "py": 1282.5}, {"loc_id": 5581, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3773.0, "z": -432.9, "px": 2691.9, "py": 1974.1}, {"loc_id": 5581, "loc_name": "StoneTowerRuins03", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3773.0, "z": -432.9, "px": 2691.9, "py": 1974.1}, {"loc_id": 5582, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7924.0, "z": -2859.5, "px": 3400.4, "py": 1560.0}, {"loc_id": 5582, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 7924.0, "z": -2859.5, "px": 3400.4, "py": 1560.0}, {"loc_id": 5582, "loc_name": "StoneTowerRuins03", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 7924.0, "z": -2859.5, "px": 3400.4, "py": 1560.0}, {"loc_id": 5584, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 8205.2, "z": -3821.3, "px": 3448.4, "py": 1395.8}, {"loc_id": 5587, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4915.7, "z": 5390.9, "px": 1209.1, "py": 2968.0}, {"loc_id": 5588, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2936.8, "z": -197.4, "px": 2549.2, "py": 2014.3}, {"loc_id": 5588, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 2936.8, "z": -197.4, "px": 2549.2, "py": 2014.3}, {"loc_id": 5588, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 2936.8, "z": -197.4, "px": 2549.2, "py": 2014.3}, {"loc_id": 5588, "loc_name": "StoneTowerRuins03", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2936.8, "z": -197.4, "px": 2549.2, "py": 2014.3}, {"loc_id": 5589, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5292.9, "z": 5119.7, "px": 2951.3, "py": 2921.8}, {"loc_id": 5590, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8134.3, "z": 1797.2, "px": 3436.3, "py": 2354.7}, {"loc_id": 5591, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 701.1, "z": 5078.3, "px": 2167.7, "py": 2914.7}, {"loc_id": 5591, "loc_name": "StoneTowerRuins03", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 701.1, "z": 5078.3, "px": 2167.7, "py": 2914.7}, {"loc_id": 5591, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 701.1, "z": 5078.3, "px": 2167.7, "py": 2914.7}, {"loc_id": 5592, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1684.1, "z": -6206.7, "px": 2335.4, "py": 988.7}, {"loc_id": 5592, "loc_name": "StoneTowerRuins03", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 1684.1, "z": -6206.7, "px": 2335.4, "py": 988.7}, {"loc_id": 5592, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 1684.1, "z": -6206.7, "px": 2335.4, "py": 988.7}, {"loc_id": 5593, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 7158.7, "z": -3087.2, "px": 3269.8, "py": 1521.1}, {"loc_id": 5593, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 7158.7, "z": -3087.2, "px": 3269.8, "py": 1521.1}, {"loc_id": 5594, "loc_name": "StoneTowerRuins03", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -6702.6, "z": 3572.3, "px": 904.1, "py": 2657.7}, {"loc_id": 5594, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -6702.6, "z": 3572.3, "px": 904.1, "py": 2657.7}, {"loc_id": 5594, "loc_name": "StoneTowerRuins03", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -6702.6, "z": 3572.3, "px": 904.1, "py": 2657.7}, {"loc_id": 5595, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2429.6, "z": -1653.5, "px": 2462.7, "py": 1765.8}, {"loc_id": 5595, "loc_name": "StoneTowerRuins03", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 2429.6, "z": -1653.5, "px": 2462.7, "py": 1765.8}, {"loc_id": 5595, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 2429.6, "z": -1653.5, "px": 2462.7, "py": 1765.8}, {"loc_id": 5595, "loc_name": "StoneTowerRuins03", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 2429.6, "z": -1653.5, "px": 2462.7, "py": 1765.8}, {"loc_id": 5596, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7146.7, "z": 150.5, "px": 828.3, "py": 2073.7}, {"loc_id": 5597, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -430.9, "z": -4226.6, "px": 1974.5, "py": 1326.7}, {"loc_id": 5597, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -430.9, "z": -4226.6, "px": 1974.5, "py": 1326.7}, {"loc_id": 5597, "loc_name": "StoneTowerRuins03", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -430.9, "z": -4226.6, "px": 1974.5, "py": 1326.7}, {"loc_id": 5598, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3584.2, "z": 4716.5, "px": 1436.3, "py": 2852.9}, {"loc_id": 5598, "loc_name": "StoneTowerRuins03", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -3584.2, "z": 4716.5, "px": 1436.3, "py": 2852.9}, {"loc_id": 5598, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -3584.2, "z": 4716.5, "px": 1436.3, "py": 2852.9}, {"loc_id": 5598, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -3584.2, "z": 4716.5, "px": 1436.3, "py": 2852.9}, {"loc_id": 5599, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -815.0, "z": -6652.8, "px": 1908.9, "py": 912.6}, {"loc_id": 5601, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2034.0, "z": -5515.8, "px": 1700.9, "py": 1106.6}, {"loc_id": 5601, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -2034.0, "z": -5515.8, "px": 1700.9, "py": 1106.6}, {"loc_id": 5602, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2356.3, "z": 4841.7, "px": 2450.1, "py": 2874.3}, {"loc_id": 5604, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -8703.6, "z": -789.2, "px": 562.6, "py": 1913.3}, {"loc_id": 5604, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -8703.6, "z": -789.2, "px": 562.6, "py": 1913.3}, {"loc_id": 5604, "loc_name": "StoneTowerRuins03", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": -8703.6, "z": -789.2, "px": 562.6, "py": 1913.3}, {"loc_id": 5605, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3918.0, "z": -2624.8, "px": 1379.3, "py": 1600.0}, {"loc_id": 5605, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -3918.0, "z": -2624.8, "px": 1379.3, "py": 1600.0}, {"loc_id": 5606, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -8116.7, "z": 532.9, "px": 662.7, "py": 2138.9}, {"loc_id": 5607, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7684.4, "z": -704.5, "px": 3359.5, "py": 1927.8}, {"loc_id": 5607, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 7684.4, "z": -704.5, "px": 3359.5, "py": 1927.8}, {"loc_id": 5608, "loc_name": "StoneTowerRuins03", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 1749.0, "z": 7281.9, "px": 2346.5, "py": 3290.8}, {"loc_id": 5608, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 1749.0, "z": 7281.9, "px": 2346.5, "py": 3290.8}, {"loc_id": 5608, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 1749.0, "z": 7281.9, "px": 2346.5, "py": 3290.8}, {"loc_id": 5609, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2965.6, "z": 7252.0, "px": 2554.1, "py": 3285.7}, {"loc_id": 5609, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 2965.6, "z": 7252.0, "px": 2554.1, "py": 3285.7}, {"loc_id": 5610, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3987.3, "z": -518.6, "px": 2728.5, "py": 1959.5}, {"loc_id": 5610, "loc_name": "StoneTowerRuins03", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3987.3, "z": -518.6, "px": 2728.5, "py": 1959.5}, {"loc_id": 5611, "loc_name": "StoneTowerRuins03", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 1899.4, "z": -4350.4, "px": 2372.2, "py": 1305.5}, {"loc_id": 5612, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3283.0, "z": 56.6, "px": 2608.3, "py": 2057.7}, {"loc_id": 5612, "loc_name": "StoneTowerRuins03", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 3283.0, "z": 56.6, "px": 2608.3, "py": 2057.7}, {"loc_id": 5612, "loc_name": "StoneTowerRuins03", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 3283.0, "z": 56.6, "px": 2608.3, "py": 2057.7}, {"loc_id": 5613, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -1385.5, "z": -5563.8, "px": 1811.5, "py": 1098.4}, {"loc_id": 5614, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6151.6, "z": 1453.2, "px": 998.1, "py": 2296.0}, {"loc_id": 5615, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4495.5, "z": -374.5, "px": 2815.2, "py": 1984.1}, {"loc_id": 5616, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 1073.3, "z": -5632.9, "px": 2231.2, "py": 1086.7}, {"loc_id": 5618, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 647.2, "z": 5374.5, "px": 2158.5, "py": 2965.2}, {"loc_id": 5619, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2318.7, "z": 1459.7, "px": 2443.7, "py": 2297.1}, {"loc_id": 5621, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3844.6, "z": -466.9, "px": 1391.9, "py": 1968.3}, {"loc_id": 5621, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -3844.6, "z": -466.9, "px": 1391.9, "py": 1968.3}, {"loc_id": 5622, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1173.9, "z": -4934.5, "px": 2248.3, "py": 1205.8}, {"loc_id": 5622, "loc_name": "StoneTowerRuins03", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 1173.9, "z": -4934.5, "px": 2248.3, "py": 1205.8}, {"loc_id": 5622, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 1173.9, "z": -4934.5, "px": 2248.3, "py": 1205.8}, {"loc_id": 5623, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2253.0, "z": -3079.9, "px": 1663.5, "py": 1522.4}, {"loc_id": 5623, "loc_name": "StoneTowerRuins03", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -2253.0, "z": -3079.9, "px": 1663.5, "py": 1522.4}, {"loc_id": 5624, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -642.6, "z": 139.3, "px": 1938.3, "py": 2071.8}, {"loc_id": 5624, "loc_name": "StoneTowerRuins03", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": -642.6, "z": 139.3, "px": 1938.3, "py": 2071.8}, {"loc_id": 5624, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -642.6, "z": 139.3, "px": 1938.3, "py": 2071.8}, {"loc_id": 5625, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 6525.9, "z": 3151.8, "px": 3161.8, "py": 2585.9}, {"loc_id": 5625, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 6525.9, "z": 3151.8, "px": 3161.8, "py": 2585.9}, {"loc_id": 5625, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 6525.9, "z": 3151.8, "px": 3161.8, "py": 2585.9}, {"loc_id": 5626, "loc_name": "StoneTowerRuins03", "item": "Drops: Honey[1-3], QueenBee[1-1]", "count": 1, "x": 8143.5, "z": -366.2, "px": 3437.8, "py": 1985.5}, {"loc_id": 5626, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 8143.5, "z": -366.2, "px": 3437.8, "py": 1985.5}, {"loc_id": 5627, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 390.4, "z": 5590.9, "px": 2114.6, "py": 3002.2}, {"loc_id": 5630, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5836.2, "z": -395.1, "px": 1052.0, "py": 1980.6}, {"loc_id": 5631, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 9354.6, "z": 72.1, "px": 3644.5, "py": 2060.3}, {"loc_id": 5631, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 1, "x": 9354.6, "z": 72.1, "px": 3644.5, "py": 2060.3}, {"loc_id": 5631, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 9354.6, "z": 72.1, "px": 3644.5, "py": 2060.3}, {"loc_id": 5632, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7755.2, "z": -2105.9, "px": 724.4, "py": 1688.6}, {"loc_id": 5633, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6443.3, "z": 3797.8, "px": 948.3, "py": 2696.2}, {"loc_id": 5633, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf", "count": 1, "x": -6443.3, "z": 3797.8, "px": 948.3, "py": 2696.2}, {"loc_id": 5634, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5512.7, "z": -1150.4, "px": 2988.8, "py": 1851.7}, {"loc_id": 5634, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 5512.7, "z": -1150.4, "px": 2988.8, "py": 1851.7}, {"loc_id": 5634, "loc_name": "StoneTowerRuins03", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 5512.7, "z": -1150.4, "px": 2988.8, "py": 1851.7}, {"loc_id": 5635, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 5314.5, "z": -561.1, "px": 2955.0, "py": 1952.2}, {"loc_id": 5636, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 494.0, "z": 5206.6, "px": 2132.3, "py": 2936.6}, {"loc_id": 5636, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": 494.0, "z": 5206.6, "px": 2132.3, "py": 2936.6}, {"loc_id": 5636, "loc_name": "StoneTowerRuins03", "item": "Vegvisir: GDKing ($enemy_gdking)", "count": 1, "x": 494.0, "z": 5206.6, "px": 2132.3, "py": 2936.6}, {"loc_id": 5637, "loc_name": "StoneTowerRuins03", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5123.5, "z": 367.7, "px": 1173.6, "py": 2110.8}, {"loc_id": 5637, "loc_name": "StoneTowerRuins03", "item": "SpawnOnce: Greydwarf_Elite", "count": 1, "x": -5123.5, "z": 367.7, "px": 1173.6, "py": 2110.8}, {"loc_id": 5643, "loc_name": "StoneTowerRuins07", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3586.7, "z": 3541.0, "px": 2660.1, "py": 2652.3}, {"loc_id": 5644, "loc_name": "StoneTowerRuins07", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5191.4, "z": 577.6, "px": 1162.0, "py": 2146.6}, {"loc_id": 5660, "loc_name": "StoneTowerRuins07", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7797.1, "z": -392.0, "px": 3378.7, "py": 1981.1}, {"loc_id": 5668, "loc_name": "StoneTowerRuins07", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1791.4, "z": -4217.9, "px": 1742.3, "py": 1328.1}, {"loc_id": 5671, "loc_name": "StoneTowerRuins07", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2561.3, "z": -6089.2, "px": 1610.9, "py": 1008.8}, {"loc_id": 5673, "loc_name": "StoneTowerRuins07", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2317.9, "z": 3716.3, "px": 2443.6, "py": 2682.2}, {"loc_id": 5675, "loc_name": "StoneTowerRuins07", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2242.6, "z": 726.5, "px": 1665.3, "py": 2172.0}, {"loc_id": 5679, "loc_name": "StoneTowerRuins07", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5839.7, "z": 4847.3, "px": 1051.4, "py": 2875.3}, {"loc_id": 5680, "loc_name": "StoneTowerRuins07", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 847.9, "z": 5369.6, "px": 2192.7, "py": 2964.4}, {"loc_id": 5694, "loc_name": "StoneTowerRuins07", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2124.0, "z": -1771.3, "px": 2410.5, "py": 1745.7}, {"loc_id": 5696, "loc_name": "StoneTowerRuins07", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4846.5, "z": 5710.6, "px": 1220.9, "py": 3022.6}, {"loc_id": 5698, "loc_name": "StoneTowerRuins07", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4112.1, "z": -108.1, "px": 1346.2, "py": 2029.6}, {"loc_id": 5699, "loc_name": "StoneTowerRuins07", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4649.1, "z": -5116.3, "px": 2841.4, "py": 1174.8}, {"loc_id": 5701, "loc_name": "StoneTowerRuins07", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8138.3, "z": -2643.6, "px": 3436.9, "py": 1596.8}, {"loc_id": 5713, "loc_name": "StoneTowerRuins07", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 877.4, "z": 3513.6, "px": 2197.7, "py": 2647.7}, {"loc_id": 5715, "loc_name": "StoneTowerRuins07", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7091.6, "z": 2322.0, "px": 3258.3, "py": 2444.3}, {"loc_id": 5716, "loc_name": "StoneTowerRuins07", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7445.5, "z": -4692.9, "px": 777.3, "py": 1247.1}, {"loc_id": 5725, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4547.2, "z": -1494.7, "px": 1271.9, "py": 1792.9}, {"loc_id": 5727, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5812.3, "z": 1587.6, "px": 3040.0, "py": 2319.0}, {"loc_id": 5732, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4302.3, "z": -6317.8, "px": 1313.7, "py": 969.8}, {"loc_id": 5733, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7736.4, "z": -3029.2, "px": 3368.3, "py": 1531.0}, {"loc_id": 5734, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -469.5, "z": 316.7, "px": 1967.9, "py": 2102.1}, {"loc_id": 5735, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4529.8, "z": -4541.3, "px": 1274.9, "py": 1273.0}, {"loc_id": 5738, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 240.2, "z": -4470.4, "px": 2089.0, "py": 1285.1}, {"loc_id": 5747, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7596.5, "z": 4332.6, "px": 751.5, "py": 2787.4}, {"loc_id": 5748, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4533.7, "z": 1551.4, "px": 1274.2, "py": 2312.8}, {"loc_id": 5749, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2482.4, "z": 1652.7, "px": 1624.3, "py": 2330.1}, {"loc_id": 5752, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5649.5, "z": -4995.0, "px": 1083.8, "py": 1195.5}, {"loc_id": 5755, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2669.2, "z": 1146.5, "px": 2503.5, "py": 2243.7}, {"loc_id": 5756, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 631.8, "z": 22.8, "px": 2155.8, "py": 2051.9}, {"loc_id": 5758, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7950.5, "z": -2351.7, "px": 3404.9, "py": 1646.6}, {"loc_id": 5767, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1719.3, "z": -5674.4, "px": 1754.6, "py": 1079.6}, {"loc_id": 5768, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7410.3, "z": 78.4, "px": 783.3, "py": 2061.4}, {"loc_id": 5770, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1867.9, "z": 7611.6, "px": 1729.2, "py": 3347.0}, {"loc_id": 5775, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8880.9, "z": 51.3, "px": 3563.7, "py": 2056.8}, {"loc_id": 5781, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3202.9, "z": -2823.5, "px": 2594.6, "py": 1566.1}, {"loc_id": 5783, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8465.8, "z": -1995.0, "px": 3492.8, "py": 1707.5}, {"loc_id": 5788, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 9681.9, "z": 1301.5, "px": 3700.4, "py": 2270.1}, {"loc_id": 5791, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3060.3, "z": -4399.8, "px": 2570.3, "py": 1297.1}, {"loc_id": 5796, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5485.9, "z": -913.2, "px": 2984.3, "py": 1892.1}, {"loc_id": 5797, "loc_name": "StoneTowerRuins08", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -8463.5, "z": -1973.4, "px": 603.6, "py": 1711.2}, {"loc_id": 5800, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4120.3, "z": -367.3, "px": 2751.2, "py": 1985.3}, {"loc_id": 5801, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": -3543.6, "z": 6936.2, "px": 1443.2, "py": 3231.8}, {"loc_id": 5802, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": 313.8, "z": 595.2, "px": 2101.6, "py": 2149.6}, {"loc_id": 5803, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8062.1, "z": 984.5, "px": 3423.9, "py": 2216.0}, {"loc_id": 5804, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5040.1, "z": 5566.3, "px": 1187.8, "py": 2998.0}, {"loc_id": 5806, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -406.5, "z": -4474.1, "px": 1978.6, "py": 1284.4}, {"loc_id": 5809, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": -7783.7, "z": -2326.2, "px": 719.6, "py": 1651.0}, {"loc_id": 5810, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": -9202.9, "z": -1528.5, "px": 477.4, "py": 1787.1}, {"loc_id": 5811, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -744.3, "z": 619.8, "px": 1921.0, "py": 2153.8}, {"loc_id": 5812, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": 2823.7, "z": 1017.1, "px": 2529.9, "py": 2221.6}, {"loc_id": 5813, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5682.1, "z": 5108.6, "px": 1078.3, "py": 2919.9}, {"loc_id": 5814, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7484.2, "z": 4628.3, "px": 770.7, "py": 2837.9}, {"loc_id": 5814, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": -7484.2, "z": 4628.3, "px": 770.7, "py": 2837.9}, {"loc_id": 5815, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4036.4, "z": -3716.5, "px": 1359.1, "py": 1413.7}, {"loc_id": 5817, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7510.2, "z": -5033.6, "px": 766.3, "py": 1188.9}, {"loc_id": 5818, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": 977.0, "z": 434.7, "px": 2214.7, "py": 2122.2}, {"loc_id": 5822, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": 1335.7, "z": -2640.2, "px": 2276.0, "py": 1597.4}, {"loc_id": 5823, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": 2201.0, "z": 719.8, "px": 2423.6, "py": 2170.8}, {"loc_id": 5825, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 984.1, "z": -2690.8, "px": 2216.0, "py": 1588.8}, {"loc_id": 5826, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": 2409.2, "z": 1217.9, "px": 2459.2, "py": 2255.9}, {"loc_id": 5827, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7797.7, "z": 4397.8, "px": 3378.8, "py": 2798.6}, {"loc_id": 5828, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4243.6, "z": 4235.5, "px": 1323.8, "py": 2770.9}, {"loc_id": 5830, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -8556.1, "z": 646.8, "px": 587.8, "py": 2158.4}, {"loc_id": 5831, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": 5371.9, "z": 1727.9, "px": 2964.8, "py": 2342.9}, {"loc_id": 5833, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3976.4, "z": -6359.5, "px": 1369.4, "py": 962.6}, {"loc_id": 5835, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2554.7, "z": 1464.4, "px": 1612.0, "py": 2297.9}, {"loc_id": 5836, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -3241.9, "z": 6568.9, "px": 1494.7, "py": 3169.1}, {"loc_id": 5837, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5183.9, "z": -1860.2, "px": 1163.3, "py": 1730.5}, {"loc_id": 5838, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": 3517.7, "z": 368.5, "px": 2648.4, "py": 2110.9}, {"loc_id": 5839, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1623.3, "z": -4432.6, "px": 1771.0, "py": 1291.5}, {"loc_id": 5839, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": -1623.3, "z": -4432.6, "px": 1771.0, "py": 1291.5}, {"loc_id": 5840, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": 1861.7, "z": 7023.9, "px": 2365.7, "py": 3246.7}, {"loc_id": 5842, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1898.4, "z": 1039.0, "px": 2372.0, "py": 2225.3}, {"loc_id": 5843, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": -5102.3, "z": -1677.7, "px": 1177.2, "py": 1761.7}, {"loc_id": 5844, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8070.9, "z": -108.0, "px": 3425.4, "py": 2029.6}, {"loc_id": 5845, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4363.6, "z": -871.6, "px": 2792.7, "py": 1899.2}, {"loc_id": 5846, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": 500.8, "z": 4478.4, "px": 2133.5, "py": 2812.3}, {"loc_id": 5847, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5563.8, "z": 4804.7, "px": 1098.4, "py": 2868.0}, {"loc_id": 5849, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2631.3, "z": 5747.5, "px": 2497.1, "py": 3028.9}, {"loc_id": 5850, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -983.2, "z": 383.7, "px": 1880.2, "py": 2113.5}, {"loc_id": 5850, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": -983.2, "z": 383.7, "px": 1880.2, "py": 2113.5}, {"loc_id": 5851, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2549.6, "z": -3411.2, "px": 2483.1, "py": 1465.8}, {"loc_id": 5852, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": 9398.2, "z": 1298.5, "px": 3652.0, "py": 2269.6}, {"loc_id": 5853, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2696.6, "z": -4719.6, "px": 2508.2, "py": 1242.5}, {"loc_id": 5855, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": 5835.4, "z": -4630.6, "px": 3043.9, "py": 1257.7}, {"loc_id": 5857, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -8236.3, "z": -952.6, "px": 642.3, "py": 1885.4}, {"loc_id": 5858, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1224.5, "z": -5773.7, "px": 1839.0, "py": 1062.6}, {"loc_id": 5859, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9578.3, "z": -2612.7, "px": 413.3, "py": 1602.1}, {"loc_id": 5859, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": -9578.3, "z": -2612.7, "px": 413.3, "py": 1602.1}, {"loc_id": 5861, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": -9583.4, "z": -462.2, "px": 412.4, "py": 1969.1}, {"loc_id": 5862, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -7357.0, "z": -2131.9, "px": 792.4, "py": 1684.2}, {"loc_id": 5863, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 7448.1, "z": -3375.0, "px": 3319.1, "py": 1472.0}, {"loc_id": 5864, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": -6723.3, "z": 557.8, "px": 900.6, "py": 2143.2}, {"loc_id": 5865, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1719.4, "z": 2838.1, "px": 1754.6, "py": 2532.4}, {"loc_id": 5865, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": -1719.4, "z": 2838.1, "px": 1754.6, "py": 2532.4}, {"loc_id": 5866, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -1362.0, "z": -1166.9, "px": 1815.6, "py": 1848.8}, {"loc_id": 5867, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": 241.5, "z": -1387.6, "px": 2089.2, "py": 1811.2}, {"loc_id": 5868, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": 1993.0, "z": -143.7, "px": 2388.1, "py": 2023.5}, {"loc_id": 5869, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -16.7, "z": -1066.4, "px": 2045.1, "py": 1866.0}, {"loc_id": 5869, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": -16.7, "z": -1066.4, "px": 2045.1, "py": 1866.0}, {"loc_id": 5870, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": 2163.4, "z": 4021.4, "px": 2417.2, "py": 2734.3}, {"loc_id": 5871, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5463.4, "z": -5241.0, "px": 1115.6, "py": 1153.5}, {"loc_id": 5873, "loc_name": "StoneTowerRuins09", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 6802.7, "z": 4977.1, "px": 3209.0, "py": 2897.4}, {"loc_id": 5873, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": 6802.7, "z": 4977.1, "px": 3209.0, "py": 2897.4}, {"loc_id": 5874, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": 5909.6, "z": -536.4, "px": 3056.6, "py": 1956.5}, {"loc_id": 5875, "loc_name": "StoneTowerRuins09", "item": "SpawnOnce: Skeleton", "count": 1, "x": -3781.9, "z": 1224.7, "px": 1402.6, "py": 2257.0}, {"loc_id": 5878, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": 652.5, "z": -189.0, "px": 2159.4, "py": 2015.7}, {"loc_id": 5879, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -878.8, "z": 21.9, "px": 1898.0, "py": 2051.7}, {"loc_id": 5884, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5265.4, "z": -1555.4, "px": 1149.4, "py": 1782.5}, {"loc_id": 5886, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": -3861.4, "z": 4347.9, "px": 1389.0, "py": 2790.0}, {"loc_id": 5887, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": 2817.1, "z": 391.9, "px": 2528.8, "py": 2114.9}, {"loc_id": 5890, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": -5834.2, "z": -5102.2, "px": 1052.3, "py": 1177.2}, {"loc_id": 5891, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -9104.4, "z": 3157.4, "px": 494.2, "py": 2586.9}, {"loc_id": 5891, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": -9104.4, "z": 3157.4, "px": 494.2, "py": 2586.9}, {"loc_id": 5893, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -5806.1, "z": 1098.1, "px": 1057.1, "py": 2235.4}, {"loc_id": 5894, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2559.7, "z": -4562.4, "px": 2484.9, "py": 1269.4}, {"loc_id": 5895, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3265.2, "z": -4753.9, "px": 2605.3, "py": 1236.7}, {"loc_id": 5896, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": 5515.8, "z": 1560.0, "px": 2989.4, "py": 2314.2}, {"loc_id": 5897, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2193.9, "z": -448.9, "px": 2422.4, "py": 1971.4}, {"loc_id": 5903, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": 1363.9, "z": -2263.0, "px": 2280.8, "py": 1661.8}, {"loc_id": 5904, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": 3949.5, "z": 3628.1, "px": 2722.0, "py": 2667.2}, {"loc_id": 5905, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -8341.7, "z": -1166.7, "px": 624.3, "py": 1848.9}, {"loc_id": 5906, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 336.2, "z": 5334.5, "px": 2105.4, "py": 2958.4}, {"loc_id": 5907, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8361.0, "z": -3600.9, "px": 3474.9, "py": 1433.4}, {"loc_id": 5907, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": 8361.0, "z": -3600.9, "px": 3474.9, "py": 1433.4}, {"loc_id": 5911, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": 917.1, "z": 109.2, "px": 2204.5, "py": 2066.6}, {"loc_id": 5912, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 3777.5, "z": 1324.0, "px": 2692.7, "py": 2274.0}, {"loc_id": 5913, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": 2297.3, "z": -14.7, "px": 2440.1, "py": 2045.5}, {"loc_id": 5914, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": -3047.3, "z": 1960.2, "px": 1527.9, "py": 2382.5}, {"loc_id": 5915, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": -3531.3, "z": 6678.8, "px": 1445.3, "py": 3187.8}, {"loc_id": 5917, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -4715.8, "z": 5435.2, "px": 1243.2, "py": 2975.6}, {"loc_id": 5919, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 8392.4, "z": -2191.9, "px": 3480.3, "py": 1673.9}, {"loc_id": 5921, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": 3903.1, "z": 4079.3, "px": 2714.1, "py": 2744.2}, {"loc_id": 5922, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": -1154.5, "z": -5457.1, "px": 1851.0, "py": 1116.7}, {"loc_id": 5923, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": 3386.6, "z": -2293.3, "px": 2626.0, "py": 1656.6}, {"loc_id": 5924, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": 3716.3, "z": -213.0, "px": 2682.2, "py": 2011.6}, {"loc_id": 5927, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 364.5, "z": 2729.2, "px": 2110.2, "py": 2513.8}, {"loc_id": 5929, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4139.8, "z": -1151.5, "px": 2754.5, "py": 1851.5}, {"loc_id": 5932, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": -3141.2, "z": -2234.6, "px": 1511.9, "py": 1666.6}, {"loc_id": 5933, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": 2193.4, "z": -889.7, "px": 2422.3, "py": 1896.2}, {"loc_id": 5936, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": -9680.0, "z": 529.5, "px": 395.9, "py": 2138.4}, {"loc_id": 5940, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 5325.1, "z": 6284.2, "px": 2956.8, "py": 3120.5}, {"loc_id": 5940, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": 5325.1, "z": 6284.2, "px": 2956.8, "py": 3120.5}, {"loc_id": 5943, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -6099.7, "z": 4622.1, "px": 1007.0, "py": 2836.8}, {"loc_id": 5943, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": -6099.7, "z": 4622.1, "px": 1007.0, "py": 2836.8}, {"loc_id": 5945, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 186.1, "z": -1046.6, "px": 2079.8, "py": 1869.4}, {"loc_id": 5948, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 4211.7, "z": 6609.6, "px": 2766.8, "py": 3176.0}, {"loc_id": 5948, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": 4211.7, "z": 6609.6, "px": 2766.8, "py": 3176.0}, {"loc_id": 5949, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 1926.7, "z": 3601.7, "px": 2376.8, "py": 2662.7}, {"loc_id": 5950, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": 2426.6, "z": -2262.3, "px": 2462.1, "py": 1661.9}, {"loc_id": 5953, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": 8750.5, "z": -4010.8, "px": 3541.4, "py": 1363.5}, {"loc_id": 5956, "loc_name": "StoneTowerRuins10", "item": "Container: TreasureChest_blackforest", "count": 1, "x": -2295.6, "z": 4169.7, "px": 1656.2, "py": 2759.6}, {"loc_id": 5957, "loc_name": "StoneTowerRuins10", "item": "SpawnOnce: Skeleton", "count": 1, "x": -615.6, "z": -6477.2, "px": 1942.9, "py": 942.6}, {"loc_id": 5958, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -390.9, "z": -4092.7, "px": 1981.3, "py": 1349.5}, {"loc_id": 5958, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -390.9, "z": -4092.7, "px": 1981.3, "py": 1349.5}, {"loc_id": 5959, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -1413.8, "z": -1221.5, "px": 1806.7, "py": 1839.5}, {"loc_id": 5961, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 3203.5, "z": 2500.8, "px": 2594.7, "py": 2474.8}, {"loc_id": 5962, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -443.4, "z": 378.8, "px": 1972.3, "py": 2112.6}, {"loc_id": 5962, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -443.4, "z": 378.8, "px": 1972.3, "py": 2112.6}, {"loc_id": 5963, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -3389.7, "z": 3005.3, "px": 1469.5, "py": 2560.9}, {"loc_id": 5965, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -248.5, "z": -762.8, "px": 2005.6, "py": 1917.8}, {"loc_id": 5966, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 184.7, "z": 195.6, "px": 2079.5, "py": 2081.4}, {"loc_id": 5966, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 184.7, "z": 195.6, "px": 2079.5, "py": 2081.4}, {"loc_id": 5967, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -1404.6, "z": -890.4, "px": 1808.3, "py": 1896.0}, {"loc_id": 5967, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -1404.6, "z": -890.4, "px": 1808.3, "py": 1896.0}, {"loc_id": 5968, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -386.1, "z": -66.2, "px": 1982.1, "py": 2036.7}, {"loc_id": 5969, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 1723.1, "z": -66.2, "px": 2342.1, "py": 2036.7}, {"loc_id": 5969, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 1723.1, "z": -66.2, "px": 2342.1, "py": 2036.7}, {"loc_id": 5970, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -2240.8, "z": 263.0, "px": 1665.6, "py": 2092.9}, {"loc_id": 5971, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 248.2, "z": -379.9, "px": 2090.4, "py": 1983.2}, {"loc_id": 5972, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -1601.7, "z": -573.1, "px": 1774.6, "py": 1950.2}, {"loc_id": 5973, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -3643.2, "z": -2434.2, "px": 1426.2, "py": 1632.6}, {"loc_id": 5973, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -3643.2, "z": -2434.2, "px": 1426.2, "py": 1632.6}, {"loc_id": 5974, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 1344.4, "z": -129.1, "px": 2277.4, "py": 2026.0}, {"loc_id": 5975, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 249.9, "z": -70.7, "px": 2090.6, "py": 2035.9}, {"loc_id": 5975, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 249.9, "z": -70.7, "px": 2090.6, "py": 2035.9}, {"loc_id": 5976, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 3322.4, "z": 2566.8, "px": 2615.0, "py": 2486.1}, {"loc_id": 5977, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -2047.5, "z": 323.0, "px": 1698.6, "py": 2103.1}, {"loc_id": 5978, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 1790.4, "z": -1538.8, "px": 2353.6, "py": 1785.4}, {"loc_id": 5978, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 1790.4, "z": -1538.8, "px": 2353.6, "py": 1785.4}, {"loc_id": 5979, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -1276.5, "z": -952.5, "px": 1830.1, "py": 1885.4}, {"loc_id": 5980, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 2631.7, "z": -706.5, "px": 2497.1, "py": 1927.4}, {"loc_id": 5980, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 2631.7, "z": -706.5, "px": 2497.1, "py": 1927.4}, {"loc_id": 5981, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 4347.6, "z": -1407.5, "px": 2790.0, "py": 1807.8}, {"loc_id": 5982, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -69.7, "z": -1927.8, "px": 2036.1, "py": 1719.0}, {"loc_id": 5983, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -3131.9, "z": 3065.3, "px": 1513.5, "py": 2571.1}, {"loc_id": 5983, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -3131.9, "z": 3065.3, "px": 1513.5, "py": 2571.1}, {"loc_id": 5984, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -2172.7, "z": -1540.8, "px": 1677.2, "py": 1785.0}, {"loc_id": 5985, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -320.7, "z": -3842.3, "px": 1993.3, "py": 1392.2}, {"loc_id": 5985, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -320.7, "z": -3842.3, "px": 1993.3, "py": 1392.2}, {"loc_id": 5986, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 2365.2, "z": -699.4, "px": 2451.7, "py": 1928.6}, {"loc_id": 5988, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -1599.7, "z": -1150.0, "px": 1775.0, "py": 1851.7}, {"loc_id": 5989, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 2618.6, "z": -838.4, "px": 2494.9, "py": 1904.9}, {"loc_id": 5991, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 4422.4, "z": -1272.5, "px": 2802.8, "py": 1830.8}, {"loc_id": 5991, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 4422.4, "z": -1272.5, "px": 2802.8, "py": 1830.8}, {"loc_id": 5992, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -3647.3, "z": 2882.2, "px": 1425.5, "py": 2539.9}, {"loc_id": 5992, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -3647.3, "z": 2882.2, "px": 1425.5, "py": 2539.9}, {"loc_id": 5993, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -1221.9, "z": -639.5, "px": 1839.5, "py": 1938.9}, {"loc_id": 5994, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 2680.7, "z": -3072.1, "px": 2505.5, "py": 1523.7}, {"loc_id": 5995, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -57.4, "z": -192.0, "px": 2038.2, "py": 2015.2}, {"loc_id": 5996, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 1082.8, "z": 707.5, "px": 2232.8, "py": 2168.7}, {"loc_id": 5998, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -66.1, "z": -58.2, "px": 2036.7, "py": 2038.1}, {"loc_id": 6000, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 517.7, "z": 0.5, "px": 2136.4, "py": 2048.1}, {"loc_id": 6001, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -3835.6, "z": 3072.3, "px": 1393.4, "py": 2572.3}, {"loc_id": 6001, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -3835.6, "z": 3072.3, "px": 1393.4, "py": 2572.3}, {"loc_id": 6002, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -1023.0, "z": -771.8, "px": 1873.4, "py": 1916.3}, {"loc_id": 6002, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -1023.0, "z": -771.8, "px": 1873.4, "py": 1916.3}, {"loc_id": 6003, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -1598.0, "z": 2883.9, "px": 1775.3, "py": 2540.2}, {"loc_id": 6004, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -126.4, "z": -441.5, "px": 2026.4, "py": 1972.7}, {"loc_id": 6005, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -2823.9, "z": 1091.8, "px": 1566.1, "py": 2234.3}, {"loc_id": 6006, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 384.0, "z": 128.7, "px": 2113.5, "py": 2070.0}, {"loc_id": 6006, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 384.0, "z": 128.7, "px": 2113.5, "py": 2070.0}, {"loc_id": 6007, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -2104.8, "z": -1663.1, "px": 1688.8, "py": 1764.2}, {"loc_id": 6007, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -2104.8, "z": -1663.1, "px": 1688.8, "py": 1764.2}, {"loc_id": 6008, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -254.2, "z": -384.2, "px": 2004.6, "py": 1982.4}, {"loc_id": 6008, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -254.2, "z": -384.2, "px": 2004.6, "py": 1982.4}, {"loc_id": 6009, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -326.1, "z": 506.8, "px": 1992.3, "py": 2134.5}, {"loc_id": 6009, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -326.1, "z": 506.8, "px": 1992.3, "py": 2134.5}, {"loc_id": 6010, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -1606.9, "z": -961.6, "px": 1773.8, "py": 1883.9}, {"loc_id": 6011, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -317.0, "z": 67.8, "px": 1993.9, "py": 2059.6}, {"loc_id": 6011, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -317.0, "z": 67.8, "px": 1993.9, "py": 2059.6}, {"loc_id": 6013, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 3079.4, "z": 2626.5, "px": 2573.6, "py": 2496.3}, {"loc_id": 6014, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 123.2, "z": -259.3, "px": 2069.0, "py": 2003.7}, {"loc_id": 6014, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 123.2, "z": -259.3, "px": 2069.0, "py": 2003.7}, {"loc_id": 6015, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 249.9, "z": -1664.1, "px": 2090.6, "py": 1764.0}, {"loc_id": 6016, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 1790.0, "z": 1155.8, "px": 2353.5, "py": 2245.3}, {"loc_id": 6017, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -4927.7, "z": 642.5, "px": 1207.0, "py": 2157.7}, {"loc_id": 6018, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 1725.1, "z": 123.3, "px": 2342.4, "py": 2069.0}, {"loc_id": 6018, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 1725.1, "z": 123.3, "px": 2342.4, "py": 2069.0}, {"loc_id": 6020, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -3389.7, "z": -2374.3, "px": 1469.5, "py": 1642.8}, {"loc_id": 6021, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -2311.3, "z": 576.9, "px": 1653.5, "py": 2146.5}, {"loc_id": 6021, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -2311.3, "z": 576.9, "px": 1653.5, "py": 2146.5}, {"loc_id": 6022, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -4159.3, "z": 1849.5, "px": 1338.1, "py": 2363.6}, {"loc_id": 6023, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 892.2, "z": 4543.7, "px": 2200.3, "py": 2823.5}, {"loc_id": 6025, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -574.8, "z": -1091.1, "px": 1949.9, "py": 1861.8}, {"loc_id": 6025, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -574.8, "z": -1091.1, "px": 1949.9, "py": 1861.8}, {"loc_id": 6026, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 4227.1, "z": -1148.9, "px": 2769.4, "py": 1851.9}, {"loc_id": 6026, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 4227.1, "z": -1148.9, "px": 2769.4, "py": 1851.9}, {"loc_id": 6027, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 2884.9, "z": -2434.7, "px": 2540.4, "py": 1632.5}, {"loc_id": 6027, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 2884.9, "z": -2434.7, "px": 2540.4, "py": 1632.5}, {"loc_id": 6028, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 1734.4, "z": 1280.8, "px": 2344.0, "py": 2266.6}, {"loc_id": 6029, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -2493.4, "z": 449.5, "px": 1622.5, "py": 2124.7}, {"loc_id": 6029, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -2493.4, "z": 449.5, "px": 1622.5, "py": 2124.7}, {"loc_id": 6030, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 4164.6, "z": -1347.4, "px": 2758.8, "py": 1818.0}, {"loc_id": 6031, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -3194.3, "z": 2943.8, "px": 1502.8, "py": 2550.4}, {"loc_id": 6032, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -2626.5, "z": 1918.1, "px": 1599.7, "py": 2375.4}, {"loc_id": 6032, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -2626.5, "z": 1918.1, "px": 1599.7, "py": 2375.4}, {"loc_id": 6033, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -58.3, "z": 263.2, "px": 2038.1, "py": 2092.9}, {"loc_id": 6034, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -1537.3, "z": -1600.8, "px": 1785.6, "py": 1774.8}, {"loc_id": 6035, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -4934.9, "z": 504.3, "px": 1205.8, "py": 2134.1}, {"loc_id": 6036, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 1031.5, "z": 837.8, "px": 2224.0, "py": 2191.0}, {"loc_id": 6037, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 4226.1, "z": -1473.5, "px": 2769.3, "py": 1796.5}, {"loc_id": 6038, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -2114.0, "z": 124.8, "px": 1687.2, "py": 2069.3}, {"loc_id": 6039, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -126.0, "z": -1729.0, "px": 2026.5, "py": 1752.9}, {"loc_id": 6039, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -126.0, "z": -1729.0, "px": 2026.5, "py": 1752.9}, {"loc_id": 6040, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 4034.5, "z": -1415.5, "px": 2736.6, "py": 1806.4}, {"loc_id": 6040, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 4034.5, "z": -1415.5, "px": 2736.6, "py": 1806.4}, {"loc_id": 6041, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 2373.3, "z": -568.9, "px": 2453.0, "py": 1950.9}, {"loc_id": 6041, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 2373.3, "z": -568.9, "px": 2453.0, "py": 1950.9}, {"loc_id": 6042, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 3075.6, "z": 2495.5, "px": 2572.9, "py": 2473.9}, {"loc_id": 6042, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 3075.6, "z": 2495.5, "px": 2572.9, "py": 2473.9}, {"loc_id": 6043, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 3268.8, "z": -189.7, "px": 2605.9, "py": 2015.6}, {"loc_id": 6043, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 3268.8, "z": -189.7, "px": 2605.9, "py": 2015.6}, {"loc_id": 6044, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -1155.6, "z": -830.8, "px": 1850.8, "py": 1906.2}, {"loc_id": 6045, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 317.1, "z": 256.0, "px": 2102.1, "py": 2091.7}, {"loc_id": 6045, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 317.1, "z": 256.0, "px": 2102.1, "py": 2091.7}, {"loc_id": 6046, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -3077.7, "z": 1797.6, "px": 1522.7, "py": 2354.8}, {"loc_id": 6046, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -3077.7, "z": 1797.6, "px": 1522.7, "py": 2354.8}, {"loc_id": 6047, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 1342.5, "z": 56.4, "px": 2277.1, "py": 2057.6}, {"loc_id": 6049, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -2177.2, "z": 4411.9, "px": 1676.4, "py": 2801.0}, {"loc_id": 6049, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -2177.2, "z": 4411.9, "px": 1676.4, "py": 2801.0}, {"loc_id": 6051, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": 3134.1, "z": -2758.6, "px": 2582.9, "py": 1577.2}, {"loc_id": 6051, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 3134.1, "z": -2758.6, "px": 2582.9, "py": 1577.2}, {"loc_id": 6052, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": 4089.2, "z": -1215.6, "px": 2745.9, "py": 1840.5}, {"loc_id": 6053, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -1016.3, "z": -643.4, "px": 1874.6, "py": 1938.2}, {"loc_id": 6054, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -3846.7, "z": -2042.3, "px": 1391.5, "py": 1699.4}, {"loc_id": 6054, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -3846.7, "z": -2042.3, "px": 1391.5, "py": 1699.4}, {"loc_id": 6056, "loc_name": "ShipSetting01", "item": "Item: One Of: Coins[2-15], AmberPearl[1-3], Amber[1-5]", "count": 1, "x": -3707.7, "z": -2308.5, "px": 1415.2, "py": 1654.0}, {"loc_id": 6056, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -3707.7, "z": -2308.5, "px": 1415.2, "py": 1654.0}, {"loc_id": 6057, "loc_name": "ShipSetting01", "item": "Container: TreasureChest_meadows_buried", "count": 1, "x": -1531.3, "z": -707.7, "px": 1786.7, "py": 1927.2}, {"loc_id": 6058, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 4603.2, "z": -5557.0, "px": 2833.6, "py": 1099.6}, {"loc_id": 6059, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -2085.0, "z": -81.7, "px": 1692.2, "py": 2034.1}, {"loc_id": 6060, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 4523.5, "z": -5820.3, "px": 2820.0, "py": 1054.7}, {"loc_id": 6060, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 4523.5, "z": -5820.3, "px": 2820.0, "py": 1054.7}, {"loc_id": 6061, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -9882.9, "z": -468.6, "px": 361.3, "py": 1968.0}, {"loc_id": 6062, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 390.9, "z": 3639.4, "px": 2114.7, "py": 2669.1}, {"loc_id": 6063, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -112.1, "z": 9154.8, "px": 2028.9, "py": 3610.4}, {"loc_id": 6063, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -112.1, "z": 9154.8, "px": 2028.9, "py": 3610.4}, {"loc_id": 6064, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 1240.5, "z": 320.2, "px": 2259.7, "py": 2102.6}, {"loc_id": 6064, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 1240.5, "z": 320.2, "px": 2259.7, "py": 2102.6}, {"loc_id": 6065, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 1327.3, "z": -5123.4, "px": 2274.5, "py": 1173.6}, {"loc_id": 6066, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2030.3, "z": -6824.6, "px": 2394.5, "py": 883.3}, {"loc_id": 6066, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 2030.3, "z": -6824.6, "px": 2394.5, "py": 883.3}, {"loc_id": 6067, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -6872.0, "z": 6762.7, "px": 875.2, "py": 3202.2}, {"loc_id": 6068, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 6352.8, "z": 6864.2, "px": 3132.2, "py": 3219.5}, {"loc_id": 6069, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2443.3, "z": 777.7, "px": 2465.0, "py": 2180.7}, {"loc_id": 6070, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 492.0, "z": 3653.1, "px": 2132.0, "py": 2671.5}, {"loc_id": 6070, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 492.0, "z": 3653.1, "px": 2132.0, "py": 2671.5}, {"loc_id": 6071, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -6959.1, "z": -2408.6, "px": 860.3, "py": 1636.9}, {"loc_id": 6072, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -7142.6, "z": -1090.4, "px": 829.0, "py": 1861.9}, {"loc_id": 6073, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -1978.1, "z": -459.5, "px": 1710.4, "py": 1969.6}, {"loc_id": 6074, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 462.0, "z": 4296.7, "px": 2126.8, "py": 2781.3}, {"loc_id": 6075, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -6092.0, "z": -391.5, "px": 1008.3, "py": 1981.2}, {"loc_id": 6076, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2361.0, "z": -2599.9, "px": 2450.9, "py": 1604.3}, {"loc_id": 6077, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2789.9, "z": 778.0, "px": 2524.1, "py": 2180.8}, {"loc_id": 6078, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2433.0, "z": -2710.2, "px": 2463.2, "py": 1585.5}, {"loc_id": 6079, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -3926.5, "z": 5197.9, "px": 1377.9, "py": 2935.1}, {"loc_id": 6080, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 7340.7, "z": 3953.7, "px": 3300.8, "py": 2722.8}, {"loc_id": 6081, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -7037.0, "z": -2504.3, "px": 847.0, "py": 1620.6}, {"loc_id": 6081, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -7037.0, "z": -2504.3, "px": 847.0, "py": 1620.6}, {"loc_id": 6082, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 8969.6, "z": -2410.4, "px": 3578.8, "py": 1636.6}, {"loc_id": 6082, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 8969.6, "z": -2410.4, "px": 3578.8, "py": 1636.6}, {"loc_id": 6083, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 1525.4, "z": 6825.7, "px": 2308.3, "py": 3212.9}, {"loc_id": 6083, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 1525.4, "z": 6825.7, "px": 2308.3, "py": 3212.9}, {"loc_id": 6084, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2153.3, "z": -3468.0, "px": 2415.5, "py": 1456.1}, {"loc_id": 6085, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 8434.6, "z": -3926.8, "px": 3487.5, "py": 1377.8}, {"loc_id": 6085, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 8434.6, "z": -3926.8, "px": 3487.5, "py": 1377.8}, {"loc_id": 6086, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 6035.5, "z": 4226.1, "px": 3078.1, "py": 2769.3}, {"loc_id": 6087, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2071.8, "z": -3539.6, "px": 2401.6, "py": 1443.9}, {"loc_id": 6088, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -7293.1, "z": -1010.8, "px": 803.3, "py": 1875.5}, {"loc_id": 6089, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -3725.0, "z": 1487.8, "px": 1412.3, "py": 2301.9}, {"loc_id": 6089, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -3725.0, "z": 1487.8, "px": 1412.3, "py": 2301.9}, {"loc_id": 6090, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -7658.7, "z": -2356.8, "px": 740.9, "py": 1645.8}, {"loc_id": 6090, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -7658.7, "z": -2356.8, "px": 740.9, "py": 1645.8}, {"loc_id": 6091, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 4412.2, "z": -1931.2, "px": 2801.0, "py": 1718.4}, {"loc_id": 6091, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 4412.2, "z": -1931.2, "px": 2801.0, "py": 1718.4}, {"loc_id": 6092, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -9961.2, "z": -410.3, "px": 348.0, "py": 1978.0}, {"loc_id": 6092, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -9961.2, "z": -410.3, "px": 348.0, "py": 1978.0}, {"loc_id": 6093, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -3783.9, "z": 5143.5, "px": 1402.2, "py": 2925.8}, {"loc_id": 6094, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 3268.3, "z": 9366.7, "px": 2605.8, "py": 3646.6}, {"loc_id": 6095, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 6650.9, "z": 7126.6, "px": 3183.1, "py": 3264.3}, {"loc_id": 6096, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -5045.5, "z": 2737.3, "px": 1186.9, "py": 2515.2}, {"loc_id": 6096, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -5045.5, "z": 2737.3, "px": 1186.9, "py": 2515.2}, {"loc_id": 6097, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 5305.0, "z": -309.5, "px": 2953.4, "py": 1995.2}, {"loc_id": 6097, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 5305.0, "z": -309.5, "px": 2953.4, "py": 1995.2}, {"loc_id": 6098, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 1164.3, "z": 199.6, "px": 2246.7, "py": 2082.1}, {"loc_id": 6098, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 1164.3, "z": 199.6, "px": 2246.7, "py": 2082.1}, {"loc_id": 6099, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 4557.9, "z": -1898.4, "px": 2825.9, "py": 1724.0}, {"loc_id": 6100, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 3379.1, "z": 273.4, "px": 2624.7, "py": 2094.7}, {"loc_id": 6100, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 3379.1, "z": 273.4, "px": 2624.7, "py": 2094.7}, {"loc_id": 6101, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -4111.4, "z": 1525.0, "px": 1346.3, "py": 2308.3}, {"loc_id": 6101, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -4111.4, "z": 1525.0, "px": 1346.3, "py": 2308.3}, {"loc_id": 6102, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2200.4, "z": -6163.5, "px": 2423.5, "py": 996.1}, {"loc_id": 6103, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -5268.8, "z": 5191.6, "px": 1148.8, "py": 2934.0}, {"loc_id": 6104, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 7718.9, "z": -579.1, "px": 3365.4, "py": 1949.2}, {"loc_id": 6105, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 5699.9, "z": -398.1, "px": 3020.8, "py": 1980.1}, {"loc_id": 6106, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2312.8, "z": 8664.2, "px": 2442.7, "py": 3526.7}, {"loc_id": 6106, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 2312.8, "z": 8664.2, "px": 2442.7, "py": 3526.7}, {"loc_id": 6107, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2567.5, "z": -2901.6, "px": 2486.2, "py": 1552.8}, {"loc_id": 6107, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 2567.5, "z": -2901.6, "px": 2486.2, "py": 1552.8}, {"loc_id": 6108, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -3913.0, "z": 1422.9, "px": 1380.2, "py": 2290.8}, {"loc_id": 6109, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 1639.4, "z": 6584.3, "px": 2327.8, "py": 3171.7}, {"loc_id": 6110, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 1363.8, "z": 6783.7, "px": 2280.8, "py": 3205.8}, {"loc_id": 6111, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 6602.4, "z": 6864.9, "px": 3174.8, "py": 3219.6}, {"loc_id": 6112, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 5830.9, "z": 4797.4, "px": 3043.1, "py": 2866.8}, {"loc_id": 6113, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 6455.5, "z": 6740.0, "px": 3149.7, "py": 3198.3}, {"loc_id": 6114, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 6773.0, "z": 6843.0, "px": 3203.9, "py": 3215.9}, {"loc_id": 6115, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2355.6, "z": 871.1, "px": 2450.0, "py": 2196.7}, {"loc_id": 6115, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 2355.6, "z": 871.1, "px": 2450.0, "py": 2196.7}, {"loc_id": 6116, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -6233.7, "z": -470.9, "px": 984.1, "py": 1967.6}, {"loc_id": 6117, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 6509.0, "z": 6542.1, "px": 3158.9, "py": 3164.5}, {"loc_id": 6117, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 6509.0, "z": 6542.1, "px": 3158.9, "py": 3164.5}, {"loc_id": 6118, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -6807.5, "z": -2233.2, "px": 886.2, "py": 1666.9}, {"loc_id": 6119, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 3244.7, "z": -1815.4, "px": 2601.8, "py": 1738.2}, {"loc_id": 6120, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 1139.7, "z": 368.2, "px": 2242.5, "py": 2110.8}, {"loc_id": 6120, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 1139.7, "z": 368.2, "px": 2242.5, "py": 2110.8}, {"loc_id": 6121, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -3854.0, "z": 4495.3, "px": 1390.3, "py": 2815.2}, {"loc_id": 6122, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2581.5, "z": 809.6, "px": 2488.6, "py": 2186.2}, {"loc_id": 6122, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 2581.5, "z": 809.6, "px": 2488.6, "py": 2186.2}, {"loc_id": 6123, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 3445.6, "z": 9268.7, "px": 2636.0, "py": 3629.9}, {"loc_id": 6124, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -5402.0, "z": 5105.6, "px": 1126.1, "py": 2919.4}, {"loc_id": 6124, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -5402.0, "z": 5105.6, "px": 1126.1, "py": 2919.4}, {"loc_id": 6125, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 1133.3, "z": 111.3, "px": 2241.4, "py": 2067.0}, {"loc_id": 6126, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 4488.0, "z": -5682.8, "px": 2814.0, "py": 1078.1}, {"loc_id": 6127, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2951.6, "z": 778.3, "px": 2551.7, "py": 2180.8}, {"loc_id": 6127, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 2951.6, "z": 778.3, "px": 2551.7, "py": 2180.8}, {"loc_id": 6128, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -4395.1, "z": -1042.3, "px": 1297.9, "py": 1870.1}, {"loc_id": 6128, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -4395.1, "z": -1042.3, "px": 1297.9, "py": 1870.1}, {"loc_id": 6129, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -3888.7, "z": 4688.1, "px": 1384.3, "py": 2848.1}, {"loc_id": 6130, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 3273.1, "z": 295.3, "px": 2606.6, "py": 2098.4}, {"loc_id": 6131, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 6657.7, "z": 6720.0, "px": 3184.2, "py": 3194.9}, {"loc_id": 6132, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -8474.7, "z": -1010.6, "px": 601.7, "py": 1875.5}, {"loc_id": 6133, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 4270.1, "z": -5755.1, "px": 2776.8, "py": 1065.8}, {"loc_id": 6134, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 3603.1, "z": -88.4, "px": 2662.9, "py": 2032.9}, {"loc_id": 6135, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 5747.6, "z": -252.0, "px": 3028.9, "py": 2005.0}, {"loc_id": 6136, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 8341.2, "z": -4027.8, "px": 3471.6, "py": 1360.6}, {"loc_id": 6137, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 4301.9, "z": -1958.1, "px": 2782.2, "py": 1713.8}, {"loc_id": 6138, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 4157.0, "z": -1731.0, "px": 2757.5, "py": 1752.6}, {"loc_id": 6139, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 3337.2, "z": 188.3, "px": 2617.5, "py": 2080.1}, {"loc_id": 6140, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 9874.4, "z": -1158.7, "px": 3733.2, "py": 1850.2}, {"loc_id": 6141, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -279.5, "z": -1133.1, "px": 2000.3, "py": 1854.6}, {"loc_id": 6142, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 4242.3, "z": -2047.0, "px": 2772.0, "py": 1698.6}, {"loc_id": 6143, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 5905.9, "z": 4500.4, "px": 3055.9, "py": 2816.1}, {"loc_id": 6144, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2859.1, "z": 575.8, "px": 2536.0, "py": 2146.3}, {"loc_id": 6145, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -9608.5, "z": -702.8, "px": 408.1, "py": 1928.1}, {"loc_id": 6145, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -9608.5, "z": -702.8, "px": 408.1, "py": 1928.1}, {"loc_id": 6146, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -259.7, "z": 9108.8, "px": 2003.7, "py": 3602.6}, {"loc_id": 6147, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 5288.1, "z": 192.6, "px": 2950.5, "py": 2080.9}, {"loc_id": 6148, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 4159.9, "z": -1839.0, "px": 2758.0, "py": 1734.1}, {"loc_id": 6149, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -2292.4, "z": -408.3, "px": 1656.8, "py": 1978.3}, {"loc_id": 6150, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 1580.6, "z": 6920.2, "px": 2317.8, "py": 3229.0}, {"loc_id": 6151, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 5582.0, "z": -488.0, "px": 3000.7, "py": 1964.7}, {"loc_id": 6152, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 7247.3, "z": -429.2, "px": 3284.9, "py": 1974.7}, {"loc_id": 6153, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 3180.5, "z": -2036.5, "px": 2590.8, "py": 1700.4}, {"loc_id": 6153, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 3180.5, "z": -2036.5, "px": 2590.8, "py": 1700.4}, {"loc_id": 6154, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2423.6, "z": 656.5, "px": 2461.6, "py": 2160.0}, {"loc_id": 6155, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2424.9, "z": 8665.5, "px": 2461.8, "py": 3526.9}, {"loc_id": 6156, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 1518.5, "z": 6992.6, "px": 2307.2, "py": 3241.4}, {"loc_id": 6156, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 1518.5, "z": 6992.6, "px": 2307.2, "py": 3241.4}, {"loc_id": 6157, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -3408.4, "z": -2009.0, "px": 1466.3, "py": 1705.1}, {"loc_id": 6158, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -8574.9, "z": -1002.3, "px": 584.6, "py": 1876.9}, {"loc_id": 6159, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -5141.3, "z": 5393.6, "px": 1170.6, "py": 2968.5}, {"loc_id": 6159, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -5141.3, "z": 5393.6, "px": 1170.6, "py": 2968.5}, {"loc_id": 6160, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 4735.7, "z": -5422.9, "px": 2856.2, "py": 1122.5}, {"loc_id": 6161, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -5332.3, "z": 5015.5, "px": 1138.0, "py": 2904.0}, {"loc_id": 6162, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -6674.5, "z": -2240.6, "px": 908.9, "py": 1665.6}, {"loc_id": 6162, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -6674.5, "z": -2240.6, "px": 908.9, "py": 1665.6}, {"loc_id": 6163, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -4532.4, "z": -153.8, "px": 1274.5, "py": 2021.8}, {"loc_id": 6164, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2394.9, "z": 8842.7, "px": 2456.7, "py": 3557.2}, {"loc_id": 6164, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 2394.9, "z": 8842.7, "px": 2456.7, "py": 3557.2}, {"loc_id": 6165, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -6616.6, "z": -1928.5, "px": 918.8, "py": 1718.9}, {"loc_id": 6166, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -3864.4, "z": 1553.5, "px": 1388.5, "py": 2313.1}, {"loc_id": 6167, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -4990.1, "z": 2597.7, "px": 1196.4, "py": 2491.3}, {"loc_id": 6168, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 7451.0, "z": 4010.1, "px": 3319.6, "py": 2732.4}, {"loc_id": 6169, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 6730.8, "z": 6953.5, "px": 3196.7, "py": 3234.7}, {"loc_id": 6170, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -3418.6, "z": 6155.4, "px": 1464.6, "py": 3098.5}, {"loc_id": 6171, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2095.2, "z": -1492.3, "px": 2405.6, "py": 1793.3}, {"loc_id": 6171, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 2095.2, "z": -1492.3, "px": 2405.6, "py": 1793.3}, {"loc_id": 6172, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 6120.1, "z": 4343.9, "px": 3092.5, "py": 2789.4}, {"loc_id": 6173, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -1982.7, "z": -600.8, "px": 1709.6, "py": 1945.5}, {"loc_id": 6174, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 5947.5, "z": 4284.0, "px": 3063.0, "py": 2779.1}, {"loc_id": 6175, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -2560.3, "z": 7382.7, "px": 1611.0, "py": 3308.0}, {"loc_id": 6176, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 7115.8, "z": -461.5, "px": 3262.4, "py": 1969.2}, {"loc_id": 6177, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 7255.0, "z": -557.9, "px": 3286.2, "py": 1952.8}, {"loc_id": 6178, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2711.8, "z": 922.5, "px": 2510.8, "py": 2205.4}, {"loc_id": 6178, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 2711.8, "z": 922.5, "px": 2510.8, "py": 2205.4}, {"loc_id": 6179, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 6075.9, "z": 4661.6, "px": 3085.0, "py": 2843.6}, {"loc_id": 6180, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 5431.5, "z": 5967.6, "px": 2975.0, "py": 3066.5}, {"loc_id": 6181, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 6213.5, "z": 4661.2, "px": 3108.4, "py": 2843.5}, {"loc_id": 6182, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2966.2, "z": 528.3, "px": 2554.2, "py": 2138.2}, {"loc_id": 6183, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 1321.5, "z": 6585.9, "px": 2273.5, "py": 3172.0}, {"loc_id": 6184, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 1254.0, "z": 8532.3, "px": 2262.0, "py": 3504.2}, {"loc_id": 6185, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 4343.9, "z": 1386.2, "px": 2789.4, "py": 2284.6}, {"loc_id": 6186, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2346.5, "z": -6205.2, "px": 2448.5, "py": 989.0}, {"loc_id": 6187, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -3904.8, "z": 1669.9, "px": 1381.6, "py": 2333.0}, {"loc_id": 6187, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -3904.8, "z": 1669.9, "px": 1381.6, "py": 2333.0}, {"loc_id": 6188, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2551.3, "z": -2993.6, "px": 2483.4, "py": 1537.1}, {"loc_id": 6189, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -1290.0, "z": -4882.6, "px": 1827.8, "py": 1214.7}, {"loc_id": 6190, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -2289.7, "z": -294.6, "px": 1657.2, "py": 1997.7}, {"loc_id": 6191, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -8617.3, "z": -137.5, "px": 577.3, "py": 2024.5}, {"loc_id": 6192, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -4348.8, "z": -3830.6, "px": 1305.8, "py": 1394.2}, {"loc_id": 6192, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -4348.8, "z": -3830.6, "px": 1305.8, "py": 1394.2}, {"loc_id": 6193, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 5774.1, "z": 2218.7, "px": 3033.4, "py": 2426.7}, {"loc_id": 6194, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 1517.6, "z": 6641.9, "px": 2307.0, "py": 3181.6}, {"loc_id": 6194, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 1517.6, "z": 6641.9, "px": 2307.0, "py": 3181.6}, {"loc_id": 6195, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -8534.4, "z": -1111.5, "px": 591.5, "py": 1858.3}, {"loc_id": 6196, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -5974.6, "z": -362.2, "px": 1028.3, "py": 1986.2}, {"loc_id": 6197, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -3505.3, "z": -2215.3, "px": 1449.8, "py": 1669.9}, {"loc_id": 6198, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -4094.7, "z": 3330.0, "px": 1349.2, "py": 2616.3}, {"loc_id": 6199, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 6600.1, "z": 6972.0, "px": 3174.4, "py": 3237.9}, {"loc_id": 6200, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2579.2, "z": 1010.7, "px": 2488.2, "py": 2220.5}, {"loc_id": 6201, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2499.3, "z": 881.7, "px": 2474.5, "py": 2198.5}, {"loc_id": 6201, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 2499.3, "z": 881.7, "px": 2474.5, "py": 2198.5}, {"loc_id": 6202, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 1263.4, "z": -5199.0, "px": 2263.6, "py": 1160.7}, {"loc_id": 6203, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -3373.6, "z": 6404.8, "px": 1472.2, "py": 3141.1}, {"loc_id": 6204, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -7612.8, "z": -2504.5, "px": 748.7, "py": 1620.6}, {"loc_id": 6205, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -3430.9, "z": 6501.1, "px": 1462.5, "py": 3157.5}, {"loc_id": 6206, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -2758.0, "z": 7295.1, "px": 1577.3, "py": 3293.0}, {"loc_id": 6206, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -2758.0, "z": 7295.1, "px": 1577.3, "py": 3293.0}, {"loc_id": 6207, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 1174.2, "z": -2455.9, "px": 2248.4, "py": 1628.9}, {"loc_id": 6208, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 5416.3, "z": -25.7, "px": 2972.4, "py": 2043.6}, {"loc_id": 6209, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 6457.8, "z": 7051.0, "px": 3150.1, "py": 3251.4}, {"loc_id": 6210, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 3478.6, "z": 9147.8, "px": 2641.7, "py": 3609.2}, {"loc_id": 6211, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2650.7, "z": -2750.5, "px": 2500.4, "py": 1578.6}, {"loc_id": 6212, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -3846.2, "z": 1350.9, "px": 1391.6, "py": 2278.6}, {"loc_id": 6213, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -6266.8, "z": -624.1, "px": 978.5, "py": 1941.5}, {"loc_id": 6214, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2518.3, "z": 8693.7, "px": 2477.8, "py": 3531.7}, {"loc_id": 6215, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -4530.0, "z": -1233.4, "px": 1274.9, "py": 1837.5}, {"loc_id": 6216, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -5505.9, "z": -2747.8, "px": 1108.3, "py": 1579.0}, {"loc_id": 6216, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -5505.9, "z": -2747.8, "px": 1108.3, "py": 1579.0}, {"loc_id": 6217, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 4235.5, "z": 1333.8, "px": 2770.9, "py": 2275.6}, {"loc_id": 6218, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -4949.5, "z": 2713.7, "px": 1203.3, "py": 2511.1}, {"loc_id": 6219, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 3819.9, "z": -103.8, "px": 2699.9, "py": 2030.3}, {"loc_id": 6220, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -2069.6, "z": -529.4, "px": 1694.8, "py": 1957.6}, {"loc_id": 6221, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -2425.5, "z": 7498.8, "px": 1634.0, "py": 3327.8}, {"loc_id": 6222, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2451.4, "z": 1071.1, "px": 2466.4, "py": 2230.8}, {"loc_id": 6223, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -6008.7, "z": -1744.0, "px": 1022.5, "py": 1750.4}, {"loc_id": 6224, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -365.8, "z": -1287.4, "px": 1985.6, "py": 1828.3}, {"loc_id": 6225, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -6125.2, "z": -1685.1, "px": 1002.6, "py": 1760.4}, {"loc_id": 6226, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -3496.2, "z": 6406.1, "px": 1451.3, "py": 3141.3}, {"loc_id": 6226, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -3496.2, "z": 6406.1, "px": 1451.3, "py": 3141.3}, {"loc_id": 6227, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -4013.9, "z": 4501.8, "px": 1363.0, "py": 2816.3}, {"loc_id": 6228, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -6146.9, "z": -530.7, "px": 998.9, "py": 1957.4}, {"loc_id": 6229, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 5797.6, "z": -455.9, "px": 3037.5, "py": 1970.2}, {"loc_id": 6229, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 5797.6, "z": -455.9, "px": 3037.5, "py": 1970.2}, {"loc_id": 6230, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -2214.2, "z": -534.5, "px": 1670.1, "py": 1956.8}, {"loc_id": 6231, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -9704.2, "z": -587.5, "px": 391.8, "py": 1947.7}, {"loc_id": 6232, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 6101.7, "z": 4740.0, "px": 3089.4, "py": 2857.0}, {"loc_id": 6233, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -3977.0, "z": 1576.5, "px": 1369.3, "py": 2317.1}, {"loc_id": 6234, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -2071.0, "z": -230.4, "px": 1694.5, "py": 2008.7}, {"loc_id": 6234, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -2071.0, "z": -230.4, "px": 1694.5, "py": 2008.7}, {"loc_id": 6235, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -247.1, "z": -1229.1, "px": 2005.8, "py": 1838.2}, {"loc_id": 6236, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 5881.3, "z": 4416.7, "px": 3051.7, "py": 2801.8}, {"loc_id": 6236, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 5881.3, "z": 4416.7, "px": 3051.7, "py": 2801.8}, {"loc_id": 6237, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 3649.2, "z": -766.4, "px": 2670.8, "py": 1917.2}, {"loc_id": 6238, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -4522.8, "z": -3948.4, "px": 1276.1, "py": 1374.1}, {"loc_id": 6239, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -3224.8, "z": 2672.8, "px": 1497.6, "py": 2504.2}, {"loc_id": 6240, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 5631.6, "z": 90.4, "px": 3009.1, "py": 2063.4}, {"loc_id": 6241, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 1199.8, "z": 4804.7, "px": 2252.8, "py": 2868.0}, {"loc_id": 6241, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 1199.8, "z": 4804.7, "px": 2252.8, "py": 2868.0}, {"loc_id": 6242, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -4041.0, "z": 1688.9, "px": 1358.3, "py": 2336.2}, {"loc_id": 6242, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -4041.0, "z": 1688.9, "px": 1358.3, "py": 2336.2}, {"loc_id": 6243, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 3027.0, "z": 9425.8, "px": 2564.6, "py": 3656.7}, {"loc_id": 6243, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 3027.0, "z": 9425.8, "px": 2564.6, "py": 3656.7}, {"loc_id": 6244, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 2632.3, "z": 8691.8, "px": 2497.2, "py": 3531.4}, {"loc_id": 6245, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -4352.0, "z": -4117.1, "px": 1305.3, "py": 1345.3}, {"loc_id": 6246, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -4278.6, "z": -1263.2, "px": 1317.8, "py": 1832.4}, {"loc_id": 6246, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -4278.6, "z": -1263.2, "px": 1317.8, "py": 1832.4}, {"loc_id": 6247, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 3189.8, "z": 521.1, "px": 2592.4, "py": 2136.9}, {"loc_id": 6247, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 3189.8, "z": 521.1, "px": 2592.4, "py": 2136.9}, {"loc_id": 6248, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -965.9, "z": 8648.9, "px": 1883.2, "py": 3524.1}, {"loc_id": 6249, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -85.5, "z": -1161.6, "px": 2033.4, "py": 1849.8}, {"loc_id": 6249, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -85.5, "z": -1161.6, "px": 2033.4, "py": 1849.8}, {"loc_id": 6250, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 1026.4, "z": -2371.4, "px": 2223.2, "py": 1643.3}, {"loc_id": 6251, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 6722.7, "z": 6546.2, "px": 3195.3, "py": 3165.2}, {"loc_id": 6251, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 6722.7, "z": 6546.2, "px": 3195.3, "py": 3165.2}, {"loc_id": 6252, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -3409.6, "z": -2154.3, "px": 1466.1, "py": 1680.3}, {"loc_id": 6253, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -9852.5, "z": -694.0, "px": 366.5, "py": 1929.6}, {"loc_id": 6254, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": 1037.5, "z": 255.4, "px": 2225.1, "py": 2091.6}, {"loc_id": 6254, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": 1037.5, "z": 255.4, "px": 2225.1, "py": 2091.6}, {"loc_id": 6255, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -3722.0, "z": 6008.2, "px": 1412.8, "py": 3073.4}, {"loc_id": 6256, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -6845.8, "z": -2415.8, "px": 879.7, "py": 1635.7}, {"loc_id": 6256, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -6845.8, "z": -2415.8, "px": 879.7, "py": 1635.7}, {"loc_id": 6257, "loc_name": "DrakeNest01", "item": "Pickable: DragonEgg", "count": 1, "x": -2171.9, "z": -270.4, "px": 1677.3, "py": 2001.9}, {"loc_id": 6257, "loc_name": "DrakeNest01", "item": "SpawnOnce: Hatchling", "count": 1, "x": -2171.9, "z": -270.4, "px": 1677.3, "py": 2001.9}, {"loc_id": 6358, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": 4116.3, "z": 5632.7, "px": 2750.5, "py": 3009.3}, {"loc_id": 6360, "loc_name": "AbandonedLogCabin02", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 2349.5, "z": 8690.8, "px": 2449.0, "py": 3531.2}, {"loc_id": 6360, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2349.5, "z": 8690.8, "px": 2449.0, "py": 3531.2}, {"loc_id": 6361, "loc_name": "AbandonedLogCabin02", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 2442.5, "z": 8825.3, "px": 2464.9, "py": 3554.2}, {"loc_id": 6361, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2442.5, "z": 8825.3, "px": 2464.9, "py": 3554.2}, {"loc_id": 6362, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": 5773.3, "z": -441.2, "px": 3033.3, "py": 1972.7}, {"loc_id": 6362, "loc_name": "AbandonedLogCabin02", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 5773.3, "z": -441.2, "px": 3033.3, "py": 1972.7}, {"loc_id": 6363, "loc_name": "AbandonedLogCabin02", "item": "SpawnOnce: StoneGolem", "count": 1, "x": -6838.7, "z": -2231.7, "px": 880.9, "py": 1667.1}, {"loc_id": 6364, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": 5777.5, "z": 4658.0, "px": 3034.0, "py": 2843.0}, {"loc_id": 6365, "loc_name": "AbandonedLogCabin02", "item": "SpawnOnce: StoneGolem", "count": 1, "x": -3455.9, "z": 6344.3, "px": 1458.2, "py": 3130.8}, {"loc_id": 6365, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": -3455.9, "z": 6344.3, "px": 1458.2, "py": 3130.8}, {"loc_id": 6366, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": -2000.8, "z": -238.3, "px": 1706.5, "py": 2007.3}, {"loc_id": 6367, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": 3251.0, "z": -1851.5, "px": 2602.8, "py": 1732.0}, {"loc_id": 6368, "loc_name": "AbandonedLogCabin02", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 1470.8, "z": 7024.6, "px": 2299.0, "py": 3246.9}, {"loc_id": 6371, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2374.1, "z": -2517.0, "px": 2453.2, "py": 1618.4}, {"loc_id": 6372, "loc_name": "AbandonedLogCabin02", "item": "SpawnOnce: StoneGolem", "count": 1, "x": -4488.8, "z": -1205.3, "px": 1281.9, "py": 1842.3}, {"loc_id": 6372, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": -4488.8, "z": -1205.3, "px": 1281.9, "py": 1842.3}, {"loc_id": 6373, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": -4345.6, "z": -3923.1, "px": 1306.4, "py": 1378.5}, {"loc_id": 6374, "loc_name": "AbandonedLogCabin02", "item": "SpawnOnce: StoneGolem", "count": 1, "x": -2452.7, "z": 7442.3, "px": 1629.4, "py": 3318.2}, {"loc_id": 6374, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": -2452.7, "z": 7442.3, "px": 1629.4, "py": 3318.2}, {"loc_id": 6375, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": -2679.5, "z": 7312.2, "px": 1590.7, "py": 3295.9}, {"loc_id": 6376, "loc_name": "AbandonedLogCabin02", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 5583.7, "z": 58.7, "px": 3001.0, "py": 2058.0}, {"loc_id": 6376, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": 5583.7, "z": 58.7, "px": 3001.0, "py": 2058.0}, {"loc_id": 6377, "loc_name": "AbandonedLogCabin02", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 4274.6, "z": -1746.4, "px": 2777.5, "py": 1749.9}, {"loc_id": 6377, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": 4274.6, "z": -1746.4, "px": 2777.5, "py": 1749.9}, {"loc_id": 6378, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2514.4, "z": 954.8, "px": 2477.1, "py": 2211.0}, {"loc_id": 6379, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": -6290.5, "z": -708.5, "px": 974.4, "py": 1927.1}, {"loc_id": 6380, "loc_name": "AbandonedLogCabin02", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 1361.3, "z": 6732.4, "px": 2280.3, "py": 3197.0}, {"loc_id": 6380, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": 1361.3, "z": 6732.4, "px": 2280.3, "py": 3197.0}, {"loc_id": 6381, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": -9923.9, "z": -319.1, "px": 354.3, "py": 1993.5}, {"loc_id": 6382, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": -73.9, "z": -1482.6, "px": 2035.4, "py": 1795.0}, {"loc_id": 6384, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": 3473.1, "z": 9359.4, "px": 2640.7, "py": 3645.3}, {"loc_id": 6385, "loc_name": "AbandonedLogCabin02", "item": "Container: TreasureChest_mountains", "count": 1, "x": -1941.1, "z": -618.6, "px": 1716.7, "py": 1942.4}, {"loc_id": 6386, "loc_name": "AbandonedLogCabin02", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 561.3, "z": 3574.0, "px": 2143.8, "py": 2658.0}, {"loc_id": 6387, "loc_name": "AbandonedLogCabin02", "item": "SpawnOnce: StoneGolem", "count": 1, "x": -6011.9, "z": -1791.9, "px": 1022.0, "py": 1742.2}, {"loc_id": 6388, "loc_name": "AbandonedLogCabin02", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 7285.5, "z": -532.2, "px": 3291.4, "py": 1957.2}, {"loc_id": 6389, "loc_name": "AbandonedLogCabin02", "item": "SpawnOnce: StoneGolem", "count": 1, "x": -6672.6, "z": -2195.0, "px": 909.2, "py": 1673.4}, {"loc_id": 6391, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": 4501.1, "z": -5633.7, "px": 2816.2, "py": 1086.5}, {"loc_id": 6392, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": -3144.3, "z": 2629.9, "px": 1511.4, "py": 2496.8}, {"loc_id": 6392, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 1, "x": -3144.3, "z": 2629.9, "px": 1511.4, "py": 2496.8}, {"loc_id": 6393, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2614.9, "z": 682.9, "px": 2494.3, "py": 2164.5}, {"loc_id": 6393, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 1, "x": 2614.9, "z": 682.9, "px": 2494.3, "py": 2164.5}, {"loc_id": 6394, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": 1223.7, "z": -5193.8, "px": 2256.8, "py": 1161.6}, {"loc_id": 6394, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 1223.7, "z": -5193.8, "px": 2256.8, "py": 1161.6}, {"loc_id": 6395, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": -9658.0, "z": -619.0, "px": 399.7, "py": 1942.4}, {"loc_id": 6395, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 1, "x": -9658.0, "z": -619.0, "px": 399.7, "py": 1942.4}, {"loc_id": 6396, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": -6155.2, "z": -436.1, "px": 997.5, "py": 1973.6}, {"loc_id": 6396, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 1, "x": -6155.2, "z": -436.1, "px": 997.5, "py": 1973.6}, {"loc_id": 6397, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": -8691.0, "z": -59.6, "px": 564.7, "py": 2037.8}, {"loc_id": 6397, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 1, "x": -8691.0, "z": -59.6, "px": 564.7, "py": 2037.8}, {"loc_id": 6398, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": -2102.7, "z": -404.0, "px": 1689.1, "py": 1979.1}, {"loc_id": 6398, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 1, "x": -2102.7, "z": -404.0, "px": 1689.1, "py": 1979.1}, {"loc_id": 6398, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: StoneGolem", "count": 1, "x": -2102.7, "z": -404.0, "px": 1689.1, "py": 1979.1}, {"loc_id": 6399, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": 5523.2, "z": -456.4, "px": 2990.6, "py": 1970.1}, {"loc_id": 6400, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": 4651.6, "z": -5626.7, "px": 2841.9, "py": 1087.7}, {"loc_id": 6400, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 1, "x": 4651.6, "z": -5626.7, "px": 2841.9, "py": 1087.7}, {"loc_id": 6400, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 4651.6, "z": -5626.7, "px": 2841.9, "py": 1087.7}, {"loc_id": 6401, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": 1017.3, "z": -2510.1, "px": 2221.6, "py": 1619.6}, {"loc_id": 6401, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 1, "x": 1017.3, "z": -2510.1, "px": 2221.6, "py": 1619.6}, {"loc_id": 6402, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": 3635.2, "z": -117.0, "px": 2668.4, "py": 2028.0}, {"loc_id": 6402, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 1, "x": 3635.2, "z": -117.0, "px": 2668.4, "py": 2028.0}, {"loc_id": 6403, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": -3831.4, "z": 4658.4, "px": 1394.1, "py": 2843.0}, {"loc_id": 6403, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 1, "x": -3831.4, "z": 4658.4, "px": 1394.1, "py": 2843.0}, {"loc_id": 6404, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2441.7, "z": -2740.5, "px": 2464.7, "py": 1580.3}, {"loc_id": 6404, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 1, "x": 2441.7, "z": -2740.5, "px": 2464.7, "py": 1580.3}, {"loc_id": 6404, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 2441.7, "z": -2740.5, "px": 2464.7, "py": 1580.3}, {"loc_id": 6405, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": 7508.2, "z": 4037.7, "px": 3329.4, "py": 2737.1}, {"loc_id": 6405, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 1, "x": 7508.2, "z": 4037.7, "px": 3329.4, "py": 2737.1}, {"loc_id": 6406, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": -7287.5, "z": -1131.6, "px": 804.3, "py": 1854.9}, {"loc_id": 6406, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 1, "x": -7287.5, "z": -1131.6, "px": 804.3, "py": 1854.9}, {"loc_id": 6407, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": -8572.6, "z": -1145.9, "px": 584.9, "py": 1852.4}, {"loc_id": 6407, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 1, "x": -8572.6, "z": -1145.9, "px": 584.9, "py": 1852.4}, {"loc_id": 6408, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2954.5, "z": 660.1, "px": 2552.2, "py": 2160.7}, {"loc_id": 6409, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": 519.4, "z": 4342.9, "px": 2136.6, "py": 2789.2}, {"loc_id": 6409, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 519.4, "z": 4342.9, "px": 2136.6, "py": 2789.2}, {"loc_id": 6410, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": 4222.2, "z": -1865.1, "px": 2768.6, "py": 1729.7}, {"loc_id": 6411, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": -4469.9, "z": -4138.8, "px": 1285.1, "py": 1341.6}, {"loc_id": 6411, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 1, "x": -4469.9, "z": -4138.8, "px": 1285.1, "py": 1341.6}, {"loc_id": 6412, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": 4294.6, "z": 1425.4, "px": 2780.9, "py": 2291.3}, {"loc_id": 6412, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 1, "x": 4294.6, "z": 1425.4, "px": 2780.9, "py": 2291.3}, {"loc_id": 6413, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": -9910.2, "z": -443.5, "px": 356.7, "py": 1972.3}, {"loc_id": 6413, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 1, "x": -9910.2, "z": -443.5, "px": 356.7, "py": 1972.3}, {"loc_id": 6414, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": 1011.0, "z": 199.7, "px": 2220.5, "py": 2082.1}, {"loc_id": 6415, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": -3384.0, "z": -2112.1, "px": 1470.5, "py": 1687.5}, {"loc_id": 6416, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": 1276.1, "z": 4928.1, "px": 2265.8, "py": 2889.1}, {"loc_id": 6417, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": 4395.9, "z": -5762.7, "px": 2798.2, "py": 1064.5}, {"loc_id": 6417, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 1, "x": 4395.9, "z": -5762.7, "px": 2798.2, "py": 1064.5}, {"loc_id": 6418, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": 9877.1, "z": -1197.4, "px": 3733.7, "py": 1843.6}, {"loc_id": 6419, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": 4434.5, "z": -2069.4, "px": 2804.8, "py": 1694.8}, {"loc_id": 6420, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": 3271.2, "z": 9407.3, "px": 2606.3, "py": 3653.5}, {"loc_id": 6420, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 3271.2, "z": 9407.3, "px": 2606.3, "py": 3653.5}, {"loc_id": 6421, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": -4992.0, "z": 2575.2, "px": 1196.0, "py": 2487.5}, {"loc_id": 6421, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: StoneGolem", "count": 1, "x": -4992.0, "z": 2575.2, "px": 1196.0, "py": 2487.5}, {"loc_id": 6422, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2069.0, "z": -1467.4, "px": 2401.1, "py": 1797.6}, {"loc_id": 6422, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 1, "x": 2069.0, "z": -1467.4, "px": 2401.1, "py": 1797.6}, {"loc_id": 6423, "loc_name": "AbandonedLogCabin03", "item": "Container: TreasureChest_mountains", "count": 1, "x": -5098.9, "z": 5426.5, "px": 1177.8, "py": 2974.1}, {"loc_id": 6423, "loc_name": "AbandonedLogCabin03", "item": "SpawnOnce: Skeleton", "count": 1, "x": -5098.9, "z": 5426.5, "px": 1177.8, "py": 2974.1}, {"loc_id": 6424, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 5396.5, "z": 5996.7, "px": 2969.0, "py": 3071.4}, {"loc_id": 6424, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 5396.5, "z": 5996.7, "px": 2969.0, "py": 3071.4}, {"loc_id": 6425, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 512.5, "z": 3727.7, "px": 2135.5, "py": 2684.2}, {"loc_id": 6425, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 512.5, "z": 3727.7, "px": 2135.5, "py": 2684.2}, {"loc_id": 6426, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2737.1, "z": 719.2, "px": 2515.1, "py": 2170.7}, {"loc_id": 6426, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 2737.1, "z": 719.2, "px": 2515.1, "py": 2170.7}, {"loc_id": 6427, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 3566.8, "z": -840.9, "px": 2656.7, "py": 1904.5}, {"loc_id": 6427, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 3566.8, "z": -840.9, "px": 2656.7, "py": 1904.5}, {"loc_id": 6428, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -3952.1, "z": 4523.7, "px": 1373.5, "py": 2820.0}, {"loc_id": 6428, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": -3952.1, "z": 4523.7, "px": 1373.5, "py": 2820.0}, {"loc_id": 6429, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -3905.0, "z": 1537.0, "px": 1381.5, "py": 2310.3}, {"loc_id": 6429, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": -3905.0, "z": 1537.0, "px": 1381.5, "py": 2310.3}, {"loc_id": 6430, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 7094.7, "z": -303.6, "px": 3258.8, "py": 1996.2}, {"loc_id": 6431, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -6968.9, "z": -2543.1, "px": 858.6, "py": 1614.0}, {"loc_id": 6432, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 1396.8, "z": 6597.7, "px": 2286.4, "py": 3174.0}, {"loc_id": 6432, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 1396.8, "z": 6597.7, "px": 2286.4, "py": 3174.0}, {"loc_id": 6433, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -6018.9, "z": -373.8, "px": 1020.8, "py": 1984.2}, {"loc_id": 6433, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": -6018.9, "z": -373.8, "px": 1020.8, "py": 1984.2}, {"loc_id": 6434, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -2389.2, "z": 1861.0, "px": 1640.2, "py": 2365.6}, {"loc_id": 6434, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: StoneGolem", "count": 1, "x": -2389.2, "z": 1861.0, "px": 1640.2, "py": 2365.6}, {"loc_id": 6435, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 6608.2, "z": 7059.8, "px": 3175.8, "py": 3252.9}, {"loc_id": 6435, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 6608.2, "z": 7059.8, "px": 3175.8, "py": 3252.9}, {"loc_id": 6436, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 1590.2, "z": 6723.4, "px": 2319.4, "py": 3195.5}, {"loc_id": 6437, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -758.4, "z": 249.6, "px": 1918.6, "py": 2090.6}, {"loc_id": 6437, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": -758.4, "z": 249.6, "px": 1918.6, "py": 2090.6}, {"loc_id": 6438, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 6452.9, "z": 7227.4, "px": 3149.3, "py": 3281.5}, {"loc_id": 6438, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 6452.9, "z": 7227.4, "px": 3149.3, "py": 3281.5}, {"loc_id": 6439, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 7158.9, "z": -404.7, "px": 3269.8, "py": 1978.9}, {"loc_id": 6439, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 7158.9, "z": -404.7, "px": 3269.8, "py": 1978.9}, {"loc_id": 6440, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -9874.7, "z": -570.6, "px": 362.7, "py": 1950.6}, {"loc_id": 6441, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -2289.6, "z": -430.8, "px": 1657.2, "py": 1974.5}, {"loc_id": 6441, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": -2289.6, "z": -430.8, "px": 1657.2, "py": 1974.5}, {"loc_id": 6442, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 1365.1, "z": 8404.9, "px": 2281.0, "py": 3482.4}, {"loc_id": 6443, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 3026.3, "z": 9482.8, "px": 2564.5, "py": 3666.4}, {"loc_id": 6444, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 5501.3, "z": 1739.1, "px": 2986.9, "py": 2344.8}, {"loc_id": 6444, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 5501.3, "z": 1739.1, "px": 2986.9, "py": 2344.8}, {"loc_id": 6445, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 6217.9, "z": 4727.3, "px": 3109.2, "py": 2854.8}, {"loc_id": 6445, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 6217.9, "z": 4727.3, "px": 3109.2, "py": 2854.8}, {"loc_id": 6446, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2005.3, "z": 4685.4, "px": 2390.2, "py": 2847.6}, {"loc_id": 6446, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 2005.3, "z": 4685.4, "px": 2390.2, "py": 2847.6}, {"loc_id": 6447, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 1164.5, "z": 247.9, "px": 2246.7, "py": 2090.3}, {"loc_id": 6447, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 1164.5, "z": 247.9, "px": 2246.7, "py": 2090.3}, {"loc_id": 6448, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -5226.9, "z": 5231.5, "px": 1155.9, "py": 2940.8}, {"loc_id": 6448, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": -5226.9, "z": 5231.5, "px": 1155.9, "py": 2940.8}, {"loc_id": 6449, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 4406.7, "z": -1865.4, "px": 2800.1, "py": 1729.6}, {"loc_id": 6450, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 8494.0, "z": -3858.6, "px": 3497.6, "py": 1389.5}, {"loc_id": 6450, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 8494.0, "z": -3858.6, "px": 3497.6, "py": 1389.5}, {"loc_id": 6451, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 1604.6, "z": 6855.8, "px": 2321.9, "py": 3218.1}, {"loc_id": 6451, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 1604.6, "z": 6855.8, "px": 2321.9, "py": 3218.1}, {"loc_id": 6452, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 4685.7, "z": -5394.4, "px": 2847.7, "py": 1127.4}, {"loc_id": 6453, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -15.0, "z": -1299.1, "px": 2045.4, "py": 1826.3}, {"loc_id": 6453, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": -15.0, "z": -1299.1, "px": 2045.4, "py": 1826.3}, {"loc_id": 6454, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -6604.4, "z": -1868.7, "px": 920.8, "py": 1729.1}, {"loc_id": 6454, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": -6604.4, "z": -1868.7, "px": 920.8, "py": 1729.1}, {"loc_id": 6455, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2480.8, "z": 695.1, "px": 2471.4, "py": 2166.6}, {"loc_id": 6455, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 2480.8, "z": 695.1, "px": 2471.4, "py": 2166.6}, {"loc_id": 6456, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 1194.7, "z": 389.0, "px": 2251.9, "py": 2114.4}, {"loc_id": 6457, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 5370.1, "z": 49.8, "px": 2964.5, "py": 2056.5}, {"loc_id": 6457, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 5370.1, "z": 49.8, "px": 2964.5, "py": 2056.5}, {"loc_id": 6458, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2384.7, "z": 780.6, "px": 2455.0, "py": 2181.2}, {"loc_id": 6459, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 6545.4, "z": 6740.9, "px": 3165.1, "py": 3198.4}, {"loc_id": 6460, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 3123.1, "z": -2114.7, "px": 2581.0, "py": 1687.1}, {"loc_id": 6461, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 1345.4, "z": 6959.4, "px": 2277.6, "py": 3235.7}, {"loc_id": 6461, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 1345.4, "z": 6959.4, "px": 2277.6, "py": 3235.7}, {"loc_id": 6462, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 3119.7, "z": -1912.5, "px": 2580.4, "py": 1721.6}, {"loc_id": 6462, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 3119.7, "z": -1912.5, "px": 2580.4, "py": 1721.6}, {"loc_id": 6462, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 3119.7, "z": -1912.5, "px": 2580.4, "py": 1721.6}, {"loc_id": 6463, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -3526.3, "z": -2178.4, "px": 1446.2, "py": 1676.2}, {"loc_id": 6464, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 3284.0, "z": 374.1, "px": 2608.5, "py": 2111.8}, {"loc_id": 6464, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 3284.0, "z": 374.1, "px": 2608.5, "py": 2111.8}, {"loc_id": 6465, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -2062.2, "z": -588.1, "px": 1696.1, "py": 1947.6}, {"loc_id": 6465, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": -2062.2, "z": -588.1, "px": 1696.1, "py": 1947.6}, {"loc_id": 6466, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -3781.1, "z": 1482.9, "px": 1402.7, "py": 2301.1}, {"loc_id": 6467, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 1205.2, "z": -5046.2, "px": 2253.7, "py": 1186.8}, {"loc_id": 6467, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 1205.2, "z": -5046.2, "px": 2253.7, "py": 1186.8}, {"loc_id": 6467, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 1205.2, "z": -5046.2, "px": 2253.7, "py": 1186.8}, {"loc_id": 6468, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 5676.4, "z": -339.8, "px": 3016.8, "py": 1990.0}, {"loc_id": 6468, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 5676.4, "z": -339.8, "px": 3016.8, "py": 1990.0}, {"loc_id": 6468, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 5676.4, "z": -339.8, "px": 3016.8, "py": 1990.0}, {"loc_id": 6469, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2517.3, "z": 582.4, "px": 2477.6, "py": 2147.4}, {"loc_id": 6469, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: Skeleton", "count": 1, "x": 2517.3, "z": 582.4, "px": 2477.6, "py": 2147.4}, {"loc_id": 6470, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": 7110.0, "z": -565.9, "px": 3261.4, "py": 1951.4}, {"loc_id": 6470, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 7110.0, "z": -565.9, "px": 3261.4, "py": 1951.4}, {"loc_id": 6471, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -6891.5, "z": 6780.8, "px": 871.9, "py": 3205.3}, {"loc_id": 6472, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -4602.4, "z": -183.1, "px": 1262.5, "py": 2016.8}, {"loc_id": 6472, "loc_name": "AbandonedLogCabin04", "item": "SpawnOnce: StoneGolem", "count": 1, "x": -4602.4, "z": -183.1, "px": 1262.5, "py": 2016.8}, {"loc_id": 6473, "loc_name": "AbandonedLogCabin04", "item": "Container: TreasureChest_mountains", "count": 1, "x": -5573.2, "z": -2736.7, "px": 1096.8, "py": 1580.9}, {"loc_id": 6475, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": -6772.3, "z": 6765.4, "px": 892.2, "py": 3202.6}, {"loc_id": 6479, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": -4078.1, "z": 4454.5, "px": 1352.0, "py": 2808.2}, {"loc_id": 6480, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": -6611.9, "z": -2184.5, "px": 919.6, "py": 1675.2}, {"loc_id": 6482, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": -7258.1, "z": -1159.5, "px": 809.3, "py": 1850.1}, {"loc_id": 6483, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 6507.2, "z": 6822.6, "px": 3158.6, "py": 3212.4}, {"loc_id": 6484, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 1237.6, "z": -5107.2, "px": 2259.2, "py": 1176.4}, {"loc_id": 6485, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 1976.1, "z": 4712.5, "px": 2385.3, "py": 2852.3}, {"loc_id": 6488, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": -9916.2, "z": -388.0, "px": 355.6, "py": 1981.8}, {"loc_id": 6490, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 570.7, "z": 4360.4, "px": 2145.4, "py": 2792.2}, {"loc_id": 6497, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": -3928.3, "z": 5224.6, "px": 1377.6, "py": 2939.7}, {"loc_id": 6498, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 6450.4, "z": 7125.5, "px": 3148.9, "py": 3264.1}, {"loc_id": 6501, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 1317.4, "z": 8692.9, "px": 2272.8, "py": 3531.6}, {"loc_id": 6506, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": -4416.4, "z": -1159.3, "px": 1294.3, "py": 1850.1}, {"loc_id": 6508, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 4229.3, "z": -1968.5, "px": 2769.8, "py": 1712.0}, {"loc_id": 6511, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": -6660.6, "z": -2134.3, "px": 911.3, "py": 1683.7}, {"loc_id": 6512, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": -3571.3, "z": 1413.1, "px": 1438.5, "py": 2289.2}, {"loc_id": 6514, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": -3975.8, "z": 1511.6, "px": 1369.5, "py": 2306.0}, {"loc_id": 6519, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 3419.3, "z": 9256.1, "px": 2631.6, "py": 3627.7}, {"loc_id": 6521, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 2607.7, "z": -4884.7, "px": 2493.0, "py": 1214.3}, {"loc_id": 6524, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 2666.9, "z": 820.0, "px": 2503.2, "py": 2187.9}, {"loc_id": 6526, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 6279.0, "z": 4726.1, "px": 3119.6, "py": 2854.6}, {"loc_id": 6527, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": -3905.8, "z": 5092.0, "px": 1381.4, "py": 2917.0}, {"loc_id": 6528, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 8388.6, "z": -3858.5, "px": 3479.7, "py": 1389.5}, {"loc_id": 6529, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": -4872.1, "z": 2693.5, "px": 1216.5, "py": 2507.7}, {"loc_id": 6533, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": -9702.8, "z": -751.4, "px": 392.1, "py": 1919.8}, {"loc_id": 6535, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 2703.8, "z": 567.5, "px": 2509.4, "py": 2144.9}, {"loc_id": 6537, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 7160.3, "z": -327.0, "px": 3270.0, "py": 1992.2}, {"loc_id": 6539, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 1097.6, "z": 256.3, "px": 2235.3, "py": 2091.7}, {"loc_id": 6540, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 3263.9, "z": 9294.4, "px": 2605.0, "py": 3634.2}, {"loc_id": 6541, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 3402.4, "z": 296.7, "px": 2628.7, "py": 2098.6}, {"loc_id": 6542, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 7206.9, "z": -495.6, "px": 3278.0, "py": 1963.4}, {"loc_id": 6544, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": -5691.8, "z": -2774.3, "px": 1076.6, "py": 1574.5}, {"loc_id": 6545, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 5655.4, "z": 19.8, "px": 3013.2, "py": 2051.4}, {"loc_id": 6550, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 2329.8, "z": -2573.6, "px": 2445.6, "py": 1608.8}, {"loc_id": 6552, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 1371.7, "z": 8445.7, "px": 2282.1, "py": 3489.4}, {"loc_id": 6553, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 6783.1, "z": 6605.2, "px": 3205.6, "py": 3175.3}, {"loc_id": 6554, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 6531.8, "z": 6599.2, "px": 3162.8, "py": 3174.3}, {"loc_id": 6555, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 2521.5, "z": 775.5, "px": 2478.3, "py": 2180.4}, {"loc_id": 6562, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 2695.8, "z": -2802.8, "px": 2508.1, "py": 1569.7}, {"loc_id": 6563, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": -112.9, "z": -1510.9, "px": 2028.7, "py": 1790.1}, {"loc_id": 6564, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": -2238.8, "z": -335.8, "px": 1665.9, "py": 1990.7}, {"loc_id": 6566, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 6544.3, "z": 6993.6, "px": 3164.9, "py": 3241.6}, {"loc_id": 6567, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 5851.5, "z": 4625.9, "px": 3046.7, "py": 2837.5}, {"loc_id": 6569, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 6456.2, "z": 6774.3, "px": 3149.9, "py": 3204.1}, {"loc_id": 6571, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": 3825.1, "z": -73.6, "px": 2700.8, "py": 2035.4}, {"loc_id": 6573, "loc_name": "MountainGrave01", "item": "Pickable: BoneFragments", "count": 1, "x": -3202.2, "z": 2795.5, "px": 1501.5, "py": 2525.1}, {"loc_id": 6624, "loc_name": "MountainWell1", "item": "Container: TreasureChest_mountains", "count": 1, "x": 5711.3, "z": -439.9, "px": 3022.7, "py": 1972.9}, {"loc_id": 6625, "loc_name": "MountainWell1", "item": "Container: TreasureChest_mountains", "count": 1, "x": -3453.7, "z": 6144.4, "px": 1458.6, "py": 3096.6}, {"loc_id": 6626, "loc_name": "MountainWell1", "item": "Container: TreasureChest_mountains", "count": 1, "x": 4365.6, "z": -1969.1, "px": 2793.1, "py": 1711.9}, {"loc_id": 6627, "loc_name": "MountainWell1", "item": "Container: TreasureChest_mountains", "count": 1, "x": -5059.8, "z": 2576.8, "px": 1184.5, "py": 2487.8}, {"loc_id": 6628, "loc_name": "MountainWell1", "item": "Container: TreasureChest_mountains", "count": 1, "x": -3975.5, "z": 4467.1, "px": 1369.5, "py": 2810.4}, {"loc_id": 6629, "loc_name": "MountainWell1", "item": "Container: TreasureChest_mountains", "count": 1, "x": 6576.6, "z": 6706.8, "px": 3170.4, "py": 3192.6}, {"loc_id": 6630, "loc_name": "MountainWell1", "item": "Container: TreasureChest_mountains", "count": 1, "x": 9663.7, "z": -1147.5, "px": 3697.3, "py": 1852.2}, {"loc_id": 6631, "loc_name": "MountainWell1", "item": "Container: TreasureChest_mountains", "count": 1, "x": 448.8, "z": 3662.6, "px": 2124.6, "py": 2673.1}, {"loc_id": 6632, "loc_name": "MountainWell1", "item": "Container: TreasureChest_mountains", "count": 1, "x": -8526.6, "z": -1152.7, "px": 592.8, "py": 1851.3}, {"loc_id": 6633, "loc_name": "MountainWell1", "item": "Container: TreasureChest_mountains", "count": 1, "x": -4424.1, "z": -1218.1, "px": 1293.0, "py": 1840.1}, {"loc_id": 6636, "loc_name": "MountainWell1", "item": "Container: TreasureChest_mountains", "count": 1, "x": -9974.1, "z": -440.6, "px": 345.8, "py": 1972.8}, {"loc_id": 6637, "loc_name": "MountainWell1", "item": "Container: TreasureChest_mountains", "count": 1, "x": -6708.8, "z": -2302.0, "px": 903.0, "py": 1655.1}, {"loc_id": 6638, "loc_name": "MountainWell1", "item": "Container: TreasureChest_mountains", "count": 1, "x": -7109.1, "z": -2491.1, "px": 834.7, "py": 1622.9}, {"loc_id": 6640, "loc_name": "MountainWell1", "item": "Container: TreasureChest_mountains", "count": 1, "x": 3145.4, "z": -2051.8, "px": 2584.8, "py": 1697.8}, {"loc_id": 6641, "loc_name": "MountainWell1", "item": "Container: TreasureChest_mountains", "count": 1, "x": 943.7, "z": -2423.8, "px": 2209.1, "py": 1634.3}, {"loc_id": 6642, "loc_name": "MountainWell1", "item": "Container: TreasureChest_mountains", "count": 1, "x": 1663.6, "z": 6647.6, "px": 2331.9, "py": 3182.5}, {"loc_id": 6643, "loc_name": "MountainWell1", "item": "Container: TreasureChest_mountains", "count": 1, "x": 2449.5, "z": 8890.9, "px": 2466.0, "py": 3565.4}, {"loc_id": 6644, "loc_name": "MountainWell1", "item": "Container: TreasureChest_mountains", "count": 1, "x": -2440.9, "z": 1868.5, "px": 1631.4, "py": 2366.9}, {"loc_id": 6645, "loc_name": "MountainWell1", "item": "Container: TreasureChest_mountains", "count": 1, "x": 4688.7, "z": -5511.8, "px": 2848.2, "py": 1107.3}, {"loc_id": 6646, "loc_name": "MountainWell1", "item": "Container: TreasureChest_mountains", "count": 1, "x": -7104.4, "z": 2231.3, "px": 835.5, "py": 2428.8}, {"loc_id": 6648, "loc_name": "MountainWell1", "item": "Container: TreasureChest_mountains", "count": 1, "x": -1987.1, "z": -205.6, "px": 1708.9, "py": 2012.9}, {"loc_id": 6649, "loc_name": "ShipWreck01", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -8454.7, "z": -717.9, "px": 605.1, "py": 1925.5}, {"loc_id": 6650, "loc_name": "ShipWreck01", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -7367.4, "z": -4626.9, "px": 790.6, "py": 1258.3}, {"loc_id": 6651, "loc_name": "ShipWreck01", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 16.2, "z": -5741.4, "px": 2050.8, "py": 1068.1}, {"loc_id": 6652, "loc_name": "ShipWreck01", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -6004.9, "z": 1972.7, "px": 1023.2, "py": 2384.7}, {"loc_id": 6653, "loc_name": "ShipWreck01", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 2548.7, "z": -2352.5, "px": 2483.0, "py": 1646.5}, {"loc_id": 6654, "loc_name": "ShipWreck01", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -2822.1, "z": -5256.9, "px": 1566.4, "py": 1150.8}, {"loc_id": 6657, "loc_name": "ShipWreck01", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -4295.1, "z": 3763.9, "px": 1315.0, "py": 2690.4}, {"loc_id": 6658, "loc_name": "ShipWreck01", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -4809.2, "z": -850.0, "px": 1227.2, "py": 1902.9}, {"loc_id": 6659, "loc_name": "ShipWreck01", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 7953.2, "z": -2999.0, "px": 3405.3, "py": 1536.2}, {"loc_id": 6660, "loc_name": "ShipWreck01", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -4088.7, "z": -6212.6, "px": 1350.2, "py": 987.7}, {"loc_id": 6661, "loc_name": "ShipWreck01", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -4785.0, "z": -5243.9, "px": 1231.4, "py": 1153.0}, {"loc_id": 6662, "loc_name": "ShipWreck01", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 4804.0, "z": 1132.1, "px": 2867.9, "py": 2241.2}, {"loc_id": 6664, "loc_name": "ShipWreck01", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -7423.7, "z": 4174.9, "px": 781.0, "py": 2760.5}, {"loc_id": 6665, "loc_name": "ShipWreck01", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 2230.5, "z": 5908.5, "px": 2428.7, "py": 3056.4}, {"loc_id": 6666, "loc_name": "ShipWreck01", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 4149.4, "z": 3981.6, "px": 2756.2, "py": 2727.5}, {"loc_id": 6667, "loc_name": "ShipWreck01", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -9520.7, "z": 2182.8, "px": 423.1, "py": 2420.5}, {"loc_id": 6668, "loc_name": "ShipWreck01", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 2949.2, "z": 1010.7, "px": 2551.3, "py": 2220.5}, {"loc_id": 6669, "loc_name": "ShipWreck01", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 1855.8, "z": -4308.1, "px": 2364.7, "py": 1312.8}, {"loc_id": 6670, "loc_name": "ShipWreck01", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 3402.7, "z": -1491.8, "px": 2628.7, "py": 1793.4}, {"loc_id": 6673, "loc_name": "ShipWreck01", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 2126.6, "z": -705.1, "px": 2410.9, "py": 1927.7}, {"loc_id": 6674, "loc_name": "ShipWreck02", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -6699.9, "z": 5250.2, "px": 904.6, "py": 2944.0}, {"loc_id": 6675, "loc_name": "ShipWreck02", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -2755.8, "z": -3516.5, "px": 1577.7, "py": 1447.9}, {"loc_id": 6676, "loc_name": "ShipWreck02", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -1934.7, "z": -4235.3, "px": 1717.8, "py": 1325.2}, {"loc_id": 6678, "loc_name": "ShipWreck02", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 2825.9, "z": 7349.0, "px": 2530.3, "py": 3302.2}, {"loc_id": 6679, "loc_name": "ShipWreck02", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -3453.2, "z": 4943.1, "px": 1458.7, "py": 2891.6}, {"loc_id": 6680, "loc_name": "ShipWreck02", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -974.7, "z": 4230.6, "px": 1881.7, "py": 2770.0}, {"loc_id": 6681, "loc_name": "ShipWreck02", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -1360.9, "z": -6602.1, "px": 1815.7, "py": 921.2}, {"loc_id": 6683, "loc_name": "ShipWreck02", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -1603.3, "z": -7600.2, "px": 1774.4, "py": 750.9}, {"loc_id": 6685, "loc_name": "ShipWreck02", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -1874.7, "z": 2761.9, "px": 1728.1, "py": 2519.4}, {"loc_id": 6686, "loc_name": "ShipWreck02", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 20.3, "z": 5435.9, "px": 2051.5, "py": 2975.7}, {"loc_id": 6687, "loc_name": "ShipWreck02", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 7691.9, "z": 4480.2, "px": 3360.8, "py": 2812.6}, {"loc_id": 6689, "loc_name": "ShipWreck02", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -4971.3, "z": -3130.0, "px": 1199.6, "py": 1513.8}, {"loc_id": 6690, "loc_name": "ShipWreck02", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 3454.6, "z": -4225.3, "px": 2637.6, "py": 1326.9}, {"loc_id": 6693, "loc_name": "ShipWreck02", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -4105.1, "z": 913.5, "px": 1347.4, "py": 2203.9}, {"loc_id": 6694, "loc_name": "ShipWreck02", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -2443.8, "z": 5944.6, "px": 1630.9, "py": 3062.5}, {"loc_id": 6695, "loc_name": "ShipWreck02", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -5903.7, "z": 4411.5, "px": 1040.4, "py": 2800.9}, {"loc_id": 6696, "loc_name": "ShipWreck02", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -3692.4, "z": 2639.0, "px": 1417.8, "py": 2498.4}, {"loc_id": 6697, "loc_name": "ShipWreck02", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -11.6, "z": -7249.5, "px": 2046.0, "py": 810.8}, {"loc_id": 6698, "loc_name": "ShipWreck02", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 1093.2, "z": 3630.4, "px": 2234.6, "py": 2667.6}, {"loc_id": 6699, "loc_name": "ShipWreck03", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 500.2, "z": 7276.2, "px": 2133.4, "py": 3289.8}, {"loc_id": 6700, "loc_name": "ShipWreck03", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -1419.7, "z": -2175.6, "px": 1805.7, "py": 1676.7}, {"loc_id": 6701, "loc_name": "ShipWreck03", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 1677.1, "z": -6481.2, "px": 2334.2, "py": 941.9}, {"loc_id": 6702, "loc_name": "ShipWreck03", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -5356.2, "z": 713.1, "px": 1133.9, "py": 2169.7}, {"loc_id": 6704, "loc_name": "ShipWreck03", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -2515.3, "z": 3584.5, "px": 1618.7, "py": 2659.8}, {"loc_id": 6705, "loc_name": "ShipWreck03", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 8324.2, "z": -370.1, "px": 3468.7, "py": 1984.8}, {"loc_id": 6706, "loc_name": "ShipWreck03", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -6379.9, "z": -3762.8, "px": 959.2, "py": 1405.8}, {"loc_id": 6707, "loc_name": "ShipWreck03", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 769.9, "z": -2227.3, "px": 2179.4, "py": 1667.9}, {"loc_id": 6708, "loc_name": "ShipWreck03", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 2739.3, "z": -5520.9, "px": 2515.5, "py": 1105.8}, {"loc_id": 6709, "loc_name": "ShipWreck03", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 3475.2, "z": 3184.8, "px": 2641.1, "py": 2591.5}, {"loc_id": 6710, "loc_name": "ShipWreck03", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -1596.3, "z": -5546.3, "px": 1775.6, "py": 1101.4}, {"loc_id": 6712, "loc_name": "ShipWreck03", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 4032.0, "z": 6803.0, "px": 2736.1, "py": 3209.0}, {"loc_id": 6713, "loc_name": "ShipWreck03", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -2476.8, "z": 1457.6, "px": 1625.3, "py": 2296.8}, {"loc_id": 6714, "loc_name": "ShipWreck03", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -140.2, "z": -527.7, "px": 2024.1, "py": 1957.9}, {"loc_id": 6715, "loc_name": "ShipWreck03", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -3667.4, "z": -4035.5, "px": 1422.1, "py": 1359.3}, {"loc_id": 6716, "loc_name": "ShipWreck03", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 4284.1, "z": 2103.6, "px": 2779.2, "py": 2407.0}, {"loc_id": 6717, "loc_name": "ShipWreck03", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 706.9, "z": 2450.7, "px": 2168.6, "py": 2466.3}, {"loc_id": 6718, "loc_name": "ShipWreck03", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -6002.9, "z": -4980.9, "px": 1023.5, "py": 1197.9}, {"loc_id": 6719, "loc_name": "ShipWreck03", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -1905.9, "z": 4727.7, "px": 1722.7, "py": 2854.9}, {"loc_id": 6720, "loc_name": "ShipWreck03", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 5312.4, "z": 3636.7, "px": 2954.6, "py": 2668.7}, {"loc_id": 6723, "loc_name": "ShipWreck03", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 2895.4, "z": 4337.7, "px": 2542.1, "py": 2788.3}, {"loc_id": 6725, "loc_name": "ShipWreck04", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 8323.4, "z": 692.2, "px": 3468.5, "py": 2166.1}, {"loc_id": 6726, "loc_name": "ShipWreck04", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -3316.8, "z": -2489.2, "px": 1481.9, "py": 1623.2}, {"loc_id": 6729, "loc_name": "ShipWreck04", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 8779.4, "z": -1657.5, "px": 3546.4, "py": 1765.1}, {"loc_id": 6731, "loc_name": "ShipWreck04", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 1715.9, "z": 1408.0, "px": 2340.8, "py": 2288.3}, {"loc_id": 6734, "loc_name": "ShipWreck04", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 5166.8, "z": 4656.0, "px": 2929.8, "py": 2842.6}, {"loc_id": 6735, "loc_name": "ShipWreck04", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -2641.3, "z": -7305.5, "px": 1597.2, "py": 801.2}, {"loc_id": 6737, "loc_name": "ShipWreck04", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -9724.8, "z": 756.4, "px": 388.3, "py": 2177.1}, {"loc_id": 6739, "loc_name": "ShipWreck04", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 4079.6, "z": 323.9, "px": 2744.3, "py": 2103.3}, {"loc_id": 6740, "loc_name": "ShipWreck04", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 51.4, "z": 3658.3, "px": 2056.8, "py": 2672.3}, {"loc_id": 6741, "loc_name": "ShipWreck04", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 263.9, "z": -3151.1, "px": 2093.0, "py": 1510.2}, {"loc_id": 6742, "loc_name": "ShipWreck04", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 6072.9, "z": -5776.7, "px": 3084.4, "py": 1062.1}, {"loc_id": 6743, "loc_name": "ShipWreck04", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -3250.0, "z": 6729.4, "px": 1493.3, "py": 3196.5}, {"loc_id": 6744, "loc_name": "ShipWreck04", "item": "Container: shipwreck_karve_chest", "count": 1, "x": 8383.9, "z": 2819.4, "px": 3478.9, "py": 2529.2}, {"loc_id": 6745, "loc_name": "ShipWreck04", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -2501.0, "z": -1674.2, "px": 1621.2, "py": 1762.3}, {"loc_id": 6747, "loc_name": "ShipWreck04", "item": "Container: shipwreck_karve_chest", "count": 1, "x": -4472.9, "z": 6264.5, "px": 1284.6, "py": 3117.1}, {"loc_id": 7246, "loc_name": "CombatRuin01", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 3697.5, "z": -386.4, "px": 2679.0, "py": 1982.1}, {"loc_id": 7246, "loc_name": "CombatRuin01", "item": "Container: TreasureChest_meadows_combat", "count": 1, "x": 3697.5, "z": -386.4, "px": 2679.0, "py": 1982.1}, {"loc_id": 7247, "loc_name": "CombatRuin01", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2094.5, "z": 1872.7, "px": 1690.5, "py": 2367.6}, {"loc_id": 7247, "loc_name": "CombatRuin01", "item": "Container: TreasureChest_meadows_combat", "count": 1, "x": -2094.5, "z": 1872.7, "px": 1690.5, "py": 2367.6}, {"loc_id": 7247, "loc_name": "CombatRuin01", "item": "Pickable: BoneFragments", "count": 1, "x": -2094.5, "z": 1872.7, "px": 1690.5, "py": 2367.6}, {"loc_id": 7248, "loc_name": "CombatRuin01", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": -2186.0, "z": -1651.0, "px": 1674.9, "py": 1766.2}, {"loc_id": 7248, "loc_name": "CombatRuin01", "item": "Container: TreasureChest_meadows_combat", "count": 1, "x": -2186.0, "z": -1651.0, "px": 1674.9, "py": 1766.2}, {"loc_id": 7249, "loc_name": "CombatRuin01", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 752.7, "z": 3346.6, "px": 2176.5, "py": 2619.2}, {"loc_id": 7249, "loc_name": "CombatRuin01", "item": "Container: TreasureChest_meadows_combat", "count": 1, "x": 752.7, "z": 3346.6, "px": 2176.5, "py": 2619.2}, {"loc_id": 7249, "loc_name": "CombatRuin01", "item": "Pickable: BoneFragments", "count": 1, "x": 752.7, "z": 3346.6, "px": 2176.5, "py": 2619.2}, {"loc_id": 7250, "loc_name": "CombatRuin01", "item": "AreaSpawner: Skeleton[1-3] (respawn every 5 seconds)", "count": 1, "x": 126.9, "z": -1746.6, "px": 2069.7, "py": 1749.9}, {"loc_id": 7250, "loc_name": "CombatRuin01", "item": "Container: TreasureChest_meadows_combat", "count": 1, "x": 126.9, "z": -1746.6, "px": 2069.7, "py": 1749.9}, {"loc_id": 7446, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 4544.0, "z": -5632.0, "px": 2823.5, "py": 1086.8}, {"loc_id": 7450, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 5248.0, "z": 192.0, "px": 2943.7, "py": 2080.8}, {"loc_id": 7451, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 8384.0, "z": -3904.0, "px": 3478.9, "py": 1381.7}, {"loc_id": 7452, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": -2624.0, "z": 7360.0, "px": 1600.2, "py": 3304.1}, {"loc_id": 7455, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 6592.0, "z": 6464.0, "px": 3173.0, "py": 3151.2}, {"loc_id": 7457, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 1, "x": 2560.0, "z": 896.0, "px": 2484.9, "py": 2200.9}, {"loc_id": 7457, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 2560.0, "z": 896.0, "px": 2484.9, "py": 2200.9}, {"loc_id": 7459, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": -6848.0, "z": -2368.0, "px": 879.3, "py": 1643.9}, {"loc_id": 7461, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 1024.0, "z": -2624.0, "px": 2222.8, "py": 1600.2}, {"loc_id": 7464, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 1, "x": -6656.0, "z": -1984.0, "px": 912.0, "py": 1709.4}, {"loc_id": 7464, "loc_name": "MountainCave02", "item": "Pickable: FishingRod", "count": 1, "x": -6656.0, "z": -1984.0, "px": 912.0, "py": 1709.4}, {"loc_id": 7464, "loc_name": "MountainCave02", "item": "SpawnOnce: StoneGolem", "count": 1, "x": -6656.0, "z": -1984.0, "px": 912.0, "py": 1709.4}, {"loc_id": 7465, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": -5184.0, "z": 5440.0, "px": 1163.3, "py": 2976.4}, {"loc_id": 7466, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 1, "x": 7296.0, "z": -384.0, "px": 3293.2, "py": 1982.5}, {"loc_id": 7467, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 2688.0, "z": -2688.0, "px": 2506.8, "py": 1589.2}, {"loc_id": 7467, "loc_name": "MountainCave02", "item": "Pickable: FishingRod", "count": 1, "x": 2688.0, "z": -2688.0, "px": 2506.8, "py": 1589.2}, {"loc_id": 7467, "loc_name": "MountainCave02", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 2688.0, "z": -2688.0, "px": 2506.8, "py": 1589.2}, {"loc_id": 7468, "loc_name": "MountainCave02", "item": "Pickable: FishingRod", "count": 1, "x": 1472.0, "z": 6848.0, "px": 2299.2, "py": 3216.7}, {"loc_id": 7468, "loc_name": "MountainCave02", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 1472.0, "z": 6848.0, "px": 2299.2, "py": 3216.7}, {"loc_id": 7469, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 1, "x": -5312.0, "z": 5184.0, "px": 1141.4, "py": 2932.7}, {"loc_id": 7469, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": -5312.0, "z": 5184.0, "px": 1141.4, "py": 2932.7}, {"loc_id": 7470, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 2624.0, "z": 8576.0, "px": 2495.8, "py": 3511.6}, {"loc_id": 7472, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 4608.0, "z": -5440.0, "px": 2834.4, "py": 1119.6}, {"loc_id": 7473, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 0.0, "z": -1152.0, "px": 2048.0, "py": 1851.4}, {"loc_id": 7474, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 1, "x": 4480.0, "z": -1792.0, "px": 2812.6, "py": 1742.2}, {"loc_id": 7475, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 1, "x": 6656.0, "z": 6784.0, "px": 3184.0, "py": 3205.8}, {"loc_id": 7475, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 1, "x": 6656.0, "z": 6784.0, "px": 3184.0, "py": 3205.8}, {"loc_id": 7478, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 4800.0, "z": -5312.0, "px": 2867.2, "py": 1141.4}, {"loc_id": 7478, "loc_name": "MountainCave02", "item": "Item: One Of: Coins[3-9]", "count": 1, "x": 4800.0, "z": -5312.0, "px": 2867.2, "py": 1141.4}, {"loc_id": 7479, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 2688.0, "z": 640.0, "px": 2506.8, "py": 2157.2}, {"loc_id": 7481, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 1, "x": -832.0, "z": 8512.0, "px": 1906.0, "py": 3500.7}, {"loc_id": 7481, "loc_name": "MountainCave02", "item": "Item: One Of: Coins[3-9]", "count": 1, "x": -832.0, "z": 8512.0, "px": 1906.0, "py": 3500.7}, {"loc_id": 7482, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 4288.0, "z": -5824.0, "px": 2779.8, "py": 1054.0}, {"loc_id": 7482, "loc_name": "MountainCave02", "item": "Item: One Of: Coins[3-9]", "count": 1, "x": 4288.0, "z": -5824.0, "px": 2779.8, "py": 1054.0}, {"loc_id": 7482, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 4288.0, "z": -5824.0, "px": 2779.8, "py": 1054.0}, {"loc_id": 7483, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": -2112.0, "z": -512.0, "px": 1687.6, "py": 1960.6}, {"loc_id": 7484, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 1, "x": 2240.0, "z": -2688.0, "px": 2430.3, "py": 1589.2}, {"loc_id": 7484, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 2240.0, "z": -2688.0, "px": 2430.3, "py": 1589.2}, {"loc_id": 7485, "loc_name": "MountainCave02", "item": "Item: One Of: Coins[3-9]", "count": 1, "x": -2048.0, "z": -192.0, "px": 1698.5, "py": 2015.2}, {"loc_id": 7486, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 1728.0, "z": 6656.0, "px": 2342.9, "py": 3184.0}, {"loc_id": 7487, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 1, "x": -3968.0, "z": 5120.0, "px": 1370.8, "py": 2921.8}, {"loc_id": 7488, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": -7616.0, "z": -2368.0, "px": 748.2, "py": 1643.9}, {"loc_id": 7488, "loc_name": "MountainCave02", "item": "Item: One Of: Coins[3-9]", "count": 1, "x": -7616.0, "z": -2368.0, "px": 748.2, "py": 1643.9}, {"loc_id": 7489, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 7040.0, "z": -512.0, "px": 3249.5, "py": 1960.6}, {"loc_id": 7489, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 7040.0, "z": -512.0, "px": 3249.5, "py": 1960.6}, {"loc_id": 7491, "loc_name": "MountainCave02", "item": "Item: One Of: Coins[3-9]", "count": 1, "x": -4160.0, "z": 3200.0, "px": 1338.0, "py": 2594.1}, {"loc_id": 7492, "loc_name": "MountainCave02", "item": "Item: One Of: WolfClaw[1-1], WolfHairBundle[1-1]", "count": 1, "x": -8512.0, "z": -192.0, "px": 595.3, "py": 2015.2}, {"loc_id": 7494, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 1, "x": 9664.0, "z": -1216.0, "px": 3697.3, "py": 1840.5}, {"loc_id": 7494, "loc_name": "MountainCave02", "item": "Item: One Of: Coins[3-9]", "count": 1, "x": 9664.0, "z": -1216.0, "px": 3697.3, "py": 1840.5}, {"loc_id": 7494, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 9664.0, "z": -1216.0, "px": 3697.3, "py": 1840.5}, {"loc_id": 7494, "loc_name": "MountainCave02", "item": "Pickable: FishingRod", "count": 1, "x": 9664.0, "z": -1216.0, "px": 3697.3, "py": 1840.5}, {"loc_id": 7495, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 3328.0, "z": 9280.0, "px": 2616.0, "py": 3631.8}, {"loc_id": 7496, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 4608.0, "z": -5824.0, "px": 2834.4, "py": 1054.0}, {"loc_id": 7497, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 1984.0, "z": -6784.0, "px": 2386.6, "py": 890.2}, {"loc_id": 7498, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": -3776.0, "z": 5184.0, "px": 1403.6, "py": 2932.7}, {"loc_id": 7499, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 4480.0, "z": -2048.0, "px": 2812.6, "py": 1698.5}, {"loc_id": 7500, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -9600.0, "z": -576.0, "px": 409.6, "py": 1949.7}, {"loc_id": 7500, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": -9600.0, "z": -576.0, "px": 409.6, "py": 1949.7}, {"loc_id": 7501, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": -3840.0, "z": 4736.0, "px": 1392.6, "py": 2856.3}, {"loc_id": 7501, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": -3840.0, "z": 4736.0, "px": 1392.6, "py": 2856.3}, {"loc_id": 7502, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 1, "x": 4800.0, "z": -5568.0, "px": 2867.2, "py": 1097.7}, {"loc_id": 7502, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 4800.0, "z": -5568.0, "px": 2867.2, "py": 1097.7}, {"loc_id": 7504, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 1, "x": 5504.0, "z": 64.0, "px": 2987.3, "py": 2058.9}, {"loc_id": 7505, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 5952.0, "z": 4672.0, "px": 3063.8, "py": 2845.4}, {"loc_id": 7506, "loc_name": "MountainCave02", "item": "Pickable: FishingRod", "count": 1, "x": 2048.0, "z": 4736.0, "px": 2397.5, "py": 2856.3}, {"loc_id": 7506, "loc_name": "MountainCave02", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 2048.0, "z": 4736.0, "px": 2397.5, "py": 2856.3}, {"loc_id": 7506, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 2048.0, "z": 4736.0, "px": 2397.5, "py": 2856.3}, {"loc_id": 7507, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -5056.0, "z": 2688.0, "px": 1185.1, "py": 2506.8}, {"loc_id": 7507, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": -5056.0, "z": 2688.0, "px": 1185.1, "py": 2506.8}, {"loc_id": 7508, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 3520.0, "z": 9216.0, "px": 2648.7, "py": 3620.9}, {"loc_id": 7508, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 3520.0, "z": 9216.0, "px": 2648.7, "py": 3620.9}, {"loc_id": 7509, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": -2688.0, "z": 7104.0, "px": 1589.2, "py": 3260.4}, {"loc_id": 7509, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": -2688.0, "z": 7104.0, "px": 1589.2, "py": 3260.4}, {"loc_id": 7509, "loc_name": "MountainCave02", "item": "Pickable: Entrails", "count": 1, "x": -2688.0, "z": 7104.0, "px": 1589.2, "py": 3260.4}, {"loc_id": 7509, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -2688.0, "z": 7104.0, "px": 1589.2, "py": 3260.4}, {"loc_id": 7510, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 6592.0, "z": 7104.0, "px": 3173.0, "py": 3260.4}, {"loc_id": 7510, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 6592.0, "z": 7104.0, "px": 3173.0, "py": 3260.4}, {"loc_id": 7511, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 1, "x": -6592.0, "z": -2240.0, "px": 923.0, "py": 1665.7}, {"loc_id": 7511, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": -6592.0, "z": -2240.0, "px": 923.0, "py": 1665.7}, {"loc_id": 7512, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 1, "x": 5632.0, "z": -512.0, "px": 3009.2, "py": 1960.6}, {"loc_id": 7512, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 1, "x": 5632.0, "z": -512.0, "px": 3009.2, "py": 1960.6}, {"loc_id": 7513, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 3072.0, "z": -1920.0, "px": 2572.3, "py": 1720.3}, {"loc_id": 7514, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": -3584.0, "z": 6080.0, "px": 1436.3, "py": 3085.7}, {"loc_id": 7514, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": -3584.0, "z": 6080.0, "px": 1436.3, "py": 3085.7}, {"loc_id": 7514, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -3584.0, "z": 6080.0, "px": 1436.3, "py": 3085.7}, {"loc_id": 7516, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 3008.0, "z": 576.0, "px": 2561.4, "py": 2146.3}, {"loc_id": 7517, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 7488.0, "z": 3968.0, "px": 3326.0, "py": 2725.2}, {"loc_id": 7519, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 1, "x": -7040.0, "z": -2432.0, "px": 846.5, "py": 1632.9}, {"loc_id": 7519, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": -7040.0, "z": -2432.0, "px": 846.5, "py": 1632.9}, {"loc_id": 7520, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 1, "x": 512.0, "z": 3776.0, "px": 2135.4, "py": 2692.4}, {"loc_id": 7521, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 1, "x": 2240.0, "z": -3712.0, "px": 2430.3, "py": 1414.5}, {"loc_id": 7521, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 2240.0, "z": -3712.0, "px": 2430.3, "py": 1414.5}, {"loc_id": 7522, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": -4032.0, "z": 1408.0, "px": 1359.9, "py": 2288.3}, {"loc_id": 7523, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 6016.0, "z": 4288.0, "px": 3074.7, "py": 2779.8}, {"loc_id": 7523, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 6016.0, "z": 4288.0, "px": 3074.7, "py": 2779.8}, {"loc_id": 7524, "loc_name": "MountainCave02", "item": "Pickable: FishingRod", "count": 1, "x": 4288.0, "z": -1856.0, "px": 2779.8, "py": 1731.2}, {"loc_id": 7526, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 2560.0, "z": 8960.0, "px": 2484.9, "py": 3577.2}, {"loc_id": 7527, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": -3392.0, "z": 6336.0, "px": 1469.1, "py": 3129.3}, {"loc_id": 7531, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 6016.0, "z": 4480.0, "px": 3074.7, "py": 2812.6}, {"loc_id": 7536, "loc_name": "MountainCave02", "item": "Pickable: FishingRod", "count": 1, "x": 2112.0, "z": -3520.0, "px": 2408.4, "py": 1447.3}, {"loc_id": 7536, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 2112.0, "z": -3520.0, "px": 2408.4, "py": 1447.3}, {"loc_id": 7536, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 2112.0, "z": -3520.0, "px": 2408.4, "py": 1447.3}, {"loc_id": 7537, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 6272.0, "z": 6784.0, "px": 3118.4, "py": 3205.8}, {"loc_id": 7538, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 6208.0, "z": 4544.0, "px": 3107.5, "py": 2823.5}, {"loc_id": 7539, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 1, "x": 1280.0, "z": -4992.0, "px": 2266.5, "py": 1196.0}, {"loc_id": 7540, "loc_name": "MountainCave02", "item": "Pickable: BoneFragments", "count": 1, "x": 1344.0, "z": 7040.0, "px": 2277.4, "py": 3249.5}, {"loc_id": 7540, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 1344.0, "z": 7040.0, "px": 2277.4, "py": 3249.5}, {"loc_id": 7541, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": -320.0, "z": -1280.0, "px": 1993.4, "py": 1829.5}, {"loc_id": 7544, "loc_name": "MountainCave02", "item": "Item: One Of: Coins[3-9]", "count": 1, "x": -2432.0, "z": 1920.0, "px": 1632.9, "py": 2375.7}, {"loc_id": 7545, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": -192.0, "z": -1536.0, "px": 2015.2, "py": 1785.9}, {"loc_id": 7548, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 1, "x": -960.0, "z": 8704.0, "px": 1884.2, "py": 3533.5}, {"loc_id": 7550, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 1280.0, "z": 320.0, "px": 2266.5, "py": 2102.6}, {"loc_id": 7550, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 1280.0, "z": 320.0, "px": 2266.5, "py": 2102.6}, {"loc_id": 7552, "loc_name": "MountainCave02", "item": "Pickable: FishingRod", "count": 1, "x": -128.0, "z": -4096.0, "px": 2026.2, "py": 1348.9}, {"loc_id": 7552, "loc_name": "MountainCave02", "item": "SpawnOnce: StoneGolem", "count": 1, "x": -128.0, "z": -4096.0, "px": 2026.2, "py": 1348.9}, {"loc_id": 7554, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 3776.0, "z": -128.0, "px": 2692.4, "py": 2026.2}, {"loc_id": 7554, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 3776.0, "z": -128.0, "px": 2692.4, "py": 2026.2}, {"loc_id": 7557, "loc_name": "MountainCave02", "item": "SpawnOnce: Ulv", "count": 1, "x": 3264.0, "z": 256.0, "px": 2605.1, "py": 2091.7}, {"loc_id": 7557, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 1, "x": 3264.0, "z": 256.0, "px": 2605.1, "py": 2091.7}, {"loc_id": 7558, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": -4416.0, "z": -3840.0, "px": 1294.3, "py": 1392.6}, {"loc_id": 7560, "loc_name": "MountainCave02", "item": "Item: One Of: Coins[3-9]", "count": 1, "x": 9344.0, "z": -2240.0, "px": 3642.7, "py": 1665.7}, {"loc_id": 7561, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": -6208.0, "z": -640.0, "px": 988.5, "py": 1938.8}, {"loc_id": 7562, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 5632.0, "z": 2304.0, "px": 3009.2, "py": 2441.2}, {"loc_id": 7563, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": -3584.0, "z": 1472.0, "px": 1436.3, "py": 2299.2}, {"loc_id": 7564, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 1, "x": 6400.0, "z": 7040.0, "px": 3140.3, "py": 3249.5}, {"loc_id": 7564, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 6400.0, "z": 7040.0, "px": 3140.3, "py": 3249.5}, {"loc_id": 7565, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": -256.0, "z": 9152.0, "px": 2004.3, "py": 3609.9}, {"loc_id": 7566, "loc_name": "MountainCave02", "item": "SpawnOnce: Fenring_Cultist", "count": 1, "x": -4288.0, "z": -1216.0, "px": 1316.2, "py": 1840.5}, {"loc_id": 7566, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": -4288.0, "z": -1216.0, "px": 1316.2, "py": 1840.5}, {"loc_id": 7567, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 2048.0, "z": -1600.0, "px": 2397.5, "py": 1774.9}, {"loc_id": 7567, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 2048.0, "z": -1600.0, "px": 2397.5, "py": 1774.9}, {"loc_id": 7568, "loc_name": "MountainCave02", "item": "Pickable: FishingRod", "count": 1, "x": 1536.0, "z": 6592.0, "px": 2310.1, "py": 3173.0}, {"loc_id": 7568, "loc_name": "MountainCave02", "item": "SpawnOnce: StoneGolem", "count": 1, "x": 1536.0, "z": 6592.0, "px": 2310.1, "py": 3173.0}, {"loc_id": 7569, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": -5376.0, "z": 4992.0, "px": 1130.5, "py": 2900.0}, {"loc_id": 7570, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 1600.0, "z": 7040.0, "px": 2321.1, "py": 3249.5}, {"loc_id": 7571, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": -7232.0, "z": -1024.0, "px": 813.7, "py": 1873.2}, {"loc_id": 7571, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": -7232.0, "z": -1024.0, "px": 813.7, "py": 1873.2}, {"loc_id": 7572, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 3648.0, "z": -704.0, "px": 2670.6, "py": 1927.9}, {"loc_id": 7574, "loc_name": "MountainCave02", "item": "Vegvisir: Dragonqueen ($enemy_dragon)", "count": 1, "x": 5760.0, "z": 4800.0, "px": 3031.0, "py": 2867.2}, {"loc_id": 7574, "loc_name": "MountainCave02", "item": "Container: TreasureChest_mountaincave", "count": 1, "x": 5760.0, "z": 4800.0, "px": 3031.0, "py": 2867.2}, {"loc_id": 7574, "loc_name": "MountainCave02", "item": "Item: One Of: Coins[3-9]", "count": 1, "x": 5760.0, "z": 4800.0, "px": 3031.0, "py": 2867.2}, {"loc_id": 7575, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7175.8, "z": -4934.8, "px": 3272.7, "py": 1205.8}, {"loc_id": 7575, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 1, "x": 7175.8, "z": -4934.8, "px": 3272.7, "py": 1205.8}, {"loc_id": 7576, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4867.6, "z": 5825.2, "px": 2878.7, "py": 3042.2}, {"loc_id": 7577, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7423.4, "z": -255.7, "px": 3314.9, "py": 2004.4}, {"loc_id": 7578, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4028.3, "z": -6268.0, "px": 2735.5, "py": 978.3}, {"loc_id": 7579, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 318.0, "z": 7367.1, "px": 2102.3, "py": 3305.3}, {"loc_id": 7580, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7104.3, "z": -1348.1, "px": 835.5, "py": 1817.9}, {"loc_id": 7581, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6137.4, "z": -5446.9, "px": 1000.6, "py": 1118.4}, {"loc_id": 7582, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8388.5, "z": -767.9, "px": 3479.6, "py": 1916.9}, {"loc_id": 7583, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8440.6, "z": -2753.2, "px": 3488.5, "py": 1578.1}, {"loc_id": 7583, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 8440.6, "z": -2753.2, "px": 3488.5, "py": 1578.1}, {"loc_id": 7584, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7550.0, "z": 2433.8, "px": 3336.5, "py": 2463.4}, {"loc_id": 7585, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8836.5, "z": 449.9, "px": 3556.1, "py": 2124.8}, {"loc_id": 7585, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 8836.5, "z": 449.9, "px": 3556.1, "py": 2124.8}, {"loc_id": 7586, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6266.9, "z": -1346.4, "px": 3117.6, "py": 1818.2}, {"loc_id": 7587, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 5250.1, "z": 3334.0, "px": 2944.0, "py": 2617.0}, {"loc_id": 7587, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 5250.1, "z": 3334.0, "px": 2944.0, "py": 2617.0}, {"loc_id": 7588, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7172.7, "z": 128.2, "px": 3272.1, "py": 2069.9}, {"loc_id": 7589, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7358.9, "z": 4101.6, "px": 792.1, "py": 2748.0}, {"loc_id": 7589, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -7358.9, "z": 4101.6, "px": 792.1, "py": 2748.0}, {"loc_id": 7590, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7997.9, "z": -4413.8, "px": 3413.0, "py": 1294.7}, {"loc_id": 7591, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 188.1, "z": 7163.6, "px": 2080.1, "py": 3270.6}, {"loc_id": 7591, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 188.1, "z": 7163.6, "px": 2080.1, "py": 3270.6}, {"loc_id": 7592, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7490.1, "z": 1083.3, "px": 769.7, "py": 2232.9}, {"loc_id": 7592, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -7490.1, "z": 1083.3, "px": 769.7, "py": 2232.9}, {"loc_id": 7593, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7486.3, "z": 2878.4, "px": 770.3, "py": 2539.2}, {"loc_id": 7594, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 5496.2, "z": 3141.6, "px": 2986.0, "py": 2584.2}, {"loc_id": 7595, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7288.5, "z": -3450.5, "px": 804.1, "py": 1459.1}, {"loc_id": 7596, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6663.6, "z": -1669.4, "px": 910.7, "py": 1763.1}, {"loc_id": 7597, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3463.3, "z": 5636.8, "px": 2639.1, "py": 3010.0}, {"loc_id": 7598, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6402.6, "z": 3135.4, "px": 955.3, "py": 2583.1}, {"loc_id": 7599, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 5496.3, "z": 5636.5, "px": 2986.0, "py": 3010.0}, {"loc_id": 7600, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4870.8, "z": -5825.2, "px": 2879.3, "py": 1053.8}, {"loc_id": 7601, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 5757.9, "z": -4223.2, "px": 3030.7, "py": 1327.2}, {"loc_id": 7602, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9220.2, "z": 571.2, "px": 474.4, "py": 2145.5}, {"loc_id": 7603, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4160.5, "z": -4542.5, "px": 2758.1, "py": 1272.7}, {"loc_id": 7603, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 4160.5, "z": -4542.5, "px": 2758.1, "py": 1272.7}, {"loc_id": 7604, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4031.6, "z": -6404.4, "px": 2736.1, "py": 955.0}, {"loc_id": 7604, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 4031.6, "z": -6404.4, "px": 2736.1, "py": 955.0}, {"loc_id": 7605, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7428.1, "z": 4478.9, "px": 3315.7, "py": 2812.4}, {"loc_id": 7606, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3716.3, "z": -5627.8, "px": 2682.2, "py": 1087.5}, {"loc_id": 7606, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 1, "x": 3716.3, "z": -5627.8, "px": 2682.2, "py": 1087.5}, {"loc_id": 7607, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -2183.2, "z": -6781.6, "px": 1675.4, "py": 890.6}, {"loc_id": 7608, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7608.3, "z": -2364.8, "px": 3346.5, "py": 1644.4}, {"loc_id": 7609, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3141.5, "z": 6522.4, "px": 2584.1, "py": 3161.2}, {"loc_id": 7609, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 3141.5, "z": 6522.4, "px": 2584.1, "py": 3161.2}, {"loc_id": 7610, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8314.3, "z": 2296.3, "px": 629.0, "py": 2439.9}, {"loc_id": 7611, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7421.9, "z": 709.5, "px": 781.3, "py": 2169.1}, {"loc_id": 7612, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 5817.6, "z": -4349.8, "px": 3040.9, "py": 1305.6}, {"loc_id": 7613, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6652.9, "z": -3523.4, "px": 912.6, "py": 1446.7}, {"loc_id": 7614, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -5446.8, "z": 4544.0, "px": 1118.4, "py": 2823.5}, {"loc_id": 7615, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7676.6, "z": 1339.0, "px": 737.9, "py": 2276.5}, {"loc_id": 7616, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 1337.3, "z": 6403.2, "px": 2276.2, "py": 3140.8}, {"loc_id": 7617, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8383.6, "z": -1600.1, "px": 3478.8, "py": 1774.9}, {"loc_id": 7618, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8773.5, "z": -893.6, "px": 3545.3, "py": 1895.5}, {"loc_id": 7619, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 2424.1, "z": -6656.8, "px": 2461.7, "py": 911.9}, {"loc_id": 7619, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 2424.1, "z": -6656.8, "px": 2461.7, "py": 911.9}, {"loc_id": 7620, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8705.0, "z": -1218.1, "px": 3533.7, "py": 1840.1}, {"loc_id": 7621, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8381.6, "z": 2180.6, "px": 617.5, "py": 2420.2}, {"loc_id": 7622, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4731.1, "z": -4736.4, "px": 2855.4, "py": 1239.7}, {"loc_id": 7623, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -967.4, "z": -7804.5, "px": 1882.9, "py": 716.0}, {"loc_id": 7624, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3910.3, "z": -6527.5, "px": 2715.4, "py": 934.0}, {"loc_id": 7625, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 120.3, "z": 6984.0, "px": 2068.5, "py": 3239.9}, {"loc_id": 7626, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8059.4, "z": 3073.3, "px": 3423.5, "py": 2572.5}, {"loc_id": 7627, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -63.7, "z": -6969.0, "px": 2037.1, "py": 858.6}, {"loc_id": 7627, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -63.7, "z": -6969.0, "px": 2037.1, "py": 858.6}, {"loc_id": 7628, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3962.1, "z": -6655.1, "px": 2724.2, "py": 912.2}, {"loc_id": 7629, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4926.1, "z": -5959.1, "px": 2888.7, "py": 1031.0}, {"loc_id": 7630, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -3064.3, "z": -6205.0, "px": 1525.0, "py": 989.0}, {"loc_id": 7631, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6405.4, "z": -2241.4, "px": 954.8, "py": 1665.5}, {"loc_id": 7631, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -6405.4, "z": -2241.4, "px": 954.8, "py": 1665.5}, {"loc_id": 7632, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7611.1, "z": -4603.8, "px": 3347.0, "py": 1262.3}, {"loc_id": 7633, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9276.9, "z": 703.2, "px": 464.7, "py": 2168.0}, {"loc_id": 7634, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8896.7, "z": 1532.4, "px": 529.6, "py": 2309.5}, {"loc_id": 7635, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6083.5, "z": 3330.8, "px": 3086.3, "py": 2616.5}, {"loc_id": 7635, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 1, "x": 6083.5, "z": 3330.8, "px": 3086.3, "py": 2616.5}, {"loc_id": 7636, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 5755.4, "z": 5696.3, "px": 3030.3, "py": 3020.2}, {"loc_id": 7637, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9402.0, "z": 581.8, "px": 443.4, "py": 2147.3}, {"loc_id": 7638, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6338.7, "z": 4281.8, "px": 3129.8, "py": 2778.8}, {"loc_id": 7638, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 1, "x": 6338.7, "z": 4281.8, "px": 3129.8, "py": 2778.8}, {"loc_id": 7639, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -4477.5, "z": -6782.7, "px": 1283.8, "py": 890.4}, {"loc_id": 7640, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 5563.4, "z": 5509.5, "px": 2997.5, "py": 2988.3}, {"loc_id": 7641, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9729.3, "z": -1918.9, "px": 387.5, "py": 1720.5}, {"loc_id": 7641, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Lantern", "count": 1, "x": -9729.3, "z": -1918.9, "px": 387.5, "py": 1720.5}, {"loc_id": 7642, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8067.5, "z": 2809.4, "px": 3424.9, "py": 2527.5}, {"loc_id": 7643, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 314.3, "z": 7555.7, "px": 2101.6, "py": 3337.5}, {"loc_id": 7643, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 314.3, "z": 7555.7, "px": 2101.6, "py": 3337.5}, {"loc_id": 7644, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 384.2, "z": -7426.2, "px": 2113.6, "py": 780.6}, {"loc_id": 7644, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 384.2, "z": -7426.2, "px": 2113.6, "py": 780.6}, {"loc_id": 7645, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6909.1, "z": -133.1, "px": 3227.2, "py": 2025.3}, {"loc_id": 7646, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9026.7, "z": -1598.2, "px": 3588.6, "py": 1775.2}, {"loc_id": 7647, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8134.5, "z": -1793.5, "px": 3436.3, "py": 1741.9}, {"loc_id": 7647, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 8134.5, "z": -1793.5, "px": 3436.3, "py": 1741.9}, {"loc_id": 7648, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9094.7, "z": 1535.6, "px": 3600.2, "py": 2310.1}, {"loc_id": 7649, "loc_name": "Mistlands_GuardTower1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8130.9, "z": -3836.9, "px": 660.3, "py": 1393.2}, {"loc_id": 7649, "loc_name": "Mistlands_GuardTower1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -8130.9, "z": -3836.9, "px": 660.3, "py": 1393.2}, {"loc_id": 7650, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": -8637.3, "z": 504.3, "px": 573.9, "py": 2134.1}, {"loc_id": 7653, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 3765.3, "z": -6774.6, "px": 2690.6, "py": 891.8}, {"loc_id": 7655, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": -513.0, "z": -6712.4, "px": 1960.4, "py": 902.4}, {"loc_id": 7656, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": -8820.8, "z": 1223.7, "px": 542.6, "py": 2256.8}, {"loc_id": 7659, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 9276.9, "z": -2368.8, "px": 3631.3, "py": 1643.7}, {"loc_id": 7662, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 7487.5, "z": -2315.1, "px": 3325.9, "py": 1652.9}, {"loc_id": 7664, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 2441.5, "z": -5764.5, "px": 2464.7, "py": 1064.2}, {"loc_id": 7666, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 4363.6, "z": 5942.8, "px": 2792.7, "py": 3062.2}, {"loc_id": 7672, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": -2042.5, "z": -6665.0, "px": 1699.4, "py": 910.5}, {"loc_id": 7674, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": -4417.3, "z": -5369.3, "px": 1294.1, "py": 1131.6}, {"loc_id": 7680, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 4744.1, "z": 5956.8, "px": 2857.7, "py": 3064.6}, {"loc_id": 7682, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": -5899.1, "z": -1988.8, "px": 1041.2, "py": 1708.6}, {"loc_id": 7683, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 7353.6, "z": -4926.5, "px": 3303.0, "py": 1207.2}, {"loc_id": 7686, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": -3452.1, "z": 5250.4, "px": 1458.8, "py": 2944.1}, {"loc_id": 7696, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 1342.1, "z": -6464.8, "px": 2277.1, "py": 944.7}, {"loc_id": 7697, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 2100.9, "z": -7051.2, "px": 2406.6, "py": 844.6}, {"loc_id": 7698, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": -9465.5, "z": 1026.0, "px": 432.6, "py": 2223.1}, {"loc_id": 7700, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": -5893.0, "z": -2550.1, "px": 1042.3, "py": 1612.8}, {"loc_id": 7709, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": -8580.6, "z": 2234.5, "px": 583.6, "py": 2429.4}, {"loc_id": 7711, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": -3000.0, "z": -5944.1, "px": 1536.0, "py": 1033.5}, {"loc_id": 7716, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 1461.0, "z": 7545.9, "px": 2297.3, "py": 3335.8}, {"loc_id": 7717, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": -7238.9, "z": 514.3, "px": 812.6, "py": 2135.8}, {"loc_id": 7719, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 7817.4, "z": -2231.0, "px": 3382.2, "py": 1667.2}, {"loc_id": 7720, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 4790.2, "z": -4601.5, "px": 2865.5, "py": 1262.7}, {"loc_id": 7724, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": -7233.5, "z": 3850.9, "px": 813.5, "py": 2705.2}, {"loc_id": 7725, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 6727.2, "z": 5255.0, "px": 3196.1, "py": 2944.9}, {"loc_id": 7726, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": -7866.8, "z": -2741.7, "px": 705.4, "py": 1580.1}, {"loc_id": 7727, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": -1733.7, "z": 7104.7, "px": 1752.1, "py": 3260.5}, {"loc_id": 7729, "loc_name": "Mistlands_GuardTower1_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": -2696.8, "z": -5625.3, "px": 1587.7, "py": 1087.9}, {"loc_id": 7730, "loc_name": "Mistlands_GuardTower1_ruined_new2", "item": "SpawnOnce: Seeker", "count": 1, "x": 4341.8, "z": 5578.3, "px": 2789.0, "py": 3000.0}, {"loc_id": 7731, "loc_name": "Mistlands_GuardTower1_ruined_new2", "item": "SpawnOnce: Seeker", "count": 1, "x": 6469.1, "z": 2808.2, "px": 3152.1, "py": 2527.3}, {"loc_id": 7737, "loc_name": "Mistlands_GuardTower1_ruined_new2", "item": "SpawnOnce: Seeker", "count": 1, "x": 7671.8, "z": -2248.2, "px": 3357.3, "py": 1664.3}, {"loc_id": 7740, "loc_name": "Mistlands_GuardTower1_ruined_new2", "item": "SpawnOnce: Seeker", "count": 1, "x": 2298.6, "z": -6409.5, "px": 2440.3, "py": 954.1}, {"loc_id": 7744, "loc_name": "Mistlands_GuardTower1_ruined_new2", "item": "SpawnOnce: Seeker", "count": 1, "x": -5954.9, "z": 3006.8, "px": 1031.7, "py": 2561.2}, {"loc_id": 7747, "loc_name": "Mistlands_GuardTower1_ruined_new2", "item": "SpawnOnce: Seeker", "count": 1, "x": 3850.5, "z": 5695.4, "px": 2705.2, "py": 3020.0}, {"loc_id": 7750, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -5698.7, "z": -5447.2, "px": 1075.4, "py": 1118.3}, {"loc_id": 7750, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 1, "x": -5698.7, "z": -5447.2, "px": 1075.4, "py": 1118.3}, {"loc_id": 7751, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -5956.9, "z": 1222.3, "px": 1031.4, "py": 2256.6}, {"loc_id": 7752, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6842.2, "z": -702.6, "px": 3215.7, "py": 1928.1}, {"loc_id": 7752, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 1, "x": 6842.2, "z": -702.6, "px": 3215.7, "py": 1928.1}, {"loc_id": 7753, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3132.9, "z": 7103.4, "px": 2582.7, "py": 3260.3}, {"loc_id": 7753, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 1, "x": 3132.9, "z": 7103.4, "px": 2582.7, "py": 3260.3}, {"loc_id": 7754, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 1729.4, "z": -6663.5, "px": 2343.2, "py": 910.8}, {"loc_id": 7754, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 1, "x": 1729.4, "z": -6663.5, "px": 2343.2, "py": 910.8}, {"loc_id": 7755, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -3847.5, "z": 6335.2, "px": 1391.4, "py": 3129.2}, {"loc_id": 7756, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6392.8, "z": 574.2, "px": 957.0, "py": 2146.0}, {"loc_id": 7757, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8248.7, "z": -3140.4, "px": 640.2, "py": 1512.0}, {"loc_id": 7757, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 1, "x": -8248.7, "z": -3140.4, "px": 640.2, "py": 1512.0}, {"loc_id": 7758, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -1407.2, "z": 7363.1, "px": 1807.8, "py": 3304.6}, {"loc_id": 7759, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 2877.1, "z": 5818.4, "px": 2539.0, "py": 3041.0}, {"loc_id": 7759, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 1, "x": 2877.1, "z": 5818.4, "px": 2539.0, "py": 3041.0}, {"loc_id": 7760, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7359.1, "z": -2559.7, "px": 792.0, "py": 1611.1}, {"loc_id": 7761, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 1209.0, "z": 7295.2, "px": 2254.3, "py": 3293.0}, {"loc_id": 7762, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8322.9, "z": -3010.1, "px": 3468.4, "py": 1534.3}, {"loc_id": 7763, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 2622.0, "z": 6073.6, "px": 2495.5, "py": 3084.6}, {"loc_id": 7764, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9464.8, "z": -2424.5, "px": 3663.3, "py": 1634.2}, {"loc_id": 7764, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 1, "x": 9464.8, "z": -2424.5, "px": 3663.3, "py": 1634.2}, {"loc_id": 7765, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -1720.6, "z": -7111.2, "px": 1754.4, "py": 834.4}, {"loc_id": 7766, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9530.3, "z": -1852.9, "px": 421.5, "py": 1731.8}, {"loc_id": 7767, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7544.7, "z": -3399.0, "px": 760.4, "py": 1467.9}, {"loc_id": 7767, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 1, "x": -7544.7, "z": -3399.0, "px": 760.4, "py": 1467.9}, {"loc_id": 7768, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -1976.4, "z": -5895.9, "px": 1710.7, "py": 1041.8}, {"loc_id": 7769, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 379.3, "z": 7164.6, "px": 2112.7, "py": 3270.8}, {"loc_id": 7770, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4921.5, "z": 6072.0, "px": 2887.9, "py": 3084.3}, {"loc_id": 7771, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7936.6, "z": 1795.6, "px": 3402.5, "py": 2354.4}, {"loc_id": 7771, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 7936.6, "z": 1795.6, "px": 3402.5, "py": 2354.4}, {"loc_id": 7772, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -2758.7, "z": 6525.8, "px": 1577.2, "py": 3161.7}, {"loc_id": 7773, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8442.1, "z": -1081.8, "px": 3488.8, "py": 1863.4}, {"loc_id": 7774, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 5820.3, "z": 2557.6, "px": 3041.3, "py": 2484.5}, {"loc_id": 7775, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6022.2, "z": 1913.3, "px": 3075.8, "py": 2374.5}, {"loc_id": 7776, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9468.6, "z": 898.3, "px": 432.0, "py": 2201.3}, {"loc_id": 7777, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7098.5, "z": 3783.0, "px": 3259.5, "py": 2693.6}, {"loc_id": 7777, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 1, "x": 7098.5, "z": 3783.0, "px": 3259.5, "py": 2693.6}, {"loc_id": 7778, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9095.9, "z": 1351.9, "px": 3600.4, "py": 2278.7}, {"loc_id": 7779, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4222.3, "z": 6081.1, "px": 2768.6, "py": 3085.8}, {"loc_id": 7780, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 2239.9, "z": -6663.5, "px": 2430.3, "py": 910.8}, {"loc_id": 7781, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 2045.0, "z": -6590.9, "px": 2397.0, "py": 923.2}, {"loc_id": 7782, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8200.0, "z": -3392.3, "px": 648.5, "py": 1469.0}, {"loc_id": 7782, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 1, "x": -8200.0, "z": -3392.3, "px": 648.5, "py": 1469.0}, {"loc_id": 7783, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8510.1, "z": -577.2, "px": 3500.4, "py": 1949.5}, {"loc_id": 7784, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6333.6, "z": 2887.8, "px": 3128.9, "py": 2540.9}, {"loc_id": 7785, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -2937.0, "z": 6146.3, "px": 1546.8, "py": 3097.0}, {"loc_id": 7785, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 1, "x": -2937.0, "z": 6146.3, "px": 1546.8, "py": 3097.0}, {"loc_id": 7786, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4230.0, "z": -6151.6, "px": 2769.9, "py": 998.1}, {"loc_id": 7787, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -5306.6, "z": 4800.3, "px": 1142.3, "py": 2867.3}, {"loc_id": 7788, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3837.1, "z": -5441.0, "px": 2702.9, "py": 1119.4}, {"loc_id": 7789, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8775.0, "z": 953.4, "px": 3545.6, "py": 2210.7}, {"loc_id": 7790, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -2882.0, "z": -6147.0, "px": 1556.1, "py": 998.9}, {"loc_id": 7791, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3773.4, "z": 6009.1, "px": 2692.0, "py": 3073.6}, {"loc_id": 7791, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 1, "x": 3773.4, "z": 6009.1, "px": 2692.0, "py": 3073.6}, {"loc_id": 7792, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7684.2, "z": 2815.0, "px": 3359.4, "py": 2528.4}, {"loc_id": 7793, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7425.8, "z": -762.8, "px": 780.7, "py": 1917.8}, {"loc_id": 7793, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 1, "x": -7425.8, "z": -762.8, "px": 780.7, "py": 1917.8}, {"loc_id": 7794, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9338.8, "z": 825.7, "px": 454.2, "py": 2188.9}, {"loc_id": 7795, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4154.6, "z": -5051.2, "px": 2757.1, "py": 1185.9}, {"loc_id": 7796, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3963.4, "z": -5382.0, "px": 2724.4, "py": 1129.5}, {"loc_id": 7797, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9018.2, "z": -1029.7, "px": 3587.1, "py": 1872.3}, {"loc_id": 7798, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 388.6, "z": 6973.8, "px": 2114.3, "py": 3238.2}, {"loc_id": 7799, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9279.2, "z": -1912.1, "px": 3631.7, "py": 1721.7}, {"loc_id": 7800, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7097.4, "z": -5062.8, "px": 3259.3, "py": 1183.9}, {"loc_id": 7801, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -2756.4, "z": -6465.0, "px": 1577.6, "py": 944.6}, {"loc_id": 7802, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4420.9, "z": 5758.4, "px": 2802.5, "py": 3030.8}, {"loc_id": 7803, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7682.5, "z": -2813.7, "px": 736.9, "py": 1567.8}, {"loc_id": 7803, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 1, "x": -7682.5, "z": -2813.7, "px": 736.9, "py": 1567.8}, {"loc_id": 7804, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4476.4, "z": -4487.3, "px": 2812.0, "py": 1282.2}, {"loc_id": 7805, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -770.1, "z": 6727.9, "px": 1916.6, "py": 3196.2}, {"loc_id": 7806, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8259.2, "z": 2555.0, "px": 3457.6, "py": 2484.1}, {"loc_id": 7807, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7611.2, "z": -2106.1, "px": 3347.0, "py": 1688.6}, {"loc_id": 7808, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6530.5, "z": 3002.0, "px": 3162.5, "py": 2560.3}, {"loc_id": 7809, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7302.5, "z": 4222.5, "px": 3294.3, "py": 2768.6}, {"loc_id": 7809, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 1, "x": 7302.5, "z": 4222.5, "px": 3294.3, "py": 2768.6}, {"loc_id": 7810, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -1916.3, "z": -7041.2, "px": 1721.0, "py": 846.3}, {"loc_id": 7810, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 1, "x": -1916.3, "z": -7041.2, "px": 1721.0, "py": 846.3}, {"loc_id": 7811, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 1541.3, "z": -6585.5, "px": 2311.0, "py": 924.1}, {"loc_id": 7812, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -1471.2, "z": -7427.0, "px": 1796.9, "py": 780.5}, {"loc_id": 7813, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -5432.7, "z": 5880.4, "px": 1120.8, "py": 3051.6}, {"loc_id": 7814, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 5953.4, "z": 5882.8, "px": 3064.0, "py": 3052.0}, {"loc_id": 7815, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7557.4, "z": -4741.1, "px": 3337.8, "py": 1238.9}, {"loc_id": 7816, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 2809.6, "z": 5628.1, "px": 2527.5, "py": 3008.5}, {"loc_id": 7816, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 2809.6, "z": 5628.1, "px": 2527.5, "py": 3008.5}, {"loc_id": 7817, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7237.5, "z": 1347.3, "px": 812.8, "py": 2277.9}, {"loc_id": 7817, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -7237.5, "z": 1347.3, "px": 812.8, "py": 2277.9}, {"loc_id": 7818, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -2046.0, "z": -7047.5, "px": 1698.8, "py": 845.2}, {"loc_id": 7819, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 1157.7, "z": 7100.9, "px": 2245.6, "py": 3259.9}, {"loc_id": 7819, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 1, "x": 1157.7, "z": 7100.9, "px": 2245.6, "py": 3259.9}, {"loc_id": 7820, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9084.3, "z": -1732.5, "px": 3598.4, "py": 1752.3}, {"loc_id": 7820, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 1, "x": 9084.3, "z": -1732.5, "px": 3598.4, "py": 1752.3}, {"loc_id": 7821, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4161.1, "z": 4676.5, "px": 2758.2, "py": 2846.1}, {"loc_id": 7821, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 1, "x": 4161.1, "z": 4676.5, "px": 2758.2, "py": 2846.1}, {"loc_id": 7822, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 2171.7, "z": -6469.5, "px": 2418.6, "py": 943.9}, {"loc_id": 7822, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 1, "x": 2171.7, "z": -6469.5, "px": 2418.6, "py": 943.9}, {"loc_id": 7823, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7544.4, "z": -3776.5, "px": 3335.6, "py": 1403.5}, {"loc_id": 7823, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 7544.4, "z": -3776.5, "px": 3335.6, "py": 1403.5}, {"loc_id": 7824, "loc_name": "Mistlands_GuardTower2_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -5061.2, "z": 4793.4, "px": 1184.2, "py": 2866.1}, {"loc_id": 7824, "loc_name": "Mistlands_GuardTower2_new", "item": "Pickable: Lantern", "count": 1, "x": -5061.2, "z": 4793.4, "px": 1184.2, "py": 2866.1}, {"loc_id": 7825, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 5954.4, "z": 5050.3, "px": 3064.2, "py": 2909.9}, {"loc_id": 7826, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -2691.8, "z": 6400.1, "px": 1588.6, "py": 3140.3}, {"loc_id": 7827, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8698.8, "z": -2936.1, "px": 3532.6, "py": 1546.9}, {"loc_id": 7828, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9606.1, "z": -761.8, "px": 3687.4, "py": 1918.0}, {"loc_id": 7829, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8836.4, "z": 1410.3, "px": 539.9, "py": 2288.7}, {"loc_id": 7830, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6138.7, "z": -4474.4, "px": 3095.7, "py": 1284.4}, {"loc_id": 7831, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -1592.3, "z": 7489.3, "px": 1776.2, "py": 3326.2}, {"loc_id": 7832, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6340.2, "z": 3705.0, "px": 965.9, "py": 2680.3}, {"loc_id": 7833, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4282.2, "z": -4616.0, "px": 2778.8, "py": 1260.2}, {"loc_id": 7834, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8130.2, "z": -313.4, "px": 660.4, "py": 1994.5}, {"loc_id": 7835, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 1086.9, "z": -7365.5, "px": 2233.5, "py": 791.0}, {"loc_id": 7836, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 5821.2, "z": 5185.0, "px": 3041.5, "py": 2932.9}, {"loc_id": 7837, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -1339.3, "z": -6266.3, "px": 1819.4, "py": 978.6}, {"loc_id": 7838, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7615.0, "z": -66.6, "px": 3347.6, "py": 2036.6}, {"loc_id": 7839, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8642.5, "z": 711.8, "px": 3523.0, "py": 2169.5}, {"loc_id": 7840, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8773.2, "z": -2819.3, "px": 3545.3, "py": 1566.8}, {"loc_id": 7841, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8250.8, "z": -444.8, "px": 639.9, "py": 1972.1}, {"loc_id": 7842, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 5891.8, "z": 2438.2, "px": 3053.5, "py": 2464.1}, {"loc_id": 7843, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7746.3, "z": 4220.3, "px": 3370.0, "py": 2768.3}, {"loc_id": 7844, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7045.3, "z": -131.2, "px": 3250.4, "py": 2025.6}, {"loc_id": 7845, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8578.1, "z": 192.6, "px": 584.0, "py": 2080.9}, {"loc_id": 7846, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -3136.3, "z": 6151.6, "px": 1512.7, "py": 3097.9}, {"loc_id": 7847, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8576.6, "z": 1533.8, "px": 584.3, "py": 2309.8}, {"loc_id": 7848, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6140.1, "z": 2812.1, "px": 3095.9, "py": 2527.9}, {"loc_id": 7849, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7487.1, "z": 953.5, "px": 770.2, "py": 2210.7}, {"loc_id": 7850, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9144.3, "z": -2438.5, "px": 487.4, "py": 1631.8}, {"loc_id": 7851, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8763.7, "z": -1026.8, "px": 3543.7, "py": 1872.8}, {"loc_id": 7852, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3960.1, "z": -5702.6, "px": 2723.9, "py": 1074.8}, {"loc_id": 7853, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4163.4, "z": -5954.3, "px": 2758.6, "py": 1031.8}, {"loc_id": 7854, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -2170.7, "z": 7107.3, "px": 1677.5, "py": 3261.0}, {"loc_id": 7855, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6075.1, "z": -1086.8, "px": 1011.2, "py": 1862.5}, {"loc_id": 7856, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8707.7, "z": -1596.1, "px": 561.9, "py": 1775.6}, {"loc_id": 7857, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9208.9, "z": -1153.3, "px": 3619.7, "py": 1851.2}, {"loc_id": 7858, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9156.7, "z": -2108.2, "px": 3610.7, "py": 1688.2}, {"loc_id": 7859, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -1080.3, "z": -7545.9, "px": 1863.6, "py": 760.2}, {"loc_id": 7860, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 2566.9, "z": -5887.5, "px": 2486.1, "py": 1043.2}, {"loc_id": 7861, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6533.8, "z": -4475.4, "px": 932.9, "py": 1284.2}, {"loc_id": 7862, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8315.9, "z": -3512.0, "px": 628.8, "py": 1448.6}, {"loc_id": 7863, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7357.7, "z": 1403.5, "px": 792.3, "py": 2287.5}, {"loc_id": 7864, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8198.8, "z": -2879.2, "px": 3447.3, "py": 1556.6}, {"loc_id": 7865, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9080.4, "z": -1466.8, "px": 3597.7, "py": 1797.7}, {"loc_id": 7866, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3905.0, "z": -5562.7, "px": 2714.5, "py": 1098.6}, {"loc_id": 7867, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -1607.6, "z": -5959.5, "px": 1773.6, "py": 1030.9}, {"loc_id": 7868, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3078.7, "z": 6266.7, "px": 2573.4, "py": 3117.5}, {"loc_id": 7869, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8571.4, "z": 440.6, "px": 3510.9, "py": 2123.2}, {"loc_id": 7870, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9401.5, "z": 1721.6, "px": 3652.5, "py": 2341.8}, {"loc_id": 7871, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -3064.2, "z": 6397.6, "px": 1525.0, "py": 3139.9}, {"loc_id": 7872, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8390.1, "z": 7.7, "px": 616.1, "py": 2049.3}, {"loc_id": 7873, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3012.5, "z": 6393.2, "px": 2562.1, "py": 3139.1}, {"loc_id": 7874, "loc_name": "Mistlands_GuardTower3_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3962.0, "z": -5952.5, "px": 2724.2, "py": 1032.1}, {"loc_id": 7878, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 8328.1, "z": 2122.9, "px": 3469.3, "py": 2410.3}, {"loc_id": 7880, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 5960.0, "z": -4362.9, "px": 3065.2, "py": 1303.4}, {"loc_id": 7883, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": -4484.3, "z": -4416.7, "px": 1282.7, "py": 1294.2}, {"loc_id": 7886, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 4229.2, "z": 5384.1, "px": 2769.8, "py": 2966.9}, {"loc_id": 7887, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": -1976.3, "z": 7176.6, "px": 1710.7, "py": 3272.8}, {"loc_id": 7891, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": -1344.0, "z": -5953.4, "px": 1818.6, "py": 1032.0}, {"loc_id": 7893, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 776.9, "z": -7609.5, "px": 2180.6, "py": 749.3}, {"loc_id": 7894, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 8767.0, "z": 324.6, "px": 3544.2, "py": 2103.4}, {"loc_id": 7895, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 646.1, "z": 6916.5, "px": 2158.3, "py": 3228.4}, {"loc_id": 7897, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 7355.4, "z": -4793.1, "px": 3303.3, "py": 1230.0}, {"loc_id": 7901, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 2942.4, "z": 6262.6, "px": 2550.2, "py": 3116.8}, {"loc_id": 7903, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 7875.8, "z": 2937.2, "px": 3392.1, "py": 2549.3}, {"loc_id": 7904, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": -1594.9, "z": -7492.6, "px": 1775.8, "py": 769.3}, {"loc_id": 7907, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": 6409.2, "z": 4988.8, "px": 3141.8, "py": 2899.4}, {"loc_id": 7924, "loc_name": "Mistlands_GuardTower3_ruined_new", "item": "SpawnOnce: Seeker", "count": 1, "x": -5364.1, "z": 5753.7, "px": 1132.5, "py": 3030.0}, {"loc_id": 7925, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4921.5, "z": -4345.8, "px": 2887.9, "py": 1306.3}, {"loc_id": 7926, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7032.6, "z": 4983.8, "px": 847.8, "py": 2898.6}, {"loc_id": 7927, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8194.9, "z": -3575.9, "px": 649.4, "py": 1437.7}, {"loc_id": 7927, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -8194.9, "z": -3575.9, "px": 649.4, "py": 1437.7}, {"loc_id": 7928, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6657.5, "z": -249.3, "px": 3184.2, "py": 2005.5}, {"loc_id": 7929, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -2240.2, "z": -6463.7, "px": 1665.7, "py": 944.9}, {"loc_id": 7929, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -2240.2, "z": -6463.7, "px": 1665.7, "py": 944.9}, {"loc_id": 7930, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 5758.7, "z": 4035.2, "px": 3030.8, "py": 2736.7}, {"loc_id": 7931, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6153.5, "z": -1154.9, "px": 3098.2, "py": 1850.9}, {"loc_id": 7932, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4099.1, "z": -5370.7, "px": 2747.6, "py": 1131.4}, {"loc_id": 7932, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 4099.1, "z": -5370.7, "px": 2747.6, "py": 1131.4}, {"loc_id": 7933, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7740.3, "z": -3261.6, "px": 727.0, "py": 1491.4}, {"loc_id": 7933, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -7740.3, "z": -3261.6, "px": 727.0, "py": 1491.4}, {"loc_id": 7934, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6462.5, "z": 5570.0, "px": 945.1, "py": 2998.6}, {"loc_id": 7934, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 1, "x": -6462.5, "z": 5570.0, "px": 945.1, "py": 2998.6}, {"loc_id": 7934, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -6462.5, "z": 5570.0, "px": 945.1, "py": 2998.6}, {"loc_id": 7935, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -5949.6, "z": -5620.3, "px": 1032.6, "py": 1088.8}, {"loc_id": 7936, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8056.0, "z": 1141.6, "px": 3422.9, "py": 2242.8}, {"loc_id": 7937, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3204.7, "z": 6842.7, "px": 2594.9, "py": 3215.8}, {"loc_id": 7937, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 3204.7, "z": 6842.7, "px": 2594.9, "py": 3215.8}, {"loc_id": 7938, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7412.7, "z": -1348.6, "px": 782.9, "py": 1817.8}, {"loc_id": 7939, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8516.0, "z": 1993.4, "px": 594.6, "py": 2388.2}, {"loc_id": 7939, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -8516.0, "z": 1993.4, "px": 594.6, "py": 2388.2}, {"loc_id": 7940, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7740.7, "z": 2677.2, "px": 3369.1, "py": 2504.9}, {"loc_id": 7941, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 383.9, "z": 6721.7, "px": 2113.5, "py": 3195.2}, {"loc_id": 7942, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4927.2, "z": -5640.8, "px": 2888.9, "py": 1085.3}, {"loc_id": 7943, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7425.2, "z": -3452.2, "px": 780.8, "py": 1458.8}, {"loc_id": 7944, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7554.8, "z": 1477.4, "px": 758.6, "py": 2300.1}, {"loc_id": 7945, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6154.2, "z": -1603.4, "px": 3098.3, "py": 1774.4}, {"loc_id": 7946, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7235.2, "z": -2113.4, "px": 3282.8, "py": 1687.3}, {"loc_id": 7946, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 1, "x": 7235.2, "z": -2113.4, "px": 3282.8, "py": 1687.3}, {"loc_id": 7947, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8948.8, "z": 1023.5, "px": 520.7, "py": 2222.7}, {"loc_id": 7947, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -8948.8, "z": 1023.5, "px": 520.7, "py": 2222.7}, {"loc_id": 7948, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6788.4, "z": 1290.5, "px": 3206.6, "py": 2268.2}, {"loc_id": 7949, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 136.6, "z": -6856.0, "px": 2071.3, "py": 877.9}, {"loc_id": 7950, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 2376.3, "z": -6920.7, "px": 2453.6, "py": 866.9}, {"loc_id": 7951, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6079.8, "z": 2429.8, "px": 3085.6, "py": 2462.7}, {"loc_id": 7952, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9341.6, "z": -583.4, "px": 453.7, "py": 1948.4}, {"loc_id": 7952, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -9341.6, "z": -583.4, "px": 453.7, "py": 1948.4}, {"loc_id": 7953, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -3769.0, "z": 5574.2, "px": 1404.8, "py": 2999.3}, {"loc_id": 7954, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4726.9, "z": 6411.7, "px": 2854.7, "py": 3142.3}, {"loc_id": 7955, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -1605.7, "z": -7239.3, "px": 1774.0, "py": 812.5}, {"loc_id": 7955, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 1, "x": -1605.7, "z": -7239.3, "px": 1774.0, "py": 812.5}, {"loc_id": 7956, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 1923.4, "z": -7229.2, "px": 2376.3, "py": 814.2}, {"loc_id": 7956, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 1923.4, "z": -7229.2, "px": 2376.3, "py": 814.2}, {"loc_id": 7957, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9658.2, "z": 2228.6, "px": 399.7, "py": 2428.3}, {"loc_id": 7958, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8136.9, "z": -843.7, "px": 3436.7, "py": 1904.0}, {"loc_id": 7959, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -133.0, "z": 7233.9, "px": 2025.3, "py": 3282.6}, {"loc_id": 7959, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -133.0, "z": 7233.9, "px": 2025.3, "py": 3282.6}, {"loc_id": 7960, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -5110.0, "z": 4553.5, "px": 1175.9, "py": 2825.1}, {"loc_id": 7961, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6274.7, "z": 2692.6, "px": 3118.9, "py": 2507.5}, {"loc_id": 7962, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9525.2, "z": -2486.1, "px": 422.4, "py": 1623.7}, {"loc_id": 7963, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 5886.8, "z": 5698.7, "px": 3052.7, "py": 3020.6}, {"loc_id": 7963, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 1, "x": 5886.8, "z": 5698.7, "px": 3052.7, "py": 3020.6}, {"loc_id": 7964, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -2628.0, "z": -6646.2, "px": 1599.5, "py": 913.7}, {"loc_id": 7964, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -2628.0, "z": -6646.2, "px": 1599.5, "py": 913.7}, {"loc_id": 7965, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7095.5, "z": -4788.4, "px": 3259.0, "py": 1230.8}, {"loc_id": 7966, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 2567.3, "z": 6402.0, "px": 2486.2, "py": 3140.6}, {"loc_id": 7967, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6270.2, "z": 4107.7, "px": 977.9, "py": 2749.0}, {"loc_id": 7968, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -3074.7, "z": 5386.2, "px": 1523.3, "py": 2967.2}, {"loc_id": 7968, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -3074.7, "z": 5386.2, "px": 1523.3, "py": 2967.2}, {"loc_id": 7969, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -5945.1, "z": 2754.6, "px": 1033.4, "py": 2518.1}, {"loc_id": 7970, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9220.9, "z": -380.2, "px": 474.3, "py": 1983.1}, {"loc_id": 7971, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6581.4, "z": 5442.4, "px": 3171.2, "py": 2976.8}, {"loc_id": 7972, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8826.2, "z": -1275.6, "px": 541.7, "py": 1830.3}, {"loc_id": 7973, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 5496.1, "z": 6260.6, "px": 2986.0, "py": 3116.5}, {"loc_id": 7974, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6527.8, "z": 5685.1, "px": 933.9, "py": 3018.3}, {"loc_id": 7975, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -2878.1, "z": -5888.8, "px": 1556.8, "py": 1043.0}, {"loc_id": 7976, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9156.5, "z": -1018.0, "px": 3610.7, "py": 1874.3}, {"loc_id": 7976, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 9156.5, "z": -1018.0, "px": 3610.7, "py": 1874.3}, {"loc_id": 7977, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6458.6, "z": -5058.7, "px": 945.7, "py": 1184.6}, {"loc_id": 7977, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 1, "x": -6458.6, "z": -5058.7, "px": 945.7, "py": 1184.6}, {"loc_id": 7978, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6922.9, "z": 1524.1, "px": 3229.5, "py": 2308.1}, {"loc_id": 7979, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6155.4, "z": 4995.2, "px": 3098.5, "py": 2900.5}, {"loc_id": 7980, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9660.3, "z": 1145.3, "px": 399.3, "py": 2243.5}, {"loc_id": 7980, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 1, "x": -9660.3, "z": 1145.3, "px": 399.3, "py": 2243.5}, {"loc_id": 7980, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -9660.3, "z": 1145.3, "px": 399.3, "py": 2243.5}, {"loc_id": 7981, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6658.2, "z": -3259.7, "px": 911.7, "py": 1491.7}, {"loc_id": 7982, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7093.3, "z": 4102.9, "px": 3258.6, "py": 2748.2}, {"loc_id": 7983, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6794.7, "z": 4982.3, "px": 888.4, "py": 2898.3}, {"loc_id": 7983, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Lantern", "count": 1, "x": -6794.7, "z": 4982.3, "px": 888.4, "py": 2898.3}, {"loc_id": 7984, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7689.0, "z": 2108.7, "px": 3360.3, "py": 2407.9}, {"loc_id": 7984, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 7689.0, "z": 2108.7, "px": 3360.3, "py": 2407.9}, {"loc_id": 7985, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6590.3, "z": -69.4, "px": 3172.7, "py": 2036.2}, {"loc_id": 7986, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -707.2, "z": 6590.9, "px": 1927.3, "py": 3172.8}, {"loc_id": 7987, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7228.2, "z": 2890.9, "px": 814.4, "py": 2541.4}, {"loc_id": 7988, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 2947.1, "z": 6922.2, "px": 2551.0, "py": 3229.4}, {"loc_id": 7989, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4990.2, "z": 4408.6, "px": 2899.7, "py": 2800.4}, {"loc_id": 7990, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7235.0, "z": -4731.6, "px": 3282.8, "py": 1240.5}, {"loc_id": 7991, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 5000.9, "z": -5515.9, "px": 2901.5, "py": 1106.6}, {"loc_id": 7992, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -4159.5, "z": 4920.8, "px": 1338.1, "py": 2887.8}, {"loc_id": 7993, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9789.8, "z": -695.5, "px": 3718.8, "py": 1929.3}, {"loc_id": 7994, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7613.4, "z": -1091.1, "px": 748.6, "py": 1861.8}, {"loc_id": 7995, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 1208.3, "z": -6472.7, "px": 2254.2, "py": 943.3}, {"loc_id": 7996, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9404.7, "z": 387.6, "px": 442.9, "py": 2114.2}, {"loc_id": 7997, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9350.6, "z": -713.8, "px": 452.2, "py": 1926.2}, {"loc_id": 7998, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6517.2, "z": -640.3, "px": 935.7, "py": 1938.7}, {"loc_id": 7998, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -6517.2, "z": -640.3, "px": 935.7, "py": 1938.7}, {"loc_id": 7999, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 1091.9, "z": 7488.8, "px": 2234.4, "py": 3326.1}, {"loc_id": 8000, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8522.8, "z": 1332.2, "px": 3502.6, "py": 2275.4}, {"loc_id": 8000, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 8522.8, "z": 1332.2, "px": 3502.6, "py": 2275.4}, {"loc_id": 8001, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9413.3, "z": 1286.4, "px": 441.5, "py": 2267.5}, {"loc_id": 8002, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9663.5, "z": -449.5, "px": 3697.2, "py": 1971.3}, {"loc_id": 8003, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8447.3, "z": -3071.9, "px": 3489.7, "py": 1523.7}, {"loc_id": 8004, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8971.6, "z": 1847.6, "px": 3579.2, "py": 2363.3}, {"loc_id": 8004, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 8971.6, "z": 1847.6, "px": 3579.2, "py": 2363.3}, {"loc_id": 8005, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7686.3, "z": -4294.3, "px": 3359.8, "py": 1315.1}, {"loc_id": 8006, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3837.3, "z": -5770.4, "px": 2702.9, "py": 1063.2}, {"loc_id": 8007, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4470.6, "z": 6138.3, "px": 2811.0, "py": 3095.6}, {"loc_id": 8008, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -3188.4, "z": -6456.8, "px": 1503.8, "py": 946.0}, {"loc_id": 8009, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -1212.0, "z": -5946.4, "px": 1841.2, "py": 1033.1}, {"loc_id": 8009, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -1212.0, "z": -5946.4, "px": 1841.2, "py": 1033.1}, {"loc_id": 8010, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4922.6, "z": 4736.7, "px": 2888.1, "py": 2856.4}, {"loc_id": 8011, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -3338.1, "z": -6215.1, "px": 1478.3, "py": 987.3}, {"loc_id": 8012, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7284.2, "z": 1912.2, "px": 3291.2, "py": 2374.3}, {"loc_id": 8012, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": 7284.2, "z": 1912.2, "px": 3291.2, "py": 2374.3}, {"loc_id": 8013, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7173.3, "z": -3384.0, "px": 3272.2, "py": 1470.5}, {"loc_id": 8014, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3262.8, "z": 6525.2, "px": 2604.9, "py": 3161.6}, {"loc_id": 8015, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9546.2, "z": -1668.2, "px": 418.8, "py": 1763.3}, {"loc_id": 8016, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3903.2, "z": -6388.4, "px": 2714.1, "py": 957.7}, {"loc_id": 8017, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -2298.7, "z": -6710.6, "px": 1655.7, "py": 902.7}, {"loc_id": 8017, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -2298.7, "z": -6710.6, "px": 1655.7, "py": 902.7}, {"loc_id": 8018, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7032.2, "z": -4920.3, "px": 3248.2, "py": 1208.3}, {"loc_id": 8019, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7284.4, "z": 57.1, "px": 3291.2, "py": 2057.7}, {"loc_id": 8020, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -4929.2, "z": 4341.8, "px": 1206.7, "py": 2789.0}, {"loc_id": 8020, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -4929.2, "z": 4341.8, "px": 1206.7, "py": 2789.0}, {"loc_id": 8021, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9736.1, "z": -1092.3, "px": 386.4, "py": 1861.6}, {"loc_id": 8021, "loc_name": "Mistlands_Lighthouse1_new", "item": "Pickable: Tankard_dvergr", "count": 1, "x": -9736.1, "z": -1092.3, "px": 386.4, "py": 1861.6}, {"loc_id": 8022, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7363.2, "z": -2109.5, "px": 3304.7, "py": 1688.0}, {"loc_id": 8023, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8649.2, "z": 1224.7, "px": 3524.1, "py": 2257.0}, {"loc_id": 8024, "loc_name": "Mistlands_Lighthouse1_new", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6263.8, "z": -4683.6, "px": 3117.0, "py": 1248.7}, {"loc_id": 8025, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7684.5, "z": -4542.3, "px": 3359.5, "py": 1272.8}, {"loc_id": 8025, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 7684.5, "z": -4542.3, "px": 3359.5, "py": 1272.8}, {"loc_id": 8026, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7808.6, "z": -2315.8, "px": 3380.7, "py": 1652.8}, {"loc_id": 8026, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 1, "x": 7808.6, "z": -2315.8, "px": 3380.7, "py": 1652.8}, {"loc_id": 8027, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8648.2, "z": -2743.6, "px": 3524.0, "py": 1579.8}, {"loc_id": 8028, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7047.7, "z": 642.8, "px": 845.2, "py": 2157.7}, {"loc_id": 8029, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4468.8, "z": -6985.4, "px": 2810.7, "py": 855.8}, {"loc_id": 8030, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3255.1, "z": 6282.9, "px": 2603.5, "py": 3120.3}, {"loc_id": 8030, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 3255.1, "z": 6282.9, "px": 2603.5, "py": 3120.3}, {"loc_id": 8031, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7306.1, "z": 4414.0, "px": 3294.9, "py": 2801.3}, {"loc_id": 8031, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7306.1, "z": 4414.0, "px": 3294.9, "py": 2801.3}, {"loc_id": 8032, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -1275.4, "z": -6026.3, "px": 1830.3, "py": 1019.5}, {"loc_id": 8033, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9086.1, "z": 951.4, "px": 497.3, "py": 2210.4}, {"loc_id": 8034, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3451.1, "z": 5556.0, "px": 2637.0, "py": 2996.2}, {"loc_id": 8034, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 3451.1, "z": 5556.0, "px": 2637.0, "py": 2996.2}, {"loc_id": 8035, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9153.3, "z": -1844.8, "px": 3610.2, "py": 1733.2}, {"loc_id": 8036, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -5239.5, "z": 5817.9, "px": 1153.8, "py": 3040.9}, {"loc_id": 8037, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -2807.6, "z": 6133.8, "px": 1568.8, "py": 3094.8}, {"loc_id": 8037, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -2807.6, "z": 6133.8, "px": 1568.8, "py": 3094.8}, {"loc_id": 8038, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8507.2, "z": -958.8, "px": 3499.9, "py": 1884.4}, {"loc_id": 8039, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -2806.5, "z": -5755.0, "px": 1569.0, "py": 1065.8}, {"loc_id": 8040, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 5629.6, "z": 6022.5, "px": 3008.8, "py": 3075.8}, {"loc_id": 8041, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8381.6, "z": 964.5, "px": 3478.5, "py": 2212.6}, {"loc_id": 8042, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -2868.4, "z": 6462.6, "px": 1558.5, "py": 3151.0}, {"loc_id": 8042, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -2868.4, "z": 6462.6, "px": 1558.5, "py": 3151.0}, {"loc_id": 8043, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6857.8, "z": -1854.1, "px": 877.6, "py": 1731.6}, {"loc_id": 8044, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9528.3, "z": 1611.5, "px": 3674.2, "py": 2323.0}, {"loc_id": 8045, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4737.5, "z": 6008.2, "px": 2856.5, "py": 3073.4}, {"loc_id": 8046, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 5943.3, "z": 5824.3, "px": 3062.3, "py": 3042.0}, {"loc_id": 8046, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 5943.3, "z": 5824.3, "px": 3062.3, "py": 3042.0}, {"loc_id": 8047, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9667.4, "z": 1608.9, "px": 3697.9, "py": 2322.6}, {"loc_id": 8048, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 5634.6, "z": 3466.8, "px": 3009.6, "py": 2639.7}, {"loc_id": 8048, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 1, "x": 5634.6, "z": 3466.8, "px": 3009.6, "py": 2639.7}, {"loc_id": 8049, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6532.7, "z": 5633.6, "px": 933.1, "py": 3009.5}, {"loc_id": 8049, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6532.7, "z": 5633.6, "px": 933.1, "py": 3009.5}, {"loc_id": 8050, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 2809.1, "z": 5497.7, "px": 2527.4, "py": 2986.3}, {"loc_id": 8050, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 1, "x": 2809.1, "z": 5497.7, "px": 2527.4, "py": 2986.3}, {"loc_id": 8051, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6907.9, "z": -3513.2, "px": 3226.9, "py": 1448.4}, {"loc_id": 8052, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7562.7, "z": 4278.4, "px": 3338.7, "py": 2778.2}, {"loc_id": 8053, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3908.6, "z": 5878.8, "px": 2715.1, "py": 3051.3}, {"loc_id": 8054, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 1344.5, "z": 7622.1, "px": 2277.5, "py": 3348.8}, {"loc_id": 8055, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8005.2, "z": 2763.8, "px": 3414.2, "py": 2519.7}, {"loc_id": 8056, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9354.2, "z": -1909.8, "px": 3644.5, "py": 1722.1}, {"loc_id": 8057, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8314.4, "z": -3402.0, "px": 3467.0, "py": 1467.4}, {"loc_id": 8058, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7235.1, "z": -129.9, "px": 3282.8, "py": 2025.8}, {"loc_id": 8059, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9732.6, "z": -838.4, "px": 3709.0, "py": 1904.9}, {"loc_id": 8060, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6388.6, "z": 2954.0, "px": 3138.3, "py": 2552.1}, {"loc_id": 8060, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6388.6, "z": 2954.0, "px": 3138.3, "py": 2552.1}, {"loc_id": 8061, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6473.5, "z": -3966.0, "px": 943.2, "py": 1371.1}, {"loc_id": 8062, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9543.6, "z": 951.0, "px": 419.2, "py": 2210.3}, {"loc_id": 8062, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 1, "x": -9543.6, "z": 951.0, "px": 419.2, "py": 2210.3}, {"loc_id": 8062, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -9543.6, "z": 951.0, "px": 419.2, "py": 2210.3}, {"loc_id": 8063, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -1927.0, "z": -7109.1, "px": 1719.1, "py": 834.7}, {"loc_id": 8063, "loc_name": "Mistlands_Excavation1", "item": "Pickable: Lantern", "count": 1, "x": -1927.0, "z": -7109.1, "px": 1719.1, "py": 834.7}, {"loc_id": 8064, "loc_name": "Mistlands_Excavation1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6211.9, "z": 3708.7, "px": 987.8, "py": 2681.0}, {"loc_id": 8064, "loc_name": "Mistlands_Excavation1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6211.9, "z": 3708.7, "px": 987.8, "py": 2681.0}, {"loc_id": 8065, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3782.1, "z": -5887.4, "px": 2693.5, "py": 1043.2}, {"loc_id": 8065, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 1, "x": 3782.1, "z": -5887.4, "px": 2693.5, "py": 1043.2}, {"loc_id": 8066, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -5320.4, "z": 6068.3, "px": 1140.0, "py": 3083.7}, {"loc_id": 8067, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -393.3, "z": -6396.6, "px": 1980.9, "py": 956.3}, {"loc_id": 8068, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 1475.3, "z": -6452.1, "px": 2299.8, "py": 946.8}, {"loc_id": 8069, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8636.0, "z": 2037.8, "px": 574.1, "py": 2395.8}, {"loc_id": 8070, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7044.9, "z": 1204.9, "px": 845.7, "py": 2253.6}, {"loc_id": 8071, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -5699.7, "z": 3578.9, "px": 1075.3, "py": 2658.8}, {"loc_id": 8072, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7224.3, "z": 3907.0, "px": 815.1, "py": 2714.8}, {"loc_id": 8073, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9540.0, "z": 1789.1, "px": 3676.2, "py": 2353.3}, {"loc_id": 8073, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 9540.0, "z": 1789.1, "px": 3676.2, "py": 2353.3}, {"loc_id": 8074, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8635.1, "z": 1288.5, "px": 574.3, "py": 2267.9}, {"loc_id": 8075, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3894.0, "z": 6027.7, "px": 2712.6, "py": 3076.7}, {"loc_id": 8075, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 3894.0, "z": 6027.7, "px": 2712.6, "py": 3076.7}, {"loc_id": 8076, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 2179.7, "z": -6406.5, "px": 2420.0, "py": 954.6}, {"loc_id": 8077, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -1908.5, "z": 7235.3, "px": 1722.3, "py": 3282.8}, {"loc_id": 8078, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8631.9, "z": 449.9, "px": 3521.2, "py": 2124.8}, {"loc_id": 8078, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8631.9, "z": 449.9, "px": 3521.2, "py": 2124.8}, {"loc_id": 8079, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7178.6, "z": 4486.4, "px": 3273.1, "py": 2813.7}, {"loc_id": 8079, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 1, "x": 7178.6, "z": 4486.4, "px": 3273.1, "py": 2813.7}, {"loc_id": 8080, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3846.4, "z": -6984.5, "px": 2704.5, "py": 856.0}, {"loc_id": 8081, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7236.1, "z": -2176.0, "px": 3283.0, "py": 1676.6}, {"loc_id": 8081, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 7236.1, "z": -2176.0, "px": 3283.0, "py": 1676.6}, {"loc_id": 8082, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -1158.6, "z": -5956.1, "px": 1850.3, "py": 1031.5}, {"loc_id": 8082, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 1, "x": -1158.6, "z": -5956.1, "px": 1850.3, "py": 1031.5}, {"loc_id": 8083, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7028.9, "z": -2113.9, "px": 848.4, "py": 1687.2}, {"loc_id": 8084, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8756.1, "z": 564.6, "px": 3542.4, "py": 2144.4}, {"loc_id": 8085, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 2378.7, "z": -6465.8, "px": 2454.0, "py": 944.5}, {"loc_id": 8086, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4415.9, "z": -6012.9, "px": 2801.6, "py": 1021.8}, {"loc_id": 8087, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 266.8, "z": 7100.9, "px": 2093.5, "py": 3259.9}, {"loc_id": 8087, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 266.8, "z": 7100.9, "px": 2093.5, "py": 3259.9}, {"loc_id": 8088, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 197.6, "z": 7223.1, "px": 2081.7, "py": 3280.7}, {"loc_id": 8089, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -2167.1, "z": 7156.8, "px": 1678.1, "py": 3269.4}, {"loc_id": 8089, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -2167.1, "z": 7156.8, "px": 1678.1, "py": 3269.4}, {"loc_id": 8089, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: Dverger", "count": 1, "x": -2167.1, "z": 7156.8, "px": 1678.1, "py": 3269.4}, {"loc_id": 8090, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3905.5, "z": -5505.4, "px": 2714.5, "py": 1108.4}, {"loc_id": 8090, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 3905.5, "z": -5505.4, "px": 2714.5, "py": 1108.4}, {"loc_id": 8091, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7432.2, "z": 1163.5, "px": 779.6, "py": 2246.6}, {"loc_id": 8091, "loc_name": "Mistlands_Excavation2", "item": "Pickable: Lantern", "count": 1, "x": -7432.2, "z": 1163.5, "px": 779.6, "py": 2246.6}, {"loc_id": 8091, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7432.2, "z": 1163.5, "px": 779.6, "py": 2246.6}, {"loc_id": 8092, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -835.0, "z": -7482.1, "px": 1905.5, "py": 771.1}, {"loc_id": 8093, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -2045.3, "z": 7358.7, "px": 1698.9, "py": 3303.9}, {"loc_id": 8093, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -2045.3, "z": 7358.7, "px": 1698.9, "py": 3303.9}, {"loc_id": 8094, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3721.6, "z": -5574.1, "px": 2683.2, "py": 1096.7}, {"loc_id": 8095, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6197.6, "z": -4550.0, "px": 3105.7, "py": 1271.5}, {"loc_id": 8096, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 11.4, "z": 7429.3, "px": 2049.9, "py": 3315.9}, {"loc_id": 8096, "loc_name": "Mistlands_Excavation2", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 11.4, "z": 7429.3, "px": 2049.9, "py": 3315.9}, {"loc_id": 8097, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -3206.5, "z": 5318.2, "px": 1500.8, "py": 2955.6}, {"loc_id": 8098, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4225.1, "z": -5451.5, "px": 2769.1, "py": 1117.6}, {"loc_id": 8099, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7096.6, "z": 1333.7, "px": 836.8, "py": 2275.6}, {"loc_id": 8100, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6984.1, "z": -774.0, "px": 3240.0, "py": 1915.9}, {"loc_id": 8101, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 2946.3, "z": 6714.7, "px": 2550.8, "py": 3194.0}, {"loc_id": 8102, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6652.7, "z": 5757.6, "px": 912.6, "py": 3030.6}, {"loc_id": 8103, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8260.5, "z": -391.8, "px": 638.2, "py": 1981.1}, {"loc_id": 8104, "loc_name": "Mistlands_Excavation2", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4806.9, "z": 6199.7, "px": 2868.4, "py": 3106.1}, {"loc_id": 8145, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6337.6, "z": -4288.1, "px": 966.4, "py": 1316.2}, {"loc_id": 8145, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6337.6, "z": -4288.1, "px": 966.4, "py": 1316.2}, {"loc_id": 8145, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6337.6, "z": -4288.1, "px": 966.4, "py": 1316.2}, {"loc_id": 8147, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 1672.6, "z": -7171.2, "px": 2333.5, "py": 824.1}, {"loc_id": 8148, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9670.0, "z": -2373.1, "px": 3698.3, "py": 1643.0}, {"loc_id": 8148, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 9670.0, "z": -2373.1, "px": 3698.3, "py": 1643.0}, {"loc_id": 8148, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 9670.0, "z": -2373.1, "px": 3698.3, "py": 1643.0}, {"loc_id": 8149, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7743.5, "z": 1989.0, "px": 3369.6, "py": 2387.5}, {"loc_id": 8149, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 7743.5, "z": 1989.0, "px": 3369.6, "py": 2387.5}, {"loc_id": 8149, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7743.5, "z": 1989.0, "px": 3369.6, "py": 2387.5}, {"loc_id": 8150, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8195.2, "z": -2882.8, "px": 649.4, "py": 1556.0}, {"loc_id": 8151, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -3974.9, "z": -5302.6, "px": 1369.6, "py": 1143.0}, {"loc_id": 8151, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -3974.9, "z": -5302.6, "px": 1369.6, "py": 1143.0}, {"loc_id": 8152, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -4856.9, "z": 4404.5, "px": 1219.1, "py": 2799.7}, {"loc_id": 8153, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9800.8, "z": 1732.5, "px": 3720.7, "py": 2343.7}, {"loc_id": 8154, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 9024.6, "z": 393.7, "px": 3588.2, "py": 2115.2}, {"loc_id": 8155, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7809.2, "z": 3847.7, "px": 3380.8, "py": 2704.7}, {"loc_id": 8156, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 9339.7, "z": -649.8, "px": 3642.0, "py": 1937.1}, {"loc_id": 8157, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7490.5, "z": -312.7, "px": 769.6, "py": 1994.6}, {"loc_id": 8157, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7490.5, "z": -312.7, "px": 769.6, "py": 1994.6}, {"loc_id": 8158, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7171.9, "z": -3209.7, "px": 3272.0, "py": 1500.2}, {"loc_id": 8158, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 7171.9, "z": -3209.7, "px": 3272.0, "py": 1500.2}, {"loc_id": 8158, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7171.9, "z": -3209.7, "px": 3272.0, "py": 1500.2}, {"loc_id": 8159, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6982.2, "z": 4097.4, "px": 3239.6, "py": 2747.3}, {"loc_id": 8159, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6982.2, "z": 4097.4, "px": 3239.6, "py": 2747.3}, {"loc_id": 8160, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7865.5, "z": -3449.3, "px": 3390.4, "py": 1459.3}, {"loc_id": 8160, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 7865.5, "z": -3449.3, "px": 3390.4, "py": 1459.3}, {"loc_id": 8160, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7865.5, "z": -3449.3, "px": 3390.4, "py": 1459.3}, {"loc_id": 8161, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -2946.1, "z": 6787.0, "px": 1545.2, "py": 3206.3}, {"loc_id": 8161, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -2946.1, "z": 6787.0, "px": 1545.2, "py": 3206.3}, {"loc_id": 8161, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -2946.1, "z": 6787.0, "px": 1545.2, "py": 3206.3}, {"loc_id": 8163, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -2185.7, "z": -7299.6, "px": 1675.0, "py": 802.2}, {"loc_id": 8163, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -2185.7, "z": -7299.6, "px": 1675.0, "py": 802.2}, {"loc_id": 8164, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7492.2, "z": 3582.4, "px": 3326.7, "py": 2659.4}, {"loc_id": 8165, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 1530.2, "z": -7563.2, "px": 2309.2, "py": 757.2}, {"loc_id": 8165, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 1530.2, "z": -7563.2, "px": 2309.2, "py": 757.2}, {"loc_id": 8166, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5309.5, "z": 4541.6, "px": 1141.8, "py": 2823.1}, {"loc_id": 8166, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5309.5, "z": 4541.6, "px": 1141.8, "py": 2823.1}, {"loc_id": 8167, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6215.7, "z": -5625.0, "px": 987.2, "py": 1088.0}, {"loc_id": 8167, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6215.7, "z": -5625.0, "px": 987.2, "py": 1088.0}, {"loc_id": 8167, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6215.7, "z": -5625.0, "px": 987.2, "py": 1088.0}, {"loc_id": 8168, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 1594.7, "z": -7482.9, "px": 2320.2, "py": 770.9}, {"loc_id": 8169, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6472.7, "z": -2421.1, "px": 943.3, "py": 1634.8}, {"loc_id": 8169, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6472.7, "z": -2421.1, "px": 943.3, "py": 1634.8}, {"loc_id": 8169, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6472.7, "z": -2421.1, "px": 943.3, "py": 1634.8}, {"loc_id": 8170, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -5688.3, "z": -4107.8, "px": 1077.2, "py": 1346.9}, {"loc_id": 8170, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5688.3, "z": -4107.8, "px": 1077.2, "py": 1346.9}, {"loc_id": 8170, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5688.3, "z": -4107.8, "px": 1077.2, "py": 1346.9}, {"loc_id": 8171, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6083.6, "z": 1989.9, "px": 3086.3, "py": 2387.6}, {"loc_id": 8171, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6083.6, "z": 1989.9, "px": 3086.3, "py": 2387.6}, {"loc_id": 8172, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6404.1, "z": 3191.8, "px": 3141.0, "py": 2592.7}, {"loc_id": 8173, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -2505.0, "z": -5760.7, "px": 1620.5, "py": 1064.8}, {"loc_id": 8173, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -2505.0, "z": -5760.7, "px": 1620.5, "py": 1064.8}, {"loc_id": 8173, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -2505.0, "z": -5760.7, "px": 1620.5, "py": 1064.8}, {"loc_id": 8174, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7107.6, "z": 2748.2, "px": 835.0, "py": 2517.0}, {"loc_id": 8174, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7107.6, "z": 2748.2, "px": 835.0, "py": 2517.0}, {"loc_id": 8174, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -7107.6, "z": 2748.2, "px": 835.0, "py": 2517.0}, {"loc_id": 8175, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -2356.9, "z": 6655.2, "px": 1645.8, "py": 3183.8}, {"loc_id": 8176, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 318.7, "z": -6839.6, "px": 2102.4, "py": 880.7}, {"loc_id": 8179, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9918.0, "z": -1018.4, "px": 355.3, "py": 1874.2}, {"loc_id": 8179, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -9918.0, "z": -1018.4, "px": 355.3, "py": 1874.2}, {"loc_id": 8180, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6198.1, "z": 1349.6, "px": 990.2, "py": 2278.3}, {"loc_id": 8180, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6198.1, "z": 1349.6, "px": 990.2, "py": 2278.3}, {"loc_id": 8180, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6198.1, "z": 1349.6, "px": 990.2, "py": 2278.3}, {"loc_id": 8181, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7938.8, "z": 4278.1, "px": 3402.9, "py": 2778.1}, {"loc_id": 8182, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8903.8, "z": -3198.9, "px": 3567.6, "py": 1502.1}, {"loc_id": 8182, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8903.8, "z": -3198.9, "px": 3567.6, "py": 1502.1}, {"loc_id": 8182, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 8903.8, "z": -3198.9, "px": 3567.6, "py": 1502.1}, {"loc_id": 8183, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8116.6, "z": -951.9, "px": 662.8, "py": 1885.5}, {"loc_id": 8183, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8116.6, "z": -951.9, "px": 662.8, "py": 1885.5}, {"loc_id": 8184, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -5440.5, "z": -5437.0, "px": 1119.5, "py": 1120.1}, {"loc_id": 8184, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5440.5, "z": -5437.0, "px": 1119.5, "py": 1120.1}, {"loc_id": 8184, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5440.5, "z": -5437.0, "px": 1119.5, "py": 1120.1}, {"loc_id": 8185, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8769.2, "z": -2622.8, "px": 3544.6, "py": 1600.4}, {"loc_id": 8185, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8769.2, "z": -2622.8, "px": 3544.6, "py": 1600.4}, {"loc_id": 8185, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 8769.2, "z": -2622.8, "px": 3544.6, "py": 1600.4}, {"loc_id": 8186, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -1600.6, "z": -6200.9, "px": 1774.8, "py": 989.7}, {"loc_id": 8186, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -1600.6, "z": -6200.9, "px": 1774.8, "py": 989.7}, {"loc_id": 8187, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9605.3, "z": -1727.6, "px": 3687.3, "py": 1753.2}, {"loc_id": 8187, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 9605.3, "z": -1727.6, "px": 3687.3, "py": 1753.2}, {"loc_id": 8188, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8372.8, "z": -4228.5, "px": 619.0, "py": 1326.3}, {"loc_id": 8188, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8372.8, "z": -4228.5, "px": 619.0, "py": 1326.3}, {"loc_id": 8189, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8309.3, "z": 584.9, "px": 629.9, "py": 2147.8}, {"loc_id": 8189, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8309.3, "z": 584.9, "px": 629.9, "py": 2147.8}, {"loc_id": 8189, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8309.3, "z": 584.9, "px": 629.9, "py": 2147.8}, {"loc_id": 8190, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 5571.9, "z": 2496.4, "px": 2998.9, "py": 2474.1}, {"loc_id": 8190, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 5571.9, "z": 2496.4, "px": 2998.9, "py": 2474.1}, {"loc_id": 8191, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 4421.5, "z": 6595.9, "px": 2802.6, "py": 3173.7}, {"loc_id": 8192, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7612.2, "z": 2051.6, "px": 3347.1, "py": 2398.1}, {"loc_id": 8193, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6584.2, "z": -2501.2, "px": 3171.7, "py": 1621.1}, {"loc_id": 8193, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6584.2, "z": -2501.2, "px": 3171.7, "py": 1621.1}, {"loc_id": 8194, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9652.5, "z": 2315.4, "px": 400.6, "py": 2443.2}, {"loc_id": 8194, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -9652.5, "z": 2315.4, "px": 400.6, "py": 2443.2}, {"loc_id": 8195, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6087.6, "z": -1082.8, "px": 3087.0, "py": 1863.2}, {"loc_id": 8195, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6087.6, "z": -1082.8, "px": 3087.0, "py": 1863.2}, {"loc_id": 8197, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9401.2, "z": -1352.7, "px": 3652.5, "py": 1817.1}, {"loc_id": 8197, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 9401.2, "z": -1352.7, "px": 3652.5, "py": 1817.1}, {"loc_id": 8198, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4410.4, "z": 5311.5, "px": 2800.7, "py": 2954.5}, {"loc_id": 8198, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 4410.4, "z": 5311.5, "px": 2800.7, "py": 2954.5}, {"loc_id": 8198, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 4410.4, "z": 5311.5, "px": 2800.7, "py": 2954.5}, {"loc_id": 8199, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9659.8, "z": 2492.6, "px": 3696.6, "py": 2473.4}, {"loc_id": 8199, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 9659.8, "z": 2492.6, "px": 3696.6, "py": 2473.4}, {"loc_id": 8200, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7995.7, "z": -3254.1, "px": 3412.6, "py": 1492.6}, {"loc_id": 8200, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 7995.7, "z": -3254.1, "px": 3412.6, "py": 1492.6}, {"loc_id": 8201, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 3007.4, "z": -7107.6, "px": 2561.3, "py": 835.0}, {"loc_id": 8202, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -3967.4, "z": 6155.8, "px": 1370.9, "py": 3098.6}, {"loc_id": 8202, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -3967.4, "z": 6155.8, "px": 1370.9, "py": 3098.6}, {"loc_id": 8203, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 5114.7, "z": 3529.4, "px": 2920.9, "py": 2650.4}, {"loc_id": 8203, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 5114.7, "z": 3529.4, "px": 2920.9, "py": 2650.4}, {"loc_id": 8204, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -5771.1, "z": 1269.4, "px": 1063.1, "py": 2264.6}, {"loc_id": 8204, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5771.1, "z": 1269.4, "px": 1063.1, "py": 2264.6}, {"loc_id": 8205, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -5697.4, "z": -4289.6, "px": 1075.6, "py": 1315.9}, {"loc_id": 8205, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5697.4, "z": -4289.6, "px": 1075.6, "py": 1315.9}, {"loc_id": 8205, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5697.4, "z": -4289.6, "px": 1075.6, "py": 1315.9}, {"loc_id": 8207, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -5890.6, "z": 2685.9, "px": 1042.7, "py": 2506.4}, {"loc_id": 8207, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5890.6, "z": 2685.9, "px": 1042.7, "py": 2506.4}, {"loc_id": 8207, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5890.6, "z": 2685.9, "px": 1042.7, "py": 2506.4}, {"loc_id": 8208, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7095.7, "z": -3083.4, "px": 3259.0, "py": 1521.8}, {"loc_id": 8209, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6216.1, "z": 4165.2, "px": 987.1, "py": 2758.9}, {"loc_id": 8210, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7033.0, "z": 5241.9, "px": 3248.3, "py": 2942.6}, {"loc_id": 8210, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 7033.0, "z": 5241.9, "px": 3248.3, "py": 2942.6}, {"loc_id": 8210, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7033.0, "z": 5241.9, "px": 3248.3, "py": 2942.6}, {"loc_id": 8211, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 9157.9, "z": -3017.4, "px": 3610.9, "py": 1533.0}, {"loc_id": 8211, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 9157.9, "z": -3017.4, "px": 3610.9, "py": 1533.0}, {"loc_id": 8211, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 9157.9, "z": -3017.4, "px": 3610.9, "py": 1533.0}, {"loc_id": 8214, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -9154.2, "z": 182.3, "px": 485.7, "py": 2079.1}, {"loc_id": 8214, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -9154.2, "z": 182.3, "px": 485.7, "py": 2079.1}, {"loc_id": 8214, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -9154.2, "z": 182.3, "px": 485.7, "py": 2079.1}, {"loc_id": 8215, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -830.4, "z": 7110.2, "px": 1906.3, "py": 3261.5}, {"loc_id": 8215, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -830.4, "z": 7110.2, "px": 1906.3, "py": 3261.5}, {"loc_id": 8215, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -830.4, "z": 7110.2, "px": 1906.3, "py": 3261.5}, {"loc_id": 8216, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 1159.1, "z": 7805.0, "px": 2245.8, "py": 3380.1}, {"loc_id": 8217, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 1547.3, "z": 7625.6, "px": 2312.1, "py": 3349.4}, {"loc_id": 8217, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 1547.3, "z": 7625.6, "px": 2312.1, "py": 3349.4}, {"loc_id": 8218, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 1155.3, "z": 6528.3, "px": 2245.2, "py": 3162.2}, {"loc_id": 8218, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 1155.3, "z": 6528.3, "px": 2245.2, "py": 3162.2}, {"loc_id": 8218, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 1155.3, "z": 6528.3, "px": 2245.2, "py": 3162.2}, {"loc_id": 8219, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8586.2, "z": -2750.8, "px": 582.6, "py": 1578.5}, {"loc_id": 8219, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8586.2, "z": -2750.8, "px": 582.6, "py": 1578.5}, {"loc_id": 8220, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -1269.3, "z": -7555.4, "px": 1831.4, "py": 758.5}, {"loc_id": 8220, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -1269.3, "z": -7555.4, "px": 1831.4, "py": 758.5}, {"loc_id": 8222, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -7365.2, "z": -705.8, "px": 791.0, "py": 1927.5}, {"loc_id": 8222, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7365.2, "z": -705.8, "px": 791.0, "py": 1927.5}, {"loc_id": 8224, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 6974.6, "z": 5377.8, "px": 3238.3, "py": 2965.8}, {"loc_id": 8224, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6974.6, "z": 5377.8, "px": 3238.3, "py": 2965.8}, {"loc_id": 8226, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -3258.2, "z": 5442.2, "px": 1491.9, "py": 2976.8}, {"loc_id": 8226, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -3258.2, "z": 5442.2, "px": 1491.9, "py": 2976.8}, {"loc_id": 8227, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 969.9, "z": -7232.3, "px": 2213.5, "py": 813.7}, {"loc_id": 8227, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 969.9, "z": -7232.3, "px": 2213.5, "py": 813.7}, {"loc_id": 8228, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8713.6, "z": -2946.4, "px": 560.9, "py": 1545.1}, {"loc_id": 8228, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8713.6, "z": -2946.4, "px": 560.9, "py": 1545.1}, {"loc_id": 8228, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8713.6, "z": -2946.4, "px": 560.9, "py": 1545.1}, {"loc_id": 8229, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -7686.5, "z": 965.5, "px": 736.2, "py": 2212.8}, {"loc_id": 8229, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7686.5, "z": 965.5, "px": 736.2, "py": 2212.8}, {"loc_id": 8229, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -7686.5, "z": 965.5, "px": 736.2, "py": 2212.8}, {"loc_id": 8230, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 2304.2, "z": 7426.9, "px": 2441.3, "py": 3315.5}, {"loc_id": 8230, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 2304.2, "z": 7426.9, "px": 2441.3, "py": 3315.5}, {"loc_id": 8231, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -6390.3, "z": -2423.5, "px": 957.4, "py": 1634.4}, {"loc_id": 8231, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6390.3, "z": -2423.5, "px": 957.4, "py": 1634.4}, {"loc_id": 8231, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6390.3, "z": -2423.5, "px": 957.4, "py": 1634.4}, {"loc_id": 8232, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 5963.2, "z": -4617.2, "px": 3065.7, "py": 1260.0}, {"loc_id": 8232, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 5963.2, "z": -4617.2, "px": 3065.7, "py": 1260.0}, {"loc_id": 8233, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -5943.2, "z": -904.4, "px": 1033.7, "py": 1893.6}, {"loc_id": 8233, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5943.2, "z": -904.4, "px": 1033.7, "py": 1893.6}, {"loc_id": 8233, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5943.2, "z": -904.4, "px": 1033.7, "py": 1893.6}, {"loc_id": 8234, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6399.8, "z": 886.1, "px": 3140.2, "py": 2199.2}, {"loc_id": 8235, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 1154.2, "z": -7691.7, "px": 2245.0, "py": 735.3}, {"loc_id": 8235, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 1154.2, "z": -7691.7, "px": 2245.0, "py": 735.3}, {"loc_id": 8235, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 1154.2, "z": -7691.7, "px": 2245.0, "py": 735.3}, {"loc_id": 8237, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8837.1, "z": 2870.9, "px": 539.8, "py": 2538.0}, {"loc_id": 8237, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8837.1, "z": 2870.9, "px": 539.8, "py": 2538.0}, {"loc_id": 8238, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4356.9, "z": 4875.6, "px": 2791.6, "py": 2880.1}, {"loc_id": 8238, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 4356.9, "z": 4875.6, "px": 2791.6, "py": 2880.1}, {"loc_id": 8238, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 4356.9, "z": 4875.6, "px": 2791.6, "py": 2880.1}, {"loc_id": 8239, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 4661.4, "z": -4023.5, "px": 2843.5, "py": 1361.3}, {"loc_id": 8239, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 4661.4, "z": -4023.5, "px": 2843.5, "py": 1361.3}, {"loc_id": 8240, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 8322.5, "z": 2757.0, "px": 3468.4, "py": 2518.5}, {"loc_id": 8241, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 7548.1, "z": 3060.3, "px": 3336.2, "py": 2570.3}, {"loc_id": 8242, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": -8898.8, "z": -251.5, "px": 529.3, "py": 2005.1}, {"loc_id": 8242, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8898.8, "z": -251.5, "px": 529.3, "py": 2005.1}, {"loc_id": 8242, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8898.8, "z": -251.5, "px": 529.3, "py": 2005.1}, {"loc_id": 8243, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": 8321.7, "z": 2691.4, "px": 3468.2, "py": 2507.3}, {"loc_id": 8243, "loc_name": "Mistlands_Harbour1", "item": "Drops: DvergrNeedle[1-1]", "count": 1, "x": 8321.7, "z": 2691.4, "px": 3468.2, "py": 2507.3}, {"loc_id": 8243, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8321.7, "z": 2691.4, "px": 3468.2, "py": 2507.3}, {"loc_id": 8244, "loc_name": "Mistlands_Harbour1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8702.1, "z": 1086.7, "px": 562.8, "py": 2233.5}, {"loc_id": 8695, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -697.6, "z": -7353.7, "px": 1928.9, "py": 793.0}, {"loc_id": 8696, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5291.3, "z": 2856.0, "px": 1145.0, "py": 2535.4}, {"loc_id": 8696, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5291.3, "z": 2856.0, "px": 1145.0, "py": 2535.4}, {"loc_id": 8698, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7059.3, "z": 4867.5, "px": 843.2, "py": 2878.7}, {"loc_id": 8699, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6119.6, "z": 1075.4, "px": 1003.6, "py": 2231.5}, {"loc_id": 8699, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6119.6, "z": 1075.4, "px": 1003.6, "py": 2231.5}, {"loc_id": 8700, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -1279.7, "z": 7483.7, "px": 1829.6, "py": 3325.2}, {"loc_id": 8700, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -1279.7, "z": 7483.7, "px": 1829.6, "py": 3325.2}, {"loc_id": 8701, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8496.6, "z": -3270.8, "px": 3498.1, "py": 1489.8}, {"loc_id": 8704, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 7211.9, "z": 4758.4, "px": 3278.8, "py": 2860.1}, {"loc_id": 8704, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7211.9, "z": 4758.4, "px": 3278.8, "py": 2860.1}, {"loc_id": 8705, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8824.8, "z": 1206.1, "px": 3554.1, "py": 2253.8}, {"loc_id": 8706, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7422.4, "z": -3213.9, "px": 781.2, "py": 1499.5}, {"loc_id": 8708, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 5765.9, "z": 5073.4, "px": 3032.0, "py": 2913.9}, {"loc_id": 8710, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -1646.4, "z": 6468.3, "px": 1767.0, "py": 3151.9}, {"loc_id": 8711, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8148.1, "z": -3630.9, "px": 3438.6, "py": 1428.3}, {"loc_id": 8712, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7664.4, "z": -779.6, "px": 739.9, "py": 1914.9}, {"loc_id": 8712, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -7664.4, "z": -779.6, "px": 739.9, "py": 1914.9}, {"loc_id": 8713, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 2034.3, "z": -6070.2, "px": 2395.2, "py": 1012.0}, {"loc_id": 8714, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 5171.0, "z": 5627.4, "px": 2930.5, "py": 3008.4}, {"loc_id": 8715, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6377.5, "z": -3901.3, "px": 959.6, "py": 1382.2}, {"loc_id": 8716, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 8039.9, "z": 3242.7, "px": 3420.1, "py": 2601.4}, {"loc_id": 8717, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6090.6, "z": -43.8, "px": 3087.5, "py": 2040.5}, {"loc_id": 8717, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6090.6, "z": -43.8, "px": 3087.5, "py": 2040.5}, {"loc_id": 8718, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 5682.5, "z": 5318.2, "px": 3017.8, "py": 2955.6}, {"loc_id": 8719, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 4548.8, "z": -4780.3, "px": 2824.3, "py": 1232.2}, {"loc_id": 8722, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -7532.8, "z": 2840.5, "px": 762.4, "py": 2532.8}, {"loc_id": 8723, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 9917.8, "z": -644.8, "px": 3740.6, "py": 1938.0}, {"loc_id": 8724, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6771.5, "z": -2967.2, "px": 892.3, "py": 1541.6}, {"loc_id": 8724, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6771.5, "z": -2967.2, "px": 892.3, "py": 1541.6}, {"loc_id": 8726, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -3047.0, "z": -5822.6, "px": 1528.0, "py": 1054.3}, {"loc_id": 8726, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -3047.0, "z": -5822.6, "px": 1528.0, "py": 1054.3}, {"loc_id": 8727, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8506.5, "z": 582.9, "px": 596.2, "py": 2147.5}, {"loc_id": 8727, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8506.5, "z": 582.9, "px": 596.2, "py": 2147.5}, {"loc_id": 8728, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 9577.6, "z": 333.6, "px": 3682.6, "py": 2104.9}, {"loc_id": 8729, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8269.1, "z": -64.4, "px": 636.7, "py": 2037.0}, {"loc_id": 8729, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8269.1, "z": -64.4, "px": 636.7, "py": 2037.0}, {"loc_id": 8731, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5044.4, "z": -3736.3, "px": 1187.1, "py": 1410.3}, {"loc_id": 8734, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6029.4, "z": 1836.3, "px": 3077.0, "py": 2361.4}, {"loc_id": 8734, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6029.4, "z": 1836.3, "px": 3077.0, "py": 2361.4}, {"loc_id": 8736, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 1092.6, "z": 6847.8, "px": 2234.5, "py": 3216.7}, {"loc_id": 8736, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 1092.6, "z": 6847.8, "px": 2234.5, "py": 3216.7}, {"loc_id": 8737, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 7299.8, "z": -4934.9, "px": 3293.8, "py": 1205.8}, {"loc_id": 8739, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5908.7, "z": 2887.8, "px": 1039.6, "py": 2540.9}, {"loc_id": 8739, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5908.7, "z": 2887.8, "px": 1039.6, "py": 2540.9}, {"loc_id": 8741, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 9165.8, "z": -2009.0, "px": 3612.3, "py": 1705.1}, {"loc_id": 8742, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5773.3, "z": -6165.1, "px": 1062.7, "py": 995.8}, {"loc_id": 8742, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5773.3, "z": -6165.1, "px": 1062.7, "py": 995.8}, {"loc_id": 8743, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8758.8, "z": 1211.3, "px": 553.2, "py": 2254.7}, {"loc_id": 8743, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8758.8, "z": 1211.3, "px": 553.2, "py": 2254.7}, {"loc_id": 8745, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 9712.5, "z": -61.3, "px": 3705.6, "py": 2037.5}, {"loc_id": 8746, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6537.2, "z": 5567.7, "px": 932.3, "py": 2998.2}, {"loc_id": 8749, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 5933.8, "z": -4182.5, "px": 3060.7, "py": 1334.2}, {"loc_id": 8749, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 5933.8, "z": -4182.5, "px": 3060.7, "py": 1334.2}, {"loc_id": 8750, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 3281.7, "z": 5510.2, "px": 2608.1, "py": 2988.4}, {"loc_id": 8754, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -1355.7, "z": -7433.7, "px": 1816.6, "py": 779.3}, {"loc_id": 8755, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 4077.3, "z": -5202.9, "px": 2743.9, "py": 1160.0}, {"loc_id": 8755, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 4077.3, "z": -5202.9, "px": 2743.9, "py": 1160.0}, {"loc_id": 8756, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 2761.8, "z": 6275.7, "px": 2519.3, "py": 3119.1}, {"loc_id": 8757, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8491.9, "z": 1723.3, "px": 598.7, "py": 2342.1}, {"loc_id": 8759, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 4227.7, "z": -7032.8, "px": 2769.5, "py": 847.7}, {"loc_id": 8760, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 5300.4, "z": 2984.1, "px": 2952.6, "py": 2557.3}, {"loc_id": 8762, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6284.9, "z": 1297.1, "px": 975.4, "py": 2269.4}, {"loc_id": 8763, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 7493.9, "z": -3430.5, "px": 3327.0, "py": 1462.5}, {"loc_id": 8763, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7493.9, "z": -3430.5, "px": 3327.0, "py": 1462.5}, {"loc_id": 8764, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -9329.6, "z": -2538.4, "px": 455.7, "py": 1614.8}, {"loc_id": 8764, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -9329.6, "z": -2538.4, "px": 455.7, "py": 1614.8}, {"loc_id": 8765, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8934.3, "z": -2324.3, "px": 523.2, "py": 1651.3}, {"loc_id": 8766, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 8246.4, "z": 2988.2, "px": 3455.4, "py": 2558.0}, {"loc_id": 8767, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8329.7, "z": 3076.8, "px": 3469.6, "py": 2573.1}, {"loc_id": 8769, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8784.8, "z": -329.7, "px": 548.7, "py": 1991.7}, {"loc_id": 8769, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8784.8, "z": -329.7, "px": 548.7, "py": 1991.7}, {"loc_id": 8770, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6034.7, "z": 2260.6, "px": 3077.9, "py": 2433.8}, {"loc_id": 8771, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7720.3, "z": -4171.4, "px": 3365.6, "py": 1336.1}, {"loc_id": 8772, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 9325.5, "z": -1426.6, "px": 3639.6, "py": 1804.5}, {"loc_id": 8773, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5676.6, "z": -6190.5, "px": 1079.2, "py": 991.5}, {"loc_id": 8774, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 5509.1, "z": 3516.2, "px": 2988.2, "py": 2648.1}, {"loc_id": 8774, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 5509.1, "z": 3516.2, "px": 2988.2, "py": 2648.1}, {"loc_id": 8775, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6545.9, "z": -1518.5, "px": 3165.2, "py": 1788.8}, {"loc_id": 8775, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6545.9, "z": -1518.5, "px": 3165.2, "py": 1788.8}, {"loc_id": 8776, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 8789.9, "z": -700.7, "px": 3548.1, "py": 1928.4}, {"loc_id": 8778, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7301.6, "z": 2833.2, "px": 801.9, "py": 2531.5}, {"loc_id": 8778, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -7301.6, "z": 2833.2, "px": 801.9, "py": 2531.5}, {"loc_id": 8779, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -770.3, "z": -7851.9, "px": 1916.5, "py": 707.9}, {"loc_id": 8780, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 4949.4, "z": -5495.9, "px": 2892.7, "py": 1110.0}, {"loc_id": 8782, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -1330.9, "z": -6140.0, "px": 1820.9, "py": 1000.1}, {"loc_id": 8782, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -1330.9, "z": -6140.0, "px": 1820.9, "py": 1000.1}, {"loc_id": 8783, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7631.9, "z": -209.5, "px": 3350.5, "py": 2012.2}, {"loc_id": 8784, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7669.1, "z": -974.5, "px": 739.1, "py": 1881.7}, {"loc_id": 8784, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -7669.1, "z": -974.5, "px": 739.1, "py": 1881.7}, {"loc_id": 8785, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 9128.7, "z": 1229.2, "px": 3606.0, "py": 2257.8}, {"loc_id": 8789, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 8823.8, "z": -3541.4, "px": 3553.9, "py": 1443.6}, {"loc_id": 8790, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -7539.7, "z": 2872.8, "px": 761.2, "py": 2538.3}, {"loc_id": 8791, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6527.8, "z": -4404.6, "px": 3162.1, "py": 1296.3}, {"loc_id": 8792, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -3398.2, "z": 5352.8, "px": 1468.0, "py": 2961.5}, {"loc_id": 8793, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -729.5, "z": -6887.2, "px": 1923.5, "py": 872.6}, {"loc_id": 8794, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 4819.3, "z": -4094.4, "px": 2870.5, "py": 1349.2}, {"loc_id": 8794, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 4819.3, "z": -4094.4, "px": 2870.5, "py": 1349.2}, {"loc_id": 8797, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6294.4, "z": 5324.2, "px": 973.8, "py": 2956.7}, {"loc_id": 8797, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6294.4, "z": 5324.2, "px": 973.8, "py": 2956.7}, {"loc_id": 8798, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5415.8, "z": 4420.9, "px": 1123.7, "py": 2802.5}, {"loc_id": 8800, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8001.2, "z": -1909.9, "px": 3413.5, "py": 1722.0}, {"loc_id": 8800, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 8001.2, "z": -1909.9, "px": 3413.5, "py": 1722.0}, {"loc_id": 8801, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6421.0, "z": 1019.3, "px": 952.1, "py": 2222.0}, {"loc_id": 8801, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6421.0, "z": 1019.3, "px": 952.1, "py": 2222.0}, {"loc_id": 8802, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -3208.4, "z": -7280.0, "px": 1500.4, "py": 805.5}, {"loc_id": 8803, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 1492.0, "z": -7466.2, "px": 2302.6, "py": 773.8}, {"loc_id": 8804, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7673.9, "z": -3073.1, "px": 738.3, "py": 1523.5}, {"loc_id": 8805, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6933.3, "z": -2167.5, "px": 864.7, "py": 1678.1}, {"loc_id": 8807, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 3265.9, "z": 6461.6, "px": 2605.4, "py": 3150.8}, {"loc_id": 8807, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 3265.9, "z": 6461.6, "px": 2605.4, "py": 3150.8}, {"loc_id": 8808, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 5447.3, "z": 5592.1, "px": 2977.7, "py": 3002.4}, {"loc_id": 8809, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -4270.8, "z": 4237.7, "px": 1319.1, "py": 2771.2}, {"loc_id": 8809, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -4270.8, "z": 4237.7, "px": 1319.1, "py": 2771.2}, {"loc_id": 8810, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -1458.3, "z": -6483.6, "px": 1799.1, "py": 941.5}, {"loc_id": 8810, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -1458.3, "z": -6483.6, "px": 1799.1, "py": 941.5}, {"loc_id": 8812, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 3686.1, "z": -5521.2, "px": 2677.1, "py": 1105.7}, {"loc_id": 8815, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 4372.2, "z": 4547.3, "px": 2794.2, "py": 2824.1}, {"loc_id": 8816, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 7895.7, "z": 1647.0, "px": 3395.5, "py": 2329.1}, {"loc_id": 8818, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -3586.3, "z": 5106.6, "px": 1435.9, "py": 2919.5}, {"loc_id": 8818, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -3586.3, "z": 5106.6, "px": 1435.9, "py": 2919.5}, {"loc_id": 8820, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 1713.1, "z": -6980.5, "px": 2340.4, "py": 856.7}, {"loc_id": 8821, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 4988.5, "z": 5448.0, "px": 2899.4, "py": 2977.8}, {"loc_id": 8821, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 4988.5, "z": 5448.0, "px": 2899.4, "py": 2977.8}, {"loc_id": 8823, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -4620.4, "z": -3733.7, "px": 1259.5, "py": 1410.8}, {"loc_id": 8824, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 3327.5, "z": 6246.6, "px": 2615.9, "py": 3114.1}, {"loc_id": 8825, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8905.8, "z": -1592.2, "px": 3567.9, "py": 1776.3}, {"loc_id": 8825, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 8905.8, "z": -1592.2, "px": 3567.9, "py": 1776.3}, {"loc_id": 8828, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 4685.4, "z": 5911.9, "px": 2847.6, "py": 3057.0}, {"loc_id": 8830, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6130.4, "z": 1349.4, "px": 1001.7, "py": 2278.3}, {"loc_id": 8831, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6951.4, "z": 3949.1, "px": 3234.4, "py": 2722.0}, {"loc_id": 8832, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6873.6, "z": 1177.0, "px": 874.9, "py": 2248.9}, {"loc_id": 8832, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6873.6, "z": 1177.0, "px": 874.9, "py": 2248.9}, {"loc_id": 8836, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6611.1, "z": 5118.4, "px": 3176.3, "py": 2921.5}, {"loc_id": 8836, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6611.1, "z": 5118.4, "px": 3176.3, "py": 2921.5}, {"loc_id": 8837, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 8052.3, "z": 2000.1, "px": 3422.3, "py": 2389.4}, {"loc_id": 8838, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 2034.3, "z": -6926.4, "px": 2395.2, "py": 865.9}, {"loc_id": 8839, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 4248.6, "z": -4378.0, "px": 2773.1, "py": 1300.8}, {"loc_id": 8840, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -4629.5, "z": -6724.9, "px": 1257.9, "py": 900.3}, {"loc_id": 8841, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6286.8, "z": 3567.1, "px": 975.1, "py": 2656.8}, {"loc_id": 8842, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 5883.4, "z": 1814.6, "px": 3052.1, "py": 2357.7}, {"loc_id": 8844, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5768.5, "z": -5387.6, "px": 1063.5, "py": 1128.5}, {"loc_id": 8846, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7753.2, "z": -960.8, "px": 724.8, "py": 1884.0}, {"loc_id": 8847, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -745.7, "z": -6711.6, "px": 1920.7, "py": 902.6}, {"loc_id": 8847, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -745.7, "z": -6711.6, "px": 1920.7, "py": 902.6}, {"loc_id": 8849, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -4402.4, "z": -5208.4, "px": 1296.7, "py": 1159.1}, {"loc_id": 8850, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7874.4, "z": 128.7, "px": 3391.9, "py": 2070.0}, {"loc_id": 8852, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -2327.4, "z": 5504.7, "px": 1650.8, "py": 2987.5}, {"loc_id": 8852, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -2327.4, "z": 5504.7, "px": 1650.8, "py": 2987.5}, {"loc_id": 8853, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8078.7, "z": 3849.6, "px": 3426.8, "py": 2705.0}, {"loc_id": 8854, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 4481.8, "z": -5993.7, "px": 2812.9, "py": 1025.1}, {"loc_id": 8857, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 9390.1, "z": 1531.8, "px": 3650.6, "py": 2309.4}, {"loc_id": 8859, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7111.5, "z": 1400.5, "px": 834.3, "py": 2287.0}, {"loc_id": 8860, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5309.8, "z": -5646.3, "px": 1141.8, "py": 1084.4}, {"loc_id": 8861, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -2772.0, "z": 6694.5, "px": 1574.9, "py": 3190.5}, {"loc_id": 8861, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -2772.0, "z": 6694.5, "px": 1574.9, "py": 3190.5}, {"loc_id": 8862, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7413.7, "z": -2534.9, "px": 782.7, "py": 1615.4}, {"loc_id": 8862, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -7413.7, "z": -2534.9, "px": 782.7, "py": 1615.4}, {"loc_id": 8863, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8680.4, "z": 2233.0, "px": 566.5, "py": 2429.1}, {"loc_id": 8865, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8880.1, "z": 1666.7, "px": 532.5, "py": 2332.5}, {"loc_id": 8867, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7600.9, "z": -882.9, "px": 750.8, "py": 1897.3}, {"loc_id": 8867, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -7600.9, "z": -882.9, "px": 750.8, "py": 1897.3}, {"loc_id": 8868, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 7001.3, "z": 1683.3, "px": 3242.9, "py": 2335.3}, {"loc_id": 8868, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7001.3, "z": 1683.3, "px": 3242.9, "py": 2335.3}, {"loc_id": 8870, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 4056.7, "z": -4883.5, "px": 2740.3, "py": 1214.5}, {"loc_id": 8871, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 4862.5, "z": 5742.1, "px": 2877.9, "py": 3028.0}, {"loc_id": 8872, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5198.7, "z": -3922.1, "px": 1160.8, "py": 1378.6}, {"loc_id": 8872, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5198.7, "z": -3922.1, "px": 1160.8, "py": 1378.6}, {"loc_id": 8873, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -9350.8, "z": -2476.9, "px": 452.1, "py": 1625.3}, {"loc_id": 8875, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 3095.0, "z": 7235.2, "px": 2576.2, "py": 3282.8}, {"loc_id": 8875, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 3095.0, "z": 7235.2, "px": 2576.2, "py": 3282.8}, {"loc_id": 8876, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -3881.7, "z": 6566.5, "px": 1385.5, "py": 3168.7}, {"loc_id": 8877, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 9541.1, "z": 2484.9, "px": 3676.3, "py": 2472.1}, {"loc_id": 8878, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 1470.7, "z": -7658.3, "px": 2299.0, "py": 741.0}, {"loc_id": 8880, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6335.0, "z": -1141.4, "px": 966.8, "py": 1853.2}, {"loc_id": 8881, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5523.8, "z": -2607.9, "px": 1105.3, "py": 1602.9}, {"loc_id": 8881, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5523.8, "z": -2607.9, "px": 1105.3, "py": 1602.9}, {"loc_id": 8883, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 4206.3, "z": -4799.9, "px": 2765.9, "py": 1228.8}, {"loc_id": 8884, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8177.8, "z": -1874.6, "px": 3443.7, "py": 1728.1}, {"loc_id": 8885, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 5721.6, "z": -1872.5, "px": 3024.5, "py": 1728.4}, {"loc_id": 8885, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 5721.6, "z": -1872.5, "px": 3024.5, "py": 1728.4}, {"loc_id": 8889, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -4076.1, "z": 5239.9, "px": 1352.3, "py": 2942.3}, {"loc_id": 8890, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 4469.6, "z": 5498.7, "px": 2810.8, "py": 2986.4}, {"loc_id": 8892, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 9848.2, "z": -560.6, "px": 3728.8, "py": 1952.3}, {"loc_id": 8892, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 9848.2, "z": -560.6, "px": 3728.8, "py": 1952.3}, {"loc_id": 8893, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 4246.4, "z": 4419.6, "px": 2772.7, "py": 2802.3}, {"loc_id": 8894, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6276.3, "z": -4529.2, "px": 976.8, "py": 1275.0}, {"loc_id": 8895, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 7046.2, "z": -838.0, "px": 3250.6, "py": 1905.0}, {"loc_id": 8896, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -7616.3, "z": 2345.1, "px": 748.2, "py": 2448.2}, {"loc_id": 8898, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7980.0, "z": -4620.0, "px": 686.1, "py": 1259.5}, {"loc_id": 8898, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -7980.0, "z": -4620.0, "px": 686.1, "py": 1259.5}, {"loc_id": 8899, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 4139.3, "z": -5123.3, "px": 2754.4, "py": 1173.6}, {"loc_id": 8899, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 4139.3, "z": -5123.3, "px": 2754.4, "py": 1173.6}, {"loc_id": 8900, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5289.6, "z": 4741.2, "px": 1145.2, "py": 2857.2}, {"loc_id": 8901, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 7253.5, "z": -50.5, "px": 3285.9, "py": 2039.4}, {"loc_id": 8901, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7253.5, "z": -50.5, "px": 3285.9, "py": 2039.4}, {"loc_id": 8902, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5124.3, "z": 3074.2, "px": 1173.5, "py": 2572.7}, {"loc_id": 8902, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5124.3, "z": 3074.2, "px": 1173.5, "py": 2572.7}, {"loc_id": 8904, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -9423.1, "z": 516.9, "px": 439.8, "py": 2136.2}, {"loc_id": 8904, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -9423.1, "z": 516.9, "px": 439.8, "py": 2136.2}, {"loc_id": 8905, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8107.8, "z": -4430.6, "px": 664.3, "py": 1291.8}, {"loc_id": 8906, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 9158.9, "z": -1736.8, "px": 3611.1, "py": 1751.6}, {"loc_id": 8908, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8631.0, "z": 1447.3, "px": 3521.0, "py": 2295.0}, {"loc_id": 8909, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6327.9, "z": -4332.4, "px": 968.0, "py": 1308.6}, {"loc_id": 8910, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8329.6, "z": -1869.5, "px": 3469.6, "py": 1728.9}, {"loc_id": 8910, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 8329.6, "z": -1869.5, "px": 3469.6, "py": 1728.9}, {"loc_id": 8912, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6713.5, "z": -3535.4, "px": 3193.8, "py": 1444.6}, {"loc_id": 8913, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 5803.7, "z": 2518.2, "px": 3038.5, "py": 2477.8}, {"loc_id": 8913, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 5803.7, "z": 2518.2, "px": 3038.5, "py": 2477.8}, {"loc_id": 8914, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7718.5, "z": -4660.7, "px": 3365.3, "py": 1252.6}, {"loc_id": 8916, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 4110.8, "z": 6038.7, "px": 2749.6, "py": 3078.6}, {"loc_id": 8917, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 243.1, "z": -7098.2, "px": 2089.5, "py": 836.6}, {"loc_id": 8918, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8999.2, "z": -1166.8, "px": 3583.9, "py": 1848.9}, {"loc_id": 8919, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6325.8, "z": 5830.4, "px": 968.4, "py": 3043.1}, {"loc_id": 8920, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7306.9, "z": 394.0, "px": 3295.0, "py": 2115.2}, {"loc_id": 8921, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 5821.5, "z": 5977.7, "px": 3041.5, "py": 3068.2}, {"loc_id": 8922, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -839.0, "z": -7247.8, "px": 1904.8, "py": 811.0}, {"loc_id": 8924, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6312.9, "z": 812.1, "px": 970.6, "py": 2186.6}, {"loc_id": 8924, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6312.9, "z": 812.1, "px": 970.6, "py": 2186.6}, {"loc_id": 8926, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -4091.3, "z": 5194.3, "px": 1349.8, "py": 2934.5}, {"loc_id": 8928, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -4630.8, "z": -3843.2, "px": 1257.7, "py": 1392.1}, {"loc_id": 8928, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -4630.8, "z": -3843.2, "px": 1257.7, "py": 1392.1}, {"loc_id": 8929, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6723.6, "z": -2608.0, "px": 3195.5, "py": 1602.9}, {"loc_id": 8930, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7999.4, "z": -426.8, "px": 682.8, "py": 1975.2}, {"loc_id": 8931, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -2740.4, "z": -6423.4, "px": 1580.3, "py": 951.7}, {"loc_id": 8932, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -2770.3, "z": -6210.2, "px": 1575.2, "py": 988.1}, {"loc_id": 8932, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -2770.3, "z": -6210.2, "px": 1575.2, "py": 988.1}, {"loc_id": 8933, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -7728.6, "z": -3128.9, "px": 729.0, "py": 1514.0}, {"loc_id": 8934, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7527.2, "z": -192.7, "px": 763.4, "py": 2015.1}, {"loc_id": 8936, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8440.5, "z": -3321.5, "px": 607.5, "py": 1481.1}, {"loc_id": 8936, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8440.5, "z": -3321.5, "px": 607.5, "py": 1481.1}, {"loc_id": 8938, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 8721.7, "z": -3073.9, "px": 3536.5, "py": 1523.4}, {"loc_id": 8939, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -1551.0, "z": -5864.7, "px": 1783.3, "py": 1047.1}, {"loc_id": 8939, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -1551.0, "z": -5864.7, "px": 1783.3, "py": 1047.1}, {"loc_id": 8940, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8843.1, "z": -3636.7, "px": 3557.2, "py": 1427.3}, {"loc_id": 8943, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6405.9, "z": 4238.3, "px": 3141.3, "py": 2771.3}, {"loc_id": 8948, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -9220.7, "z": -251.4, "px": 474.3, "py": 2005.1}, {"loc_id": 8950, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 7426.6, "z": -4870.6, "px": 3315.5, "py": 1216.8}, {"loc_id": 8950, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7426.6, "z": -4870.6, "px": 3315.5, "py": 1216.8}, {"loc_id": 8951, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -9296.7, "z": 455.3, "px": 461.4, "py": 2125.7}, {"loc_id": 8952, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6502.4, "z": 4939.9, "px": 938.3, "py": 2891.1}, {"loc_id": 8952, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6502.4, "z": 4939.9, "px": 938.3, "py": 2891.1}, {"loc_id": 8953, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7955.4, "z": 2255.3, "px": 690.3, "py": 2432.9}, {"loc_id": 8954, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -9418.1, "z": -2491.0, "px": 440.6, "py": 1622.9}, {"loc_id": 8955, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 9398.8, "z": 1930.3, "px": 3652.1, "py": 2377.4}, {"loc_id": 8956, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6742.9, "z": 1149.4, "px": 3198.8, "py": 2244.2}, {"loc_id": 8957, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -7604.9, "z": 2608.1, "px": 750.1, "py": 2493.1}, {"loc_id": 8958, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -3113.2, "z": -6449.0, "px": 1516.7, "py": 947.4}, {"loc_id": 8959, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 147.6, "z": -6992.9, "px": 2073.2, "py": 854.5}, {"loc_id": 8959, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 147.6, "z": -6992.9, "px": 2073.2, "py": 854.5}, {"loc_id": 8960, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -9020.8, "z": -760.4, "px": 508.5, "py": 1918.2}, {"loc_id": 8961, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 7628.5, "z": -3461.0, "px": 3349.9, "py": 1457.3}, {"loc_id": 8962, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 5740.4, "z": -2279.2, "px": 3027.7, "py": 1659.0}, {"loc_id": 8963, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 5695.3, "z": 5584.1, "px": 3020.0, "py": 3001.0}, {"loc_id": 8965, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8706.8, "z": 561.1, "px": 3534.0, "py": 2143.8}, {"loc_id": 8966, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 2697.2, "z": 6758.1, "px": 2508.3, "py": 3201.4}, {"loc_id": 8966, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 2697.2, "z": 6758.1, "px": 2508.3, "py": 3201.4}, {"loc_id": 8967, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -1833.8, "z": 7089.5, "px": 1735.0, "py": 3257.9}, {"loc_id": 8967, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -1833.8, "z": 7089.5, "px": 1735.0, "py": 3257.9}, {"loc_id": 8968, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 2095.8, "z": -6520.4, "px": 2405.7, "py": 935.2}, {"loc_id": 8968, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 2095.8, "z": -6520.4, "px": 2405.7, "py": 935.2}, {"loc_id": 8969, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 9074.3, "z": -3144.3, "px": 3596.7, "py": 1511.4}, {"loc_id": 8972, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 4975.6, "z": -4274.2, "px": 2897.2, "py": 1318.5}, {"loc_id": 8973, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 380.4, "z": -6872.3, "px": 2112.9, "py": 875.1}, {"loc_id": 8974, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 7209.8, "z": -5040.9, "px": 3278.5, "py": 1187.7}, {"loc_id": 8974, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7209.8, "z": -5040.9, "px": 3278.5, "py": 1187.7}, {"loc_id": 8976, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -3226.0, "z": -6414.6, "px": 1497.4, "py": 953.2}, {"loc_id": 8978, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -790.5, "z": 6631.7, "px": 1913.1, "py": 3179.8}, {"loc_id": 8978, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -790.5, "z": 6631.7, "px": 1913.1, "py": 3179.8}, {"loc_id": 8979, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6659.6, "z": -4948.4, "px": 911.4, "py": 1203.5}, {"loc_id": 8979, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6659.6, "z": -4948.4, "px": 911.4, "py": 1203.5}, {"loc_id": 8980, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 3696.1, "z": 6158.4, "px": 2678.8, "py": 3099.0}, {"loc_id": 8980, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 3696.1, "z": 6158.4, "px": 2678.8, "py": 3099.0}, {"loc_id": 8981, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 4168.3, "z": -5820.2, "px": 2759.4, "py": 1054.7}, {"loc_id": 8983, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -1010.1, "z": -5937.0, "px": 1875.6, "py": 1034.8}, {"loc_id": 8984, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5458.7, "z": -4348.5, "px": 1116.4, "py": 1305.9}, {"loc_id": 8984, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5458.7, "z": -4348.5, "px": 1116.4, "py": 1305.9}, {"loc_id": 8986, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -1025.1, "z": -7042.4, "px": 1873.0, "py": 846.1}, {"loc_id": 8988, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5616.2, "z": -4344.1, "px": 1089.5, "py": 1306.6}, {"loc_id": 8989, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 2983.1, "z": 5326.3, "px": 2557.1, "py": 2957.0}, {"loc_id": 8990, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8600.9, "z": -1293.9, "px": 3515.9, "py": 1827.2}, {"loc_id": 8990, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 8600.9, "z": -1293.9, "px": 3515.9, "py": 1827.2}, {"loc_id": 8992, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -3698.7, "z": 4859.0, "px": 1416.8, "py": 2877.3}, {"loc_id": 8992, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -3698.7, "z": 4859.0, "px": 1416.8, "py": 2877.3}, {"loc_id": 8993, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8559.9, "z": 1141.2, "px": 3508.9, "py": 2242.8}, {"loc_id": 8995, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 134.4, "z": -7058.8, "px": 2070.9, "py": 843.3}, {"loc_id": 8995, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 134.4, "z": -7058.8, "px": 2070.9, "py": 843.3}, {"loc_id": 8996, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7763.9, "z": 386.3, "px": 3373.0, "py": 2113.9}, {"loc_id": 8997, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -9151.6, "z": 757.9, "px": 486.1, "py": 2177.3}, {"loc_id": 8997, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -9151.6, "z": 757.9, "px": 486.1, "py": 2177.3}, {"loc_id": 8998, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 9925.8, "z": -529.6, "px": 3742.0, "py": 1957.6}, {"loc_id": 8999, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -2443.4, "z": -6676.1, "px": 1631.0, "py": 908.6}, {"loc_id": 8999, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -2443.4, "z": -6676.1, "px": 1631.0, "py": 908.6}, {"loc_id": 9000, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8521.3, "z": 3388.9, "px": 593.7, "py": 2626.4}, {"loc_id": 9000, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8521.3, "z": 3388.9, "px": 593.7, "py": 2626.4}, {"loc_id": 9002, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 1662.6, "z": -6512.3, "px": 2331.8, "py": 936.6}, {"loc_id": 9003, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5520.1, "z": 6065.4, "px": 1105.9, "py": 3083.2}, {"loc_id": 9003, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5520.1, "z": 6065.4, "px": 1105.9, "py": 3083.2}, {"loc_id": 9004, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 5940.3, "z": -5817.0, "px": 3061.8, "py": 1055.2}, {"loc_id": 9004, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 5940.3, "z": -5817.0, "px": 3061.8, "py": 1055.2}, {"loc_id": 9007, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 8430.3, "z": -432.9, "px": 3486.8, "py": 1974.1}, {"loc_id": 9008, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 633.4, "z": 6717.7, "px": 2156.1, "py": 3194.5}, {"loc_id": 9008, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 633.4, "z": 6717.7, "px": 2156.1, "py": 3194.5}, {"loc_id": 9009, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 4940.5, "z": 5512.2, "px": 2891.2, "py": 2988.7}, {"loc_id": 9010, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -9201.3, "z": -1192.2, "px": 477.6, "py": 1844.5}, {"loc_id": 9010, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -9201.3, "z": -1192.2, "px": 477.6, "py": 1844.5}, {"loc_id": 9011, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8512.9, "z": -826.5, "px": 3500.9, "py": 1906.9}, {"loc_id": 9012, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 7438.1, "z": 2284.4, "px": 3317.4, "py": 2437.9}, {"loc_id": 9013, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -2621.4, "z": 6334.6, "px": 1600.6, "py": 3129.1}, {"loc_id": 9014, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -4497.3, "z": -4288.5, "px": 1280.5, "py": 1316.1}, {"loc_id": 9015, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5112.2, "z": 4864.1, "px": 1175.5, "py": 2878.1}, {"loc_id": 9017, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6996.6, "z": 1335.9, "px": 3242.1, "py": 2276.0}, {"loc_id": 9018, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6333.9, "z": 4603.6, "px": 3129.0, "py": 2833.7}, {"loc_id": 9018, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6333.9, "z": 4603.6, "px": 3129.0, "py": 2833.7}, {"loc_id": 9019, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5936.3, "z": -1648.3, "px": 1034.9, "py": 1766.7}, {"loc_id": 9019, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5936.3, "z": -1648.3, "px": 1034.9, "py": 1766.7}, {"loc_id": 9021, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 5320.1, "z": 3072.6, "px": 2956.0, "py": 2572.4}, {"loc_id": 9022, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -2305.9, "z": -6777.0, "px": 1654.5, "py": 891.4}, {"loc_id": 9022, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -2305.9, "z": -6777.0, "px": 1654.5, "py": 891.4}, {"loc_id": 9024, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5612.7, "z": -5362.3, "px": 1090.1, "py": 1132.8}, {"loc_id": 9025, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 3390.7, "z": 5616.1, "px": 2626.7, "py": 3006.5}, {"loc_id": 9025, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 3390.7, "z": 5616.1, "px": 2626.7, "py": 3006.5}, {"loc_id": 9026, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5178.3, "z": -4543.8, "px": 1164.2, "py": 1272.5}, {"loc_id": 9028, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8617.8, "z": -1255.8, "px": 577.2, "py": 1833.7}, {"loc_id": 9030, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6207.5, "z": 5717.0, "px": 988.6, "py": 3023.7}, {"loc_id": 9030, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6207.5, "z": 5717.0, "px": 988.6, "py": 3023.7}, {"loc_id": 9031, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6992.5, "z": -896.7, "px": 854.6, "py": 1895.0}, {"loc_id": 9032, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6696.9, "z": -2451.5, "px": 905.1, "py": 1629.6}, {"loc_id": 9033, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -4470.3, "z": 6578.6, "px": 1285.1, "py": 3170.7}, {"loc_id": 9033, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -4470.3, "z": 6578.6, "px": 1285.1, "py": 3170.7}, {"loc_id": 9034, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -1905.8, "z": 7412.7, "px": 1722.7, "py": 3313.1}, {"loc_id": 9036, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 7996.1, "z": 1067.6, "px": 3412.7, "py": 2230.2}, {"loc_id": 9037, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 0.5, "z": -7016.2, "px": 2048.1, "py": 850.6}, {"loc_id": 9038, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 1464.6, "z": -6277.4, "px": 2298.0, "py": 976.7}, {"loc_id": 9039, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6127.5, "z": 5811.5, "px": 3093.8, "py": 3039.8}, {"loc_id": 9039, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6127.5, "z": 5811.5, "px": 3093.8, "py": 3039.8}, {"loc_id": 9041, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5965.3, "z": 961.0, "px": 1029.9, "py": 2212.0}, {"loc_id": 9041, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5965.3, "z": 961.0, "px": 1029.9, "py": 2212.0}, {"loc_id": 9042, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5676.8, "z": 3005.6, "px": 1079.2, "py": 2561.0}, {"loc_id": 9043, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8001.1, "z": 2437.8, "px": 3413.5, "py": 2464.1}, {"loc_id": 9043, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 8001.1, "z": 2437.8, "px": 3413.5, "py": 2464.1}, {"loc_id": 9044, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8189.2, "z": -458.8, "px": 650.4, "py": 1969.7}, {"loc_id": 9044, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8189.2, "z": -458.8, "px": 650.4, "py": 1969.7}, {"loc_id": 9046, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 1145.2, "z": 5974.1, "px": 2243.4, "py": 3067.6}, {"loc_id": 9047, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 2431.8, "z": -5843.0, "px": 2463.0, "py": 1050.8}, {"loc_id": 9048, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -4.0, "z": 7357.1, "px": 2047.3, "py": 3303.6}, {"loc_id": 9049, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -1290.5, "z": -5964.0, "px": 1827.8, "py": 1030.1}, {"loc_id": 9050, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8206.4, "z": 58.1, "px": 647.4, "py": 2057.9}, {"loc_id": 9051, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6658.0, "z": -2571.1, "px": 3184.3, "py": 1609.2}, {"loc_id": 9052, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6523.2, "z": 4428.7, "px": 3161.3, "py": 2803.8}, {"loc_id": 9054, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 121.4, "z": 7527.8, "px": 2068.7, "py": 3332.7}, {"loc_id": 9055, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -9465.0, "z": -854.6, "px": 432.6, "py": 1902.1}, {"loc_id": 9057, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7612.9, "z": -4714.4, "px": 3347.3, "py": 1243.4}, {"loc_id": 9058, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -711.5, "z": -7723.4, "px": 1926.6, "py": 729.9}, {"loc_id": 9059, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 592.5, "z": 6860.0, "px": 2149.1, "py": 3218.8}, {"loc_id": 9060, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -4527.0, "z": -4374.9, "px": 1275.4, "py": 1301.4}, {"loc_id": 9062, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6734.7, "z": -3436.4, "px": 3197.4, "py": 1461.5}, {"loc_id": 9064, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8957.8, "z": -2775.4, "px": 3576.8, "py": 1574.3}, {"loc_id": 9066, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8423.3, "z": -430.8, "px": 610.4, "py": 1974.5}, {"loc_id": 9067, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8713.8, "z": -1473.0, "px": 560.8, "py": 1796.6}, {"loc_id": 9068, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 2552.3, "z": -5778.0, "px": 2483.6, "py": 1061.9}, {"loc_id": 9068, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 2552.3, "z": -5778.0, "px": 2483.6, "py": 1061.9}, {"loc_id": 9070, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 184.7, "z": 6732.1, "px": 2079.5, "py": 3196.9}, {"loc_id": 9072, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -9164.8, "z": 1144.7, "px": 483.9, "py": 2243.4}, {"loc_id": 9073, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8278.8, "z": -3607.9, "px": 635.1, "py": 1432.3}, {"loc_id": 9073, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8278.8, "z": -3607.9, "px": 635.1, "py": 1432.3}, {"loc_id": 9074, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6807.8, "z": 3722.7, "px": 3209.9, "py": 2683.3}, {"loc_id": 9075, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 5912.1, "z": -2107.3, "px": 3057.0, "py": 1688.4}, {"loc_id": 9079, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -4228.0, "z": 7112.1, "px": 1326.4, "py": 3261.8}, {"loc_id": 9080, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 3323.3, "z": 5909.9, "px": 2615.2, "py": 3056.6}, {"loc_id": 9080, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 3323.3, "z": 5909.9, "px": 2615.2, "py": 3056.6}, {"loc_id": 9081, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5713.1, "z": -5238.8, "px": 1073.0, "py": 1153.9}, {"loc_id": 9081, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5713.1, "z": -5238.8, "px": 1073.0, "py": 1153.9}, {"loc_id": 9082, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -4680.1, "z": -3814.4, "px": 1249.3, "py": 1397.0}, {"loc_id": 9082, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -4680.1, "z": -3814.4, "px": 1249.3, "py": 1397.0}, {"loc_id": 9083, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6221.9, "z": 4328.5, "px": 3109.9, "py": 2786.7}, {"loc_id": 9083, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6221.9, "z": 4328.5, "px": 3109.9, "py": 2786.7}, {"loc_id": 9084, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5812.5, "z": -5313.6, "px": 1056.0, "py": 1141.1}, {"loc_id": 9086, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8049.4, "z": 2680.5, "px": 3421.8, "py": 2505.5}, {"loc_id": 9087, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 5811.9, "z": -5743.5, "px": 3039.9, "py": 1067.8}, {"loc_id": 9087, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 5811.9, "z": -5743.5, "px": 3039.9, "py": 1067.8}, {"loc_id": 9089, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 7098.4, "z": -5296.4, "px": 3259.5, "py": 1144.1}, {"loc_id": 9090, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6361.7, "z": 2807.6, "px": 3133.7, "py": 2527.2}, {"loc_id": 9093, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7940.6, "z": 4491.6, "px": 692.8, "py": 2814.6}, {"loc_id": 9096, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6936.9, "z": 899.4, "px": 864.1, "py": 2201.5}, {"loc_id": 9097, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6356.5, "z": 882.3, "px": 963.2, "py": 2198.6}, {"loc_id": 9097, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6356.5, "z": 882.3, "px": 963.2, "py": 2198.6}, {"loc_id": 9098, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 9234.4, "z": -1449.3, "px": 3624.0, "py": 1800.7}, {"loc_id": 9099, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -907.0, "z": -7024.5, "px": 1893.2, "py": 849.2}, {"loc_id": 9100, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7794.9, "z": 2121.7, "px": 3378.3, "py": 2410.1}, {"loc_id": 9101, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7728.4, "z": -3302.7, "px": 729.0, "py": 1484.3}, {"loc_id": 9101, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -7728.4, "z": -3302.7, "px": 729.0, "py": 1484.3}, {"loc_id": 9102, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8137.8, "z": 2177.7, "px": 3436.9, "py": 2419.7}, {"loc_id": 9102, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 8137.8, "z": 2177.7, "px": 3436.9, "py": 2419.7}, {"loc_id": 9103, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 5419.7, "z": 5766.2, "px": 2973.0, "py": 3032.1}, {"loc_id": 9105, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 5036.7, "z": 4746.5, "px": 2907.6, "py": 2858.1}, {"loc_id": 9105, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 5036.7, "z": 4746.5, "px": 2907.6, "py": 2858.1}, {"loc_id": 9106, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -360.6, "z": -6607.8, "px": 1986.5, "py": 920.3}, {"loc_id": 9107, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 5163.3, "z": -3726.7, "px": 2929.2, "py": 1412.0}, {"loc_id": 9107, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 5163.3, "z": -3726.7, "px": 2929.2, "py": 1412.0}, {"loc_id": 9109, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6013.0, "z": 3318.7, "px": 3074.2, "py": 2614.4}, {"loc_id": 9110, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5844.6, "z": -5720.5, "px": 1050.5, "py": 1071.7}, {"loc_id": 9111, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 2816.5, "z": 5592.4, "px": 2528.7, "py": 3002.4}, {"loc_id": 9111, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 2816.5, "z": 5592.4, "px": 2528.7, "py": 3002.4}, {"loc_id": 9113, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5105.2, "z": -3605.4, "px": 1176.7, "py": 1432.7}, {"loc_id": 9113, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -5105.2, "z": -3605.4, "px": 1176.7, "py": 1432.7}, {"loc_id": 9114, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 9619.6, "z": 2473.4, "px": 3689.7, "py": 2470.1}, {"loc_id": 9115, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5141.1, "z": 5933.3, "px": 1170.6, "py": 3060.6}, {"loc_id": 9116, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -1660.7, "z": -7303.1, "px": 1764.6, "py": 801.6}, {"loc_id": 9117, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5961.1, "z": 3400.4, "px": 1030.6, "py": 2628.3}, {"loc_id": 9118, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6896.8, "z": 5200.0, "px": 3225.1, "py": 2935.5}, {"loc_id": 9119, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 5561.1, "z": 3656.0, "px": 2997.1, "py": 2672.0}, {"loc_id": 9121, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6694.2, "z": -184.1, "px": 3190.5, "py": 2016.6}, {"loc_id": 9121, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6694.2, "z": -184.1, "px": 3190.5, "py": 2016.6}, {"loc_id": 9123, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 2129.5, "z": -6666.8, "px": 2411.4, "py": 910.2}, {"loc_id": 9123, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 2129.5, "z": -6666.8, "px": 2411.4, "py": 910.2}, {"loc_id": 9124, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 4019.0, "z": -5313.7, "px": 2733.9, "py": 1141.1}, {"loc_id": 9125, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 2682.5, "z": 6591.2, "px": 2505.8, "py": 3172.9}, {"loc_id": 9126, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -1496.5, "z": -7338.3, "px": 1792.6, "py": 795.6}, {"loc_id": 9127, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8427.1, "z": 747.0, "px": 3486.2, "py": 2175.5}, {"loc_id": 9128, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -1971.0, "z": -6773.0, "px": 1711.6, "py": 892.1}, {"loc_id": 9128, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -1971.0, "z": -6773.0, "px": 1711.6, "py": 892.1}, {"loc_id": 9129, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6129.2, "z": -957.3, "px": 1001.9, "py": 1884.6}, {"loc_id": 9130, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 4377.2, "z": 4726.7, "px": 2795.0, "py": 2854.7}, {"loc_id": 9130, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 4377.2, "z": 4726.7, "px": 2795.0, "py": 2854.7}, {"loc_id": 9131, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -841.0, "z": -7367.1, "px": 1904.5, "py": 790.7}, {"loc_id": 9131, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -841.0, "z": -7367.1, "px": 1904.5, "py": 790.7}, {"loc_id": 9132, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -9141.8, "z": -1663.2, "px": 487.8, "py": 1764.1}, {"loc_id": 9133, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8806.8, "z": 294.9, "px": 545.0, "py": 2098.3}, {"loc_id": 9133, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8806.8, "z": 294.9, "px": 545.0, "py": 2098.3}, {"loc_id": 9136, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 1300.3, "z": -6475.1, "px": 2269.9, "py": 942.9}, {"loc_id": 9137, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -5525.7, "z": 4658.6, "px": 1104.9, "py": 2843.1}, {"loc_id": 9138, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6251.4, "z": 4085.2, "px": 3114.9, "py": 2745.2}, {"loc_id": 9139, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7180.5, "z": 2991.0, "px": 822.5, "py": 2558.5}, {"loc_id": 9139, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -7180.5, "z": 2991.0, "px": 822.5, "py": 2558.5}, {"loc_id": 9142, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8840.6, "z": 217.6, "px": 539.2, "py": 2085.1}, {"loc_id": 9143, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 1223.8, "z": 6505.8, "px": 2256.9, "py": 3158.3}, {"loc_id": 9145, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 7541.2, "z": 4980.4, "px": 3335.0, "py": 2898.0}, {"loc_id": 9145, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 7541.2, "z": 4980.4, "px": 3335.0, "py": 2898.0}, {"loc_id": 9146, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 3904.5, "z": 5607.2, "px": 2714.4, "py": 3005.0}, {"loc_id": 9147, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6166.4, "z": 5514.5, "px": 3100.4, "py": 2989.1}, {"loc_id": 9149, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 8581.2, "z": -1065.9, "px": 3512.5, "py": 1866.1}, {"loc_id": 9151, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -7665.2, "z": -3010.2, "px": 739.8, "py": 1534.3}, {"loc_id": 9152, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6357.2, "z": 4235.9, "px": 963.0, "py": 2770.9}, {"loc_id": 9153, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8779.7, "z": -1741.3, "px": 549.6, "py": 1750.8}, {"loc_id": 9153, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8779.7, "z": -1741.3, "px": 549.6, "py": 1750.8}, {"loc_id": 9154, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 9240.8, "z": -2229.9, "px": 3625.1, "py": 1667.4}, {"loc_id": 9154, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 9240.8, "z": -2229.9, "px": 3625.1, "py": 1667.4}, {"loc_id": 9155, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 2580.7, "z": 5620.8, "px": 2488.4, "py": 3007.3}, {"loc_id": 9156, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8136.7, "z": -3189.0, "px": 659.3, "py": 1503.7}, {"loc_id": 9156, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8136.7, "z": -3189.0, "px": 659.3, "py": 1503.7}, {"loc_id": 9157, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -2099.7, "z": -7318.7, "px": 1689.7, "py": 798.9}, {"loc_id": 9157, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -2099.7, "z": -7318.7, "px": 1689.7, "py": 798.9}, {"loc_id": 9158, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 2565.9, "z": 6457.1, "px": 2485.9, "py": 3150.0}, {"loc_id": 9159, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -4326.7, "z": -4658.2, "px": 1309.6, "py": 1253.0}, {"loc_id": 9160, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 8056.9, "z": -3377.5, "px": 3423.0, "py": 1471.6}, {"loc_id": 9161, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -9162.2, "z": -2384.6, "px": 484.3, "py": 1641.0}, {"loc_id": 9162, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 6657.7, "z": 1197.3, "px": 3184.2, "py": 2252.3}, {"loc_id": 9162, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 6657.7, "z": 1197.3, "px": 3184.2, "py": 2252.3}, {"loc_id": 9163, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7099.9, "z": 697.6, "px": 836.3, "py": 2167.1}, {"loc_id": 9164, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -1809.7, "z": 6963.7, "px": 1739.1, "py": 3236.5}, {"loc_id": 9166, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6212.7, "z": 3530.4, "px": 987.7, "py": 2650.5}, {"loc_id": 9166, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6212.7, "z": 3530.4, "px": 987.7, "py": 2650.5}, {"loc_id": 9167, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6777.1, "z": -2662.5, "px": 891.4, "py": 1593.6}, {"loc_id": 9167, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6777.1, "z": -2662.5, "px": 891.4, "py": 1593.6}, {"loc_id": 9168, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6320.2, "z": 3949.3, "px": 969.4, "py": 2722.0}, {"loc_id": 9169, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 1360.8, "z": -7443.6, "px": 2280.2, "py": 777.6}, {"loc_id": 9169, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 1360.8, "z": -7443.6, "px": 2280.2, "py": 777.6}, {"loc_id": 9170, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8018.3, "z": -142.9, "px": 679.5, "py": 2023.6}, {"loc_id": 9171, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7663.3, "z": 1002.5, "px": 740.1, "py": 2219.1}, {"loc_id": 9172, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -8124.7, "z": 110.1, "px": 661.4, "py": 2066.8}, {"loc_id": 9172, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -8124.7, "z": 110.1, "px": 661.4, "py": 2066.8}, {"loc_id": 9174, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 771.3, "z": 6322.2, "px": 2179.6, "py": 3127.0}, {"loc_id": 9174, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 771.3, "z": 6322.2, "px": 2179.6, "py": 3127.0}, {"loc_id": 9175, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 4437.0, "z": 5991.9, "px": 2805.2, "py": 3070.6}, {"loc_id": 9176, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -4006.3, "z": 6488.0, "px": 1364.3, "py": 3155.3}, {"loc_id": 9177, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8422.0, "z": 1108.6, "px": 3485.4, "py": 2237.2}, {"loc_id": 9178, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 5699.9, "z": -4096.0, "px": 3020.8, "py": 1348.9}, {"loc_id": 9178, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 5699.9, "z": -4096.0, "px": 3020.8, "py": 1348.9}, {"loc_id": 9179, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 428.3, "z": 6801.3, "px": 2121.1, "py": 3208.8}, {"loc_id": 9181, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -9107.9, "z": 2491.6, "px": 493.6, "py": 2473.2}, {"loc_id": 9181, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -9107.9, "z": 2491.6, "px": 493.6, "py": 2473.2}, {"loc_id": 9182, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -9478.4, "z": -2283.0, "px": 430.4, "py": 1658.4}, {"loc_id": 9183, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8500.9, "z": 920.5, "px": 3498.8, "py": 2205.1}, {"loc_id": 9184, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 2544.0, "z": -6412.2, "px": 2482.2, "py": 953.7}, {"loc_id": 9185, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -9367.6, "z": -2298.5, "px": 449.3, "py": 1655.7}, {"loc_id": 9187, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": 5720.4, "z": 3603.7, "px": 3024.3, "py": 2663.0}, {"loc_id": 9188, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -702.1, "z": -6726.8, "px": 1928.2, "py": 900.0}, {"loc_id": 9189, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -7158.6, "z": -846.8, "px": 826.3, "py": 1903.5}, {"loc_id": 9189, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -7158.6, "z": -846.8, "px": 826.3, "py": 1903.5}, {"loc_id": 9190, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 8121.9, "z": -3371.5, "px": 3434.1, "py": 1472.6}, {"loc_id": 9191, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -6489.0, "z": -1133.2, "px": 940.5, "py": 1854.6}, {"loc_id": 9191, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -6489.0, "z": -1133.2, "px": 940.5, "py": 1854.6}, {"loc_id": 9193, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": 5400.6, "z": 5588.3, "px": 2969.7, "py": 3001.7}, {"loc_id": 9194, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: DvergerMage", "count": 1, "x": -949.8, "z": 6406.4, "px": 1885.9, "py": 3141.4}, {"loc_id": 9194, "loc_name": "Mistlands_RoadPost1", "item": "SpawnOnce: Dverger", "count": 1, "x": -949.8, "z": 6406.4, "px": 1885.9, "py": 3141.4}, {"loc_id": 9945, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": 640.0, "z": -9344.0, "px": 2157.2, "py": 453.3}, {"loc_id": 9948, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": -1216.0, "z": -9472.0, "px": 1840.5, "py": 431.4}, {"loc_id": 9949, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": -896.0, "z": -9536.0, "px": 1895.1, "py": 420.5}, {"loc_id": 9951, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 1, "x": -384.0, "z": -9920.0, "px": 1982.5, "py": 355.0}, {"loc_id": 9951, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": -384.0, "z": -9920.0, "px": 1982.5, "py": 355.0}, {"loc_id": 9954, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": 320.0, "z": -8896.0, "px": 2102.6, "py": 529.7}, {"loc_id": 9956, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": 320.0, "z": -8960.0, "px": 2102.6, "py": 518.8}, {"loc_id": 9957, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": 1280.0, "z": -9408.0, "px": 2266.5, "py": 442.4}, {"loc_id": 9962, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": 576.0, "z": -9408.0, "px": 2146.3, "py": 442.4}, {"loc_id": 9965, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": 768.0, "z": -9344.0, "px": 2179.1, "py": 453.3}, {"loc_id": 9967, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": -832.0, "z": -9536.0, "px": 1906.0, "py": 420.5}, {"loc_id": 9969, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": 832.0, "z": -9088.0, "px": 2190.0, "py": 497.0}, {"loc_id": 9977, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": -768.0, "z": -8960.0, "px": 1916.9, "py": 518.8}, {"loc_id": 9979, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": -256.0, "z": -9984.0, "px": 2004.3, "py": 344.1}, {"loc_id": 9983, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": -576.0, "z": -9280.0, "px": 1949.7, "py": 464.2}, {"loc_id": 9984, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": 704.0, "z": -9152.0, "px": 2168.1, "py": 486.1}, {"loc_id": 9989, "loc_name": "FortressRuins", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": -448.0, "z": -9856.0, "px": 1971.5, "py": 365.9}, {"loc_id": 9995, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 1, "x": -320.0, "z": -8832.0, "px": 1993.4, "py": 540.7}, {"loc_id": 9996, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": 384.0, "z": -8832.0, "px": 2113.5, "py": 540.7}, {"loc_id": 9998, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": 768.0, "z": -9280.0, "px": 2179.1, "py": 464.2}, {"loc_id": 10002, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": -512.0, "z": -9280.0, "px": 1960.6, "py": 464.2}, {"loc_id": 10004, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": 256.0, "z": -8704.0, "px": 2091.7, "py": 562.5}, {"loc_id": 10008, "loc_name": "FortressRuins", "item": "Pickable: Fiddleheadfern", "count": 1, "x": -832.0, "z": -9344.0, "px": 1906.0, "py": 453.3}, {"loc_id": 10013, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": 1216.0, "z": -9344.0, "px": 2255.5, "py": 453.3}, {"loc_id": 10016, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": 1600.0, "z": -9472.0, "px": 2321.1, "py": 431.4}, {"loc_id": 10017, "loc_name": "FortressRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": -768.0, "z": -8832.0, "px": 1916.9, "py": 540.7}, {"loc_id": 10052, "loc_name": "CharredRuins1", "item": "Vegvisir: FaderLocation ($enemy_fader_codename)", "count": 1, "x": 3840.0, "z": -8768.0, "px": 2703.4, "py": 551.6}, {"loc_id": 10059, "loc_name": "CharredRuins1", "item": "Vegvisir: FaderLocation ($enemy_fader_codename)", "count": 1, "x": 2496.0, "z": -9216.0, "px": 2474.0, "py": 475.1}, {"loc_id": 10089, "loc_name": "CharredRuins1", "item": "Vegvisir: FaderLocation ($enemy_fader_codename)", "count": 1, "x": 384.0, "z": -9664.0, "px": 2113.5, "py": 398.7}, {"loc_id": 10371, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": 962.4, "z": -9403.4, "px": 2212.2, "py": 443.2}, {"loc_id": 10374, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": -3765.5, "z": -9097.9, "px": 1405.4, "py": 495.3}, {"loc_id": 10376, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": 312.0, "z": -9487.9, "px": 2101.2, "py": 428.7}, {"loc_id": 10388, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": -1227.5, "z": -9805.4, "px": 1838.5, "py": 374.5}, {"loc_id": 10396, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": -2992.7, "z": -9088.6, "px": 1537.2, "py": 496.9}, {"loc_id": 10411, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": 887.4, "z": -8764.2, "px": 2199.4, "py": 552.2}, {"loc_id": 10431, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": -6335.5, "z": -7628.0, "px": 966.7, "py": 746.2}, {"loc_id": 10433, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": -3760.1, "z": -8901.8, "px": 1406.3, "py": 528.8}, {"loc_id": 10443, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": 2166.8, "z": -8451.4, "px": 2417.8, "py": 605.6}, {"loc_id": 10445, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": 3342.8, "z": -8636.9, "px": 2618.5, "py": 574.0}, {"loc_id": 10446, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": -2371.4, "z": -8716.1, "px": 1643.3, "py": 560.5}, {"loc_id": 10451, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": -4750.0, "z": -8517.1, "px": 1237.3, "py": 594.4}, {"loc_id": 10453, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": -5133.1, "z": -7602.2, "px": 1172.0, "py": 750.6}, {"loc_id": 10461, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": 973.3, "z": -9139.2, "px": 2214.1, "py": 488.2}, {"loc_id": 10465, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": -1796.4, "z": -9359.1, "px": 1741.4, "py": 450.7}, {"loc_id": 10466, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": 2305.7, "z": -8838.6, "px": 2441.5, "py": 539.5}, {"loc_id": 10467, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": 68.9, "z": -9150.3, "px": 2059.8, "py": 486.3}, {"loc_id": 10467, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": 68.9, "z": -9150.3, "px": 2059.8, "py": 486.3}, {"loc_id": 10468, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": 1792.7, "z": -8449.5, "px": 2354.0, "py": 606.0}, {"loc_id": 10477, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": 3378.8, "z": -8186.8, "px": 2624.6, "py": 650.8}, {"loc_id": 10481, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": 650.4, "z": -9777.0, "px": 2159.0, "py": 379.4}, {"loc_id": 10482, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": -3981.8, "z": -9012.1, "px": 1368.4, "py": 509.9}, {"loc_id": 10487, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": -57.9, "z": -9807.8, "px": 2038.1, "py": 374.1}, {"loc_id": 10495, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": 972.8, "z": -8649.6, "px": 2214.0, "py": 571.8}, {"loc_id": 10505, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": -2684.1, "z": -8588.1, "px": 1589.9, "py": 582.3}, {"loc_id": 10510, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": -3830.2, "z": -8179.8, "px": 1394.3, "py": 652.0}, {"loc_id": 10511, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": 5565.6, "z": -8050.7, "px": 2997.9, "py": 674.0}, {"loc_id": 10525, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": 1224.4, "z": -9404.4, "px": 2257.0, "py": 443.0}, {"loc_id": 10533, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": 583.5, "z": -8716.6, "px": 2147.6, "py": 560.4}, {"loc_id": 10536, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": -3594.9, "z": -9074.3, "px": 1434.5, "py": 499.3}, {"loc_id": 10548, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": 2998.2, "z": -9335.5, "px": 2559.7, "py": 454.7}, {"loc_id": 10549, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": 270.1, "z": -9038.6, "px": 2094.1, "py": 505.4}, {"loc_id": 10550, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": -2173.8, "z": -8458.9, "px": 1677.0, "py": 604.3}, {"loc_id": 10553, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": -713.5, "z": -9800.2, "px": 1926.2, "py": 375.4}, {"loc_id": 10553, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": -713.5, "z": -9800.2, "px": 1926.2, "py": 375.4}, {"loc_id": 10557, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": -2674.5, "z": -8432.1, "px": 1591.6, "py": 608.9}, {"loc_id": 10564, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": -2370.9, "z": -9029.4, "px": 1643.4, "py": 507.0}, {"loc_id": 10568, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": -1805.4, "z": -9076.3, "px": 1739.9, "py": 499.0}, {"loc_id": 10582, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": -506.5, "z": -8710.1, "px": 1961.6, "py": 561.5}, {"loc_id": 10586, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": 2182.3, "z": -9223.5, "px": 2420.4, "py": 473.9}, {"loc_id": 10590, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": 2314.5, "z": -9023.1, "px": 2443.0, "py": 508.1}, {"loc_id": 10592, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": -4657.1, "z": -8326.4, "px": 1253.2, "py": 627.0}, {"loc_id": 10593, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": -4747.3, "z": -8382.0, "px": 1237.8, "py": 617.5}, {"loc_id": 10594, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": 2232.4, "z": -8947.4, "px": 2429.0, "py": 521.0}, {"loc_id": 10596, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": 3134.8, "z": -8560.2, "px": 2583.0, "py": 587.1}, {"loc_id": 10602, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": 4144.6, "z": -8780.7, "px": 2755.3, "py": 549.4}, {"loc_id": 10603, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": 653.9, "z": -9482.6, "px": 2159.6, "py": 429.6}, {"loc_id": 10618, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": -4943.7, "z": -8252.5, "px": 1204.3, "py": 639.6}, {"loc_id": 10619, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": 5432.5, "z": -7808.3, "px": 2975.1, "py": 715.4}, {"loc_id": 10621, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": 5436.6, "z": -8015.5, "px": 2975.8, "py": 680.0}, {"loc_id": 10625, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": -2892.6, "z": -8450.4, "px": 1554.3, "py": 605.8}, {"loc_id": 10637, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": -5259.6, "z": -7602.7, "px": 1150.4, "py": 750.5}, {"loc_id": 10639, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": -5185.6, "z": -7735.3, "px": 1163.0, "py": 727.8}, {"loc_id": 10639, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": -5185.6, "z": -7735.3, "px": 1163.0, "py": 727.8}, {"loc_id": 10642, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": -3843.8, "z": -8767.9, "px": 1392.0, "py": 551.6}, {"loc_id": 10647, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": -2041.0, "z": -9358.9, "px": 1699.7, "py": 450.7}, {"loc_id": 10657, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": 1520.0, "z": -9585.6, "px": 2307.4, "py": 412.1}, {"loc_id": 10660, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": -4859.9, "z": -8510.3, "px": 1218.6, "py": 595.6}, {"loc_id": 10661, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": 1915.3, "z": -8562.4, "px": 2374.9, "py": 586.7}, {"loc_id": 10661, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": 1915.3, "z": -8562.4, "px": 2374.9, "py": 586.7}, {"loc_id": 10664, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": -397.4, "z": -9207.0, "px": 1980.2, "py": 476.7}, {"loc_id": 10665, "loc_name": "VoltureNest", "item": "SpawnOnce: Volture", "count": 1, "x": 1285.9, "z": -9584.4, "px": 2267.5, "py": 412.3}, {"loc_id": 10668, "loc_name": "VoltureNest", "item": "Pickable: VoltureEgg", "count": 1, "x": 653.1, "z": -8882.0, "px": 2159.5, "py": 532.1}, {"loc_id": 10678, "loc_name": "CharredTowerRuins1", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": -2690.0, "z": -8705.1, "px": 1588.9, "py": 562.3}, {"loc_id": 10682, "loc_name": "CharredTowerRuins1", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": 3400.9, "z": -8071.2, "px": 2628.4, "py": 670.5}, {"loc_id": 10684, "loc_name": "CharredTowerRuins1", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": 3972.4, "z": -8959.6, "px": 2726.0, "py": 518.9}, {"loc_id": 10690, "loc_name": "CharredTowerRuins1", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": -2625.7, "z": -8453.7, "px": 1599.9, "py": 605.2}, {"loc_id": 10692, "loc_name": "CharredTowerRuins1", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": -1846.4, "z": -9415.1, "px": 1732.9, "py": 441.2}, {"loc_id": 10693, "loc_name": "CharredTowerRuins1", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": 1725.8, "z": -9399.6, "px": 2342.5, "py": 443.8}, {"loc_id": 10697, "loc_name": "CharredTowerRuins1", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": -5448.0, "z": -7686.6, "px": 1118.2, "py": 736.2}, {"loc_id": 10707, "loc_name": "CharredTowerRuins1", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": -3912.4, "z": -8956.6, "px": 1380.3, "py": 519.4}, {"loc_id": 10710, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": -3580.8, "z": -8449.6, "px": 1436.9, "py": 605.9}, {"loc_id": 10713, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": -5309.5, "z": -7751.3, "px": 1141.8, "py": 725.1}, {"loc_id": 10714, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": 132.6, "z": -9157.1, "px": 2070.6, "py": 485.2}, {"loc_id": 10715, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": -959.7, "z": -9730.7, "px": 1884.2, "py": 387.3}, {"loc_id": 10715, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 1, "x": -959.7, "z": -9730.7, "px": 1884.2, "py": 387.3}, {"loc_id": 10719, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": -3585.9, "z": -9031.2, "px": 1436.0, "py": 506.7}, {"loc_id": 10719, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 1, "x": -3585.9, "z": -9031.2, "px": 1436.0, "py": 506.7}, {"loc_id": 10720, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": -4612.3, "z": -8391.2, "px": 1260.8, "py": 615.9}, {"loc_id": 10721, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 1, "x": 2748.2, "z": -9022.6, "px": 2517.0, "py": 508.1}, {"loc_id": 10722, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": 513.8, "z": -9855.1, "px": 2135.7, "py": 366.1}, {"loc_id": 10723, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": -3384.7, "z": -8955.3, "px": 1470.3, "py": 519.6}, {"loc_id": 10723, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 1, "x": -3384.7, "z": -8955.3, "px": 1470.3, "py": 519.6}, {"loc_id": 10724, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 1, "x": -4408.4, "z": -8320.3, "px": 1295.6, "py": 628.0}, {"loc_id": 10726, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": -2614.2, "z": -8834.8, "px": 1601.8, "py": 540.2}, {"loc_id": 10726, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 1, "x": -2614.2, "z": -8834.8, "px": 1601.8, "py": 540.2}, {"loc_id": 10727, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": -4535.3, "z": -8322.3, "px": 1274.0, "py": 627.7}, {"loc_id": 10732, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": 2618.2, "z": -9017.8, "px": 2494.8, "py": 509.0}, {"loc_id": 10733, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": 647.3, "z": -9861.7, "px": 2158.5, "py": 364.9}, {"loc_id": 10734, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": -185.1, "z": -8767.1, "px": 2016.4, "py": 551.7}, {"loc_id": 10735, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": -3721.3, "z": -8325.0, "px": 1412.9, "py": 627.2}, {"loc_id": 10736, "loc_name": "CharredTowerRuins1_dvergr", "item": "Pickable: Lantern", "count": 1, "x": 2363.0, "z": -9145.1, "px": 2451.3, "py": 487.2}, {"loc_id": 10780, "loc_name": "CharredTowerRuins3", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 5371.0, "z": -7945.7, "px": 2964.7, "py": 691.9}, {"loc_id": 10785, "loc_name": "CharredTowerRuins3", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 911.2, "z": -8817.9, "px": 2203.5, "py": 543.1}, {"loc_id": 10787, "loc_name": "CharredTowerRuins3", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1482.4, "z": -9715.9, "px": 2301.0, "py": 389.8}, {"loc_id": 10788, "loc_name": "CharredTowerRuins3", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -245.6, "z": -8693.6, "px": 2006.1, "py": 564.3}, {"loc_id": 10789, "loc_name": "CharredTowerRuins3", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 3822.4, "z": -8499.9, "px": 2700.4, "py": 597.4}, {"loc_id": 10790, "loc_name": "CharredTowerRuins3", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2113.8, "z": -8453.9, "px": 2408.8, "py": 605.2}, {"loc_id": 10791, "loc_name": "CharredTowerRuins3", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 207.3, "z": -9235.6, "px": 2083.4, "py": 471.8}, {"loc_id": 10792, "loc_name": "CharredTowerRuins3", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -1602.8, "z": -9525.0, "px": 1774.5, "py": 422.4}, {"loc_id": 10796, "loc_name": "CharredTowerRuins3", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -3565.1, "z": -8640.1, "px": 1439.6, "py": 573.4}, {"loc_id": 10800, "loc_name": "CharredTowerRuins3", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2876.2, "z": -8771.7, "px": 2538.9, "py": 551.0}, {"loc_id": 10801, "loc_name": "CharredTowerRuins3", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 692.1, "z": -9853.7, "px": 2166.1, "py": 366.3}, {"loc_id": 10803, "loc_name": "CharredTowerRuins3", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 1524.2, "z": -9038.5, "px": 2308.1, "py": 505.4}, {"loc_id": 10804, "loc_name": "CharredTowerRuins3", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": -2927.4, "z": -8518.1, "px": 1548.4, "py": 594.2}, {"loc_id": 10808, "loc_name": "CharredTowerRuins3", "item": "AreaSpawner: Charred_Twitcher[3-1] Charred_Melee[3-1] (respawn every 10 seconds)", "count": 1, "x": 2638.8, "z": -9281.7, "px": 2498.4, "py": 463.9}, {"loc_id": 10812, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": -3520.0, "z": -8640.0, "px": 1447.3, "py": 573.4}, {"loc_id": 10818, "loc_name": "AshlandRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": -1216.0, "z": -9728.0, "px": 1840.5, "py": 387.8}, {"loc_id": 10826, "loc_name": "AshlandRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": 3904.0, "z": -8704.0, "px": 2714.3, "py": 562.5}, {"loc_id": 10833, "loc_name": "AshlandRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": 2240.0, "z": -9152.0, "px": 2430.3, "py": 486.1}, {"loc_id": 10838, "loc_name": "AshlandRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": -576.0, "z": -8704.0, "px": 1949.7, "py": 562.5}, {"loc_id": 10839, "loc_name": "AshlandRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": 2496.0, "z": -9152.0, "px": 2474.0, "py": 486.1}, {"loc_id": 10845, "loc_name": "AshlandRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": 832.0, "z": -8640.0, "px": 2190.0, "py": 573.4}, {"loc_id": 10855, "loc_name": "AshlandRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": -3264.0, "z": -8896.0, "px": 1490.9, "py": 529.7}, {"loc_id": 10858, "loc_name": "AshlandRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": -5440.0, "z": -7616.0, "px": 1119.6, "py": 748.2}, {"loc_id": 10864, "loc_name": "AshlandRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": -5248.0, "z": -7744.0, "px": 1152.3, "py": 726.4}, {"loc_id": 10871, "loc_name": "AshlandRuins", "item": "Pickable: MushroomSmokePuff", "count": 1, "x": -1472.0, "z": -9728.0, "px": 1796.8, "py": 387.8}, {"loc_id": 10880, "loc_name": "AshlandRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": 2176.0, "z": -9280.0, "px": 2419.4, "py": 464.2}, {"loc_id": 10889, "loc_name": "AshlandRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": 2112.0, "z": -9600.0, "px": 2408.4, "py": 409.6}, {"loc_id": 10896, "loc_name": "AshlandRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": 192.0, "z": -9472.0, "px": 2080.8, "py": 431.4}, {"loc_id": 10906, "loc_name": "AshlandRuins", "item": "SpawnOnce: Morgen", "count": 1, "x": -3520.0, "z": -9024.0, "px": 1447.3, "py": 507.9}, {"loc_id": 10909, "loc_name": "AshlandRuins", "item": "Pickable: Fiddleheadfern", "count": 1, "x": -4992.0, "z": -7680.0, "px": 1196.0, "py": 737.3}, {"loc_id": 10911, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": -2629.8, "z": -8634.4, "px": 1599.2, "py": 574.4}, {"loc_id": 10911, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -2629.8, "z": -8634.4, "px": 1599.2, "py": 574.4}, {"loc_id": 10911, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 1, "x": -2629.8, "z": -8634.4, "px": 1599.2, "py": 574.4}, {"loc_id": 10911, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -2629.8, "z": -8634.4, "px": 1599.2, "py": 574.4}, {"loc_id": 10912, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": 1852.2, "z": -8443.0, "px": 2364.1, "py": 607.1}, {"loc_id": 10912, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 1852.2, "z": -8443.0, "px": 2364.1, "py": 607.1}, {"loc_id": 10912, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 1852.2, "z": -8443.0, "px": 2364.1, "py": 607.1}, {"loc_id": 10912, "loc_name": "MorgenHole1", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": 1852.2, "z": -8443.0, "px": 2364.1, "py": 607.1}, {"loc_id": 10913, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": -697.6, "z": -8707.2, "px": 1928.9, "py": 562.0}, {"loc_id": 10913, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -697.6, "z": -8707.2, "px": 1928.9, "py": 562.0}, {"loc_id": 10913, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 1, "x": -697.6, "z": -8707.2, "px": 1928.9, "py": 562.0}, {"loc_id": 10913, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -697.6, "z": -8707.2, "px": 1928.9, "py": 562.0}, {"loc_id": 10914, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": -71.1, "z": -9667.8, "px": 2035.9, "py": 398.0}, {"loc_id": 10914, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -71.1, "z": -9667.8, "px": 2035.9, "py": 398.0}, {"loc_id": 10914, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -71.1, "z": -9667.8, "px": 2035.9, "py": 398.0}, {"loc_id": 10915, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": -2108.9, "z": -9082.8, "px": 1688.1, "py": 497.9}, {"loc_id": 10915, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -2108.9, "z": -9082.8, "px": 1688.1, "py": 497.9}, {"loc_id": 10915, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 1, "x": -2108.9, "z": -9082.8, "px": 1688.1, "py": 497.9}, {"loc_id": 10915, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -2108.9, "z": -9082.8, "px": 1688.1, "py": 497.9}, {"loc_id": 10915, "loc_name": "MorgenHole1", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": -2108.9, "z": -9082.8, "px": 1688.1, "py": 497.9}, {"loc_id": 10916, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": 193.0, "z": -8829.0, "px": 2080.9, "py": 541.2}, {"loc_id": 10916, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 193.0, "z": -8829.0, "px": 2080.9, "py": 541.2}, {"loc_id": 10916, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 193.0, "z": -8829.0, "px": 2080.9, "py": 541.2}, {"loc_id": 10916, "loc_name": "MorgenHole1", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": 193.0, "z": -8829.0, "px": 2080.9, "py": 541.2}, {"loc_id": 10917, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": -3975.7, "z": -8892.9, "px": 1369.5, "py": 530.3}, {"loc_id": 10917, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -3975.7, "z": -8892.9, "px": 1369.5, "py": 530.3}, {"loc_id": 10918, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": 70.1, "z": -8519.3, "px": 2060.0, "py": 594.0}, {"loc_id": 10918, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 70.1, "z": -8519.3, "px": 2060.0, "py": 594.0}, {"loc_id": 10918, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": 70.1, "z": -8519.3, "px": 2060.0, "py": 594.0}, {"loc_id": 10919, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": -3718.4, "z": -8452.7, "px": 1413.4, "py": 605.4}, {"loc_id": 10919, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -3718.4, "z": -8452.7, "px": 1413.4, "py": 605.4}, {"loc_id": 10919, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 1, "x": -3718.4, "z": -8452.7, "px": 1413.4, "py": 605.4}, {"loc_id": 10919, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -3718.4, "z": -8452.7, "px": 1413.4, "py": 605.4}, {"loc_id": 10920, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": -519.3, "z": -9667.0, "px": 1959.4, "py": 398.2}, {"loc_id": 10920, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -519.3, "z": -9667.0, "px": 1959.4, "py": 398.2}, {"loc_id": 10921, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": 1343.9, "z": -9028.9, "px": 2277.4, "py": 507.1}, {"loc_id": 10921, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 1343.9, "z": -9028.9, "px": 2277.4, "py": 507.1}, {"loc_id": 10921, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 1343.9, "z": -9028.9, "px": 2277.4, "py": 507.1}, {"loc_id": 10921, "loc_name": "MorgenHole1", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": 1343.9, "z": -9028.9, "px": 2277.4, "py": 507.1}, {"loc_id": 10922, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": -1787.0, "z": -8892.5, "px": 1743.0, "py": 530.3}, {"loc_id": 10922, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -1787.0, "z": -8892.5, "px": 1743.0, "py": 530.3}, {"loc_id": 10923, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": 634.1, "z": -8700.2, "px": 2156.2, "py": 563.2}, {"loc_id": 10923, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 634.1, "z": -8700.2, "px": 2156.2, "py": 563.2}, {"loc_id": 10923, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 1, "x": 634.1, "z": -8700.2, "px": 2156.2, "py": 563.2}, {"loc_id": 10923, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 634.1, "z": -8700.2, "px": 2156.2, "py": 563.2}, {"loc_id": 10923, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 1, "x": 634.1, "z": -8700.2, "px": 2156.2, "py": 563.2}, {"loc_id": 10924, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": 2427.9, "z": -8894.9, "px": 2462.4, "py": 529.9}, {"loc_id": 10924, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 2427.9, "z": -8894.9, "px": 2462.4, "py": 529.9}, {"loc_id": 10924, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": 2427.9, "z": -8894.9, "px": 2462.4, "py": 529.9}, {"loc_id": 10925, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": -2303.9, "z": -8710.0, "px": 1654.8, "py": 561.5}, {"loc_id": 10925, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -2303.9, "z": -8710.0, "px": 1654.8, "py": 561.5}, {"loc_id": 10925, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -2303.9, "z": -8710.0, "px": 1654.8, "py": 561.5}, {"loc_id": 10926, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": -4355.3, "z": -8380.1, "px": 1304.7, "py": 617.8}, {"loc_id": 10926, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -4355.3, "z": -8380.1, "px": 1304.7, "py": 617.8}, {"loc_id": 10926, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -4355.3, "z": -8380.1, "px": 1304.7, "py": 617.8}, {"loc_id": 10927, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": 518.9, "z": -9599.7, "px": 2136.6, "py": 409.7}, {"loc_id": 10927, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 518.9, "z": -9599.7, "px": 2136.6, "py": 409.7}, {"loc_id": 10927, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 518.9, "z": -9599.7, "px": 2136.6, "py": 409.7}, {"loc_id": 10927, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": 518.9, "z": -9599.7, "px": 2136.6, "py": 409.7}, {"loc_id": 10927, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 1, "x": 518.9, "z": -9599.7, "px": 2136.6, "py": 409.7}, {"loc_id": 10927, "loc_name": "MorgenHole1", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": 518.9, "z": -9599.7, "px": 2136.6, "py": 409.7}, {"loc_id": 10928, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": -1281.5, "z": -9734.6, "px": 1829.3, "py": 386.6}, {"loc_id": 10928, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -1281.5, "z": -9734.6, "px": 1829.3, "py": 386.6}, {"loc_id": 10928, "loc_name": "MorgenHole1", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": -1281.5, "z": -9734.6, "px": 1829.3, "py": 386.6}, {"loc_id": 10929, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": -251.2, "z": -8961.5, "px": 2005.1, "py": 518.6}, {"loc_id": 10929, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -251.2, "z": -8961.5, "px": 2005.1, "py": 518.6}, {"loc_id": 10929, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -251.2, "z": -8961.5, "px": 2005.1, "py": 518.6}, {"loc_id": 10930, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": -2938.4, "z": -8390.5, "px": 1546.5, "py": 616.0}, {"loc_id": 10930, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -2938.4, "z": -8390.5, "px": 1546.5, "py": 616.0}, {"loc_id": 10931, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": 1272.8, "z": -9535.5, "px": 2265.2, "py": 420.6}, {"loc_id": 10931, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 1272.8, "z": -9535.5, "px": 2265.2, "py": 420.6}, {"loc_id": 10931, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 1272.8, "z": -9535.5, "px": 2265.2, "py": 420.6}, {"loc_id": 10932, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": 2237.4, "z": -8442.5, "px": 2429.8, "py": 607.1}, {"loc_id": 10932, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 2237.4, "z": -8442.5, "px": 2429.8, "py": 607.1}, {"loc_id": 10932, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 1, "x": 2237.4, "z": -8442.5, "px": 2429.8, "py": 607.1}, {"loc_id": 10933, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": -1017.7, "z": -9534.6, "px": 1874.3, "py": 420.8}, {"loc_id": 10933, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -1017.7, "z": -9534.6, "px": 1874.3, "py": 420.8}, {"loc_id": 10933, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -1017.7, "z": -9534.6, "px": 1874.3, "py": 420.8}, {"loc_id": 10933, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -1017.7, "z": -9534.6, "px": 1874.3, "py": 420.8}, {"loc_id": 10934, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": 1990.6, "z": -9534.1, "px": 2387.7, "py": 420.8}, {"loc_id": 10934, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 1990.6, "z": -9534.1, "px": 2387.7, "py": 420.8}, {"loc_id": 10934, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 1, "x": 1990.6, "z": -9534.1, "px": 2387.7, "py": 420.8}, {"loc_id": 10934, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": 1990.6, "z": -9534.1, "px": 2387.7, "py": 420.8}, {"loc_id": 10934, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 1, "x": 1990.6, "z": -9534.1, "px": 2387.7, "py": 420.8}, {"loc_id": 10935, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": 3525.7, "z": -8574.7, "px": 2649.7, "py": 584.6}, {"loc_id": 10935, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 3525.7, "z": -8574.7, "px": 2649.7, "py": 584.6}, {"loc_id": 10936, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": -5382.2, "z": -7490.6, "px": 1129.4, "py": 769.6}, {"loc_id": 10936, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -5382.2, "z": -7490.6, "px": 1129.4, "py": 769.6}, {"loc_id": 10936, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -5382.2, "z": -7490.6, "px": 1129.4, "py": 769.6}, {"loc_id": 10936, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -5382.2, "z": -7490.6, "px": 1129.4, "py": 769.6}, {"loc_id": 10937, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": -1339.3, "z": -9094.4, "px": 1819.4, "py": 495.9}, {"loc_id": 10937, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -1339.3, "z": -9094.4, "px": 1819.4, "py": 495.9}, {"loc_id": 10937, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -1339.3, "z": -9094.4, "px": 1819.4, "py": 495.9}, {"loc_id": 10938, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": 2301.9, "z": -9218.0, "px": 2440.9, "py": 474.8}, {"loc_id": 10938, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 2301.9, "z": -9218.0, "px": 2440.9, "py": 474.8}, {"loc_id": 10938, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 2301.9, "z": -9218.0, "px": 2440.9, "py": 474.8}, {"loc_id": 10938, "loc_name": "MorgenHole1", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": 2301.9, "z": -9218.0, "px": 2440.9, "py": 474.8}, {"loc_id": 10939, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": -1671.4, "z": -9473.9, "px": 1762.7, "py": 431.1}, {"loc_id": 10939, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -1671.4, "z": -9473.9, "px": 1762.7, "py": 431.1}, {"loc_id": 10939, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 1, "x": -1671.4, "z": -9473.9, "px": 1762.7, "py": 431.1}, {"loc_id": 10939, "loc_name": "MorgenHole1", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": -1671.4, "z": -9473.9, "px": 1762.7, "py": 431.1}, {"loc_id": 10940, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": 199.0, "z": -9403.6, "px": 2082.0, "py": 443.1}, {"loc_id": 10940, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 199.0, "z": -9403.6, "px": 2082.0, "py": 443.1}, {"loc_id": 10940, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 199.0, "z": -9403.6, "px": 2082.0, "py": 443.1}, {"loc_id": 10940, "loc_name": "MorgenHole1", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": 199.0, "z": -9403.6, "px": 2082.0, "py": 443.1}, {"loc_id": 10941, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": 2628.6, "z": -9406.3, "px": 2496.6, "py": 442.7}, {"loc_id": 10941, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 2628.6, "z": -9406.3, "px": 2496.6, "py": 442.7}, {"loc_id": 10941, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 2628.6, "z": -9406.3, "px": 2496.6, "py": 442.7}, {"loc_id": 10941, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": 2628.6, "z": -9406.3, "px": 2496.6, "py": 442.7}, {"loc_id": 10942, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": 1026.0, "z": -8888.6, "px": 2223.1, "py": 531.0}, {"loc_id": 10942, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 1026.0, "z": -8888.6, "px": 2223.1, "py": 531.0}, {"loc_id": 10942, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 1026.0, "z": -8888.6, "px": 2223.1, "py": 531.0}, {"loc_id": 10942, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": 1026.0, "z": -8888.6, "px": 2223.1, "py": 531.0}, {"loc_id": 10943, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": 1656.2, "z": -9411.2, "px": 2330.7, "py": 441.8}, {"loc_id": 10943, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 1656.2, "z": -9411.2, "px": 2330.7, "py": 441.8}, {"loc_id": 10943, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 1656.2, "z": -9411.2, "px": 2330.7, "py": 441.8}, {"loc_id": 10943, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": 1656.2, "z": -9411.2, "px": 2330.7, "py": 441.8}, {"loc_id": 10944, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": 3591.4, "z": -8261.3, "px": 2660.9, "py": 638.1}, {"loc_id": 10944, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 3591.4, "z": -8261.3, "px": 2660.9, "py": 638.1}, {"loc_id": 10944, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 1, "x": 3591.4, "z": -8261.3, "px": 2660.9, "py": 638.1}, {"loc_id": 10945, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": 1594.6, "z": -9732.9, "px": 2320.1, "py": 386.9}, {"loc_id": 10945, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 1594.6, "z": -9732.9, "px": 2320.1, "py": 386.9}, {"loc_id": 10946, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": 5438.2, "z": -8059.0, "px": 2976.1, "py": 672.6}, {"loc_id": 10946, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 5438.2, "z": -8059.0, "px": 2976.1, "py": 672.6}, {"loc_id": 10946, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": 5438.2, "z": -8059.0, "px": 2976.1, "py": 672.6}, {"loc_id": 10947, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": 4092.9, "z": -8702.1, "px": 2746.5, "py": 562.8}, {"loc_id": 10947, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 4092.9, "z": -8702.1, "px": 2746.5, "py": 562.8}, {"loc_id": 10947, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": 4092.9, "z": -8702.1, "px": 2746.5, "py": 562.8}, {"loc_id": 10947, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 1, "x": 4092.9, "z": -8702.1, "px": 2746.5, "py": 562.8}, {"loc_id": 10947, "loc_name": "MorgenHole1", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": 4092.9, "z": -8702.1, "px": 2746.5, "py": 562.8}, {"loc_id": 10948, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": -576.9, "z": -9017.7, "px": 1949.5, "py": 509.0}, {"loc_id": 10948, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -576.9, "z": -9017.7, "px": 1949.5, "py": 509.0}, {"loc_id": 10948, "loc_name": "MorgenHole1", "item": "Pickable: MoltenCore", "count": 1, "x": -576.9, "z": -9017.7, "px": 1949.5, "py": 509.0}, {"loc_id": 10949, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": -382.7, "z": -8637.2, "px": 1982.7, "py": 573.9}, {"loc_id": 10949, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -382.7, "z": -8637.2, "px": 1982.7, "py": 573.9}, {"loc_id": 10949, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -382.7, "z": -8637.2, "px": 1982.7, "py": 573.9}, {"loc_id": 10950, "loc_name": "MorgenHole1", "item": "SpawnOnce: Morgen", "count": 1, "x": -3711.2, "z": -9150.7, "px": 1414.6, "py": 486.3}, {"loc_id": 10950, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -3711.2, "z": -9150.7, "px": 1414.6, "py": 486.3}, {"loc_id": 10950, "loc_name": "MorgenHole1", "item": "Pickable: Entrails", "count": 1, "x": -3711.2, "z": -9150.7, "px": 1414.6, "py": 486.3}, {"loc_id": 10950, "loc_name": "MorgenHole1", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -3711.2, "z": -9150.7, "px": 1414.6, "py": 486.3}, {"loc_id": 10951, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -4803.1, "z": -8384.7, "px": 1228.3, "py": 617.0}, {"loc_id": 10951, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -4803.1, "z": -8384.7, "px": 1228.3, "py": 617.0}, {"loc_id": 10951, "loc_name": "MorgenHole2", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": -4803.1, "z": -8384.7, "px": 1228.3, "py": 617.0}, {"loc_id": 10952, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -3396.9, "z": -8454.9, "px": 1468.3, "py": 605.0}, {"loc_id": 10952, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -3396.9, "z": -8454.9, "px": 1468.3, "py": 605.0}, {"loc_id": 10952, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 1, "x": -3396.9, "z": -8454.9, "px": 1468.3, "py": 605.0}, {"loc_id": 10952, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -3396.9, "z": -8454.9, "px": 1468.3, "py": 605.0}, {"loc_id": 10952, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 1, "x": -3396.9, "z": -8454.9, "px": 1468.3, "py": 605.0}, {"loc_id": 10952, "loc_name": "MorgenHole2", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": -3396.9, "z": -8454.9, "px": 1468.3, "py": 605.0}, {"loc_id": 10953, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -510.3, "z": -9340.6, "px": 1960.9, "py": 453.9}, {"loc_id": 10953, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -510.3, "z": -9340.6, "px": 1960.9, "py": 453.9}, {"loc_id": 10953, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -510.3, "z": -9340.6, "px": 1960.9, "py": 453.9}, {"loc_id": 10954, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": 2045.3, "z": -8382.3, "px": 2397.1, "py": 617.4}, {"loc_id": 10954, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 2045.3, "z": -8382.3, "px": 2397.1, "py": 617.4}, {"loc_id": 10954, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": 2045.3, "z": -8382.3, "px": 2397.1, "py": 617.4}, {"loc_id": 10954, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 2045.3, "z": -8382.3, "px": 2397.1, "py": 617.4}, {"loc_id": 10954, "loc_name": "MorgenHole2", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": 2045.3, "z": -8382.3, "px": 2397.1, "py": 617.4}, {"loc_id": 10955, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -4090.0, "z": -9090.5, "px": 1350.0, "py": 496.6}, {"loc_id": 10955, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -4090.0, "z": -9090.5, "px": 1350.0, "py": 496.6}, {"loc_id": 10955, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -4090.0, "z": -9090.5, "px": 1350.0, "py": 496.6}, {"loc_id": 10955, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -4090.0, "z": -9090.5, "px": 1350.0, "py": 496.6}, {"loc_id": 10956, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": 835.7, "z": -8775.2, "px": 2190.6, "py": 550.4}, {"loc_id": 10956, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 835.7, "z": -8775.2, "px": 2190.6, "py": 550.4}, {"loc_id": 10957, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -903.9, "z": -9784.0, "px": 1893.7, "py": 378.2}, {"loc_id": 10957, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -903.9, "z": -9784.0, "px": 1893.7, "py": 378.2}, {"loc_id": 10958, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -1280.7, "z": -9470.9, "px": 1829.4, "py": 431.6}, {"loc_id": 10958, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -1280.7, "z": -9470.9, "px": 1829.4, "py": 431.6}, {"loc_id": 10958, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -1280.7, "z": -9470.9, "px": 1829.4, "py": 431.6}, {"loc_id": 10959, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -2373.6, "z": -8955.5, "px": 1642.9, "py": 519.6}, {"loc_id": 10959, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -2373.6, "z": -8955.5, "px": 1642.9, "py": 519.6}, {"loc_id": 10959, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -2373.6, "z": -8955.5, "px": 1642.9, "py": 519.6}, {"loc_id": 10959, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -2373.6, "z": -8955.5, "px": 1642.9, "py": 519.6}, {"loc_id": 10959, "loc_name": "MorgenHole2", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": -2373.6, "z": -8955.5, "px": 1642.9, "py": 519.6}, {"loc_id": 10960, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -2426.2, "z": -8512.5, "px": 1633.9, "py": 595.2}, {"loc_id": 10960, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -2426.2, "z": -8512.5, "px": 1633.9, "py": 595.2}, {"loc_id": 10960, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -2426.2, "z": -8512.5, "px": 1633.9, "py": 595.2}, {"loc_id": 10961, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -2115.5, "z": -8827.0, "px": 1687.0, "py": 541.5}, {"loc_id": 10961, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -2115.5, "z": -8827.0, "px": 1687.0, "py": 541.5}, {"loc_id": 10961, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -2115.5, "z": -8827.0, "px": 1687.0, "py": 541.5}, {"loc_id": 10962, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": 1854.2, "z": -8647.3, "px": 2364.5, "py": 572.2}, {"loc_id": 10962, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 1854.2, "z": -8647.3, "px": 2364.5, "py": 572.2}, {"loc_id": 10962, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": 1854.2, "z": -8647.3, "px": 2364.5, "py": 572.2}, {"loc_id": 10963, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": 3898.4, "z": -8765.0, "px": 2713.3, "py": 552.1}, {"loc_id": 10963, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 3898.4, "z": -8765.0, "px": 2713.3, "py": 552.1}, {"loc_id": 10963, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 1, "x": 3898.4, "z": -8765.0, "px": 2713.3, "py": 552.1}, {"loc_id": 10964, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -4993.3, "z": -8254.4, "px": 1195.8, "py": 639.2}, {"loc_id": 10964, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -4993.3, "z": -8254.4, "px": 1195.8, "py": 639.2}, {"loc_id": 10964, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -4993.3, "z": -8254.4, "px": 1195.8, "py": 639.2}, {"loc_id": 10964, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -4993.3, "z": -8254.4, "px": 1195.8, "py": 639.2}, {"loc_id": 10964, "loc_name": "MorgenHole2", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": -4993.3, "z": -8254.4, "px": 1195.8, "py": 639.2}, {"loc_id": 10965, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -4356.9, "z": -7998.9, "px": 1304.4, "py": 682.9}, {"loc_id": 10965, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -4356.9, "z": -7998.9, "px": 1304.4, "py": 682.9}, {"loc_id": 10965, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 1, "x": -4356.9, "z": -7998.9, "px": 1304.4, "py": 682.9}, {"loc_id": 10965, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -4356.9, "z": -7998.9, "px": 1304.4, "py": 682.9}, {"loc_id": 10965, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -4356.9, "z": -7998.9, "px": 1304.4, "py": 682.9}, {"loc_id": 10966, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": 575.1, "z": -9915.4, "px": 2146.2, "py": 355.8}, {"loc_id": 10966, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 575.1, "z": -9915.4, "px": 2146.2, "py": 355.8}, {"loc_id": 10966, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 1, "x": 575.1, "z": -9915.4, "px": 2146.2, "py": 355.8}, {"loc_id": 10966, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": 575.1, "z": -9915.4, "px": 2146.2, "py": 355.8}, {"loc_id": 10966, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 575.1, "z": -9915.4, "px": 2146.2, "py": 355.8}, {"loc_id": 10966, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 1, "x": 575.1, "z": -9915.4, "px": 2146.2, "py": 355.8}, {"loc_id": 10966, "loc_name": "MorgenHole2", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": 575.1, "z": -9915.4, "px": 2146.2, "py": 355.8}, {"loc_id": 10967, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -2684.9, "z": -8378.4, "px": 1589.8, "py": 618.1}, {"loc_id": 10967, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -2684.9, "z": -8378.4, "px": 1589.8, "py": 618.1}, {"loc_id": 10968, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": 441.9, "z": -8902.7, "px": 2123.4, "py": 528.6}, {"loc_id": 10968, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 441.9, "z": -8902.7, "px": 2123.4, "py": 528.6}, {"loc_id": 10968, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": 441.9, "z": -8902.7, "px": 2123.4, "py": 528.6}, {"loc_id": 10968, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 441.9, "z": -8902.7, "px": 2123.4, "py": 528.6}, {"loc_id": 10969, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": 3201.0, "z": -9283.9, "px": 2594.3, "py": 463.5}, {"loc_id": 10969, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 3201.0, "z": -9283.9, "px": 2594.3, "py": 463.5}, {"loc_id": 10969, "loc_name": "MorgenHole2", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": 3201.0, "z": -9283.9, "px": 2594.3, "py": 463.5}, {"loc_id": 10970, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -1022.6, "z": -9272.9, "px": 1873.5, "py": 465.4}, {"loc_id": 10970, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -1022.6, "z": -9272.9, "px": 1873.5, "py": 465.4}, {"loc_id": 10970, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -1022.6, "z": -9272.9, "px": 1873.5, "py": 465.4}, {"loc_id": 10970, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -1022.6, "z": -9272.9, "px": 1873.5, "py": 465.4}, {"loc_id": 10970, "loc_name": "MorgenHole2", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": -1022.6, "z": -9272.9, "px": 1873.5, "py": 465.4}, {"loc_id": 10971, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -4740.1, "z": -8063.2, "px": 1239.0, "py": 671.9}, {"loc_id": 10971, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -4740.1, "z": -8063.2, "px": 1239.0, "py": 671.9}, {"loc_id": 10971, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -4740.1, "z": -8063.2, "px": 1239.0, "py": 671.9}, {"loc_id": 10971, "loc_name": "MorgenHole2", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": -4740.1, "z": -8063.2, "px": 1239.0, "py": 671.9}, {"loc_id": 10972, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": 2820.4, "z": -9349.6, "px": 2529.3, "py": 452.3}, {"loc_id": 10972, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 2820.4, "z": -9349.6, "px": 2529.3, "py": 452.3}, {"loc_id": 10972, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": 2820.4, "z": -9349.6, "px": 2529.3, "py": 452.3}, {"loc_id": 10973, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": 3143.3, "z": -8516.3, "px": 2584.5, "py": 594.6}, {"loc_id": 10973, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 3143.3, "z": -8516.3, "px": 2584.5, "py": 594.6}, {"loc_id": 10973, "loc_name": "MorgenHole2", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": 3143.3, "z": -8516.3, "px": 2584.5, "py": 594.6}, {"loc_id": 10974, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -701.5, "z": -9923.4, "px": 1928.3, "py": 354.4}, {"loc_id": 10974, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -701.5, "z": -9923.4, "px": 1928.3, "py": 354.4}, {"loc_id": 10974, "loc_name": "MorgenHole2", "item": "Pickable: Entrails", "count": 1, "x": -701.5, "z": -9923.4, "px": 1928.3, "py": 354.4}, {"loc_id": 10974, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -701.5, "z": -9923.4, "px": 1928.3, "py": 354.4}, {"loc_id": 10975, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -4990.4, "z": -7620.3, "px": 1196.3, "py": 747.5}, {"loc_id": 10975, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -4990.4, "z": -7620.3, "px": 1196.3, "py": 747.5}, {"loc_id": 10975, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -4990.4, "z": -7620.3, "px": 1196.3, "py": 747.5}, {"loc_id": 10975, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 1, "x": -4990.4, "z": -7620.3, "px": 1196.3, "py": 747.5}, {"loc_id": 10976, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -6278.6, "z": -7619.5, "px": 976.5, "py": 747.6}, {"loc_id": 10976, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -6278.6, "z": -7619.5, "px": 976.5, "py": 747.6}, {"loc_id": 10976, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -6278.6, "z": -7619.5, "px": 976.5, "py": 747.6}, {"loc_id": 10977, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -3779.8, "z": -8195.9, "px": 1402.9, "py": 649.2}, {"loc_id": 10977, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -3779.8, "z": -8195.9, "px": 1402.9, "py": 649.2}, {"loc_id": 10977, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -3779.8, "z": -8195.9, "px": 1402.9, "py": 649.2}, {"loc_id": 10977, "loc_name": "MorgenHole2", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": -3779.8, "z": -8195.9, "px": 1402.9, "py": 649.2}, {"loc_id": 10978, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": 2881.7, "z": -9082.6, "px": 2539.8, "py": 497.9}, {"loc_id": 10978, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 2881.7, "z": -9082.6, "px": 2539.8, "py": 497.9}, {"loc_id": 10978, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": 2881.7, "z": -9082.6, "px": 2539.8, "py": 497.9}, {"loc_id": 10978, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 2881.7, "z": -9082.6, "px": 2539.8, "py": 497.9}, {"loc_id": 10979, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -5434.2, "z": -7745.7, "px": 1120.6, "py": 726.1}, {"loc_id": 10979, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -5434.2, "z": -7745.7, "px": 1120.6, "py": 726.1}, {"loc_id": 10979, "loc_name": "MorgenHole2", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": -5434.2, "z": -7745.7, "px": 1120.6, "py": 726.1}, {"loc_id": 10980, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -3591.8, "z": -8891.7, "px": 1435.0, "py": 530.5}, {"loc_id": 10980, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -3591.8, "z": -8891.7, "px": 1435.0, "py": 530.5}, {"loc_id": 10980, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -3591.8, "z": -8891.7, "px": 1435.0, "py": 530.5}, {"loc_id": 10980, "loc_name": "MorgenHole2", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": -3591.8, "z": -8891.7, "px": 1435.0, "py": 530.5}, {"loc_id": 10981, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": 323.5, "z": -8637.8, "px": 2103.2, "py": 573.8}, {"loc_id": 10981, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 323.5, "z": -8637.8, "px": 2103.2, "py": 573.8}, {"loc_id": 10981, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 323.5, "z": -8637.8, "px": 2103.2, "py": 573.8}, {"loc_id": 10982, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -2567.5, "z": -8896.6, "px": 1609.8, "py": 529.6}, {"loc_id": 10982, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -2567.5, "z": -8896.6, "px": 1609.8, "py": 529.6}, {"loc_id": 10982, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -2567.5, "z": -8896.6, "px": 1609.8, "py": 529.6}, {"loc_id": 10982, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -2567.5, "z": -8896.6, "px": 1609.8, "py": 529.6}, {"loc_id": 10983, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -313.5, "z": -9592.6, "px": 1994.5, "py": 410.9}, {"loc_id": 10983, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -313.5, "z": -9592.6, "px": 1994.5, "py": 410.9}, {"loc_id": 10983, "loc_name": "MorgenHole2", "item": "Pickable: MoltenCore", "count": 1, "x": -313.5, "z": -9592.6, "px": 1994.5, "py": 410.9}, {"loc_id": 10983, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -313.5, "z": -9592.6, "px": 1994.5, "py": 410.9}, {"loc_id": 10983, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -313.5, "z": -9592.6, "px": 1994.5, "py": 410.9}, {"loc_id": 10984, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -2045.0, "z": -8636.6, "px": 1699.0, "py": 574.0}, {"loc_id": 10984, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -2045.0, "z": -8636.6, "px": 1699.0, "py": 574.0}, {"loc_id": 10984, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -2045.0, "z": -8636.6, "px": 1699.0, "py": 574.0}, {"loc_id": 10985, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -3776.8, "z": -8707.2, "px": 1403.4, "py": 562.0}, {"loc_id": 10985, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -3776.8, "z": -8707.2, "px": 1403.4, "py": 562.0}, {"loc_id": 10985, "loc_name": "MorgenHole2", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": -3776.8, "z": -8707.2, "px": 1403.4, "py": 562.0}, {"loc_id": 10986, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": 253.9, "z": -9596.2, "px": 2091.3, "py": 410.2}, {"loc_id": 10986, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 253.9, "z": -9596.2, "px": 2091.3, "py": 410.2}, {"loc_id": 10986, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": 253.9, "z": -9596.2, "px": 2091.3, "py": 410.2}, {"loc_id": 10986, "loc_name": "MorgenHole2", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": 253.9, "z": -9596.2, "px": 2091.3, "py": 410.2}, {"loc_id": 10987, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": 3001.0, "z": -8838.1, "px": 2560.2, "py": 539.6}, {"loc_id": 10987, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 3001.0, "z": -8838.1, "px": 2560.2, "py": 539.6}, {"loc_id": 10987, "loc_name": "MorgenHole2", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": 3001.0, "z": -8838.1, "px": 2560.2, "py": 539.6}, {"loc_id": 10988, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -5241.2, "z": -7808.0, "px": 1153.5, "py": 715.4}, {"loc_id": 10988, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -5241.2, "z": -7808.0, "px": 1153.5, "py": 715.4}, {"loc_id": 10988, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -5241.2, "z": -7808.0, "px": 1153.5, "py": 715.4}, {"loc_id": 10988, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -5241.2, "z": -7808.0, "px": 1153.5, "py": 715.4}, {"loc_id": 10988, "loc_name": "MorgenHole2", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": -5241.2, "z": -7808.0, "px": 1153.5, "py": 715.4}, {"loc_id": 10989, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": -2112.8, "z": -8443.5, "px": 1687.4, "py": 607.0}, {"loc_id": 10989, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -2112.8, "z": -8443.5, "px": 1687.4, "py": 607.0}, {"loc_id": 10990, "loc_name": "MorgenHole2", "item": "SpawnOnce: Morgen", "count": 1, "x": 2054.7, "z": -9336.5, "px": 2398.7, "py": 454.6}, {"loc_id": 10990, "loc_name": "MorgenHole2", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 2054.7, "z": -9336.5, "px": 2398.7, "py": 454.6}, {"loc_id": 10990, "loc_name": "MorgenHole2", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": 2054.7, "z": -9336.5, "px": 2398.7, "py": 454.6}, {"loc_id": 10991, "loc_name": "MorgenHole3", "item": "SpawnOnce: Morgen", "count": 1, "x": 2237.7, "z": -9472.3, "px": 2429.9, "py": 431.4}, {"loc_id": 10991, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 2237.7, "z": -9472.3, "px": 2429.9, "py": 431.4}, {"loc_id": 10991, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": 2237.7, "z": -9472.3, "px": 2429.9, "py": 431.4}, {"loc_id": 10991, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 2237.7, "z": -9472.3, "px": 2429.9, "py": 431.4}, {"loc_id": 10991, "loc_name": "MorgenHole3", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": 2237.7, "z": -9472.3, "px": 2429.9, "py": 431.4}, {"loc_id": 10992, "loc_name": "MorgenHole3", "item": "SpawnOnce: Morgen", "count": 1, "x": -3324.4, "z": -8834.4, "px": 1480.6, "py": 540.3}, {"loc_id": 10992, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -3324.4, "z": -8834.4, "px": 1480.6, "py": 540.3}, {"loc_id": 10992, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -3324.4, "z": -8834.4, "px": 1480.6, "py": 540.3}, {"loc_id": 10993, "loc_name": "MorgenHole3", "item": "SpawnOnce: Morgen", "count": 1, "x": -5191.9, "z": -7610.9, "px": 1161.9, "py": 749.1}, {"loc_id": 10993, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -5191.9, "z": -7610.9, "px": 1161.9, "py": 749.1}, {"loc_id": 10993, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -5191.9, "z": -7610.9, "px": 1161.9, "py": 749.1}, {"loc_id": 10993, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -5191.9, "z": -7610.9, "px": 1161.9, "py": 749.1}, {"loc_id": 10994, "loc_name": "MorgenHole3", "item": "SpawnOnce: Morgen", "count": 1, "x": 376.8, "z": -9274.9, "px": 2112.3, "py": 465.1}, {"loc_id": 10994, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 376.8, "z": -9274.9, "px": 2112.3, "py": 465.1}, {"loc_id": 10994, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 376.8, "z": -9274.9, "px": 2112.3, "py": 465.1}, {"loc_id": 10995, "loc_name": "MorgenHole3", "item": "SpawnOnce: Morgen", "count": 1, "x": 891.8, "z": -9279.3, "px": 2200.2, "py": 464.3}, {"loc_id": 10995, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 891.8, "z": -9279.3, "px": 2200.2, "py": 464.3}, {"loc_id": 10995, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": 891.8, "z": -9279.3, "px": 2200.2, "py": 464.3}, {"loc_id": 10995, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 891.8, "z": -9279.3, "px": 2200.2, "py": 464.3}, {"loc_id": 10996, "loc_name": "MorgenHole3", "item": "SpawnOnce: Morgen", "count": 1, "x": -2438.3, "z": -8313.0, "px": 1631.9, "py": 629.2}, {"loc_id": 10996, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -2438.3, "z": -8313.0, "px": 1631.9, "py": 629.2}, {"loc_id": 10996, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -2438.3, "z": -8313.0, "px": 1631.9, "py": 629.2}, {"loc_id": 10997, "loc_name": "MorgenHole3", "item": "SpawnOnce: Morgen", "count": 1, "x": -1978.8, "z": -9283.9, "px": 1710.3, "py": 463.5}, {"loc_id": 10997, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -1978.8, "z": -9283.9, "px": 1710.3, "py": 463.5}, {"loc_id": 10997, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -1978.8, "z": -9283.9, "px": 1710.3, "py": 463.5}, {"loc_id": 10998, "loc_name": "MorgenHole3", "item": "SpawnOnce: Morgen", "count": 1, "x": -1477.1, "z": -9534.7, "px": 1795.9, "py": 420.7}, {"loc_id": 10998, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -1477.1, "z": -9534.7, "px": 1795.9, "py": 420.7}, {"loc_id": 10998, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -1477.1, "z": -9534.7, "px": 1795.9, "py": 420.7}, {"loc_id": 10998, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -1477.1, "z": -9534.7, "px": 1795.9, "py": 420.7}, {"loc_id": 10998, "loc_name": "MorgenHole3", "item": "Pickable: MoltenCore", "count": 1, "x": -1477.1, "z": -9534.7, "px": 1795.9, "py": 420.7}, {"loc_id": 10999, "loc_name": "MorgenHole3", "item": "SpawnOnce: Morgen", "count": 1, "x": -134.7, "z": -8764.2, "px": 2025.0, "py": 552.2}, {"loc_id": 10999, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -134.7, "z": -8764.2, "px": 2025.0, "py": 552.2}, {"loc_id": 10999, "loc_name": "MorgenHole3", "item": "Vegvisir: PlaceofMystery1 ($placeofmystery)", "count": 1, "x": -134.7, "z": -8764.2, "px": 2025.0, "py": 552.2}, {"loc_id": 11000, "loc_name": "MorgenHole3", "item": "SpawnOnce: Morgen", "count": 1, "x": 1852.3, "z": -9215.7, "px": 2364.1, "py": 475.2}, {"loc_id": 11000, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 1852.3, "z": -9215.7, "px": 2364.1, "py": 475.2}, {"loc_id": 11000, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": 1852.3, "z": -9215.7, "px": 2364.1, "py": 475.2}, {"loc_id": 11001, "loc_name": "MorgenHole3", "item": "SpawnOnce: Morgen", "count": 1, "x": 128.1, "z": -9215.8, "px": 2069.9, "py": 475.2}, {"loc_id": 11001, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 128.1, "z": -9215.8, "px": 2069.9, "py": 475.2}, {"loc_id": 11001, "loc_name": "MorgenHole3", "item": "Pickable: MoltenCore", "count": 1, "x": 128.1, "z": -9215.8, "px": 2069.9, "py": 475.2}, {"loc_id": 11002, "loc_name": "MorgenHole3", "item": "SpawnOnce: Morgen", "count": 1, "x": 5380.1, "z": -7867.4, "px": 2966.2, "py": 705.3}, {"loc_id": 11002, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 5380.1, "z": -7867.4, "px": 2966.2, "py": 705.3}, {"loc_id": 11003, "loc_name": "MorgenHole3", "item": "SpawnOnce: Morgen", "count": 1, "x": -3580.8, "z": -8260.6, "px": 1436.9, "py": 638.2}, {"loc_id": 11003, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -3580.8, "z": -8260.6, "px": 1436.9, "py": 638.2}, {"loc_id": 11004, "loc_name": "MorgenHole3", "item": "SpawnOnce: Morgen", "count": 1, "x": 3770.8, "z": -8507.0, "px": 2691.5, "py": 596.1}, {"loc_id": 11004, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 3770.8, "z": -8507.0, "px": 2691.5, "py": 596.1}, {"loc_id": 11005, "loc_name": "MorgenHole3", "item": "SpawnOnce: Morgen", "count": 1, "x": -957.4, "z": -9082.8, "px": 1884.6, "py": 497.9}, {"loc_id": 11005, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -957.4, "z": -9082.8, "px": 1884.6, "py": 497.9}, {"loc_id": 11005, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -957.4, "z": -9082.8, "px": 1884.6, "py": 497.9}, {"loc_id": 11005, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (3)", "count": 1, "x": -957.4, "z": -9082.8, "px": 1884.6, "py": 497.9}, {"loc_id": 11005, "loc_name": "MorgenHole3", "item": "Pickable: MoltenCore", "count": 1, "x": -957.4, "z": -9082.8, "px": 1884.6, "py": 497.9}, {"loc_id": 11006, "loc_name": "MorgenHole3", "item": "SpawnOnce: Morgen", "count": 1, "x": -4609.4, "z": -8324.6, "px": 1261.3, "py": 627.3}, {"loc_id": 11006, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -4609.4, "z": -8324.6, "px": 1261.3, "py": 627.3}, {"loc_id": 11006, "loc_name": "MorgenHole3", "item": "Pickable: Entrails", "count": 1, "x": -4609.4, "z": -8324.6, "px": 1261.3, "py": 627.3}, {"loc_id": 11006, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -4609.4, "z": -8324.6, "px": 1261.3, "py": 627.3}, {"loc_id": 11007, "loc_name": "MorgenHole3", "item": "SpawnOnce: Morgen", "count": 1, "x": -5181.1, "z": -8002.8, "px": 1163.8, "py": 682.2}, {"loc_id": 11007, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -5181.1, "z": -8002.8, "px": 1163.8, "py": 682.2}, {"loc_id": 11007, "loc_name": "MorgenHole3", "item": "Pickable: MoltenCore", "count": 1, "x": -5181.1, "z": -8002.8, "px": 1163.8, "py": 682.2}, {"loc_id": 11007, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -5181.1, "z": -8002.8, "px": 1163.8, "py": 682.2}, {"loc_id": 11008, "loc_name": "MorgenHole3", "item": "SpawnOnce: Morgen", "count": 1, "x": -2823.0, "z": -8575.7, "px": 1566.2, "py": 584.4}, {"loc_id": 11008, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": -2823.0, "z": -8575.7, "px": 1566.2, "py": 584.4}, {"loc_id": 11008, "loc_name": "MorgenHole3", "item": "Pickable: Entrails", "count": 1, "x": -2823.0, "z": -8575.7, "px": 1566.2, "py": 584.4}, {"loc_id": 11008, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": -2823.0, "z": -8575.7, "px": 1566.2, "py": 584.4}, {"loc_id": 11009, "loc_name": "MorgenHole3", "item": "SpawnOnce: Morgen", "count": 1, "x": 1084.2, "z": -9407.6, "px": 2233.0, "py": 442.4}, {"loc_id": 11009, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (1)", "count": 1, "x": 1084.2, "z": -9407.6, "px": 2233.0, "py": 442.4}, {"loc_id": 11009, "loc_name": "MorgenHole3", "item": "Container: TreasureChest_ashland_stone (2)", "count": 1, "x": 1084.2, "z": -9407.6, "px": 2233.0, "py": 442.4}, {"loc_id": 11014, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 1, "x": 3894.8, "z": -8650.9, "px": 2712.7, "py": 571.6}, {"loc_id": 11020, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 1, "x": 2608.5, "z": -8912.0, "px": 2493.2, "py": 527.0}, {"loc_id": 11021, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 1, "x": -5000.8, "z": -8511.5, "px": 1194.5, "py": 595.4}, {"loc_id": 11030, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 1, "x": -2447.1, "z": -9030.8, "px": 1630.4, "py": 506.7}, {"loc_id": 11033, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 1, "x": -1462.2, "z": -8591.4, "px": 1798.5, "py": 581.7}, {"loc_id": 11037, "loc_name": "CharredRuins2", "item": "Vegvisir: FaderLocation ($enemy_fader_codename)", "count": 1, "x": 2958.6, "z": -8842.0, "px": 2552.9, "py": 539.0}, {"loc_id": 11045, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 1, "x": -5298.0, "z": -8244.2, "px": 1143.8, "py": 641.0}, {"loc_id": 11047, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 1, "x": -5301.5, "z": -7943.9, "px": 1143.2, "py": 692.2}, {"loc_id": 11050, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 1, "x": -2178.4, "z": -8310.7, "px": 1676.2, "py": 629.6}, {"loc_id": 11053, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 1, "x": 5840.2, "z": -8134.2, "px": 3044.7, "py": 659.8}, {"loc_id": 11055, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 1, "x": 2166.9, "z": -9650.7, "px": 2417.8, "py": 400.9}, {"loc_id": 11057, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 1, "x": 4172.8, "z": -8528.9, "px": 2760.2, "py": 592.4}, {"loc_id": 11063, "loc_name": "CharredRuins2", "item": "Vegvisir: FaderLocation ($enemy_fader_codename)", "count": 1, "x": -4978.9, "z": -8061.0, "px": 1198.3, "py": 672.3}, {"loc_id": 11087, "loc_name": "CharredRuins2", "item": "Vegvisir: FaderLocation ($enemy_fader_codename)", "count": 1, "x": -4878.3, "z": -8253.2, "px": 1215.4, "py": 639.5}, {"loc_id": 11089, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 1, "x": -1028.4, "z": -9094.3, "px": 1872.5, "py": 495.9}, {"loc_id": 11102, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 1, "x": -5114.2, "z": -8368.7, "px": 1175.2, "py": 619.7}, {"loc_id": 11103, "loc_name": "CharredRuins2", "item": "Vegvisir: FaderLocation ($enemy_fader_codename)", "count": 1, "x": 974.6, "z": -9457.0, "px": 2214.3, "py": 434.0}, {"loc_id": 11106, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 1, "x": -3594.4, "z": -8203.2, "px": 1434.6, "py": 648.0}, {"loc_id": 11107, "loc_name": "CharredRuins2", "item": "Pickable: Vineberry", "count": 1, "x": 60.0, "z": -9215.8, "px": 2058.2, "py": 475.2}, {"loc_id": 11112, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 1, "x": -1539.2, "z": -8648.9, "px": 1785.3, "py": 571.9}, {"loc_id": 11114, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 1, "x": -6.7, "z": -9900.4, "px": 2046.9, "py": 358.3}, {"loc_id": 11124, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 1, "x": 5966.5, "z": -7541.6, "px": 3066.3, "py": 760.9}, {"loc_id": 11151, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 1, "x": -4406.3, "z": -7891.9, "px": 1296.0, "py": 701.1}, {"loc_id": 11152, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 1, "x": -4940.2, "z": -8114.2, "px": 1204.9, "py": 663.2}, {"loc_id": 11154, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 1, "x": 398.7, "z": -9461.6, "px": 2116.0, "py": 433.2}, {"loc_id": 11159, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 1, "x": -5362.0, "z": -8312.6, "px": 1132.9, "py": 629.3}, {"loc_id": 11174, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 1, "x": 3322.1, "z": -8498.5, "px": 2615.0, "py": 597.6}, {"loc_id": 11175, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 1, "x": -1226.8, "z": -8260.2, "px": 1838.6, "py": 638.3}, {"loc_id": 11178, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 1, "x": 317.1, "z": -8521.8, "px": 2102.1, "py": 593.6}, {"loc_id": 11181, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 1, "x": -11.1, "z": -9673.7, "px": 2046.1, "py": 397.0}, {"loc_id": 11186, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 1, "x": -5168.0, "z": -8136.7, "px": 1166.0, "py": 659.3}, {"loc_id": 11189, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 1, "x": -3507.2, "z": -8268.8, "px": 1449.4, "py": 636.8}, {"loc_id": 11191, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 1, "x": 3019.1, "z": -8307.1, "px": 2563.3, "py": 630.3}, {"loc_id": 11192, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 1, "x": 5702.0, "z": -8011.4, "px": 3021.1, "py": 680.7}, {"loc_id": 11194, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 1, "x": 3056.8, "z": -9459.2, "px": 2569.7, "py": 433.6}, {"loc_id": 11198, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 1, "x": -3086.7, "z": -8530.0, "px": 1521.2, "py": 592.2}, {"loc_id": 11204, "loc_name": "CharredRuins3", "item": "Pickable: Vineberry", "count": 1, "x": -201.1, "z": -9485.6, "px": 2013.7, "py": 429.1}, {"loc_id": 11216, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 1, "x": -1070.5, "z": -8821.1, "px": 1865.3, "py": 542.5}, {"loc_id": 11220, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 1, "x": 462.1, "z": -9993.1, "px": 2126.9, "py": 342.5}, {"loc_id": 11223, "loc_name": "CharredRuins4", "item": "Vegvisir: FaderLocation ($enemy_fader_codename)", "count": 1, "x": -2895.5, "z": -8976.0, "px": 1553.8, "py": 516.1}, {"loc_id": 11225, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 1, "x": 336.4, "z": -8592.9, "px": 2105.4, "py": 581.5}, {"loc_id": 11228, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 1, "x": 4486.5, "z": -8374.5, "px": 2813.7, "py": 618.8}, {"loc_id": 11230, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 1, "x": 323.1, "z": -9398.0, "px": 2103.1, "py": 444.1}, {"loc_id": 11235, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 1, "x": -4915.4, "z": -8495.4, "px": 1209.1, "py": 598.1}, {"loc_id": 11236, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 1, "x": -2505.3, "z": -8268.4, "px": 1620.4, "py": 636.9}, {"loc_id": 11249, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 1, "x": 532.9, "z": -8766.1, "px": 2138.9, "py": 551.9}, {"loc_id": 11250, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 1, "x": 6127.7, "z": -7503.3, "px": 3093.8, "py": 767.4}, {"loc_id": 11257, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 1, "x": 2348.6, "z": -9108.2, "px": 2448.8, "py": 493.5}, {"loc_id": 11277, "loc_name": "CharredRuins4", "item": "Vegvisir: FaderLocation ($enemy_fader_codename)", "count": 1, "x": 3883.2, "z": -8302.7, "px": 2710.7, "py": 631.0}, {"loc_id": 11284, "loc_name": "CharredRuins4", "item": "Vegvisir: FaderLocation ($enemy_fader_codename)", "count": 1, "x": -1154.4, "z": -9782.7, "px": 1851.0, "py": 378.4}, {"loc_id": 11292, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 1, "x": 1909.6, "z": -9595.1, "px": 2373.9, "py": 410.4}, {"loc_id": 11296, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 1, "x": 2560.4, "z": -9098.4, "px": 2485.0, "py": 495.2}, {"loc_id": 11300, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 1, "x": 1203.4, "z": -9480.1, "px": 2253.4, "py": 430.1}, {"loc_id": 11304, "loc_name": "CharredRuins4", "item": "Pickable: Vineberry", "count": 1, "x": -3022.2, "z": -9219.3, "px": 1532.2, "py": 474.6}];
|
|
const CAT_COLORS = {"boss": "#ff4444", "dungeon": "#ff8800", "vegvisir": "#44aaff", "altar": "#aa88ff", "vendor": "#ffdd00", "structure": "#88cc88", "resource": "#ff66aa", "spawner": "#ff44ff", "point_of_interest": "#44ffaa", "other": "#888888"};
|
|
const CAT_LABELS = {"boss": "Boss Altars", "dungeon": "Dungeons", "vegvisir": "Vegvisirs", "vendor": "Vendors", "altar": "Altars / Stones", "structure": "Structures", "resource": "Resources", "spawner": "Spawners", "point_of_interest": "POIs", "other": "Other"};
|
|
const CAT_COUNTS = {"altar": 752, "boss": 16, "dungeon": 1330, "other": 5894, "point_of_interest": 1, "resource": 283, "spawner": 350, "structure": 2660, "vendor": 23};
|
|
|
|
const map = L.map('map', {
|
|
center: [2048, 2048],
|
|
zoom: -2,
|
|
minZoom: -3,
|
|
maxZoom: 3,
|
|
crs: L.CRS.Simple,
|
|
zoomSnap: 0.5,
|
|
zoomDelta: 0.5,
|
|
});
|
|
|
|
const bounds = [[0, 0], [4096, 4096]];
|
|
|
|
const layers = {};
|
|
layers.composite = L.imageOverlay('world_composite.png', bounds, { opacity: 1.0 }).addTo(map);
|
|
layers.biome = L.imageOverlay('world_biome.png', bounds, { opacity: 0.0 }).addTo(map);
|
|
layers.height = L.imageOverlay('world_height.png', bounds, { opacity: 0.0 }).addTo(map);
|
|
|
|
let activeLayer = 'composite';
|
|
|
|
function toggleLayer(name) {
|
|
if (name === activeLayer) return;
|
|
layers[activeLayer].setOpacity(0.0);
|
|
layers[name].setOpacity(1.0);
|
|
document.getElementById('btn-' + activeLayer).classList.remove('active');
|
|
document.getElementById('btn-' + name).classList.add('active');
|
|
activeLayer = name;
|
|
}
|
|
|
|
let markerLayer = L.layerGroup().addTo(map);
|
|
let allMarkers = [];
|
|
let activeCategories = new Set(Object.keys(CAT_COUNTS));
|
|
|
|
function createMarkers() {
|
|
markerLayer.clearLayers();
|
|
allMarkers = [];
|
|
|
|
POIS.forEach(function(p) {
|
|
if (!activeCategories.has(p.category)) return;
|
|
|
|
const color = CAT_COLORS[p.category] || '#888';
|
|
const icon = L.divIcon({
|
|
className: '',
|
|
html: '<div style="width:10px;height:10px;border-radius:50%;background:' + color + ';border:2px solid rgba(255,255,255,0.5);box-shadow:0 0 4px rgba(0,0,0,0.5);"></div>',
|
|
iconSize: [10, 10],
|
|
iconAnchor: [5, 5],
|
|
});
|
|
|
|
const marker = L.marker([p.py, p.px], { icon: icon }).addTo(markerLayer);
|
|
|
|
let popup = '<div class="popup-content">';
|
|
popup += '<div class="name">' + p.name + '</div>';
|
|
popup += '<div class="coords">(' + p.x + ', ' + p.z + ')</div>';
|
|
popup += '<div style="color:' + color + ';">' + p.category + '</div>';
|
|
if (p.has_dungeon) popup += '<span class="badge badge-dungeon">Dungeon</span>';
|
|
if (p.has_important) popup += '<span class="badge badge-treasure">Has Loot</span>';
|
|
|
|
const items = CONTENTS.filter(function(c) { return c.loc_id === p.id; });
|
|
if (items.length > 0) {
|
|
popup += '<hr style="border-color:#333;margin:4px 0;"><div style="font-size:11px;">';
|
|
for (let i = 0; i < Math.min(5, items.length); i++) {
|
|
popup += '<div>• ' + items[i].item + ' x' + items[i].count + '</div>';
|
|
}
|
|
if (items.length > 5) {
|
|
popup += '<div style="color:#888;">... +' + (items.length - 5) + ' more</div>';
|
|
}
|
|
popup += '</div>';
|
|
}
|
|
|
|
popup += '</div>';
|
|
marker.bindPopup(popup);
|
|
allMarkers.push({ marker: marker, p: p });
|
|
});
|
|
}
|
|
|
|
function buildLegend() {
|
|
const legend = document.getElementById('legend');
|
|
const order = ['boss', 'dungeon', 'vegvisir', 'vendor', 'resource', 'altar', 'structure', 'spawner', 'point_of_interest', 'other'];
|
|
let html = '';
|
|
order.forEach(function(cat) {
|
|
if (!CAT_COUNTS[cat]) return;
|
|
const color = CAT_COLORS[cat] || '#888';
|
|
const active = activeCategories.has(cat) ? 'active' : 'inactive';
|
|
html += '<div class="legend-item ' + active + '" onclick="toggleCategory(\'' + cat + '\')">';
|
|
html += '<span class="dot" style="background:' + color + '"></span>';
|
|
html += '<span>' + (CAT_LABELS[cat] || cat) + '</span>';
|
|
html += '<span class="count">' + CAT_COUNTS[cat] + '</span></div>';
|
|
});
|
|
legend.innerHTML = html;
|
|
}
|
|
|
|
function toggleCategory(cat) {
|
|
if (activeCategories.has(cat)) {
|
|
activeCategories.delete(cat);
|
|
} else {
|
|
activeCategories.add(cat);
|
|
}
|
|
createMarkers();
|
|
buildLegend();
|
|
}
|
|
|
|
function doSearch(query) {
|
|
const results = document.getElementById('searchResults');
|
|
if (!query || query.length < 2) { results.style.display = 'none'; return; }
|
|
|
|
const q = query.toLowerCase();
|
|
const matches = POIS.filter(function(p) {
|
|
return p.name.toLowerCase().indexOf(q) !== -1 || p.category.toLowerCase().indexOf(q) !== -1;
|
|
}).slice(0, 20);
|
|
|
|
if (matches.length === 0) { results.style.display = 'none'; return; }
|
|
|
|
let html = '';
|
|
matches.forEach(function(p) {
|
|
html += '<div onclick="flyTo(' + p.px + ', ' + p.py + ', \'' + p.name + '\')">';
|
|
html += '<span style="color:' + (CAT_COLORS[p.category] || '#888') + ';">●</span> ';
|
|
html += p.name + ' <span class="cat">' + p.category + '</span></div>';
|
|
});
|
|
results.innerHTML = html;
|
|
results.style.display = 'block';
|
|
}
|
|
|
|
function flyTo(px, py, name) {
|
|
map.flyTo([py, px], 1, { duration: 0.5 });
|
|
document.getElementById('searchResults').style.display = 'none';
|
|
document.getElementById('search').value = name;
|
|
}
|
|
|
|
document.addEventListener('click', function(e) {
|
|
if (!e.target.closest('.search-box')) {
|
|
document.getElementById('searchResults').style.display = 'none';
|
|
}
|
|
});
|
|
|
|
createMarkers();
|
|
buildLegend();
|
|
map.fitBounds(bounds);
|
|
</script>
|
|
</body>
|
|
</html> |