(id: string): T | undefined =>
+ document.getElementById(id) as T;
declare global {
interface Window {
diff --git a/tests/e2e/load-map.spec.ts b/tests/e2e/load-map.spec.ts
new file mode 100644
index 00000000..c135f188
--- /dev/null
+++ b/tests/e2e/load-map.spec.ts
@@ -0,0 +1,221 @@
+import { test, expect } from "@playwright/test";
+import path from "path";
+
+test.describe("Map loading", () => {
+ test.beforeEach(async ({ context, page }) => {
+ await context.clearCookies();
+
+ await page.goto("/");
+ await page.evaluate(() => {
+ localStorage.clear();
+ sessionStorage.clear();
+ });
+
+ // Wait for the hidden file input to be available
+ await page.waitForSelector("#mapToLoad", { state: "attached" });
+ });
+
+ test("should load a saved map file", async ({ page }) => {
+ // Track errors during map loading
+ const errors: string[] = [];
+ page.on("pageerror", (error) => errors.push(`pageerror: ${error.message}`));
+ page.on("console", (msg) => {
+ if (msg.type() === "error") {
+ errors.push(`console.error: ${msg.text()}`);
+ }
+ });
+
+ // Get the file input element and upload the map file
+ const fileInput = page.locator("#mapToLoad");
+ const mapFilePath = path.join(__dirname, "../fixtures/demo.map");
+ await fileInput.setInputFiles(mapFilePath);
+
+ // Wait for map to be fully loaded
+ // mapId is set at the very end of map loading in showStatistics()
+ await page.waitForFunction(() => (window as any).mapId !== undefined, {
+ timeout: 120000,
+ });
+
+ // Additional wait for rendering to settle
+ await page.waitForTimeout(500);
+
+ // Verify map data is loaded
+ const mapData = await page.evaluate(() => {
+ const pack = (window as any).pack;
+ return {
+ hasStates: pack.states && pack.states.length > 1,
+ hasBurgs: pack.burgs && pack.burgs.length > 1,
+ hasCells: pack.cells && pack.cells.i && pack.cells.i.length > 0,
+ hasRivers: pack.rivers && pack.rivers.length > 0,
+ mapId: (window as any).mapId,
+ };
+ });
+
+ expect(mapData.hasStates).toBe(true);
+ expect(mapData.hasBurgs).toBe(true);
+ expect(mapData.hasCells).toBe(true);
+ expect(mapData.hasRivers).toBe(true);
+ expect(mapData.mapId).toBeDefined();
+
+ // Ensure no JavaScript errors occurred during loading
+ // Filter out expected errors (external resources like Google Analytics, fonts)
+ const criticalErrors = errors.filter(
+ (e) =>
+ !e.includes("fonts.googleapis.com") &&
+ !e.includes("google-analytics") &&
+ !e.includes("googletagmanager") &&
+ !e.includes("Failed to load resource")
+ );
+ expect(criticalErrors).toEqual([]);
+ });
+
+ test("loaded map should have correct SVG structure", async ({ page }) => {
+ const errors: string[] = [];
+ page.on("pageerror", (error) => errors.push(`pageerror: ${error.message}`));
+ page.on("console", (msg) => {
+ if (msg.type() === "error") {
+ errors.push(`console.error: ${msg.text()}`);
+ }
+ });
+
+ const fileInput = page.locator("#mapToLoad");
+ const mapFilePath = path.join(__dirname, "../fixtures/demo.map");
+ await fileInput.setInputFiles(mapFilePath);
+
+ await page.waitForFunction(() => (window as any).mapId !== undefined, {
+ timeout: 120000,
+ });
+ await page.waitForTimeout(500);
+
+ // Check essential SVG layers exist
+ const layers = await page.evaluate(() => {
+ return {
+ ocean: !!document.getElementById("ocean"),
+ lakes: !!document.getElementById("lakes"),
+ coastline: !!document.getElementById("coastline"),
+ rivers: !!document.getElementById("rivers"),
+ borders: !!document.getElementById("borders"),
+ burgs: !!document.getElementById("burgIcons"),
+ labels: !!document.getElementById("labels"),
+ };
+ });
+
+ expect(layers.ocean).toBe(true);
+ expect(layers.lakes).toBe(true);
+ expect(layers.coastline).toBe(true);
+ expect(layers.rivers).toBe(true);
+ expect(layers.borders).toBe(true);
+ expect(layers.burgs).toBe(true);
+ expect(layers.labels).toBe(true);
+
+ const criticalErrors = errors.filter(
+ (e) =>
+ !e.includes("fonts.googleapis.com") &&
+ !e.includes("google-analytics") &&
+ !e.includes("googletagmanager") &&
+ !e.includes("Failed to load resource")
+ );
+ expect(criticalErrors).toEqual([]);
+ });
+
+ test("loaded map should preserve state data", async ({ page }) => {
+ const errors: string[] = [];
+ page.on("pageerror", (error) => errors.push(`pageerror: ${error.message}`));
+ page.on("console", (msg) => {
+ if (msg.type() === "error") {
+ errors.push(`console.error: ${msg.text()}`);
+ }
+ });
+
+ const fileInput = page.locator("#mapToLoad");
+ const mapFilePath = path.join(__dirname, "../fixtures/demo.map");
+ await fileInput.setInputFiles(mapFilePath);
+
+ await page.waitForFunction(() => (window as any).mapId !== undefined, {
+ timeout: 120000,
+ });
+ await page.waitForTimeout(500);
+
+ // Verify states have proper structure
+ const statesData = await page.evaluate(() => {
+ const pack = (window as any).pack;
+ const states = pack.states.filter((s: any) => s.i !== 0); // exclude neutral
+
+ return {
+ count: states.length,
+ allHaveNames: states.every((s: any) => s.name && s.name.length > 0),
+ allHaveCells: states.every((s: any) => s.cells > 0),
+ allHaveArea: states.every((s: any) => s.area > 0),
+ };
+ });
+
+ expect(statesData.count).toBeGreaterThan(0);
+ expect(statesData.allHaveNames).toBe(true);
+ expect(statesData.allHaveCells).toBe(true);
+ expect(statesData.allHaveArea).toBe(true);
+
+ const criticalErrors = errors.filter(
+ (e) =>
+ !e.includes("fonts.googleapis.com") &&
+ !e.includes("google-analytics") &&
+ !e.includes("googletagmanager") &&
+ !e.includes("Failed to load resource")
+ );
+ expect(criticalErrors).toEqual([]);
+ });
+
+ test("loaded map should preserve burg data", async ({ page }) => {
+ const errors: string[] = [];
+ page.on("pageerror", (error) => errors.push(`pageerror: ${error.message}`));
+ page.on("console", (msg) => {
+ if (msg.type() === "error") {
+ errors.push(`console.error: ${msg.text()}`);
+ }
+ });
+
+ const fileInput = page.locator("#mapToLoad");
+ const mapFilePath = path.join(__dirname, "../fixtures/demo.map");
+ await fileInput.setInputFiles(mapFilePath);
+
+ await page.waitForFunction(() => (window as any).mapId !== undefined, {
+ timeout: 120000,
+ });
+ await page.waitForTimeout(500);
+
+ // Verify burgs have proper structure
+ const burgsData = await page.evaluate(() => {
+ const pack = (window as any).pack;
+ // Filter out placeholder (i=0) and removed burgs (removed=true or no name)
+ const activeBurgs = pack.burgs.filter(
+ (b: any) => b.i !== 0 && !b.removed && b.name
+ );
+
+ return {
+ count: activeBurgs.length,
+ allHaveNames: activeBurgs.every(
+ (b: any) => b.name && b.name.length > 0
+ ),
+ allHaveCoords: activeBurgs.every(
+ (b: any) => typeof b.x === "number" && typeof b.y === "number"
+ ),
+ allHaveCells: activeBurgs.every(
+ (b: any) => typeof b.cell === "number"
+ ),
+ };
+ });
+
+ expect(burgsData.count).toBeGreaterThan(0);
+ expect(burgsData.allHaveNames).toBe(true);
+ expect(burgsData.allHaveCoords).toBe(true);
+ expect(burgsData.allHaveCells).toBe(true);
+
+ const criticalErrors = errors.filter(
+ (e) =>
+ !e.includes("fonts.googleapis.com") &&
+ !e.includes("google-analytics") &&
+ !e.includes("googletagmanager") &&
+ !e.includes("Failed to load resource")
+ );
+ expect(criticalErrors).toEqual([]);
+ });
+});
diff --git a/tests/fixtures/demo.map b/tests/fixtures/demo.map
new file mode 100644
index 00000000..bf290820
--- /dev/null
+++ b/tests/fixtures/demo.map
@@ -0,0 +1,174 @@
+1.112.1|File can be loaded in azgaar.github.io/Fantasy-Map-Generator|2026-2-16|135111970|1680|849|1771274541987
+km|1|square|m|2|°C|||||||1000|1|20.3|31.7|||427|{"pinNotes":false,"winds":[225,45,225,315,135,315],"temperatureEquator":20,"temperatureNorthPole":-22,"temperatureSouthPole":-5,"stateLabelsMode":"auto","showBurgPreview":true,"burgs":{"groups":[{"name":"capital","active":true,"order":9,"features":{"capital":true},"preview":"watabou-city"},{"name":"city","active":true,"order":8,"percentile":90,"min":5,"preview":"watabou-city"},{"name":"fort","active":true,"features":{"citadel":true,"walls":false,"plaza":false,"port":false},"order":6,"max":1},{"name":"monastery","active":true,"features":{"temple":true,"walls":false,"plaza":false,"port":false},"order":5,"max":0.8},{"name":"caravanserai","active":true,"features":{"port":false,"plaza":true},"order":4,"max":0.8,"biomes":[1,2,3]},{"name":"trading_post","active":true,"order":3,"features":{"plaza":true},"max":0.8,"biomes":[5,6,7,8,9,10,11,12]},{"name":"village","active":true,"order":2,"min":0.1,"max":2,"preview":"watabou-village"},{"name":"hamlet","active":true,"order":1,"features":{"plaza":false},"max":0.1,"preview":"watabou-village"},{"name":"town","active":true,"order":7,"isDefault":true,"preview":"watabou-city"}]},"year":1899,"era":"Cambrid Era","eraShort":"CE","military":[{"icon":"āļø","name":"infantry","rural":0.25,"urban":0.2,"crew":1,"power":1,"type":"melee","separate":0},{"icon":"š¹","name":"archers","rural":0.12,"urban":0.2,"crew":1,"power":1,"type":"ranged","separate":0},{"icon":"š“","name":"cavalry","rural":0.12,"urban":0.03,"crew":2,"power":2,"type":"mounted","separate":0},{"icon":"š£","name":"artillery","rural":0,"urban":0.03,"crew":8,"power":12,"type":"machinery","separate":0},{"icon":"š","name":"fleet","rural":0,"urban":0.015,"crew":100,"power":50,"type":"naval","separate":1}]}|Chanland|1|cyberpunk|1|10|55.8|1.8
+{"latT":36.5,"latN":44.5,"latS":8,"lonT":72.2,"lonW":-52.8,"lonE":19.4}
+#466eab,#fbe79f,#b5b887,#d2d082,#c8d68f,#b6d95d,#29bc56,#7dcb35,#409c43,#4b6b32,#96784b,#d5e7eb,#0b9131|0,4,10,22,30,50,100,80,90,12,4,0,12|Marine,Hot desert,Cold desert,Savanna,Grassland,Tropical seasonal forest,Temperate deciduous forest,Tropical rainforest,Temperate rainforest,Taiga,Tundra,Glacier,Wetland
+[{"id":"regiment1-0","name":"1st (Longong) Regiment","legend":"Regiment was formed in 1765 Cambrid Era during the Gazd Conquest. 1st (Longong) Regiment is stationed in Longong. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1875\r\nā cavalry: 296\r\nā artillery: 30\r\nā archers: 1485."},{"id":"regiment1-1","name":"2nd (Kamteilia) Regiment","legend":"Regiment was formed in 1764 Cambrid Era during the Gazd Conquest. 2nd (Kamteilia) Regiment is stationed in Machau. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1837\r\nā cavalry: 315\r\nā artillery: 23\r\nā archers: 1410."},{"id":"regiment1-2","name":"3rd (Limkongia) Regiment","legend":"Regiment was formed in 1854 Cambrid Era during the Laupsish Rebellion. 3rd (Limkongia) Regiment is stationed in Limkongia Territory. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1477\r\nā cavalry: 196\r\nā archers: 1243\r\nā artillery: 17."},{"id":"regiment1-3","name":"4th (Wancheongia) Regiment","legend":"Regiment was formed in 1783 Cambrid Era during the Nafendorf Conquest. 4th (Wancheongia) Regiment is stationed in Yuengyaumun. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1352\r\nā artillery: 32\r\nā cavalry: 204\r\nā archers: 1104."},{"id":"regiment1-4","name":"5th (Limkongia) Regiment","legend":"Regiment was formed in 1786 Cambrid Era during the Nafendorf Conquest. 5th (Limkongia) Regiment is stationed in Limkongia Territory. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 849\r\nā archers: 682\r\nā cavalry: 130\r\nā artillery: 16."},{"id":"regiment1-5","name":"6th (Namshan) Regiment","legend":"Regiment was formed in 1853 Cambrid Era during the Laupsish Rebellion. 6th (Namshan) Regiment is stationed in Namshan Parish. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 820\r\nā cavalry: 215\r\nā artillery: 10\r\nā archers: 455."},{"id":"regiment1-6","name":"1st Fleet","legend":"Regiment was formed in 1765 Cambrid Era during the Gazd Conquest. 1st Fleet is based in Yeung. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 3."},{"id":"regiment1-7","name":"2nd Fleet","legend":"Regiment was formed in 1765 Cambrid Era during the Gazd Conquest. 2nd Fleet is based in Ngwaiyeung. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 1."},{"id":"regiment1-8","name":"3rd Fleet","legend":"Regiment was formed in 1795 Cambrid Era during the Samtsuen War. 3rd Fleet is based in Puheihung. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 1."},{"id":"regiment2-0","name":"1st (Vun) Regiment","legend":"Regiment was formed in 1579 Cambrid Era during the Lohian War. 1st (Vun) Regiment is stationed in Gidh. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 2085\r\nā artillery: 58\r\nā archers: 1913\r\nā cavalry: 236."},{"id":"regiment2-1","name":"2nd (Krar) Regiment","legend":"Regiment was formed in 1578 Cambrid Era during the Lohian War. 2nd (Krar) Regiment is stationed in Krar. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 1014\r\nā cavalry: 90\r\nā artillery: 72\r\nā infantry: 1029."},{"id":"regiment2-2","name":"1st Fleet","legend":"Regiment was formed in 1578 Cambrid Era during the Lohian War. 1st Fleet is based in Krar. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 36."},{"id":"regiment3-0","name":"1st (Tolololo) Regiment","legend":"Regiment was formed in 1893 Cambrid Era during the Ialitaris War. 1st (Tolololo) Regiment is stationed in Tetzintza. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 3851\r\nā cavalry: 498\r\nā artillery: 68\r\nā infantry: 3077."},{"id":"regiment3-1","name":"2nd (Tolololo) Regiment","legend":"Regiment was formed in 1661 Cambrid Era during the Breisach War. 2nd (Tolololo) Regiment is stationed in Huepec. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 1836\r\nā artillery: 31\r\nā infantry: 1464\r\nā cavalry: 231."},{"id":"regiment3-2","name":"3rd (Xochiconant) Regiment","legend":"Regiment was formed in 1807 Cambrid Era during the Laupsish Expedition. 3rd (Xochiconant) Regiment is stationed in Coyucapacac. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 1665\r\nā cavalry: 218\r\nā infantry: 1356\r\nā artillery: 26."},{"id":"regiment3-3","name":"4th (Calco) Regiment","legend":"Regiment was formed in 1899 Cambrid Era during the Tetelilco-Zahuahuacian War. 4th (Calco) Regiment is stationed in Tehuetla. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 1401\r\nā cavalry: 195\r\nā artillery: 11\r\nā infantry: 1149."},{"id":"regiment3-4","name":"1st Fleet","legend":"Regiment was formed in 1893 Cambrid Era during the Ialitaris War. 1st Fleet is based in Coyucapacac. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 22."},{"id":"regiment3-5","name":"2nd Fleet","legend":"Regiment was formed in 1807 Cambrid Era during the Laupsish Expedition. 2nd Fleet is based in Slehamnnes. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 1."},{"id":"regiment4-0","name":"1st (Ropebaidori) Regiment","legend":"Regiment was formed in 1893 Cambrid Era during the Paowanian War. 1st (Ropebaidori) Regiment is stationed in Ropebaidori Earldom. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 4118\r\nā cavalry: 602\r\nā archers: 3734\r\nā artillery: 232."},{"id":"regiment4-1","name":"2nd (Sizitaga) Regiment","legend":"Regiment was formed in 1893 Cambrid Era during the Paowanian War. 2nd (Sizitaga) Regiment is stationed in Sizitaga Margrave. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 3442\r\nā cavalry: 462\r\nā archers: 3354\r\nā artillery: 191."},{"id":"regiment4-2","name":"3rd (Myrneramia) Regiment","legend":"Regiment was formed in 1760 Cambrid Era during the Sasbachian War. 3rd (Myrneramia) Regiment is stationed in Myrneramia Earldom. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 2371\r\nā cavalry: 437\r\nā artillery: 101\r\nā archers: 1504."},{"id":"regiment4-3","name":"4th (Penaile) Regiment","legend":"Regiment was formed in 1899 Cambrid Era during the Smyrchia-Paowanian War. 4th (Penaile) Regiment is stationed in Penaile County. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 1334\r\nā cavalry: 261\r\nā infantry: 1613\r\nā artillery: 44."},{"id":"regiment4-4","name":"5th (Dileron) Regiment","legend":"Regiment was formed in 1615 Cambrid Era during the Kamailean War. 5th (Dileron) Regiment is stationed in Hepicos. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1432\r\nā artillery: 20\r\nā archers: 828\r\nā cavalry: 284."},{"id":"regiment4-5","name":"6th (Sizitaga) Regiment","legend":"Regiment was formed in 1761 Cambrid Era during the Sasbachian War. 6th (Sizitaga) Regiment is stationed in Sizitaga Margrave. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1223\r\nā cavalry: 228\r\nā archers: 810\r\nā artillery: 25."},{"id":"regiment4-6","name":"7th (Myrneramia) Regiment","legend":"Regiment was formed in 1614 Cambrid Era during the Kamailean War. 7th (Myrneramia) Regiment is stationed in Myrneramia Earldom. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1126\r\nā cavalry: 221\r\nā archers: 668\r\nā artillery: 25."},{"id":"regiment4-7","name":"1st Fleet","legend":"Regiment was formed in 1725 Cambrid Era during the Geiterzelian Invasion. 1st Fleet is based in Sizitaga. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 69."},{"id":"regiment4-8","name":"2nd Fleet","legend":"Regiment was formed in 1894 Cambrid Era during the Smyrchia-Paowanian War. 2nd Fleet is based in Grafen. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 3."},{"id":"regiment5-0","name":"1st (Ungen) Regiment","legend":"Regiment was formed in 1898 Cambrid Era during the Sasbachian War. 1st (Ungen) Regiment is stationed in Ungen Earldom. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1885\r\nā archers: 1624\r\nā cavalry: 598\r\nā artillery: 36."},{"id":"regiment5-1","name":"2nd (Bolsheimia) Regiment","legend":"Regiment was formed in 1894 Cambrid Era during the Smyrchian War. 2nd (Bolsheimia) Regiment is stationed in Ripel. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 1425\r\nā cavalry: 265\r\nā infantry: 1271\r\nā artillery: 50."},{"id":"regiment5-2","name":"1st Fleet","legend":"Regiment was formed in 1893 Cambrid Era during the Smyrchian War. 1st Fleet is based in Ripel. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 14."},{"id":"regiment6-0","name":"1st (Tlapipanco) Regiment","legend":"Regiment was formed in 1899 Cambrid Era during the Tetelilco-Zahuahuacian War. 1st (Tlapipanco) Regiment is stationed in Tlapipanco Council. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 4617\r\nā archers: 4533\r\nā cavalry: 1234\r\nā artillery: 98."},{"id":"regiment6-1","name":"2nd (Anitzizamat) Regiment","legend":"Regiment was formed in 1815 Cambrid Era during the Ialitaris Conflict. 2nd (Anitzizamat) Regiment is stationed in Anitzizamat Council. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 2162\r\nā cavalry: 310\r\nā infantry: 1781\r\nā artillery: 11."},{"id":"regiment6-2","name":"3rd (Coatlacan) Regiment","legend":"Regiment was formed in 1879 Cambrid Era during the Ro Campaign. 3rd (Coatlacan) Regiment is stationed in Coatlacan. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 2106\r\nā cavalry: 242\r\nā artillery: 62\r\nā infantry: 1641."},{"id":"regiment6-3","name":"4th (Apultepec) Regiment","legend":"Regiment was formed in 1879 Cambrid Era during the Ro Campaign. 4th (Apultepec) Regiment is stationed in Apultepec Clan. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 903\r\nā cavalry: 118\r\nā infantry: 730\r\nā artillery: 15."},{"id":"regiment6-4","name":"1st Fleet","legend":"Regiment was formed in 1880 Cambrid Era during the Ro Campaign. 1st Fleet is based in Coatlacan. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 17."},{"id":"regiment6-5","name":"2nd Fleet","legend":"Regiment was formed in 1899 Cambrid Era during the Tetelilco-Zahuahuacian War. 2nd Fleet is based in Huepec. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 8."},{"id":"regiment7-0","name":"1st (Haitersia) Regiment","legend":"Regiment was formed in 1785 Cambrid Era during the Paowanian Invasion. 1st (Haitersia) Regiment is stationed in Schopfloch. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 2317\r\nā cavalry: 1217\r\nā artillery: 59\r\nā infantry: 3227."},{"id":"regiment7-1","name":"2nd (Gourtyn) Regiment","legend":"Regiment was formed in 1781 Cambrid Era during the Paowanian Invasion. 2nd (Gourtyn) Regiment is stationed in Rickengengen. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 1355\r\nā cavalry: 706\r\nā artillery: 14\r\nā infantry: 1876."},{"id":"regiment7-2","name":"3rd (Neuhesen) Regiment","legend":"Regiment was formed in 1893 Cambrid Era during the Geiterzelian War. 3rd (Neuhesen) Regiment is stationed in Neuhesen Province. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1876\r\nā archers: 1027\r\nā cavalry: 831\r\nā artillery: 18."},{"id":"regiment7-3","name":"4th (Rheinhardt) Regiment","legend":"Regiment was formed in 1895 Cambrid Era during the Geiterzelian War. 4th (Rheinhardt) Regiment is stationed in Rheinhardt. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1382\r\nā cavalry: 622\r\nā artillery: 19\r\nā archers: 731."},{"id":"regiment7-4","name":"1st Fleet","legend":"Regiment was formed in 1785 Cambrid Era during the Paowanian Invasion. 1st Fleet is based in Schopfloch. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 8."},{"id":"regiment8-0","name":"1st (Wongia) Regiment","legend":"Regiment was formed in 1894 Cambrid Era during the Smyrchia-Paowanian War. 1st (Wongia) Regiment is stationed in Wongia County. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 2367\r\nā cavalry: 205\r\nā archers: 3006\r\nā artillery: 87."},{"id":"regiment8-1","name":"2nd (Fachau) Regiment","legend":"Regiment was formed in 1893 Cambrid Era during the Shunese Crusade. 2nd (Fachau) Regiment is stationed in Fachau Shire. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1991\r\nā cavalry: 276\r\nā archers: 1884\r\nā artillery: 75."},{"id":"regiment8-2","name":"3rd (Bytostos) Regiment","legend":"Regiment was formed in 1897 Cambrid Era during the Smyrchia-Paowanian War. 3rd (Bytostos) Regiment is stationed in Bytostos Shire. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 1514\r\nā cavalry: 247\r\nā infantry: 1701\r\nā artillery: 34."},{"id":"regiment8-3","name":"4th (Skylo) Regiment","legend":"Regiment was formed in 1749 Cambrid Era during the Straudens Conquest. 4th (Skylo) Regiment is stationed in Tyralopo. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 201\r\nā cavalry: 5\r\nā infantry: 142\r\nā artillery: 5."},{"id":"regiment8-4","name":"5th (Methymia) Regiment","legend":"Regiment was formed in 1894 Cambrid Era during the Smyrchia-Paowanian War. 5th (Methymia) Regiment is stationed in Methymia Land. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 172\r\nā cavalry: 4\r\nā infantry: 122\r\nā artillery: 2."},{"id":"regiment8-5","name":"6th (Nausaipo) Regiment","legend":"Regiment was formed in 1878 Cambrid Era during the Kamailean Invasion. 6th (Nausaipo) Regiment is stationed in Papialialy. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 50\r\nā infantry: 37."},{"id":"regiment8-6","name":"1st Fleet","legend":"Regiment was formed in 1899 Cambrid Era during the Smyrchia-Paowanian War. 1st Fleet is based in Fatshuigong. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 25."},{"id":"regiment8-7","name":"2nd Fleet","legend":"Regiment was formed in 1893 Cambrid Era during the Shunese Crusade. 2nd Fleet is based in Skylo. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 2."},{"id":"regiment9-0","name":"1st (Dimicum) Regiment","legend":"Regiment was formed in 1623 Cambrid Era during the Nafendorf Intervention. 1st (Dimicum) Regiment is stationed in Diaquivori. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 3075\r\nā cavalry: 618\r\nā artillery: 57\r\nā archers: 2134."},{"id":"regiment9-1","name":"2nd (Dodia) Regiment","legend":"Regiment was formed in 1625 Cambrid Era during the Nafendorf Intervention. 2nd (Dodia) Regiment is stationed in Dodia Shire. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1872\r\nā archers: 976\r\nā cavalry: 513\r\nā artillery: 26."},{"id":"regiment9-2","name":"3rd (Condinium) Regiment","legend":"Regiment was formed in 1784 Cambrid Era during the Lohian War. 3rd (Condinium) Regiment is stationed in Condinium Margrave. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1524\r\nā cavalry: 313\r\nā artillery: 25\r\nā archers: 1056."},{"id":"regiment9-3","name":"4th (Phiniagas) Regiment","legend":"Regiment was formed in 1621 Cambrid Era during the Nafendorf Intervention. 4th (Phiniagas) Regiment is stationed in Phiniagas. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1375\r\nā cavalry: 236\r\nā artillery: 16\r\nā archers: 1065."},{"id":"regiment9-4","name":"1st Fleet","legend":"Regiment was formed in 1627 Cambrid Era during the Nafendorf Intervention. 1st Fleet is based in Agustacori. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 3."},{"id":"regiment10-0","name":"1st (Siros) Regiment","legend":"Regiment was formed in 1552 Cambrid Era during the Gongshingian Conquest. 1st (Siros) Regiment is stationed in Siros. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 4327\r\nā cavalry: 348\r\nā artillery: 198\r\nā infantry: 3492."},{"id":"regiment10-1","name":"2nd (Methos) Regiment","legend":"Regiment was formed in 1899 Cambrid Era during the Kamaile-Ialitarisian War. 2nd (Methos) Regiment is stationed in Methos County. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1379\r\nā archers: 1817\r\nā cavalry: 115\r\nā artillery: 56."},{"id":"regiment10-2","name":"3rd (Somis) Regiment","legend":"Regiment was formed in 1749 Cambrid Era during the Paowanian War. 3rd (Somis) Regiment is stationed in Somis County. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1047\r\nā cavalry: 88\r\nā archers: 1384\r\nā artillery: 35."},{"id":"regiment10-3","name":"4th (Myrgos) Regiment","legend":"Regiment was formed in 1573 Cambrid Era during the Odian War. 4th (Myrgos) Regiment is stationed in Bytronia. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1035\r\nā cavalry: 110\r\nā artillery: 30\r\nā archers: 1189."},{"id":"regiment10-4","name":"5th (Somis) Regiment","legend":"Regiment was formed in 1570 Cambrid Era during the Odian War. 5th (Somis) Regiment is stationed in Kypethumnos. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 447\r\nā artillery: 12\r\nā cavalry: 103\r\nā infantry: 599."},{"id":"regiment10-5","name":"6th (Thoseidia) Regiment","legend":"Regiment was formed in 1889 Cambrid Era during the Lintipotian Conquest. 6th (Thoseidia) Regiment is stationed in Thoseidia Territory. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 189\r\nā cavalry: 7\r\nā infantry: 136."},{"id":"regiment10-6","name":"7th (Thoseidia) Regiment","legend":"Regiment was formed in 1723 Cambrid Era during the Smyrchian Campaign. 7th (Thoseidia) Regiment is stationed in Naurias. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 160\r\nā cavalry: 7\r\nā artillery: 5\r\nā infantry: 119."},{"id":"regiment10-7","name":"1st Fleet","legend":"Regiment was formed in 1720 Cambrid Era during the Smyrchian Campaign. 1st Fleet is based in Siros. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 54."},{"id":"regiment10-8","name":"2nd Fleet","legend":"Regiment was formed in 1749 Cambrid Era during the Paowanian War. 2nd Fleet is based in Salolympo. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 3."},{"id":"regiment10-9","name":"3rd Fleet","legend":"Regiment was formed in 1748 Cambrid Era during the Paowanian War. 3rd Fleet is based in Naurias. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 3."},{"id":"regiment10-10","name":"4th Fleet","legend":"Regiment was formed in 1719 Cambrid Era during the Smyrchian Campaign. 4th Fleet is based in Meialaion. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 1."},{"id":"regiment11-0","name":"1st (Diontosia) Regiment","legend":"Regiment was formed in 1862 Cambrid Era during the Ialitaris Campaign. 1st (Diontosia) Regiment is stationed in Diontosia County. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1563\r\nā archers: 1293\r\nā cavalry: 513\r\nā artillery: 28."},{"id":"regiment11-1","name":"2nd (Siceia) Regiment","legend":"Regiment was formed in 1860 Cambrid Era during the Ialitaris Campaign. 2nd (Siceia) Regiment is stationed in Siceia County. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1465\r\nā archers: 1129\r\nā cavalry: 518\r\nā artillery: 19."},{"id":"regiment11-2","name":"3rd (Iolara) Regiment","legend":"Regiment was formed in 1894 Cambrid Era during the Vexuman Campaign. 3rd (Iolara) Regiment is stationed in Iolara County. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 983\r\nā archers: 676\r\nā cavalry: 385\r\nā artillery: 11."},{"id":"regiment11-3","name":"1st Fleet","legend":"Regiment was formed in 1893 Cambrid Era during the Vexuman Campaign. 1st Fleet is based in Juktos. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 3."},{"id":"regiment12-0","name":"1st (Hinon) Regiment","legend":"Regiment was formed in 1828 Cambrid Era during the Paowanian War. 1st (Hinon) Regiment is stationed in Hinon County. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 823\r\nā cavalry: 32\r\nā infantry: 587\r\nā artillery: 25."},{"id":"regiment12-1","name":"2nd (Lirasos) Regiment","legend":"Regiment was formed in 1818 Cambrid Era during the Paowanian War. 2nd (Lirasos) Regiment is stationed in Lirasos. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 581\r\nā cavalry: 13\r\nā artillery: 9\r\nā infantry: 416."},{"id":"regiment12-2","name":"3rd (New Hinon) Regiment","legend":"Regiment was formed in 1825 Cambrid Era during the Paowanian War. 3rd (New Hinon) Regiment is stationed in New Hinon Colony. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 169\r\nā cavalry: 1\r\nā infantry: 125."},{"id":"regiment12-3","name":"1st Fleet","legend":"Regiment was formed in 1893 Cambrid Era during the Nenaian Conquest. 1st Fleet is based in Halepipodo. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 3."},{"id":"regiment12-4","name":"2nd Fleet","legend":"Regiment was formed in 1898 Cambrid Era during the Ros-Sesosian War. 2nd Fleet is based in Osialion. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 3."},{"id":"regiment12-5","name":"3rd Fleet","legend":"Regiment was formed in 1896 Cambrid Era during the Laupsland-Sesosian War. 3rd Fleet is based in Lirasos. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 1."},{"id":"regiment13-0","name":"1st (Egilsia) Regiment","legend":"Regiment was formed in 1778 Cambrid Era during the Skatey Campaign. 1st (Egilsia) Regiment is stationed in Snuba. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 1428\r\nā cavalry: 38\r\nā infantry: 1044\r\nā artillery: 10."},{"id":"regiment13-1","name":"2nd (Meroyri) Regiment","legend":"Regiment was formed in 1894 Cambrid Era during the Beisfnan Invasion. 2nd (Meroyri) Regiment is stationed in Meroyri. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 954\r\nā cavalry: 32\r\nā infantry: 680\r\nā artillery: 20."},{"id":"regiment13-2","name":"1st Fleet","legend":"Regiment was formed in 1677 Cambrid Era during the Onestadian War. 1st Fleet is based in Meroyri. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 4."},{"id":"regiment13-3","name":"2nd Fleet","legend":"Regiment was formed in 1677 Cambrid Era during the Onestadian War. 2nd Fleet is based in Hutodoy. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 1."},{"id":"regiment14-0","name":"1st (Orarka) Regiment","legend":"Regiment was formed in 1825 Cambrid Era during the Ro Conflict. 1st (Orarka) Regiment is stationed in Orarka. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 972\r\nā cavalry: 40\r\nā infantry: 681\r\nā artillery: 39."},{"id":"regiment14-1","name":"1st Fleet","legend":"Regiment was formed in 1675 Cambrid Era during the Tetelilcan Crusade. 1st Fleet is based in Orarka. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 16."},{"id":"regiment14-2","name":"2nd Fleet","legend":"Regiment was formed in 1683 Cambrid Era during the Tetelilcan Crusade. 2nd Fleet is based in Ovikadir. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 2."},{"id":"regiment15-0","name":"1st (Laupsvi) Regiment","legend":"Regiment was formed in 1733 Cambrid Era during the Tetelilcan War. 1st (Laupsvi) Regiment is stationed in Laupsvi. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 2416\r\nā cavalry: 87\r\nā artillery: 74\r\nā infantry: 1698."},{"id":"regiment15-1","name":"2nd (New Getia) Regiment","legend":"Regiment was formed in 1733 Cambrid Era during the Tetelilcan War. 2nd (New Getia) Regiment is stationed in New Getia Colony. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 28\r\nā infantry: 19."},{"id":"regiment15-2","name":"1st Fleet","legend":"Regiment was formed in 1822 Cambrid Era during the Nafendorf Rebellion. 1st Fleet is based in Nonimbricia. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 6."},{"id":"regiment15-3","name":"2nd Fleet","legend":"Regiment was formed in 1825 Cambrid Era during the Nafendorf Rebellion. 2nd Fleet is based in Leivik. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 5."},{"id":"regiment15-4","name":"3rd Fleet","legend":"Regiment was formed in 1894 Cambrid Era during the Kansian War. 3rd Fleet is based in Tauroconaco. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 1."},{"id":"regiment16-0","name":"1st (Fluorndin) Regiment","legend":"Regiment was formed in 1700 Cambrid Era during the Lohian War. 1st (Fluorndin) Regiment is stationed in Dober. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 3735\r\nā cavalry: 759\r\nā artillery: 38\r\nā infantry: 3414."},{"id":"regiment16-1","name":"2nd (Orstadtnia) Regiment","legend":"Regiment was formed in 1704 Cambrid Era during the Lohian War. 2nd (Orstadtnia) Regiment is stationed in Orstadtnia Tribe. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 2584\r\nā archers: 2371\r\nā cavalry: 764\r\nā artillery: 40."},{"id":"regiment16-2","name":"3rd (Breithengsia) Regiment","legend":"Regiment was formed in 1896 Cambrid Era during the Breisach War. 3rd (Breithengsia) Regiment is stationed in Ortengenbach. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1485\r\nā cavalry: 338\r\nā artillery: 25\r\nā archers: 1592."},{"id":"regiment16-3","name":"4th (Odeckloshut) Regiment","legend":"Regiment was formed in 1897 Cambrid Era during the Breisach War. 4th (Odeckloshut) Regiment is stationed in Odeckloshut. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 1507\r\nā cavalry: 213\r\nā artillery: 31\r\nā infantry: 1237."},{"id":"regiment16-4","name":"5th (Rheinwenalb) Regiment","legend":"Regiment was formed in 1897 Cambrid Era during the Breisach War. 5th (Rheinwenalb) Regiment is stationed in Wittnautach. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 1284\r\nā cavalry: 193\r\nā artillery: 17\r\nā infantry: 1071."},{"id":"regiment16-5","name":"6th (Dunbach) Regiment","legend":"Regiment was formed in 1654 Cambrid Era during the Vexuman War. 6th (Dunbach) Regiment is stationed in Dunbach. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 517\r\nā cavalry: 218\r\nā artillery: 9\r\nā archers: 310."},{"id":"regiment16-6","name":"1st Fleet","legend":"Regiment was formed in 1896 Cambrid Era during the Laupsish Conflict. 1st Fleet is based in Dorn. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 5."},{"id":"regiment16-7","name":"2nd Fleet","legend":"Regiment was formed in 1650 Cambrid Era during the Vexuman War. 2nd Fleet is based in Sinzheimberg. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 1."},{"id":"regiment17-0","name":"1st (Schal) Regiment","legend":"Regiment was formed in 1878 Cambrid Era during the Ailerkenese Rebellion. 1st (Schal) Regiment is stationed in Staulachler. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 1386\r\nā cavalry: 288\r\nā artillery: 42\r\nā infantry: 1280."},{"id":"regiment17-1","name":"2nd (Wiebengen) Regiment","legend":"Regiment was formed in 1879 Cambrid Era during the Ailerkenese Rebellion. 2nd (Wiebengen) Regiment is stationed in Wiebengen County. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 1159\r\nā cavalry: 178\r\nā infantry: 973\r\nā artillery: 17."},{"id":"regiment17-2","name":"1st Fleet","legend":"Regiment was formed in 1897 Cambrid Era during the Nafendorf-Breisachian War. 1st Fleet is based in Wiebengen. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 3."},{"id":"regiment18-0","name":"1st (Yuen) Regiment","legend":"Regiment was formed in 1638 Cambrid Era during the Kamailean Intervention. 1st (Yuen) Regiment is stationed in Waichai. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 2733\r\nā cavalry: 137\r\nā artillery: 64\r\nā infantry: 1934."},{"id":"regiment18-1","name":"2nd (Longtai) Regiment","legend":"Regiment was formed in 1781 Cambrid Era during the Paowanian Rebellion. 2nd (Longtai) Regiment is stationed in Longtai Earldom. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 2406\r\nā cavalry: 111\r\nā infantry: 1670\r\nā artillery: 96."},{"id":"regiment18-2","name":"3rd (Samtsaunyi) Regiment","legend":"Regiment was formed in 1636 Cambrid Era during the Kamailean Intervention. 3rd (Samtsaunyi) Regiment is stationed in Samtsaunyi Seneschalty. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 167\r\nā cavalry: 9\r\nā infantry: 122."},{"id":"regiment18-3","name":"1st Fleet","legend":"Regiment was formed in 1637 Cambrid Era during the Kamailean Intervention. 1st Fleet is based in Tiungwu. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 9."},{"id":"regiment18-4","name":"2nd Fleet","legend":"Regiment was formed in 1637 Cambrid Era during the Kamailean Intervention. 2nd Fleet is based in Toishui. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 9."},{"id":"regiment19-0","name":"1st (Tithema) Regiment","legend":"Regiment was formed in 1804 Cambrid Era during the Thaphiran War. 1st (Tithema) Regiment is stationed in Tithema Parish. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 2561\r\nā archers: 2288\r\nā cavalry: 785\r\nā artillery: 12."},{"id":"regiment19-1","name":"2nd (Rosiapapa) Regiment","legend":"Regiment was formed in 1804 Cambrid Era during the Thaphiran War. 2nd (Rosiapapa) Regiment is stationed in Rosiapapa Parish. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 1973\r\nā cavalry: 301\r\nā artillery: 22\r\nā infantry: 1648."},{"id":"regiment19-2","name":"3rd (Rosiapapa) Regiment","legend":"Regiment was formed in 1803 Cambrid Era during the Thaphiran War. 3rd (Rosiapapa) Regiment is stationed in Rosiapapa Parish. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 1948\r\nā cavalry: 293\r\nā artillery: 48\r\nā infantry: 1618."},{"id":"regiment19-3","name":"4th (Iatece) Regiment","legend":"Regiment was formed in 1647 Cambrid Era during the Mantidopan War. 4th (Iatece) Regiment is stationed in Iatece. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 1936\r\nā cavalry: 241\r\nā artillery: 41\r\nā infantry: 1535."},{"id":"regiment19-4","name":"5th (Smyrgan) Regiment","legend":"Regiment was formed in 1894 Cambrid Era during the Tetelilcan Intervention. 5th (Smyrgan) Regiment is stationed in Gylos. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1647\r\nā cavalry: 537\r\nā artillery: 22\r\nā archers: 1371."},{"id":"regiment19-5","name":"6th (Gortelea) Regiment","legend":"Regiment was formed in 1649 Cambrid Era during the Mantidopan War. 6th (Gortelea) Regiment is stationed in Kimnospian. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 1828\r\nā cavalry: 240\r\nā artillery: 31\r\nā infantry: 1462."},{"id":"regiment19-6","name":"7th (Hyeririsia) Regiment","legend":"Regiment was formed in 1766 Cambrid Era during the Kamailean Invasion. 7th (Hyeririsia) Regiment is stationed in Donia. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1579\r\nā cavalry: 547\r\nā artillery: 26\r\nā archers: 1236."},{"id":"regiment19-7","name":"8th (Iatece) Regiment","legend":"Regiment was formed in 1804 Cambrid Era during the Thaphiran War. 8th (Iatece) Regiment is stationed in Peleron. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 892\r\nā cavalry: 117\r\nā artillery: 16\r\nā infantry: 713."},{"id":"regiment19-8","name":"9th (Ecocatlan) Regiment","legend":"Regiment was formed in 1841 Cambrid Era during the Zahuahuacan War. 9th (Ecocatlan) Regiment is stationed in Ecocatlan Parish. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 191\r\nā infantry: 157\r\nā cavalry: 24\r\nā artillery: 1."},{"id":"regiment19-9","name":"1st Fleet","legend":"Regiment was formed in 1899 Cambrid Era during the Kamaile-Ialitarisian War. 1st Fleet is based in Nyria. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 5."},{"id":"regiment19-10","name":"2nd Fleet","legend":"Regiment was formed in 1649 Cambrid Era during the Mantidopan War. 2nd Fleet is based in Tauros. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 4."},{"id":"regiment20-0","name":"1st (Schopold) Regiment","legend":"Regiment was formed in 1841 Cambrid Era during the Paowanian Crusade. 1st (Schopold) Regiment is stationed in Hausen. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 2222\r\nā cavalry: 825\r\nā artillery: 37\r\nā archers: 1598."},{"id":"regiment20-1","name":"2nd (Sytion) Regiment","legend":"Regiment was formed in 1841 Cambrid Era during the Paowanian Crusade. 2nd (Sytion) Regiment is stationed in Sytion County. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 1189\r\nā cavalry: 495\r\nā infantry: 1472\r\nā artillery: 29."},{"id":"regiment20-2","name":"3rd (Emnosia) Regiment","legend":"Regiment was formed in 1814 Cambrid Era during the Sasbachian Conflict. 3rd (Emnosia) Regiment is stationed in Emnosia Captaincy. \r\n\r\nRegiment composition in 1899 CE:\r\nā infantry: 1240\r\nā archers: 1113\r\nā cavalry: 372\r\nā artillery: 14."},{"id":"regiment20-3","name":"4th (Ithegicosia) Regiment","legend":"Regiment was formed in 1813 Cambrid Era during the Sasbachian Conflict. 4th (Ithegicosia) Regiment is stationed in Ithegicosia Earldom. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 890\r\nā cavalry: 297\r\nā infantry: 986\r\nā artillery: 13."},{"id":"regiment20-4","name":"5th (Launingen) Regiment","legend":"Regiment was formed in 1813 Cambrid Era during the Sasbachian Conflict. 5th (Launingen) Regiment is stationed in Launingen. \r\n\r\nRegiment composition in 1899 CE:\r\nā archers: 640\r\nā cavalry: 197\r\nā artillery: 19\r\nā infantry: 704."},{"id":"regiment20-5","name":"1st Fleet","legend":"Regiment was formed in 1811 Cambrid Era during the Sasbachian Conflict. 1st Fleet is based in Launingen. \r\n\r\nRegiment composition in 1899 CE:\r\nā fleet: 11."},{"id":"marker0","name":"Chishambe Volcano","legend":"Erupting volcano. Height: 3481 m."},{"id":"marker1","name":"Mount Tother","legend":"Dormant volcano. Height: 4096 m."},{"id":"marker2","name":"Hot Springs of Bygda","legend":"A geothermal springs with naturally heated water that provide relaxation and medicinal benefits. Average temperature is 43°C."},{"id":"marker3","name":"Othengsfeld Healing Spring","legend":"This legendary water source is whispered about in ancient tales and believed to possess mystical properties. The spring emanates crystal-clear water, shimmering with an otherworldly iridescence that sparkles even in the dimmest light."},{"id":"marker4","name":"Gongshun ā silver mining town","legend":"Gongshun is a mining town of 791 people just nearby the silver mine."},{"id":"marker5","name":"Salolympo ā tin mining town","legend":"Salolympo is a mining town of 2917 people just nearby the tin mine."},{"id":"marker6","name":"Choikok ā lead mining town","legend":"Choikok is a mining town of 2446 people just nearby the lead mine."},{"id":"marker7","name":"Agios ā salt mining town","legend":"Agios is a mining town of 962 people just nearby the salt mine."},{"id":"marker8","name":"Gongshunfau ā silver mining town","legend":"Gongshunfau is a mining town of 7187 people just nearby the silver mine."},{"id":"marker9","name":"The Sunny Ape","legend":"A big and famous roadside tavern. Delicious jugged ape with bitter spirits is served here."},{"id":"marker10","name":"The Green Buffalo","legend":"A big and famous roadside tavern. Delicious syrupped buffalo with green water is served here."},{"id":"marker11","name":"The Good Bear","legend":"A big and famous roadside tavern. Delicious jugged garlic with hot absinthe is served here."},{"id":"marker12","name":"The Flying Hound","legend":"A big and famous roadside tavern. Delicious syrupped hound with bright kumis is served here."},{"id":"marker13","name":"The New Tavern","legend":"A big and famous roadside tavern. Delicious roasted cake with purple spirits is served here."},{"id":"marker14","name":"The Main Narwhal","legend":"A big and famous roadside tavern. Delicious smoked pheasant with ice rom is served here."},{"id":"marker15","name":"The Beautiful Tavern","legend":"A big and famous roadside tavern. Delicious baked tomatoes with hot spirits is served here."},{"id":"marker16","name":"Ablo Lighthouse","legend":"A lighthouse to serve as a beacon for ships in the open sea."},{"id":"marker17","name":"Ebeman Lighthouse","legend":"A lighthouse to serve as a beacon for ships in the open sea."},{"id":"marker18","name":"Tsuenese Lighthouse","legend":"A lighthouse to serve as a beacon for ships in the open sea."},{"id":"marker19","name":"Pateranian Lighthouse","legend":"A lighthouse to serve as a beacon for ships in the open sea."},{"id":"marker20","name":"Breishutnauan Lighthouse","legend":"A lighthouse to serve as a beacon for ships in the open sea."},{"id":"marker21","name":"Corviagusan Lighthouse","legend":"A lighthouse to serve as a beacon for ships in the open sea."},{"id":"marker22","name":"Chalgirian Lighthouse","legend":"A lighthouse to serve as a beacon for ships in the open sea."},{"id":"marker23","name":"Kalbian Waterfall","legend":"The cascades of a stunning waterfall."},{"id":"marker24","name":"Bakholvik Waterfall","legend":"A breathtaking waterfall cuts through the landscape."},{"id":"marker25","name":"Ozautlanese Waterfall","legend":"A breathtaking waterfall cuts through the landscape."},{"id":"marker26","name":"Myodian Waterfall","legend":"A river drops down from a great height forming a wonderous waterfall."},{"id":"marker27","name":"Hoheong Waterfall","legend":"A gorgeous waterfall flows here."},{"id":"marker28","name":"Nicyondian Waterfall","legend":"A river drops down from a great height forming a wonderous waterfall."},{"id":"marker29","name":"Strennian Waterfall","legend":"A river drops down from a great height forming a wonderous waterfall."},{"id":"marker30","name":"Texcacanese Waterfall","legend":"A river drops down from a great height forming a wonderous waterfall."},{"id":"marker31","name":"Hangshant Waterfall","legend":"The cascades of a stunning waterfall."},{"id":"marker32","name":"Patlanese Waterfall","legend":"A breathtaking waterfall cuts through the landscape."},{"id":"marker33","name":"Hafjorhofn Battlefield","legend":"A historical battle of the Nafendorf Intervention. \r\nDate: August 8, 1622 Cambrid Era."},{"id":"marker34","name":"Hoheung Battlefield","legend":"A historical battle of the Samtsuen War. \r\nDate: April 17, 1792 Cambrid Era."},{"id":"marker35","name":"Byblossos Battlefield","legend":"A historical battle of the Kamaile-Ialitarisian War. \r\nDate: November 22, 1688 Cambrid Era."},{"id":"marker36","name":"Dungeon","legend":""},{"id":"marker37","name":"Dungeon","legend":""},{"id":"marker38","name":"Dungeon","legend":""},{"id":"marker39","name":"Dungeon","legend":""},{"id":"marker40","name":"Dungeon","legend":""},{"id":"marker41","name":"Dungeon","legend":""},{"id":"marker42","name":"Dungeon","legend":""},{"id":"marker43","name":"Dungeon","legend":""},{"id":"marker44","name":"Skylcis Monster","legend":"Whispers say a relic monster of 16 m long inhabits Skylcis Lake. Truth or lie, folks are afraid to fish in the lake."},{"id":"marker45","name":"Crere Monster","legend":"Old sailors tell stories of a gigantic sea monster inhabiting these dangerous waters. Rumors say it can be 35 m long."},{"id":"marker46","name":"Yeowey Monster","legend":"Old sailors tell stories of a gigantic sea monster inhabiting these dangerous waters. Rumors say it can be 43 m long."},{"id":"marker47","name":"Whitlema Monster","legend":"Tipplers speak of a giant Monster who inhabits Whitlema hills and prefers eating children."},{"id":"marker48","name":"Dingming Forest","legend":"A forest sacred to local Longong Deities."},{"id":"marker49","name":"Wolzach Forest","legend":"A forest sacred to local Adflelodu Faith."},{"id":"marker50","name":"Wongsen Pinery","legend":"A pinery sacred to local Yuen Spirits."},{"id":"marker51","name":"Namchauma Hyenas","legend":"A gang of forest robbers."},{"id":"marker52","name":"Steiseier Badgers","legend":"A gang of forest bandits."},{"id":"marker53","name":"Schweuen Crows","legend":"A gang of swamp brigands."},{"id":"marker54","name":"Pirates","legend":"Pirate ships have been spotted in these waters."},{"id":"marker55","name":"Pirates","legend":"Pirate ships have been spotted in these waters."},{"id":"marker56","name":"Pirates","legend":"Pirate ships have been spotted in these waters."},{"id":"marker57","name":"Pirates","legend":"Pirate ships have been spotted in these waters."},{"id":"marker58","name":"Thonia Monument","legend":"An ancient monument. It has an inscription, but no one can translate it:\n įį įį įįįį įøį įįįį°įøį°įįįįįØį°įØįØįØį į°įįįįįįį įį°į į įįį°įį įį°į° įįįįįįį įøįØ į įį°į įØįįį° į°į°į į į įįį°įį°į įį įįįį įį°į°į°į
"},{"id":"marker59","name":"Tsingming Obelisk","legend":"An ancient obelisk. It has an inscription, but no one can translate it:\n į¢į ¾į” ᢦᔔį¢į”°į µį”®į ±į į¢į¢į”±į” į¢į”Æį”³į ¾į¢į¢į”į į¢į ”į”į”į”į””į¢į”³į¢į¢į”į »į”į”į” į¢į ³į”į¢į¢į”Æį”³į”į”į¢¤į ²į į”į¢„į °į æį ¼į”į”į”į”į ±į”į¢į”į¢į¢į”°
"},{"id":"marker60","name":"Cysos Runestone","legend":"An ancient runestone. It has an inscription, but no one can translate it:\n į į”į ¦į¢į”ᔯį”į¢į¢į”į”į”į į”į Æį ³į ”į”²į¢”į”“į”į į”®į ±į¢¤į¢¦į””į¢į”į Øį ½į Ŗį į” į”®į µį”į”į”į”°į”į §
"},{"id":"marker61","name":"Ruined Sacred site","legend":"Ruins of an ancient sacred site. Untold riches may lie within."},{"id":"marker62","name":"Ruined Castle","legend":"Ruins of an ancient castle. Untold riches may lie within."},{"id":"marker63","name":"Ruined Castle","legend":"Ruins of an ancient castle. Untold riches may lie within."},{"id":"marker64","name":"Orodogo Library","legend":"A vast collection of knowledge, including many rare and ancient tomes."},{"id":"marker65","name":"Travelling Incomprehensible Circus","legend":"Roll up, roll up, this incomprehensible circus is here for a limited time only."},{"id":"marker66","name":"Travelling Wonderous Circus","legend":"Roll up, roll up, this wonderous circus is here for a limited time only."},{"id":"marker67","name":"Vogtstet Fair","legend":"A fair is being held in Vogtstet, with all manner of local and foreign goods and services on offer."},{"id":"marker68","name":"Minor Jetty","legend":"A small location along the Saterunda River to launch boats from sits here, along with a weary looking owner, willing to sell passage along the river."},{"id":"marker69","name":"Tigers migration","legend":"A huge group of tigers are migrating, whether part of their annual routine, or something more extraordinary."},{"id":"marker70","name":"Panthers migration","legend":"A huge group of panthers are migrating, whether part of their annual routine, or something more extraordinary."},{"id":"marker71","name":"Tsamkongkok Cave","legend":"The Tsamkongkok Cave. Locals claim that it is endlessly deep and unexplored."},{"id":"marker72","name":"Kingtonta Necropolis","legend":"A towering necropolis adorned with macabre sculptures and guarded by formidable undead sentinels. Its ancient halls house the remains of fallen heroes, entombed alongside their cherished relics."},{"id":"marker73","name":"Celius Mausoleum","legend":"An eerie necropolis where nature intertwines with death. Overgrown tombstones are entwined by thorny vines, and mournful spirits wander among the fading petals of once-vibrant flowers."},{"id":"marker74","name":"Random encounter","legend":"You have encountered a character.
"},{"id":"marker75","name":"Random encounter","legend":"You have encountered a character.
"},{"id":"marker76","name":"Random encounter","legend":"You have encountered a character.
"},{"id":"marker77","name":"Random encounter","legend":"You have encountered a character.
"},{"id":"marker78","name":"Random encounter","legend":"You have encountered a character.
"},{"id":"marker79","name":"Random encounter","legend":"You have encountered a character.
"}]
+
+{"spacing":11.94,"cellsX":141,"cellsY":71,"boundary":[[0,-12],[0,861],[24,-12],[24,861],[48,-12],[48,861],[72,-12],[72,861],[96,-12],[96,861],[120,-12],[120,861],[144,-12],[144,861],[168,-12],[168,861],[192,-12],[192,861],[216,-12],[216,861],[240,-12],[240,861],[264,-12],[264,861],[288,-12],[288,861],[312,-12],[312,861],[336,-12],[336,861],[360,-12],[360,861],[384,-12],[384,861],[408,-12],[408,861],[432,-12],[432,861],[456,-12],[456,861],[480,-12],[480,861],[504,-12],[504,861],[528,-12],[528,861],[552,-12],[552,861],[576,-12],[576,861],[600,-12],[600,861],[624,-12],[624,861],[648,-12],[648,861],[672,-12],[672,861],[696,-12],[696,861],[720,-12],[720,861],[744,-12],[744,861],[768,-12],[768,861],[792,-12],[792,861],[816,-12],[816,861],[840,-12],[840,861],[864,-12],[864,861],[888,-12],[888,861],[912,-12],[912,861],[936,-12],[936,861],[960,-12],[960,861],[984,-12],[984,861],[1008,-12],[1008,861],[1032,-12],[1032,861],[1056,-12],[1056,861],[1080,-12],[1080,861],[1104,-12],[1104,861],[1128,-12],[1128,861],[1152,-12],[1152,861],[1176,-12],[1176,861],[1200,-12],[1200,861],[1224,-12],[1224,861],[1248,-12],[1248,861],[1272,-12],[1272,861],[1296,-12],[1296,861],[1320,-12],[1320,861],[1344,-12],[1344,861],[1368,-12],[1368,861],[1392,-12],[1392,861],[1416,-12],[1416,861],[1440,-12],[1440,861],[1464,-12],[1464,861],[1488,-12],[1488,861],[1512,-12],[1512,861],[1536,-12],[1536,861],[1560,-12],[1560,861],[1584,-12],[1584,861],[1608,-12],[1608,861],[1632,-12],[1632,861],[1656,-12],[1656,861],[1680,-12],[1680,861],[-12,1],[1692,1],[-12,25],[1692,25],[-12,49],[1692,49],[-12,73],[1692,73],[-12,98],[1692,98],[-12,122],[1692,122],[-12,146],[1692,146],[-12,170],[1692,170],[-12,195],[1692,195],[-12,219],[1692,219],[-12,243],[1692,243],[-12,267],[1692,267],[-12,292],[1692,292],[-12,316],[1692,316],[-12,340],[1692,340],[-12,364],[1692,364],[-12,389],[1692,389],[-12,413],[1692,413],[-12,437],[1692,437],[-12,461],[1692,461],[-12,486],[1692,486],[-12,510],[1692,510],[-12,534],[1692,534],[-12,558],[1692,558],[-12,583],[1692,583],[-12,607],[1692,607],[-12,631],[1692,631],[-12,655],[1692,655],[-12,680],[1692,680],[-12,704],[1692,704],[-12,728],[1692,728],[-12,752],[1692,752],[-12,777],[1692,777],[-12,801],[1692,801],[-12,825],[1692,825],[-12,849],[1692,849]],"points":[[4.5,10.9],[13.96,5.67],[29.62,9.9],[43.8,8.23],[56.55,6.26],[67.99,5.94],[74.92,2.12],[94.28,6.54],[98.58,10.77],[113.43,2.67],[123.07,6.4],[142.42,8.77],[151.48,8.7],[159.32,4.01],[172.04,11.04],[190.38,0.78],[197.7,8.81],[214.05,4.23],[224.84,9.67],[236.07,2.59],[248.43,4.74],[251.89,3.9],[273.03,4.53],[279.2,7.39],[292.61,8.49],[301.43,2.06],[311.1,5.71],[329.87,6.94],[338.02,5.01],[354.7,5.47],[359.74,3.31],[374.29,7.18],[387.64,9.71],[398.98,9.96],[412.29,6.47],[423.85,2.33],[437.95,11.21],[446.99,5.73],[463.03,8.77],[467.93,2.38],[478.23,7.86],[495.83,8.16],[508.13,2.8],[516.14,5.42],[532.08,7.28],[548.28,2.39],[558.2,0.84],[561.96,8.11],[582.14,10.36],[587.59,2.78],[600.77,1.08],[612.92,9.16],[628.24,0.66],[633.47,8.63],[646.17,8.05],[662.74,5.42],[679.33,1.05],[687.28,1.22],[702.39,8.32],[708.46,5.22],[720.75,6.68],[732.84,3.58],[743.88,5.18],[758.05,7.46],[767.47,6.61],[786.44,11.19],[795.48,6.27],[810.17,10.34],[815.7,0.84],[833.88,9.07],[841.72,6.89],[852.38,8.19],[867.02,11.12],[880.41,5.55],[885.19,3.25],[903.06,1.69],[918.36,10.33],[923.21,10.92],[939.12,10.98],[945.39,3.68],[958.62,5.75],[970.1,2.71],[989.83,6.48],[995.46,2.52],[1005.95,6.35],[1025.45,4.2],[1029.49,8.32],[1043.05,6.1],[1058.57,0.74],[1069.42,5.52],[1080.46,8.42],[1097.16,4.05],[1107.29,9.09],[1120.07,5.82],[1128.5,3.96],[1137.57,1.49],[1154.61,1.77],[1160.18,3.07],[1171.58,10.45],[1184.13,5.64],[1203.86,9.57],[1207.39,8.12],[1221.77,5.43],[1236.52,7.08],[1244.64,1.12],[1261.17,8.82],[1267.9,10.88],[1283.98,8.44],[1299.86,1.27],[1307.2,2.52],[1314.29,3.31],[1335.1,4.51],[1338.11,10.21],[1355.88,9.83],[1370.53,11.14],[1377.82,5.56],[1389.2,6.29],[1405.78,9.64],[1418.01,1.26],[1429.87,2.3],[1439.94,1.53],[1445.97,4.08],[1461.2,9.83],[1473.96,9.34],[1481.97,6.07],[1496.77,3.96],[1509.89,9.8],[1518.26,7.65],[1537.52,4.06],[1548.3,2.33],[1560.89,6.43],[1568.79,5.14],[1587.03,3.78],[1594.93,5.11],[1608.4,7.83],[1619.39,1.43],[1627.6,3.91],[1646.78,6.64],[1649.66,2.77],[1669.97,10.2],[1680,3.21],[2.91,15.92],[23.01,22.95],[31.66,15.36],[45.37,16.96],[56.88,13.38],[65.61,14.18],[80.92,18.54],[88.63,16.57],[102.9,19.89],[112.24,13.01],[126.03,20.2],[138.85,15.42],[145.7,17.44],[164.9,22.46],[170.66,19.91],[181.91,20.73],[199.69,16.27],[206.03,13.64],[215.68,12.75],[232.75,14.55],[243.18,13.21],[261.71,14.91],[272.96,21.07],[277.73,19.78],[294.86,22.36],[305.16,20.29],[317.11,17.97],[328.69,19.12],[338.33,13.22],[355.41,22.75],[362.78,21.25],[376.26,15.8],[388.23,21.5],[395.62,14.49],[415.71,20.61],[422.21,17.38],[436.63,20.07],[449.23,17.35],[457.18,19.2],[472.61,21.94],[482.9,18.88],[500.8,15.53],[512.5,15.65],[516.97,19.67],[529.74,13.3],[544.66,22.73],[553.19,15.07],[561.89,20.35],[580.31,17.25],[586.05,14.28],[606.99,20.43],[610.06,16.84],[626.21,20.99],[635.57,18.27],[650.88,19.45],[663.76,14.46],[678.28,20.17],[683.58,20.17],[697.08,18.21],[712.68,15.26],[724.39,17.9],[729.74,20.98],[744.13,19.11],[762.88,22.59],[772.22,12.88],[781.24,17.04],[793.66,22.58],[806.27,18.63],[818.54,15.43],[825.22,15.18],[844.99,14.72],[854.81,18.74],[863.21,21.49],[874.39,14.06],[894.89,13.78],[906.79,18.79],[908.23,14.24],[928.95,14.6],[940.91,22.18],[949.9,14.86],[964.58,18.75],[975.85,19.81],[988.77,22.37],[1001.96,16.42],[1011.48,19.36],[1018.08,15.81],[1033.79,20.21],[1046.27,15.48],[1054.38,19.46],[1070.72,17.32],[1081.37,19.08],[1096.78,20.8],[1107.61,14.79],[1119.34,21.69],[1130.5,14.3],[1142.24,18.59],[1150.95,15.82],[1169.23,22.61],[1174.62,13.87],[1189.65,15.54],[1204.37,16.98],[1207.82,15.13],[1219.17,19.99],[1234.42,21.67],[1252.49,17.1],[1263.17,17.04],[1266.26,16.45],[1282.84,21.76],[1294,22.48],[1306.61,15.61],[1318.89,17.93],[1327.32,19.39],[1347.83,22.65],[1352.68,13.52],[1362.33,13.1],[1378.86,21.03],[1388.67,14.12],[1405.23,18.85],[1411.2,13.14],[1430.32,12.61],[1437.46,14.67],[1450.65,19.65],[1465.18,13.33],[1472.77,21.44],[1485.73,20.09],[1498.03,14.14],[1515.4,17.98],[1518.58,15.34],[1533.74,14.36],[1550.47,20.88],[1554.93,17.49],[1573.19,12.77],[1584.18,18.42],[1597.69,18.14],[1610.79,22.78],[1619.34,13.01],[1634.29,15.28],[1642.34,22.21],[1649.89,22.06],[1660.92,17.62],[1680,13.57],[4.78,27.85],[14.85,34.41],[29.35,26],[45.62,34.91],[48.74,28.01],[62.22,34.35],[81.5,26.1],[93.79,33.87],[105.13,32.65],[113,25.5],[124.79,30.31],[137.39,32.63],[153.17,26.81],[157.05,26.68],[173.87,28.63],[190.01,32.45],[200.54,32.29],[206.01,27.62],[219.86,27.76],[228.65,26.15],[249.73,30.97],[251.57,34.92],[264.62,29.28],[276.53,29.79],[294.03,27.73],[306.14,24.6],[317.91,30.87],[329.57,30.32],[339.76,27.07],[349.49,34.87],[363.85,32.22],[374.17,28.58],[388.42,24.61],[404.85,32.81],[417.08,26.47],[423.4,26.28],[435.68,27.66],[444.08,26.7],[456.32,25.34],[476.21,32.51],[478.61,32.59],[494.68,32.7],[508.75,29.95],[519.87,27.08],[527.83,34.93],[539.23,28.07],[552.16,25.17],[564.66,24.93],[577.03,28.81],[594.31,26],[607.57,27.5],[615.5,25.96],[629.14,28.71],[641.06,30.42],[654.19,32.79],[660.35,27.93],[672.65,28.35],[690.98,32.8],[701.07,27.98],[713.3,35.19],[724,25.51],[730.78,29.99],[741.14,34.69],[753.88,24.51],[775.04,31.87],[786.13,26.01],[792.35,32.1],[803.9,31.54],[821.52,25.15],[831.2,28.56],[843.46,24.93],[858.43,31.19],[862.04,32.03],[875.36,25.53],[889.3,35.2],[903.48,30.05],[912.85,27.96],[920.73,29.84],[941.59,25.29],[949.22,29.41],[956.1,33.26],[970.87,26.74],[985.23,31.83],[992.46,30.29],[1010.97,27.52],[1025.49,31.71],[1036.9,26.05],[1042.45,30.56],[1053.85,33.12],[1067.07,25.07],[1077.65,26.7],[1088.31,27.15],[1102.8,34.64],[1113.56,33.75],[1129.11,26.64],[1144.5,28.77],[1154.35,24.64],[1168.44,31.14],[1177.05,26.63],[1191.66,28.21],[1195.18,30.79],[1214.49,25.22],[1225.87,25.34],[1237.03,26.28],[1250.68,29],[1260.07,25.72],[1274.67,32.84],[1281.56,31.73],[1294.68,28.04],[1304.25,26.08],[1319.93,27.66],[1332.71,34.17],[1346.48,29.86],[1357.81,33.22],[1364.67,28.76],[1378.23,26.58],[1387.9,26.14],[1407.24,28.71],[1415.39,29.07],[1424.97,29.61],[1440.71,34.93],[1451.58,26.45],[1458.2,24.53],[1478.29,33.11],[1491.2,34.32],[1503.79,26.11],[1513.36,30.67],[1524.05,24.56],[1535.79,28.97],[1540.87,26.97],[1563.54,31.15],[1566.13,34.6],[1580.03,32.46],[1597.83,32.48],[1603.78,33.28],[1622.67,25.95],[1630.9,25.38],[1646.19,27.44],[1650.23,26.64],[1661.65,30.49],[1679.55,25.3],[9.98,42.85],[16.41,43.41],[31.1,38.87],[42.56,36.78],[51.77,44.53],[66.7,37.74],[73.08,45.99],[87.5,42.92],[98.55,39.06],[117.93,38.08],[128.39,46.47],[138.93,41.75],[147.38,43.57],[158.32,38.52],[172.96,45.72],[181.82,37.32],[200.87,43.27],[213.85,46.96],[223.02,40.55],[228.1,41.28],[246.55,40.26],[259.27,38.18],[266.83,46.87],[281.17,43.45],[297.69,39.04],[306.65,42.77],[313.13,37.32],[332.79,39.46],[340.58,46.48],[355.66,38.98],[366.05,39.76],[376.78,46.12],[386.3,38.81],[397.45,39.68],[412.91,43.79],[427.37,38.99],[437.83,45.05],[444.62,42.95],[456.12,39.48],[466.31,38.56],[478.91,37.42],[498.56,43.6],[505.95,40.12],[519.41,36.86],[536.42,36.81],[547.51,37.18],[558.97,41.96],[571.75,45.98],[579.94,43.58],[589.65,38.38],[603.33,39.36],[618.83,44.77],[629.13,37.75],[638.82,44.52],[650.89,42.61],[666.33,36.54],[672.18,42.44],[683.55,39.27],[694.39,46.8],[709.04,38.46],[722.78,40.15],[736.41,36.6],[748.37,42.48],[755.08,41.82],[773.91,46.31],[787.31,41.78],[798.65,45.14],[805.14,39.76],[822.8,40.78],[832.02,45.94],[836.99,42.64],[854.25,38.79],[862.04,39.96],[880.69,46.57],[891.24,46.29],[905.09,44.27],[914.3,41.9],[929.8,39.48],[938.44,43.17],[949.07,36.87],[960.98,40.97],[971.82,42.57],[982.27,38.46],[997.03,37.33],[1006.25,37.61],[1024.1,37.43],[1028.27,41.32],[1041.97,39.47],[1058.56,42.87],[1067.47,38.93],[1083.33,46.78],[1090.68,45.43],[1106.94,37.35],[1116.82,41.09],[1126.44,42.95],[1140.05,45.92],[1149.83,45.6],[1167.69,40.11],[1176.96,39.08],[1184.15,38.28],[1199.89,44.24],[1207.39,37.05],[1220.74,42.54],[1231.07,46.08],[1250.29,38.39],[1262.1,46.83],[1267.12,37.83],[1279.88,37.85],[1299.26,43.14],[1304.75,44.45],[1317.08,38.11],[1331.34,45.72],[1343.76,38.61],[1355.22,39.35],[1363.4,40.07],[1381.11,45.18],[1388.88,42.17],[1399.52,36.51],[1415.31,43.64],[1428.29,45.59],[1442.36,45.4],[1450.17,41.46],[1460.46,38.57],[1469.73,43.23],[1489.31,36.63],[1495.95,40.12],[1508.33,43.96],[1519.43,43.73],[1531.64,37.36],[1546.54,37.5],[1555.79,41.14],[1572.68,47.03],[1580.78,43.95],[1591.28,46.05],[1602.84,44.51],[1614.61,37.45],[1625.62,45.56],[1638.77,41.43],[1654.9,39.17],[1664.32,42.44],[1679.4,39.3],[2.02,53.33],[20.42,52.61],[30.04,57.73],[39.84,56],[50.36,56.98],[70.5,50.31],[81.07,57.85],[93.24,58.66],[99.83,48.41],[118.48,48.62],[129.37,57.93],[134.49,50.74],[144.66,49.7],[159.42,51.7],[176.89,51.92],[189.39,55.62],[200.8,57.52],[205.25,52.76],[226,58.73],[227.86,54.52],[246.38,54.75],[258.64,53.34],[273.27,48.7],[284.75,49.59],[293.57,51.14],[309.48,53.3],[316.76,49.96],[329.7,54.71],[336.9,54.37],[350.94,55.86],[362.75,56.19],[374.3,56.68],[384.51,54.03],[398.39,50.19],[412.37,55.66],[424.44,56.72],[434.34,51.91],[452.64,52.83],[456.68,52.38],[468.19,54.55],[480.98,58.89],[499.41,58.48],[512.81,57.9],[518.56,49.62],[531.62,57.11],[537.93,52.35],[554.22,54.75],[571.87,51.25],[576.81,58.19],[592.17,49.54],[600.58,53.7],[617.72,49.13],[631.49,57.08],[642.87,58.39],[651.05,52.14],[658.62,57.69],[678.95,54],[684.85,49.04],[694.68,58.5],[710.84,55.68],[725.96,54.11],[735.7,50.32],[742.57,56.28],[760.58,50.55],[767.53,49.48],[787.3,55.43],[796.85,54.51],[810,54.42],[820.57,59.03],[825.73,53.94],[844.66,50.68],[851.98,48.57],[860.34,57.03],[872.56,58.06],[893.36,53.25],[906.08,57.1],[917.72,58.98],[929.48,49.86],[932.49,53.57],[948.21,54.89],[961.72,58.97],[971.45,51.49],[982.34,54.04],[996.02,56.55],[1008.47,58.83],[1015.97,52.51],[1036.3,54.61],[1047.22,53.03],[1060.61,58.56],[1069.79,51.82],[1080.38,56.79],[1091.63,51.28],[1099.12,50.5],[1118.96,53.25],[1127.85,49.61],[1145.63,56.35],[1153.64,57.1],[1164.35,53.2],[1178.02,56.74],[1187.71,49.01],[1198.46,51.16],[1215.92,51.36],[1227.13,57.81],[1237.96,52.44],[1250.92,57.83],[1259.8,49.68],[1270.49,51.44],[1281.49,54.47],[1296.33,53.96],[1311.92,55.79],[1319.1,57.02],[1336.47,52.18],[1346.11,56.72],[1358.86,56.71],[1362.82,55.53],[1381.62,55.84],[1392.54,57.41],[1398.57,55.51],[1413.37,56.13],[1427.73,56.17],[1444.12,53.48],[1446.12,57.56],[1466.12,54.49],[1472.41,48.38],[1482.44,56.35],[1496.96,52.04],[1513.32,52.2],[1524.31,51.18],[1530.89,53.99],[1546.05,50.94],[1557.19,48.51],[1574.09,55.56],[1581.51,56.48],[1591.28,52.18],[1607.57,49.27],[1621.23,57.93],[1630.12,49.78],[1640.48,56.28],[1658.55,58.2],[1662.96,58.32],[1674.34,49.66],[10.42,69.45],[22.74,64.19],[24.64,70.79],[44.18,63.72],[58.02,69.68],[64.67,61.02],[78.69,60.82],[90.64,66.38],[100.55,65.05],[110.38,62.6],[123.1,69.43],[137.76,69.4],[150.95,69.69],[161.03,66.51],[172.18,62.3],[184.76,69.01],[201.71,65.61],[213.32,60.84],[215.53,60.92],[229.24,66.07],[241.49,62.17],[257.27,61.14],[272.67,65.37],[284.25,62.75],[293.49,69.99],[302.13,61.07],[316.39,66.85],[333.08,67.08],[337.71,70.4],[350.83,66.02],[360.22,61.06],[376.31,62.07],[389.39,62.59],[398.36,65.03],[409.91,65.15],[425.31,69.81],[433.69,60.74],[446.6,61.18],[458.12,66.65],[468.03,62.18],[481.73,61.41],[490.6,64.67],[508.39,66.98],[522.42,68.98],[527.57,66.39],[548.18,60.35],[551.66,67.63],[566.27,64.75],[575.5,63.28],[593.07,65.13],[603.93,63.13],[612.38,68.02],[628.03,70.9],[635.47,62.61],[648.55,69.08],[663.16,61.85],[678.46,66.39],[686.03,61.2],[695.89,69.92],[711.16,65.91],[718.51,61.65],[733.03,63.79],[748.79,65.67],[754.3,66.67],[772.44,61.2],[778.66,60.46],[795.18,65.86],[805.93,69.02],[814.5,64.41],[831.63,63.62],[840.56,66.43],[854.03,70.23],[868.09,65.31],[878.52,61.91],[892.98,70.29],[896.45,65.99],[909.54,60.59],[928.73,65.68],[936.14,63.39],[954.06,63.6],[962.08,67.03],[974.76,61.51],[985.69,68.56],[997.27,64.52],[1009.71,70.59],[1024.51,61.37],[1033.1,62.82],[1042.18,62.76],[1057.51,62.1],[1065.46,65.94],[1079.91,69.2],[1094.55,64.37],[1108.79,64.38],[1119.52,70.16],[1129.65,61.65],[1138.37,66.42],[1153.28,70.1],[1169.27,64.03],[1179.86,69.58],[1182.8,63.1],[1204.69,65.79],[1207.73,70.16],[1225.19,63.39],[1231.64,68.55],[1246.14,62.92],[1265.02,68.8],[1270.96,69],[1285.22,62.57],[1296.41,60.73],[1309.93,70.45],[1319.11,62.22],[1329.51,65.27],[1341.49,69.21],[1354.82,66.37],[1366.18,61],[1377.77,62.76],[1395.92,60.72],[1399.07,62.85],[1418.93,70.88],[1426.53,63.79],[1442.94,64.61],[1448.93,61.08],[1465.67,70.68],[1472.32,64.88],[1483.1,66.98],[1503.77,61.23],[1512.22,68.62],[1517.4,61.86],[1537.64,62.15],[1544.25,60.62],[1557.89,68.51],[1569.23,60.66],[1584.8,66.38],[1599.32,66.84],[1608.97,65.11],[1613.58,62.75],[1633.84,60.99],[1642.05,69.74],[1656.2,66.73],[1661.15,61.7],[1680,62.75],[10.97,75.92],[16.19,76.52],[30.1,82.53],[43.58,76.62],[54.81,73.71],[62.88,77.01],[73.83,75.8],[86.82,82.08],[105.83,76.57],[117.68,75.36],[124.57,79.37],[136.66,78.95],[154.42,80.82],[159.06,77.13],[168.96,80.6],[185.34,75.62],[191.66,72.63],[212.6,80.59],[221.59,82.87],[232.22,74.72],[245.64,79.78],[252.31,76.12],[273.95,80.37],[282.38,79.72],[296.06,74.46],[307.81,72.81],[311.05,79.21],[331,82.81],[343.66,74.83],[355.38,77.85],[368.17,81.37],[373.07,76.64],[382.94,72.8],[403.68,74.23],[412.44,82.34],[424.61,73.88],[435.49,82.85],[446.97,81.93],[464.61,76.76],[472.59,76.6],[481.19,75.07],[498.1,77.44],[503.88,82.74],[515.3,76.43],[535.07,73.75],[539.1,72.32],[554.2,82.8],[562.3,73.58],[579.35,72.36],[590.27,72.65],[598.3,77.51],[611.59,78.38],[630.6,74.91],[643.71,74.76],[646.59,72.74],[660.17,81.32],[677.31,79.73],[681.23,81.06],[700.92,82.08],[713.12,81.15],[718.74,75.79],[735.36,75.3],[743.83,80.07],[754.15,73.73],[767.64,78.73],[782.16,81.83],[797.28,76.96],[803.08,82.55],[815.68,78.13],[831.88,76.99],[844.83,76.96],[852.55,80.07],[863.9,80.2],[880.95,73.57],[885.42,80.52],[904.25,80.11],[909.37,82.53],[928.02,78.42],[931.94,74.29],[950.8,77.72],[957.03,82.5],[973.04,77.66],[983.27,72.37],[996.91,80.26],[1011.43,82.46],[1022.67,74.74],[1036.63,72.85],[1046.5,80.67],[1059.45,78.95],[1072.6,73.43],[1082.85,75.09],[1096.63,76.63],[1105.19,75.5],[1112.32,77.13],[1132.11,81.04],[1136.92,77.49],[1146.99,82.01],[1161.93,73.8],[1174.59,79.93],[1193.07,72.48],[1194.68,76.27],[1215.42,80.92],[1224.16,72.77],[1230.8,75.72],[1251.18,73.31],[1264.73,78.31],[1273.39,79.52],[1288.88,74.87],[1300.69,82.79],[1307.05,82.72],[1321.97,72.6],[1334.21,81.77],[1348.07,72.87],[1357.48,76.81],[1372.44,73.04],[1377.96,73.6],[1395.3,72.69],[1401.98,73.4],[1415.31,77.31],[1421.94,80.2],[1440.91,78.5],[1450.06,73.05],[1462.07,74.68],[1472.95,77.11],[1482.26,74.5],[1498.16,76.71],[1506.41,78.17],[1520.04,73.63],[1533.4,80.56],[1546.24,81.7],[1560.55,72.4],[1573.18,75.46],[1584.07,78.39],[1593.82,75.29],[1610.46,80.81],[1619.64,76.25],[1632.66,82.57],[1646.44,78.18],[1652.72,73.75],[1669.29,78.49],[1680,76.2],[6.27,93.3],[21.34,91.7],[33.19,88.97],[37.39,91.86],[56.95,94.32],[65.93,93.15],[78.34,88.48],[88.18,86.64],[103.76,86.37],[117.25,85.79],[122.41,90.49],[132.66,93.37],[152.69,89.66],[163.12,90.3],[173.61,87.95],[183.08,92.84],[196.01,90.97],[207.75,87.17],[223.39,91.71],[233.21,89.27],[243.44,86.34],[261.36,84.2],[270.1,86.62],[284.46,93.79],[288.55,92.23],[304.7,91.81],[320.77,84.46],[326.75,86.95],[343.59,91.38],[348.26,91.83],[366.34,84.33],[376.02,90.3],[389.17,88.65],[397.55,84.94],[410.69,86.07],[428.42,87.1],[434.66,87.34],[450.81,90.47],[459,84.46],[469.35,88.57],[482.97,87.27],[491.54,90.27],[505.07,92.25],[524.12,84.21],[532.55,92.03],[546.89,89.49],[554.46,94.7],[569.26,85.87],[581.74,93.14],[591.19,88.08],[606.99,84.41],[618.58,88.48],[627.87,86.16],[635.71,87.09],[649.29,89.18],[660.32,94.34],[676.72,86.33],[690.68,93.36],[701.28,90.63],[711.03,85.18],[718.59,85.71],[736.16,86.78],[750.89,88.81],[756.97,94.68],[769.02,91.75],[781.7,93.01],[795.58,93.92],[807.81,91.35],[814.98,86.03],[834.47,94.7],[837.47,89.66],[855.64,88.72],[868.11,88.88],[876.71,94.37],[890.31,93.05],[902.74,88.05],[911.44,84.23],[923.19,94.17],[938.49,90.18],[948.57,86.65],[964.73,92.1],[973.87,94.74],[983.98,93.23],[992.43,84.54],[1005.77,94.44],[1020.05,88.55],[1034.91,92.34],[1048.09,92.93],[1061.91,89.6],[1065.92,91.05],[1079.57,85.44],[1095.13,93.88],[1104.84,94.2],[1116.2,92.89],[1126.65,93.84],[1144.03,92.02],[1150.63,92.69],[1162.21,88.61],[1176.96,89.14],[1186.42,92.53],[1195.52,88.45],[1207.47,94.27],[1220.51,90.09],[1232.08,86.81],[1249.83,85.29],[1261.16,90.68],[1267.2,92.8],[1286.83,86.11],[1297.33,86.27],[1310.09,85.62],[1322.47,85.29],[1333.28,92.47],[1340.4,87.91],[1356.23,92.59],[1365.67,87.01],[1374.66,85.89],[1395.59,86.14],[1404.02,86.01],[1416.04,86.56],[1422.94,86.51],[1440.25,94.92],[1455.6,88.6],[1460.03,91.33],[1471.94,89.59],[1484.5,85.17],[1496.13,86.19],[1505.38,84.86],[1527.66,91.98],[1536.78,94.38],[1549.67,91.61],[1555.79,86.77],[1571.35,85.07],[1585.18,89.57],[1590.91,85.03],[1601.46,84.63],[1614.28,93.3],[1628.38,87.79],[1643.47,86.03],[1653.46,86.67],[1666.92,93.97],[1672.57,89.6],[5.4,96.79],[23.09,101.73],[29.71,105.9],[41.37,98.76],[55.96,106.09],[69.99,99.49],[79.94,96.67],[84.22,99.39],[98.95,99.31],[110.78,104],[127.07,103.03],[141.58,100.5],[144.55,96.38],[165.19,97.22],[168.77,101.35],[190.16,103.63],[193.32,97],[206.05,102.81],[225.89,100.46],[237.25,105.55],[247.88,103.78],[251.38,104.23],[265.61,96.96],[275.56,101.64],[296.49,101.13],[301.8,101.66],[320.44,102.33],[332.23,99.67],[341.28,96.27],[347.82,102.34],[365.3,104.58],[373.69,101.22],[388.43,104.43],[405.09,104.35],[410.98,98.7],[419.97,96.39],[440.52,97.02],[452.36,102.33],[455.38,104.19],[475.98,101.59],[481.1,97.7],[496.89,98.54],[508.05,106.86],[519.98,104.45],[531.59,98.26],[540.79,106.2],[559.61,102.23],[565.22,101.63],[582.96,106.01],[594.25,101.33],[603.57,102.1],[613.03,96.62],[624.53,106.04],[642.75,104.3],[647.62,101.28],[667.63,105.62],[674.57,96.66],[684.11,103.3],[703.44,97.79],[707.39,102.19],[727.1,106.45],[738.88,98.26],[743.77,100.12],[753.31,98.43],[767.14,104.66],[779.91,102.28],[794.49,102.58],[810.7,98.07],[820.61,105.65],[826.44,96.84],[839.41,100.4],[857.08,98.42],[860.91,102.84],[876.09,102.83],[893.25,103.57],[901.13,96.59],[910.73,98.6],[920.01,102.97],[939.59,103.81],[953.26,101.06],[965.12,102.44],[977.39,105.28],[981.09,96.73],[996.07,100.94],[1011.63,105.28],[1019.68,101.3],[1038.16,97.76],[1047.11,100.67],[1058.37,105.04],[1073.18,96.55],[1084.07,102.23],[1091.5,102.84],[1105.06,98.32],[1116.19,104.16],[1133.6,98.13],[1137.05,98.45],[1153.54,103.89],[1166.22,97.92],[1178.42,102.36],[1190.14,99.5],[1198.21,101.06],[1206.98,96.65],[1219.7,102.97],[1232.72,100.8],[1250.61,104.68],[1263.88,105.41],[1273.56,100.95],[1283.15,99.85],[1290.61,96.41],[1307.31,97.66],[1322.42,99.37],[1330.95,106.6],[1346.61,98.73],[1355.74,102.47],[1368.49,104.33],[1378.84,99.39],[1389.57,102.7],[1402.3,106.86],[1418.17,105.77],[1430.68,96.92],[1437.19,99.14],[1455.37,100.55],[1457.47,101.48],[1477.81,97.11],[1484.09,97.35],[1494.03,100.44],[1510.85,103.7],[1525.27,102.63],[1537.98,96.47],[1547.1,103.86],[1558.84,102.93],[1573.98,105.8],[1586.88,97.15],[1596.48,106.73],[1608.17,96.37],[1617.86,100.5],[1626.1,106.34],[1638.01,98.72],[1658.45,96.21],[1664.42,104.94],[1677.84,100.52],[3.06,115.26],[17.96,113.22],[28.87,112.34],[43.55,114.03],[50.08,112.84],[60.65,110.34],[80.88,114.58],[91.41,109.39],[98.93,114.37],[114.52,113.75],[126.12,110.09],[134.95,108.1],[147.83,115.55],[164.45,111.92],[177.49,112.45],[189.67,110.21],[193.87,115.75],[205.23,115.25],[216.83,113.97],[236.09,117.28],[246.57,115.11],[256.48,110.69],[270.35,109.47],[280.41,115.5],[296.94,115.28],[306.09,110.47],[314.84,110.21],[329.14,118.3],[337.87,118.49],[352.86,112.98],[367.19,115.89],[380.84,117.08],[384.73,111.64],[398.55,116.9],[406.89,114.81],[420.37,110.07],[434.53,110.73],[442.82,110.62],[455.73,114.08],[467.12,115.46],[485.24,109.43],[499.04,115.73],[503.42,113.97],[524.13,117.82],[531.7,109.27],[548.21,108.88],[560.4,115.99],[567.03,115.48],[577.26,115],[592.77,117.41],[600.78,112.63],[618.47,112.84],[624.41,108.92],[642.13,109.15],[651.36,112.19],[664.9,114.55],[675.72,118.48],[688.78,114.02],[695.9,109.35],[707.52,113.94],[723.7,118.4],[733.69,118.48],[747.37,113.22],[755.27,115.73],[772.9,110.5],[776.99,115.4],[790.63,114.11],[808.86,116.16],[816.78,114.38],[829.74,111.07],[844.05,114.08],[858.62,108.41],[860.77,110.76],[874.89,112.38],[894.81,108.44],[905.42,108.07],[916.51,111.37],[926.34,109.79],[935.64,116.62],[944.18,109.38],[957.73,116.47],[975.94,112.3],[989.18,109.86],[995.7,115],[1003.8,113.23],[1018.14,110.72],[1036.92,112.52],[1046.75,110.54],[1056.19,117.46],[1068.1,110.04],[1084.9,110.16],[1094.91,113.74],[1106.66,110.51],[1118.17,114.35],[1125.22,114.19],[1144.32,117.65],[1153.44,113.09],[1165.05,117.45],[1174.57,109.02],[1184.49,117.75],[1202.01,112.89],[1208.5,112.77],[1219.26,114.88],[1233.78,112.59],[1246.67,118.53],[1258.3,108.33],[1274.67,113.71],[1279.35,112.39],[1292.98,112.52],[1311.58,111.59],[1319.92,118.51],[1331.32,117.75],[1338.73,118.32],[1350.9,117.34],[1364.81,116.36],[1373.74,112.88],[1388.72,116.1],[1402.52,113.27],[1419.64,115.01],[1432.16,111.66],[1433.5,111.93],[1452.39,115.19],[1457.64,118.67],[1477.06,113.21],[1485.83,111.7],[1494.37,115.9],[1509.94,110.25],[1520.85,115.75],[1534.51,108.37],[1541.59,114.3],[1560.79,112.25],[1570.55,114.64],[1584.23,116.93],[1588.65,110.44],[1610.29,118.18],[1613.64,116.75],[1628.04,108.09],[1640.46,114.02],[1658.31,112.85],[1669.92,111.65],[1672.49,116.18],[9.47,129.39],[14.7,126.02],[26.56,123.76],[44.49,128.99],[54.12,125.82],[67,128.86],[79.76,127.19],[84.32,128.5],[96.12,130.61],[111.41,130.02],[125.32,126.33],[137.54,128.61],[145.36,127.19],[160.57,129.29],[174.1,129.14],[185.48,123.69],[201.27,129.54],[213.72,130.73],[215.6,127.27],[236.76,129.9],[244.08,122.06],[254.56,120.7],[272.98,121.75],[283.64,121.59],[290.61,129.55],[308.68,125.1],[313.2,128.49],[327.97,127.49],[343.04,122.02],[354.8,124.61],[368.41,125.19],[372.65,128.9],[391.92,124.44],[395.85,123.53],[410.07,127.12],[426.91,126.69],[436.15,122.54],[452.43,130.14],[464.8,125.34],[474.71,125.89],[487.38,125.38],[500.6,120.24],[502.85,126.4],[524.33,121.91],[527.54,125.16],[541.06,129.79],[555.85,123.88],[565.27,122.02],[575.99,124.52],[589.27,120.1],[605.58,128.05],[613.32,120.55],[623,124.49],[636.37,121.84],[645.39,124.57],[660.43,124.58],[677.72,122.37],[682.17,122.64],[699.97,126.08],[712.39,127.9],[724.34,130.52],[729.98,122.97],[749.71,129.54],[760.82,130.57],[772.36,129.58],[782.48,121.64],[797.63,125.41],[808.11,126.24],[813.52,124.11],[825.94,129.06],[843.37,127.86],[858.82,124.26],[869.81,127.1],[879.84,130.23],[884.38,127.57],[903.74,127.4],[912.64,124.8],[930.12,126.46],[933.03,122.52],[953.96,128.37],[961.53,122.55],[972.15,124.53],[989.87,122.56],[998.6,125.03],[1009.09,127.54],[1021.71,129.14],[1028.76,129.31],[1041.25,120.35],[1057.1,128.28],[1073.55,127.02],[1080.55,120.68],[1089.62,120.04],[1106.89,120.23],[1111.33,126.56],[1133,127.34],[1136.42,126.37],[1149.91,126.08],[1166.21,121.89],[1172.06,128.09],[1186.77,122.18],[1203.07,124.55],[1213.05,121.97],[1224.89,125.67],[1237.57,129.98],[1242.67,127.41],[1256.63,124.79],[1272.8,122.44],[1285.32,125.5],[1299.75,130.66],[1305.47,128.25],[1314.44,124.13],[1330.78,122.73],[1343.17,125.03],[1355.61,123.99],[1362.47,124.59],[1376.53,127.7],[1392.45,129.42],[1405.59,124.12],[1411.13,123.14],[1426.66,120.12],[1443.9,127.92],[1452.66,123.04],[1461.94,127.65],[1476.63,125.69],[1482.64,127.26],[1495.89,122.79],[1510.15,121.98],[1521.42,123.35],[1532.9,128.62],[1548.63,129.2],[1560.2,130.5],[1575.43,122.62],[1586.41,126.27],[1593.5,123.42],[1602.59,129.48],[1617.08,121.9],[1632.72,123.7],[1641.52,128.48],[1653.84,126.25],[1661.45,128.7],[1680,123.58],[9.14,135.43],[14.26,141.09],[29.43,138.8],[43.83,133.84],[56.58,132.41],[61.58,140.73],[82.4,142.26],[90.98,139.2],[101.58,134.32],[117.2,136.94],[124.84,140.89],[137.99,136.01],[147.17,133.23],[163.96,135.12],[176.71,133.63],[188.84,137.79],[192.99,140.48],[213.9,138.47],[217.31,139.71],[237.65,135.2],[243.27,138.67],[258.43,134.01],[269.05,136.86],[277.43,135.36],[292.06,135.14],[306.77,135.61],[312.8,132.25],[326.01,142.28],[336.87,132.83],[348.29,135.2],[364.43,140.71],[376.66,141.99],[385.01,137.86],[395.67,133.47],[409.75,135.46],[422.94,141.65],[436.27,136.66],[443.78,138.89],[456.65,134.06],[475.32,142.09],[484.92,140.86],[498.1,135.57],[509.2,134.81],[515.56,132.77],[534.13,134.08],[546.01,137.72],[559.04,140.98],[569.99,135.82],[581.66,132.54],[586.9,132.63],[598.14,136.43],[617.47,132.17],[624.59,134.57],[635.73,137.44],[645.73,142.07],[664.92,135.14],[669.89,132.38],[687.78,132.1],[700.48,136.2],[709.46,141.15],[718.69,142.55],[734.69,138.93],[751.02,132.89],[757.18,136.47],[768.41,132.45],[785.19,141.97],[795.56,142.12],[801.25,137.66],[821.05,134.83],[832.15,134.58],[842.54,140.78],[852.84,134.21],[868.59,138.2],[873.22,135.87],[887.9,139.22],[904.61,133.19],[918.36,142.12],[921.98,137.67],[939.82,134.25],[951.3,136.69],[962.49,140.18],[976.62,132.73],[985.28,133.68],[993.37,135.52],[1011.92,133.36],[1021.97,135.54],[1037.41,142.43],[1047.84,133.08],[1051.75,139.02],[1073.41,133.82],[1080.18,134.38],[1093.07,139.87],[1101.52,141.4],[1119.1,132.77],[1133.23,132.16],[1141.04,136.21],[1157.39,140.72],[1167.25,139],[1173.68,135.1],[1189.24,132.12],[1203.95,133.32],[1209.08,132.87],[1227.29,132.22],[1232.59,134.13],[1243.38,132.78],[1256.6,132.69],[1269.64,133.9],[1279.24,139.22],[1292.81,134.94],[1311.99,141.27],[1317.21,142.31],[1328.54,138.76],[1344.27,140.81],[1358.27,132.71],[1370.71,142.45],[1380.86,140.71],[1392.8,140.25],[1398.93,141.87],[1419.77,136.79],[1429.84,140.24],[1434.91,133.17],[1454.03,138.06],[1465.16,133.99],[1478.72,134.33],[1489.26,134.76],[1499.49,140.96],[1509.12,142.57],[1518.72,133.42],[1528.99,138.65],[1543.43,134.61],[1558.76,136.27],[1571.25,140.28],[1584.88,140.95],[1597.53,140.66],[1605.37,140.65],[1620.66,132.06],[1628.81,134.46],[1640.64,137.95],[1649.93,140.73],[1661.33,142.34],[1677.01,136.82],[2.55,148.61],[22.43,144.95],[27.97,153.7],[46.88,148.92],[56.47,147.01],[63.22,151.32],[80.24,146.07],[87.61,153.82],[98.43,150.54],[111.68,150.87],[126.18,147.54],[142.03,147.54],[154.47,148.68],[156.97,151.55],[176.49,150.74],[183.8,144.86],[196.64,145.16],[208.72,146.23],[222.57,147.2],[228.09,153.4],[241.44,147.61],[252.77,151.71],[268.13,152.53],[285.64,145.86],[293.04,148.38],[306.23,149.18],[319.05,148.89],[331.17,153.16],[335.68,150.6],[348.18,145.84],[358.88,150.41],[380.54,152.58],[389.36,145.87],[404.51,153.93],[415.13,153.34],[424.04,144.5],[435.69,144.39],[450.22,146.4],[458.13,150.22],[468.54,150.57],[485.44,145.92],[497.11,145.98],[502.46,148.87],[519.95,152.54],[535.84,150.48],[542.06,150.11],[553.66,144.84],[570.36,148.53],[581.4,147.33],[586.3,145.91],[605.12,148.54],[610.19,154.03],[628.61,151.23],[640.7,150.23],[655.09,146.82],[667.45,153.98],[675.01,148.56],[683.91,144.08],[693.94,152.42],[715.19,154],[722.43,154.56],[738.5,153.77],[746.11,146.48],[754.32,147.13],[771.23,150.82],[784.34,150.59],[792.39,154.06],[811.29,151.88],[819.04,151.49],[829.75,152.39],[844.26,150.98],[850.85,146.41],[870.26,146.41],[877.44,146.04],[884.53,152.01],[904.59,152.04],[914.66,145.47],[922.46,146.17],[935.65,143.9],[953.72,154.56],[959.01,148.33],[970.71,153.47],[983.95,153.91],[1000.42,153.45],[1011.43,145.27],[1024.51,145.73],[1031.19,151.48],[1040.16,152.76],[1056.16,150.56],[1068.01,149.84],[1080.94,151.52],[1096.8,147.04],[1104.98,151.6],[1114.26,145.7],[1128.89,151.49],[1135.44,152.18],[1150.62,149.73],[1168.23,151.29],[1171.12,152.7],[1183.64,146.01],[1199.07,153.19],[1216.57,153.13],[1224.43,153.18],[1231.95,154.05],[1244.03,147.29],[1263.16,147.62],[1268.37,149.25],[1288.82,153.75],[1290.49,153.61],[1306.77,148.12],[1315.36,154.04],[1334.63,145.24],[1338.16,150.95],[1357.62,153.82],[1368.91,147.46],[1381.08,149.56],[1386.3,146.88],[1403.44,151.13],[1417.06,147.6],[1424.56,145.18],[1438.88,150.9],[1448.76,154.26],[1464.07,143.88],[1469.93,144.37],[1491.46,153.09],[1493.49,147.95],[1505.35,147.32],[1519.09,150.82],[1530.89,153.05],[1548.54,145.79],[1556.83,152.61],[1569.67,153.62],[1578.86,149.91],[1589.59,148.2],[1601.17,151.68],[1619.85,146.63],[1629.83,150.19],[1642.8,153.44],[1658.15,151.47],[1662.1,145.87],[1672.2,145.75],[9,162.29],[16.1,160.3],[29.77,157.27],[38.17,156.13],[50.29,161.01],[60.89,160.53],[73.99,157.82],[90.86,162.53],[103.49,159.88],[111.97,157.22],[121.82,157.89],[136.89,165.17],[150.78,162.06],[164.04,165.59],[178.45,159.78],[179.82,165.26],[192.13,163.65],[211.74,158.62],[224.91,158.52],[237.08,163.42],[244.08,161.3],[261.29,158.53],[264.61,157.69],[281.97,163.38],[292.96,160.44],[307.64,164.75],[321.28,156.95],[333.54,166],[343.92,159.04],[348.9,163.62],[361.78,159.81],[378.16,158.96],[391.44,160.15],[397.86,166.32],[416.84,164.86],[421.42,157.85],[430.85,164.72],[452.4,165.83],[461.27,161.52],[473.69,162.22],[478.21,163.41],[500.64,158.81],[510.98,165.14],[521.31,155.95],[531.62,160.33],[544.05,156.49],[551.79,164.34],[562.05,165.25],[576.41,162],[595.56,159.22],[602.59,163.16],[620.04,165],[629.95,164.32],[635.54,159.56],[655.53,157.85],[666.71,164.75],[675.98,161.39],[688,160.21],[698.35,161.45],[709.5,166.29],[723.39,161.36],[731.73,164.1],[742.42,163.11],[756.74,166.37],[768.42,163.01],[780.81,158.87],[795.05,159.61],[804.1,158.58],[818.1,165.55],[833.56,159.22],[838.49,164.02],[855.42,163.3],[861.25,160.45],[881.96,165.5],[887.04,160.09],[897.95,164.26],[912.59,159.03],[926.08,159.76],[933.83,165.53],[948.02,160.76],[960.65,158.7],[971.36,165.34],[980.64,163.38],[999.14,164.64],[1010.63,163.91],[1019.52,163.23],[1032.81,158.35],[1046.61,156.28],[1061.72,160.73],[1073.5,158.27],[1078.62,164.03],[1091.61,159.04],[1100.78,163.44],[1113.95,161.78],[1123.03,156.95],[1137.39,163.21],[1156.55,165],[1162.22,165.73],[1171.95,158.3],[1190.48,162.53],[1196.23,163.96],[1214.45,157.44],[1219.85,164.32],[1230.48,161.32],[1244.53,155.96],[1257.86,164.18],[1276.28,157.34],[1284.38,157.92],[1297.42,161.87],[1302.89,163.92],[1315.68,161.72],[1332.63,160.83],[1342.89,157.38],[1354.49,161.9],[1363.1,163.15],[1374.57,165.42],[1393.61,162.67],[1401.77,162.96],[1413.22,160.63],[1423.7,166.37],[1439.88,159.97],[1447.74,165.59],[1465.55,160.6],[1476.55,159],[1484.37,158.17],[1503.83,166.09],[1509.08,163.24],[1522.09,158.27],[1531.97,159.39],[1549.31,159.06],[1554.68,156.27],[1573.84,159.75],[1578.67,162.32],[1589.25,160.91],[1611.28,159.64],[1619.33,162.92],[1627.3,156.03],[1641.27,163.04],[1655.51,159],[1661.75,166.21],[1680,163.51],[4.59,175.58],[15.08,175.85],[31.55,170.04],[42.44,173.06],[58.81,169.41],[65.8,167.76],[78.17,170.13],[92.5,176.3],[103.44,174.86],[112.68,173.57],[124.98,175.79],[135.7,177.15],[146.29,171.29],[163.71,175.69],[176.04,168.88],[188.03,170.63],[198.21,178.46],[208.62,167.95],[220.64,168.44],[236.16,174.01],[248.84,171.11],[258.1,176.6],[269.18,173.47],[280.46,175.82],[289.29,170.38],[306.61,176.84],[315.13,170.01],[324.09,175.28],[343.13,173.85],[354.38,177.72],[367.24,172.99],[376.8,171.83],[387.16,175.41],[394.63,169.35],[406.79,171.11],[421.83,168.97],[436.98,177.6],[452.33,176.43],[462.12,173.57],[473.3,170.96],[487.34,172.29],[492.45,175.33],[504.01,170.81],[515.53,173.64],[529.57,173.66],[540.19,171.81],[559.16,177.98],[571.12,175.89],[581.75,178.48],[590.58,175.75],[597.98,169.08],[618.29,168.98],[631.48,174.91],[635.8,170.94],[650.14,170.97],[662.6,173.79],[671.19,171.16],[683.1,174.23],[703.76,170.55],[706.11,176.66],[718.37,167.76],[737.93,174.69],[744.25,175.72],[755.52,171.31],[768.39,168.19],[781.48,169.37],[799.29,176.13],[803.88,178.34],[815.98,176.46],[834.09,177.7],[838.13,177.72],[848.75,167.96],[868.88,173.27],[876.63,178.5],[888.69,177.59],[905.82,176.08],[918.56,168.74],[922.09,171.2],[937.92,170.03],[944.25,175.65],[959.78,168.45],[968.28,170.83],[981.81,175.73],[999.13,175.31],[1007.59,168.79],[1021.67,168.47],[1030.49,176.26],[1044.37,171.05],[1060.6,173.25],[1066.59,174.26],[1083.98,171.52],[1091.51,170.2],[1107.1,169.05],[1111.42,173.78],[1127.55,172.22],[1144.5,174.02],[1147.09,175.11],[1163.2,170.21],[1174.25,173.19],[1191.36,177.17],[1202.24,175.8],[1207.19,172.19],[1220.85,178.09],[1230.63,176.71],[1245.99,174.71],[1254.72,168.9],[1274.5,170.48],[1282.84,171.99],[1296.26,178.41],[1302.77,172.69],[1321.57,168.9],[1328.81,173.18],[1339.63,173.23],[1350.8,171.39],[1364.34,177.51],[1373.74,176.49],[1393.83,169.3],[1403.28,172.01],[1418.45,169.32],[1427.58,178.25],[1438.95,174.52],[1448.01,173.34],[1459.26,174.61],[1473.03,169.36],[1489,168.36],[1503.58,170.61],[1513.62,170.29],[1524.48,169.5],[1529.35,170.8],[1546.85,170.17],[1558.76,173.33],[1575.38,175.17],[1582.04,170.28],[1595.51,169.13],[1605.92,168.37],[1615.01,177.45],[1633.86,174.85],[1637.57,174.47],[1651.73,176.54],[1668.81,173.76],[1680,172.45],[7.83,180.93],[17.53,180.45],[28.17,185.06],[44.72,181.81],[51.89,188.4],[68.59,185.08],[77.56,185.74],[87.62,181.6],[98.13,181.7],[110.7,186.98],[121.41,187.08],[139.55,190.26],[151.97,183.92],[160.93,184.84],[175.16,181.69],[180.21,183.31],[192.77,181.18],[211.94,180.66],[216.95,190.38],[234.64,179.97],[242.77,185.83],[255.52,188.52],[265.99,188.81],[285.07,186.97],[296.92,189.67],[306.4,189.57],[320.02,187.64],[329.26,187.54],[340.85,188.18],[351.14,181.06],[363.05,182.41],[378.38,187.8],[389.48,189.56],[405.24,183.1],[406.73,183.07],[428.85,182.67],[432.24,190.28],[442.4,180.65],[464.95,183.31],[470.28,188.42],[486.26,181.05],[491.39,183.74],[506.95,181.46],[519.27,188.13],[532.33,180.16],[547.87,190.28],[559.95,188.61],[568.66,181.91],[582.04,180],[594.59,186.44],[604.58,181.48],[612.76,186.34],[626.5,187.11],[636.39,182.97],[648.27,187.49],[659.78,181.78],[675.34,181.76],[691.11,189.73],[701.45,182.55],[713.57,186.54],[717.6,182.21],[732.8,184.15],[741.87,184.73],[759.78,185.19],[765.24,184.91],[779.29,181.43],[789.38,182.8],[810.94,183.19],[817.43,180.67],[824.59,187.72],[845.18,184.23],[848.36,182.16],[860.9,183.5],[879.86,189.14],[890.16,187.3],[906.12,179.93],[911.17,187.82],[924.27,185.98],[940.32,180.75],[952.3,180.31],[955.99,182.42],[967.78,185.9],[981.95,180.42],[1000.81,181.51],[1011.06,183.17],[1020.96,187.39],[1027.65,187.77],[1045.07,188.37],[1055.15,187],[1068.69,180.29],[1083.34,187.33],[1096.79,182.99],[1103.91,188.67],[1119.3,188.21],[1132.4,185.55],[1139.89,189.57],[1149.81,188.51],[1168.74,190.43],[1171.53,186.23],[1183.86,189.33],[1200.26,187.87],[1207.67,185.09],[1224.95,179.95],[1238.29,179.74],[1251.19,187.8],[1255.91,182.22],[1275.39,183.34],[1284.28,182.04],[1295.97,180.15],[1306.93,188.14],[1320.26,189.25],[1332.42,185.84],[1344.55,185.65],[1357.85,185.24],[1362.79,179.77],[1379.55,183.36],[1389.32,186.28],[1407.5,180.61],[1416.06,190.15],[1429.92,180.47],[1438.81,184.39],[1448.64,185.23],[1467.44,180.78],[1473.12,182.5],[1481.81,182.6],[1499.6,181.01],[1506.79,183.86],[1521.01,186.59],[1529.53,179.88],[1541.55,181.35],[1559.06,186.55],[1566.48,186.58],[1581.81,181.08],[1590.17,185.6],[1608.24,183.59],[1612.56,183.31],[1626.67,182.98],[1643.9,188.49],[1657.01,181.75],[1664.21,180.26],[1675.99,181.07],[7.13,194.06],[18.26,191.99],[33.82,195.58],[38.92,193.85],[54.73,195.29],[66.61,201.85],[78.74,202],[87.96,201.38],[104.16,194.49],[110.68,201.07],[125.99,194.79],[139.96,196.81],[146.39,192.02],[161.41,201.97],[170.95,192.48],[185.73,192.75],[195.18,197.19],[210.83,196.21],[218.9,194.4],[234.78,195],[250.04,197.93],[256.13,194.7],[266.9,193.39],[279.26,198.2],[296,195.63],[306.38,197.06],[311.32,199.91],[331.12,195.51],[337.62,201.41],[350.21,201.85],[364.72,197.16],[372.36,194.85],[385.77,192.86],[400.6,193.85],[406.94,200.77],[427.27,193.24],[438.77,193.61],[449.38,195.9],[457.9,202.25],[468.82,196.7],[478.89,192.44],[496.95,199.11],[504.08,198.33],[514.55,194.13],[527.67,198.29],[539.45,200.28],[558.61,194.94],[570.85,201.18],[582.95,194.36],[595.11,202.24],[604.48,199.1],[616.42,195.18],[623.17,195.45],[637.87,201.45],[653.08,201.19],[659.58,201.73],[670.77,199.44],[681.35,198.29],[697.49,193.8],[708.05,201.65],[722.73,195.94],[738.04,200.24],[750.31,198.65],[757.67,201.98],[766.01,196.28],[777.87,192.43],[798.45,197.9],[802.88,193.45],[814.59,196.98],[834.52,202.22],[840.13,195.15],[856.48,200.75],[867.36,199.55],[875.23,199.52],[886.47,195.45],[905.2,198.11],[914.91,199.44],[929.7,198.32],[938.63,197.44],[949.21,200.31],[961.8,194.19],[976.88,202.06],[982.06,192.07],[1002.35,195.33],[1010.05,201.53],[1024.43,197.86],[1028.63,192.17],[1041.04,195.56],[1057.7,199.9],[1071.88,198.97],[1082.61,191.92],[1090.18,194.23],[1107.83,201.98],[1121.45,192.72],[1127.45,194.63],[1138.84,192.92],[1149.57,199.26],[1169.42,201.23],[1177.23,196.7],[1182.83,201.21],[1204.65,198.94],[1208.17,199.5],[1224.78,200.09],[1231.95,198.41],[1247.19,192.49],[1264.95,194.51],[1273.67,200.17],[1284.56,197.24],[1292.35,196.03],[1308.01,198.34],[1322.19,198.07],[1327.78,201.86],[1341.08,193.46],[1352.72,199.11],[1372.09,200.6],[1378.76,199.53],[1396.15,195.77],[1402.22,199.41],[1416.18,199.09],[1424.14,198.82],[1442.3,195.88],[1455.86,200.85],[1462.7,192.37],[1471.06,202.07],[1485.01,199.45],[1495.37,200.75],[1510.79,192.48],[1524.84,194.2],[1531.04,201.67],[1545.62,191.71],[1556.26,200.78],[1566.79,195.91],[1581.68,199.8],[1589.84,191.77],[1609.16,195.91],[1616.12,196.8],[1625.19,197.27],[1641.02,199.16],[1654.79,202.22],[1670.14,201.61],[1674.08,198.94],[2.41,204.35],[21.85,205.32],[25.45,208.1],[44.47,206.76],[51.99,210.28],[63.26,212.72],[81.75,213.85],[91.17,204.56],[103.15,209.66],[109.64,210.78],[120.61,213.19],[135.81,204],[148.59,209.7],[164.52,212.88],[178.16,204.69],[186.35,205.25],[198.28,205.63],[214,208.79],[221.37,206.38],[233.49,205.07],[243.2,213.09],[254.21,212.27],[263.45,214.07],[276.34,205.17],[293.82,210.68],[308.47,210.95],[318.91,211.66],[327.68,206.14],[338.85,210.48],[348.89,206.32],[364.52,203.85],[378.31,214.03],[391.84,205.01],[405.25,208.61],[407.08,208.08],[426.8,205.84],[437.59,212.2],[451.79,207.4],[459.64,203.72],[467.33,212.28],[485.99,212.7],[496.46,205.89],[505.97,203.6],[518.47,211.62],[534.06,205.1],[545.94,211.66],[558.32,208.28],[571.08,211.78],[583.36,212.55],[594.16,205.5],[600.02,211.12],[613.15,207.59],[626.18,214.25],[637.27,210.56],[647.07,206.97],[658.54,210.15],[669.49,204.06],[684.84,213.78],[700.66,203.7],[708.23,210.16],[726.2,205.62],[734.43,209.38],[742.48,209.63],[756.62,208.13],[771.21,212.81],[781.79,207.15],[795.78,209.38],[811.08,212.78],[820.85,208.79],[827.24,208.16],[838.74,210.63],[849.22,213.65],[861.59,209.54],[874.82,208.85],[885.07,207.02],[901.84,208.7],[918.21,208.48],[920.89,211.92],[934.06,210.17],[945.83,203.91],[955.84,203.58],[968.97,206.54],[983.36,210.72],[999.38,213.11],[1007.53,209.42],[1023.78,211.44],[1034.19,209.32],[1049.51,206.97],[1059.81,211.75],[1063.46,211.16],[1075.98,204.16],[1087.53,208.46],[1108.45,205.81],[1117.68,212.96],[1125.67,208.06],[1144.58,213.58],[1149.52,205.83],[1168.01,210.78],[1174.64,207.17],[1187.88,212.84],[1199.01,213.71],[1211.1,210.75],[1223.35,210.5],[1233.74,209.7],[1245.79,207.28],[1258.17,209.98],[1270.6,212.38],[1280.26,205.17],[1292.86,207.97],[1309.77,207.63],[1315.91,207.09],[1327.9,205.34],[1341.58,208.98],[1351.09,207.71],[1371.82,212.25],[1382.89,206.13],[1389.94,209.72],[1398.62,204.43],[1414.37,206.43],[1422.31,209.19],[1435.19,207.92],[1451.02,203.9],[1466.23,204.85],[1475.6,206.72],[1490.42,208.01],[1494.84,212.83],[1514.76,206.43],[1518.35,208.62],[1538.72,213.34],[1544.33,209.71],[1563.3,204.18],[1573.82,208.95],[1583.28,204.1],[1595.17,208.25],[1609.27,205.29],[1614.28,210.76],[1629.35,210.76],[1643.86,208.06],[1654.66,209.46],[1668.64,210.75],[1677.5,207.62],[2.14,220.21],[12.89,216.38],[25.01,223.94],[38.33,216.28],[52.16,218.14],[61.84,221.56],[73.46,222.16],[84.27,221.25],[96.82,226.13],[114.53,219.64],[126.98,219.23],[142.23,220.46],[149.44,219.99],[160.3,220.24],[174.55,225.24],[180.04,215.69],[198.84,226.06],[212.48,218.82],[219.14,218.76],[228.08,216.12],[241.16,221.05],[257.29,220.45],[271.3,226.14],[278.42,215.6],[297.26,223.72],[307.25,219.44],[314.94,223.73],[324.86,224.16],[343.71,220.41],[353.84,221.89],[367.98,225.2],[379.12,224.06],[386.42,219.14],[402.36,223.19],[415.65,217],[423.01,216.31],[432.6,217.63],[447.13,221.27],[455.68,217.13],[473.88,223.14],[478.95,215.76],[497.87,218.32],[511.23,223.14],[515.13,220.63],[532.1,225.81],[546.33,224.81],[557.13,221.65],[571.83,224.06],[574.31,215.75],[594.52,222.19],[600.15,218.08],[613.7,222.01],[624.65,216.8],[637.9,221.58],[649.02,223.91],[661.17,224.17],[676.58,224.82],[682.95,218.18],[700.29,218.3],[709.13,218.07],[718.97,220.04],[731.72,222.11],[742.35,216.73],[754.22,225.78],[775.47,223.41],[777.18,220.66],[796.5,220.29],[806.38,220.47],[819.81,216.34],[825.41,216.2],[841.72,218.23],[856.31,216.69],[865.12,222.48],[881.02,218.66],[887.7,218.35],[898.55,216.17],[917.17,217.88],[921.58,218.48],[933.44,220.58],[944.87,217.35],[962.8,222.96],[973.6,221.81],[981.71,225.04],[992.64,219.46],[1008.17,218.45],[1018.02,219.21],[1037.15,218.07],[1047.26,223.03],[1052.45,225.45],[1072.15,220.78],[1083.67,215.83],[1089.42,223.61],[1105.27,222.36],[1114.2,218.17],[1131.74,222.23],[1144.5,216.74],[1151.36,216.57],[1165.09,225.27],[1174.79,216.14],[1187.17,219.33],[1195.94,222.05],[1214.53,223.83],[1220.81,226.09],[1231.35,221.98],[1242.52,223.89],[1255.9,221.19],[1273.98,222.14],[1280.42,216.4],[1298.79,221.27],[1310.83,224.61],[1317.29,225.3],[1332.32,219.21],[1344.57,222.51],[1359.15,220.34],[1362.28,223.61],[1383.1,223.2],[1385.84,216.7],[1406.42,221.08],[1418.95,223.85],[1422.01,225.99],[1442.33,218.96],[1452.55,216.43],[1462.11,223.38],[1478.73,224.35],[1486.56,222.61],[1499.72,217.12],[1514.85,219.96],[1525.49,217.87],[1534.71,219.04],[1545.57,225.19],[1554.94,218.68],[1569.09,220.4],[1579.83,218.22],[1592.94,220.5],[1607.95,222.32],[1621.42,220.59],[1626.62,218.13],[1640.49,226.21],[1650.73,216.34],[1665.75,221.72],[1677.89,219.33],[1.27,228.61],[17.78,229.17],[26.42,233.26],[46.82,230.01],[50.86,237.62],[67.15,237.32],[74.33,230.69],[85.72,235.25],[101.23,233.5],[111.88,227.75],[124.97,232.47],[137.21,229.27],[150.03,231.93],[158.12,237.43],[177.49,228.55],[182.61,227.93],[194.25,237.14],[205.2,236.81],[221.75,228.71],[231.71,235.21],[244.94,232.31],[259.35,229.16],[273.17,233.08],[281.88,229.56],[292.64,228.98],[307.67,237.72],[317.3,228.97],[324.2,229.85],[337.5,237.81],[351.1,236.75],[368.2,232.66],[370.94,232.25],[384.66,234.85],[403.54,233.38],[414.7,234.62],[425.21,229.37],[440.68,227.7],[445.14,235.73],[460.66,232.73],[469.3,236.83],[478.44,230.42],[498.53,233.87],[508.51,233.48],[519.68,228.24],[535.85,231.68],[539.11,230.32],[558.61,235.2],[572.37,230.31],[578.67,230.77],[592.25,235.53],[603.91,228.73],[610.65,235.55],[624.58,232.67],[638.33,230.64],[647.22,237.2],[663.35,228.41],[669.7,234.85],[685.07,234.75],[702.1,231.44],[715.14,234.11],[727.06,231.24],[730.09,232.84],[743.97,234.14],[754.01,229.91],[772.92,231.09],[782.56,229.38],[795.72,233.98],[810.72,237.75],[819.09,230.98],[825.15,232.01],[839.24,238.1],[850.36,230.89],[863.85,236.47],[873.71,230.42],[886.57,227.86],[903.79,235.46],[912.18,228.16],[929.6,228.49],[937.06,235.72],[944.51,229.39],[956.94,237.89],[972.39,232.68],[981.71,230.92],[1001.69,235.51],[1008.86,235.85],[1015.75,236.02],[1028.63,236.49],[1046.15,229.27],[1061.67,237.57],[1071.47,227.73],[1079.23,237.3],[1090.31,235.02],[1100.15,235.11],[1116.66,227.99],[1124.13,231.23],[1143.53,229.16],[1148.79,228.56],[1160.51,228.16],[1176.9,233.28],[1191.27,232.91],[1197.65,227.81],[1210.69,234.26],[1226.44,236.04],[1238.4,229.31],[1252.12,232.63],[1261.54,234.8],[1268.96,238.01],[1278.21,228.31],[1291.22,231.42],[1311.82,230.91],[1320.87,237.52],[1336.44,228.33],[1344.71,236.61],[1357.9,231.42],[1363.63,227.94],[1375.88,231.19],[1391.45,235.17],[1398.38,233.69],[1413.13,232.46],[1421.54,227.98],[1441.4,236.79],[1451.6,231.87],[1465.02,235.45],[1472.3,234.86],[1483.04,234.41],[1495.27,237.32],[1514.58,230.18],[1520.43,234.59],[1538.54,235.41],[1542.83,232.61],[1552.85,228.96],[1564.98,230.87],[1581.8,230.92],[1595.85,235.29],[1605.13,230.54],[1617.39,234.13],[1628.19,232.35],[1643.31,227.96],[1650.55,233.28],[1666.4,234.32],[1680,234.07],[6.18,246.17],[13.49,248.29],[24.49,248.28],[45.75,239.9],[57.18,243.65],[64.79,248.79],[77.59,247.26],[85.14,240.34],[101.8,248.37],[109.56,241.14],[127.65,248.72],[140.18,246.64],[146.81,248.78],[155.92,246.54],[175.61,246.3],[188.59,246.89],[198.9,241.45],[208.12,248.01],[225.79,246.95],[234.58,247.43],[244.56,243.49],[255.7,249.7],[270.4,241.54],[284.71,242.03],[288.45,243.01],[306.64,247.91],[312.87,239.75],[325.6,247.5],[341.7,247.31],[350.58,246.28],[366.73,243.68],[380.55,248.71],[391.39,243.12],[402.5,246.71],[408.43,247.47],[420.7,242.31],[430.54,239.99],[450.69,246.88],[458.57,245.06],[469.42,244.97],[479.26,240.4],[494.2,249.09],[511.24,244.49],[524.75,242.65],[530.09,242.35],[543.83,248.16],[553.16,239.69],[568.57,245.52],[581.16,243.7],[588.59,248.73],[599.54,243.02],[620.14,244.79],[632.06,240.94],[638,245.94],[655.54,241.06],[658.38,243.54],[674.69,242.11],[685.66,244.54],[695.69,240.67],[711.46,245.78],[727.32,247.09],[735.42,239.44],[746.42,242.19],[759.66,239.41],[775.47,244.59],[776.88,248.52],[797.82,247.98],[809.71,245.29],[822.79,240.87],[824.72,239.93],[846.87,240.85],[848.65,240.99],[860.35,249.74],[877.35,242.17],[886.69,249.56],[899.33,250.01],[908.57,249.39],[929.26,243.24],[942.41,248.14],[949,240.23],[957.13,241.96],[970.06,244.61],[987.54,243.62],[1000.57,245.91],[1013.94,239.97],[1017.79,248.6],[1027.62,247.64],[1046.35,246.75],[1057.72,244.46],[1071.43,247.15],[1080.24,245.61],[1096.05,249.56],[1105.74,245.57],[1111.47,240.67],[1124.3,248.28],[1135.35,240.5],[1152.07,242.06],[1160.69,249.45],[1178.24,240.62],[1191.76,249.54],[1200.03,240.02],[1211.35,244.15],[1228.85,248.94],[1235.56,247.61],[1251.45,245.38],[1257.14,247.43],[1268.5,243.25],[1285.07,245.16],[1298.4,243.97],[1307.78,249.92],[1320.14,241.57],[1334.26,245.12],[1338.07,240.36],[1350.38,241.64],[1371.52,241.5],[1384.13,245.9],[1386.69,249],[1402.87,247.76],[1417.45,246.9],[1422.68,246],[1441.59,246.43],[1448.94,240.28],[1466.57,243.85],[1474.25,242.69],[1485.73,250.08],[1493.25,243.13],[1507.06,242.39],[1521.96,239.66],[1529.82,248.88],[1548.69,241.33],[1561.25,241.92],[1573.15,243.45],[1583.64,247.1],[1588.98,243.53],[1600.74,249.58],[1614.38,248.12],[1624.67,249.33],[1642.96,243.7],[1656.57,239.44],[1669.86,246.61],[1678.14,245.53],[3.94,253.39],[20.69,255.78],[31.26,260],[39.84,251.77],[55.3,256.84],[60.88,254.38],[77.07,252.11],[89.51,254.7],[105.24,255.56],[108.87,260.58],[129.88,256.14],[134.86,259.82],[146.36,261.93],[166.34,254.42],[169.21,260.73],[186.42,260.05],[202.11,259.04],[208.18,251.64],[222.03,251.4],[232.94,261.53],[241.55,255.01],[259.81,259.45],[266.92,262.07],[285.39,254.57],[293.89,251.87],[306.39,254.62],[318.63,254.49],[324.39,255.61],[340.75,257.47],[352.34,255.16],[361.97,257.04],[374.56,253.2],[382.79,255.7],[404.39,260.49],[416.92,251.7],[426.57,254.42],[430.44,257.19],[444.38,257.31],[459.76,252.02],[466.56,259.15],[485.41,254.02],[493.34,261.63],[502.83,252.25],[524.69,256.36],[534,258.31],[541.2,254.62],[556.9,256.46],[570.34,256.32],[581.79,256.34],[586.32,253.2],[606.36,254.71],[612.93,258.92],[630.01,257.21],[633.85,258.26],[654.79,257.05],[659.18,257.86],[672.5,252.61],[688.61,260.6],[695.23,254.62],[714.21,256.54],[719.51,257.4],[729.58,255.17],[749.61,259.53],[757.79,253.17],[771.57,259.03],[786.53,254.55],[789.19,253.53],[801.26,253.29],[821.66,258.47],[829.26,261.45],[846.5,253.11],[852.88,252.94],[860.29,257.5],[878.04,251.43],[884.91,261.46],[896.14,259.06],[909.77,261.4],[921.93,251.95],[932.71,254.56],[949.48,255.62],[955.81,256.36],[975.86,254.17],[981.99,256.82],[995.33,254.37],[1010.88,253.04],[1026.21,253.7],[1030.37,253.04],[1043.77,255.78],[1054.14,261.29],[1066.79,257.31],[1077.82,254.11],[1092.17,259.7],[1105.71,254.55],[1120.14,260.41],[1127.38,259.46],[1140.94,254.47],[1150.1,261.02],[1168.52,260.22],[1173.8,261.03],[1186.44,251.76],[1201.42,253.33],[1207.02,253.43],[1227.28,260.63],[1232.99,256.05],[1248.55,260.89],[1255.17,258.56],[1267.57,257.35],[1284.99,253.73],[1294.74,257.5],[1303.99,259.54],[1319.72,252.41],[1330.39,253.73],[1340.57,259.14],[1354.57,261.73],[1368.74,255.96],[1382.41,251.68],[1396.34,256.87],[1399,254.11],[1414.1,253.64],[1429.91,255.34],[1435.6,261.07],[1455.99,252.61],[1464.5,258.84],[1474.41,262],[1485.4,252.09],[1500.71,254.03],[1506.65,260.94],[1521.52,256.75],[1536.32,256.6],[1546.17,260.68],[1561.26,257.26],[1568.05,256.93],[1583.07,254.08],[1595.17,257.39],[1608.91,259.57],[1618.85,252.11],[1633.9,253.72],[1640.11,261.42],[1653.95,259.7],[1663.76,255.59],[1673.27,256.27],[1.75,266.72],[21.7,272.66],[34.5,263.54],[39.74,263.62],[50.37,271.29],[60.96,270.58],[78.91,265.9],[90.44,265.62],[102.69,271.72],[114.24,263.9],[122.64,269.82],[132.81,265.94],[145.91,273.68],[165.89,271.8],[170.25,272.13],[185.24,269.53],[193.56,267.24],[206.53,263.82],[220.43,268.5],[228.27,264.1],[240.91,263.3],[259.29,263.62],[270.44,267],[279.44,264.82],[290.11,265.73],[302.36,265.43],[313.49,263.86],[332.28,265.75],[344.8,268.66],[352.18,268.4],[369.06,272.77],[377.68,270.61],[386.59,265.64],[396.19,268.76],[406.57,267.65],[421.99,263.55],[438.59,265.25],[450.08,266.88],[462.78,265.18],[473.91,269.72],[479.2,273.46],[498.17,270.26],[505.08,265.62],[514.53,273.92],[528.59,270.2],[541.89,267.66],[557.78,273.63],[564.47,273.86],[573.72,271.28],[594.31,263.67],[605.54,266.51],[612.46,273.69],[622.4,267.2],[642.84,263.31],[651.84,265.34],[667.01,268.9],[674.23,274.01],[687.7,271.55],[697.89,270.21],[715.03,267.36],[722.98,263.87],[730.08,271.08],[742.63,268.94],[755.46,268.08],[771.31,266.56],[779.81,270.34],[798.63,264],[801.32,266.63],[818.56,270.97],[829.55,268.1],[845.36,269.51],[858.25,272.92],[867.81,270.95],[882.38,266.42],[890.03,269.35],[902.69,268.16],[912.87,265.34],[920.07,272.96],[940.65,265.15],[952.92,271.77],[956.08,268.55],[969.09,272.87],[989.29,271.25],[995.3,267.88],[1005.53,265.82],[1019.49,268.22],[1027.89,265.45],[1040.24,273.05],[1052.93,272.72],[1070.87,267.32],[1083.29,269.17],[1095.92,270.24],[1101.28,274.01],[1113.34,268.2],[1132.9,268],[1139.88,270.08],[1148.99,273.68],[1160.65,271.06],[1171.59,268.06],[1192.58,264.68],[1198.97,267.57],[1213.9,272.12],[1222.93,263.86],[1236.55,265.52],[1252.45,265.25],[1258.82,265.44],[1275.43,264.23],[1285.41,268.07],[1300.59,270.05],[1311.51,268.41],[1323.96,270.73],[1330.84,264.98],[1339.19,273.89],[1355.11,265.53],[1370.19,264.79],[1375.44,268.49],[1394.22,263.98],[1402.88,271.18],[1418.96,265.62],[1426.58,268.98],[1437.74,265.28],[1452.46,265.69],[1465.98,272.74],[1472.9,266.24],[1484.58,269.86],[1498.65,268.21],[1510.11,264.49],[1520.87,265.99],[1539.07,264.73],[1549.42,270.92],[1562.58,265.34],[1567.45,273.3],[1584.34,266.24],[1597.76,265.98],[1610.46,266.19],[1618.67,268.58],[1633.4,273.09],[1642.2,270.71],[1654.12,271.95],[1669.4,264.96],[1672.53,271.69],[5.07,280],[19.97,282.79],[32.5,284.8],[46.8,282.58],[52.06,276.35],[64.82,276.63],[81.2,275.61],[85.15,280.98],[105.79,277.28],[110.71,279.69],[124.43,276.6],[140.54,277.1],[148.2,279.93],[158.16,275.71],[175.9,283.83],[186.69,278.78],[201.28,277.53],[206.29,281.18],[220.33,276.97],[232.69,279.64],[242.13,280.49],[253.44,278.94],[264.59,278.48],[278.56,280.46],[291.35,278.97],[306.02,282.69],[318.09,285.08],[325.81,278.6],[336.75,280.28],[356.96,285.11],[368.13,281.87],[373.07,283.45],[386.83,285.71],[394.78,278.66],[410.59,278.75],[419.75,276.05],[432.01,281.39],[444.72,285.81],[459.66,275.39],[468.16,278.22],[487.32,277.07],[495.67,280.86],[502.76,278.33],[520.35,280.63],[534.31,281.82],[544.32,280.49],[557.08,285.01],[567.66,280.7],[578.73,276.92],[587.56,283.78],[597.64,282.1],[615.86,276.56],[626.69,285.27],[640.98,285.86],[654.35,281.39],[665.74,283.77],[673.8,280.23],[689.64,279.23],[697.17,284.7],[710.56,280.55],[720.22,283.34],[737.17,284.56],[748.83,277.87],[756.73,278.22],[771.56,279.38],[784.57,276.54],[789.18,281.27],[808.92,280.78],[815.37,285.2],[829.91,280.22],[841.15,280.21],[851.05,280.87],[862.56,278.82],[879.87,283.85],[891.74,285.91],[902.34,277.62],[915.25,276.01],[928.3,281.46],[941.84,281.59],[946.64,281.86],[961.67,276.35],[970.32,278.39],[982.07,275.54],[998.81,282.14],[1003.7,279.4],[1023.86,280.71],[1035.94,279.48],[1044.02,284.73],[1061.55,284.85],[1069.53,282.69],[1082.36,283.88],[1087.92,275.84],[1106.96,285.96],[1117.77,283.25],[1127.52,277.51],[1140.55,275.72],[1148.54,279.21],[1166.55,283.54],[1173.56,277.82],[1183.09,284.17],[1200.1,278.31],[1217.13,282.71],[1224.63,275.36],[1233.61,285.32],[1242.44,285.9],[1262.78,275.74],[1276.44,282.4],[1278.72,284.71],[1294.96,283.51],[1306.53,284.53],[1319.43,280.12],[1336.39,279.22],[1345.05,285.42],[1351.96,279.41],[1363.9,275.91],[1375.35,279.17],[1396.24,283.19],[1398.95,280.89],[1412.87,277.92],[1424.19,285.43],[1441.01,284.99],[1447.16,278.68],[1466.59,277.42],[1479.23,279.34],[1487.36,281.4],[1501.97,277.72],[1507.3,280.45],[1524.95,283.75],[1537.16,277.16],[1545.07,283.58],[1555.37,278.85],[1565.67,285.4],[1579.78,277.25],[1594.54,280.28],[1603.08,276.4],[1622.62,277.7],[1626.27,279.45],[1641.28,282.98],[1649.88,282.33],[1670.64,276.18],[1676.33,279.15],[4.31,292.22],[16.26,290.05],[33.23,293.79],[44.15,289.76],[51.55,291.52],[66.8,288.93],[79.29,292.53],[87.71,288.61],[106.52,293.53],[111.83,287.82],[127.16,287.3],[137.1,287.3],[150.81,288.74],[160.71,294.21],[174.53,296.72],[182.87,293.42],[193.33,289.16],[208.36,287.55],[220.86,288.93],[237.77,296.26],[244.1,296.55],[259.45,292.39],[270.68,297.59],[281.66,296.14],[294.78,290.17],[300.12,289.03],[320.72,293.28],[333.13,295.31],[342.18,293.96],[347.22,287.73],[368.12,289.36],[372.06,297.8],[388.54,295.53],[399.55,294.09],[414.68,291.07],[422.2,292.33],[431.02,295.01],[445.42,295.41],[456.95,296.45],[468.51,292.98],[487.86,288.6],[490.52,296.49],[504.71,288.96],[522.13,295.38],[529.88,294.35],[538.86,294.22],[558.22,292.29],[571.75,291.05],[579.21,295.41],[587.09,296.39],[606.09,295.42],[616.74,297.3],[623.36,293.52],[640.59,289.42],[645.84,291.14],[662.23,289.22],[678.06,290.68],[681.34,291.28],[696.33,293.6],[708.54,287.83],[722.87,297.18],[732.14,294.97],[749.11,294.12],[757.39,295.37],[768.48,297.42],[782.09,297.25],[792.61,296.66],[803.27,292.8],[816.68,292],[832.51,290.1],[840.21,296.8],[858.26,288.03],[862.14,289.66],[881.46,287.87],[886.2,291.2],[904.05,295.61],[910.74,296.64],[923.94,290.2],[932.45,294.85],[952.89,288.28],[959.88,292.07],[970.48,293.53],[981.24,291.01],[993.61,290.94],[1010.5,289.08],[1017.63,290.33],[1037.7,293.55],[1046.2,297],[1051.43,292.1],[1063.28,291.37],[1081.26,289.17],[1092.92,294.69],[1105.45,290.68],[1120.05,295.86],[1124.89,296.03],[1143.72,294.52],[1154.45,291.32],[1161.25,292.86],[1172.97,297.61],[1186.72,292.99],[1200.16,295.9],[1213.92,294.72],[1224.49,294.92],[1233.5,294.43],[1250.28,297.17],[1254.69,296.53],[1276.42,288.62],[1279.77,297.88],[1299.63,292.36],[1308.3,297.5],[1324.46,288.55],[1332.67,289.62],[1339.89,297.38],[1353.51,294.86],[1371.81,297.16],[1374.66,290.89],[1391.74,289.09],[1402.99,294.96],[1416.29,295.3],[1425.77,294.85],[1441.81,289.65],[1447.02,294.2],[1465.45,290.81],[1472.55,287.62],[1482.24,289.95],[1495.22,288.65],[1506.86,290.59],[1527.33,295.06],[1532.47,287.41],[1542.26,288.54],[1556.32,294.58],[1570.07,294.46],[1585.5,292.86],[1598.42,294.25],[1601.2,293.22],[1615.64,293.44],[1626.41,290.56],[1643.75,289.98],[1658.79,294.98],[1660.42,288.43],[1674.06,287.42],[4.08,308.75],[16.39,308.91],[30.36,302.13],[39.87,302.09],[50.45,300.02],[69.41,299.35],[79.64,302.21],[89.13,301.71],[97.51,309.5],[109.4,307.1],[124.72,308],[135.36,300.75],[151.44,307.57],[163.27,303.93],[177.81,305.54],[181.95,304.83],[197.51,306.6],[205.12,305.67],[218.51,308.08],[232.52,299.15],[239.46,306.45],[261.86,302.88],[263.98,307.91],[277.31,309.8],[297.24,300.36],[302.27,307.92],[311.13,304.55],[324.29,308.13],[344.24,309.25],[354.3,301.19],[365.74,309.75],[377.14,306.37],[383.9,303.24],[399.45,307.66],[408.72,300.35],[426.49,299.36],[435.09,300.54],[452.84,303.68],[459.12,309.02],[470.56,303.15],[485.66,302.8],[499.39,306.78],[507.32,308.88],[522.61,308.89],[526.18,301.22],[545.6,300.2],[553.74,304.33],[567.8,307.24],[580.39,299.38],[589.56,307.7],[606.1,303.82],[618.96,304.94],[622.6,300.96],[642.77,305.28],[653.24,308.71],[660.19,307.4],[673.89,299.7],[688.15,300.83],[698.15,305.89],[709.31,308.93],[717.83,309.22],[729.3,300.58],[745.34,300.42],[756.74,302.06],[766.6,306.29],[787.23,303.14],[799.18,302.93],[803.31,303.92],[820.21,303.78],[826.85,303.72],[844.24,305.97],[857.69,303.9],[866.19,309.78],[878.16,307.78],[884.19,300.06],[898.87,305.13],[913.13,301.82],[922.77,303.6],[935.48,307.41],[954.16,309.59],[964.23,309.01],[978.12,301.94],[987.79,305.76],[995.43,307.86],[1008.91,303.46],[1023.34,302.97],[1032.78,302.34],[1040.9,303.97],[1060.77,308.91],[1071.34,302.52],[1084.55,305.67],[1097.45,301.78],[1099.74,305.44],[1114.88,306.96],[1124.67,306.12],[1144.66,308.45],[1154.96,300.43],[1168.1,304.58],[1180.98,302.7],[1186.74,301.35],[1197.95,307.98],[1212.65,308.03],[1228.29,303.29],[1237.12,309.48],[1244.6,302.86],[1256.49,300.13],[1276.51,305.31],[1284.5,306.48],[1297.2,307.08],[1305.12,301.4],[1324.39,299.15],[1327.86,302.94],[1348.12,305.92],[1349.85,304.35],[1370.7,301.2],[1382.16,299.15],[1388.28,308.86],[1404.8,309.04],[1413.06,299.52],[1422.96,304.45],[1438.27,304.85],[1447.98,308.97],[1464.74,309.67],[1474.97,304.7],[1481.84,304.02],[1494.3,301.05],[1514.66,301.13],[1523.6,299.31],[1538.08,305.06],[1543.17,306.88],[1557.88,300.89],[1574.76,299.77],[1586.31,306.51],[1596.28,306.88],[1606.51,302.81],[1613.23,307.28],[1629.74,299.35],[1639.61,306.97],[1650.5,303.88],[1664.9,305.51],[1678.97,304.94],[9.02,315.21],[14.96,320.75],[24.98,313.9],[37.53,314.15],[52.95,311.33],[61.82,320.39],[82.85,313.05],[86.4,313.49],[97.11,320.38],[111.36,312.22],[124.74,315.65],[141.86,317.28],[153.99,314.42],[159.02,313.25],[173.66,317.36],[189.88,320.39],[192.46,312.41],[211.81,312.23],[219.9,312.17],[234.72,320.71],[242.24,313.59],[256.88,315.61],[273.34,321.61],[275.23,316.11],[293.15,318.1],[306.5,319.97],[315.44,312.98],[329.59,315.58],[342.84,317.94],[354.23,317.2],[369.42,312.21],[371.26,320.7],[391.82,320.55],[404.88,318.9],[416.76,317.55],[419.08,319.25],[441.17,311.47],[450.22,311.92],[464.07,320.82],[469.62,320.26],[479.86,315.53],[493.43,319.9],[510.41,320.37],[521.76,314.86],[530.85,315.59],[542.82,316.66],[554.79,313.74],[567.22,311.08],[583.35,317.03],[591.14,319.63],[601.76,314.41],[619.1,320.06],[623.45,311.07],[634.58,315.39],[647.1,317.57],[663.37,312.92],[674.3,318.73],[682.62,317.45],[694.27,319.67],[706.78,318.72],[724.97,316.02],[738.19,313.81],[740.96,320.83],[754.82,314.23],[768.56,311.15],[777.18,314.64],[791.53,311.22],[809.94,319.42],[820.35,312.59],[828.08,318.81],[844.5,313.69],[853.15,313.28],[862.76,315.66],[881.08,318.06],[889.85,318.06],[903.45,312.31],[910.61,316.41],[927.31,315.87],[939.18,313.86],[947.63,321.17],[962.01,319.76],[973.91,316.77],[988.2,313.2],[995.03,320.27],[1012.27,320.42],[1024.7,319.55],[1027.87,312.12],[1041.31,313.09],[1054.75,320.82],[1070.95,314.31],[1083.11,315.62],[1096.41,319.69],[1107.39,319.33],[1112.66,311.39],[1130.04,312.03],[1138.66,321.53],[1151.83,320.35],[1163.31,317.55],[1175.04,313],[1191.76,320.9],[1197.4,319.55],[1209.8,318.28],[1220.73,320.65],[1233.01,313.51],[1246.21,314.57],[1261.83,317.17],[1269.2,318.93],[1287.88,314.3],[1298.87,314.88],[1306.59,316.11],[1319.66,313.78],[1332.76,315.49],[1345.92,320.44],[1358.97,321.63],[1365.64,319.91],[1373.99,311.43],[1387.97,313.91],[1406.32,318.9],[1411.67,321.29],[1426.72,313.94],[1439.95,311.85],[1447.87,316.85],[1463.83,316.38],[1474.87,311.98],[1488.28,313.57],[1500.46,317.73],[1508.07,314.37],[1525.17,320.06],[1538.16,318.17],[1542.08,314.72],[1554.41,318.78],[1565.7,321.62],[1583.56,314.58],[1593,320.3],[1605.65,313.71],[1618.47,319.2],[1625.11,320.65],[1643.23,319.61],[1653.57,317.84],[1660.41,319.66],[1680,317.52],[9.8,324.51],[17.82,325.47],[27.85,323.69],[45.18,331.04],[54.83,324.21],[68.51,329.13],[80.99,330.15],[84.23,325.82],[98.22,332.57],[115.32,332.78],[126.96,323.02],[142.39,330.06],[147.26,331.09],[157.59,327.32],[167.87,331.33],[182.6,330.93],[195.79,332.58],[204.82,329.14],[219.99,325.22],[231.64,328.99],[246.66,332.26],[256.04,325.19],[270.96,332.2],[277.59,323.07],[288.48,329.29],[300.08,330.43],[313.11,328.2],[325.54,326.92],[345.55,329.27],[355.13,333.28],[360.6,325.6],[371.76,333.68],[389.25,329.21],[397.71,328],[415.56,327.39],[424.86,327.41],[432.89,327.01],[451.4,329.89],[459.43,330.58],[469.99,326.78],[484.32,326.61],[493.88,331.99],[510.67,332.94],[520.63,331.66],[526.51,326.83],[543.38,323.98],[560.53,324.64],[567.44,330.75],[577.19,329.18],[592.25,331.23],[606.57,323.98],[611.34,333],[627.23,331.36],[638.74,332.85],[646.86,326.13],[661.21,326.26],[674.82,325.02],[684.81,329.4],[701.18,330.21],[709.55,333.63],[723.54,327.29],[736.19,330.2],[747.88,326.73],[761.41,324.91],[771.89,329.83],[785.15,328.47],[795.76,327.54],[809.97,326.86],[822.02,328.97],[829.61,332.21],[842.31,324.22],[856.9,331.27],[861.77,325.52],[878.16,331.3],[885.3,327.46],[899.87,330],[914.53,325.32],[929.63,324.44],[938.6,329.28],[948.64,326.69],[964.77,332.07],[977.58,328.65],[982.85,325.51],[992.43,324.5],[1014.08,324.14],[1018.02,323.2],[1036.31,325.14],[1044.21,330.35],[1061.28,325.72],[1072.41,323.35],[1079.15,332.55],[1087.9,332.62],[1099.55,327.67],[1117.19,327.04],[1131.26,328.3],[1138.5,326.32],[1147.73,323.1],[1168.25,323.51],[1170.89,332.32],[1193.29,324.84],[1201.87,327.36],[1210.31,333.59],[1224.54,327.51],[1241.15,331.69],[1246.86,323.35],[1260.07,325.96],[1272.7,326.1],[1281.68,323.75],[1298.88,326.94],[1309.09,332.47],[1320.44,328.78],[1330.33,328.69],[1339.11,325.82],[1358.41,328.32],[1370.78,330.41],[1380.61,332.52],[1390.92,330.43],[1399.81,327.13],[1413.97,329.31],[1423.96,330.35],[1437.75,328.35],[1447.19,330.14],[1460.41,332.64],[1479.2,323.29],[1489.87,325.91],[1493.29,326.68],[1514.49,327.68],[1525.42,330.42],[1531.21,328.97],[1544.9,328.12],[1554.58,331.95],[1566.89,325.67],[1580.5,323.4],[1596.51,328.87],[1609.79,333.28],[1619.94,328.27],[1631.28,323.01],[1641.36,324.11],[1657.98,329.45],[1666.71,328.8],[1673.33,331.23],[9.5,344.79],[14.98,343.8],[30.02,337.78],[45.53,336.21],[58.19,342.42],[68.3,337.86],[79.43,342.09],[90.86,345.21],[105.33,344.86],[117.36,336.55],[128.14,336.64],[138.61,343.16],[153.3,341.81],[160.83,340.86],[175.29,338.67],[185.76,341.11],[200.42,342.29],[211.78,343.83],[215.64,344.38],[233.91,339.53],[249.03,343.29],[253.83,339.84],[272.23,335.56],[277.4,344.43],[295.12,343.48],[299.58,342.61],[319.66,340.07],[331.01,335.99],[337.69,341.83],[353.27,344.81],[363.42,340.88],[371.5,340.21],[383.64,336.42],[397.55,342.21],[409.53,339.57],[423.95,344.61],[434.86,342.93],[447.65,338.56],[454.41,340.17],[471.19,341.25],[482.18,337.96],[497.17,339.82],[512.21,344.29],[519.59,340.48],[526.47,339.74],[540.55,336.4],[557.7,338.11],[571.52,339.82],[577.63,336.83],[588.91,343.37],[605.3,344.95],[619.43,342.77],[626.99,337.41],[641.09,339.3],[646.39,343.17],[667.56,340.69],[675.84,342.43],[689.39,338.16],[698.26,344.82],[708.5,338.32],[722.92,337.42],[732.87,338.26],[742.28,341.63],[752.88,336.07],[768.96,338.4],[780.16,340.14],[795.05,341.89],[802.62,337.24],[814.33,336.97],[827.73,335.8],[837.15,335.45],[850.51,338.69],[864.46,335.34],[877.37,341.48],[884.43,340.71],[905.27,341.1],[908.44,343.45],[930.21,339.96],[933.2,345.17],[952.3,344.33],[966.05,338.01],[973.01,337.2],[987.9,340.76],[992.53,340.67],[1010.72,343.35],[1019.88,342.59],[1029.58,341.38],[1044,343.88],[1055.13,344.99],[1071.1,343.68],[1076.28,339.82],[1094.67,338.65],[1106.14,342.94],[1112.05,341.06],[1132.74,336.88],[1141.61,342.79],[1151.62,338.62],[1159.6,343.26],[1171.27,342.55],[1190.63,343.41],[1204.15,340.14],[1216.79,344.82],[1221.42,340.4],[1235.65,343.68],[1243.58,344.31],[1258.23,343.95],[1267.58,335.09],[1280.08,341.12],[1291.53,338.72],[1303.73,345.08],[1317.86,336.7],[1330.52,338.23],[1342.43,338.53],[1359.58,341.11],[1370.69,338.27],[1377.15,344.18],[1387.32,335.96],[1397.64,335.83],[1419.3,339.68],[1428.89,343.95],[1436.31,336.14],[1448.84,339.76],[1463.06,335.18],[1477.48,343.01],[1485.24,337.56],[1494.67,344.23],[1508.34,344.82],[1519.48,335.61],[1531.56,344.86],[1541.96,343.17],[1553.81,339.76],[1568.78,339.61],[1584.79,344.32],[1590.43,336.46],[1608.97,341.3],[1622.96,338.6],[1626.65,339.18],[1643.6,335.29],[1655.99,340.74],[1670.93,338.04],[1680,336.97],[6.08,353.18],[17.17,356.86],[34.45,347.15],[45.56,347.52],[58.22,354.23],[66.28,347.8],[75.02,357.27],[84.81,350.38],[98.92,355.58],[116.29,353.2],[127.42,349],[139.02,352.1],[151.17,348.38],[156.98,348.32],[171.85,352.79],[180.62,355.37],[193.97,352.81],[210.81,357.58],[215.67,348.15],[232.29,353.03],[245.16,356.92],[254.38,354.68],[264.98,353.57],[285.46,353.9],[295.64,350.36],[300.71,347.51],[315.08,354.13],[330.81,350],[339.4,351.22],[347.73,347.57],[361.8,348.43],[373.87,356.29],[391.19,356.66],[395.41,351.76],[407.94,353.68],[421.34,350.35],[434.82,357.07],[447.2,349.06],[462.02,356.52],[466.38,354.13],[480.36,356.73],[495.76,349.72],[505.32,350.15],[514.54,349.78],[527.23,348.37],[538.21,349.19],[555.98,351.46],[562.52,348.68],[574.68,349.9],[593.86,348.75],[599.35,349.61],[610.77,351.02],[630.7,352.37],[636.59,353.93],[651.86,354.66],[657.56,355.93],[677.58,357.34],[685.64,357.24],[700.36,356.31],[715.59,347.12],[726.42,349.84],[734.75,349.19],[749.3,355.6],[758.68,350.65],[773.24,350.55],[786.8,352.03],[795.9,353.21],[808.91,353.04],[820.67,352.68],[833.09,355.92],[844.99,349.6],[854.92,346.96],[862.63,351.67],[880.8,355.7],[889.67,356.94],[904.96,357.04],[913.31,352.67],[927.97,351.16],[938.86,353.34],[952.83,351.8],[957.87,355.33],[968.57,347.6],[984.54,350.18],[993.91,347.78],[1009.65,347.35],[1015.69,346.87],[1034.64,354.08],[1045.89,356.22],[1061.6,351.7],[1071.22,351.67],[1084.99,355.21],[1097.39,351.39],[1099.3,357.34],[1116.45,356.85],[1129.56,353.53],[1136.68,349.9],[1147.69,349.69],[1161.24,353.83],[1172.38,349.36],[1187.59,355.97],[1195.39,348.43],[1212.81,349.47],[1219.8,351.77],[1239.88,351.07],[1244.98,354.83],[1256.23,348.9],[1267.57,355.55],[1283.32,353.58],[1300.75,349.46],[1302.41,354.84],[1321.47,348.36],[1336.2,349.58],[1340.24,347.21],[1353.7,349.19],[1363.27,350.27],[1382.16,349.39],[1391.47,351.48],[1403.43,348.72],[1413.1,354.01],[1423.53,357.01],[1439.25,353.95],[1453.02,354.75],[1463.91,353.1],[1475.67,355.83],[1485.36,354.17],[1501.25,355.77],[1512.37,352.89],[1523.01,357.59],[1529.67,350.99],[1550.49,356.92],[1562.7,357.43],[1574.2,346.97],[1582.9,349.05],[1591.46,348.26],[1608.6,348.89],[1620.42,347.74],[1628.63,350.12],[1640.83,353.69],[1648.6,351.57],[1666.91,351.84],[1680,348.14],[8.76,366.11],[18.7,368.38],[27.35,365.68],[44.01,365.85],[51.64,367.2],[66.38,366.64],[73.84,361.89],[86.03,366.92],[103.52,363.32],[108.33,367.18],[125.88,363.26],[133.33,361.21],[153.27,368.11],[160.05,365.93],[174.49,369.09],[186.29,367.3],[195.47,369.44],[205.96,363.23],[219.31,366.29],[234.25,366.82],[241.08,366.62],[257,369.12],[267.6,365.51],[279.2,365.79],[288.31,367.92],[303.05,363.5],[317.5,369.2],[324.5,369.21],[339.2,361.35],[354.23,369.42],[366.74,366.08],[374.25,365.99],[385.4,367.73],[400.88,360.45],[410.28,368.02],[425.42,362.24],[431.88,369.04],[452.96,366.64],[455.61,367.63],[468.28,362.52],[479.59,359.54],[499.1,360.66],[504.05,363.48],[523.33,364.98],[530.76,359.83],[542.49,359.81],[559.39,368.17],[570.08,364.59],[584.45,363.32],[594.1,365.49],[600.61,369.46],[618.52,366.06],[624.6,365.38],[637.91,363.24],[650.49,362.35],[666.87,365.02],[674.62,365.15],[683.9,368.8],[699.79,363.9],[705.43,366.07],[724.05,363.98],[735.14,362.99],[749.86,365.3],[756.81,368],[771.24,363.75],[780.69,360.94],[790.24,365.55],[802.24,365.04],[813.58,367.23],[834.51,361.1],[842.19,359.08],[849.47,360.95],[868.37,367.98],[880.4,369.05],[894.77,360.03],[896.39,365.65],[910.17,368],[926.14,365.95],[938.72,366.96],[947.41,360.34],[963.03,358.95],[973.15,358.94],[983.61,362.9],[994.65,363.95],[1004.1,366.16],[1017.47,362.24],[1035.49,364.04],[1048.57,365.37],[1057.01,366.19],[1068.24,365.34],[1079.82,362.95],[1088.36,363.47],[1099.12,367.02],[1121.5,368.96],[1131.13,362.02],[1142.06,363.4],[1150.1,360.28],[1168.01,362.97],[1175.83,363.73],[1187.22,362.93],[1198.12,366.07],[1207.06,359.16],[1219.08,360.69],[1239.06,363.62],[1246.6,362.95],[1256.75,366.75],[1268.24,364.37],[1287.85,368.42],[1298.76,359.96],[1303.35,364.37],[1324.67,368.86],[1327.84,363.51],[1344.05,362.88],[1354.3,361.79],[1368.99,368.34],[1380.81,360.66],[1393.1,359.06],[1398.71,362.49],[1412.67,369.2],[1427.48,366.75],[1435.77,365.75],[1447.25,366.03],[1460.12,368.27],[1469.31,362.57],[1488.66,359],[1501.48,361.13],[1508.45,362.23],[1520.49,367.39],[1530.56,368.28],[1546.55,361.96],[1560.53,359.07],[1573.66,363.94],[1581.9,366.37],[1598.84,369.26],[1609.74,366.85],[1618.66,361.8],[1624.68,358.86],[1639.49,369.14],[1655.34,366.26],[1670.31,368.49],[1678.02,368.24],[0.74,375.94],[18.05,379.55],[28.82,377.47],[42.09,380.64],[50.84,375.46],[65.01,378.8],[78.16,377.46],[91.76,372.81],[101.16,374.35],[113.84,371.49],[122.18,375.57],[139.87,377.62],[148.96,377.49],[166.46,380.94],[178.44,381.47],[182.98,370.94],[200.55,373.63],[204.76,376.32],[221.69,372.66],[233.98,375.84],[247.03,371.39],[258.82,381.04],[272.45,376.81],[278.27,378.21],[296.65,373.06],[301.67,373.75],[311.05,373.08],[330.04,379.3],[342.81,374.84],[347.67,379.3],[360.16,375.42],[372.41,381.29],[390.3,381.16],[395.59,371.42],[411.82,376.84],[420.88,371.94],[439.66,379.13],[451.22,372.7],[463.05,376.29],[470.27,379.02],[483.18,377.71],[499.58,376.21],[503.66,375.03],[518.04,374.25],[526.75,381.33],[546.59,371.08],[555.57,378.93],[567.59,376.16],[577.26,379.26],[596.23,375.03],[599.85,374.1],[619.18,380.31],[631.04,372.11],[637.77,376.9],[645.72,371.52],[660.43,371.42],[676.33,380.38],[684.41,371.81],[700.58,376.56],[709.94,373.45],[721.34,380.35],[736.3,370.94],[746.25,373.51],[758.31,373.28],[771.91,374.1],[785.66,375.32],[797.46,372.51],[802.85,374.08],[814.12,381.3],[826.13,376.46],[844.22,380],[852.36,377.18],[866.61,375.76],[873.05,379.35],[890.49,373.91],[906.61,371.21],[911.06,372.3],[928.11,374.32],[935.97,373.13],[944.84,378.69],[958.54,378.1],[968.99,373.14],[987.03,372.56],[995.28,377.55],[1010.22,374.29],[1018.61,374.69],[1029.67,371.64],[1045.23,371.92],[1057.5,377.14],[1069.75,380.03],[1085.78,377.15],[1094.82,380],[1099.96,374.55],[1119.56,373.41],[1128.33,377.13],[1145.63,379.51],[1152.49,376.39],[1166.3,372.7],[1175.99,373.82],[1187.78,381.3],[1204.26,377.38],[1214.68,373.27],[1225.64,376.52],[1237.89,377.07],[1252.89,371.47],[1261.9,374.08],[1275.04,380.52],[1281.68,372.27],[1291.11,380.11],[1309.03,380.08],[1316.01,380.5],[1330.21,373.47],[1348.15,373.28],[1350,381.08],[1369.73,372.65],[1378.67,372.3],[1388.33,375.51],[1406.2,377.85],[1418.62,377.48],[1424.65,375.52],[1438.92,373.75],[1447.37,371.7],[1467.14,373.87],[1478.26,375],[1488.28,375.19],[1495.92,380.83],[1512.89,371.1],[1523.56,379.82],[1534.68,379.18],[1551.2,373.84],[1562.18,375.93],[1565.01,372.93],[1583.55,378.75],[1593.42,379.04],[1605.08,380.38],[1616.59,374.93],[1631.13,372.86],[1646.84,381.15],[1652.04,371.67],[1668.45,376.53],[1679.27,380.77],[3.14,392.79],[15.23,393.38],[30.45,388.73],[39.83,383.61],[51.85,393.2],[64.2,388.18],[79.74,383.3],[88.9,384.88],[97.28,386.42],[113.93,384.69],[122.34,387.64],[138.02,388.12],[146.02,385.8],[159.78,391.1],[168.61,385.91],[181.9,390.14],[197.02,385.2],[211.82,393.22],[219.09,385.17],[234.62,387.23],[248,385.48],[252.69,383.34],[264.78,392.35],[279.62,392.05],[289.18,385.17],[308,390.65],[319.76,391.92],[327.44,390.09],[344.62,389.94],[349.72,385.04],[366.22,388.16],[379.66,386.46],[382.92,388.63],[396.58,392.19],[412.46,392.43],[422.63,384.37],[437.66,390.84],[448.13,384.43],[463.77,384.56],[470.8,387.6],[481.55,384.05],[493.86,383.87],[508.02,385.26],[514.02,392.54],[533.25,383.54],[541.05,390.54],[555.79,390.44],[565.81,383.65],[580.48,392.01],[586.04,387.02],[607.23,386.9],[611.9,389.05],[624.54,390.69],[643.94,385.1],[645.69,391.56],[665.08,384.58],[677.12,382.69],[683.13,388.72],[703.59,391.18],[713.49,388.95],[722.73,382.88],[736.34,385.3],[743.48,388.3],[758.78,388.67],[767.55,386.8],[782.66,387.43],[795.77,387.91],[810.59,384.71],[818.69,389.64],[829.21,385.11],[841.99,392.46],[855.95,387.8],[866.52,383.11],[882.34,387.61],[885.4,385.57],[900.03,386.62],[915.47,388.6],[922.09,392.98],[937.02,389.96],[952.2,384.97],[962.25,385.55],[971.82,386.77],[983.95,391.91],[996.41,386.67],[1008.37,387.4],[1016.44,390.12],[1033.67,393.1],[1040.88,390.09],[1060.85,386.4],[1069.68,391.03],[1083.88,391.22],[1088.01,388.04],[1099.14,388.73],[1113.4,391.84],[1130.2,386.39],[1140.78,389.95],[1154.33,386.69],[1159.75,382.75],[1171.97,391.26],[1186.84,388.07],[1199.38,392.8],[1212.22,393.41],[1219.58,387.66],[1234.66,389.9],[1250.85,386.16],[1258.01,387.02],[1275.11,387.92],[1285.52,390.17],[1293.42,388.98],[1308.22,382.78],[1321.98,383.63],[1331.89,383.3],[1343.17,385.6],[1357.54,384.02],[1370.05,391.33],[1380.65,384.41],[1389.25,389.57],[1404.41,392.43],[1413.23,392.99],[1426.39,383.2],[1441.75,388.54],[1453.9,385.45],[1458.76,382.9],[1476.67,389.09],[1481.39,389.28],[1493.66,383.89],[1505.58,391.71],[1518.44,384.95],[1529.81,392.93],[1550.69,390.92],[1560.22,392.14],[1566.57,386.85],[1585.76,386.52],[1593.41,387.59],[1611.23,390.38],[1616.21,388.75],[1632.68,384.18],[1646.93,383.82],[1648.87,385.15],[1663.31,388.96],[1673.74,387.37],[10.16,400.79],[20.78,402.55],[32.27,402.18],[44.98,399.48],[52.53,404.32],[68.75,394.7],[78.05,401.87],[85.56,395.4],[101.83,402.34],[113.5,404.05],[120.12,398.91],[134.17,398.81],[152.44,401.03],[158.76,396.08],[178.22,404.29],[179.93,398.11],[192.02,401.63],[211.07,397.9],[224.42,396.26],[237.32,403.63],[240.77,400.4],[257.85,399.47],[264.48,395.05],[277.8,402.2],[288.16,398.04],[303.43,403.52],[317.49,403.37],[327.72,397.03],[335.73,399.12],[348.74,395.25],[365.72,403.35],[380.89,398.03],[389.3,402.78],[397.53,397.88],[414.08,402.7],[420.12,403.46],[431.28,395.79],[448.34,400.11],[460.49,397.63],[476.07,400.9],[484.93,400.84],[498.24,402.9],[508.29,402.35],[520.74,402.99],[536.44,402.26],[546.39,395.52],[552.28,402.44],[571.64,399.87],[574.49,403.25],[585.88,395.2],[597.65,405.28],[612.76,395.02],[623.23,396.13],[633.89,394.97],[653.41,402.81],[661.7,404.35],[674.54,400.38],[686.61,399.08],[702.35,395.05],[707.94,403.76],[722.36,396.9],[731.22,404.3],[746.65,404.76],[762.69,397.29],[772.94,396.97],[777.09,398.48],[796.06,396.4],[805.42,396.2],[822.45,402.77],[831.23,401.24],[840.96,395.06],[849.86,395.19],[869.63,405.1],[873.25,396.75],[891.36,404.65],[898.92,403.4],[911.49,401.48],[926.13,395],[938.2,395.62],[954.1,405.08],[958.93,397],[967.9,400.18],[983.19,397.78],[1001.52,404.61],[1009.51,401.27],[1023.94,396.11],[1038.18,400.74],[1043,400.88],[1059.56,401.24],[1063.51,396.52],[1081.79,399.46],[1087.73,403.99],[1105.97,396.99],[1114.53,397.18],[1123.14,401.52],[1142.3,397.72],[1155.26,397.2],[1167.66,401.34],[1170.87,400.45],[1182.96,396.7],[1200.13,400.15],[1215.76,399.93],[1221.65,400.12],[1233.92,400.93],[1245.15,395.41],[1254.48,395.33],[1267.77,398.59],[1283.96,401.77],[1296.98,403.01],[1311.41,396.39],[1319.39,405.21],[1328.62,397.08],[1345.04,398.18],[1357.46,403.19],[1369.04,402.22],[1376.38,397.98],[1392.49,396.91],[1404.93,401.38],[1412.63,395.22],[1430.29,395.09],[1434.27,398.98],[1452.08,396.24],[1459.8,401.57],[1477.97,399.74],[1489.14,399.1],[1494.82,397.8],[1512.56,395.46],[1520.46,398.62],[1536.86,402.86],[1547.96,404.28],[1558.48,399.52],[1575.45,404.22],[1580.35,404.38],[1592.08,398.31],[1606.59,399.91],[1616.57,400.5],[1626.91,401.31],[1644.68,395.48],[1656.7,401.35],[1661.14,400.11],[1679.83,397.14],[9.25,417.18],[21.58,407.69],[28.47,409.65],[37.8,415.25],[49.92,410.49],[63.89,415.26],[82.45,412.02],[88.89,412.59],[105.62,410.55],[109.94,408.8],[129.75,408.1],[137.96,413.16],[151.83,415.65],[165.24,415.86],[175.26,417.19],[187.22,413.55],[194.67,408.96],[207.71,409.46],[217.05,413.57],[228,408.55],[239.47,414.6],[255.87,410.76],[266.12,415.79],[277.79,416.78],[287.95,412.79],[299.33,412.7],[317.67,413.93],[325.98,409.45],[344.04,412.58],[347.72,410.76],[367.61,416.29],[377.54,410.79],[385.79,414.41],[398.94,412.11],[408.86,413.16],[419.96,408.89],[432.36,407.39],[447.03,406.67],[455.82,416.15],[475.68,410.26],[485.58,412.12],[497.64,409.66],[512.61,413.93],[521.52,417.3],[528.16,410.39],[545.49,415.44],[553.52,413.19],[565.24,415.15],[582.42,410.77],[593.11,407.81],[598.65,416.8],[614.43,416.81],[629.52,416.86],[640.58,415.59],[650.74,415.94],[667.09,410.93],[675.4,409.93],[685.55,411.82],[693.78,412.33],[715.73,411.36],[721.83,415.63],[738.2,416.2],[750.91,406.68],[762.89,410.33],[771.9,409.12],[780.75,413.52],[798.86,416.68],[802.05,414.3],[814.51,415.96],[828.8,413.85],[839.14,406.71],[851.35,409.61],[863.43,409.78],[872.91,408.82],[890.81,414.37],[898.83,409.28],[911.85,412.48],[924.73,417.21],[937.94,416.67],[953.83,414.1],[957.97,416.17],[977.43,409.82],[988.89,407.79],[991.63,412.32],[1014.07,410.32],[1018.3,411.53],[1031.13,416.36],[1040.15,415.25],[1059.82,408.94],[1066.39,406.96],[1077.83,414.01],[1093.72,416.42],[1103.44,416.15],[1111.43,409.02],[1133.01,412.93],[1136.39,414.58],[1151.93,407.18],[1161.13,410.84],[1175.28,414.11],[1184.39,414.25],[1203.5,415.13],[1207.13,410.72],[1224.56,415.25],[1231.69,408.93],[1248.21,411.29],[1257.72,410.57],[1274.57,408.93],[1283.54,410.32],[1291.87,415.32],[1306.99,409.94],[1315.57,411.31],[1334.52,407.44],[1344.4,415.33],[1352.45,411.93],[1365.59,416.52],[1379.12,406.9],[1389.48,412.4],[1403.41,407.55],[1418.2,416.49],[1429.49,408.15],[1440.67,409.82],[1445.76,413.86],[1463.85,409.19],[1477.75,408.1],[1488,415.5],[1497.65,415.07],[1515.63,412.59],[1519.17,411.7],[1532.31,408.77],[1543.32,407.37],[1563.11,416.7],[1568.12,410.14],[1586.58,410.53],[1591.66,410.91],[1602.36,407.7],[1618.39,414.56],[1627.35,408.22],[1640.59,417.24],[1653.42,414.14],[1668.61,416.36],[1677,407.54],[3.15,427.91],[19.1,421.38],[25.12,423.75],[44.74,418.98],[58.32,419.29],[68.86,426],[77.08,419.71],[87.77,426.39],[102.84,422.08],[114.41,428.58],[127.33,426.72],[136.45,427.29],[149.65,429.09],[164.48,421.33],[169.54,424.77],[186.51,423.21],[191.79,424.82],[206.72,422.44],[217.63,427.2],[233.69,419.25],[249.09,423.05],[259.44,423.21],[270.49,422.74],[276.04,427.31],[295.11,425.36],[309.1,418.73],[317.3,424.32],[329.82,423.38],[338.05,425.25],[357.14,427.38],[361.73,421.27],[379.25,424.32],[385.84,426.71],[405.36,423.49],[408.65,425.71],[419.68,429.17],[433.39,425.33],[445.37,422.72],[459.95,426.2],[474.47,427.58],[485.02,425.49],[499.89,425.36],[510.09,419.28],[519.76,424.95],[533.57,420.27],[543.65,424.65],[560.44,418.52],[562.49,427.94],[575.3,423.18],[592.17,423.42],[601.49,418.65],[619.28,423.47],[628.65,423.53],[640.11,427.02],[649.19,424.01],[660.83,421.67],[673.38,426.32],[689.73,424.41],[697.45,423.09],[707.52,424.76],[726.86,428.73],[735.49,428.96],[748,427.85],[762.31,419.78],[774.07,421.83],[782.71,422.82],[794.07,425.74],[802.4,423.34],[821.09,422.32],[825.58,425.68],[837.89,425.6],[857.24,421.7],[867.77,424.49],[882.46,425.33],[893.37,425.43],[897.11,422.55],[910.75,425.77],[928.45,427.98],[939.75,425.36],[944.96,423.34],[956.56,418.87],[970.58,424.67],[988.35,420.74],[999.49,428.9],[1005.61,423.76],[1018.21,419.31],[1037.96,423.14],[1049.52,429.13],[1058.67,423.24],[1063.81,425.92],[1075.37,427.73],[1096.6,418.96],[1099.13,424.94],[1115.93,423.56],[1131.48,428.61],[1135.3,421.72],[1154.27,420.37],[1160.66,424.2],[1180.37,422.37],[1185.55,421.48],[1201,423.6],[1207.1,425.83],[1224.31,418.6],[1230.72,424.94],[1252.54,423.89],[1258.01,418.51],[1270.46,424.53],[1281.35,421.85],[1296.28,427.66],[1304.44,418.63],[1317.02,428.25],[1330.49,420.76],[1340.75,421.95],[1355.31,427.92],[1369.88,427.07],[1383.1,424.28],[1392.54,427.6],[1400.58,425.39],[1416.14,423.84],[1423.06,424.28],[1436.87,421.56],[1453.38,419.57],[1463.05,426.14],[1471.96,428.46],[1483.66,425.91],[1501.73,423.53],[1513.98,426.76],[1525.63,423.06],[1537.64,419.22],[1550.53,426.86],[1562.5,424.57],[1569.62,428.75],[1582.79,425.13],[1595.27,420.17],[1609.12,428.16],[1618.61,421.65],[1631.31,429.19],[1638.36,423.2],[1658.08,426.86],[1660.94,422.46],[1674.35,420.93],[5.23,435.05],[21.19,438.83],[34.51,441],[44.36,433.18],[56.62,431.1],[66.23,430.82],[75.75,438.73],[92.3,436.02],[102.87,436.06],[113.61,436.47],[123.57,434.73],[138.99,434.57],[154.16,434.41],[158.24,436.03],[171.52,433.25],[190.28,432.24],[192.37,430.87],[204.3,438.98],[221.38,438.19],[235.99,436.72],[242.84,437.05],[256.38,433.02],[266.26,437.22],[280.65,435.13],[297.16,438.01],[299.48,431.19],[319.17,440.92],[333.07,430.86],[344.42,431.89],[353.79,432.88],[362.06,440.93],[379.6,432.95],[385.52,432.07],[403.94,438.06],[409.78,439.78],[425.14,430.56],[441.13,432.42],[449.1,439.15],[464.57,434.71],[474.42,440.49],[487.94,438.72],[494.62,439.12],[503.44,434.24],[514.58,440.33],[536.03,436.94],[541.6,435.93],[555.09,431.53],[562.73,431.49],[582.97,437.47],[590.26,438.77],[600.83,437.88],[615.71,438.56],[630.64,435.05],[634.4,430.48],[650.66,432.31],[661.82,440.44],[670.23,435.71],[688.1,437.56],[697.62,434.91],[711.66,440.81],[723.35,433.82],[734.73,432.15],[743.58,437.47],[762.56,430.66],[771.72,432.31],[779.17,436.32],[792.8,433.44],[811.27,431.94],[821.03,431.65],[832.76,436.74],[846.87,439.22],[853.39,439.8],[866,439.41],[881.33,437.37],[894.05,439.46],[905.36,431.03],[909.64,433.96],[923.13,437.17],[935.97,441.09],[952.12,431.2],[962.81,430.59],[972.6,439.07],[985.49,440.33],[992.34,430.97],[1003.6,430.92],[1019.05,435.61],[1032.95,431.4],[1049.85,440.94],[1059.35,437.75],[1068.9,432.92],[1076.59,434.94],[1091.85,431.91],[1099.2,433.12],[1115.5,431.82],[1124.4,430.78],[1137.35,434.73],[1147,437.74],[1161.71,440.25],[1176.56,440.8],[1191.67,436.46],[1198.38,436.75],[1208.67,432.4],[1227.06,431.53],[1240.93,440.34],[1245.01,436.76],[1258.12,434.93],[1267.5,434.2],[1284.31,437.77],[1297.1,439.08],[1309.83,434.99],[1317.06,440.82],[1330.69,435.34],[1344.72,438.63],[1354.53,440.98],[1368.67,440.63],[1383.62,439.63],[1394.97,430.81],[1408.23,434.81],[1411.17,435.56],[1429.65,433.08],[1440.73,438.9],[1454.61,434.12],[1466.95,439.62],[1474.69,436.01],[1488.32,431.08],[1497.79,436.26],[1506.57,434.25],[1520.37,439.64],[1538.54,440.01],[1542.79,436.55],[1556.81,439.12],[1569,440.29],[1577.15,437.63],[1596.43,432.18],[1608.35,440.03],[1618.51,432.72],[1634.18,436.41],[1636.55,439.44],[1653.82,433.44],[1660.44,430.94],[1675.96,436.13],[7.64,442.64],[16.99,447.6],[28.86,444.17],[46.17,450.52],[49.39,445.44],[63.14,449.41],[78.76,443.34],[86.64,444.09],[100.71,446.84],[108.72,447.51],[126.82,443.8],[141.28,444.72],[148.33,445.7],[159.93,449.71],[168.6,443.75],[190.37,447.56],[192.66,451.38],[210.47,452.1],[224.4,448.12],[228.03,447.6],[248.88,450.5],[260.51,444.48],[270.08,449.18],[276.47,445.95],[288.68,443.04],[306.92,446.62],[317.25,447.9],[325.42,452.62],[341.94,444.29],[355.54,445.73],[359.84,444.63],[378.94,442.5],[392.43,443.87],[398.25,446.9],[416.2,446.65],[427.17,447.01],[432.39,442.5],[451.79,448.53],[460.79,450.53],[467.67,450.9],[487.07,446.75],[497.68,443.78],[511.97,447.43],[517.73,445.93],[528.39,445.06],[538.53,448.39],[553.15,452.6],[568.03,444.82],[577.39,444.54],[594.47,448.55],[599.44,451.41],[618.38,446.73],[625.99,448.89],[638.71,444.68],[651.96,442.83],[667.12,443.77],[671.87,444.18],[690.77,451.67],[702.99,442.67],[705.94,447.44],[719.91,444.53],[730.56,444.4],[741.67,443.33],[754.33,449.79],[772.48,448.44],[780.16,450.53],[794.38,449.93],[805.76,442.84],[814.73,446.29],[828.2,445.33],[844.15,442.65],[854.2,450.33],[863.95,448.96],[882.55,444.76],[887.72,445.1],[906.42,446.96],[908.1,447.47],[923.63,452.4],[939.49,452.78],[950.59,443],[962.98,448.1],[975.8,442.79],[980.06,449.24],[1000.8,451.24],[1009.82,451.73],[1022.63,451.7],[1037.61,451.25],[1039.55,445.77],[1058.55,451.27],[1068.47,443.32],[1084.18,448.36],[1090.21,446.39],[1100.37,446.53],[1115.46,450.08],[1127.71,446.99],[1137.43,445.9],[1154.47,447.86],[1160.46,452.1],[1172.14,452.58],[1190.32,445.32],[1194.68,449.79],[1209.62,446.95],[1226.5,444.91],[1235.2,450.94],[1246.93,452.4],[1263.6,447.47],[1270.69,453.04],[1278.25,446.78],[1297.29,445.13],[1307.84,444.76],[1318.7,448.31],[1329.3,449.5],[1342.01,451.84],[1356.12,451.52],[1365.32,446.38],[1383.21,449.54],[1388.05,451.08],[1402.04,443.78],[1410.27,444.86],[1422.37,445.8],[1443.97,448.59],[1448.26,452.44],[1461.82,442.85],[1479.29,447.76],[1491.34,445.37],[1497.96,452.57],[1511.59,448.56],[1524.44,449.41],[1535.91,447.96],[1546.44,450.64],[1562.57,450.96],[1567.26,443.15],[1583.05,448.34],[1593.88,451.61],[1609.14,446.25],[1612.74,451.9],[1629.52,443.34],[1647.07,446.74],[1649.97,451],[1660.68,447.46],[1680,444.38],[7.4,462],[15.41,458.73],[26.04,461.04],[45.1,462.22],[49.32,464.46],[64.13,463.88],[76.58,464.93],[89.09,460.58],[104.08,455.77],[111.09,457.11],[125.82,461.37],[142.36,460.29],[150.25,457.35],[157.83,461.77],[168.2,463.56],[187.4,463.43],[201.92,462.39],[210.6,457.1],[221.75,456.14],[229.57,458.7],[240.39,462.34],[254.42,463.86],[271.27,464.33],[277.17,457.78],[294.44,457.55],[301.37,461.07],[312.16,459.81],[332.92,462.03],[343.93,456.58],[347.36,459.48],[366.37,455.19],[377.26,459.63],[391.85,462.38],[401.73,462.15],[415.58,456.13],[419.99,455.81],[435.27,456.5],[452.66,464.78],[457.8,463.25],[467.23,457.61],[483.13,456.22],[492.17,461.76],[511.92,462.16],[519.52,456.62],[535.55,462.42],[546.37,462.38],[557.23,456.78],[562.46,458.47],[583.14,462.46],[587.41,454.86],[601.8,457.18],[614.22,463.92],[627.49,461.82],[634.57,458.63],[653.9,457.17],[661.35,460.5],[669.97,457.19],[690.74,454.79],[696.05,460.71],[714.47,457.05],[725.3,454.95],[731.39,456.87],[746.63,455.06],[755.95,459.69],[772.12,454.86],[777.85,459.67],[789.44,462.49],[808.22,458.27],[816.49,460.51],[831.03,457.96],[842.71,463.85],[854.27,460.08],[867.12,462.95],[875.88,455.65],[893.79,464.97],[897.54,462.26],[917.32,455.74],[924.78,460.46],[942.21,459.8],[953.75,455.6],[957.03,461.11],[971.34,458.31],[989.21,460.21],[997.33,454.35],[1013.01,456.41],[1017.89,462.49],[1028.18,459.61],[1048.94,458.19],[1051.44,460.32],[1071.73,461.14],[1082.62,461.76],[1091.37,464.98],[1100.12,455.4],[1113.28,462.13],[1124.07,460.11],[1139.17,465],[1149.3,462.98],[1164.88,456.71],[1174.28,463.47],[1191.29,454.92],[1194.69,462.1],[1208.97,458.84],[1219.2,464.03],[1231.05,461.95],[1249.44,455.21],[1261.24,458.8],[1276.35,462.23],[1283.12,461.36],[1295.82,455.71],[1302.13,464.5],[1323.85,458.44],[1327.8,460.73],[1339.98,457.97],[1357.78,462.04],[1368.26,463.78],[1381.24,457.71],[1388.91,460.46],[1407.32,459.74],[1413.57,456.74],[1423.01,463.37],[1435.64,460.43],[1453.14,457.44],[1457.56,458.06],[1473.94,459.09],[1488.05,463.09],[1494.06,464.98],[1512.85,462.37],[1520.38,455.37],[1532.59,457.39],[1542.69,464.61],[1557.04,458.48],[1569.62,464.61],[1587.38,456.76],[1594.85,457.46],[1605.82,460],[1622.17,455.82],[1630.87,462.98],[1645.02,458.81],[1652.81,457.44],[1666.52,456.37],[1673.22,457.85],[0.91,476.7],[14.31,471.22],[28.1,472.74],[42.14,467.53],[57.73,469.32],[63.17,475.22],[81.28,466.86],[84.31,476.68],[98.69,475.44],[111.86,469.07],[127.02,476.81],[133.47,476.33],[151.24,468.55],[165.19,474.17],[170.21,470.13],[182.9,473.73],[200.84,469.36],[209.78,476.84],[217.57,471.11],[237.36,467.16],[247.3,471.34],[251.53,471.26],[264.7,476.34],[283.75,471.69],[296.96,470.19],[307.34,468.57],[316.35,466.65],[327.53,468.2],[339.4,475.82],[351.79,471.44],[361.39,472.79],[380.13,472.84],[390.24,469.55],[396.28,472.91],[406.68,476.84],[422.07,467.13],[435.66,467.39],[442.6,468.81],[460.52,470.56],[476.7,466.69],[487.61,468.68],[492.68,469.21],[512.03,471.39],[522.66,472.74],[533.76,466.63],[547.86,466.81],[556.57,471.41],[562.4,474.19],[579.16,468.6],[589.44,474.87],[597.71,471.54],[617.91,470.09],[627.34,467.03],[639.25,468.79],[653.98,467.8],[663.18,474.27],[675.26,469.82],[686.81,466.48],[702.75,468.53],[705.75,474.3],[718.19,473.41],[735.53,469.82],[743.67,467.82],[760.79,470.53],[765.55,468.84],[780.65,475.92],[794.94,475.54],[803.68,476.45],[820.51,473.35],[832.85,476.95],[846.64,476.53],[852.28,476.78],[865.41,472.29],[878.74,473.97],[886.91,470.63],[896.35,475.99],[912.22,476.7],[930.63,476.3],[940.92,466.39],[953.27,469.75],[958.49,474.95],[978.45,472.41],[986.37,471.75],[997.48,474.6],[1006.89,468],[1018.04,471.52],[1034.89,476.06],[1040.72,475.83],[1056.09,475.88],[1064.04,468.09],[1076.43,467.61],[1092.85,475.52],[1104.67,471.92],[1115.41,471.83],[1129.78,467.41],[1143.98,472.41],[1149.5,476.3],[1163.05,469.21],[1177.67,471.22],[1189.33,469.57],[1198.42,466.46],[1211.19,472.96],[1226.38,468.33],[1240.38,476.28],[1243.95,469.31],[1260.81,471.53],[1273.48,470.7],[1279.08,474.03],[1292.68,468.36],[1310.97,475.63],[1324.06,468.1],[1326.13,469.67],[1345.64,468.51],[1354.06,471.36],[1361.76,467.84],[1376.81,470.96],[1387.61,472.05],[1407.26,475.98],[1409.91,468.21],[1424.97,468.84],[1436.81,467.66],[1453.83,471.64],[1464.66,470.37],[1472.69,467.87],[1491.62,474.6],[1500.95,475.3],[1514.06,472.26],[1520.8,471.26],[1534.28,476],[1544.83,472.17],[1558.44,473.94],[1571.59,468.55],[1581.5,470.23],[1592,474.94],[1606.83,468.95],[1623.21,476.09],[1634.99,472.96],[1637.63,471.86],[1656.79,474.64],[1660.6,467.69],[1674.64,469.68],[10.29,481.95],[14.14,488.56],[25.37,483],[39.15,482.77],[53.23,483.65],[69.66,483.5],[75.83,481.83],[90.79,480.51],[99.56,478.44],[116.1,481.37],[121.82,480.36],[133.69,478.87],[149.58,482.07],[159.55,480.24],[172.75,488.6],[183.35,480.67],[198.85,481.97],[209.4,487.92],[216.9,485.05],[234.84,487.59],[242.83,488.18],[251.79,482.96],[267.33,478.2],[278.66,483.45],[289.97,485.61],[302.99,481.08],[313.8,484.84],[325.84,478.74],[335.21,488.47],[353.1,484.05],[361.12,478.59],[377.6,482.86],[388.59,481.19],[402.74,486.82],[410.93,483.36],[421.77,480.3],[437.86,479.45],[448.91,480.63],[456.08,483.55],[473.16,481.24],[485.56,479.17],[491.73,479.94],[506.68,479.14],[517.55,487.4],[534.59,485.25],[540.25,482.63],[549.85,483.09],[572.33,479.87],[578.22,488.52],[590.97,480.98],[605.17,486.8],[615.42,487.59],[628.24,484.53],[640.03,479.46],[651.41,479.29],[662.67,485.96],[670.33,481.22],[687.87,481.05],[699.51,486.19],[713.01,487.82],[719.66,487.79],[739.16,486.37],[751.32,488.36],[753.78,481.79],[768.17,487.55],[780.88,487.46],[793.63,488.85],[806.76,488.03],[818.68,482.24],[831.17,478.71],[843.03,484.13],[849.77,483.74],[864.32,484.12],[877.56,480.05],[889.45,484.28],[902.18,479.95],[914.97,479.12],[923.71,484.39],[937.95,484.19],[949,484.55],[965.76,487.09],[972.93,479.72],[986.73,480.24],[996.5,479.56],[1007.39,483.48],[1025.7,487.72],[1030.64,488.07],[1040.63,482.29],[1061.77,485.91],[1070.57,482.53],[1080.9,485.95],[1097.5,485.08],[1107.44,481.4],[1119.66,478.23],[1129.54,481.42],[1140.75,482.63],[1151.29,486],[1164.15,481.5],[1176.98,478.89],[1189.36,480.87],[1197.7,482.9],[1214.88,482.75],[1220.69,479.29],[1237.98,482.01],[1242.74,485.77],[1257.48,481],[1271.56,482.48],[1284.35,480.07],[1294.4,484.04],[1307.37,479.48],[1319.72,484.55],[1331.78,487.6],[1343.82,483.19],[1352.85,484.92],[1367.63,487.31],[1379.49,481.55],[1393.1,480.31],[1407.97,484.9],[1418.39,487.9],[1430.19,488.31],[1435.53,479.16],[1454.08,487.52],[1466.17,483.19],[1475.73,481.56],[1485.74,481.08],[1502.27,479.26],[1512.4,479.4],[1518.49,485.52],[1533.87,485.79],[1545.22,486.6],[1557.75,485.17],[1566.98,481.94],[1578.32,487.66],[1588.85,488.74],[1605.29,481.27],[1619.97,484.22],[1627.18,480.67],[1636.85,478.53],[1650.03,484.05],[1663.7,488.04],[1674.04,482.81],[10.02,492.46],[20.72,494.37],[32.3,493.86],[46.16,495.25],[50.79,490.91],[65.5,496.51],[81.26,499.84],[93.25,490.5],[97.48,499.26],[109.6,499.2],[126.15,499.7],[136.85,498.43],[145.33,499.09],[157.96,491.34],[168.01,496.34],[187.43,492.23],[198.24,491.38],[213.89,499.85],[218.82,493.15],[234.68,491.73],[248.58,496.32],[255.25,496.19],[272.24,497.73],[281.35,495],[289.9,493.6],[308.15,491.38],[321.47,490.39],[326.65,494.94],[343.43,495.96],[356.89,500.25],[360.85,492.19],[371.72,495.45],[391.97,490.62],[405.05,500.35],[412.01,500.48],[428.07,492.27],[440.7,498.27],[442.77,500.58],[462.78,491.19],[476.31,496.66],[487.8,500.32],[495.92,490.33],[512.42,494.52],[516.91,497.25],[533.13,490.9],[544.45,496.76],[556.31,491.68],[567.09,497.29],[579.41,491.82],[595.04,495.04],[603.29,493.02],[617.59,497.52],[622.15,495.51],[638.19,495.57],[650.13,498.93],[666.15,499.05],[672.36,493.88],[685.87,497.14],[693.73,492.23],[714.46,497.02],[721.16,499.12],[735.44,491.93],[741.06,497.83],[762.9,494.3],[773.32,494.52],[783.33,492.58],[798.62,497.2],[809.61,498.48],[817.05,494.07],[825.69,491.89],[843.89,493.71],[858.43,497.84],[870.13,495.73],[872.54,490.35],[889.49,492.07],[903.83,494.53],[916.41,497.05],[928.24,491.46],[940.54,500.1],[953.14,497.33],[956.93,491.71],[973.47,492.95],[987.47,497.21],[992.52,495.34],[1006.54,493.62],[1017.02,495.19],[1036.69,497.89],[1041.01,498.43],[1054.36,500.18],[1071.13,490.52],[1079.99,494.97],[1094.98,494.53],[1107.45,499.48],[1120.54,496.05],[1123.16,491.67],[1137.32,498.46],[1150.78,493.09],[1159.02,490.87],[1173.59,500.09],[1185.82,498.97],[1201.75,492.03],[1212.44,492.92],[1224.65,497.61],[1231.16,500.65],[1246.78,494.74],[1257.38,498.56],[1270.01,492.25],[1284.67,490.93],[1294.66,490.98],[1311,495.68],[1316.56,493.72],[1330.88,498.09],[1344.23,499.65],[1350.79,497.05],[1364.19,493.63],[1380.72,500.69],[1395.04,500.12],[1399.77,494.85],[1415.82,493.18],[1426.29,495.99],[1438.49,493.09],[1445.71,494.9],[1464.11,498.73],[1471.62,494.94],[1487.66,499.72],[1495.86,497.03],[1507.01,495.7],[1517.66,499.83],[1530.07,498.08],[1550.26,496.11],[1555.87,496.97],[1575.48,496.83],[1578.85,496.77],[1595.13,492.23],[1610.66,494.04],[1618.07,495.8],[1632.77,500.02],[1644.61,497.45],[1648.49,492.64],[1663.95,496.06],[1678.5,492.64],[5.05,509.09],[20.92,502.4],[29.96,505.29],[44.5,508.95],[59.02,507.56],[64.53,506.77],[74.8,503.61],[88.18,504.57],[104.54,508.12],[114.53,508.8],[127.25,507.66],[141.9,510.8],[153,508.7],[157.04,505.39],[170.31,502.33],[184.93,510.91],[201.26,509.51],[205.91,508.67],[218.21,510.14],[233.83,502.96],[241.86,507.49],[255.98,506.06],[267.48,508.8],[276.94,505.4],[296.59,507.75],[307.53,511.09],[318.58,503.34],[328.33,512.1],[336.82,504.5],[348.75,510.71],[362.48,506.78],[376.8,505.43],[385.92,512.4],[400.04,505.23],[416.71,502.42],[425.3,507.05],[437.34,504.9],[452.55,503.61],[461.13,509.78],[472.16,512.2],[482.18,503.95],[490.82,509.05],[507.07,508.45],[516.99,511.74],[530.58,508.06],[542.46,506.9],[556.52,503.71],[561.96,503.65],[583.7,504.58],[591.28,512.42],[603.33,505.93],[614.75,504.02],[631.01,507.09],[634.49,511.64],[651,507.01],[666.18,511.77],[678.14,504.65],[682.69,505.64],[697.84,508.58],[715.68,502.77],[717.94,511.31],[731.91,509.87],[746.97,508.03],[760.33,510.8],[771.19,506.31],[784.15,505.18],[790.92,509.22],[801.42,503.84],[813.24,509.22],[828.41,507.15],[840.31,507.26],[858.8,505.48],[860.67,504.67],[878.53,504.04],[892.99,508.46],[896.95,512.19],[915.88,505.05],[922.36,507.49],[942.14,510.17],[953.12,507.65],[960.41,505.51],[976.23,511.19],[987.59,511.33],[996.79,510.2],[1013.05,507.19],[1020.19,504.87],[1028.96,511.01],[1048.54,511.78],[1060.69,506.83],[1067.19,506.33],[1083.34,506.62],[1097.04,510.48],[1101.67,504.62],[1114.64,510.64],[1126.69,511.69],[1144.25,504.28],[1152,502.38],[1163.4,507.92],[1177.99,510.58],[1191.91,504.31],[1196.06,505.15],[1212.78,502.84],[1226,506.46],[1237.19,512.61],[1252.15,508.63],[1261.37,509.95],[1272.79,512.24],[1284.11,503.43],[1299.79,511.65],[1312.36,507.6],[1317.66,507.47],[1328.41,502.5],[1348.55,510.19],[1351.05,512.25],[1364.73,511.04],[1376.33,506.68],[1392.55,504.45],[1406.38,505.6],[1410,502.94],[1425.41,511.14],[1439.14,512.23],[1455.45,508.35],[1458.54,505.45],[1470.26,503.85],[1481.98,508.31],[1502.5,512.44],[1512.3,507.19],[1519.94,512.4],[1536,510.12],[1543.67,512.13],[1557.12,510.6],[1575.17,511.26],[1580.04,509.47],[1590.95,509.72],[1606.88,509.62],[1619.34,511.05],[1625.57,504.93],[1646.17,512.78],[1649.03,503.99],[1669.78,512.81],[1679.91,508.79],[2.88,524.41],[20.77,518.24],[31.52,521.43],[42.8,520.42],[58.84,521.06],[63.27,514.59],[79.85,521.82],[84.71,520.96],[97.17,516.71],[116.3,524.37],[122.69,524.52],[136.09,522.65],[145.73,520.52],[156.29,519.63],[175.49,519.22],[181.86,515.64],[196.73,521.39],[212.6,520.13],[223.69,524.58],[228.15,523.24],[245.39,518.26],[259.74,523.63],[265.31,515.04],[277.24,520.07],[289.73,518.45],[302.11,516.84],[319.32,519.16],[328.9,521.92],[337.99,522.16],[355.93,518.35],[368.95,519.75],[374.09,517.19],[384.21,519.26],[396.26,517.33],[414.57,521.19],[426.88,523.25],[437.65,517.64],[448.28,523.71],[459.92,522.6],[468.8,523.62],[479.81,521.64],[495.6,521.42],[505.81,515.81],[520.43,523.75],[530.96,519.13],[547.45,521.23],[558.61,515.57],[563.62,517.06],[573.73,523.34],[592.27,518.06],[598.16,518.8],[619.24,517.73],[624.13,523.66],[636.22,522.98],[651.45,522.23],[663.97,517.75],[676.51,514.41],[687.29,524.42],[699.29,515.12],[708.04,520.96],[727.7,520.33],[737.64,515.95],[746.38,515.36],[754.69,514.33],[765.91,517.64],[781.35,523.43],[790.98,521.38],[811.02,514.3],[817.49,520.5],[831.5,519.01],[836.9,518.11],[858.25,519.34],[862.84,523.68],[879.06,524.48],[885.35,521.57],[906.49,519.34],[914.94,514.82],[928.33,523.16],[935.14,515.96],[951.73,516.93],[963.43,514.92],[970.99,519.62],[985.81,517.46],[997.49,524.08],[1006.24,523.55],[1019.38,519.57],[1035.96,518.23],[1048.88,523.56],[1053.1,520.96],[1071.74,519.83],[1079.29,515.23],[1097.66,519.23],[1100.09,518.02],[1111.66,514.31],[1124.88,521.41],[1141.66,515.46],[1149.58,522.97],[1165.76,520.71],[1180.54,522.52],[1186.91,524.09],[1194.98,519.67],[1210.49,523.22],[1222.4,514.98],[1236.45,523.52],[1249.99,523.27],[1257.36,518.69],[1272.48,520.96],[1280.17,521.87],[1291.07,523.76],[1308.17,516.78],[1315.28,514.55],[1326.12,520],[1341.62,524.4],[1352.34,523.29],[1368.6,518.31],[1378.3,516.66],[1393.72,517.11],[1403.11,516.94],[1412.98,523.12],[1427.75,524.11],[1440.96,522.38],[1448.1,517.75],[1463.86,518.5],[1471.42,517.42],[1488.95,520.99],[1494.95,517.85],[1514.82,520.04],[1519.86,518.84],[1530.89,521.85],[1550.66,516.09],[1554.19,522.54],[1569.85,515.52],[1587.04,517.59],[1590.19,515.13],[1603.68,520.6],[1618.63,518.92],[1634.76,524.02],[1637.35,516.65],[1655.85,517.63],[1662.83,516.16],[1677.84,520.37],[8.9,534.47],[22.65,529.3],[26.39,534.13],[47.02,536.43],[49.54,531.17],[67.29,533.08],[73.79,527.6],[89.12,535.55],[100.07,536.11],[117.45,526.9],[120.9,526.3],[133.15,528.78],[144.33,533.36],[161.94,530.5],[176.32,534],[187.43,530.92],[199.49,536.44],[207,529.58],[220.38,534.27],[235.67,536.31],[244.79,531.38],[260.93,528.03],[264.52,526.07],[283.32,532.91],[288.5,526.82],[303.57,531.39],[320.73,528.71],[329.3,528.67],[344.97,536.58],[347.38,530.92],[363.49,532.41],[379.8,527.18],[393.3,528.19],[404.58,536.08],[411.59,529.95],[419.63,531.38],[432.81,533.42],[452.84,526.99],[462.37,536],[470.33,527.32],[485.85,530.98],[492.98,535.84],[503.66,533.6],[514.75,526.13],[532.28,535.73],[543.68,528.98],[552.07,531.97],[563.59,530.72],[581.81,535.14],[595.1,528.87],[602.37,526.15],[617.72,531.27],[631.49,533.06],[637.6,535.21],[653.44,528.93],[663.36,532.47],[672.8,530.6],[686.24,527.63],[703.05,527.38],[705.94,531.52],[725.88,526.5],[729.13,530.31],[745.4,533.2],[755.01,535.4],[775.33,533.06],[783.55,534.53],[798.2,535.25],[802.86,533.21],[816.4,530],[831.21,532.62],[836.54,526.7],[856.02,526.2],[866.49,533.76],[878.19,536.44],[891.63,527.4],[897.4,526.27],[910.77,532.16],[922.47,530.72],[938.52,530.18],[944.54,528.44],[959.56,527.49],[973.22,528.12],[987.7,527.07],[999.78,527.68],[1012.66,527.69],[1021.05,530.6],[1035.7,532.72],[1043.55,529.13],[1053.09,529.39],[1066.73,527.71],[1077.01,536.63],[1092.11,531.73],[1102.95,531.54],[1119.86,529.72],[1128.12,528.7],[1137.46,532.82],[1149.09,535.59],[1164.34,536.32],[1178.35,531.6],[1192.47,530.19],[1197.55,531.03],[1216.48,530.49],[1223.81,529.42],[1238.09,527.95],[1243.47,532.35],[1256.27,528.63],[1271.47,531.75],[1279.84,534.39],[1299.07,535.62],[1312.01,529.71],[1318.29,532.83],[1328.01,536.08],[1347.35,525.98],[1353.93,534.03],[1369.98,528.72],[1380.5,532.33],[1385.83,536.12],[1406.47,532.26],[1410.34,529.51],[1422.25,532.11],[1441.34,534.25],[1446.03,529.31],[1460.65,526.02],[1470.57,527.65],[1488.75,532.45],[1493.71,531.82],[1508.9,533.75],[1518.84,527.85],[1536.2,535.74],[1549.02,532.7],[1554.04,529.43],[1568.63,528.84],[1577.19,526.86],[1591.22,534.03],[1603.92,532.37],[1620.41,532.1],[1624.78,531.33],[1637.82,534.62],[1648.83,527.39],[1666.07,527.13],[1674.45,535.86],[5.11,542.96],[20.57,544.35],[26.1,539.46],[36.5,547.82],[57.05,545.96],[62.79,547.14],[82.36,544.61],[93.92,543.48],[103.61,546.32],[115.9,539.88],[130.52,546.99],[142.18,541.33],[148.62,542.58],[158.89,541.78],[174.78,540.24],[180.94,541.39],[196.25,542.34],[210.5,540.6],[225.15,546.97],[231.42,542.43],[246.02,540.03],[257.65,544.14],[272.7,547.29],[282.63,539.28],[291.14,547.38],[301.41,540.99],[313.62,539.94],[331.65,538.21],[341.53,545.48],[353.38,539.69],[364.88,540.17],[377.78,539.27],[386.75,538.21],[404.93,545.84],[414.54,546.92],[418.73,544.5],[433.25,540.71],[452.72,544.31],[456.29,547.97],[474.81,541],[486.19,539.72],[498.51,543.29],[505.47,540.68],[517.57,541.59],[526.63,545.97],[539.45,547.82],[556.27,546.28],[566.11,541.07],[581.73,540.49],[595.39,548.42],[597.84,539.1],[610.69,546.3],[630.26,544.73],[639.29,546.18],[647.58,540.25],[661.95,545.69],[678.08,539.5],[683.06,544.8],[694.93,539.54],[713.96,544.6],[720.72,539.02],[737.27,547.67],[749.65,546.73],[761.88,538.27],[772.2,547.55],[776.81,542.88],[792.9,545.81],[807.95,548.56],[822.25,543.55],[829.74,539.57],[838.46,542.46],[856.28,543.38],[864.55,542.51],[878,540.39],[885.72,546.13],[899.71,546.57],[916.86,542.48],[926.02,543.12],[935.8,544.49],[945.52,545.52],[958.38,539.86],[967.96,545.85],[981.82,540.07],[992.57,545.37],[1004.72,542.26],[1020.17,542.04],[1031.86,542.48],[1046.41,539.53],[1058.53,548.01],[1063.51,548.63],[1083.03,540.15],[1090.19,546.29],[1106.79,544.63],[1114.91,542.15],[1124.01,545.97],[1140.17,540.57],[1149.68,547.14],[1165.21,543.57],[1181.07,545.74],[1188.72,542.64],[1199.87,543.88],[1211.56,542.03],[1229.07,547.51],[1236.26,539.95],[1242.72,547.28],[1261.56,540.89],[1272.75,538.16],[1282.9,542.03],[1294.29,540.4],[1308.95,541.78],[1322.13,547.01],[1335.74,546.09],[1342.32,542.1],[1355.9,546.59],[1362.38,539.66],[1383.33,540.96],[1392.35,544.84],[1405.44,544.24],[1417.79,546.68],[1426.67,543.72],[1443.59,540.86],[1455.54,541.37],[1465.99,540.34],[1471.73,544.88],[1484.8,540.03],[1502.88,538.77],[1515.67,546.02],[1518.69,540.15],[1537.09,542.03],[1544.87,541.64],[1560.11,540.34],[1569.38,540.34],[1582.22,538.89],[1595.8,545.14],[1609.93,543.19],[1615.85,545.91],[1635.12,543.69],[1642.4,541.33],[1651.21,546.69],[1666.06,548.15],[1680,546.93],[4.73,552.1],[18.08,552.01],[33.07,555.87],[45.04,554.25],[55.2,558.12],[68.25,560.28],[75.55,555.02],[91.1,551.1],[102.7,559.92],[113.47,551.05],[124.66,550.92],[133.33,553.08],[150.01,559.16],[160.18,556.42],[169.48,550.92],[188.57,560.1],[201.65,551.13],[207.93,552.8],[224.29,550.83],[230.1,557.07],[241.98,553.3],[261.87,555.49],[272.38,554.54],[277.63,554.75],[292.67,551.04],[302.71,552.28],[316.86,556.89],[329.06,558.91],[336.61,552.88],[350.29,553.9],[360.21,553.58],[381.35,557],[389.83,557],[397.96,556.1],[413.91,558.83],[424.61,552.83],[430.47,553.51],[448.58,556.32],[464.59,550.06],[471.32,551.88],[488.04,555.18],[496.72,551.11],[512.82,552.1],[518.61,558.74],[529,557.89],[548.58,552.6],[557.78,554.22],[562.45,557.4],[582.36,554.92],[586.49,552],[601.24,552.81],[618.67,557.67],[631.14,560.17],[639.86,555.28],[648.54,555.19],[661.57,557.22],[676.15,551.75],[683.49,550.43],[702.09,553.42],[705.76,558.98],[718,555.55],[731.05,551.77],[743.82,555.03],[758.18,557.22],[772.38,556.41],[781.68,555.66],[794.51,558.59],[808.95,557.27],[814.74,552.61],[827.22,550.37],[837.09,550.79],[852.1,553.7],[869.36,550.4],[873.5,556.23],[889.3,553.05],[900.78,560.31],[910.72,558.61],[930.52,560.26],[939.34,559.36],[953.25,550.73],[958.71,557.68],[968.34,550.29],[986.72,551.98],[1002.33,558.23],[1009.29,558.96],[1024.91,558.76],[1031.76,558.79],[1047.21,560],[1061.97,551.34],[1068.44,552.22],[1081.31,550.66],[1092.65,557.36],[1100.74,554.99],[1117.82,549.85],[1123.16,554],[1145.49,551.82],[1155.05,556.77],[1159.53,559.18],[1172.07,556.88],[1190.58,554.12],[1196.09,553.34],[1209.88,558.52],[1222.09,557.41],[1232.35,557.93],[1248.69,559.06],[1254.66,555.03],[1266.34,553.34],[1284.57,552.49],[1294.41,551.56],[1303.7,557.26],[1322.26,558.5],[1328.48,555.57],[1340.62,556.06],[1355.58,552.94],[1367.54,551.81],[1377.54,558.32],[1392.37,551.43],[1400.94,552.95],[1419.98,560.1],[1426.81,551.49],[1439.47,553.8],[1447.4,559.51],[1459.93,554.74],[1473.99,550.16],[1486.99,556.26],[1503.65,558.07],[1506.47,559.31],[1522.95,554.29],[1532.48,554.36],[1549.61,554.5],[1560.51,557.15],[1567.2,555.26],[1584.61,557.8],[1589.73,552.96],[1601.17,549.91],[1622.28,560.35],[1630.17,552.56],[1646.43,554.74],[1652.8,550.75],[1662.92,556.52],[1673.83,557.63],[11.14,569.68],[19.68,564.02],[28.48,570.84],[45.34,562.55],[55.03,568.77],[61.09,570.56],[81.54,565.61],[90.06,565.31],[104.69,572.18],[112.8,566.94],[124.49,567.23],[142.31,564.52],[153.29,562.46],[157.28,568.95],[173,568.44],[181.36,568.42],[200.18,567.31],[207.77,566.33],[216.27,568.72],[238.06,563.43],[242.01,570.49],[254.65,567.37],[272.4,562.58],[281.23,563.21],[287.26,563.51],[305.36,563.67],[320.06,566.61],[333.61,567.42],[342.69,567.1],[350.93,568.9],[363.59,571.66],[373.34,563.34],[391.01,568.13],[396.64,562.97],[416.7,562.88],[419.95,568.86],[436.85,565.76],[449.51,566.6],[464.5,563.44],[471.27,564.26],[481.44,571.8],[498,569.27],[507.22,562.72],[520.26,570.52],[532.06,563.47],[545.47,563.74],[556.62,568.03],[569.7,564.51],[576.87,567.66],[595.66,562.13],[604.33,563.17],[611.81,570.07],[623.29,566.22],[643.77,569.2],[653.02,564.14],[661.17,562.56],[672.91,569.24],[688,571.75],[701.07,569.55],[714.76,566.24],[725.37,572.42],[739.12,564.36],[751.01,567.54],[757.35,571.55],[765.47,570.76],[780.9,566.96],[791.84,564.44],[804.1,568.24],[820.3,567.4],[831.87,570.26],[837.71,568.16],[858.3,562.82],[861.19,566.46],[876.21,567.29],[894.2,566.84],[896.16,572.28],[917.32,572.03],[921.72,571.76],[939.34,568.38],[947.89,564.57],[958.88,562.82],[973.33,570.9],[981.48,571.4],[995.08,572],[1006.56,567.1],[1018.55,567.38],[1030.11,564.63],[1046.7,564.58],[1053.46,566.09],[1066.18,566.25],[1079.4,571.73],[1088.98,571.58],[1108.94,570.67],[1119.89,563.61],[1127.3,567.82],[1142.81,571.32],[1153.21,566.15],[1161.82,567.48],[1171.54,570.04],[1183.98,566.23],[1201.25,568.34],[1214.8,563.56],[1223.23,562.56],[1235.56,562.35],[1249.97,561.99],[1258.23,565.27],[1275.22,568.27],[1282.72,562.09],[1290.82,562.79],[1305.15,569.3],[1315.94,562.96],[1336.59,567.72],[1340.82,570.41],[1353.01,569.09],[1369.12,564.75],[1377.63,561.86],[1392.35,571.53],[1399.15,562.29],[1419.62,567.97],[1428.28,566.05],[1434.64,563.42],[1451.13,565.77],[1459.37,569.75],[1476.33,568.37],[1484.19,561.96],[1497.31,562],[1509.46,566.38],[1527.02,567.15],[1538.39,567.15],[1550.16,566.06],[1559.44,563.57],[1570.19,570.88],[1581.03,567.9],[1590.25,570.81],[1603.79,563.38],[1618.5,563.23],[1627.25,570.45],[1645.88,569.39],[1655.16,570.73],[1670.02,567.24],[1680,569.32],[0.78,575.16],[16.84,581.92],[30.46,581.28],[42.34,580.58],[49.14,574.94],[62.78,580.05],[81.43,584.23],[85.25,577.36],[96.88,583.81],[110.53,583.69],[123.12,574.31],[140.75,580.31],[153.67,580.75],[165.27,579.41],[170.47,581.33],[185.33,580.69],[198.31,580.21],[207.87,576.59],[215.85,584.12],[230.06,578.3],[244.08,578.08],[253.75,583.36],[266.73,584.09],[281.73,579.37],[292.85,577.46],[302.47,582.05],[321.73,580.21],[327.24,582.3],[340.81,580.94],[351.55,578.92],[368.29,579.38],[375.71,576.67],[384.08,582.41],[404.6,578.03],[416.62,574.56],[426.44,574.66],[439.66,574.48],[452.8,577.93],[462.3,578.25],[468.01,578.29],[481.89,579.74],[492.96,579.98],[509.94,574.01],[523.81,577.73],[533.6,578.35],[541.52,584.39],[557.55,577.68],[570.48,581.09],[574.52,580.43],[590.27,582.94],[608.08,577.8],[614.01,573.91],[629.75,575.11],[637.79,579.96],[651.94,577.35],[663.81,575.23],[675.43,581.53],[683.31,574.29],[701.79,579.09],[705.69,579.99],[723.43,583.54],[731.65,579.79],[750.24,581.83],[757.03,581.62],[771.68,580.47],[782.69,578.15],[795.61,581.91],[805.38,575.26],[818.62,583.61],[827.62,583.93],[837.07,582.44],[853.28,579.15],[860.85,582.19],[873.38,575.92],[891.25,581.88],[898.8,582.41],[910.03,574.78],[922.57,578.98],[939.59,578.43],[946.56,584.45],[961.44,577.15],[973.11,575.37],[987.38,574.49],[996.1,581.8],[1011.96,582.47],[1019.73,580.64],[1030.16,573.94],[1047.23,581.81],[1059.24,578.73],[1066.06,577.67],[1075.28,581.24],[1090.49,580.8],[1103.15,574.11],[1112.71,580.76],[1128.19,581.8],[1142.66,574.41],[1147.38,574.81],[1163.44,582.7],[1175.97,575.9],[1185.36,584.42],[1196.59,582.82],[1213.84,580.34],[1218.91,582.63],[1230.6,578.25],[1252.09,583.26],[1256.06,578.53],[1271.88,576.48],[1281.15,578.65],[1293.9,583.29],[1302.95,583.91],[1322.75,582.47],[1334.16,574.89],[1347.35,581.89],[1357.88,583.81],[1368.36,575.84],[1377.85,573.89],[1394.88,579.8],[1408.24,576.77],[1418.85,584.18],[1430.89,575.13],[1434.31,578.53],[1449.63,583.76],[1467.05,575.44],[1473.46,577.13],[1486.08,581.75],[1497.84,577.78],[1511.45,582.58],[1522.05,582.46],[1536.92,580.3],[1550.35,575.29],[1559.91,575.03],[1574.18,582.98],[1578.86,579.36],[1598.84,584.22],[1608.31,583.88],[1615.11,575.09],[1627.31,580.94],[1641.05,582.61],[1650.51,578.24],[1670.55,578.18],[1672.81,580.63],[10.33,594.08],[18.37,594.45],[31.35,587.79],[41.61,589.7],[49.26,593.23],[66.49,587.41],[75.96,591.52],[87.29,592.15],[96.47,590.75],[108.74,589.8],[130.67,596.11],[142.1,586.21],[151,594.58],[164.29,588.72],[175.72,586.44],[183,596.34],[191.82,591.5],[209.56,588.44],[224.24,590.26],[227.81,591.6],[243.04,594.44],[259.44,591.27],[265.17,593.93],[280.73,586.66],[290.31,589.24],[300.75,596],[315.2,585.86],[331.01,587.2],[336.87,590.45],[350.04,591.89],[363.47,594.75],[374.85,586.42],[384.47,588.04],[402.75,594.9],[411.01,594.42],[424.01,594.64],[433.4,592.71],[445.71,594.73],[460.47,587.97],[468.46,586.19],[486.31,590.76],[500.47,596.33],[511.19,594.34],[519.33,590.61],[531.88,594.51],[543.17,593.35],[553.32,590.19],[567.2,592.17],[580.18,593.14],[592.52,591.77],[605.09,592.7],[616.43,592.1],[626.68,594.54],[641.9,589.23],[653.45,586.22],[657.73,594.24],[669.62,588.48],[686.73,586.54],[703.52,590.98],[708.74,591.9],[719.22,589.32],[739.24,591.77],[742.68,587.15],[753.05,586.76],[769.95,590.85],[782.57,596],[796.57,587.97],[805.95,594.04],[816.3,596.03],[829.26,586.38],[837.94,585.7],[851.78,596.02],[864.46,594.23],[872.64,589.94],[891.1,595.7],[900.48,592.12],[918.77,593.46],[926.73,588.98],[941.6,587.74],[950.43,592.61],[962.81,586.64],[972.73,592.71],[986.67,587.02],[991.81,588.09],[1009.06,593.45],[1020.33,590.11],[1037.04,588.63],[1045.35,588.52],[1061.52,586.99],[1072.34,589.52],[1079.24,586.5],[1095.64,594.67],[1105.14,588.46],[1112.69,594.41],[1130.39,586.13],[1137.56,585.91],[1147.59,590.86],[1163.7,595.05],[1178.75,593.67],[1183.73,593.72],[1198.65,594.43],[1206.84,596.19],[1225.75,595.44],[1236.47,594.62],[1250.71,590.53],[1264.61,593.36],[1273.15,596.3],[1285.09,588.1],[1299.73,592.79],[1302.69,588.69],[1314.81,593.02],[1326.84,593.26],[1341.8,588.49],[1356.9,587.05],[1369.78,594.02],[1383.82,588.52],[1394.01,595.27],[1405.42,586.91],[1419.42,588.84],[1423.33,589.95],[1441.07,589.91],[1447.76,595.82],[1457.72,586.52],[1475.13,592.49],[1489.18,589.54],[1494.79,586.02],[1507.46,592.95],[1524.21,585.87],[1533.65,591.37],[1545.26,593.32],[1553.05,596.04],[1571.98,592.04],[1582.12,587.96],[1596.52,591.93],[1609.43,589.84],[1622.26,593.49],[1628.63,595.37],[1642.86,591.52],[1651.1,596.1],[1666.68,586.61],[1677.01,592.19],[10.43,607.48],[18.66,605.78],[33.02,600.04],[38.17,600.99],[48.61,600.14],[67.58,605.03],[76.28,599.77],[89.03,597.87],[101.78,602.54],[115.42,600.53],[129.28,605.67],[134.97,603.96],[144.45,606.46],[165.27,599.95],[177.49,602.02],[183.69,598.73],[193.68,604.35],[207.96,607.68],[215.58,603.29],[228.5,606.86],[243.76,604.46],[256.73,600.42],[263.63,602.77],[275.67,603.93],[292.57,607.43],[307.49,606.87],[316.39,604.44],[329.54,603.45],[340.97,598.02],[348.05,606.32],[361.49,603.93],[378.67,600.94],[391.81,604.67],[394.73,600.13],[412.08,607.64],[428.43,605.24],[436.78,602.55],[446.33,606.12],[461.8,599.81],[475.98,605.3],[487.23,598.1],[499.82,599.8],[506.74,604.25],[522.44,599.44],[527.72,598.98],[546.8,604.62],[553.58,601.68],[567.69,598.52],[576.68,605.49],[592.93,608.24],[607.12,598.34],[618.58,605.01],[629.16,601.83],[636.96,602.68],[645.94,605.11],[664.98,597.99],[669.69,607.76],[682.24,607.82],[693.61,602.64],[711.86,607.81],[718.44,604.16],[733.85,605.36],[741.28,600.35],[753.52,603.55],[770.02,599.35],[781.81,603.65],[792.87,602.8],[810.79,598.36],[822.15,598.71],[825.1,604.3],[839.47,602],[858.31,607.88],[866.56,606.42],[879.29,605.91],[886.44,599.3],[899,599.78],[910.29,604.25],[921.33,605.38],[937.18,600.85],[947.36,607.42],[961.41,599.61],[970.52,607.37],[982.22,598.18],[997.46,597.78],[1006.62,599.64],[1020.45,600.06],[1029.24,607.34],[1050.1,598.39],[1052.93,606.59],[1067.57,602.43],[1080.98,602.51],[1096.47,602.46],[1101.48,600.41],[1121.43,600.34],[1131.11,606.48],[1142.03,598.07],[1155.37,605.1],[1167.33,608.04],[1172.74,599.75],[1191.33,603.96],[1202.7,605.92],[1206.85,602.54],[1228.91,607.09],[1238.27,604.08],[1252.14,607.1],[1259.99,606.28],[1271.54,599.31],[1286.09,602.78],[1291.6,602.76],[1312.2,600.77],[1316.87,603.05],[1329.03,599.63],[1347.42,598.59],[1352.86,606.02],[1372.21,600.99],[1375.37,600.24],[1392,597.84],[1407.63,601.12],[1416.35,601.43],[1428.64,608.13],[1436.16,604.95],[1446.05,599.49],[1462.94,607.9],[1478.13,604.36],[1482.33,605.92],[1500.47,605.64],[1511.29,600.41],[1517.41,604.61],[1531.33,603.18],[1542.15,600.35],[1560.32,603.18],[1568.49,608.01],[1579.4,608.22],[1598.57,607.03],[1608.71,606.78],[1620.21,599.76],[1632.94,598.43],[1636.83,599.2],[1649.48,605.43],[1669.34,604.47],[1680,600.88],[1.32,614.22],[18.09,619.67],[24.93,612.76],[43.05,616.07],[53.97,611.49],[67.62,616.9],[75.69,616.97],[87.06,618.3],[99.84,616.47],[110.27,619.26],[130.2,616],[142.04,609.76],[147.12,617.11],[159.75,610.76],[168.2,619.47],[180.31,612.61],[192.29,612.52],[213.11,616.67],[222.26,620.18],[237.81,619.99],[245.25,612.44],[253.89,609.66],[273.53,611.07],[277.61,615.47],[290.66,613.82],[299.8,611.02],[313.04,617.03],[327.74,616.81],[338.09,610.2],[354.09,610.76],[363.57,617.79],[379.67,618.05],[393.17,611.88],[404.18,615.97],[416.01,614.39],[419.24,610.81],[436.89,609.73],[446.79,612.97],[454.47,616.35],[472.64,618.08],[485.48,617.23],[496.86,610.94],[505.36,614.72],[524.65,619.94],[533.57,618.2],[540.48,618.51],[558.01,618.92],[565.62,610.7],[575.17,618.96],[590.17,615.53],[602.09,619.64],[610.7,617.07],[632.03,611.66],[636.83,613.52],[648.66,610.72],[667.64,613.24],[678.09,611.7],[682.87,614.31],[703.65,615.16],[713.93,614.59],[719.18,612.83],[733.38,611.41],[742.21,610.27],[756.43,619.77],[770.28,614.78],[782.89,619.99],[797.54,619.41],[801.53,611.94],[820.54,618.03],[834.72,611.32],[841.59,616.13],[852.81,615.03],[860.89,612.14],[876.85,618.51],[892.36,617.53],[904.68,616.67],[911.01,613.22],[928.86,618.98],[932.27,620.04],[948.35,616.33],[964.27,610.74],[973.44,613.9],[979.86,619.97],[997.28,617.47],[1006.97,613.23],[1022.89,611.91],[1032.11,614.64],[1046.85,611.6],[1055.56,610.63],[1064.31,612.88],[1077.01,613.8],[1089.91,612.58],[1107.33,620.25],[1114.56,620.09],[1125.41,611.71],[1144.85,612.66],[1153.42,618.41],[1161.52,618.5],[1176.64,616.24],[1192.6,618.55],[1196.3,609.79],[1216.61,609.74],[1224.56,612.61],[1240.3,615.96],[1242.57,619.99],[1256.6,614.88],[1275.29,617.2],[1284.05,616.27],[1299.26,610.13],[1308.87,610.81],[1319.25,610.74],[1329.88,614.04],[1346.33,614.15],[1356.76,616.64],[1364.46,610.86],[1378.41,616.8],[1389.01,611.62],[1405.03,613.04],[1412.1,616.68],[1429.31,610.16],[1436.55,613.85],[1448.89,619.06],[1466.56,612.44],[1471.99,614.43],[1485.99,614.64],[1498.79,614.68],[1510.19,619.01],[1518.1,610.57],[1530.03,615.31],[1542.09,614.09],[1556.34,616.76],[1574.14,616.65],[1583.24,615.45],[1588.77,617.55],[1603.21,612.02],[1618.28,619.59],[1633.13,612.56],[1643.18,615.12],[1655.28,617.14],[1670.26,618.26],[1676.9,619.94],[5.65,627.3],[13.7,628.28],[28.71,623.5],[40.06,629.42],[49.85,626.47],[61.98,623.93],[78.17,621.97],[89.26,629.77],[105.39,626.53],[116.02,623.93],[127.77,629.94],[134.62,625.17],[152.76,626.96],[156.57,622.04],[170.71,622.04],[187.05,628.47],[202.16,622.84],[213.1,626.58],[216,626.36],[237.21,631.45],[245.37,629.51],[260.93,623.94],[268.52,626.29],[285.07,622.45],[292.76,628.92],[300.23,624.93],[317.14,625.1],[329.12,627.03],[341.58,622.01],[355.83,623.82],[367.11,624.09],[372.17,627.87],[388.4,627.87],[398.28,623.57],[413.24,625.98],[418.52,625.96],[438.58,623.12],[452.48,626.14],[464.19,627.58],[467.73,625.96],[484.06,623.35],[495.1,628.63],[511.31,631.86],[519.38,629.7],[533.5,624.51],[543.67,623.91],[558.98,630.89],[570.17,629.42],[580.11,621.53],[585.81,624.84],[607.81,627.31],[614.72,625.53],[624.59,627.06],[643.27,622.28],[649.44,623.67],[667.99,630.85],[678.16,624.3],[682.4,623.96],[700.06,628.78],[715.5,625.46],[725.43,629.47],[733.65,632.11],[747.12,628.74],[762.46,625.64],[772.32,625.37],[786.75,624.38],[795.81,631.01],[807.22,630.9],[818.41,631.9],[829.67,621.98],[845.48,625.54],[850.79,630.91],[864.68,625.76],[874.22,631.16],[890.07,626.38],[900.27,623.45],[912.32,624.04],[929.08,628.12],[941.03,629.37],[945.51,628.12],[956.83,624.81],[976.92,629.4],[988.5,622.84],[996.14,627.19],[1010.44,631.91],[1022.58,629.42],[1036.67,626.25],[1042.81,623.09],[1057.43,623.41],[1066.69,622.99],[1082.34,623.89],[1097.76,629.86],[1107.99,628.45],[1119.66,626.02],[1129.06,623.52],[1143.09,628.99],[1156.01,628.64],[1160.2,628.64],[1181.02,627.08],[1190.59,632.2],[1204.68,621.72],[1211.27,632.06],[1223.63,629.27],[1231.98,621.8],[1250.21,630.26],[1256.17,623.32],[1276.33,631.94],[1283.33,631.33],[1293.16,625.14],[1311.98,625.63],[1321.62,625.34],[1326.25,621.56],[1340.73,622.14],[1350.56,629.59],[1371.5,624.91],[1374.57,624.69],[1391.99,622.03],[1405.59,625.06],[1418.19,625.03],[1422.73,631.52],[1441.54,629.31],[1451.26,632.12],[1465.71,631.52],[1478.96,630.06],[1485.19,622.22],[1497.02,631.04],[1511.35,623.28],[1523.31,631.25],[1532.44,630.96],[1545.17,622.92],[1563.36,627.08],[1572.65,626.26],[1580.82,628.1],[1592.81,628.15],[1605.69,630.92],[1617.57,627.47],[1629.62,624.43],[1637.23,629.28],[1651.39,621.78],[1660.51,621.55],[1673.6,627.6],[6.6,636.66],[17.36,636.79],[34.11,640.46],[38.46,637.99],[49.8,640.56],[62.95,642.25],[79.33,640.7],[88.41,638.89],[97.49,635.89],[111.16,634.18],[123.88,636.44],[140.04,637.09],[144.64,638.14],[163.24,641.1],[176.31,634.62],[189.06,640.91],[200.59,640.84],[210.17,640.5],[220.08,633.89],[237.94,637.37],[242.92,634.1],[260.97,633.9],[272.85,639.5],[276.85,634.53],[292.39,641.63],[304.36,637.42],[317.69,634.06],[326.24,638.65],[345.31,636.6],[354.7,635.44],[361.32,643.22],[371.4,640.99],[389.99,636.33],[405.36,641.52],[408.54,634.32],[424.55,637.63],[430.74,636.19],[443.47,637.15],[462.15,636.31],[475.76,634.65],[485.3,634.75],[494.99,637.6],[505.89,639.66],[515.03,638.78],[527.84,635.44],[539.59,640.13],[553.97,639.41],[570.21,639.35],[576.31,644.04],[585.83,638.17],[607.96,633.57],[613.3,637.97],[630.72,634.1],[644,642.46],[655.08,635.61],[658.6,639.85],[677.42,634.08],[687.21,642.37],[699.33,639.07],[707.82,634.59],[727.66,635.72],[732.25,639.77],[743.62,643.67],[763.01,634.99],[771.17,637.38],[783.62,641.69],[792.81,640.25],[805.15,633.5],[820.3,635.1],[829.97,634.71],[836.97,643.87],[853.92,636.05],[870.89,637.45],[880.71,641.01],[886.56,638.47],[901.46,641.95],[913.75,640.83],[930.03,640.93],[941.06,641.29],[947.55,636.81],[957.91,642.79],[970.82,635.43],[987.01,640.92],[994.08,635.55],[1004.88,634.79],[1019.63,637.52],[1033.49,633.98],[1046.68,636.55],[1054.03,640.71],[1071.48,641.57],[1079.59,634.16],[1087.78,641.22],[1103.61,633.82],[1120.49,633.96],[1123.51,638.17],[1134.93,640.84],[1156.63,636.22],[1162.3,636.33],[1178.97,636.46],[1190.87,637.83],[1201.96,634.97],[1210.64,635.6],[1219.59,635.53],[1240.21,633.95],[1250.87,637.31],[1256.49,640.4],[1269.23,634.49],[1284.47,638.51],[1295.69,637.83],[1306.51,636.46],[1320.8,641.92],[1331.76,638.75],[1346.03,634.97],[1350.41,639.23],[1369.55,640.06],[1384.06,642.92],[1386.42,634.8],[1406.49,643.41],[1418.83,642.23],[1431.96,634.98],[1442.06,643.78],[1447.51,640.41],[1464.31,642.02],[1471.35,642.89],[1483.3,639.68],[1493.36,636.79],[1514.59,641.96],[1520.71,634.57],[1532.07,639.62],[1549.56,637.84],[1553.73,640.97],[1566.61,639.31],[1584.23,643.14],[1594.94,637.14],[1605.55,633.56],[1617.99,634.83],[1632.07,636.83],[1641.55,635.3],[1655.02,637.01],[1670.05,636.38],[1679.44,635.05],[7.66,647.55],[20.77,645.73],[32.19,647.65],[40.94,650.23],[57.52,654.49],[61.92,655.02],[78.48,652.16],[85.1,653.58],[98.99,652.3],[118.73,645.86],[128.08,655.29],[134.32,651.2],[144.99,647.54],[164.62,656],[172.87,653.55],[187.99,645.95],[198.37,646.36],[211.62,655.14],[225.56,655.02],[233.57,652.56],[246.49,649.22],[260.84,646.86],[273.19,654.57],[281.91,652.21],[297.88,646.8],[307.14,648.43],[320.91,652.25],[325.45,652.23],[345.1,646.18],[352.11,647.96],[368.46,655.02],[377.78,648.47],[384.87,651.91],[396.37,653.65],[412.42,653.82],[421.1,649.6],[431.11,655.37],[443.53,649.25],[465.03,653.84],[473.01,651.65],[480.25,653.54],[492.14,649.57],[509.26,647.43],[519.02,652.44],[531.03,648.95],[544.25,653.34],[556.81,650.46],[566.6,647.62],[574.29,653.64],[587.55,646.18],[605.07,655.3],[619.16,647.55],[625.03,655.62],[637.16,645.42],[648.12,652.65],[663.2,646.02],[675.99,650.25],[691.64,647.78],[696.9,648.51],[713.58,653.45],[717.12,646.48],[730.46,646.8],[749.02,649.53],[756.05,648.66],[765.81,655.17],[778.62,654.08],[790.17,654.08],[803.71,647.93],[816.2,654.52],[832.06,651.73],[839.24,652.15],[852.06,655.99],[867.71,652.87],[879.39,654.82],[891.48,654.02],[898.01,652.63],[914.2,653.46],[920.15,645.38],[938.01,645.91],[949.86,654.57],[965.79,652.63],[971.03,655.86],[986.46,650.34],[992.7,647.91],[1007.68,652.25],[1020.44,650.36],[1031.79,652.75],[1043.61,654.6],[1055.66,650.35],[1064.5,651.62],[1082.69,648.3],[1087.3,655.16],[1102.57,651.01],[1115.42,654.66],[1129.59,650.52],[1144.4,646.93],[1148.57,654.49],[1168.18,649.82],[1181.32,648.43],[1183.55,655.31],[1198.08,651.29],[1207.53,651.79],[1221.13,647.85],[1240.27,647.92],[1242.77,649.09],[1256.61,651.27],[1272.39,652.16],[1278.59,646.1],[1297.55,653.85],[1305.05,646.4],[1318.65,655.77],[1335.4,649.39],[1342.41,647.96],[1353.35,647.35],[1372.22,647.77],[1375.07,646.7],[1392.89,654.83],[1405.64,651.65],[1412.53,655.12],[1422.57,652.3],[1433.71,650.72],[1451.94,650.61],[1463.82,656.03],[1479.91,648.13],[1491.17,652.81],[1494.92,648.4],[1511.09,650.41],[1526.45,650.57],[1529.3,652.62],[1551.18,648.28],[1555.47,647.79],[1571.48,650.34],[1580.93,651.75],[1588.97,646.94],[1605.15,652.36],[1615.44,655.44],[1632.89,652.17],[1645.78,646.86],[1653.63,647.51],[1660.93,653.39],[1672.54,654.86],[6.97,660.09],[14.24,657.38],[30.67,659.01],[46.72,662.03],[58.85,664.17],[70.79,657.38],[82.42,665.03],[86.18,665.61],[105.63,662.04],[117.8,665.34],[120.23,662.49],[133.23,666.03],[149.71,662.2],[158.18,665.01],[171.98,664.06],[186.54,660.07],[201.07,660.06],[209.35,659.87],[218.22,659.51],[232.7,665.82],[249.95,661.79],[254.84,667.23],[267.03,661.93],[276.04,662.13],[292.18,657.33],[302.23,665.65],[321.63,659.7],[329.48,667.29],[343.18,660.48],[355.87,666.58],[368.95,664.92],[372.11,665.08],[388.34,667.62],[395.1,660.41],[409.99,658.48],[428.73,666.59],[439.55,657.46],[445.73,664.56],[457.08,667.38],[468.9,661.55],[479.84,660.16],[494.47,658.58],[508.09,661.36],[523.26,664.67],[531.73,659.44],[538.16,667.79],[551.35,660.1],[564.84,665.15],[582.63,666.65],[588.81,666.81],[606.66,666.39],[611.92,657.57],[630.5,667.05],[637.79,665.42],[651.22,665.63],[659.9,666.22],[673.89,659.67],[685.49,657.82],[693.37,660.6],[709.43,658.07],[723.72,664.87],[729.42,667.83],[747.2,666.55],[758.65,665.52],[773.65,658.8],[786.2,658.94],[790.52,665.23],[804.72,657.5],[813.36,665.07],[833.54,661.37],[836.63,666.22],[849.63,664.53],[867.8,659.32],[881.1,666.13],[885.23,667.83],[896.48,657.86],[913.63,660.89],[926.6,662.58],[938.24,661.16],[946.39,658.26],[963.57,666.83],[975.2,659.06],[984.78,663.56],[994.47,657.79],[1004.63,665.24],[1018.56,665.15],[1035,660.57],[1046.25,665.33],[1051.73,660.16],[1069.25,659.66],[1081.51,664.42],[1096.3,666.26],[1101.59,665.82],[1118.7,659.95],[1124.17,663.33],[1136.34,661.59],[1150.57,659.63],[1169.15,665.55],[1178.84,667.3],[1191.63,662.11],[1203.32,657.94],[1216.65,662.3],[1227.68,663.9],[1233.31,660.33],[1243.37,659.67],[1256.44,657.68],[1273.75,665.68],[1283.42,668.03],[1294.39,659.74],[1307.32,665.03],[1324.62,659.99],[1336.16,660.75],[1347.05,661.7],[1353.73,663.45],[1363.61,662.78],[1374.63,661.59],[1388.18,667.69],[1402.48,660.79],[1420.08,660.04],[1423.74,666.39],[1443.12,657.64],[1446.98,663.62],[1467.82,666.62],[1477,667.24],[1488.31,666.9],[1498.53,662.57],[1515.07,664.74],[1521.28,666.83],[1533.78,662.63],[1547.6,666.19],[1562.49,664.4],[1574.41,657.7],[1583.61,666.78],[1597.05,662.95],[1609.24,659.92],[1613.98,664.72],[1625.55,659.33],[1646.97,658.43],[1650.3,667.34],[1664.62,667.57],[1675.42,667.01],[4.79,676.73],[13.3,673.75],[29.94,669.49],[41.81,673.27],[58.3,677.48],[60.4,679.2],[81.06,669.5],[85.58,671.66],[104.5,672.94],[117.59,671.96],[127.09,674.85],[138.24,671.52],[145.73,674.35],[157.68,674.02],[174.66,678.22],[184.04,678.1],[197.03,673.42],[212.86,673.08],[225.62,678.15],[229.86,676.6],[249.41,673.86],[257.53,675.22],[271.32,678.31],[282.88,677.99],[295.29,671.75],[309.76,676.58],[318.1,678.13],[324.37,670.31],[343.71,675.1],[356.61,677.72],[365.31,679.11],[371.47,679.12],[387,675.97],[402.31,671.14],[413.69,674.58],[425.39,679.5],[437.17,672.63],[449.85,676.83],[459.12,671.91],[471.45,672.73],[480.87,671.54],[497.76,670.31],[506.65,679.89],[516.97,669.79],[531.71,674.04],[538.73,677.33],[552.17,677.35],[571.26,676.79],[575.19,672.38],[595.82,677.9],[601.88,672.53],[620.22,673.95],[630.78,672.65],[639.88,679.86],[651.97,677.49],[664.6,671.97],[676.23,671.57],[681.21,677.23],[701.83,676.6],[711.49,677.23],[724.15,676.96],[732.28,678.29],[748.85,675.33],[753.05,678.79],[765.55,674.36],[780.6,674.51],[795.33,678.55],[808.3,677.3],[820.83,674.03],[827.33,674.1],[842.47,675.73],[856.62,671.89],[865.98,678.73],[880.88,676.39],[891.91,675.4],[901.14,679.62],[910.51,669.85],[924.89,679.79],[934.15,672.76],[946.99,673.19],[959.94,673.74],[973.75,671.48],[985.85,677.9],[995.28,677.21],[1012.45,676.45],[1021.52,676.65],[1029.33,673.8],[1049.08,679.29],[1051.7,670.91],[1068.66,670.15],[1083.88,675.48],[1094.29,673.75],[1107.6,678.96],[1114.74,674.81],[1127.92,669.76],[1139.87,671.22],[1149.42,670.01],[1166.27,679.29],[1178.62,674.98],[1183.3,676.13],[1196.97,679.54],[1217.19,675.83],[1227.91,673.82],[1231.61,672.4],[1243.93,670.93],[1260.83,676.18],[1269.05,675.5],[1282.38,673.32],[1297.3,673.14],[1303.23,670.09],[1320.54,670.37],[1336.16,670.2],[1348.25,673.75],[1353.51,677.33],[1367.04,670.88],[1378.61,675.89],[1386.93,673.15],[1400.72,671.69],[1412.46,677.74],[1426.41,678.68],[1442.46,676.76],[1453.14,669.84],[1465.76,674.54],[1475.57,679.6],[1489.4,675.7],[1498.27,672.67],[1514.91,678.15],[1518.87,671.16],[1538.78,671.69],[1541.19,674.65],[1562.45,673.54],[1573.22,675.7],[1580.05,677.97],[1594.59,674.12],[1608.09,671.78],[1614.63,675.11],[1627.15,676.97],[1636.78,677.04],[1651.2,670.45],[1663.83,670.2],[1677.99,679.8],[8.69,691.37],[18.55,684.88],[32.23,686.66],[42.5,685.53],[52.41,687.31],[66.9,683.06],[77.75,684.11],[85.47,685.17],[102.61,687.3],[110.37,683.98],[127.2,681.22],[137.41,690.74],[149.64,690.55],[163.21,690.66],[168.01,688.89],[182,683.76],[201.89,688.29],[206.3,689.32],[221.02,686.25],[236.32,687.2],[244.34,683.41],[256.24,687.56],[271.9,691.68],[276.35,687.61],[289.27,684.24],[306.72,691.04],[315.64,689.66],[328.51,689.83],[344.7,689.52],[357.41,688.22],[361,691.09],[376.81,685.48],[386.7,691.18],[400.1,683.26],[410.06,691.14],[428.49,691.67],[433.02,682.12],[448.55,685.01],[460.08,687.24],[468.22,686.49],[481.99,682.19],[497.83,685.9],[512.56,689.5],[518.05,683],[527.08,687.15],[548.5,689.01],[552.96,687.68],[567,691.31],[576.05,681.55],[593.86,691.72],[607.28,683.78],[613.37,685.61],[631.38,683.76],[641.37,686.13],[654.66,691.32],[665.51,689.93],[670.85,682.44],[688,682.37],[695.19,681.82],[710.65,685.58],[720.1,687.13],[730.78,691.4],[744.55,683.32],[754.33,689.08],[769.42,689.16],[779.7,685.75],[788.95,691.08],[808.19,691.34],[819.48,682.16],[827.07,687.05],[841.13,685.78],[854.64,683.41],[870.6,686.02],[873.99,688.32],[894.61,682.36],[901.26,688.91],[910.92,690.36],[928.22,683.11],[937.14,689.3],[944.52,684.51],[956.32,686.17],[968.32,687.23],[987.16,687.84],[993.2,684.1],[1008.53,684.52],[1022.71,682.06],[1038.12,686.61],[1045.37,686.86],[1051.6,690.55],[1073.28,682.17],[1079.9,691.5],[1096.81,683.66],[1103.36,689.78],[1114.23,681.63],[1125.2,685.86],[1144.03,686.16],[1150.18,685.56],[1167.76,682.5],[1173.7,681.51],[1186.08,689.11],[1196.34,690.01],[1206.67,689.57],[1222.23,681.21],[1239.87,689.79],[1250.41,685.73],[1262.13,689.28],[1270.49,688.42],[1286.62,683.08],[1295.49,684.65],[1305.78,683.2],[1323.96,688.04],[1332.15,686.06],[1346.2,683.06],[1360.29,682.41],[1371.3,687.2],[1376.33,689.54],[1390.56,685.66],[1397.7,684.51],[1414.79,689.9],[1429.45,690.82],[1442.86,687.78],[1450.3,681.83],[1461.02,681.38],[1477.65,687.95],[1489.62,691.58],[1493.99,690.29],[1508.92,691.01],[1517.89,681.24],[1529.81,686.86],[1545.89,683.79],[1558.97,682.13],[1569.85,689.48],[1580.44,681.39],[1595.55,683.51],[1601.48,690.79],[1612.66,691.55],[1626.67,689.42],[1638.31,685.71],[1648.4,689.45],[1665.75,684.93],[1677.12,683.16],[10.14,696.46],[22.37,700.37],[26.52,701.45],[40.06,696.08],[57.44,694.15],[67.75,698.21],[80.83,694.67],[94.81,697.99],[98.42,698.89],[108.18,701.35],[120.26,695.58],[138.39,699.3],[145.14,702.35],[155.98,700.51],[169.59,699.6],[181.97,697.21],[202.31,700.99],[212.14,702.43],[222.95,702.76],[235.92,701.23],[244.75,699.2],[253.83,695.84],[272.46,695.95],[283.45,693.87],[295.26,703.64],[305.45,703.67],[318.64,693.98],[325.06,697.54],[335.97,698.29],[348.24,697.9],[369.21,694.81],[370.85,698.82],[386.33,693.82],[398.01,696.61],[414.09,696.97],[419.09,698.32],[432.04,694.31],[446.95,694.81],[456.46,703.74],[466.37,699.21],[479.27,700.22],[498.84,693.19],[508.15,700.37],[521.84,698.89],[530.14,696.24],[544.5,699.98],[558.43,701.79],[563.25,697.82],[577.47,697.2],[586.93,700.21],[599.23,697.66],[616.07,694.23],[631.2,694.42],[637.7,695.72],[652.26,699.25],[664.12,696.79],[675.83,694.61],[683.28,699.88],[694.01,703.31],[713.01,697.39],[726.49,699.92],[729.77,703.71],[746.98,700.98],[760.35,700.91],[767.89,693.37],[782.55,697.26],[791.96,703.62],[803.32,703.72],[818.19,701.95],[825.41,694.23],[841.17,695.83],[852.42,695.25],[869.32,702.25],[876.63,696.14],[886.69,696.34],[897.3,697.09],[914.63,694.7],[927.26,702.85],[938.35,694.2],[951.4,697.07],[963.74,698.81],[969.07,700.5],[980.03,693.51],[996.5,694.7],[1013.89,696.72],[1023.68,695.25],[1037.55,696.85],[1047.17,699.19],[1051.92,695.36],[1070.5,697.4],[1084.82,697.98],[1094.99,703.27],[1109.59,696.51],[1121.5,693.71],[1130.43,703.32],[1135.37,697.1],[1156.5,695.22],[1161.35,697.95],[1171.42,696.24],[1190.18,695.84],[1200.81,703.36],[1212.5,702.64],[1228.28,693.59],[1232.44,694.64],[1252.19,699.48],[1255.26,695.79],[1271,702.37],[1281.64,703.35],[1294.49,693.83],[1305.04,697.18],[1315.2,699.67],[1330.73,697.93],[1347.52,703.55],[1356,697.77],[1368.31,702.65],[1380.52,693.22],[1393.86,698.94],[1401.36,699.77],[1414.12,701.33],[1432.2,701.42],[1433.71,696.36],[1446.2,695.76],[1460.99,694.47],[1476.12,693.9],[1485.27,700.58],[1500.41,696.98],[1507.03,696.29],[1526.46,695.13],[1529.34,702.1],[1551.41,697.36],[1558.65,697.66],[1566.15,700.3],[1578.36,698.06],[1596.56,694.62],[1606.01,693.15],[1620.5,696.08],[1630.98,694.77],[1642.22,696.76],[1655.66,694],[1663.48,693.88],[1676.97,698.66],[1.17,711],[13.9,710.61],[28.27,706.57],[38.83,715.3],[58.82,708.29],[68.81,706.96],[78.73,706.7],[88.86,711.82],[101.95,714.86],[116.43,714.96],[125.53,712.19],[138.36,711.82],[148.56,715.16],[156.56,709.49],[174.59,714.4],[184.11,705.82],[200.04,710.09],[206.67,707.88],[221.99,709.25],[230.04,712.39],[244.12,707.49],[256.02,705.06],[265.57,714.76],[285.03,708.81],[296.45,709.04],[309.15,712.7],[313.39,705.37],[326.04,705.7],[337.12,709.95],[350.3,712.67],[364.36,709.77],[373.92,710.75],[385.52,705.22],[395.7,714.5],[414.11,714.28],[423.57,715.52],[432.18,705.34],[443.51,707.69],[462.39,713.38],[467.14,710.24],[480.18,715.21],[495.82,715.33],[510.55,714.23],[521.21,707.71],[529.13,709.91],[540.73,706.67],[557.79,706.06],[561.99,705.36],[579.74,712.61],[593.53,709.39],[606.38,710.18],[619.92,705.79],[623.09,713.68],[634.65,705.14],[648.74,705.3],[662.06,708.94],[672.22,705.59],[691.4,713.62],[695.55,707.21],[712.38,714.79],[718.66,709.53],[739.08,708.27],[746.38,705.85],[762.03,706.37],[768.76,708.02],[779.65,714.31],[788.87,706.08],[805.55,709.01],[822.71,712.84],[826.16,707.97],[837.23,708.45],[856.72,707.13],[866.36,712.6],[874.5,711.62],[885.84,707.02],[901.97,710.43],[908.08,712.38],[927.12,705.71],[940.95,705.9],[947.72,706.56],[959.77,714.13],[978.3,709.32],[983.41,711.36],[1002.31,715.76],[1004.37,707.67],[1026.05,711.83],[1036.38,710.04],[1047.05,713.09],[1056.02,713.5],[1063.9,709.07],[1076.51,710.93],[1089.84,715.32],[1109.59,705.11],[1115.78,708.75],[1128.72,713.83],[1139.76,709.62],[1154.72,707.08],[1164.92,707.27],[1178.87,711.05],[1185.18,711.5],[1197.02,714.67],[1213.73,709.41],[1228.62,711.96],[1238.27,713.69],[1242.58,708.87],[1257.35,714.05],[1274.68,715.63],[1280.92,710.33],[1293.27,707.99],[1303,705.74],[1322.27,710.15],[1326.34,707.35],[1342.95,710.59],[1360.53,706.48],[1363.99,713.31],[1382.51,711.14],[1396.07,711.17],[1403.96,708.44],[1418.34,707.64],[1422.23,715.43],[1441.19,709.79],[1445.5,714.05],[1462.04,706.69],[1475.71,706.89],[1484.54,713.33],[1499.52,714.32],[1509.75,711.27],[1517.22,707.89],[1536.31,710.35],[1546,708.47],[1560.62,709.59],[1570.52,714.25],[1577.92,708.51],[1592.25,713.56],[1606.26,710.29],[1622,712.35],[1631.15,707.32],[1642.34,713.23],[1658.08,713.14],[1663.56,711.66],[1673.04,715.31],[7.09,722.41],[22.23,717.02],[25.23,724.49],[42.24,725.98],[54.78,718.38],[61.63,717.14],[81.98,724.51],[88.77,719.65],[105.14,727.52],[115.77,717.43],[125.42,718.08],[137.28,721.7],[152.68,722.34],[165.31,725.22],[175.03,726.03],[186.43,723.57],[192.2,721.24],[205.26,722.42],[215.96,726.95],[236.98,720.19],[245.53,721.56],[256.04,727.28],[271.54,724.27],[283.95,720.31],[288.02,724.28],[309.46,725.74],[315.55,726.7],[323.11,721.14],[336.24,720.71],[352.04,721.05],[364.79,717.34],[376.79,727.04],[382.99,721.38],[398.92,727.12],[411.63,725.19],[420.65,720.2],[434.02,722.77],[443.46,727],[458.27,724.3],[476.08,720.89],[481.44,719.26],[492.68,726.47],[512.27,726.71],[521.03,722.93],[535.51,720.31],[539.58,724.29],[557.11,723.18],[569.22,721.99],[580.77,726.57],[592.45,718.63],[607.2,720.9],[610.93,724.77],[630.02,721.74],[639,724.73],[656.04,723.91],[667.53,720.62],[669.54,718.95],[684.78,720.28],[699.76,723.67],[708.94,717.86],[723.92,717.55],[733.62,726.66],[748.38,720.39],[760.95,717.63],[766.63,720.39],[786.24,727.71],[791.05,717.9],[801.72,727.14],[822.93,719.28],[830.24,719.49],[836.48,723.28],[851.56,721.74],[861.76,720.82],[882.17,720.92],[894.64,719.8],[905.5,721.87],[915.59,725.79],[921.27,727.1],[932.3,726.94],[944.03,719.23],[959.19,721.75],[975.36,726.75],[988.48,727.49],[1001.38,718.12],[1013.57,719.57],[1025.47,727.52],[1030.67,719.37],[1042.79,720.98],[1060.84,723.52],[1070.75,726.7],[1076.74,722.18],[1089.78,720.7],[1109.26,722.37],[1115.32,726.27],[1126.65,726.77],[1135.71,719.48],[1148.98,718.68],[1159.86,721.94],[1176.01,724.67],[1185.65,722.23],[1196.01,719.48],[1215.79,727.52],[1219.61,727.35],[1238.22,726.58],[1253.1,720.67],[1263.85,719.08],[1276.43,724.87],[1287.87,721.04],[1293.24,719.88],[1304.85,724.55],[1319.62,717.27],[1327.13,722.86],[1339.96,727.26],[1356.65,723.38],[1365.54,722.85],[1381.36,725.55],[1392.94,724.51],[1404.43,722.81],[1418.31,719.04],[1423.99,725.94],[1438.58,725.08],[1445.64,719.12],[1465.1,726.49],[1476.65,719.14],[1486.83,720.02],[1499.4,721.36],[1514.21,726.44],[1524.17,719.97],[1529.01,717.16],[1542.24,721.6],[1557.98,721.36],[1566.05,727.47],[1583.31,722.14],[1599.18,720.34],[1603.85,718.33],[1618.65,721.96],[1632.69,721.85],[1643.7,718.47],[1658.5,722.12],[1669.96,725.94],[1673.31,720.79],[9.26,729.22],[21.29,737.37],[31.4,737.73],[43.17,732.85],[49.03,737.89],[67.87,729.36],[74.25,731.89],[91.39,730.64],[104.26,732.21],[110.16,736.81],[120.1,733.74],[136.43,733.11],[144.22,730.25],[164,735.35],[178.08,733.4],[185.43,738.38],[197.67,738.69],[210.18,739.06],[217.2,733.28],[230.59,738.75],[241.81,737.58],[254.99,739.59],[270.51,735.56],[280.32,735.2],[296.81,732.69],[304.19,738.58],[315.61,738.51],[326.67,738.27],[342.09,730.29],[356.25,730.29],[368.52,730.38],[377.08,732.73],[384.99,738.59],[399.32,729.62],[411.69,738.48],[426.14,734.67],[434.75,734.06],[451.17,729.6],[454.95,729.68],[471.11,735.37],[488.13,731.12],[499.78,733.1],[508.1,732.79],[515.8,731.62],[534.9,733.13],[542.68,731.03],[559.73,732.64],[565.83,739.44],[575.58,738.12],[587.83,731.71],[606.54,729.36],[610.49,731.82],[631.16,737],[642.42,732.82],[651.17,737.32],[664.73,739.02],[674.38,730.05],[691.58,729.53],[696.53,736.32],[713.15,729.53],[727.61,733.31],[731.4,729.36],[742.45,735.38],[758.15,738.04],[771.65,733.08],[785.71,729.85],[789.53,738.95],[809.67,732.25],[815.92,739.52],[829.31,736.28],[843.75,732.89],[856.52,735.73],[868.56,732.11],[878.69,739.61],[887.47,729.51],[897.37,738.21],[914.94,731.84],[923.92,737.33],[936.18,729.76],[950.45,730],[955.95,734.5],[969.84,733.68],[987.06,733.35],[999.03,730.55],[1004.71,738.92],[1018.9,735.11],[1031.36,731.23],[1039.71,735.6],[1059.81,731.63],[1071.1,738.64],[1083.06,733.62],[1092.9,731.03],[1102.05,730.88],[1114.31,736.81],[1123.04,737.17],[1141.27,738.92],[1149.24,739.48],[1162.28,738.43],[1180.27,729.03],[1190.35,737.53],[1201.31,737.96],[1207.98,738.52],[1218.73,737.43],[1240.65,732.61],[1251.44,739.14],[1257.09,731.89],[1274.7,732.16],[1283.82,736.38],[1298.88,738.82],[1308.15,736.12],[1314.55,737.36],[1332.63,731.93],[1338.4,729.17],[1350.44,734.24],[1364.16,738.84],[1378.45,732.93],[1394.92,730.9],[1401.4,737.25],[1411.75,737.43],[1426.33,734.64],[1433.86,734.28],[1455.92,729.99],[1459.4,733.21],[1477.81,739.14],[1482.92,730.97],[1495.38,734.61],[1511.9,737.83],[1522.53,735.83],[1531,735.85],[1542.54,732.19],[1555.05,730.66],[1564.82,736.61],[1581.91,739.47],[1590.18,734.5],[1609.67,731.99],[1622.77,733.39],[1626.41,739.41],[1646.51,736.7],[1648.83,732.47],[1660.57,730.39],[1672.74,736.61],[11.16,746.19],[16.17,748.19],[30.63,749.35],[44.13,743.92],[55.37,751.61],[70.48,751.42],[74.95,747.12],[92.43,749.17],[99.13,745.33],[117.86,743.59],[123.72,748.99],[136.32,741.67],[149.75,748.52],[160.33,749.38],[178.31,747.71],[190.09,743.05],[194.39,747.2],[213.84,750.29],[221.51,744.41],[236.77,742.61],[240.72,741.38],[261.47,751.03],[264.57,743.63],[285.25,741.75],[294.05,749.72],[304.95,748.4],[320.32,744.25],[329.42,750.86],[344.41,744.8],[354.68,749.37],[363.87,743.99],[371.35,748.65],[388.95,746.71],[401.52,750.13],[413.16,744.17],[425.21,741.29],[432.15,743.28],[445.26,742.94],[456.89,743.67],[469.47,747.52],[482.86,749.79],[492.49,749.3],[512.13,745.02],[514.18,741.2],[534.62,742.51],[540.37,750.45],[557.05,749.46],[571.74,747.73],[573.75,744.18],[586.99,749.48],[604.99,751.19],[610.63,749.8],[621.86,742.24],[636.38,742.08],[650.83,741.83],[659.09,744.15],[673.93,744.3],[687.39,750.73],[697.89,743.6],[714.95,745.4],[724.58,741.17],[737.38,748.27],[748.47,744.38],[762.44,751.61],[768.59,744.1],[779.17,746.02],[798.33,745.31],[810.11,743.14],[821.21,741.65],[824.88,748.56],[838.75,743.2],[855.78,747.72],[866.66,746.69],[876.9,745.88],[886.89,746.78],[902.55,747.42],[909.73,745.06],[924.58,742.9],[934.19,747.29],[945.75,741.36],[963.93,749.94],[971.68,744.8],[983.39,749.51],[996.22,748.94],[1012.28,750.12],[1019.36,744.35],[1036.74,744.28],[1048.37,751.57],[1054.31,741.58],[1066.64,744.15],[1081.84,746.29],[1087.14,749.69],[1104.14,745.28],[1116.09,748.87],[1129.92,744.3],[1145.53,746.03],[1156.27,748.44],[1163.16,744.04],[1179.21,743.23],[1183.83,750.51],[1194.89,746.97],[1216.14,747.93],[1223.11,746.86],[1235.94,749.4],[1252.94,749.12],[1264.64,742.48],[1270.07,741.57],[1282.24,750.19],[1290.36,745.22],[1312.76,740.99],[1321.85,749.15],[1328.39,749.45],[1347.65,742.81],[1351.91,751.02],[1364.7,742.82],[1378.6,750.86],[1392.08,747.36],[1398.45,750.88],[1409.59,744.32],[1426.5,746.15],[1440.43,746.96],[1446.82,749.99],[1457.32,746.53],[1472.54,745.17],[1490.64,749.71],[1501.43,743.8],[1509.92,748.35],[1518.85,748.24],[1532.04,746.76],[1546.61,745.1],[1558.24,743.02],[1570.03,743.29],[1581.35,744.87],[1594.97,748.48],[1610.04,743.37],[1617.84,745.56],[1628.56,750.01],[1639.73,750.92],[1657.79,746.02],[1666.18,749.07],[1676.88,745.46],[3.12,763.32],[21.78,754.27],[30.14,756.74],[38.37,757.23],[54.22,755.52],[70.51,755.08],[78.89,757.22],[84.96,761.82],[99.01,761.01],[114.5,754.2],[127.53,758.21],[133.42,757.82],[153.3,755.42],[158.16,760.64],[176.75,756.86],[188.77,761.11],[200.21,756.73],[213.76,756.4],[223.26,756.4],[237.39,761.82],[248.81,761.5],[257.74,763.43],[269.03,761.89],[283.4,760.93],[289.36,756.29],[301.14,761.64],[312.17,762.42],[332.87,759.76],[339.68,757.66],[348.33,760.11],[367.55,758.86],[375.78,762.1],[386.54,761.26],[394.77,763.04],[406.77,753.92],[423,756.53],[437.3,759.21],[443.77,758.81],[458.69,760.19],[472.5,763.42],[487.82,760.06],[495.16,753.57],[512.55,762.69],[515.11,758.35],[528.25,757.16],[548.06,755.41],[554.11,761.9],[563.47,760.45],[577.6,756.28],[591.87,755.11],[607.4,752.95],[615.44,756.08],[631.27,759.67],[639.18,753.46],[654.86,760.71],[662.59,753.06],[673.67,762.55],[687.69,755.65],[697.6,759.89],[709.74,755.73],[727.48,757.36],[738.93,761.87],[741.07,757.15],[760.66,753.65],[772.47,757.4],[777.11,755.92],[794.36,758.65],[803.36,756.44],[819.64,755.01],[827.68,753.34],[836.44,758.99],[851.16,757.62],[866.71,762.04],[881.27,758.92],[893.45,762.03],[899.42,762.04],[914.01,761.97],[922.49,760.69],[932.61,753.22],[950.95,760.42],[958.11,754.23],[971,759.85],[980.59,761.55],[1000.9,762.42],[1009.23,754.9],[1023.35,757.01],[1028.04,754.7],[1040.81,753.45],[1061.4,754.74],[1066.82,753.52],[1077.06,758.37],[1087.3,753.15],[1101.4,755.88],[1111.67,753.36],[1129.38,753.04],[1139.72,756.98],[1150.47,756.96],[1166.24,762.88],[1172.39,755.7],[1188.05,754.76],[1200.43,761.95],[1211.46,761.7],[1228.52,760.24],[1238.99,759.06],[1247.42,757.87],[1263.84,760.27],[1266.97,754.71],[1283.48,758.93],[1296.33,761.95],[1304.24,760.47],[1317.24,755.74],[1334.83,761.51],[1344.93,759.2],[1357.27,762.35],[1370.92,754.69],[1378.27,760.69],[1392.34,753.45],[1397.98,761.97],[1411.57,762.2],[1427.31,758.21],[1434.99,757.91],[1449.01,762.62],[1459.85,761.27],[1470.28,755.73],[1490.32,758.23],[1500.85,758.42],[1514.6,755.77],[1527.54,755.41],[1538.23,757.06],[1542.51,757.2],[1562.75,755.42],[1575.2,756.52],[1579.69,758.14],[1595.11,755.46],[1610.96,756.5],[1618.35,757.77],[1627.99,755.89],[1643.15,755.93],[1658.5,760.81],[1667.06,761.53],[1680,758.72],[7.8,765.52],[22.07,767.65],[28.05,771.65],[45.6,766.58],[57.58,766.2],[65.01,770.26],[76.93,769.95],[90.63,767.77],[103.56,766.55],[116.87,775.31],[126.61,773.86],[141.89,772.8],[148.43,765.77],[160.59,772.82],[174.55,767.23],[183.53,770.45],[202.19,772.42],[211.31,767.93],[224.81,765.5],[234.92,765.68],[239.77,772.21],[258.57,772.77],[273.27,764.93],[279.56,771.45],[292.7,774.29],[308.76,771.6],[314.55,774.99],[332.48,769.87],[337.75,770.11],[347.44,773.57],[361.64,766.2],[371.72,768.33],[392.74,772.29],[396.9,768.06],[412.43,765.3],[422.97,764.83],[437.68,773.55],[450.92,767.01],[460.66,774.61],[467.04,765.25],[487.44,774.76],[491.88,773.8],[512.53,766.85],[521.37,769.78],[531.76,765.74],[548.41,766.34],[556.31,766.06],[561.94,765.07],[583.02,772.77],[593.68,769.39],[602.34,769.3],[613.43,766.62],[622.94,772.18],[636.75,767],[654.08,773.32],[658.97,775.18],[675.82,768.16],[683.87,772.7],[697.79,768.92],[714.12,775.22],[718.44,766.58],[734.85,767.97],[748.95,774.94],[759.41,764.87],[767.88,764.98],[782.5,765.42],[795.05,773.17],[800.95,774.45],[822.54,765.51],[828.96,772.77],[846.29,769.49],[851.52,767.17],[868.78,774.77],[877.44,767.76],[889.27,764.79],[905.87,771.47],[913.22,766.6],[923.04,767.34],[936.97,771.29],[948.78,775.47],[958.1,770.02],[973.49,772.92],[985.68,773.53],[992.88,769.5],[1004.05,766.59],[1023.94,766.72],[1029.89,771.19],[1043.31,770.3],[1055.03,772.98],[1068,774.42],[1081.34,771.19],[1096.53,773.58],[1104.97,772.56],[1115,768.84],[1129.65,764.86],[1141.97,772.66],[1156.05,766.23],[1165.89,771.71],[1171.22,767.1],[1186.34,771.49],[1200.83,767.93],[1207.08,773.96],[1227.31,772.85],[1233.62,772.5],[1251.26,772.59],[1264.88,770.86],[1276.73,766.6],[1279.71,772.92],[1293.67,768.06],[1310.91,769.83],[1323.46,773.48],[1326.67,768.06],[1343.41,765.36],[1354.65,768.89],[1369.98,765.64],[1377.34,773.18],[1396.31,772.21],[1407.4,765.08],[1410.86,768.14],[1429.44,774.79],[1438.91,768.43],[1445.66,767.32],[1465.66,772.66],[1472.69,774.48],[1487.82,768.13],[1499.75,769.01],[1513.29,770.06],[1520.32,771.91],[1532.17,775.05],[1541.64,772.05],[1563.03,770.62],[1572.19,774.38],[1583.13,774.07],[1593.31,774.31],[1606.72,768.73],[1613.73,774.69],[1628.33,765.38],[1639.67,767.27],[1654.52,767.9],[1663.55,768.93],[1680,770.59],[7.75,785.26],[18.62,779.24],[28.31,779.37],[37.58,784],[48.45,780.64],[63.33,785],[75.47,782.12],[93.87,786.44],[100.81,787.18],[108.51,777.46],[120.4,777.29],[139.74,777.08],[144.71,785.8],[159.46,786.16],[177.85,787.44],[183.33,780.26],[194.17,782.07],[208.16,783.77],[224.34,777.03],[227.99,783.97],[244.41,778.3],[257.62,784.02],[267.93,783.86],[281.45,781.78],[290.68,787.1],[307.13,781.38],[316.77,780.63],[330.34,776.78],[344.95,786.91],[349.4,777.95],[358.92,778.85],[374.32,783.5],[392.84,781.03],[397.23,787.17],[409.8,779.09],[422.71,778.4],[439.12,780.5],[452.55,778.53],[462.13,782],[476.6,776.7],[487.79,778.06],[491.95,781.78],[506.86,785.33],[519.17,781.26],[533.06,783.08],[539.04,784.73],[551.96,780.52],[563.01,782.16],[574.33,785.69],[589.39,783.45],[606.93,785.33],[618.91,777.93],[629.1,785.98],[641.87,782.85],[647.55,777.6],[660.8,786.72],[669.85,783.05],[690.32,778.68],[699.28,778.18],[710.33,778.83],[717.03,783.76],[738.78,782.32],[749.15,787.23],[763.22,780.41],[773.53,785.19],[786.43,787.15],[794.54,779.99],[807.96,781.32],[822.85,777.47],[827.31,785.65],[839.56,781.61],[850.36,786.16],[864.13,787.42],[877.07,778.33],[885.57,779.07],[904.56,784.01],[911.82,782.08],[925.3,786.87],[939.47,780.3],[947.03,781.79],[957.27,777.12],[978.06,781.09],[981.12,782.64],[994.46,782.6],[1011.07,781.23],[1019.69,786.55],[1032.5,781.75],[1040.5,785.36],[1056.59,783.38],[1072.25,783.82],[1080.33,778.36],[1092.52,786.45],[1103.47,780.74],[1111.81,786.77],[1124.03,780.32],[1143.96,781.74],[1150.34,784.54],[1161.17,779.38],[1178.06,787.35],[1188,781.72],[1199.32,787.08],[1207.53,778.63],[1219.57,781.05],[1237.31,781.44],[1247.58,783.66],[1261.4,786.38],[1271.42,787.12],[1280.02,785.83],[1290.43,778.41],[1302.99,780.75],[1322.77,784.61],[1334.82,783.67],[1344.85,778.77],[1353.37,786.95],[1368.73,786.59],[1376.4,785.06],[1394.09,784.58],[1407.12,785.33],[1417.49,781.97],[1427.29,777.68],[1437.38,786.2],[1454.82,786.09],[1458.04,778.12],[1473.33,779.11],[1489.19,781.07],[1502.01,783.16],[1512.89,781.18],[1519.01,779.34],[1533.29,781.84],[1551.54,784.31],[1559.11,779.66],[1570.85,780.97],[1581.28,779.94],[1595.05,786.82],[1601.55,777.09],[1618.68,778.37],[1634.71,784.25],[1644.85,786.27],[1651.69,776.75],[1662.15,777.38],[1680,786.76],[10.82,797.4],[22.89,792.98],[33.62,797.18],[45.21,796.64],[57.89,790.31],[61.76,788.95],[80.38,792.34],[84.2,798.22],[105.21,792.56],[115.22,793.11],[125.63,797.08],[133.07,793.73],[150.02,794.49],[157.48,796.36],[168.87,795.9],[180.01,795.58],[193.37,791.37],[213.28,791.71],[223.27,798.16],[229.87,790.13],[248.86,798.57],[255.08,793.51],[272.69,797.94],[277.8,790.45],[295.18,799.13],[302.72,791.91],[317.44,799.21],[324.18,798.87],[343.27,794.16],[352.33,791.08],[363.18,795.32],[372.61,792.16],[389.3,792.12],[396.9,793.78],[410.73,794.08],[425.62,789.08],[433.14,796.52],[452.46,795.89],[455.55,794.11],[476.89,797.2],[483.44,794.51],[496.33,792.94],[505.42,796.97],[520.85,791.02],[528.59,790.49],[539.03,792.39],[554.23,792.32],[568.35,792.45],[573.8,791.07],[596.08,789.26],[604.96,796.45],[613.06,796.47],[632.2,788.77],[635.03,789.63],[648.71,791.11],[660.33,794.47],[672.95,795.76],[691.21,795.78],[700.24,797.75],[710.51,794.61],[724.97,790.32],[734.48,795.85],[750.47,790.96],[756.02,789.14],[773.81,794.78],[778,796.68],[795.13,789.66],[801.67,789.92],[813.61,793.6],[828.8,789.95],[839.49,793.13],[854.24,798.03],[870.4,790.8],[872.48,792.01],[886.17,798.52],[901.01,795.1],[911.2,797.93],[927.24,791.5],[935.5,798.18],[950.68,792.01],[960.02,793.7],[974.29,798.8],[980.65,794.78],[999.44,799.09],[1005.52,792.66],[1022.66,796.56],[1033.28,790.54],[1041.18,797.14],[1052.49,789.9],[1068.81,796.49],[1085.47,799.07],[1089.04,795.01],[1106.27,795.93],[1119.45,790.67],[1133.49,795.6],[1140.62,797.28],[1147.69,798.03],[1165.86,789.88],[1178.32,799],[1184.51,795.29],[1198.11,792.91],[1209.71,795.34],[1222.86,789.68],[1230.73,795],[1248.45,794.16],[1264.82,789.5],[1276.22,791.81],[1285.6,794.41],[1300.59,797.44],[1307.08,791.27],[1323.79,794.8],[1328.26,790.57],[1340.85,793.01],[1360.16,797.44],[1368.33,796.81],[1379.66,798.59],[1388.26,795.21],[1403.83,798.49],[1414.78,793.92],[1423.67,794.45],[1438.33,797.73],[1446.49,796.71],[1465.26,790.82],[1471.37,791.3],[1488.22,793.28],[1498.46,791.29],[1508.84,792.39],[1526.09,798.81],[1535.95,796.18],[1544.63,798.98],[1561.01,795.82],[1571.69,789.94],[1587.41,798.64],[1594.73,789.38],[1607.57,792.72],[1620.5,793.66],[1627.02,793.58],[1640.23,794.95],[1658.83,792.26],[1667.22,790.12],[1672.51,789.89],[10.12,810.26],[20.48,805.44],[30.53,803.07],[44.25,810.17],[53.74,810.32],[66.19,805.38],[76.59,801.09],[86.52,808.95],[100.48,811.18],[118.55,801.48],[126.82,806.91],[138.23,806.95],[150.35,808.14],[165.55,805.46],[170.92,802.17],[185.61,805.31],[197.34,800.61],[209.52,805.6],[224.74,807.05],[233.81,807.95],[248.99,807.74],[258.01,808.85],[267.52,802.92],[284.48,808.64],[291.06,802.84],[309.3,810.63],[313.54,807.63],[326.85,810.34],[345,811.18],[352.11,804.1],[364.04,807.32],[378.38,806.8],[383.94,810.19],[397.85,804.54],[409.3,804.23],[429.16,811.25],[437.23,802.37],[447.33,801.88],[458.53,810.82],[476.76,801.84],[486.81,803.99],[497.43,808.81],[504.17,802.54],[517.14,809.22],[534.4,811.03],[547.14,801.03],[557.78,810.54],[572.08,802.16],[579.62,800.93],[595.22,803.35],[599.92,810.46],[612.52,806.3],[626.88,807.79],[638.03,805.32],[655.56,805],[666.38,808.33],[679.86,802.77],[684.77,806.5],[695.59,801.21],[713.52,810.55],[724.05,805.57],[729.51,805.39],[746.21,805.76],[761.69,804.4],[774.72,808.28],[785.86,802],[790.42,804.29],[805.09,805.49],[819.65,811.21],[832.93,810.41],[843.72,811],[848.51,804.97],[866.11,809.78],[880.5,803.17],[887.9,802.59],[905.02,806.33],[909.76,800.86],[928.56,808.25],[934.85,801.79],[944.29,807.32],[964.85,806.02],[969.19,806.14],[980.61,807.63],[995.5,805.04],[1009.94,807.75],[1017.33,804.31],[1032.4,804.59],[1045.69,806.89],[1060.05,808.99],[1069.35,807.06],[1081.64,808.84],[1095.98,806.06],[1106.26,809.21],[1114.92,810.65],[1130.8,808.54],[1135.8,802.63],[1151.29,805.47],[1159.91,807.52],[1174.69,805.39],[1184.03,803.81],[1197.44,800.92],[1210.39,804.64],[1219.88,804.99],[1232.83,805.12],[1252.26,808.61],[1257.07,804.33],[1273.79,804.54],[1285.88,807.97],[1295.8,809.02],[1303.45,807.44],[1320.23,803.92],[1328.88,803.97],[1339.59,805.91],[1360.07,801.29],[1366.81,810.03],[1374.94,810.48],[1394.27,810.58],[1399.51,808.86],[1417.19,801.45],[1428.22,800.82],[1440.99,801.17],[1449.08,809.28],[1465.51,811.22],[1475.77,801.4],[1490.63,802.45],[1501.24,803.95],[1509.89,810.79],[1526.3,806.3],[1535.86,808.63],[1546.41,804.34],[1553.2,806.91],[1575.06,808.88],[1577.29,805.69],[1589.06,804.48],[1607.45,806.92],[1617.75,807.19],[1634.56,809.92],[1639.77,804.51],[1649.07,802.68],[1662.35,810.5],[1676.14,802.74],[2.76,812.88],[12.85,820.7],[24.64,821.77],[41.37,815.33],[51.83,822.36],[70.48,815.98],[79.08,817.52],[90.45,819.16],[101.62,823.04],[108.63,818.96],[128.75,814.6],[135.32,814.54],[152.69,821.02],[163.37,822.82],[177.07,813.71],[183.64,816.69],[195.96,820.51],[211.31,813.37],[218.02,818.06],[229.56,820.88],[246.45,820.69],[258.43,815.58],[267.47,822.95],[279.19,813.24],[292.45,818.99],[304.3,814.91],[320.25,818.2],[328.91,820.6],[342.19,823.18],[353.68,813.92],[368.48,813.23],[379.82,821.88],[386.56,817.71],[403.01,821.04],[415.32,819.6],[420.17,815.94],[432.1,818.69],[448.08,821.32],[462.26,822.8],[473.31,817.57],[483.13,819.85],[491.54,814.13],[503.45,815.15],[522.9,815.46],[533.54,814.17],[547.36,821.14],[553.45,820.73],[567.42,815.9],[581.17,817.28],[589.01,814.88],[597.87,819.71],[617.83,821.54],[621.6,816.18],[642.2,818.66],[647.42,823.08],[660.1,812.9],[677.03,821.66],[689.51,816.37],[697.66,819.79],[711.47,814.55],[722.71,813.52],[731.81,820.9],[745.5,822.24],[757.87,815.6],[766.46,818.72],[786.75,814.25],[798.46,813.45],[810.43,823.03],[816.04,821.44],[825.18,818.74],[846.44,819.69],[854.89,820.04],[865.39,819.77],[881.14,821.47],[886.28,820.03],[903.47,819.78],[909.05,818.41],[927.42,821.6],[937.18,816.79],[948.88,813.98],[965.51,815.54],[970.98,820.03],[989.06,821.18],[999.91,816.31],[1013.33,813.27],[1021.84,815.63],[1036.84,822.89],[1049.94,813.51],[1061.38,818.43],[1069.74,822.7],[1075.95,822.29],[1088.91,814.4],[1102.82,815.05],[1111.57,817],[1123.71,822.03],[1137.27,816.88],[1149.58,820.36],[1161.73,821.06],[1180.28,819.72],[1185.89,820.61],[1201.27,821.11],[1209.67,813.6],[1225.41,814.17],[1236.04,821.58],[1242.7,812.78],[1261.6,818.56],[1274.52,813.74],[1281.81,822.1],[1294.45,813.48],[1305.37,823.18],[1315.04,817.11],[1332.77,818.21],[1341.08,817.42],[1356.79,812.55],[1370.21,819.81],[1374.3,815.52],[1390.2,818.94],[1401.1,814.63],[1416.39,817.73],[1431.96,816.13],[1443.28,817.55],[1449.27,820.01],[1460.74,819.86],[1477.55,814.46],[1487.35,821.35],[1502.13,815.01],[1508.76,815.14],[1519.22,822.66],[1531.63,816.73],[1545.15,813.49],[1553.8,822.11],[1570.8,817.73],[1582.2,814.36],[1589.39,822.59],[1605.81,817.38],[1620.98,818.28],[1634.1,816.18],[1641.02,822.83],[1654.46,815.92],[1668.85,818.52],[1676.89,816.29],[9.34,828.58],[15.56,832.13],[25.57,828.17],[45.44,832.11],[55.35,835.1],[65.77,832.42],[81.72,833.3],[93.38,827.49],[105.13,825.89],[114.08,832.03],[121.31,832.35],[142.28,825.05],[152.38,824.98],[162.5,833.99],[173.62,831.96],[183.52,826.22],[198.79,830.78],[205.77,830.51],[222.89,834.46],[233.05,832.4],[240.43,826.4],[254.12,825.88],[269.84,829.73],[278.46,831.75],[289.92,827.74],[304.36,824.96],[316.07,833.62],[329.83,833.22],[345.48,834.82],[352.5,832.73],[367.31,834.32],[372.9,825.47],[389.84,828.22],[397.35,829.88],[408.79,834.07],[419.25,824.69],[434.29,828.13],[449.73,825.46],[462.77,830.84],[474.24,831.88],[478.69,831.88],[498.68,826.79],[510.69,826.3],[522.11,826.19],[535.61,825.45],[538.64,830.89],[552.26,829.39],[572.12,834.29],[577.51,824.97],[587.49,827.79],[601.9,824.76],[614.54,824.82],[626.33,829],[640.81,833.43],[653.64,834.43],[657.49,826.99],[670.46,824.85],[690.9,832.57],[694.89,828.39],[714.92,832.39],[718.8,830.31],[735,826.97],[751.31,830.23],[762.31,825.01],[766.22,828.03],[781.91,824.85],[797.88,832.68],[803.56,827.46],[819.65,833.65],[828.9,826.7],[842.85,833.8],[852.31,830.11],[868.83,834.46],[875.52,829.27],[891.58,825.09],[902.86,830.37],[916.82,825.36],[923.09,826.9],[939.19,825.78],[945.6,831.7],[965.02,828.69],[970.35,830.52],[984.89,828.56],[994.63,835.02],[1010.83,833.24],[1021.77,830.35],[1035.63,825.44],[1045.87,827.08],[1057.3,827.25],[1064.4,827.36],[1084.54,828.2],[1088.35,833.87],[1100.23,831.87],[1112.9,831.14],[1127,834.24],[1144.12,824.66],[1149.17,834.94],[1162.71,824.88],[1170.81,826.87],[1185.94,827.68],[1199.84,834.05],[1216.13,829.06],[1225.05,824.89],[1236.28,828.98],[1243.88,826.82],[1264.77,834.84],[1268.43,825.35],[1281.44,825.28],[1292.24,827],[1309.48,825.44],[1318.56,832.04],[1331.66,824.53],[1344.76,828.6],[1357.81,834.88],[1366.31,834.39],[1378.89,832.4],[1387.35,834.88],[1400.32,828.28],[1415.51,831.17],[1430.72,825.45],[1437.86,826.42],[1451.78,831.98],[1459.38,825.07],[1476.14,827.98],[1482.82,832.05],[1496.07,833.38],[1506.93,835.03],[1522.38,827.63],[1537.89,826.35],[1545.6,833.34],[1560,832.45],[1568,826.06],[1581.46,827.65],[1593.28,832.35],[1607.52,825],[1614.74,830.31],[1624.57,829.45],[1642.56,834.14],[1651.6,834.15],[1669.37,828.08],[1675.28,834.23],[9.35,836.56],[20.24,838.74],[28.06,841.84],[46.71,837.27],[53.32,843.43],[67.54,839.83],[74.34,837.58],[89.14,840.99],[103.35,845.2],[111.96,838.6],[124.48,840.04],[135.93,839.69],[146.78,843.21],[158.01,838.98],[177.09,846.18],[187.99,840.97],[199.9,843.21],[207.69,839.23],[225.73,843.29],[229.87,845.04],[245.78,844.31],[255.01,847.13],[271.65,838.85],[278.91,843.06],[294.67,843.41],[300.36,839.43],[320.34,843.98],[323.93,840.29],[344.63,845.71],[353.27,836.57],[362.83,847.1],[381.1,845.77],[384.76,844.2],[398.09,841.95],[416.25,845.81],[428.9,840.77],[432.04,838.04],[449.1,845.28],[458.35,839.27],[476.33,837.26],[480.44,839.76],[499.85,844.22],[503.35,839.37],[517.58,841.65],[531.76,842.95],[540.1,843.04],[555.96,845.54],[571.08,846.78],[578.5,841.59],[586.03,839.23],[601.59,838.95],[609.54,844.57],[621.9,842.74],[642.74,846.48],[653.5,837.87],[661.51,846.74],[676.44,846.58],[685.62,838.31],[693.29,840.72],[707.46,844.98],[722.93,836.49],[736.45,841.67],[748.26,845.02],[753.55,846.69],[769.13,846.27],[782.82,842.89],[795.62,837.86],[803.23,840.93],[822.04,844.07],[827.29,838.28],[843.61,846.27],[851.42,844.09],[868.29,845.89],[882.66,840.39],[885.04,843.36],[903.82,841.04],[910.05,838.49],[927.42,841.66],[937.93,837.5],[952.02,838.3],[962.78,846.53],[968.7,843.62],[985.36,845.03],[995.71,838.47],[1010.81,839.19],[1016.28,837.38],[1030.38,841.04],[1048.59,844.12],[1055.49,844.17],[1067.06,840.88],[1084.01,845.23],[1097.55,846.98],[1101.52,836.93],[1120.49,845.07],[1123.87,838.16],[1138.95,837.92],[1156.33,843.15],[1165.96,837.41],[1179.99,846.7],[1184.06,836.56],[1195.46,845],[1213.41,838.66],[1218.48,846.28],[1232.03,837.22],[1252.05,842.26],[1262.84,842.55],[1268.03,846.61],[1286.56,842.04],[1294.34,839.65],[1311.4,838.12],[1322.57,842.18],[1328.73,838.71],[1342.84,842.67],[1358.39,846.27],[1370.2,838.31],[1375.92,836.55],[1388.77,842.96],[1398.5,844.19],[1412.21,846.87],[1429.49,836.6],[1438.87,843.52],[1453.39,843],[1464.64,839.45],[1476.72,845.07],[1491.17,844.61],[1493.29,843.56],[1515.37,845.6],[1523.58,844.14],[1537.66,839.19],[1546.41,841.67],[1562.91,845.35],[1566.91,840.47],[1584.87,840.5],[1591.11,842.12],[1606.45,839.74],[1612.89,841.45],[1630.23,842.05],[1639.52,843.4],[1653.11,838.71],[1663.03,843.18],[1680,842.83]],"features":[0,{"i":1,"land":false,"border":true,"type":"ocean"},{"i":2,"land":true,"border":false,"type":"island"},{"i":3,"land":false,"border":false,"type":"lake"},{"i":4,"land":true,"border":false,"type":"island"},{"i":5,"land":true,"border":false,"type":"island"},{"i":6,"land":true,"border":false,"type":"island"},{"i":7,"land":true,"border":true,"type":"island"},{"i":8,"land":false,"border":false,"type":"ocean"},{"i":9,"land":true,"border":false,"type":"island"},{"i":10,"land":true,"border":false,"type":"island"},{"i":11,"land":true,"border":false,"type":"island"},{"i":12,"land":true,"border":false,"type":"island"},{"i":13,"land":false,"border":false,"type":"ocean"},{"i":14,"land":true,"border":false,"type":"island"},{"i":15,"land":true,"border":false,"type":"island"},{"i":16,"land":true,"border":false,"type":"island"},{"i":17,"land":true,"border":false,"type":"island"},{"i":18,"land":true,"border":false,"type":"island"},{"i":19,"land":false,"border":false,"type":"lake"},{"i":20,"land":true,"border":false,"type":"island"},{"i":21,"land":true,"border":false,"type":"island"},{"i":22,"land":true,"border":false,"type":"island"},{"i":23,"land":true,"border":true,"type":"island"},{"i":24,"land":true,"border":false,"type":"island"},{"i":25,"land":false,"border":false,"type":"ocean"},{"i":26,"land":true,"border":true,"type":"island"},{"i":27,"land":false,"border":false,"type":"ocean"},{"i":28,"land":false,"border":false,"type":"lake"},{"i":29,"land":false,"border":false,"type":"lake"},{"i":30,"land":true,"border":true,"type":"island"},{"i":31,"land":false,"border":false,"type":"ocean"},{"i":32,"land":true,"border":false,"type":"island"},{"i":33,"land":true,"border":false,"type":"island"},{"i":34,"land":true,"border":false,"type":"island"},{"i":35,"land":true,"border":false,"type":"island"},{"i":36,"land":false,"border":false,"type":"ocean"},{"i":37,"land":false,"border":false,"type":"ocean"},{"i":38,"land":true,"border":false,"type":"island"},{"i":39,"land":true,"border":false,"type":"island"},{"i":40,"land":false,"border":false,"type":"ocean"},{"i":41,"land":false,"border":false,"type":"ocean"},{"i":42,"land":false,"border":true,"type":"ocean"},{"i":43,"land":true,"border":false,"type":"island"},{"i":44,"land":true,"border":false,"type":"island"},{"i":45,"land":true,"border":false,"type":"island"},{"i":46,"land":false,"border":false,"type":"lake"},{"i":47,"land":false,"border":true,"type":"ocean"},{"i":48,"land":true,"border":false,"type":"island"},{"i":49,"land":false,"border":true,"type":"ocean"},{"i":50,"land":false,"border":false,"type":"lake"},{"i":51,"land":true,"border":true,"type":"island"},{"i":52,"land":false,"border":true,"type":"ocean"},{"i":53,"land":false,"border":true,"type":"ocean"},{"i":54,"land":false,"border":false,"type":"lake"},{"i":55,"land":false,"border":false,"type":"lake"}],"cellsDesired":10000}
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,7,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,1,0,0,0,0,0,1,2,4,7,8,6,6,6,5,3,3,3,5,9,9,10,9,7,5,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,8,11,10,8,6,3,1,1,0,1,3,5,5,5,7,7,7,6,7,7,8,9,10,11,10,12,10,11,10,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,9,11,10,12,11,10,9,6,7,7,7,3,3,3,4,4,3,3,4,5,3,4,5,9,12,16,22,34,39,41,34,29,24,18,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,9,10,9,10,8,7,5,7,7,9,9,8,7,5,5,5,5,3,1,3,5,4,7,10,12,17,30,45,57,60,71,55,56,51,31,15,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,7,6,8,0,2,12,13,15,13,12,5,7,6,12,13,11,9,9,9,7,3,1,0,2,5,9,18,29,22,28,33,51,50,41,52,44,41,39,36,29,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7,7,4,12,17,8,40,33,21,36,39,30,18,7,12,15,14,12,12,12,6,1,1,2,8,12,30,51,47,42,38,45,49,47,40,43,65,67,57,53,42,22,13,9,13,12,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,8,8,1,3,26,37,39,38,44,37,59,55,52,36,38,26,13,11,14,14,9,1,0,0,1,14,18,26,43,41,46,66,44,70,63,55,60,70,64,64,53,39,41,33,28,21,19,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,7,5,6,12,3,12,42,53,61,65,59,61,63,71,39,62,58,43,19,16,9,3,0,0,0,0,8,13,35,35,52,63,46,44,70,66,66,58,61,52,59,57,49,43,34,34,20,10,10,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,14,11,8,9,10,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,0,3,6,4,5,26,31,34,74,61,75,69,66,71,84,76,72,78,56,51,45,31,1,1,3,11,12,2,51,31,26,50,38,61,50,44,65,60,57,51,50,53,51,53,49,43,36,19,16,14,13,10,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,4,7,6,5,5,7,3,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,5,4,6,12,15,17,55,64,42,43,57,85,87,87,92,79,66,50,44,51,52,41,7,7,39,45,43,33,18,35,37,18,28,54,44,53,56,51,52,55,53,54,48,25,34,34,29,18,16,13,16,14,12,13,14,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,11,11,8,3,5,10,9,9,5,8,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,5,7,16,25,42,49,47,47,56,65,49,69,82,93,71,57,36,36,46,53,41,9,11,29,40,44,50,26,37,29,53,44,14,39,62,73,77,81,72,58,60,55,41,45,67,53,38,17,29,18,16,17,13,14,13,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4,10,9,10,11,7,5,8,10,9,5,20,9,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,26,27,31,44,60,68,76,88,88,66,60,59,48,48,46,46,44,25,7,0,24,33,37,51,47,62,57,39,46,50,38,37,72,92,90,89,82,70,59,41,58,59,55,37,37,43,44,18,17,18,18,29,39,16,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,3,1,1,0,0,5,10,12,12,6,3,1,8,7,14,18,8,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,7,8,14,1,16,39,47,52,57,77,77,68,54,54,62,54,51,49,53,46,44,8,3,34,57,57,59,55,49,55,50,47,54,62,63,82,97,97,94,88,80,72,56,59,53,45,44,54,50,45,21,33,29,45,49,37,24,13,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,5,2,0,2,13,11,9,5,2,4,0,0,0,3,12,14,13,6,4,3,7,13,24,19,12,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,12,18,27,7,14,39,31,37,48,55,68,45,46,50,55,64,61,57,62,55,9,22,54,31,62,76,76,69,66,70,65,64,75,84,86,91,97,100,98,93,88,83,76,72,68,60,53,48,47,30,50,45,52,53,35,21,16,16,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,8,11,11,13,9,4,2,11,11,9,8,10,10,3,0,0,1,13,13,11,13,5,9,13,17,22,15,18,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,5,12,33,46,28,0,35,34,49,41,36,44,22,40,51,77,91,76,76,57,11,9,58,50,37,46,61,78,82,81,83,82,80,84,90,95,97,100,100,100,97,93,90,86,85,82,70,59,47,41,49,56,60,51,39,28,14,13,12,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,13,13,10,12,10,10,3,9,11,10,10,10,9,8,0,0,3,12,19,14,22,15,7,16,28,27,18,26,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,8,5,2,17,37,65,45,15,2,3,22,14,16,14,36,54,79,89,85,73,64,26,6,44,53,40,38,26,51,71,81,87,89,91,91,93,97,100,100,100,100,100,100,97,95,93,91,87,78,55,36,37,55,37,56,37,28,11,7,10,9,11,8,1,0,0,0,0,0,0,0,0,0,0,0,0,11,9,14,14,21,14,13,13,12,12,7,5,13,14,10,9,11,10,4,2,3,14,18,18,29,12,10,16,13,18,16,34,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,14,13,4,23,44,66,61,39,22,3,19,13,22,49,69,88,88,87,67,49,36,5,18,46,40,41,46,46,59,69,79,86,92,96,98,99,100,100,100,100,100,100,100,100,98,96,93,88,81,62,39,39,43,41,51,42,23,8,9,11,11,9,7,1,0,0,0,0,0,0,0,0,0,0,3,12,14,12,8,20,31,26,22,27,22,16,9,9,17,17,10,15,14,9,4,1,2,1,14,22,15,9,28,13,18,26,16,10,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,7,22,9,27,41,69,87,57,31,16,31,30,33,55,80,81,76,59,57,48,16,9,14,17,26,43,53,70,74,77,83,88,93,98,100,100,100,100,100,100,100,100,100,100,100,97,93,88,82,72,60,43,51,48,43,37,7,13,12,11,12,10,9,2,0,0,0,0,0,0,0,0,0,0,9,15,16,14,24,20,45,43,37,51,46,18,8,10,15,11,10,10,9,4,2,2,4,5,3,8,16,16,6,3,10,10,14,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,1,0,0,5,12,20,37,53,72,67,49,26,24,39,44,39,53,59,50,50,40,20,10,12,11,6,24,52,67,78,84,86,89,93,97,100,100,100,100,100,100,100,100,100,100,100,100,97,92,86,79,72,65,44,32,29,28,15,9,14,10,7,9,9,7,3,0,0,0,0,0,0,0,0,0,5,26,39,25,29,54,26,28,34,44,48,26,11,6,10,6,3,4,5,4,4,4,3,7,10,5,5,8,6,2,5,7,8,8,9,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,15,2,1,0,1,7,18,18,34,51,62,46,25,36,51,50,61,44,30,29,12,7,9,7,7,12,48,65,76,83,89,92,95,98,100,100,100,100,100,100,100,100,100,100,100,100,100,97,92,86,77,69,64,53,33,48,24,12,11,16,12,9,8,10,8,0,0,0,0,0,0,0,0,0,0,12,18,48,44,44,59,43,17,19,19,22,11,7,7,8,10,8,6,5,5,5,7,4,8,14,11,5,2,4,7,9,9,9,8,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,7,2,0,0,0,15,23,19,11,4,5,1,5,39,65,63,59,36,24,22,32,54,72,62,50,24,5,6,5,20,30,44,67,76,83,89,93,97,99,100,100,100,100,100,100,100,100,100,100,100,100,100,100,98,93,87,80,72,66,60,46,27,19,16,9,15,14,7,6,8,9,1,0,0,0,0,0,0,0,0,0,10,14,36,53,47,55,58,35,18,13,10,11,12,16,14,10,6,5,6,7,10,9,3,7,8,9,4,3,4,7,8,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,7,18,18,9,1,0,7,19,26,20,2,25,15,7,20,44,56,34,26,49,44,36,74,80,77,67,39,0,11,34,41,49,68,80,86,90,94,98,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99,95,89,81,73,69,65,49,19,18,12,6,16,12,8,7,6,9,3,0,0,0,0,0,0,0,0,0,4,19,33,47,31,42,53,29,25,15,12,13,14,11,8,5,6,9,10,10,9,5,6,9,6,7,5,6,6,6,7,8,10,10,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,3,9,10,14,16,14,2,1,5,18,17,22,8,17,21,13,3,30,26,18,33,42,42,43,74,77,57,41,7,1,57,64,62,79,86,90,94,97,99,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,97,90,81,73,71,65,51,18,26,10,2,12,10,10,9,8,7,3,0,0,0,0,0,0,0,0,0,2,9,13,27,26,39,40,14,29,18,14,9,5,4,5,8,11,10,13,12,8,7,8,6,5,5,6,7,7,6,7,9,10,8,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,6,7,14,18,18,19,10,0,6,1,1,11,16,13,14,18,13,4,0,3,7,14,24,38,34,75,56,33,16,0,6,32,52,66,81,78,89,96,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99,93,87,81,75,62,42,26,20,14,2,1,2,8,8,8,7,7,0,0,0,0,0,0,0,0,0,0,11,12,26,34,42,26,15,28,33,17,12,10,5,7,10,10,11,12,9,7,8,7,4,6,6,3,8,8,7,7,7,8,5,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,8,9,14,16,11,19,21,7,0,7,16,4,10,7,6,12,17,22,16,10,14,11,30,16,26,39,59,49,19,3,0,8,16,17,51,35,39,69,90,99,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,98,93,88,78,59,37,35,29,14,8,3,3,8,5,7,5,5,0,0,0,0,0,0,0,0,0,0,1,13,17,31,40,24,13,30,28,18,10,11,10,9,10,11,9,10,7,9,9,7,5,7,7,5,3,4,4,3,7,10,6,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,8,13,20,20,14,9,4,2,0,0,3,18,10,4,8,11,11,14,13,9,10,14,7,28,45,44,40,45,39,2,0,0,0,0,42,46,35,47,76,91,98,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,97,91,81,51,37,47,35,15,9,7,7,5,0,5,9,1,0,0,0,0,0,0,0,0,0,0,0,9,14,37,37,12,12,16,16,14,14,10,9,9,10,10,12,12,10,9,9,7,7,7,7,6,3,2,2,7,10,11,9,9,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,14,20,22,23,13,19,1,1,12,5,10,10,7,6,8,4,11,32,31,14,12,23,38,52,63,50,45,61,44,31,10,0,5,1,18,48,51,79,84,87,89,90,94,99,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99,80,56,20,22,20,11,9,9,9,5,3,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,11,14,28,12,11,16,13,16,16,13,9,7,7,11,11,10,9,9,9,9,7,6,9,7,5,3,4,9,11,12,10,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,15,19,23,15,18,16,16,6,9,22,13,6,13,22,21,23,27,14,13,27,27,37,28,21,18,33,19,17,29,39,7,7,0,0,0,7,38,54,48,42,43,57,71,81,91,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,80,55,41,22,17,12,5,6,9,7,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,7,7,9,12,16,14,12,9,5,5,7,5,6,7,9,7,7,7,5,10,9,6,5,10,13,14,14,11,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,12,16,24,14,16,38,31,35,9,16,23,24,12,19,21,30,31,18,13,16,12,28,22,13,1,0,1,5,0,16,11,5,2,1,1,0,5,20,4,3,3,14,26,65,81,94,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,88,71,57,45,9,9,13,6,5,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,10,13,16,16,14,12,8,7,3,3,5,7,8,7,6,5,3,5,7,7,9,7,8,12,13,13,13,18,29,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,15,23,35,45,41,18,18,29,25,14,13,18,18,29,18,18,20,10,29,32,26,28,27,60,78,54,3,1,2,0,0,0,0,0,1,1,3,2,1,9,26,69,87,98,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99,89,66,62,18,3,8,9,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,9,13,16,16,15,13,11,7,4,2,4,8,10,10,10,7,8,5,4,4,5,7,6,10,12,12,10,16,48,59,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12,27,18,28,23,28,24,22,15,15,12,15,24,14,22,30,10,31,38,39,46,53,61,74,57,10,1,1,0,0,0,0,0,0,5,8,9,0,1,14,50,76,92,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,93,67,48,12,15,5,11,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,14,16,16,14,11,9,5,2,1,5,10,10,10,9,9,9,7,4,5,6,7,9,11,10,9,15,47,55,32,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3,5,0,0,0,0,19,32,16,8,7,8,9,10,12,13,10,12,13,20,11,16,29,24,40,37,27,38,36,3,1,0,0,0,0,0,0,0,0,0,2,0,0,10,27,65,87,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99,95,85,71,38,18,7,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,12,15,13,12,8,4,1,1,3,8,7,7,7,10,11,9,8,5,5,9,9,11,11,9,11,19,46,31,12,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,9,18,28,31,18,18,14,0,0,0,0,0,0,0,0,3,7,11,15,12,9,16,18,10,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,18,59,85,98,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99,80,74,60,46,49,13,9,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,13,13,7,3,1,0,1,1,3,6,5,5,7,8,9,7,5,3,4,6,8,11,9,10,15,36,41,14,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,15,17,25,29,25,36,34,13,3,5,9,13,14,18,16,5,14,23,24,22,11,35,36,37,9,7,32,31,8,18,11,24,9,0,0,0,0,0,0,0,0,0,0,0,2,3,14,43,79,95,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,91,85,58,52,50,34,11,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,2,0,0,0,0,1,1,2,3,4,6,7,7,8,5,3,2,3,5,7,8,8,14,30,42,24,6,6,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,14,19,27,24,26,29,24,23,19,9,9,8,17,19,20,5,15,18,27,19,15,39,36,21,2,34,42,9,42,55,36,59,66,18,0,0,0,0,0,0,0,0,0,1,2,0,8,31,68,90,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,87,72,54,37,19,7,3,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,3,5,5,7,7,7,7,5,3,3,3,2,4,6,7,11,16,41,35,10,2,11,14,0,0,0,0,0,0,0,0,0,0,0,0,0,2,12,17,20,25,26,26,21,28,30,22,31,17,24,16,29,16,6,20,18,21,22,13,29,17,5,10,33,30,36,43,51,43,11,19,31,3,0,0,0,0,0,0,0,0,0,0,9,8,25,52,89,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,91,69,62,34,27,6,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,3,4,5,4,5,6,6,7,8,7,4,2,4,5,5,6,8,10,13,26,42,21,6,7,12,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,17,27,34,31,22,22,32,32,31,33,40,35,17,28,18,8,13,18,23,24,8,31,13,3,17,31,34,18,37,40,29,34,60,70,39,9,0,0,0,0,0,0,0,0,0,5,7,30,62,84,98,100,100,100,100,100,100,100,100,100,100,100,100,100,99,82,75,78,42,16,6,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,2,4,6,7,7,5,4,5,6,7,7,6,4,3,6,6,6,8,11,13,16,32,39,13,5,12,12,13,0,0,0,0,0,0,0,0,0,0,0,0,5,7,3,3,12,34,29,13,19,31,29,37,39,37,33,22,25,22,12,9,14,22,16,11,26,15,5,18,31,31,22,29,34,37,51,51,54,50,21,18,3,0,0,0,0,0,0,0,4,9,31,34,65,74,98,100,100,100,100,100,100,100,100,100,100,100,100,90,67,58,76,44,19,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,6,3,1,4,5,2,3,3,4,5,7,7,4,2,3,6,9,14,15,14,13,16,24,30,16,5,10,14,14,13,0,0,0,0,0,0,0,0,1,9,14,16,16,11,1,2,11,8,10,15,37,42,36,35,36,31,26,24,22,16,14,13,11,12,29,40,19,9,14,20,22,22,26,27,27,31,39,49,51,56,57,13,9,0,0,0,0,0,0,3,2,3,6,22,63,93,100,100,100,100,100,100,100,100,100,100,100,100,98,62,80,17,29,39,4,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,9,9,7,15,18,18,10,3,7,7,10,9,7,5,10,12,11,10,10,12,13,12,17,26,24,11,10,13,13,18,17,16,14,12,4,0,0,6,15,15,16,16,17,15,5,7,0,0,3,3,12,16,15,18,26,29,29,29,25,19,17,18,10,13,26,42,36,13,12,18,24,37,30,30,24,19,32,44,50,51,55,48,32,11,0,0,0,0,0,0,3,10,35,58,40,80,100,100,100,100,100,100,100,100,100,100,100,100,86,63,66,4,8,18,4,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,10,10,29,36,25,37,36,29,3,7,9,10,10,9,12,15,14,14,13,14,14,13,12,13,16,17,17,12,10,25,24,28,25,19,15,15,11,16,17,17,18,18,18,21,10,18,13,9,0,0,21,34,38,33,28,25,24,28,24,21,19,16,12,17,19,28,24,16,14,12,11,13,21,18,19,20,18,33,40,63,50,54,44,22,9,0,0,0,0,3,9,18,65,34,20,70,95,100,100,100,100,100,100,100,100,100,100,100,100,92,75,89,57,13,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,18,30,39,42,44,44,37,32,16,17,10,8,11,12,10,12,13,14,14,14,16,15,15,15,15,16,16,18,17,14,39,56,75,88,75,64,42,16,18,18,19,19,20,28,34,34,30,38,54,37,12,8,17,19,28,27,28,26,17,19,19,18,16,17,22,18,18,21,29,17,16,11,16,36,21,16,16,17,18,29,39,44,50,51,26,14,0,0,0,0,2,8,9,20,5,18,54,86,100,100,100,100,100,100,100,100,100,100,100,98,100,100,46,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,16,30,48,61,48,42,38,32,28,31,31,19,19,10,10,11,12,14,16,15,16,19,18,16,16,16,17,17,18,18,30,61,82,82,75,68,55,47,39,30,19,26,27,31,31,34,32,36,45,53,53,38,28,23,18,24,24,18,18,24,18,15,16,18,17,19,20,18,19,30,18,24,14,27,38,24,17,17,16,17,18,22,35,42,39,13,0,3,0,0,0,3,3,4,1,18,32,69,88,100,100,100,100,100,100,100,100,100,55,88,75,66,26,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,12,31,36,57,59,52,44,44,39,32,31,27,25,29,32,34,20,13,15,16,19,16,16,17,16,17,18,18,18,18,19,19,24,72,68,61,56,47,47,37,51,66,26,23,33,34,29,34,33,39,44,47,54,34,28,27,13,11,9,16,18,22,21,18,16,16,18,20,18,21,28,31,27,21,17,38,38,29,16,17,17,20,18,17,29,40,48,59,26,14,0,0,0,1,7,14,13,27,28,69,89,100,100,100,100,100,100,100,100,99,65,18,10,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,10,14,17,51,73,51,44,40,36,37,36,37,30,39,30,32,35,35,28,16,16,17,26,17,16,19,23,19,19,24,24,28,27,28,58,54,44,39,40,41,41,44,51,32,23,24,30,35,36,36,37,41,45,39,42,41,40,43,39,39,35,23,31,28,26,23,23,22,21,19,29,34,38,38,36,18,35,37,33,16,15,16,18,17,17,21,29,44,59,85,49,14,1,0,0,7,14,20,44,43,67,89,100,100,100,100,100,100,100,100,85,12,2,8,5,3,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,10,10,11,39,65,65,49,42,31,31,33,32,36,39,34,30,31,31,31,34,26,16,18,18,17,27,22,19,21,26,28,24,25,27,27,39,34,19,29,39,51,53,43,53,38,25,28,28,29,34,38,37,41,32,30,40,41,45,47,46,46,44,35,35,34,31,30,30,28,27,25,38,39,38,43,38,26,29,29,21,14,15,16,17,17,18,21,20,28,36,63,58,53,32,0,0,0,12,10,44,48,62,92,100,100,100,100,100,89,89,86,44,4,1,2,3,0,0,12,14,7,3,5,11,10,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,2,13,53,64,60,52,38,38,30,28,29,31,37,33,24,18,19,27,31,33,22,17,18,20,19,25,29,27,19,27,25,26,26,25,26,31,41,38,34,39,52,64,49,50,47,38,38,31,24,34,39,32,34,35,29,30,39,44,44,46,48,46,42,37,36,34,31,30,29,27,30,36,40,33,33,36,28,16,17,11,12,14,16,17,17,19,24,25,30,20,23,55,45,9,0,0,0,10,17,61,71,78,97,100,100,100,100,91,74,44,27,6,4,1,2,0,0,12,27,36,13,37,36,36,26,10,3,0,0,0,0,0,0,0,0,0,0,0,1,1,5,5,22,49,62,53,44,38,28,22,21,28,33,36,34,28,24,13,11,17,16,18,21,20,22,23,26,28,24,24,25,24,22,28,27,34,39,50,57,54,48,57,66,65,64,59,76,81,68,55,40,38,35,34,34,33,32,39,43,44,43,45,45,41,38,36,33,33,33,30,29,29,31,34,36,39,26,18,21,16,7,7,14,17,21,19,23,28,34,40,33,3,22,15,6,0,0,0,1,13,29,48,79,100,100,100,100,90,56,12,7,6,5,0,0,0,0,6,13,18,29,34,51,57,51,45,15,5,0,0,0,0,0,0,0,0,0,0,0,1,4,5,11,28,58,57,46,39,38,23,16,17,22,29,34,30,29,24,18,15,14,16,26,27,21,22,24,29,31,26,23,24,25,24,33,57,40,31,34,51,69,68,61,68,80,79,80,81,89,91,83,73,46,40,38,34,43,39,35,39,43,44,44,44,41,41,38,34,31,28,26,28,25,24,27,28,28,27,16,22,36,31,6,7,21,26,19,23,31,30,42,52,46,8,4,4,2,0,0,1,9,14,36,69,100,100,100,100,88,24,1,0,1,0,0,0,0,0,1,7,12,18,47,55,74,74,40,12,3,0,0,0,0,0,0,0,0,0,0,0,3,6,7,18,37,48,47,44,41,36,18,15,19,24,29,31,33,29,27,19,18,22,19,19,25,22,25,29,28,34,33,28,28,27,29,38,38,23,69,76,64,57,59,66,55,57,65,67,61,77,86,87,82,59,40,43,37,39,39,34,37,40,44,44,43,42,41,38,37,35,33,30,29,25,23,20,22,18,15,18,22,19,17,20,8,12,9,9,11,24,44,37,44,54,24,8,7,0,0,0,0,0,11,50,75,100,100,100,100,70,12,5,3,0,0,0,0,0,0,0,3,9,16,19,48,26,15,9,0,1,0,0,0,0,0,0,0,0,0,0,0,7,8,18,33,48,51,40,38,36,25,16,18,26,29,29,30,31,33,27,26,24,22,24,22,22,25,28,29,29,30,30,30,29,29,28,43,30,24,71,68,68,73,60,57,59,60,61,65,71,71,80,86,89,80,54,40,38,36,36,35,31,36,41,40,39,42,41,37,39,35,37,36,29,28,26,22,24,14,12,14,16,14,15,9,6,11,5,8,5,10,29,44,30,29,17,9,3,0,0,0,0,0,3,18,73,100,100,100,87,36,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,14,29,49,53,63,52,41,35,22,14,18,22,29,28,26,27,29,31,29,25,29,30,24,24,22,27,30,29,30,29,28,30,29,29,30,42,28,22,80,66,50,86,89,71,59,74,65,68,76,71,73,84,87,84,63,39,36,51,40,33,31,30,33,35,40,43,42,41,39,37,37,35,30,26,23,19,15,12,11,12,11,15,14,11,17,22,34,29,36,9,11,14,26,14,10,3,0,0,0,0,0,0,0,3,42,87,100,100,83,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,16,12,2,0,0,2,1,4,14,40,71,76,63,59,50,40,30,14,13,18,28,29,28,27,25,25,29,28,21,24,28,27,28,25,23,26,30,29,28,28,28,29,30,30,39,29,24,68,76,69,69,77,97,85,82,72,66,82,79,79,75,82,66,68,40,37,34,31,30,29,29,30,38,41,44,44,42,40,40,38,38,33,27,20,15,12,12,11,9,9,9,9,12,13,18,33,42,48,34,14,5,3,7,5,0,0,0,0,0,0,0,0,0,14,55,68,81,66,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,8,0,0,5,11,8,1,18,55,73,68,55,53,48,39,26,16,13,18,24,27,26,24,24,19,19,26,23,23,31,28,30,26,29,29,27,28,29,29,31,27,30,33,46,33,26,49,15,37,53,74,95,100,78,73,75,70,72,75,63,69,67,68,43,51,48,42,40,34,34,30,36,42,45,46,43,41,40,39,37,33,27,18,14,12,12,11,9,10,10,10,14,12,17,27,33,38,38,32,16,11,9,9,4,1,0,0,0,0,0,0,0,1,9,13,53,47,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,8,17,12,12,8,13,53,77,58,41,38,39,34,24,17,17,18,22,24,20,18,19,21,18,20,30,29,28,28,30,29,28,29,28,29,29,30,30,30,29,34,48,29,24,15,14,7,7,8,16,28,61,75,75,69,68,82,69,59,65,50,46,50,48,53,41,51,42,36,36,37,39,43,42,43,43,39,38,36,28,17,15,13,12,11,9,11,12,10,13,13,17,25,29,31,33,29,16,10,9,37,12,9,0,0,0,0,0,0,0,0,0,1,7,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,12,14,14,12,13,9,10,48,66,47,28,31,29,28,21,19,16,16,16,17,18,18,19,22,21,22,30,29,29,29,29,29,30,30,30,31,31,30,30,31,29,33,48,29,24,7,0,0,0,0,1,10,28,51,55,65,71,77,83,78,87,75,48,46,43,41,42,50,40,33,33,37,42,43,41,43,42,40,37,36,28,19,17,14,12,11,10,14,11,10,12,12,21,28,30,33,34,29,23,16,25,53,27,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,13,18,17,13,11,13,11,8,43,48,16,14,26,24,24,19,14,12,14,18,20,23,21,23,23,21,28,30,28,26,29,29,29,29,29,29,28,28,30,35,31,29,34,45,30,26,1,0,0,0,0,0,0,2,15,34,45,73,76,84,86,80,92,66,54,57,53,44,48,44,55,39,46,48,46,47,43,40,41,38,36,33,26,19,16,15,14,12,14,11,11,12,16,16,27,33,35,37,34,30,28,37,53,40,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,10,17,22,30,18,14,12,14,15,12,7,7,10,14,24,34,31,18,15,13,16,18,18,23,26,23,23,22,31,30,29,28,28,26,28,27,28,28,26,30,30,31,31,31,33,39,35,29,0,0,0,0,0,0,0,0,0,30,28,57,72,81,86,89,81,77,60,61,60,51,53,53,47,44,46,46,49,47,41,40,38,36,36,32,29,21,22,19,17,16,14,11,13,13,16,17,24,34,38,39,39,35,36,41,48,44,22,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,6,14,29,45,34,15,14,14,15,16,16,17,19,18,18,29,30,17,16,11,19,22,19,29,26,27,27,33,34,31,28,28,29,27,27,27,26,26,29,28,28,29,29,33,36,40,37,31,0,0,0,0,0,0,0,0,0,5,22,33,60,66,73,78,72,76,59,55,52,52,55,52,50,50,47,44,44,44,43,39,37,36,32,31,29,27,28,28,23,18,16,14,14,14,18,14,28,36,39,42,45,42,45,44,45,43,28,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8,14,23,30,28,15,15,14,15,16,16,17,22,18,19,24,17,16,15,15,21,27,22,27,29,28,30,30,34,33,31,29,28,28,26,28,28,28,26,28,28,26,25,29,38,39,39,30,0,0,0,0,0,0,0,0,0,0,14,16,33,66,71,65,66,66,79,66,56,59,66,53,50,54,53,46,45,44,41,39,38,34,32,32,31,30,28,27,26,26,22,20,18,14,16,26,35,39,42,44,47,49,51,47,47,48,39,27,19,9,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,17,28,18,24,31,18,15,16,16,16,16,17,19,18,18,16,16,16,16,16,19,21,24,29,30,29,30,31,33,31,31,30,28,26,28,29,29,29,28,26,29,32,31,28,38,51,40,32,0,0,0,0,0,0,0,0,0,0,3,21,26,54,77,65,65,59,68,92,83,71,61,55,53,52,53,51,51,48,39,35,35,34,34,35,34,35,34,32,30,26,26,25,19,16,17,28,32,36,41,45,49,50,52,48,46,48,41,29,31,18,10,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,15,24,25,17,16,24,22,17,16,16,16,17,17,18,20,20,18,20,28,27,25,28,28,28,29,34,30,30,30,31,31,31,32,30,28,28,31,31,34,30,25,28,31,35,31,49,50,39,31,0,0,0,0,0,0,0,0,0,0,0,25,12,26,66,73,81,67,79,98,97,91,69,63,57,55,52,51,47,46,46,40,35,34,33,37,38,37,38,36,34,31,28,24,18,18,16,27,34,40,43,49,51,54,53,50,49,47,41,42,40,34,13,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,8,13,24,28,17,28,29,24,19,17,17,18,18,19,21,22,20,22,22,24,24,27,26,28,30,29,29,28,28,29,30,32,33,33,30,29,30,31,33,36,25,24,24,29,33,36,49,41,39,33,0,0,0,0,0,0,0,0,0,0,0,0,3,12,41,88,82,72,69,79,87,99,93,67,61,58,56,53,49,48,49,48,43,35,33,36,40,42,42,40,38,34,29,25,22,19,18,27,35,39,41,53,53,48,54,53,52,49,45,40,37,36,14,4,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18,26,16,14,29,30,26,23,17,17,18,19,24,32,37,24,24,24,25,28,29,28,29,29,28,28,28,27,28,29,30,32,31,28,29,28,30,31,22,22,23,25,27,29,29,42,37,39,36,0,0,0,0,0,0,0,0,0,0,0,0,0,6,27,49,79,93,77,68,78,93,95,73,61,57,55,54,53,50,51,48,50,37,35,36,41,42,42,41,39,37,30,27,26,23,24,34,37,40,44,49,51,48,47,45,40,36,30,28,14,28,13,6,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,13,13,14,26,22,19,18,20,20,25,34,39,39,43,40,43,47,38,32,35,33,34,32,32,32,31,28,27,29,30,31,30,29,30,28,28,31,22,22,20,19,24,28,31,39,36,38,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,54,34,61,72,81,80,88,87,83,65,64,69,63,59,56,52,52,44,42,35,38,39,42,44,44,37,40,37,36,34,36,36,36,38,41,43,42,45,41,29,9,12,17,9,10,15,37,16,15,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,13,14,14,16,18,21,28,26,34,37,36,37,41,48,47,46,44,43,53,42,40,38,39,37,35,31,26,26,27,28,28,28,28,26,27,22,20,19,18,18,19,26,33,38,39,34,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,34,28,66,77,66,69,79,83,77,68,63,60,61,56,55,52,45,45,38,39,40,40,44,44,33,31,42,41,39,37,37,38,42,44,48,34,45,23,37,41,24,8,3,3,34,39,31,22,8,9,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,12,12,19,24,25,30,28,27,31,37,40,50,47,45,51,49,33,38,48,35,41,59,37,33,33,30,31,28,25,28,29,28,25,25,23,18,18,18,18,18,18,24,30,33,38,31,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,36,62,54,51,61,78,81,88,81,73,62,60,59,57,53,50,46,39,41,43,43,41,30,32,23,29,44,44,42,36,39,41,44,43,46,40,39,37,30,17,16,17,2,9,14,19,20,13,12,13,9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,12,17,22,24,27,34,40,46,54,65,85,82,82,64,34,31,26,24,37,54,63,29,28,26,22,23,22,27,25,22,21,22,24,18,17,17,17,17,17,19,26,29,30,29,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,38,65,19,48,68,81,97,98,94,81,69,65,64,63,57,50,48,41,40,41,39,41,45,44,34,33,32,34,33,38,38,34,37,30,30,43,37,30,24,22,19,20,16,4,9,13,13,13,14,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,13,18,28,44,46,41,62,93,76,81,65,56,46,30,29,24,26,52,50,62,34,26,19,18,19,18,17,18,21,24,23,24,18,17,17,17,17,17,17,23,27,26,21,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,38,70,69,85,81,99,100,100,100,97,86,77,75,67,57,49,45,47,41,38,37,38,42,37,30,35,36,30,32,36,39,30,29,26,43,42,26,20,18,24,20,16,12,14,3,6,9,14,15,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,17,25,40,65,50,92,49,36,28,17,23,46,43,35,27,31,49,45,41,21,19,15,10,17,18,12,17,27,35,40,31,19,17,16,17,18,17,22,25,29,20,20,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,51,86,83,84,68,88,97,87,100,100,89,88,82,76,62,54,48,45,45,40,40,38,37,35,30,37,32,32,39,30,26,28,45,36,42,23,14,9,18,14,11,13,9,1,0,0,0,4,13,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,26,24,16,10,27,34,35,40,24,51,21,3,38,42,18,16,51,66,63,46,42,29,28,31,14,4,0,0,0,0,0,15,77,86,51,33,21,16,14,19,30,30,31,27,21,22,23
+42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,42,42,42,42,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,21,69,53,54,70,41,48,54,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,21,53,22,0,0,0,15,14,11,29,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,42,42,42,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,21,64,45,34,26,11,11,34,9,38,46,22,20,35,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,21,45,31,45,57,46,41,42,42,42,63,63,63,63,63,63,63,63,63,63,42,56,38,14,13,39,13,31,23,23,41,0,0,15,10,9,36,42,42,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,55,38,49,38,22,47,0,29,13,54,43,34,63,63,63,63,63,63,63,63,63,63,21,35,23,37,29,0,62,0,0,17,0,0,0,0,10,11,11,37,41,54,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,21,70,24,0,0,0,0,0,0,74,0,13,17,42,42,63,63,63,63,63,63,42,21,53,29,23,0,13,36,0,0,0,14,0,37,0,9,9,9,14,19,23,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,74,58,76,0,0,0,0,0,0,0,0,0,0,14,13,33,40,63,42,42,42,42,42,50,34,24,11,48,0,11,35,0,9,9,17,12,12,19,8,8,9,22,42,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,21,37,0,22,74,56,0,0,0,0,0,0,36,61,17,12,13,42,21,52,30,35,31,21,36,20,0,33,11,44,31,32,48,30,9,16,7,14,35,37,18,10,42,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,21,59,40,39,26,53,42,0,32,0,0,0,0,41,45,28,17,11,27,42,21,50,13,20,12,43,44,30,11,25,0,45,0,0,0,0,0,21,10,7,28,40,0,6,6,21,34,63,63,63,63,42,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,64,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,62,30,26,30,19,0,0,0,0,0,42,12,41,20,15,16,15,37,42,42,42,30,33,20,31,0,11,19,17,11,39,70,0,0,0,0,0,0,24,28,12,11,6,9,19,32,9,42,42,42,21,53,31,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,21,33,18,21,47,0,0,0,23,22,0,22,20,20,19,20,24,42,21,36,16,35,33,25,39,27,23,29,39,0,0,0,0,0,0,0,0,0,33,25,29,17,18,7,10,10,52,33,54,45,12,13,50,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,47,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,21,62,42,42,34,25,31,23,51,0,29,19,18,44,0,31,39,0,27,21,82,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,11,7,11,35,14,27,12,12,19,30,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,63,63,63,21,29,63,42,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,48,31,41,42,57,39,12,26,37,41,22,29,79,0,0,0,0,15,42,21,21,9,13,35,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,7,17,17,13,12,13,20,32,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,49,63,63,42,63,27,42,56,62,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,21,56,0,26,42,21,21,46,42,21,0,32,25,0,0,0,0,0,51,42,47,15,10,13,43,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,8,23,9,36,15,21,16,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,21,52,42,42,42,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,21,52,63,42,63,42,21,42,63,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,60,35,0,10,40,32,63,21,21,57,52,0,0,0,0,0,39,58,42,42,41,20,14,13,46,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,24,14,22,21,15,13,37,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,21,52,21,50,43,47,41,63,63,63,63,63,63,63,63,63,63,63,63,63,42,60,42,42,63,63,42,55,63,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,71,42,43,44,0,0,22,22,21,43,29,30,42,0,0,0,197,22,13,42,63,63,21,37,21,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,15,10,11,17,29,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,42,21,74,27,15,16,26,15,14,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,63,63,42,63,63,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,55,37,70,0,0,23,48,18,14,15,34,47,36,41,19,37,37,63,63,63,42,55,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,22,30,18,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,66,34,40,54,18,21,35,39,29,16,41,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,63,63,63,63,42,42,0,72,48,14,14,14,21,11,20,7,18,32,24,42,42,63,42,42,21,63,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,17,24,12,32,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,21,40,20,27,15,25,21,42,21,66,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,71,42,42,63,42,63,42,75,9,14,17,19,24,26,35,51,0,7,26,17,63,63,21,49,54,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,12,30,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,44,15,20,19,14,41,42,63,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,21,71,32,42,55,42,42,63,36,20,50,29,11,11,57,0,0,0,0,29,63,21,74,33,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,11,42,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,55,19,27,28,18,27,34,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,21,50,63,21,60,63,21,39,47,21,44,15,13,46,0,0,32,54,42,42,45,13,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,10,21,43,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,21,38,21,16,22,21,37,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,63,63,63,63,63,63,42,63,63,42,42,63,42,42,63,0,57,14,64,0,34,36,42,63,42,78,48,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,15,36,15,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,49,18,14,19,42,32,40,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,63,63,42,75,63,63,63,63,63,63,63,63,63,42,55,63,63,63,42,60,0,47,26,29,14,42,63,63,63,42,0,45,78,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,17,15,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,21,35,15,28,42,44,30,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,21,55,32,63,63,63,42,63,63,63,63,63,63,63,63,63,42,21,63,63,42,21,58,37,16,16,33,14,42,63,63,63,42,55,17,28,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,15,12,14,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,54,16,42,63,42,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,58,26,15,63,63,63,63,42,63,63,63,42,42,42,42,42,74,35,42,21,55,41,32,11,23,40,10,9,22,63,63,63,63,21,29,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,23,24,30,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,21,62,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,34,42,42,42,42,42,42,70,42,42,42,76,39,41,36,63,21,44,56,13,15,32,21,62,42,21,65,23,42,63,63,63,63,42,71,13,66,86,255,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,22,22,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,48,63,21,50,46,30,63,21,57,30,63,21,45,39,15,63,63,21,21,30,18,21,42,21,42,42,21,42,63,63,63,63,63,63,21,70,42,42,42,21,118,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,25,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,21,99,41,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,47,16,33,13,42,21,40,14,63,63,42,21,29,63,21,55,42,31,16,43,46,65,54,17,20,63,63,63,63,63,63,63,63,42,63,63,63,63,21,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,21,63,15,57,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,30,21,19,43,38,28,43,42,63,63,63,42,42,45,28,42,27,15,14,14,12,12,0,50,42,63,63,63,63,63,63,63,63,63,63,63,63,63,42,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,61,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,31,15,81,21,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,63,63,63,42,63,36,21,42,42,42,63,63,63,63,42,63,42,37,42,42,28,33,29,38,58,67,50,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,37,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,16,64,21,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,31,48,21,42,42,63,63,42,63,63,63,63,63,63,63,42,42,42,63,21,42,42,42,42,21,21,42,42,42,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,51,25,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,43,31,21,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,12,13,27,32,46,21,63,63,63,63,63,63,42,63,63,58,33,62,42,29,44,31,42,42,31,58,21,42,42,57,21,63,63,63,63,63,63,63,63,63,63,63,63,63,63,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,22,27,59,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,35,15,74,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,12,14,12,14,13,65,21,42,63,42,63,42,53,42,42,42,33,0,63,12,27,50,42,30,28,0,30,23,35,29,45,21,63,63,63,63,63,63,63,63,63,63,63,63,63,18,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,43,0,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,15,36,21,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,38,13,14,12,14,12,12,35,53,21,60,42,49,21,63,72,42,16,42,42,32,21,42,63,16,20,28,13,15,29,0,21,98,21,63,63,63,63,63,63,63,63,63,63,63,63,12,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,35,38,57,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,44,15,50,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,21,11,13,20,17,11,11,15,14,30,31,21,34,21,63,42,63,16,43,42,30,42,63,63,15,24,0,14,18,23,21,20,13,90,21,63,63,63,63,63,63,63,63,63,63,63,14,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,21,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,16,38,21,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,16,32,21,42,12,16,13,12,14,14,35,13,46,42,63,63,48,21,42,29,42,63,63,13,12,24,14,14,11,9,18,29,17,92,21,63,63,63,63,63,63,63,63,63,63,24,40,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,45,1,69,21,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,31,30,21,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,63,63,11,12,22,22,13,14,15,15,27,42,63,63,42,63,32,25,21,63,63,34,14,15,14,15,14,34,19,17,15,14,42,21,42,63,63,63,63,63,63,63,63,42,21,71,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,16,21,31,54,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,42,42,42,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,29,73,42,63,63,63,42,42,42,42,63,63,63,63,63,63,63,63,63,63,42,63,63,63,63,63,63,21,21,21,21,15,13,13,13,30,21,63,63,63,63,22,11,43,42,63,42,29,23,13,29,39,0,24,15,14,25,12,35,49,21,63,63,63,63,63,63,63,63,51,8,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,32,21,21,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,39,33,50,31,31,73,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,63,63,63,63,34,62,87,66,21,42,42,63,63,63,63,63,42,42,58,21,42,42,42,42,63,25,32,36,37,13,14,14,18,20,63,42,63,63,42,42,29,37,21,63,63,42,42,28,0,42,33,21,31,18,11,24,11,22,56,42,63,63,63,63,63,63,63,8,45,26,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,48,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,43,51,18,14,13,17,36,0,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,29,48,0,0,24,46,67,21,42,63,42,42,30,34,11,27,32,42,34,60,21,21,21,42,14,13,21,43,0,42,42,63,63,63,65,21,42,24,46,42,42,63,42,12,48,42,42,63,42,30,31,14,14,12,45,42,63,63,63,63,63,63,63,63,21,21,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,21,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,50,22,14,25,19,16,17,17,37,63,21,42,42,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,28,22,0,0,0,28,33,14,38,77,21,27,30,13,12,10,11,13,10,12,12,40,28,49,42,17,31,21,42,40,21,63,63,63,63,21,56,21,21,24,21,50,42,25,13,33,42,63,63,42,42,30,16,17,38,0,42,63,63,63,63,63,63,63,42,42,24,7,0,0,0,0,0,0,0,0,0,0,175,13,13,253,53,21,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,47,40,30,14,26,21,13,14,17,16,17,19,36,40,34,58,21,63,63,63,42,63,63,63,42,63,63,42,42,42,42,15,10,33,45,6,37,18,14,11,10,76,13,13,12,15,10,12,13,11,15,11,26,17,27,21,21,21,42,42,13,39,21,42,42,42,33,21,29,33,13,32,29,42,10,12,24,42,63,63,48,42,42,12,11,11,29,157,21,63,63,63,63,63,63,42,28,14,7,0,0,0,0,0,0,0,0,0,0,37,21,42,42,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,21,24,11,43,22,18,18,13,14,14,19,14,17,16,15,14,56,21,63,63,70,42,42,42,60,21,42,35,32,37,37,13,25,27,40,4,15,20,15,14,24,24,13,15,12,11,9,9,11,9,11,12,9,9,11,37,27,38,29,41,12,14,32,31,30,32,26,21,15,16,13,17,28,21,13,13,30,42,63,63,42,63,63,13,16,15,13,0,107,21,42,63,63,63,63,46,13,17,14,0,0,0,0,0,0,0,0,0,19,21,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,49,12,20,28,17,20,15,12,15,15,14,17,25,34,16,16,15,47,42,63,21,63,41,55,0,40,33,12,13,14,13,14,22,29,0,1,11,11,16,19,9,23,17,14,11,12,8,8,10,8,17,8,8,7,7,10,9,10,10,16,10,11,12,11,10,11,11,34,11,13,10,13,15,33,28,24,41,42,63,63,63,63,63,10,11,17,27,41,15,42,72,42,63,63,63,42,21,32,32,0,0,0,0,0,0,0,0,0,111,42,63,63,63,63,63,42,42,63,42,42,42,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,39,12,20,29,26,15,16,13,12,13,12,16,32,0,42,31,28,31,42,21,42,51,21,14,13,54,0,13,14,13,13,13,16,15,15,38,3,16,15,9,36,24,21,59,69,48,32,10,9,14,9,10,11,9,8,8,13,11,11,11,14,13,12,13,13,14,13,13,13,14,14,17,21,16,49,0,42,42,63,63,63,42,63,42,11,12,14,20,54,14,45,21,63,63,63,63,63,8,8,0,0,0,0,0,0,0,196,32,23,21,63,63,63,63,63,63,50,51,21,37,46,40,60,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,20,13,25,23,16,20,38,28,12,13,14,14,17,41,42,42,42,42,21,37,27,13,29,14,14,15,28,13,13,14,13,33,15,9,9,8,3,33,13,8,29,29,41,0,0,240,60,52,12,12,10,8,12,11,8,8,11,11,11,10,13,12,12,12,11,11,12,12,13,13,15,11,15,38,21,33,21,42,63,63,42,48,42,25,11,10,12,32,0,51,21,63,63,63,63,63,63,47,32,0,0,0,0,0,0,225,21,42,42,63,63,63,63,63,63,63,42,32,44,17,33,46,33,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,16,12,16,24,18,14,50,21,42,12,13,13,15,14,30,42,63,42,63,33,11,12,12,13,13,14,15,14,14,13,14,13,11,24,50,67,23,1,10,21,6,0,0,0,0,0,0,0,32,45,11,10,10,7,9,8,7,10,9,9,9,12,9,12,13,13,13,12,12,12,12,14,13,33,32,42,10,34,60,21,63,64,30,42,19,11,18,12,12,48,0,63,63,63,63,63,63,63,42,21,27,0,0,0,0,0,52,42,63,63,63,63,63,63,63,63,63,63,42,26,15,12,26,96,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,18,20,20,16,15,33,21,63,42,12,12,13,12,15,28,21,42,43,21,21,12,12,13,13,14,13,13,14,13,14,14,14,25,22,11,8,27,7,21,11,20,42,27,27,53,0,0,0,0,66,32,8,13,9,9,10,8,13,11,11,12,12,12,12,13,13,14,15,12,14,14,17,29,21,42,63,35,21,42,76,42,42,42,63,42,23,10,18,16,11,72,42,63,63,63,63,63,63,63,22,7,0,0,0,0,214,21,63,63,63,63,63,63,63,63,63,63,63,63,42,37,114,21,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,46,24,11,20,16,15,41,42,42,32,10,11,12,12,12,14,27,38,14,40,28,12,12,13,13,13,14,14,13,13,12,14,13,20,14,20,22,9,2,244,36,7,25,16,14,15,16,0,0,0,0,51,17,10,17,10,8,9,12,12,12,12,12,12,15,12,14,12,12,14,14,14,29,41,42,63,63,42,63,63,42,63,42,42,42,42,42,28,26,24,60,21,63,63,63,63,63,63,63,63,42,9,0,0,0,0,84,42,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,66,58,19,10,19,17,15,46,21,63,30,12,11,12,12,12,12,12,13,12,12,15,12,12,12,12,13,13,13,13,14,13,13,13,13,18,14,0,22,43,0,0,28,57,20,27,9,17,25,14,0,0,0,44,28,11,9,15,10,8,13,14,12,11,11,12,12,13,13,13,15,15,15,26,21,42,63,63,63,63,63,63,63,63,41,33,40,58,21,42,42,47,21,63,63,63,63,63,63,63,63,63,63,61,0,0,0,21,21,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,47,11,12,27,17,19,18,27,21,63,63,13,11,10,11,12,27,22,12,14,13,13,13,12,12,14,14,14,13,13,14,14,12,12,14,17,17,14,24,21,17,204,0,0,0,0,25,28,0,0,0,27,0,30,9,36,18,16,13,11,9,12,11,10,11,11,11,12,13,12,13,13,15,15,48,42,63,63,63,63,63,63,63,63,63,42,14,13,13,57,21,63,42,63,63,63,63,63,63,63,63,63,63,63,42,246,251,0,80,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,11,14,27,31,17,16,17,29,42,63,63,13,12,12,22,40,0,42,12,15,14,12,13,10,12,11,13,14,13,13,13,13,15,12,12,13,18,14,42,21,54,34,21,11,0,111,18,10,32,18,10,43,7,9,9,33,10,9,18,9,19,14,13,10,11,11,11,13,14,13,12,14,15,30,21,63,63,63,63,63,63,63,63,63,63,63,15,17,18,12,50,42,63,63,42,63,63,63,63,63,63,63,63,63,63,42,42,74,77,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,13,9,45,33,22,16,16,30,42,63,63,28,25,35,21,42,38,21,12,13,13,14,12,10,11,13,13,14,14,13,13,13,12,12,12,12,23,34,21,63,42,42,42,42,242,31,9,10,18,18,0,46,40,194,68,10,10,9,8,15,8,16,12,10,13,15,12,12,12,12,14,13,14,34,42,63,63,63,63,63,63,63,63,63,63,42,14,15,16,14,29,21,63,42,62,21,63,63,63,63,63,63,63,63,63,63,63,42,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,15,24,58,39,16,17,16,54,42,63,63,42,21,21,42,42,12,32,13,13,13,12,12,10,11,12,13,13,13,13,13,14,12,13,12,12,22,22,42,63,63,63,63,63,42,51,57,31,11,10,10,0,158,0,48,54,16,18,15,9,8,18,28,13,14,14,12,15,12,13,14,14,14,40,21,63,63,63,63,63,63,63,63,63,63,58,13,13,13,14,15,49,21,31,14,64,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,63,63,63,63,63,63,24,49,21,42,15,16,28,21,63,63,63,63,38,26,31,30,12,12,12,12,14,14,11,10,11,12,13,13,14,14,13,13,13,13,12,13,20,28,42,63,63,63,63,63,63,42,42,22,25,7,5,0,0,0,0,161,24,10,15,16,11,18,10,22,10,10,12,12,14,14,13,14,14,14,41,21,42,63,63,63,63,63,63,63,63,42,13,13,14,13,15,16,34,15,14,46,21,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,39,47,21,63,63,63,63,63,42,42,63,63,28,13,27,42,63,63,63,42,42,11,11,13,12,15,12,13,12,13,13,12,11,12,13,13,13,13,13,14,13,12,12,16,14,39,42,63,63,63,63,63,63,63,63,34,18,26,10,0,0,0,0,12,29,7,8,14,9,10,19,14,11,11,10,11,15,13,14,13,12,14,14,32,56,21,42,63,63,63,63,63,63,63,14,13,13,13,15,17,18,15,17,17,66,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,16,15,55,42,63,63,63,63,63,63,42,63,42,13,33,42,63,63,42,48,21,10,11,12,12,12,12,14,14,12,11,11,11,12,13,13,13,14,14,14,13,12,12,11,14,25,42,63,63,63,63,63,63,63,63,42,22,35,19,29,165,2,25,7,54,19,11,11,17,13,11,12,15,13,13,12,12,14,13,13,14,13,13,15,13,34,55,21,42,42,63,63,63,42,14,13,13,13,13,18,17,15,16,19,44,21,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,35,22,40,42,63,63,63,63,63,63,66,42,63,45,21,63,63,63,47,12,28,10,11,12,11,13,11,12,13,13,13,10,11,12,13,13,14,13,13,15,14,12,11,19,12,31,42,63,63,63,63,63,63,63,63,63,42,21,26,9,8,8,11,5,0,178,53,19,6,22,12,9,10,16,13,12,12,11,11,12,13,12,12,15,15,15,15,36,34,54,42,63,63,32,12,12,12,12,13,14,14,16,14,15,21,50,21,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,50,21,27,36,21,63,63,63,63,63,63,42,42,42,42,42,42,42,42,21,14,12,10,12,12,11,12,11,14,12,12,13,12,10,11,13,14,13,13,12,13,13,13,17,11,17,31,42,63,63,63,63,63,63,63,63,63,63,23,18,19,5,16,6,18,35,0,0,167,24,21,12,12,9,10,8,11,18,15,12,11,11,12,13,13,14,15,15,15,14,28,42,63,63,13,14,14,13,13,12,15,14,16,17,14,18,24,50,21,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,32,32,42,21,18,44,42,63,63,63,63,63,42,26,34,21,26,25,32,27,27,12,12,10,11,13,11,12,12,12,12,12,13,11,10,11,13,13,13,14,13,13,12,14,11,12,18,25,42,63,63,63,63,63,63,63,63,63,63,21,21,35,17,0,0,8,5,0,0,0,16,19,17,11,14,11,13,12,13,17,15,12,11,11,12,14,13,15,15,15,14,36,21,63,63,14,12,12,12,14,12,12,15,16,16,17,19,15,17,55,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,15,39,42,29,15,31,21,63,63,63,63,42,36,14,11,21,10,12,12,11,12,12,11,10,11,12,12,12,11,12,12,12,13,10,9,10,12,12,16,13,13,13,12,11,11,20,12,33,42,63,63,63,63,63,63,63,63,63,63,42,63,42,27,0,0,147,28,86,0,0,0,131,14,10,10,11,13,11,11,11,17,14,12,10,12,13,12,13,14,15,14,14,54,21,42,15,12,12,14,11,11,19,14,13,14,16,16,18,31,33,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,36,21,63,13,14,35,59,21,42,42,42,29,13,12,20,17,21,15,12,13,13,13,12,11,12,12,11,11,12,13,13,12,13,11,11,11,13,17,13,13,33,13,13,13,15,15,13,28,42,63,63,63,63,63,63,63,63,63,63,63,63,63,30,219,7,0,5,16,105,0,0,116,24,17,24,16,12,15,11,13,10,19,11,11,10,11,12,14,13,14,17,15,15,36,32,14,13,12,12,13,13,15,18,31,32,33,36,51,21,41,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,63,63,25,44,21,21,32,40,27,37,8,11,10,15,11,10,18,17,22,15,13,13,12,12,12,12,12,11,12,13,13,13,10,10,11,13,15,28,36,21,25,12,12,13,14,13,29,42,63,63,63,63,63,63,63,63,63,63,63,63,63,42,18,76,135,12,0,0,0,0,0,48,12,7,14,13,12,15,10,18,12,14,10,12,12,12,12,16,14,15,14,15,13,14,15,15,14,16,16,16,19,44,0,21,42,42,42,42,34,21,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,21,42,40,12,12,12,9,10,19,14,11,14,13,13,13,11,19,14,28,11,13,13,14,15,13,14,14,14,14,12,12,12,31,52,21,42,63,42,13,12,12,13,15,30,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,19,31,12,8,39,125,134,0,140,35,29,15,8,15,11,12,16,10,13,11,11,13,11,11,18,16,12,15,16,16,14,14,13,11,11,26,13,34,14,26,68,42,63,63,55,27,51,50,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,53,26,12,13,14,16,13,17,24,67,64,53,24,25,13,14,21,12,11,49,14,13,14,14,14,14,14,14,13,13,12,29,21,42,63,63,63,63,29,12,14,13,16,30,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,5,13,48,23,12,6,0,0,0,29,28,14,14,15,15,12,13,13,10,11,12,13,27,18,19,18,13,14,15,17,13,13,12,15,12,19,14,15,37,0,63,42,63,42,42,42,40,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,32,13,19,16,12,20,254,23,0,0,0,35,36,14,22,16,21,14,10,42,15,28,31,26,27,25,26,15,12,12,27,42,63,63,63,63,63,42,12,14,15,12,29,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,5,19,0,63,5,0,0,0,0,0,175,26,22,13,15,15,11,16,12,11,14,11,12,13,17,14,19,17,17,14,14,16,14,20,24,13,16,18,33,49,21,76,42,63,63,63,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,10,10,25,14,249,0,148,0,66,53,32,25,14,14,14,12,16,12,35,53,21,42,42,42,42,42,14,15,18,25,42,63,63,63,63,63,42,13,13,13,14,33,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,3,115,4,0,0,0,0,0,0,0,0,235,21,29,22,18,15,10,15,13,14,12,14,17,16,14,13,17,16,15,13,16,22,17,12,13,38,53,21,25,62,21,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,42,42,63,63,42,12,10,8,9,0,109,79,100,0,49,23,18,44,44,21,15,17,30,50,21,63,63,63,63,63,63,31,63,189,44,21,42,63,63,63,42,29,14,13,14,13,26,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,6,0,0,0,46,0,0,0,0,0,0,0,0,162,183,175,180,175,182,186,229,209,232,232,240,238,241,253,0,9,246,207,197,203,171,214,21,42,63,42,42,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,60,72,42,63,54,1,0,3,14,174,45,21,191,192,21,42,232,212,208,244,226,209,150,191,42,63,63,63,63,63,63,42,132,0,141,31,66,42,63,63,54,209,178,176,173,169,173
+1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,6,1,1,1,5,5,1,7,7,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,6,1,1,1,1,1,1,7,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,9,9,9,9,9,9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,6,1,1,10,1,1,11,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,12,1,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,9,9,9,9,9,9,9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,9,9,9,9,9,9,9,9,9,9,9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,9,9,9,9,9,1,1,1,9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,14,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,9,9,9,9,9,9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,15,15,1,16,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,9,9,9,9,9,9,9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,15,1,1,16,1,1,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,9,9,9,9,1,9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,9,9,9,9,1,9,9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,17,1,1,1,1,1,1,1,1,1,1,18,1,1,1,1,2,19,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,9,9,9,1,9,9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,20,20,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,9,9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,20,20,20,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,20,1,1,1,1,1,1,21,1,1,1,22,22,22,22,1,1,2,2,2,2,2,1,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,20,1,1,21,21,21,1,1,21,21,1,1,22,22,22,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,23,23,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,21,21,21,21,1,1,21,21,1,1,1,1,22,1,1,24,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,23,23,23,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,21,1,21,21,21,21,21,1,1,1,1,22,1,24,24,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,23,23,23,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,21,1,1,1,1,1,1,1,1,1,1,1,24,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,23,23,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,26,26,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,23,23,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,26,26,26,26,26,1,1,1,1,1,1,1,1,1,1,26,26,26,1,26,26,26,1,1,26,26,1,1,1,26,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,23,23,23,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,26,26,26,26,26,26,1,1,1,1,1,1,26,1,1,1,26,1,1,26,26,26,1,26,26,1,26,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,23,23,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,26,26,26,26,26,26,26,26,26,1,26,1,26,1,1,26,1,26,26,1,26,1,1,1,26,26,26,26,26,26,1,1,26,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,23,23,23,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,26,26,26,26,26,26,26,26,26,26,26,28,26,1,1,1,1,26,26,1,26,1,1,1,26,26,29,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,23,23,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,26,26,1,1,26,26,26,26,26,26,26,26,26,1,1,1,26,1,1,26,1,1,1,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,23,23,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,26,26,26,26,26,26,26,26,26,1,1,1,1,1,26,26,1,1,1,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,23,23,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,26,26,26,26,26,1,1,1,1,1,26,26,26,1,1,1,26,26,26,26,26,1,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,26,26,26,26,1,1,1,1,1,1,1,1,1,1,26,1,1,1,1,1,1,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,26,26,1,1,1,1,1,26,1,1,26,1,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,30,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,26,26,26,26,26,26,26,1,1,1,1,1,26,26,26,26,26,26,26,26,1,1,1,1,26,26,26,26,1,1,1,1,1,1,32,1,1,26,26,1,1,1,1,26,26,1,1,1,1,26,26,26,26,26,26,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,30,30,30,30,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,26,26,26,26,26,26,26,26,26,1,26,26,26,26,26,26,26,26,26,26,26,26,26,1,26,26,1,1,26,1,1,1,1,1,1,26,1,1,26,1,26,1,26,26,26,1,1,1,1,1,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,26,26,1,1,1,1,33,1,26,26,26,26,26,1,26,26,26,1,1,1,34,1,1,26,26,26,26,26,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,1,1,1,35,1,1,1,30,1,1,30,30,30,30,30,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,26,26,26,26,26,1,26,26,26,1,1,1,1,1,1,26,26,26,26,26,26,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,1,1,1,1,30,30,1,30,30,30,30,30,30,30,26,26,54,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,26,26,26,26,26,26,26,26,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,1,1,30,30,30,30,1,1,30,1,30,30,30,1,30,30,30,30,30,30,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,26,26,26,26,26,26,26,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,38,38,1,38,38,38,38,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,1,1,1,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,26,1,1,1,1,1,39,1,26,26,26,26,26,1,26,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,38,38,38,38,38,38,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,30,1,1,30,30,30,30,30,30,1,1,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,26,26,26,1,1,39,39,1,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,38,38,38,38,38,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,1,1,1,30,30,30,30,30,30,1,1,30,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,26,1,1,26,1,1,1,1,1,26,26,26,26,26,26,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,38,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,30,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,1,1,26,26,26,26,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,30,30,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,1,26,26,26,26,1,1,1,26,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,30,30,1,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,30,30,1,1,1,30,30,30,30,30,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,26,42,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,1,26,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,30,30,1,1,1,30,30,30,1,1,30,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,42,42,42,42,42,42,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,1,26,26,26,26,26,1,1,1,26,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,30,30,1,1,1,1,1,1,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,42,42,42,42,42,42,42,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,26,26,26,26,26,26,26,1,26,26,26,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,1,1,30,30,30,1,1,1,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,42,42,42,42,42,42,42,42,42,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,43,43,1,1,1,1,1,1,1,1,1,1,30,30,30,1,1,1,1,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,42,42,42,42,42,42,42,42,42,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,43,43,43,1,1,1,1,1,1,1,1,1,1,30,30,1,1,1,1,30,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,42,42,42,42,42,42,42,42,42,42,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,1,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,43,43,43,1,1,1,1,1,1,1,44,1,1,30,1,1,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,42,42,42,42,42,42,42,42,42,42,42,42,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,45,1,43,43,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,42,42,42,42,42,42,42,42,42,42,42,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,45,45,1,1,43,43,1,1,1,1,1,1,1,30,30,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,42,42,42,42,42,42,42,42,42,42,42,26,42,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,45,45,1,43,43,43,1,1,1,1,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,42,42,42,42,42,42,42,42,42,42,42,42,42,42,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,45,1,1,43,43,43,43,1,1,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,42,42,42,42,42,42,42,42,42,42,42,42,42,42,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,46,26,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,43,43,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,47,30,30,30,30,30,30,30,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,26,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,47,47,47,47,30,30,30,30,30,30,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,47,47,47,47,47,47,30,30,30,30,30,30,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,1,26,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,47,47,47,47,47,47,47,30,30,30,30,30,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,26,26,55,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,48,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,49,49,49,49,49,49,30,30,30,30,47,47,47,47,47,47,47,30,30,30,30,30,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,26,26,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,30,30,30,30,30,30,30,30,50,30,30,30,30,30,30,30,30,30,30,49,49,49,49,49,49,49,30,30,30,30,47,47,47,47,47,47,30,30,30,30,30,30,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,51,51,1,1,30,30,30,30,30,30,30,52,30,30,53,53,30,30,30,30,30,30,30,30,49,49,49,49,49,49,49,49,30,30,30,30,30,47,47,47,30,30,30,30,30,30,30
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-9,-8,-8,-7,-7,-7,-6,-5,-5,-6,-6,-6,-6,-6,-6,-7,-6,-6,-6,-6,-6,-7,-8,-8,-8,-8,-7,-7,-6,-6,-6,-5,-4,-5,-4,-4,-3,-3,-3,-2,-2,-3,-3,-3,-3,-3,-4,-5,-5,-5,-6,-6,-7,-8,-8,-9,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-8,-8,-7,-6,-6,-6,-6,-5,-4,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-6,-7,-7,-7,-7,-6,-6,-6,-5,-5,-5,-4,-4,-3,-3,-3,-2,-2,-3,-2,-2,-2,-2,-2,-3,-4,-4,-4,-5,-5,-6,-7,-7,-7,-8,-9,-9,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-9,-9,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-9,-8,-8,-7,-6,-6,-5,-5,-5,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-5,-5,-4,-5,-6,-6,-6,-6,-6,-6,-5,-5,-4,-4,-4,-3,-3,-2,-2,-2,-1,-1,-1,-1,-1,-1,-1,-1,-2,-3,-3,-4,-4,-5,-5,-6,-6,-6,-7,-8,-8,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-9,-8,-8,-9,-9,-9,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-8,-7,-7,-7,-6,-5,-4,-4,-4,-4,-3,-3,-3,-3,-3,-3,-3,-3,-3,-4,-4,-3,-4,-4,-5,-5,-6,-5,-5,-4,-4,-3,-3,-3,-2,-2,-2,-1,-1,1,1,1,1,1,1,1,-1,-2,-2,-2,-3,-3,-4,-4,-5,-5,-6,-7,-7,-8,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-9,-8,-8,-7,-8,-8,-8,-8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-8,-8,-7,-6,-6,-6,-5,-4,-3,-3,-2,-3,-2,-2,-2,-2,-2,-2,-2,-2,-3,-3,-3,-4,-3,-4,-5,-5,-5,-4,-4,-3,-2,-2,-2,-2,-1,-2,-1,1,1,0,0,0,0,0,0,1,-1,-1,-2,-3,-3,-3,-3,-4,-4,-5,-6,-7,-8,-9,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-8,-7,-6,-7,-7,-7,-7,-7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-9,-8,-7,-7,-7,-6,-5,-5,-5,-4,-3,-2,-2,-2,-2,-1,-1,-1,-1,-1,-1,-1,-2,-2,-2,-3,-2,-3,-4,-4,-4,-4,-3,-3,-2,-1,-1,-1,1,1,1,1,0,0,0,0,0,0,0,1,1,-1,-1,-2,-2,-2,-2,-3,-4,-5,-6,-7,-8,-8,-8,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-9,-8,-7,-6,-6,-6,-6,-6,-6,-6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-9,-8,-7,-6,-6,-6,-5,-4,-4,-4,-3,-3,-3,-1,-1,-1,-1,1,1,1,1,1,1,-1,-1,-1,-1,-2,-3,-3,-3,-4,-4,-3,-2,-2,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,-1,-1,-2,-3,-4,-5,-6,-6,-6,-7,-7,-8,-9,0,0,0,0,0,0,0,0,0,0,0,0,-9,-9,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-8,-8,-8,-7,-6,-5,-5,-5,-5,-5,-5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-8,-7,-7,-6,-5,-5,-4,-4,-3,-3,-2,-2,-2,-1,1,1,1,0,0,0,0,0,0,1,1,1,-1,-2,-2,-2,-3,-3,-3,-2,-2,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,-2,-3,-4,-5,-5,-5,-5,-6,-7,-8,-8,-9,-9,0,0,0,0,0,-9,-9,-9,-9,-9,-8,-8,-8,-9,-9,-9,-9,-9,0,0,0,0,0,0,0,-9,-9,-9,-8,-8,-7,-7,-7,-6,-5,-4,-4,-4,-4,-4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-8,-7,-6,-6,-5,-4,-3,-3,-3,-2,-1,-1,-1,-1,1,0,0,0,0,0,0,0,0,0,1,1,-1,-1,-1,-2,-2,-2,-2,-2,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,-2,-2,-3,-4,-4,-4,-4,-5,-5,-6,-7,-8,-8,-9,0,0,0,0,0,-9,-8,-8,-8,-8,-7,-7,-7,-8,-8,-8,-8,-9,-9,-9,-9,-9,-9,0,-9,-8,-8,-8,-7,-7,-6,-6,-5,-5,-5,-4,-3,-3,-3,-3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-9,-8,-7,-7,-6,-6,-5,-4,-3,-2,-2,-2,-1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,-1,-1,-1,-1,-1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,-1,-2,-3,-3,-3,-3,-3,-3,-4,-5,-6,-6,-7,-7,-8,-9,0,0,0,-9,-9,-8,-7,-7,-7,-7,-6,-6,-7,-7,-7,-8,-8,-8,-8,-8,-8,-8,-9,-8,-8,-7,-7,-7,-6,-6,-5,-5,-4,-4,-3,-2,-2,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-9,-8,-8,-7,-6,-6,-5,-4,-3,-2,-1,-1,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,-1,1,1,1,1,-1,1,1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,-1,-2,-2,-2,-2,-2,-2,-2,-3,-4,-5,-5,-6,-7,-8,-9,0,0,0,-9,-9,-8,-7,-6,-6,-6,-6,-5,-6,-6,-6,-7,-7,-7,-7,-7,-7,-7,-8,-9,-8,-7,-7,-6,-6,-5,-5,-4,-4,-4,-3,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-8,-8,-7,-6,-6,-5,-4,-3,-3,-2,-1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,-1,1,1,0,0,0,1,1,0,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,1,-1,-2,-2,-1,-1,-1,-1,-2,-3,-4,-4,-5,-6,-7,-8,-9,-9,-9,-9,-9,-8,-8,-7,-6,-5,-5,-5,-4,-5,-5,-6,-6,-6,-6,-6,-6,-6,-7,-8,-8,-7,-6,-6,-5,-5,-5,-4,-4,-3,-3,-3,-2,-1,1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-9,-8,-8,-7,-6,-5,-5,-4,-4,-3,-2,-1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,-1,-1,-1,1,1,-1,-1,-2,-3,-4,-5,-6,-7,-7,-8,-9,-8,-8,-8,-7,-7,-7,-6,-5,-4,-4,-4,-4,-4,-5,-5,-5,-5,-5,-5,-6,-7,-7,-7,-7,-6,-5,-4,-4,-4,-3,-3,-3,-2,-2,-2,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-8,-7,-7,-6,-5,-5,-4,-4,-3,-3,-2,-1,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,-1,-2,-3,-4,-5,-6,-7,-8,-8,-8,-7,-7,-7,-6,-6,-6,-5,-5,-4,-3,-3,-3,-3,-4,-4,-4,-4,-4,-5,-5,-6,-7,-8,-7,-6,-5,-4,-3,-3,-2,-2,-2,-3,-2,-1,1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-8,-8,-7,-6,-5,-4,-4,-3,-4,-3,-2,-1,1,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-2,-2,-3,-4,-5,-6,-7,-8,-7,-7,-6,-6,-6,-6,-5,-5,-5,-4,-3,-2,-2,-2,-3,-3,-3,-3,-3,-3,-4,-5,-6,-7,-8,-7,-6,-5,-4,-3,-2,-1,-1,-1,-2,-1,-1,1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-9,-8,-7,-7,-6,-5,-5,-4,-3,-2,-3,-2,-1,1,1,1,-1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,-1,-2,-3,-4,-5,-6,-7,-7,-8,-7,-6,-5,-5,-5,-5,-4,-4,-4,-3,-2,-1,-1,-2,-2,-2,-2,-2,-3,-4,-5,-5,-7,-7,-8,-7,-6,-5,-4,-3,-2,-1,1,-1,-2,-1,1,1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-9,-9,-9,-9,-9,-9,-8,-8,-7,-6,-6,-5,-4,-4,-3,-2,-2,-1,-1,1,0,1,-1,-1,-1,1,-1,-1,-1,1,0,0,0,0,0,0,1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,-2,-3,-4,-5,-5,-6,-7,-8,-8,-7,-6,-5,-4,-4,-4,-3,-3,-3,-2,-1,-1,1,-1,-1,-1,-1,-2,-3,-4,-5,-6,-6,-7,-7,-6,-5,-4,-4,-3,-2,-1,1,-1,-1,-1,-1,-1,-1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-9,-9,-8,-8,-8,-8,-8,-9,-8,-8,-7,-6,-5,-5,-4,-4,-3,-2,-1,-1,-1,1,0,0,1,1,1,-1,-1,-1,1,1,1,0,0,0,0,1,1,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-2,-2,-3,-4,-4,-5,-6,-7,-8,-8,-7,-6,-5,-4,-3,-3,-2,-2,-2,-2,-1,1,1,1,1,1,1,-1,-2,-3,-4,-5,-6,-7,-7,-6,-5,-5,-4,-3,-1,1,-1,-1,1,-1,-1,1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-8,-7,-7,-7,-7,-7,-8,-8,-7,-6,-6,-5,-4,-3,-3,-3,-2,-1,1,-1,1,0,0,0,0,1,-1,1,1,1,0,0,0,0,0,0,1,-1,-1,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,-1,-2,-2,-3,-4,-5,-6,-6,-7,-8,-8,-7,-6,-5,-4,-3,-2,-1,-1,-1,-1,1,1,0,0,0,1,1,-1,-2,-3,-4,-5,-6,-7,-7,-6,-6,-5,-4,-3,-2,-1,-1,-2,-1,-2,-2,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-9,-9,-9,-8,-7,-6,-6,-6,-7,-7,-7,-7,-6,-5,-5,-4,-3,-2,-2,-2,-1,-1,-1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,-1,-2,-2,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-2,-2,-3,-3,-3,-4,-5,-6,-7,-7,-8,-7,-6,-5,-4,-3,-2,-1,1,1,1,1,1,1,1,1,1,1,1,-1,-2,-3,-4,-5,-6,-7,-8,-7,-6,-5,-5,-4,-3,-2,-2,-3,-2,-2,-2,-2,-2,-3,-3,0,0,0,0,0,0,0,0,0,0,0,-9,-8,-8,-8,-7,-7,-6,-5,-5,-6,-6,-6,-6,-6,-5,-4,-3,-2,-1,-1,-2,-2,-2,-2,-1,-1,-1,1,0,0,0,0,0,0,0,0,0,0,1,-1,-1,-2,-1,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-2,-3,-4,-4,-4,-4,-5,-6,-7,-8,-8,-7,-6,-5,-4,-3,-2,-2,-1,1,0,0,0,1,-1,-1,-1,1,-1,-1,-2,-3,-4,-5,-6,-7,-8,-7,-6,-6,-5,-4,-3,-3,-3,-3,-3,-3,-3,-3,-3,-4,-4,0,0,0,0,0,0,0,0,0,0,-9,-8,-7,-8,-7,-7,-6,-6,-5,-4,-5,-5,-5,-5,-5,-5,-4,-3,-2,-1,1,-1,-1,-1,-2,-2,-1,1,1,0,0,1,0,0,0,0,0,0,0,0,-1,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,-2,-2,-3,-4,-5,-5,-6,-6,-6,-7,-8,-8,-8,-6,-5,-5,-4,-3,-2,-1,1,0,0,0,0,1,-1,-1,-1,-2,-2,-2,-3,-4,-5,-6,-7,-8,-7,-7,-6,-5,-5,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-5,0,0,0,0,0,0,0,0,0,0,-9,-8,-7,-6,-6,-6,-6,-5,-4,-4,-4,-4,-4,-4,-4,-4,-4,-3,-2,-1,-1,1,1,-1,1,-1,-1,1,0,0,1,1,0,0,0,0,0,0,0,1,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,-1,-2,-3,-4,-5,-6,-6,-7,-7,-8,-8,-8,-7,-6,-6,-5,-4,-3,-2,-1,1,0,0,0,0,1,1,-1,-2,-2,-3,-3,-4,-5,-5,-6,-7,-8,-8,-7,-6,-6,-6,-5,-5,-5,-5,-5,-5,-5,-5,-5,-5,-6,0,0,0,0,0,0,0,0,0,0,-9,-8,-7,-6,-5,-5,-5,-5,-4,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-2,-2,-1,1,-1,-1,1,-1,-1,1,1,-1,1,0,0,0,0,0,0,1,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,1,-1,-2,-3,-4,-5,-6,-7,-7,-8,-9,-8,-8,-7,-6,-5,-5,-4,-3,-2,-1,-1,1,0,0,1,-1,1,-1,-2,-3,-3,-4,-5,-5,-6,-7,-7,-8,-8,-7,-7,-7,-7,-6,-6,-6,-6,-6,-6,-6,-6,-5,-5,-5,0,0,0,0,0,0,0,0,0,-9,-8,-8,-7,-6,-5,-4,-4,-4,-3,-2,-2,-2,-2,-2,-2,-2,-2,-3,-3,-2,-2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,0,0,1,1,-1,-2,-1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,-2,-3,-4,-5,-6,-7,-8,-8,-9,-9,-8,-7,-7,-6,-5,-4,-3,-3,-2,-1,1,0,0,1,-1,1,1,-1,-2,-3,-4,-5,-6,-6,-7,-8,-8,-8,-8,-8,-8,-8,-7,-7,-7,-7,-7,-6,-6,-5,-4,-5,-4,0,0,0,0,0,0,0,0,0,-9,-8,-7,-6,-5,-5,-4,-3,-3,-3,-2,-1,-1,-1,-2,-1,1,-1,-2,-3,-2,-2,-2,-2,-2,-2,-1,1,-2,-2,-2,-1,1,-1,1,0,0,1,-1,-2,-2,-1,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-2,-3,-4,-5,-5,-6,-7,-8,-9,-9,-8,-8,-7,-6,-5,-4,-3,-2,-2,-1,-1,1,0,1,-1,1,1,-1,-2,-3,-4,-4,-5,-6,-7,-8,-9,-9,-9,-8,-9,-8,-8,-8,-8,-7,-6,-5,-5,-4,-4,-3,-3,0,0,0,0,0,0,0,0,-9,-9,-8,-7,-6,-5,-4,-3,-3,-2,-2,-1,1,1,-1,-2,-1,-1,-1,-2,-2,-2,-2,-2,-2,-2,-2,-1,-1,-2,-1,-1,-1,1,1,1,0,0,1,-1,-2,-2,-2,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,-2,-3,-4,-5,-6,-6,-7,-8,-9,0,-9,-8,-7,-6,-5,-4,-3,-3,-3,-2,-1,1,1,-1,-2,-1,-1,-1,-2,-3,-4,-5,-6,-7,-7,-8,-9,0,0,-9,-9,-9,-8,-7,-7,-6,-6,-5,-4,-4,-3,-3,-2,0,0,0,0,0,0,0,0,-9,-8,-8,-7,-6,-5,-5,-4,-3,-2,-1,1,1,1,-1,-2,-2,-2,-1,-1,-2,-1,-1,-1,-1,-1,-1,1,1,-1,-1,1,1,1,1,1,1,0,1,1,-1,-2,-2,-2,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,-2,-3,-4,-4,-5,-6,-7,-8,-9,-9,-9,-8,-7,-6,-5,-5,-4,-4,-3,-2,-1,-1,1,-1,-2,-2,-2,-2,-3,-3,-4,-5,-6,-7,-8,-8,-9,0,0,0,-9,-8,-7,-7,-6,-5,-5,-4,-3,-3,-2,-2,-2,0,0,0,0,0,0,0,-9,-8,-7,-7,-6,-6,-5,-5,-4,-3,-2,-1,1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,1,1,1,1,-1,-1,1,1,1,1,1,-1,1,-1,-1,1,1,-1,-1,-2,-3,-2,-1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-2,-2,-3,-3,-4,-5,-6,-7,-8,-9,0,-9,-8,-7,-7,-6,-6,-6,-5,-4,-3,-2,-2,-1,-1,-2,-3,-3,-3,-3,-4,-5,-6,-6,-7,-8,-9,-9,0,0,-9,-9,-8,-7,-6,-5,-5,-4,-4,-3,-2,-1,-1,-1,0,0,0,0,0,0,0,-9,-8,-7,-6,-5,-5,-5,-4,-4,-3,-2,-1,1,-1,-1,1,1,1,-1,-1,1,1,-1,-1,1,1,1,-1,-2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-2,-3,-3,-2,-1,-1,1,-1,-1,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-2,-3,-4,-4,-5,-5,-6,-7,-8,-9,0,-9,-9,-8,-8,-7,-7,-6,-5,-4,-3,-3,-3,-2,-2,-2,-3,-4,-4,-4,-5,-6,-6,-7,-8,-8,-9,0,0,-9,-8,-8,-7,-6,-6,-5,-4,-4,-3,-2,-1,-1,1,1,0,0,0,0,0,0,0,-9,-8,-8,-6,-5,-4,-4,-3,-3,-2,-2,-1,-1,-2,1,1,1,1,-1,-1,1,1,-1,-1,-1,-1,1,-1,-1,1,-1,1,0,1,1,1,1,1,1,-1,-2,-3,-4,-3,-3,-2,-2,-1,-2,-2,-2,-2,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-2,-3,-4,-5,-5,-6,-7,-7,-8,-9,0,0,0,-9,-9,-8,-7,-6,-5,-4,-4,-4,-3,-3,-3,-3,-4,-5,-5,-5,-6,-7,-7,-7,-8,-9,-9,0,-9,-9,-8,-7,-7,-6,-5,-4,-3,-3,-3,-2,-1,1,0,1,-9,-9,-9,-9,-9,0,0,-9,-8,-7,-6,-5,-4,-3,-2,-2,-2,-2,-2,-2,-1,-1,1,-1,1,1,1,1,1,-1,-2,-2,-1,1,-1,1,1,-1,1,1,0,0,0,0,1,1,-1,-2,-3,-4,-4,-3,-3,-3,-2,-2,-3,-3,-2,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-2,-3,-4,-5,-6,-6,-7,-8,-9,-9,0,0,0,0,-9,-8,-7,-6,-5,-5,-4,-4,-4,-4,-4,-4,-5,-5,-6,-6,-7,-8,-8,-8,-9,-9,-9,-9,-9,-8,-7,-6,-6,-5,-5,-4,-3,-2,-2,-2,1,1,1,-1,-8,-8,-8,-8,-8,-9,-9,-9,-8,-7,-6,-5,-4,-4,-3,-2,-1,-1,-1,-1,-2,-1,-1,-1,1,-1,-1,-1,-1,-2,-3,-2,-2,-2,-2,-1,1,-1,-1,1,1,1,1,1,1,1,-1,-2,-3,-4,-4,-4,-4,-3,-4,-3,-4,-3,-3,-2,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-2,-3,-4,-5,-6,-7,-7,-8,-9,0,0,0,0,0,0,-9,-8,-7,-6,-6,-5,-5,-5,-4,-5,-5,-5,-6,-6,-7,-8,-8,-8,-8,-8,-8,-8,-8,-9,-8,-7,-6,-5,-5,-4,-3,-3,-2,-1,-1,1,1,-1,-1,-7,-7,-7,-7,-8,-8,-8,-8,-8,-7,-6,-5,-4,-3,-2,-2,-1,1,1,-1,-1,-1,-1,-1,-1,-2,-2,-2,-2,-2,-2,-2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-2,-2,-3,-3,-4,-4,-4,-4,-4,-4,-4,-3,-2,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,-1,-2,-3,-4,-5,-6,-7,-8,-8,-9,0,0,0,0,0,0,-9,-9,-8,-7,-7,-6,-6,-5,-6,-5,-6,-6,-7,-7,-7,-7,-7,-7,-7,-7,-7,-7,-8,-9,-8,-7,-6,-5,-4,-4,-3,-2,-2,-1,1,1,-1,-2,-2,-6,-6,-6,-6,-7,-7,-7,-7,-8,-7,-6,-5,-4,-3,-3,-2,-1,1,0,1,1,1,-1,-1,-2,-2,-2,-2,-1,-1,-2,-1,1,1,1,-1,1,1,1,-1,-1,1,1,-1,-1,-1,1,-1,-2,-2,-2,-3,-3,-4,-5,-5,-5,-4,-3,-2,-2,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,-2,-3,-4,-5,-6,-7,-8,-9,0,0,0,0,0,0,0,-9,-9,-8,-8,-7,-7,-7,-6,-7,-6,-6,-6,-6,-6,-6,-7,-6,-6,-6,-6,-6,-7,-7,-8,-7,-7,-6,-5,-4,-3,-3,-2,-1,1,1,1,-1,-2,-3,-5,-5,-5,-6,-6,-6,-6,-6,-7,-7,-6,-5,-5,-4,-3,-2,-1,1,0,0,0,1,1,-1,-1,-2,-1,-2,-1,1,-1,-1,-1,1,-1,-1,1,1,1,-1,1,1,-1,1,1,1,1,1,-1,-1,-2,-2,-3,-4,-5,-4,-5,-4,-4,-3,-2,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,-1,-2,-3,-3,-4,-5,-7,-7,-8,-9,-9,0,0,0,0,-9,-9,-9,-8,-8,-8,-7,-7,-6,-6,-6,-6,-6,-5,-5,-5,-5,-6,-5,-5,-5,-5,-5,-6,-7,-7,-7,-6,-6,-5,-4,-3,-2,-2,-1,1,1,-1,-1,-2,-3,-4,-4,-5,-6,-5,-5,-5,-6,-6,-6,-6,-5,-4,-3,-2,-1,1,1,0,0,0,0,1,1,1,-1,1,-1,1,-1,-1,1,-1,1,1,-1,1,-1,-1,-1,1,0,1,1,0,1,-1,-1,1,-1,-1,-2,-2,-3,-4,-3,-4,-5,-4,-3,-2,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-2,-3,-4,-5,-6,-6,-7,-8,-9,0,0,0,0,0,-9,-8,-8,-7,-7,-7,-6,-6,-5,-5,-5,-5,-5,-4,-4,-4,-5,-5,-4,-4,-4,-4,-5,-6,-6,-7,-7,-6,-5,-5,-4,-3,-2,-1,1,1,1,-1,-2,-2,-3,-3,-4,-4,-4,-5,-4,-4,-5,-5,-6,-5,-5,-4,-3,-2,-1,1,1,1,1,1,0,0,0,0,1,1,-1,1,-1,-2,-1,-1,1,1,-1,1,-1,-2,-1,1,1,-1,1,0,0,1,1,1,1,-1,-1,-2,-3,-3,-3,-4,-4,-4,-3,-2,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-2,-3,-3,-4,-5,-6,-7,-8,-9,-9,0,0,0,0,0,-9,-8,-7,-7,-6,-6,-6,-5,-5,-4,-4,-4,-4,-3,-3,-3,-3,-4,-4,-3,-3,-3,-4,-5,-6,-6,-7,-6,-5,-4,-3,-3,-2,-1,1,1,-1,-2,-3,-3,-4,-2,-3,-3,-3,-3,-4,-3,-4,-5,-5,-4,-4,-4,-3,-2,-1,-1,1,1,-1,-1,1,1,0,0,0,1,1,1,1,-1,-2,-1,1,-1,-1,1,-1,-2,-1,1,0,1,1,0,0,0,0,0,1,1,-1,-1,-2,-2,-3,-4,-5,-4,-3,-2,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,-1,-2,-3,-4,-5,-6,-7,-8,-8,-9,0,0,0,0,0,-9,-8,-7,-6,-6,-6,-5,-4,-4,-3,-4,-3,-3,-2,-2,-2,-2,-3,-3,-2,-2,-3,-3,-4,-5,-5,-6,-6,-5,-5,-4,-3,-2,-1,1,1,-1,-2,-3,-4,-4,-1,-2,-2,-2,-3,-3,-3,-3,-4,-4,-4,-3,-3,-2,-2,-2,-2,-2,-1,-2,-1,1,1,1,1,0,1,1,0,1,-1,-2,-2,-1,-1,1,1,-1,-1,-1,1,0,0,0,0,1,1,1,0,0,1,1,-1,-1,-2,-2,-3,-4,-3,-3,-2,-2,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,1,1,-1,-2,-3,-4,-5,-6,-7,-7,-8,-9,-9,-9,0,0,0,-9,-8,-6,-5,-5,-5,-5,-4,-3,-3,-3,-2,-2,-1,-1,-1,-1,-1,-2,-1,-2,-2,-3,-4,-4,-5,-5,-5,-5,-5,-4,-4,-3,-2,-1,1,1,-1,-2,-3,-3,-1,-1,-1,-1,-2,-2,-2,-3,-3,-3,-3,-3,-2,-2,-1,-2,-2,-2,-2,-2,-2,-1,-1,-1,-1,1,0,0,1,1,-1,-1,-2,-2,-1,1,1,1,-1,-2,-1,1,1,1,1,1,-1,1,1,0,0,0,1,1,-1,-1,-2,-3,-4,-3,-2,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,-1,-2,-3,-3,-4,-5,-6,-6,-7,-8,-8,-8,-9,-9,0,0,-9,-8,-7,-6,-5,-4,-4,-4,-3,-2,-2,-1,-1,-1,1,1,1,1,1,1,-1,-2,-3,-3,-3,-4,-4,-4,-4,-4,-4,-4,-3,-3,-1,-1,-1,-1,-2,-2,-2,1,1,1,1,-1,-1,-1,-2,-2,-2,-2,-2,-1,-1,1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,0,1,1,1,1,-1,-2,-2,-1,-1,1,1,-1,-1,-2,-1,-1,1,-1,-1,1,-1,1,1,0,0,0,1,1,-1,-2,-3,-4,-3,-3,-2,-2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,-2,-3,-4,-4,-5,-5,-5,-6,-6,-7,-7,-8,-8,-9,-9,-8,-8,-7,-6,-5,-4,-3,-3,-2,-2,-1,-1,1,1,1,0,0,0,1,-1,-1,-1,-2,-2,-2,-3,-3,-3,-3,-3,-3,-3,-3,-2,-2,-2,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,1,1,1,1,-1,-1,-1,-2,-2,-2,1,-1,-1,1,1,-1,-1,-1,-1,1,1,-1,-1,-1,-1,1,0,0,0,1,1,-1,-2,-3,-4,-4,-3,-2,-1,1,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,-2,-3,-4,-5,-4,-4,-4,-4,-5,-5,-6,-7,-7,-8,-8,-8,-8,-7,-6,-5,-5,-4,-3,-2,-1,-1,-1,1,0,0,0,0,0,0,1,1,1,-1,-1,-1,-1,-2,-3,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-1,-2,-1,1,0,0,0,0,0,0,0,1,1,-1,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,1,1,-1,-1,1,-1,-2,-2,-2,-1,-1,1,-1,-1,1,-1,1,-1,1,0,1,-1,-2,-2,-1,-1,1,1,0,1,-1,-1,-2,-2,-3,-3,-3,-2,-2,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,-2,-2,-3,-4,-4,-4,-3,-3,-4,-4,-4,-5,-6,-7,-8,-9,-8,-7,-7,-6,-5,-4,-4,-3,-2,-1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,-1,-1,-1,-1,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,-1,-1,-1,1,1,-1,-1,-1,-1,1,-1,1,1,0,1,1,-1,1,0,1,-1,-2,-1,1,-1,-1,1,0,0,1,1,-1,-1,-2,-2,-3,-3,-2,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,-1,-1,-2,-3,-3,-3,-3,-3,-3,-3,-2,-3,-3,-4,-5,-6,-7,-8,-8,-7,-6,-6,-5,-4,-3,-3,-3,-2,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-2,-1,1,-1,-1,-1,1,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,-1,1,0,0,0,1,-1,1,0,1,-1,-2,-1,-1,-2,-1,1,0,0,0,0,1,-1,-1,-1,-2,-2,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-3,-4,-5,-6,-7,-7,-7,-7,-6,-5,-4,-4,-3,-2,-2,-1,-1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,-1,-1,-1,-1,1,1,-1,1,1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,-2,-2,-2,-2,-2,-1,1,0,0,0,0,1,1,1,-1,-2,-3,-2,-1,1,0,0,0,0,0,0,0,0,0,0,1,1,-1,-2,-3,-3,-2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-2,-3,-4,-5,-6,-7,-7,-6,-6,-6,-6,-5,-4,-3,-2,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,1,1,1,1,-1,-1,1,-1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,-1,-1,-2,-2,-2,-1,-1,-1,1,0,0,1,1,1,1,-1,-2,-3,-3,-2,-1,1,0,0,0,0,0,0,0,1,1,1,1,-1,-1,-2,-3,-3,-2,-1,1,1,-1,1,1,1,1,-1,-2,-4,-4,-5,-6,-7,-7,-6,-5,-5,-5,-4,-4,-3,-2,-1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,-1,-1,-1,-1,-1,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,1,-1,-1,-1,-1,-1,1,-1,1,0,0,0,1,-1,1,-1,-1,-2,-3,-3,-2,-1,1,1,0,0,0,0,0,0,1,-1,-1,-1,-1,-2,-2,-3,-3,-2,-1,-1,1,1,1,0,0,1,-1,-2,-3,-4,-5,-6,-7,-7,-6,-5,-4,-4,-3,-3,-2,-2,-1,1,0,0,0,0,1,1,-1,-1,1,0,0,0,0,1,-2,-2,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,1,1,1,-1,-1,1,1,-1,1,1,0,0,1,1,-1,-1,-2,-3,-3,-4,-3,-2,-1,1,0,0,0,0,0,0,1,-1,-2,-2,-2,-3,-3,-4,-3,-3,-2,-2,-1,1,1,0,1,1,-1,-2,-3,-4,-5,-6,-7,-6,-6,-5,-4,-3,-2,-2,-2,-1,-1,1,0,0,0,0,1,-1,-1,-1,1,0,0,0,0,1,-1,-1,1,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,-1,1,-1,-1,1,-1,-1,-1,-1,-1,1,0,0,0,1,1,-1,-2,-3,-4,-4,-3,-2,-1,1,1,0,0,0,0,1,-1,-2,-2,-3,-3,-3,-4,-5,-4,-4,-3,-2,-2,-1,1,1,-1,-1,-1,-2,-3,-4,-5,-6,-6,-5,-5,-4,-3,-3,-1,-2,-1,-1,1,1,0,0,0,1,1,-1,-1,1,1,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,-2,-1,-1,-1,-1,-1,-1,-2,-1,-1,-1,-1,1,1,1,1,-1,-2,-3,-4,-4,-4,-3,-2,-1,-1,1,0,0,0,0,1,-1,-2,-3,-4,-4,-4,-5,-6,-5,-4,-4,-3,-2,-1,-1,-1,-2,-2,-2,-2,-3,-4,-5,-5,-5,-5,-4,-3,-3,-2,-1,-1,1,1,1,0,0,0,1,1,-1,-1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,-1,-2,-2,-2,-2,-2,-2,-1,1,1,1,1,-1,-1,-1,1,-1,-1,-2,-3,-4,-5,-4,-3,-2,-2,-1,1,0,0,0,1,-1,-1,-2,-3,-4,-5,-5,-6,-6,-5,-5,-4,-4,-3,-2,-2,-2,-2,-3,-3,-3,-4,-5,-5,-4,-5,-5,-4,-3,-2,-2,-1,1,0,0,0,0,0,0,1,-1,-1,-1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-2,-2,-3,-3,-3,-3,-3,-3,-2,-1,1,1,1,1,-1,-1,-1,-2,-2,-2,-3,-4,-5,-5,-4,-3,-3,-2,-1,1,1,0,1,-1,-2,-3,-3,-4,-5,-6,-7,-6,-6,-6,-6,-5,-4,-3,-3,-3,-3,-4,-4,-4,-4,-5,-4,-4,-4,-4,-4,-4,-3,-2,-1,1,0,0,0,0,0,0,1,-1,-2,-1,1,0,0,1,1,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,-2,-3,-3,-4,-4,-4,-4,-3,-2,-1,1,0,0,1,1,-1,-2,-1,-1,-2,-2,-3,-4,-4,-5,-4,-4,-3,-2,-1,-1,1,1,-1,-2,-3,-4,-5,-5,-6,-7,-7,-7,-7,-6,-5,-4,-4,-4,-4,-4,-4,-5,-5,-4,-4,-3,-3,-3,-3,-4,-3,-3,-2,-1,1,0,0,0,0,0,0,1,-1,-2,-1,1,1,1,-1,-1,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-2,-3,-3,-4,-4,-4,-4,-3,-2,-2,-1,1,0,0,0,1,-1,-1,-1,1,-1,-1,-2,-3,-4,-4,-5,-4,-3,-3,-2,-2,-1,-1,-1,-2,-3,-4,-5,-6,-6,-7,-8,-8,-7,-6,-5,-5,-5,-5,-5,-5,-5,-5,-4,-3,-3,-3,-2,-2,-2,-3,-4,-3,-2,-1,1,0,1,1,0,0,1,1,-1,-2,-2,-1,-1,-1,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-2,-2,-2,-2,-2,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-2,-2,-3,-3,-3,-4,-4,-3,-2,-1,1,1,0,0,0,1,1,-1,1,1,1,-2,-2,-3,-3,-4,-5,-5,-4,-4,-3,-2,-2,-2,-2,-3,-4,-5,-6,-6,-7,-7,-8,-8,-7,-7,-6,-6,-6,-6,-6,-6,-6,-5,-4,-3,-2,-2,-1,-1,-1,-2,-3,-3,-2,-1,1,1,-1,-1,1,0,1,-1,-1,-2,-2,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-3,-3,-3,-3,-2,-1,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,-2,-2,-3,-3,-4,-3,-2,-1,-1,1,0,0,0,0,1,1,1,0,1,-1,-1,-2,-3,-4,-4,-5,-5,-5,-4,-3,-3,-3,-3,-4,-5,-5,-6,-7,-8,-8,-8,-9,-8,-8,-7,-7,-7,-7,-7,-6,-6,-5,-4,-3,-2,-1,1,1,-1,-2,-2,-3,-3,-2,-1,-1,-2,-1,1,0,1,-1,-2,-2,-2,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-4,-4,-4,-3,-2,-2,-2,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,-1,-2,-2,-2,-2,-3,-2,-1,1,0,0,0,0,0,0,0,0,0,1,-1,-2,-2,-3,-4,-5,-5,-6,-5,-5,-4,-4,-4,-5,-6,-5,-6,-7,-8,-9,-9,-9,-9,-8,-8,-8,-8,-7,-6,-5,-5,-4,-3,-2,-1,-1,1,1,1,-1,-2,-3,-3,-2,-2,-1,-2,-1,-1,1,1,-1,-2,-1,-1,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-5,-5,-4,-3,-3,-3,-2,-1,-1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,-1,-1,-1,-2,-2,-1,1,0,0,0,0,0,0,0,0,0,1,-1,-2,-2,-3,-4,-4,-4,-5,-6,-6,-5,-5,-5,-6,-6,-6,-7,-8,-8,-9,0,0,-9,-9,-9,-9,-8,-7,-6,-5,-4,-4,-3,-3,-2,-1,1,0,1,-1,-2,-3,-3,-2,-2,-1,1,-2,-1,1,-1,-2,-2,-1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-5,-5,-5,-4,-4,-3,-2,-2,-2,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,-2,-1,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,-2,-2,-3,-3,-4,-5,-5,-6,-6,-6,-6,-6,-7,-7,-8,-9,-9,-9,-9,0,0,0,-9,-8,-8,-7,-6,-5,-4,-3,-2,-2,-1,1,-1,1,1,-1,-1,-2,-3,-3,-2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-6,-6,-5,-5,-4,-4,-3,-3,-2,-1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,-1,-2,-1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,-1,-2,-3,-4,-5,-5,-6,-7,-7,-7,-7,-8,-8,-8,-9,0,0,0,0,0,0,-9,-8,-8,-7,-6,-5,-4,-3,-2,-1,1,1,-1,-1,1,1,-1,-2,-2,-3,-2,-1,-1,1,1,-1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-7,-7,-6,-5,-5,-4,-4,-3,-2,-1,1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-2,-3,-4,-4,-5,-6,-6,-7,-8,-8,-9,-9,-9,-9,0,0,0,0,0,0,-9,-8,-7,-6,-6,-5,-4,-3,-2,-1,1,1,-1,1,0,1,-1,-1,-2,-2,-1,-1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-8,-8,-7,-6,-6,-5,-4,-3,-2,-2,-1,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,-2,-3,-3,-3,-4,-5,-6,-6,-7,-8,-9,0,0,0,0,0,0,0,0,0,0,-9,-8,-7,-7,-5,-4,-3,-2,-1,1,-1,-1,1,1,1,1,-1,-1,-1,-1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,-8,-9,-8,-7,-7,-6,-5,-4,-3,-3,-2,-2,-2,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,1,-1,-1,-2,-2,-3,-4,-5,-6,-7,-8,-9,-9,0,0,0,0,0,0,0,0,0,0,-9,-8,-7,-6,-5,-4,-3,-2,-2,-1,-1,-1,1,1,-1,-1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,1,1,0,0,0,0,0,-9,-9,-9,-8,-7,-6,-5,-5,-5,-4,-3,-3,-2,-2,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-2,-3,-4,-5,-6,-7,-8,-9,0,0,0,0,0,0,0,0,0,0,0,-9,-8,-7,-6,-5,-4,-3,-3,-3,-2,-2,-2,-1,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,-1,-2,-1,1,0,0,0,0,0,0,-9,-9,-8,-7,-6,-6,-6,-5,-4,-4,-3,-3,-3,-2,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,-2,-1,1,1,1,1,-1,-2,-3,-4,-5,-6,-7,-8,-9,0,0,0,0,0,0,0,0,0,0,0,-9,-8,-7,-7,-6,-5,-5,-4,-3,-3,-3,-2,-1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,-1,-2,-2,-1,1,1,0,0,0,0,0,0,0,-9,-8,-7,-7,-7,-6,-5,-4,-4,-4,-3,-2,-1,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,-1,-2,-1,-1,-1,1,-1,-2,-3,-4,-5,-6,-7,-8,-9,0,0,0,0,0,0,0,0,0,0,0,0,-9,-8,-7,-6,-5,-4,-4,-3,-3,-3,-2,-2,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,-1,-2,-2,-2,-2,-2,-1,1,0,0,0,0,0,0,0,0,-9,-8,-8,-7,-6,-5,-5,-5,-4,-3,-2,-2,-1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,1,-1,-2,-2,-2,-1,-1,-2,-3,-4,-5,-6,-7,-8,-9,0,0,0,0,0,0,0,0,0,0,0,-9,-8,-7,-6,-6,-5,-4,-3,-3,-2,-2,-2,-2,-1,-1,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,-1,-1,-1,-1,-1,-1,1,0,0,1,-1,-1,-2,-3,-2,-2,-1,1,0,0,0,0,0,0,0,0,0,-9,-8,-7,-6,-6,-6,-5,-4,-4,-3,-2,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,-1,1,1,-1,-1,-2,-3,-2,-2,-2,-2,-3,-4,-5,-6,-7,-8,-8,-9,0,0,0,0,0,0,0,0,0,0,-9,-8,-7,-6,-5,-5,-3,-3,-2,-1,-1,-1,-1,-2,-1,1,0,0,0,0,0,1,1,-1,1,1,1,0,0,0,0,0,0,1,-1,-1,-2,-2,-2,-2,-1,1,1,0,1,-1,-1,-2,-2,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,-9,-8,-7,-7,-7,-6,-5,-4,-3,-2,-1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1,-1,-1,-1,-1,-2,-2,-3,-3,-3,-3,-3,-3,-4,-5,-6,-6,-7,-8,-9,-9,0,0,0,0,0,0,0,0,0,-9,-8,-7,-6,-5,-4,-3,-2,-2,-1,1,1,-1,-1,1,1,0,0,0,0,1,-1,1,1,-1,-1,1,0,0,0,0,0,0,1,-1,-2,-3,-3,-3,-2,-2,-1,1,0,1,1,1,-1,-2,-1,1,0,0,0,0,0,0
+2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,0,0,1,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,-1,-6,-7,-14,-5,-5,-3,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,2,2,-3,-3,0,-4,0,0,0,1,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,1,3,4,2,1,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,-2,0,0,1,0,-1,0,1,0,-9,-11,-5,-3,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,2,1,1,0,2,-6,-4,-3,2,1,4,4,4,4,4,4,4,4,4,4,4,4,4,0,1,0,-10,0,-13,-8,-4,-6,-13,-9,-9,-3,1,1,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,-3,-7,-9,-6,-7,-8,-13,1,-8,-5,0,4,4,4,4,4,4,4,4,4,4,2,2,-3,-8,0,0,-13,-10,-10,-5,-7,-3,-6,-5,-1,0,2,2,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,3,-14,-6,-15,-11,-9,-12,-22,-16,-13,-17,-3,-1,0,4,5,5,5,5,5,5,-1,4,5,-1,2,-6,-1,1,-8,-5,-4,-1,-1,-2,-1,-2,0,1,3,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,-3,-8,1,1,-4,-23,-25,-25,-30,-18,-9,-1,1,-1,-2,2,5,5,2,0,1,4,5,3,3,5,4,-2,1,-2,-3,-1,-2,-3,-2,-2,0,5,3,3,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,0,0,0,-3,-8,0,-11,-21,-31,-12,-4,3,3,0,-2,2,5,5,4,2,1,-1,5,3,4,-2,1,5,2,-7,-14,-17,-20,-13,-4,-5,-3,2,0,-10,-2,2,5,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,1,-5,-10,-16,-26,-26,-9,-5,-5,0,0,0,0,1,5,5,5,5,4,3,-1,0,-7,-4,2,0,-1,2,3,-13,-30,-28,-27,-21,-12,-5,2,-4,-5,-3,3,3,1,1,5,5,5,5,4,2,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,3,1,-1,-3,-16,-16,-9,-1,-1,-6,-1,0,0,-1,1,2,6,6,4,-3,-3,-4,-2,0,-2,0,1,-1,-6,-6,-20,-34,-34,-31,-25,-18,-12,-2,-4,-1,1,2,-1,0,1,6,5,5,1,0,4,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,5,6,6,3,5,4,0,-2,-9,1,1,0,-2,-7,-5,-3,-6,-2,6,6,-1,5,-6,-15,-15,-10,-8,-11,-7,-7,-14,-21,-23,-28,-34,-37,-35,-30,-25,-20,-15,-12,-9,-4,-1,0,1,5,0,1,-1,-1,4,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,5,1,5,6,4,4,0,3,4,2,6,3,0,-16,-28,-15,-15,-3,6,6,-3,0,4,1,-5,-16,-20,-19,-20,-20,-18,-21,-27,-32,-34,-37,-37,-37,-34,-30,-27,-23,-22,-20,-11,-4,1,3,0,-2,-4,0,3,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,4,-7,1,6,6,6,6,6,6,6,4,-1,-17,-26,-22,-13,-7,6,6,2,-1,3,3,6,0,-11,-19,-24,-26,-28,-28,-30,-34,-37,-37,-37,-37,-37,-37,-34,-32,-30,-28,-24,-16,-2,4,4,-2,4,-2,4,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,5,6,6,6,6,6,6,4,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,3,-7,-4,4,7,7,7,7,7,1,-9,-24,-24,-23,-8,1,5,7,7,2,4,4,2,2,-3,-9,-16,-22,-28,-32,-34,-35,-36,-36,-36,-36,-36,-36,-36,-36,-34,-32,-29,-24,-18,-5,4,4,3,4,0,3,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,6,7,7,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,6,4,-9,-23,-2,6,7,6,6,6,-1,-17,-18,-14,-3,-2,1,7,7,7,7,7,3,0,-10,-12,-15,-19,-24,-29,-34,-36,-36,-36,-36,-36,-36,-36,-36,-36,-36,-36,-33,-29,-24,-19,-11,-3,3,0,1,3,5,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,2,3,5,0,2,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,5,0,-11,-8,1,7,7,4,3,4,0,-3,0,0,4,7,7,7,7,7,7,0,-8,-15,-20,-22,-25,-29,-33,-36,-36,-36,-36,-36,-36,-36,-36,-36,-36,-36,-36,-33,-28,-22,-16,-11,-6,3,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,4,7,6,0,7,6,5,3,1,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,6,1,-4,3,8,6,1,1,-3,4,7,7,8,8,8,8,8,8,2,-5,-13,-18,-24,-27,-30,-33,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-32,-27,-21,-14,-8,-5,0,7,2,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,2,4,4,-2,4,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,5,-5,-4,-2,6,8,8,7,0,-10,-4,1,8,8,8,8,8,7,4,-7,-13,-18,-24,-28,-32,-34,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-33,-28,-22,-16,-10,-6,-2,3,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,6,0,3,0,-1,6,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,0,6,8,2,4,6,-11,-16,-14,-7,5,8,8,6,5,2,-7,-16,-21,-25,-29,-33,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-34,-30,-24,-17,-11,-8,-5,2,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,7,3,7,4,0,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,7,8,8,7,4,4,4,-11,-14,-1,5,8,8,-1,-5,-4,-15,-21,-25,-29,-32,-34,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-35,-32,-25,-17,-11,-9,-5,1,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,7,8,5,5,8,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,6,7,-11,0,8,9,9,9,8,1,-5,-16,-13,-23,-30,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-33,-27,-21,-16,-11,-3,5,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,7,5,9,9,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,8,9,9,6,-1,3,9,9,9,9,9,9,2,7,6,-7,-24,-33,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-32,-27,-22,-13,-1,7,7,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,8,6,9,9,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,8,4,5,6,4,6,9,9,9,9,9,5,4,7,4,-12,-25,-32,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-31,-25,-16,2,7,4,7,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,7,7,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,8,8,9,9,9,6,1,-3,2,4,-2,5,8,9,9,9,9,9,3,2,-14,-18,-21,-23,-24,-28,-33,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-34,-33,-15,0,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,9,10,10,9,9,8,9,10,10,9,10,10,9,7,10,10,10,10,10,10,7,2,4,6,6,0,-7,-15,-24,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-14,1,7,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,7,9,8,10,10,10,10,10,10,10,9,9,10,10,10,10,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,-3,-15,-27,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-21,-7,0,5,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,9,1,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,8,5,7,10,10,9,10,10,10,10,10,9,10,10,10,10,9,9,10,9,9,0,-12,2,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,-6,-20,-31,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-32,-22,-4,-2,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,4,0,7,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,9,10,9,10,9,10,10,10,10,10,10,10,10,10,9,10,9,7,7,5,2,-1,-9,0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,3,-11,-25,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-33,-26,-5,4,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,5,1,9,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,11,8,9,10,8,9,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,-2,-19,-32,-32,-32,-32,-32,-32,-32,-32,-32,-32,-32,-32,-32,-32,-32,-32,-32,-31,-27,-17,-6,8,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,6,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,-17,-30,-32,-32,-32,-32,-32,-32,-32,-32,-32,-32,-32,-32,-32,-32,-32,-31,-13,-8,0,6,5,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,9,8,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,11,9,9,11,11,11,11,11,11,11,11,11,11,11,11,11,11,9,9,9,11,11,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,7,-12,-27,-32,-32,-32,-32,-32,-32,-32,-32,-32,-32,-32,-32,-32,-32,-32,-23,-17,1,3,4,9,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,7,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,12,12,11,12,12,12,12,12,12,12,12,12,12,12,12,11,12,12,9,10,12,12,10,8,12,8,3,10,1,-2,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,-3,-21,-31,-31,-31,-31,-31,-31,-31,-31,-31,-31,-31,-31,-31,-31,-31,-18,-6,4,10,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,9,10,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,12,11,12,12,12,11,12,12,12,12,12,12,12,11,12,12,12,11,11,10,8,5,8,12,12,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,4,-20,-31,-31,-31,-31,-31,-31,-31,-31,-31,-31,-31,-31,-31,-31,-31,-22,-4,0,10,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,8,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,10,11,12,12,11,11,11,11,9,10,12,11,12,12,12,12,12,12,12,11,12,12,12,11,10,12,10,9,11,10,1,-5,9,12,12,12,12,12,12,12,12,12,12,12,12,11,0,-15,-29,-31,-31,-31,-31,-31,-31,-31,-31,-31,-31,-31,-31,-31,-30,-14,-8,-10,8,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,9,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,10,11,12,12,11,11,10,9,10,11,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,12,11,10,10,5,5,4,5,12,12,12,12,12,12,12,12,12,12,12,12,11,10,-1,-7,-29,-31,-31,-31,-31,-31,-31,-31,-31,-31,-31,-31,-31,-21,-3,2,-9,8,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,11,9,11,11,11,12,13,13,13,13,13,13,13,13,12,10,13,13,13,13,13,13,13,12,12,12,10,7,6,4,3,13,13,13,13,13,13,13,13,13,13,13,13,13,0,-23,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-28,0,-11,13,12,10,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,12,12,12,13,13,13,13,13,13,13,9,11,13,13,13,13,11,12,12,13,13,12,9,6,6,4,7,12,13,13,13,13,13,13,13,13,13,11,3,10,-11,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-16,0,-1,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,12,11,13,11,11,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,11,10,12,12,13,13,12,13,13,13,13,13,13,13,12,13,13,13,13,13,13,13,13,13,13,13,12,10,0,6,5,9,13,13,13,13,13,13,13,13,13,0,11,13,-4,-25,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-22,-7,-19,3,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,12,10,9,9,9,11,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,11,5,-6,-17,-6,0,10,14,14,14,14,14,14,13,12,12,13,11,6,12,14,14,14,14,13,13,13,14,14,14,14,14,14,14,14,14,14,14,13,14,14,14,14,12,14,14,14,14,14,13,11,10,7,7,14,14,14,14,14,14,14,14,14,14,14,14,6,-15,-29,-29,-29,-29,-29,-29,-29,-29,-29,-29,-29,-27,-29,-29,9,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,13,8,2,8,10,11,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,13,2,-12,-12,-6,-1,5,9,11,13,14,14,13,13,13,12,13,12,9,6,6,11,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,13,14,14,14,13,11,14,14,14,14,14,14,14,12,10,11,14,14,14,14,14,14,14,14,14,14,14,13,-2,-17,-29,-29,-29,-29,-29,-29,-29,-29,-29,5,-17,-6,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,13,12,4,3,6,10,10,11,13,13,13,14,13,13,12,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,-4,-1,2,5,9,9,12,7,0,14,14,13,12,13,12,13,11,10,9,6,12,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,13,13,13,14,14,11,11,13,14,14,14,14,14,14,13,11,8,3,14,14,14,14,14,14,14,14,14,13,13,-2,-18,-29,-29,-29,-29,-29,-29,-29,-29,-28,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,7,-5,7,10,11,12,12,12,12,13,11,13,13,12,12,13,14,14,14,14,14,14,14,14,14,14,14,14,13,13,13,4,6,10,11,11,11,11,10,7,13,14,14,13,12,12,12,12,11,9,11,10,11,11,10,11,11,12,14,13,13,14,14,14,14,14,14,13,12,11,11,12,14,12,12,13,14,14,14,14,14,14,14,13,10,3,-14,8,14,14,14,14,14,14,14,10,10,-1,-18,-29,-29,-29,-29,-29,-29,-29,-29,-14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,11,0,0,8,10,13,13,13,13,12,11,12,13,13,13,13,12,14,14,14,14,14,13,14,14,14,14,13,14,14,13,13,12,13,15,14,12,8,7,11,7,12,15,14,14,14,13,12,13,12,14,14,12,12,10,10,10,10,11,13,13,13,14,14,14,14,14,15,12,12,12,11,12,15,14,14,15,15,15,15,15,15,15,15,15,14,13,2,5,7,14,15,15,15,15,15,11,9,2,-20,-28,-28,-28,-28,-28,-17,-17,-14,11,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,7,1,4,7,12,12,14,14,14,14,13,14,15,15,15,14,14,14,15,15,15,15,15,15,14,14,15,14,15,15,15,15,15,14,12,12,13,12,7,1,9,8,10,12,12,14,15,13,12,14,13,13,14,14,12,11,11,10,9,10,11,13,13,13,14,14,14,14,14,13,12,14,14,13,14,15,15,15,15,15,15,15,15,15,15,15,14,15,15,6,10,15,15,15,15,15,15,3,-2,-7,-25,-28,-28,-28,-28,-19,-4,11,14,15,15,15,15,15,15,15,14,13,15,13,13,13,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,9,2,7,11,12,14,15,15,14,14,13,13,14,15,15,15,15,15,15,15,15,15,15,15,14,15,15,15,15,15,14,14,13,12,8,5,7,9,5,0,1,1,4,-6,-10,0,6,12,12,13,13,13,14,14,12,11,11,11,10,10,12,12,13,14,14,14,14,14,14,14,13,13,12,15,15,15,15,15,15,15,15,15,15,15,14,13,12,14,15,15,15,15,15,15,15,15,15,14,9,-8,-28,-28,-28,-28,-18,6,15,15,15,15,15,15,15,15,15,15,15,14,13,8,5,8,10,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,14,5,5,10,12,12,15,15,15,15,14,13,14,14,15,15,15,15,15,15,14,15,15,15,14,14,15,15,15,15,15,14,5,12,15,14,9,0,0,4,0,-8,-7,-8,-9,-16,-18,-10,-3,11,13,13,14,12,13,14,13,12,12,12,12,13,13,13,14,15,15,16,15,16,16,15,15,15,15,16,16,14,15,16,16,16,16,16,16,15,15,12,8,11,16,16,16,16,16,16,16,16,16,14,0,-27,-27,-27,-27,-15,16,16,16,16,16,16,16,16,16,16,16,16,16,11,7,-3,-3,13,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,14,10,11,12,13,14,16,16,16,16,15,15,15,15,15,16,16,16,16,16,16,16,16,15,15,14,15,15,15,15,15,13,13,16,0,-5,2,6,5,1,7,6,2,0,4,-6,-13,-14,-10,5,13,12,14,13,13,14,14,13,12,12,12,12,13,13,14,14,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,12,14,12,8,16,16,16,16,16,16,16,16,16,9,-4,-27,-27,-27,-27,-1,16,16,16,16,16,16,16,16,16,16,16,16,16,16,10,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,10,9,13,13,14,16,16,16,16,15,15,15,15,15,15,16,16,16,16,16,16,16,15,15,15,15,15,15,15,15,15,12,15,16,-1,0,0,-3,5,6,5,5,4,2,-1,-1,-8,-13,-16,-8,8,13,13,14,14,14,15,14,13,13,13,12,13,14,13,14,14,14,15,15,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,12,15,15,16,16,16,16,16,16,16,16,16,16,-3,-27,-27,-27,-14,14,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,10,8,3,8,13,14,16,16,16,16,15,15,16,15,15,15,15,16,15,15,16,16,16,15,15,15,15,15,15,15,15,15,15,12,15,16,-8,1,9,-13,-16,-1,5,-3,2,0,-5,-1,-3,-11,-14,-11,3,13,14,9,13,15,15,15,15,14,13,12,12,13,13,14,14,14,15,16,16,16,16,16,16,16,16,16,16,16,16,16,14,15,14,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,12,-14,-27,-27,-10,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,13,-1,-5,3,5,9,13,15,16,16,16,15,15,15,15,16,16,15,15,16,16,15,15,15,16,16,16,15,15,15,15,15,15,15,15,13,15,16,0,-5,0,0,-6,-24,-12,-10,-2,1,-10,-7,-7,-4,-10,1,0,13,14,14,15,15,15,15,15,13,13,12,12,12,13,13,13,13,15,15,16,16,16,16,16,16,16,16,16,16,16,16,15,12,10,14,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,7,0,-9,1,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,7,-3,0,7,8,10,13,16,16,16,16,16,15,16,16,16,16,16,16,16,16,15,15,15,16,15,15,15,15,15,15,15,15,15,15,11,15,16,11,17,15,9,-2,-21,-26,-5,-2,-3,0,-1,-3,4,0,1,1,13,10,11,13,14,15,15,16,15,13,12,12,13,14,14,14,15,16,16,17,17,17,17,17,17,17,17,17,17,17,17,16,16,14,14,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,9,12,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,9,-5,7,14,14,14,15,17,17,17,17,17,17,17,17,17,17,17,17,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,15,11,16,17,17,17,17,17,17,17,16,5,-3,-3,0,1,-9,0,6,3,10,12,10,11,9,14,10,13,15,15,15,14,13,13,13,13,14,14,15,16,17,17,17,17,17,17,17,17,17,17,17,17,17,16,16,16,16,17,17,17,15,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,11,2,12,16,16,16,16,17,17,17,17,17,17,17,17,17,17,17,17,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,11,16,17,17,17,17,17,17,17,17,16,10,8,3,0,-5,-9,-5,-13,-3,11,12,13,14,13,10,14,16,16,15,13,13,14,13,13,14,15,15,16,17,17,17,17,17,17,17,17,17,17,17,17,16,16,16,15,16,17,17,17,9,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,13,11,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,16,16,17,16,16,16,16,16,16,16,16,16,15,16,16,15,12,16,17,17,17,17,17,17,17,17,17,17,15,12,-2,-4,-10,-12,-7,-18,2,9,7,9,13,11,13,8,14,12,11,12,12,13,14,14,14,15,16,17,17,17,17,17,17,17,17,17,17,17,17,16,16,15,15,15,16,16,15,9,14,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,17,17,17,17,17,17,17,17,17,17,17,15,16,17,17,17,17,17,17,17,17,17,17,17,16,16,16,16,16,17,16,16,16,16,17,16,16,16,16,16,16,14,15,16,17,17,17,17,17,17,17,17,17,16,16,7,-1,-8,-12,-15,-8,-5,6,5,6,10,9,9,12,13,12,12,11,12,14,14,14,15,15,16,16,17,17,17,17,17,17,17,17,17,17,17,17,15,14,14,14,15,15,14,11,13,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,12,15,17,17,17,17,17,17,17,17,17,17,16,16,17,17,17,17,17,17,16,17,16,16,16,15,16,16,16,16,16,16,16,17,17,16,16,16,16,16,16,15,14,15,16,17,17,17,17,17,17,17,17,17,17,17,16,6,2,-2,-5,-1,-4,6,8,9,9,8,9,10,10,12,13,13,13,13,14,15,15,16,16,16,16,16,16,17,17,17,17,17,17,17,17,16,15,14,13,12,13,12,13,12,13,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,17,16,16,16,16,16,15,16,16,16,16,16,17,16,16,16,17,16,16,17,17,16,14,14,14,16,17,17,17,17,17,17,17,17,17,17,17,17,16,2,0,3,2,2,-6,2,8,6,2,9,10,9,9,12,12,13,14,14,14,15,16,16,16,16,16,16,17,17,17,17,17,17,17,17,15,14,13,13,12,11,10,12,12,11,14,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,17,17,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,16,16,16,16,16,16,16,16,16,17,16,16,16,16,16,17,16,16,16,16,14,10,14,16,18,18,18,18,18,18,18,18,18,18,18,18,18,10,-4,4,4,7,2,-17,-8,0,6,9,10,10,10,11,11,12,15,16,16,16,16,16,16,16,16,17,17,18,18,18,18,18,18,17,17,16,15,13,12,11,10,12,13,12,15,17,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,17,18,17,17,17,17,16,17,17,17,17,17,17,17,17,17,17,17,17,16,17,18,17,17,16,17,12,11,15,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,3,-1,-7,2,-5,-23,-22,-16,1,5,8,9,10,11,13,13,13,15,16,16,17,16,15,16,15,16,16,17,17,18,18,18,18,17,16,15,14,12,11,10,10,11,12,13,15,14,15,16,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,18,17,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,16,18,18,18,17,17,16,12,15,15,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,15,-13,-8,0,1,-5,-12,-24,-18,2,6,8,9,10,12,12,12,12,14,16,17,16,15,14,14,15,15,16,17,18,18,18,18,17,16,15,15,10,10,12,10,10,10,12,13,15,16,16,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,17,18,18,18,18,18,18,18,17,16,18,18,18,18,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,18,18,18,17,17,17,14,16,15,16,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,12,-5,-18,-4,2,-4,-18,-20,-1,6,8,9,10,10,11,11,12,11,16,16,16,15,14,14,15,15,16,17,17,18,18,18,16,16,15,14,12,11,12,13,13,15,16,17,17,18,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,16,15,15,14,15,14,13,15,17,16,17,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,18,18,18,18,17,17,15,16,15,16,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,10,16,6,0,-7,-6,-13,-12,-8,4,4,1,5,7,9,10,10,14,14,16,15,15,14,14,14,16,15,16,16,16,16,16,16,15,15,14,14,13,15,17,18,18,18,18,18,18,16,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,18,16,16,16,16,15,12,13,13,14,14,10,14,15,15,15,16,16,17,18,18,17,17,17,17,17,18,17,18,18,18,18,18,18,18,17,15,15,16,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,16,17,3,-4,3,1,-5,-8,-4,2,5,7,6,9,9,10,13,13,15,15,15,15,14,14,17,17,14,15,15,16,16,15,14,14,12,16,13,18,16,15,18,18,18,18,16,15,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,17,17,17,16,15,11,13,13,11,12,17,15,12,16,15,7,16,17,17,17,17,17,18,17,17,17,18,18,18,18,18,18,18,18,18,18,17,17,15,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,16,5,10,11,6,-4,-7,-13,-7,-1,5,7,7,8,10,11,13,15,15,14,14,15,17,17,18,17,14,14,14,16,15,15,14,14,13,15,15,16,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,16,15,13,10,4,-10,-8,-8,4,16,17,18,18,16,10,5,17,17,18,18,18,18,17,18,18,18,18,18,18,18,18,18,18,18,18,18,17,17,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,15,4,18,12,2,-7,-22,-23,-19,-7,1,4,4,5,8,11,12,15,15,15,15,15,13,14,16,17,17,16,17,15,15,16,16,17,17,14,16,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,14,13,15,5,-18,-3,-7,4,9,13,17,17,18,18,10,11,5,16,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,15,0,1,-10,-7,-24,-25,-25,-25,-22,-11,-4,-2,2,8,12,13,13,15,15,16,15,14,16,17,16,16,17,17,16,15,17,17,18,14,14,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,15,4,11,-17,12,16,17,18,18,13,14,16,17,17,12,13,15,18,18,18,18,18,18,18,18,17,16,15,17,18,18,18,18,18,18,18,18,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,11,-11,-8,-9,2,-13,-22,-12,-25,-25,-14,-13,-8,-3,5,10,12,13,13,15,15,15,16,16,17,16,17,17,15,17,18,17,13,16,14,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,17,16,16,15,18,11,18,18,15,14,18,18,11,3,5,13,14,17,17,17,18,18,18,18,18,18,18,18,-4,-11,11,17,18,18,18,18,17,17,17,17,18,18,18
+[0,{"i":1,"type":"ocean","land":false,"border":true,"cells":2506,"firstCell":0,"vertices":[],"area":0,"shoreline":[],"height":0},{"i":2,"type":"island","land":true,"border":false,"cells":1714,"firstCell":28,"vertices":[5819,5924,5966,5976,6084,6137,6153,6195,6227,6437,6324,6334,6427,6388,6547,6669,6482,6613,6550,6481,6574,6714,6573,6430,6337,6429,6344,6046,6253,5984,6252,6192,5985,6193,5907,6095,6014,5816,5830,5939,6016,6071,6096,6213,6244,6367,6435,6246,6018,6001,5911,5814,5594,5590,5586,5397,5240,5308,5309,5146,4966,4982,4865,4754,4607,4608,4460,4230,4274,4464,4463,4610,4692,4864,4869,4934,4778,4783,4518,4526,4703,4674,4564,4777,4776,4951,4950,5004,5019,5230,5155,5321,5466,5465,5515,5546,5604,5861,5803,5894,5710,5849,5713,5300,5493,5320,5301,5179,5140,4923,4924,4763,4724,4537,4538,4276,4372,4106,4171,4107,4093,4086,4006,3820,3821,3484,3599,3514,3485,3286,3158,3081,2905,2906,2810,2808,2705,2605,2489,2353,2525,2311,2215,2494,2382,2450,2449,2628,2580,2691,2730,2782,2639,2744,2713,2589,2665,2545,2517,2470,2285,2370,2402,2324,2352,2240,2224,2169,2099,1932,2024,1874,2019,1736,2021,1931,1697,1667,1849,1638,1607,1743,1827,1822,1855,1656,1800,1742,1539,1570,1540,1464,1465,1372,1373,1192,1191,1274,1320,1415,1319,1418,1463,1308,1390,1397,1466,1468,1569,1587,1393,1512,1313,1277,1248,1189,1150,1062,1002,1038,1104,1149,1188,1287,1284,1389,1370,1511,1327,1492,1388,1477,1417,1350,1369,1212,1326,1244,1181,1184,1077,1119,1037,951,950,819,841,876,879,918,930,931,936,941,1033,1153,1186,1185,1066,1156,1169,1168,1175,1152,1047,934,1065,908,987,999,1089,1088,1174,1135,1302,1293,1412,1334,1459,1499,1603,1620,1721,1753,1752,1681,1881,1841,2046,2040,2178,2336,2335,2193,2277,2117,2212,2166,1872,1871,2125,1979,2079,1870,2039,1981,1816,1813,1748,1503,1624,1687,1634,1546,1428,1374,1310,1236,1296,1136,1266,1163,1058,1059,991,944,774,861,933,762,892,810,733,683,680,631,606,518,512,435,428,378,349,294,293,343,353,377,427,487,486,545,544,582,527,592,461,431,468,432,448,493,355,387,352,316,284,283,292,330,338,359,386,401,400,489,453,475,473,357,446,414,303,402,328,399,366,392,420,438,471,554,567,586,609,624,660,704,727,772,792,873,872,980,1040,1007,1147,1148,1315,1364,1257,1403,1519,1651,1573,1731,1640,1572,1732,1759,1758,1907,1906,2006,2073,2072,2150,2153,2180,2270,2300,2254,2447,2448,2516,2386,2387,2502,2501,2601,2515,2631,2739,2816,2815,2931,2947,2987,2930,2879,3026,2854,2900,2825,2859,2577,2767,2858,2878,2560,2729,2419,2521,2372,2609,2658,2710,2728,2742,2766,2811,2789,3070,2977,3224,3223,3337,3387,3386,3412,3708,3526,3554,3685,3812,3811,4023,4125,3998,3992,3993,3684,3884,3707,3822,3813,3624,3622,3596,3477,3572,3556,3555,3623,3795,3597,3573,3567,3500,3501,3452,3396,3236,3290,3557,3574,3838,3781,3713,3700,3547,3534,3394,3395,3270,3453,3244,3235,3522,3508,3509,3368,3292,3314,3655,3439,3767,3710,3531,3532,3510,3440,3434,3403,3225,3209,3074,3298,3073,3370,3099,3331,3503,3441,3744,3657,3866,3886,4075,4078,4192,4245,4393,4303,4304,4284,4486,4523,4555,4622,4755,4774,4964,4912,5161,4845,5091,5289,5437,5260,5162,5104,4965,4846,4791,4612,4613,4441,4446,4249,4246,3971,4076,3848,3824,3571,3564,3443,3379,3330,3193,3456,3348,3482,3327,3455,3529,3552,3746,3747,3911,4077,4095,4243,4143,4452,4495,4525,4648,4781,4811,4921,5057,5059,5242,5261,5423,5366,5394,5534,5609,5796,5762,5780,5682,5761,5622,5760,5881,5880,5958,6119,6120,6265,6417,6441,6586,6522,6743,6647,6894,6742,6683,6415,6240,6261,6179,6044,5855,5856,5598,5644,5788,5720,5475,5383,5354,5034,5384,5193,5352,4991,5332,5164,5271,5270,5388,5424,5427,5570,5798,5658,5864,5990,5865,5962,6111,6275,6325,6504,6524,6646,6674,6836,7032,7072,7005,6780,6775,6651,6650,6748,6919,7006,7097,7264,7462,7461,7616,7681,7710,7765,7804,7810,7906,8044,8083,7764,7937,7939,7853,8043,7808,7887,7751,7821,7624,7591,7473,7120,7228,7154,7152,7113,7083,7045,6656,6917,6657,6779,6393,6357,6328,6309,6197,6077,5715,5751,6027,5640,6060,5750,5311,5572,5638,5684,5701,5702,5456,5457,5109,5112,5191,5419,5517,5458,5885,5714,5873,6051,6054,6145,6257,6144,6065,6087,6254,6350,6540,6582,6810,6790,6992,7121,7044,7203,7208,7295,7345,7472,7623,7339,7580,7676,7941,7885,8026,7746,7886,8108,8166,8136,7940,7629,7812,7374,7360,7649,7458,7571,7511,7459,7614,7628,7674,7570,7573,7497,7289,7301,7437,7373,7106,7257,7338,7300,7332,7618,7349,7105,7015,7143,7197,7259,7277,7276,7299,7452,7331,7107,7108,6943,7075,6738,6942,6658,6741,6554,6594,6469,6378,6514,6593,6299,6285,6164,6207,6025,6024,5821,5650,5690,5870,5649,5773,5723,5433,5558,5328,5326,5207,5131,4806,4867,5008,5085,5125,5028,4805,4772,4718,4657,4641,4415,4594,4578,4465,4398,4317,4227,4352,4196,4022,4124,3929,3930,3642,3878,3626,3737,3835,3736,3738,3906,3946,4151,3950,4140,4148,4150,4046,4112,4149,4235,4237,4299,4298,4205,4219,4045,4239,4281,4044,3899,3826,3825,3725,3724,3787,3977,3978,4202,4218,4180,4405,4232,4379,4071,4238,4336,4504,4572,4589,4696,4820,4825,4985,4928,4984,5166,5168,4983,5275,5274,5278,5279,5211,5282,5169,5526,5360,5446,5477,5698,5631,5858,5716],"area":208252,"shoreline":[],"height":0,"group":"continent"},{"i":3,"type":"lake","land":false,"border":false,"cells":3,"firstCell":407,"vertices":[3640,3791,3792,3864,3882,3740,3761,3605,3690,3635,3493,3487,3154,3603,3399,3665],"area":263,"shoreline":[336,335,410,409,406,404,557,483,484,480,481,411],"height":30.9,"flux":842,"temp":5,"evaporation":6,"inlets":[145,439,158],"outlet":158,"group":"freshwater","name":"Skipton"},{"i":4,"type":"island","land":true,"border":false,"cells":1,"firstCell":516,"vertices":[14791,14884,14881,14930,14967,14939,14868,14863],"area":121,"shoreline":[],"height":0,"group":"isle"},{"i":5,"type":"island","land":true,"border":false,"cells":7,"firstCell":675,"vertices":[14673,14817,14657,14672,14723,14778,14781,14711,14642,14635,14553,14531,14460,14443,14448,14289,14273,14532,14580,14584,14582,14674,14632,14712,14684,14765,14764,14795],"area":574,"shoreline":[],"height":0,"group":"isle"},{"i":6,"type":"island","land":true,"border":false,"cells":5,"firstCell":852,"vertices":[13756,13819,13873,13990,13989,13820,13926,13875,13758,13782,13728,13727,13647,13612,13555,13547,13515,13456,13591,13666,13755,13650,13517,13811],"area":381,"shoreline":[],"height":0,"group":"isle"},{"i":7,"type":"island","land":true,"border":true,"cells":4,"firstCell":864,"vertices":[14812,14883,14811,14742,14840,14882,14880,14919,14879,14902,14931,14963,15047,14992,14991,14900,14898],"area":469,"shoreline":[],"height":0,"group":"isle"},{"i":8,"type":"island","land":true,"border":false,"cells":108,"firstCell":943,"vertices":[10102,10234,10235,10353,10145,10365,10394,10393,10597,10546,10744,10778,10901,10814,11058,11101,11229,11231,11057,11259,10925,11102,10930,11037,10899,10929,10790,10774,10612,10665,10646,10616,10611,10513,10499,10399,10342,10230,9948,10028,9848,9886,9769,9754,9464,9587,9613,9691,9818,9707,9860,9947,9899,9898,10082,10084,9895,9721,9817,9975,10027,10115,10122,10187,10308,10081,10121,9889,10029,9777,9676,9478,9517,9595,9329,9699,9520,9722,9551,9586,9367,9477,9369,9206,9258,9120,9032,9119,8801,8917,9070,9021,8754,8916,8732,8659,8581,8579,8438,8222,8257,8470,8423,8512,8374,8373,8370,8193,7957,8320,7974,8277,8002,8070,8001,8321,8372,8314,8021,8237,8102,8115,8165,8238,8164,8331,8443,8593,8676,8678,8860,8859,9026,8981,9025,9238,9237,9379,9507,9739,9446,9808,9708,9847,9807,9963,9961,10207],"area":8766,"shoreline":[],"height":0,"group":"island"},{"i":9,"type":"island","land":true,"border":false,"cells":1,"firstCell":1086,"vertices":[14028,14115,14158,14209,14123,14156],"area":67,"shoreline":[],"height":0,"group":"isle"},{"i":10,"type":"island","land":true,"border":false,"cells":1,"firstCell":1092,"vertices":[14491,14581,14656,14665,14664,14585,14583],"area":91,"shoreline":[],"height":0,"group":"isle"},{"i":11,"type":"island","land":true,"border":false,"cells":1,"firstCell":1100,"vertices":[7995,8006,8120,8139,8385,8538,8503,8437,8428,8206],"area":160,"shoreline":[],"height":0,"group":"isle"},{"i":12,"type":"island","land":true,"border":false,"cells":1,"firstCell":1401,"vertices":[8605,8695,8845,8935,8989,8894,8766,8694],"area":117,"shoreline":[],"height":0,"group":"isle"},{"i":13,"type":"island","land":true,"border":false,"cells":4,"firstCell":1497,"vertices":[8274,8398,8386,8263,8429,8089,8063,8090,7915,7892,7823,7773,7994,7998,8184,8188],"area":409,"shoreline":[],"height":0,"group":"isle"},{"i":14,"type":"island","land":true,"border":false,"cells":3,"firstCell":1501,"vertices":[7419,7500,7354,7253,7218,6905,7150,7095,7323,7341,7501,7514,7753,7739],"area":239,"shoreline":[],"height":0,"group":"isle"},{"i":15,"type":"island","land":true,"border":false,"cells":1,"firstCell":1786,"vertices":[9592,9767,9745,9611,9770,9927,9926],"area":70,"shoreline":[],"height":0,"group":"isle"},{"i":16,"type":"island","land":true,"border":false,"cells":1,"firstCell":1796,"vertices":[6597,6793,6675,6608,6607],"area":44,"shoreline":[],"height":0,"group":"isle"},{"i":17,"type":"lake","land":false,"border":false,"cells":1,"firstCell":1803,"vertices":[4506,4558,4799,4902,4989,4963,4976,4758,4611],"area":131,"shoreline":[1709,1710,1804,1905,1801,1802,1712,1912,1907],"height":23.9,"flux":1125,"temp":9,"evaporation":3,"inlets":[276,279,278,438],"outlet":278,"group":"freshwater","name":"Indyrda"},{"i":18,"type":"island","land":true,"border":false,"cells":13,"firstCell":1876,"vertices":[11164,11207,11178,10941,11078,10904,10763,10736,10725,10576,10570,10526,10706,10818,10764,10980,11150,10849,11077,10939,10873,11075,11186,11316,11378,11220,11473,11317,11488,11426,11472,11456,11206,11233,11076],"area":1090,"shoreline":[],"height":0,"group":"island"},{"i":19,"type":"island","land":true,"border":false,"cells":39,"firstCell":2102,"vertices":[9063,9064,8878,8857,8721,8696,8615,8604,8553,8394,8400,8684,8685,8454,8799,8893,9059,8892,9129,9337,9339,9542,9560,9718,9809,9843,9873,9907,9973,10045,10196,10193,10144,10355,10464,10524,10472,10652,10700,10712,10793,10542,10577,10592,10663,10415,10274,10220,10161,9874,9972,9734,9685,9775,9654,9634,9559,9519,9398,9285,9256,9076,9012,9104,9157,9202,9255,9338,9451,9453,9397,9127,9201],"area":2809,"shoreline":[],"height":0,"group":"island"},{"i":20,"type":"island","land":true,"border":false,"cells":18,"firstCell":2107,"vertices":[8153,8336,8352,8208,8148,8058,7780,7916,7781,7531,7635,7431,7395,7239,7187,7037,7245,7087,7019,7004,7003,7123,7001,7168,7247,7274,7273,7351,7396,7448,7741,7740,7872,7947,7962,7979],"area":1197,"shoreline":[],"height":0,"group":"island"},{"i":21,"type":"island","land":true,"border":true,"cells":46,"firstCell":2307,"vertices":[14419,14523,14476,14361,14420,14308,14360,14149,14318,14263,14067,14236,14065,14231,14132,13949,14006,13872,13827,13879,13630,13661,13691,13772,13778,13742,13616,13614,13418,13506,13599,13399,13598,13438,13582,13557,13494,13592,13711,13588,13770,13846,13848,13868,13957,14041,13956,14092,14082,13973,13971,13958,13948,13895,13870,13750,13869,13966,13972,14061,14046,14085,14021,14019,14110,14084,14301,14139,14346,14362,14147,14389,14264,14461,14440,14282,14526,14541,14668,14666,14718,14719,14720,14848,14800,14734,14667,14621,14574],"area":3622,"shoreline":[],"height":0,"group":"island"},{"i":22,"type":"island","land":true,"border":false,"cells":5,"firstCell":2345,"vertices":[6171,6061,6062,5795,6009,6078,5827,5988,6172,6217,6121,6219,6356,6355,6625,6624,6719,6763,6565,6566,6294,6295],"area":493,"shoreline":[],"height":0,"group":"isle"},{"i":23,"type":"island","land":true,"border":true,"cells":1699,"firstCell":2592,"vertices":[11474,11747,11495,11475,11379,11363,11223,11221,11142,11064,11019,11018,11010,10902,10911,10717,10714,10543,10561,10515,10481,10465,10377,10203,10063,10255,10073,10139,9844,9921,9635,9670,9555,9556,9462,9333,9156,9158,8965,9014,8728,8795,8453,8686,8588,8401,8256,8254,7982,8057,7795,7793,7545,7383,7413,7326,7503,7524,7730,7925,7963,8144,8179,8364,8448,8255,8500,8346,8476,8449,8251,8288,8287,8041,8285,8037,8236,8229,8066,8107,7984,7727,7927,8216,8124,8280,8286,8427,8496,8620,8634,8771,8904,8980,8993,8879,8823,8821,8758,8715,8621,8530,8531,8420,8412,8343,8231,8069,8059,7902,7866,7652,7653,7504,7429,7406,7178,7224,7111,6895,6980,6811,6896,6507,6648,6827,6686,6729,6788,6578,6508,6471,6341,6215,6211,6081,5689,5945,5948,6053,6098,6160,6238,6103,6159,6106,6114,6374,6377,6590,6525,6601,6787,6786,6858,6996,7028,7117,7195,7116,7177,6883,7002,7027,7074,7327,6859,7237,7236,7316,7479,7481,7488,7487,7315,7325,7156,7155,6890,6912,6761,6760,6737,6567,6832,6857,6803,6591,6587,6588,6520,6478,6616,6718,6953,6878,6615,6727,6589,6405,6472,6167,6288,6173,6166,6147,6218,6287,6296,6485,6332,6499,6500,6510,6351,6146,6126,5793,5934,5794,5679,5643,5542,5543,5429,5305,5106,5060,5280,5512,5511,5680,5732,5983,6107,5822,6108,5944,5733,6113,6105,6102,6097,5734,5742,5559,5933,5832,5739,5636,5561,5363,5346,5688,5508,5740,5671,5483,5495,5267,5225,4958,5136,4887,4880,4904,5199,5114,5100,5044,4996,4836,4844,4919,4995,4734,4861,4637,4735,4833,4528,4549,4259,4470,4216,4329,4173,4278,4277,4469,4327,4605,4650,4744,4760,4759,4808,4851,4854,4956,4959,5064,5156,5186,4782,5149,4747,5075,4850,5071,4852,5070,4812,4787,4553,4532,4751,4603,4501,4423,4308,4166,4122,3983,4167,4121,4394,4424,4326,4133,3933,3934,3769,3770,3595,3553,3366,3367,3255,3328,2956,3131,2999,2939,2937,2897,2932,3000,3084,3256,3419,3272,3177,3048,2975,2898,2836,2593,2797,2668,2567,2507,2597,2432,2283,2305,2381,2366,2271,2261,2082,2313,2198,2146,2049,1985,1983,1933,1858,1809,1729,1706,1677,1750,1734,1648,1611,1534,1449,1678,1439,1578,1669,1735,1784,1902,1801,1802,1691,1692,1636,1597,1568,1567,1548,1500,1394,1579,1598,1588,1495,1501,1342,1395,1290,1419,1420,1600,1671,1707,1839,1838,1921,1876,1919,2059,1875,2084,2083,2186,2018,2145,1997,2058,2095,2118,2292,2357,2154,2395,2321,2185,2244,2424,2378,2379,2281,2452,2453,2542,2653,2755,2759,2861,2913,2995,2994,2864,2886,2949,2948,3091,3102,3124,3320,3277,3356,3319,3090,3288,2952,3206,3172,3173,3205,3353,3035,3276,2875,2915,2787,2644,2827,2671,2794,2762,2590,2680,2595,2460,2310,2459,2506,2642,2704,2679,2678,2849,2769,2660,2686,2748,2856,2842,2880,2943,3181,3087,3280,3279,3414,3413,3222,3229,3343,3523,3347,3629,3643,3763,3727,3962,3910,3898,3702,3756,3963,3703,3630,4019,4065,3881,4007,4158,4320,4138,4332,4325,4474,4508,4669,4670,4710,4741,4881,4885,5174,5067,4933,4915,4914,4899,4742,4879,4789,4675,4676,4574,4509,4420,4488,4455,4391,4376,4590,4627,4668,4790,4876,4795,4816,4815,4941,4942,5285,5065,5175,5405,5519,5518,5461,5099,5329,5402,5396,5133,5348,5393,5581,5683,5485,5486,5747,5746,5929,5928,6092,6330,6123,6509,6269,6632,6532,6630,6769,6866,7023,7024,7242,7182,7441,7181,7507,7506,7691,7690,7894,7913,7797,7755,7914,7987,7966,7907,7867,7858,7838,7798,7760,7515,7743,7686,7537,7668,7597,7505,7489,7403,7548,7484,7449,7418,7390,7230,7183,7085,7013,6868,6799,6758,6534,6688,6541,6796,6969,6909,7190,7310,7337,6968,7304,7173,7070,7055,6999,7056,6924,6941,6797,6834,6458,6645,6659,6464,6399,6363,6190,6031,5904,5995,5817,5755,5488,5487,5355,5204,5226,5357,5252,5107,5101,4940,4954,4686,4796,4596,4617,4450,4472,4489,4543,4576,4342,4339,4201,4155,4038,4036,3941,3939,3880,3800,3732,3711,3610,3465,3691,3680,3582,3357,3712,3373,3558,3802,3398,3855,3778,3916,4009,4010,3803,3797,4059,4060,4026,4014,3687,3675,3467,3507,3289,3333,3128,3119,2996,3056,3251,3340,2983,3407,3436,3334,3478,3479,3365,3672,3364,3673,3869,3907,3845,3952,4029,3923,4146,3908,4147,4027,4053,4190,4101,4418,4263,4447,4514,4626,4602,4746,4654,4838,5001,5000,5152,5153,5303,5390,5302,5378,5314,5249,5052,5129,5377,5379,5555,5531,5736,5738,5851,5999,5697,5887,5530,5552,5726,5810,5626,5850,5914,5913,5625,5551,5503,5339,5391,5444,5338,5376,5337,5445,5459,5553,5502,5574,5727,5728,5860,5889,6080,6259,6201,6200,6079,6149,6109,6072,6177,6247,6479,6283,6696,6396,6768,6602,6735,6852,6881,6880,6851,7021,7029,7033,7283,7049,6856,6931,7030,7130,7217,7185,7282,7307,7284,7446,7646,7645,7950,8177,8204,7999,8235,8493,8494,8689,8805,8833,9011,9083,9082,9335,9403,9579,9729,9728,9833,10095,10096,10462,10477,10742,10813,10860,11162,11082,11331,11481,11480,11781,11671,11859,12039,12038,12141,12275,12274,12394,12528,12527,12592,12755,12754,12959,13002,13001,13108,13242,13243,13289,13173,13244,13132,13180,13131,13041,12955,13040,12923,12928,13028,13046,13186,13067,13188,13106,13113,13103,13149,13189,13275,13065,13252,13214,13226,13136,13137,13264,13265,13363,13384,13504,13561,13602,13345,13577,13522,13382,13342,13306,13123,13222,13202,13221,13305,13331,13383,13356,13390,13478,13501,13601,13576,13694,13655,13488,13603,13461,13489,13536,13625,13669,13747,13803,13833,13724,13791,13753,13775,13790,13807,13883,13891,13995,14037,14096,14097,14143,14238,14275,14369,14376,14480,14484,14513,14518,14536,14619,14587,14663,14671,14744,14728,14738,14920,14702,14760,14866,14560,14689,14820,14700,14771,14613,14515,14737,14493,14614,14693,14492,14662,14367,14616,14444,14355,14340,14219,14189,14190,14047,14011,14000,13905,13836,13796,13797,13696,13697,13600,13596,13507,13417,13354,13320,13308,13271,13170,13168,13085,13083,13054,13080,12961,12894,12810,12855,12865,12860,12788,12727,12697,12695,12619,12615,12492,12434,12533,12496,12381,12466,12323,12377,12236,12244,12144,12145,12106,12056,12054,11974,11943,11845,11809,11714,11635,11636,11544,11545,11401,11433,11358,11278,11143,11106,10959,10960,11173,11096,11046,10906,10867,10745,10703,10488,10476,10541,10358,10359,10285,10199,10179,10177,10036,9957,9909,9735,9714,9470,9456,9457,9270,9228,9185,8880,9028,8797,9039,8945,9024,8992,9141,9210,9437,9391,9588,9646,9648,9823,9813,9956,9911,9978,10223,9908,10071,10198,10142,10176,10312,10417,10617,10660,10659,10710,10775,10607,10635,10424,10404,10261,10262,10141,10034,9879,9842,9603,9608,9812,9814,10033,10070,10178,10064,10326,10325,10458,10521,10679,10683,10713,10664,10682,10716,10760,10887,10973,11044,11215,11251,11252,11377,11505,11504,11633,11667,11724,11818,11841,11784,11819,11752,11817,11793,11813,11783,11782,11558,11579,11761,11666,11489,11665,11792],"area":203374,"shoreline":[],"height":0,"group":"continent"},{"i":24,"type":"lake","land":false,"border":false,"cells":1,"firstCell":3019,"vertices":[8890,9049,9138,9137,9091,8920,8889,8598,8563],"area":145,"shoreline":[3116,3118,2915,2916,3220,3021,3219,3017,3018],"height":21.9,"flux":574,"temp":12,"evaporation":4,"inlets":[1136],"outlet":1136,"group":"freshwater","name":"Skorka"},{"i":25,"type":"lake","land":false,"border":false,"cells":1,"firstCell":3044,"vertices":[4154,4153,4309,4321,4135,4123,4052],"area":87,"shoreline":[3139,3140,3043,3042,2946,3045,2947],"height":21.9,"flux":231,"temp":12,"evaporation":4,"inlets":[332],"outlet":332,"group":"freshwater","name":"Tlatizacahu"},{"i":26,"type":"island","land":true,"border":true,"cells":1037,"firstCell":3433,"vertices":[9485,9681,9794,9864,9863,10014,10123,10138,10357,10356,10580,10579,10628,10755,10946,11065,11147,11176,11177,11086,11067,10843,10953,10868,11146,11087,11265,11217,11391,11402,11497,11534,11535,11718,11644,11835,11825,11925,11924,12009,12064,12093,12190,12189,12278,12279,12360,12397,12457,12548,12494,12516,12582,12581,12453,12547,12428,12424,12358,12359,12277,12251,12172,12173,12096,12078,11972,11959,11941,11838,11834,11746,11664,11470,11663,11589,11597,11596,11709,11738,11755,11762,11799,11802,11824,11837,11855,11751,11971,11994,12049,12117,12116,12234,12176,12259,12235,12343,12353,12427,12389,12515,12577,12640,12641,12554,12489,12364,12488,12627,12563,12700,12585,12723,12738,12867,12737,12938,12866,12954,13036,13019,13042,13020,13158,13156,13126,13133,13094,13091,13095,13194,13191,13298,13352,13299,13353,13469,13609,13608,13587,13453,13520,13534,13636,13585,13761,13748,13640,13783,13849,13887,13939,13938,13983,13970,14099,14106,14220,14271,14126,14272,14385,14416,14505,14511,14591,14597,14714,14685,14686,14589,14716,14807,14819,14703,14818,14830,14758,14860,14831,14787,14859,14889,14892,14924,14942,14957,14912,14958,14984,14983,15011,14994,15012,15031,15013,15038,15044,15059,15073,15078,15082,15094,15095,15103,15108,15109,15119,15122,15127,15129,15132,15134,15126,15131,15092,15110,15113,15069,15048,15074,14982,14945,14932,14854,14954,14865,14961,14896,14981,14962,15009,15023,15003,14995,14970,14929,14874,14873,14844,14806,14803,14753,14741,14623,14641,14538,14539,14410,14436,14498,14438,14393,14315,14153,14241,14267,14266,14093,14165,14014,14086,13953,13952,14024,14023,14025,14090,14136,14179,14226,14310,14230,14298,14299,14383,14468,14384,14598,14776,14864,14575,14652,14229,14363,14374,14079,13986,13884,13786,13745,13617,13618,13463,13574,13544,13425,13423,13405,13311,13312,13134,13220,13219,13115,13122,12997,13087,12998,12929,12901,12791,12760,12630,12626,12687,12762,12781,12736,12617,12570,12625,12678,12694,12735,12779,12624,12677,12510,12436,12446,12232,11849,12036,12208,11808,11742,11653,11452,11454,11305,11384,11395,11420,11690,11346,11394,11133,11130,11017,10907,10872,10996,10835,11038,10454,10694,10386,9991,10343,9771,9511,9662,9394,9512,9401,9288,9359,9225,9224,8958,8941,8874,8707,8642,8468,8452,8367,8249,8635,8609,8779,8943,8775,8753,8776,8736,8708,8571,8777,8662,8869,8780,9036,9003,9253,9116,9357,9312,9493,9585,9448,9416,9381,9548,9649,9538,9539,9311,9576,9450,9605,9254,9374,9636,9720,9935,9999,10155,10227,10486,10483,10184,10321,10224,10185,10448,10535,10505,10632,10672,10766,10834,10833,10971,11090,11002,11127,11284,11250,11124,11125,10995,10967,10820,11053,10920,11126,11195,11209,11354,11510,11435,11306,11270,11129,11193,11043,11049,10972,10788,10954,11165,11158,11273,11245,11382,11371,11502,11503,11647,11657,11734,11735,11812,11800,11913,11899,12023,11901,11950,11863,11881,11821,11739,11598,11551,11661,11703,11749,11766,11697,11599,11538,11424,11409,11308,11194,11324,11355,11210,11099,11097,10921,10898,10690,10738,10691,10573,10555,10556,10514,10382,10380,10242,10094,10241,10117,10236,10149,10304,10339,10511,10416,10387,10388,10523,10509,10689,10768,10684,10678,10605,10583,10480,10422,10395,10191,10217,9918,9867,9901,10085,10087,9940,9892,9598,9787,9890,9900,9902,9545,9546,9737,9866,9747,9481,9480,9459,9467,9482,9562,9597,9596,9711,9865,9917,10024,9916,9534,9617,9710,9785,9791,9820,10078,9950,10049,9835,9968,9934,9712,9784,9855,9840,9680,9606,9590,9514,9513,9439,9378,9223,9222,9043,9031,9008,8952,8724,8785,8547,8630,8227,8549,8173,8174,7923,7861,7924,7849,7695,7776,7774,7689,7779,7607,7605,7427,7434,7330,7270,7233,7212,7141,7377,7389,7492,7593,7551,7787,7772,7922,8127,7889,7920,7831,8030,8029,8242,8243,8088,8073,8023,8014,7980,7816,7959,7659,7921,8086,8196,8074,8038,8244,8213,8411,8363,8583,8521,8680,8747,8661,8556,8534,8406,8334,8262,8126,8110,8408,8407,8555,8554,8811,8748,8660,8656,8837,8839,8853,8931,9095,9093,9195,9316,9325,9502,9678],"area":128862,"shoreline":[],"height":0,"group":"continent"},{"i":27,"type":"island","land":true,"border":false,"cells":1,"firstCell":3673,"vertices":[6538,6705,6794,6844,6704,6620],"area":59,"shoreline":[],"height":0,"group":"isle"},{"i":28,"type":"island","land":true,"border":false,"cells":1,"firstCell":3979,"vertices":[6850,7009,7041,7128,7175,6860,6955],"area":95,"shoreline":[],"height":0,"group":"isle"},{"i":29,"type":"island","land":true,"border":false,"cells":1,"firstCell":3997,"vertices":[2874,3034,3033,3198,3164,2945,2881],"area":105,"shoreline":[],"height":0,"group":"isle"},{"i":30,"type":"island","land":true,"border":false,"cells":1,"firstCell":4067,"vertices":[12768,12936,12935,12899,12980,12949,12873,12774],"area":104,"shoreline":[],"height":0,"group":"isle"},{"i":31,"type":"lake","land":false,"border":false,"cells":1,"firstCell":4259,"vertices":[14035,14205,14213,14341,14334,14105,14072],"area":161,"shoreline":[4258,4412,4413,4091,4260,4411,4089],"height":33.9,"flux":1635,"temp":15,"evaporation":5,"inlets":[32,72],"outlet":72,"group":"freshwater","name":"Yuenshungy"},{"i":32,"type":"island","land":true,"border":false,"cells":33,"firstCell":4504,"vertices":[1830,2068,1970,2120,2070,2171,2170,2282,2297,2456,2498,2403,2375,2344,2486,2487,2622,2583,2695,2694,2831,2774,2911,2890,3110,3143,3211,3303,3302,3323,3463,3481,3589,3580,3380,3243,3382,3106,3342,3088,3249,3217,2969,3094,3016,2871,2837,2818,2752,2651,2657,2530,2473,2347,2343,2231,2229,2067,2030,2031],"area":2655,"shoreline":[],"height":0,"group":"island"},{"i":33,"type":"island","land":true,"border":false,"cells":6,"firstCell":4627,"vertices":[3588,3591,3742,3698,3879,3891,4139,4137,3955,3956,3837,3830,3731,3699,3410,3385,3649,3489,3616],"area":382,"shoreline":[],"height":0,"group":"isle"},{"i":34,"type":"ocean","land":false,"border":true,"cells":76,"firstCell":5438,"vertices":[],"area":0,"shoreline":[],"height":0},{"i":35,"type":"island","land":true,"border":false,"cells":36,"firstCell":5861,"vertices":[5954,6131,5968,6281,6290,6289,6306,6406,6455,6599,6474,6755,6754,6911,7092,7309,7320,7357,7388,7486,7536,7409,7612,7611,7910,7912,8155,8241,8195,8439,8377,8297,8198,8154,8142,8296,8294,8469,8610,8440,8405,8247,8250,8273,8092,8049,8050,8020,7973,7806,7860,7791,7630,7673,7521,7425,7358,7346,7261,7144,7145,7093,6899,6841,6829,6800,6711,6628,6496,6382,6307],"area":2939,"shoreline":[],"height":0,"group":"island"},{"i":36,"type":"island","land":true,"border":false,"cells":1,"firstCell":6114,"vertices":[8743,8946,8870,8947,9178,9147,9114],"area":93,"shoreline":[],"height":0,"group":"isle"},{"i":37,"type":"island","land":true,"border":false,"cells":9,"firstCell":6226,"vertices":[6463,6702,6701,6815,6874,7114,7260,7308,7018,6936,6994,7115,7303,7158,6965,6888,6873,6744,6745,6626,6598,6446,6661,6662,6513],"area":692,"shoreline":[],"height":0,"group":"isle"},{"i":38,"type":"lake","land":false,"border":false,"cells":1,"firstCell":6710,"vertices":[4813,5087,5089,5265,5090,5021,4916,4917],"area":103,"shoreline":[6708,6709,6707,6585,6583,6582,6581,6580],"height":27.9,"flux":367,"temp":18,"evaporation":5,"inlets":[896],"outlet":896,"group":"freshwater","name":"Scidros"},{"i":39,"type":"ocean","land":false,"border":true,"cells":43,"firstCell":6770,"vertices":[],"area":0,"shoreline":[],"height":0},{"i":40,"type":"lake","land":false,"border":false,"cells":1,"firstCell":7137,"vertices":[12864,12826,12957,12822,12821,12746,12741],"area":147,"shoreline":[7023,7024,7138,7136,7253,7252,7254],"height":56.9,"flux":832,"temp":18,"evaporation":8,"inlets":[2],"outlet":2,"group":"freshwater","name":"Tlaxcoaxutlan"},{"i":41,"type":"island","land":true,"border":false,"cells":1,"firstCell":7182,"vertices":[6248,6408,6679,6681,6707,6561,6521,6343],"area":105,"shoreline":[],"height":0,"group":"isle"},{"i":42,"type":"ocean","land":false,"border":true,"cells":22,"firstCell":7219,"vertices":[],"area":0,"shoreline":[],"height":0},{"i":43,"type":"lake","land":false,"border":false,"cells":1,"firstCell":7325,"vertices":[10997,11040,11225,11224,10999],"area":74,"shoreline":[7327,7326,7321,7205,7204],"height":22.9,"flux":722,"temp":18,"evaporation":5,"inlets":[502,120],"outlet":502,"group":"freshwater","name":"Skylcis"},{"i":44,"type":"island","land":true,"border":true,"cells":3,"firstCell":7417,"vertices":[8709,8781,8782,8895,8818,8996,8847,9097,9241,9350,9631,8995,9019,8912],"area":333,"shoreline":[],"height":0,"group":"isle"},{"i":45,"type":"ocean","land":false,"border":true,"cells":1,"firstCell":7429,"vertices":[],"area":0,"shoreline":[],"height":0},{"i":46,"type":"ocean","land":false,"border":true,"cells":2,"firstCell":7432,"vertices":[],"area":0,"shoreline":[],"height":0}]
+[{"name":"Wildlands","i":0,"base":1,"origins":[null],"shield":"round"},{"name":"Valadi","base":15,"shield":"oval","center":2319,"i":1,"color":"#dababf","type":"Generic","expansionism":1.9,"origins":[0],"code":"Va"},{"name":"Tinshui","base":30,"shield":"heater","center":4589,"i":2,"color":"#6e40aa","type":"River","expansionism":3.4,"origins":[0],"code":"Ti"},{"name":"Trover","base":6,"shield":"fantasy3","center":5466,"i":3,"color":"#fccde5","type":"Generic","expansionism":2.6,"origins":[0],"code":"Tr"},{"name":"Copovia","base":8,"shield":"renaissance","center":6073,"i":4,"color":"#ccebc5","type":"River","expansionism":2.9,"origins":[0],"code":"Co"},{"name":"Ecacualteta","base":14,"shield":"wedged","center":3850,"i":5,"color":"#fb8072","type":"Generic","expansionism":2.5,"origins":[0],"code":"Ec"},{"name":"Chicoatliza","base":14,"shield":"round","center":7136,"i":6,"color":"#52f667","type":"Highland","expansionism":1.6,"origins":[0],"code":"Ch"},{"name":"Najos","base":15,"shield":"heater","center":6984,"i":7,"color":"#bc80bd","type":"Hunting","expansionism":2.7,"origins":[0],"code":"Na"},{"name":"Kupold","base":0,"shield":"heater","center":6991,"i":8,"color":"#8dd3c7","type":"Generic","expansionism":3.1,"origins":[0],"code":"Ku"},{"name":"Dayandor","base":31,"shield":"round","center":4524,"i":9,"color":"#ffed6f","type":"Highland","expansionism":1.7,"origins":[0],"code":"Da"},{"name":"Khuzd","base":37,"shield":"heater","center":3795,"i":10,"color":"#80b1d3","type":"River","expansionism":1.6,"origins":[0],"code":"Kh"},{"name":"Yuen","base":30,"shield":"gonfalon","center":4703,"i":11,"color":"#fdb462","type":"Naval","expansionism":6,"origins":[0],"code":"Yu"},{"name":"Erdurvi","base":6,"shield":"oldFrench","center":3497,"i":12,"color":"#fe4b83","type":"Naval","expansionism":2.6,"origins":[0],"code":"Er"},{"name":"Borum","base":8,"shield":"swiss","center":3010,"i":13,"color":"#23abd8","type":"Naval","expansionism":2.4,"origins":[0],"code":"Bo"},{"name":"Rhyroti","base":7,"shield":"gonfalon","center":6568,"i":14,"color":"#c6b9c1","type":"Generic","expansionism":1,"origins":[0],"code":"Rh"},{"name":"Didauron","base":7,"shield":"gonfalon","center":5022,"i":15,"color":"#b3de69","type":"Naval","expansionism":4.9,"origins":[0],"code":"Di"},{"name":"Aich","base":0,"shield":"spanish","center":4769,"i":16,"color":"#eb8de7","type":"Generic","expansionism":2,"origins":[0],"code":"Ai"},{"name":"Kalom","base":21,"shield":"horsehead","center":5529,"i":17,"color":"#e2b72f","type":"Generic","expansionism":2.5,"origins":[0],"code":"Ka"}]
+[{"i":0,"name":"Neutrals","neighbors":[12,13,8,6,19,10],"diplomacy":[["Tetelilco-Zahuahuacian War","Tetelilco declared a war on its rival Zahuahuaco","Zahuahuaco's ally Gazd joined the war on defenders side","Zahuahuaco's ally Sasbachia joined the war on defenders side","Zahuahuaco's ally Paowania joined the war on defenders side","Zahuahuaco's ally Sesosia joined the war on defenders side","Tetelilco's ally Lohia joined the war on attackers side","Tetelilco's ally Geiterzelia did not join the war as its allies are in war on both sides","Tetelilco's ally Vexum avoided entering the war"],["Smyrchia-Paowanian War","Smyrchia declared a war on its rival Paowania","Paowania's ally Geiterzelia joined the war on defenders side","Paowania's ally Zahuahuaco joined the war on defenders side","Paowania's ally Vexum joined the war on defenders side","Paowania's ally Ialitaris joined the war on defenders side"],["Kamaile-Ialitarisian War","Kamaile declared a war on its rival Ialitaris","Ialitaris's ally Paowania joined the war on defenders side","Ialitaris's ally Vexum joined the war on defenders side","Ialitaris's ally Sesosia joined the war on defenders side","Ialitaris's ally Onestad joined the war on defenders side","Ialitaris's ally Breisach joined the war on defenders side","Ialitaris's ally Gongshingia joined the war on defenders side","Kamaile's ally Sasbachia joined the war on attackers side","Kamaile's ally Meragubia joined the war on attackers side","Kamaile's ally Straudens joined the war on attackers side"],["Ros-Sesosian War","Ros declared a war on its rival Sesosia","Sesosia's ally Zahuahuaco joined the war on defenders side","Sesosia's ally Ialitaris joined the war on defenders side"],["Laupsland-Sesosian War","Laupsland declared a war on its rival Sesosia","Sesosia's ally Zahuahuaco joined the war on defenders side","Sesosia's ally Ialitaris joined the war on defenders side"],["Nafendorf-Breisachian War","Nafendorf declared a war on its rival Breisach","Breisach's ally Lohia joined the war on defenders side","Breisach's ally Onestad joined the war on defenders side","Breisach's ally Ialitaris joined the war on defenders side"]],"urban":0,"rural":0,"burgs":0,"area":66026,"cells":462,"provinces":[]},{"i":1,"name":"Lohia","expansionism":4.8,"capital":1,"type":"River","center":4589,"culture":2,"coa":{"t1":"bendy-or-azure","charges":[{"charge":"apple","t":"gules","p":"e","t2":"gules","size":1.5}],"shield":"heater"},"pole":[191,635],"neighbors":[15,2,16,9],"color":"#66c2a5","campaigns":[{"name":"Gazd Conquest","start":1764,"end":1765},{"name":"Nafendorf Conquest","start":1783,"end":1788},{"name":"Samtsuen War","start":1792,"end":1795},{"name":"Laupsish Rebellion","start":1853,"end":1854}],"diplomacy":["x","x","Enemy","Ally","Neutral","Ally","Enemy","Enemy","Enemy","Suspicion","Unknown","Friendly","Enemy","Neutral","Neutral","Suspicion","Enemy","Ally","Unknown","Unknown","Neutral"],"urban":354.43500000000006,"rural":3416.170060992241,"burgs":78,"area":66534,"cells":500,"form":"Theocracy","formName":"Theocracy","fullName":"Lohian Theocracy","provinces":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,161,162],"alert":1.03,"military":[{"i":0,"a":3686,"cell":4589,"x":215.85,"y":584.12,"bx":215.85,"by":584.12,"u":{"infantry":1875,"cavalry":296,"artillery":30,"archers":1485},"n":0,"name":"1st (Longong) Regiment","state":1,"icon":"āļø"},{"i":1,"a":3585,"cell":5462,"x":260.84,"y":646.86,"bx":260.84,"by":646.86,"u":{"infantry":1837,"cavalry":315,"artillery":23,"archers":1410},"n":0,"name":"2nd (Kamteilia) Regiment","state":1,"icon":"āļø"},{"i":2,"a":2933,"cell":4410,"x":11.14,"y":569.68,"bx":11.14,"by":569.68,"u":{"infantry":1477,"cavalry":196,"archers":1243,"artillery":17},"n":0,"name":"3rd (Limkongia) Regiment","state":1,"icon":"āļø"},{"i":3,"a":2692,"cell":4426,"x":200.18,"y":567.31,"bx":200.18,"by":567.31,"u":{"infantry":1352,"artillery":32,"cavalry":204,"archers":1104},"n":0,"name":"4th (Wancheongia) Regiment","state":1,"icon":"āļø"},{"i":4,"a":1677,"cell":6295,"x":197.67,"y":738.69,"bx":197.67,"by":738.69,"u":{"infantry":849,"archers":682,"cavalry":130,"artillery":16},"n":0,"name":"5th (Limkongia) Regiment","state":1,"icon":"āļø"},{"i":5,"a":1500,"cell":4752,"x":243.04,"y":594.44,"bx":243.04,"by":594.44,"u":{"infantry":820,"cavalry":215,"artillery":10,"archers":455},"n":0,"name":"6th (Namshan) Regiment","state":1,"icon":"āļø"},{"i":6,"a":3,"cell":3947,"x":116.3,"y":524.37,"bx":116.3,"by":524.37,"u":{"fleet":3},"n":1,"name":"1st Fleet","state":1,"icon":"š"},{"i":7,"a":1,"cell":6044,"x":137.28,"y":721.7,"bx":137.28,"by":721.7,"u":{"fleet":1},"n":1,"name":"2nd Fleet","state":1,"icon":"š"},{"i":8,"a":1,"cell":3801,"x":241.86,"y":507.49,"bx":241.86,"by":507.49,"u":{"fleet":1},"n":1,"name":"3rd Fleet","state":1,"icon":"š"}]},{"i":2,"name":"Gazd","expansionism":3.1,"capital":2,"type":"River","center":3471,"culture":10,"coa":{"t1":"argent","ordinaries":[{"ordinary":"fessCotissed","t":"gules","line":"straight"}],"charges":[{"charge":"cannon","t":"sable","p":"abc","t2":"purpure","size":0.5}],"shield":"heater"},"pole":[168,515],"neighbors":[1],"color":"#fc8d62","campaigns":[{"name":"Lohian War","start":1578,"end":1582}],"diplomacy":["x","Enemy","x","Enemy","Neutral","Ally","Ally","Neutral","Neutral","Neutral","Unknown","Unknown","Neutral","Unknown","Neutral","Suspicion","Friendly","Unknown","Suspicion","Neutral","Neutral"],"urban":71.036,"rural":265.3886910676956,"burgs":7,"area":2299,"cells":21,"form":"Monarchy","formName":"Duchy","fullName":"Duchy of Gazd","provinces":[17,18],"alert":5,"military":[{"i":0,"a":4292,"cell":3795,"x":175.49,"y":519.22,"bx":175.49,"by":519.22,"u":{"infantry":2085,"artillery":58,"archers":1913,"cavalry":236},"n":0,"name":"1st (Vun) Regiment","state":2,"icon":"āļø"},{"i":1,"a":2205,"cell":3471,"x":162.5,"y":500.9,"bx":162.5,"by":500.9,"u":{"archers":1014,"cavalry":90,"artillery":72,"infantry":1029},"n":0,"name":"2nd (Krar) Regiment","state":2,"icon":"š"},{"i":2,"a":36,"cell":3471,"x":157.96,"y":491.34,"bx":157.96,"by":491.34,"u":{"fleet":36},"n":1,"name":"1st Fleet","state":2,"icon":"š"}]},{"i":3,"name":"Tetelilco","expansionism":5.5,"capital":3,"type":"Generic","center":3139,"culture":5,"coa":{"t1":"or","charges":[{"charge":"goutte","t":"azure","p":"behdf","size":0.4}],"shield":"wedged"},"pole":[525,455],"neighbors":[14,15,6,17,19],"color":"#8da0cb","campaigns":[{"name":"Onestadian Conflict","start":1398,"end":1401},{"name":"Zahuahuacan Rebellion","start":1567,"end":1578},{"name":"Breisach War","start":1659,"end":1672},{"name":"Laupsish Expedition","start":1807,"end":1808},{"name":"Ialitaris War","start":1893,"end":1895},{"name":"Tetelilco-Zahuahuacian War","start":1899,"attacker":3,"defender":6}],"diplomacy":["x","Ally","Enemy","x","Neutral","Ally","Enemy","Enemy","Enemy","Ally","Friendly","Friendly","Enemy","Friendly","Suspicion","Suspicion","Neutral","Suspicion","Neutral","Rival","Unknown"],"urban":122.039,"rural":1017.0212155580521,"burgs":34,"area":17073,"cells":199,"form":"Theocracy","formName":"Theocracy","fullName":"Tetelilcan Theocracy","provinces":[19,20,21,22,23,24,25,163,164],"alert":3.93,"military":[{"i":0,"a":7494,"cell":3139,"x":511.92,"y":462.16,"bx":511.92,"by":462.16,"u":{"archers":3851,"cavalry":498,"artillery":68,"infantry":3077},"n":0,"name":"1st (Tolololo) Regiment","state":3,"icon":"š¹"},{"i":1,"a":3562,"cell":3041,"x":487.07,"y":446.75,"bx":487.07,"by":446.75,"u":{"archers":1836,"artillery":31,"infantry":1464,"cavalry":231},"n":0,"name":"2nd (Tolololo) Regiment","state":3,"icon":"š¹"},{"i":2,"a":3265,"cell":3250,"x":556.57,"y":471.41,"bx":556.57,"by":471.41,"u":{"archers":1665,"cavalry":218,"infantry":1356,"artillery":26},"n":0,"name":"3rd (Xochiconant) Regiment","state":3,"icon":"š¹"},{"i":3,"a":2756,"cell":3839,"x":531.6,"y":527.4,"bx":531.6,"by":527.4,"u":{"archers":1401,"cavalry":195,"artillery":11,"infantry":1149},"n":0,"name":"4th (Calco) Regiment","state":3,"icon":"š¹"},{"i":4,"a":22,"cell":3250,"x":549.85,"y":483.09,"bx":549.85,"by":483.09,"u":{"fleet":22},"n":1,"name":"1st Fleet","state":3,"icon":"š"},{"i":5,"a":1,"cell":2443,"x":463.77,"y":384.56,"bx":463.77,"by":384.56,"u":{"fleet":1},"n":1,"name":"2nd Fleet","state":3,"icon":"š"}]},{"i":4,"name":"Smyrchia","expansionism":6.6,"capital":4,"type":"Naval","center":6009,"culture":15,"coa":{"t1":"or","division":{"division":"perChevron","t":"vert","line":"wavy"},"charges":[{"charge":"anvil","t":"gules","p":"dfbh","divided":"counter","size":0.5}],"shield":"gonfalon"},"pole":[1426,706],"neighbors":[8,7,10,5],"color":"#e78ac3","campaigns":[{"name":"Kamailean War","start":1610,"end":1615},{"name":"Geiterzelian Invasion","start":1724,"end":1725},{"name":"Sasbachian War","start":1758,"end":1763},{"name":"Paowanian War","start":1893,"end":1895},{"name":"Smyrchia-Paowanian War","start":1894,"attacker":4,"defender":8}],"diplomacy":["x","Neutral","Neutral","Neutral","x","Enemy","Enemy","Friendly","Enemy","Enemy","Rival","Neutral","Unknown","Suspicion","Rival","Suspicion","Unknown","Neutral","Suspicion","Enemy","Friendly"],"urban":310.60099999999994,"rural":1778.480975329876,"burgs":53,"area":15737,"cells":126,"form":"Monarchy","formName":"Despotate","fullName":"Smyrchian Despotate","provinces":[26,27,28,29,30,31,32,33,34,35,36],"alert":5,"military":[{"i":0,"a":8686,"cell":5894,"x":1414.79,"y":689.9,"bx":1414.79,"by":689.9,"u":{"infantry":4118,"cavalry":602,"archers":3734,"artillery":232},"n":0,"name":"1st (Ropebaidori) Regiment","state":4,"icon":"āļø"},{"i":1,"a":7449,"cell":6379,"x":1378.45,"y":732.93,"bx":1378.45,"by":732.93,"u":{"infantry":3442,"cavalry":462,"archers":3354,"artillery":191},"n":0,"name":"2nd (Sizitaga) Regiment","state":4,"icon":"āļø"},{"i":2,"a":4413,"cell":6265,"x":1465.1,"y":726.49,"bx":1465.1,"by":726.49,"u":{"infantry":2371,"cavalry":437,"artillery":101,"archers":1504},"n":0,"name":"3rd (Myrneramia) Regiment","state":4,"icon":"āļø"},{"i":3,"a":3252,"cell":5532,"x":1451.94,"y":650.61,"bx":1451.94,"by":650.61,"u":{"archers":1334,"cavalry":261,"infantry":1613,"artillery":44},"n":0,"name":"4th (Penaile) Regiment","state":4,"icon":"āļø"},{"i":4,"a":2564,"cell":5537,"x":1511.09,"y":650.41,"bx":1511.09,"by":650.41,"u":{"infantry":1432,"artillery":20,"archers":828,"cavalry":284},"n":0,"name":"5th (Dileron) Regiment","state":4,"icon":"āļø"},{"i":5,"a":2286,"cell":6260,"x":1404.43,"y":722.81,"bx":1404.43,"by":722.81,"u":{"infantry":1223,"cavalry":228,"archers":810,"artillery":25},"n":0,"name":"6th (Sizitaga) Regiment","state":4,"icon":"āļø"},{"i":6,"a":2040,"cell":6140,"x":1462.04,"y":706.69,"bx":1462.04,"by":706.69,"u":{"infantry":1126,"cavalry":221,"archers":668,"artillery":25},"n":0,"name":"7th (Myrneramia) Regiment","state":4,"icon":"āļø"},{"i":7,"a":69,"cell":6256,"x":1356.65,"y":723.38,"bx":1356.65,"by":723.38,"u":{"fleet":69},"n":1,"name":"1st Fleet","state":4,"icon":"š"},{"i":8,"a":3,"cell":7218,"x":1415.51,"y":831.17,"bx":1415.51,"by":831.17,"u":{"fleet":3},"n":1,"name":"2nd Fleet","state":4,"icon":"š"}]},{"i":5,"name":"Geiterzelia","expansionism":1.8,"capital":5,"type":"Generic","center":7229,"culture":8,"coa":{"t1":"argent","charges":[{"charge":"laurelWreath2","t":"gules","p":"e","size":1.5}],"shield":"heater"},"pole":[1468,789],"neighbors":[4,7],"color":"#a6d854","campaigns":[{"name":"Smyrchian War","start":1893,"end":1894},{"name":"Sasbachian War","start":1893,"end":1898}],"diplomacy":["x","Ally","Ally","Ally","Enemy","x","Suspicion","Rival","Ally","Unknown","Neutral","Unknown","Neutral","Neutral","Neutral","Neutral","Suspicion","Unknown","Neutral","Neutral","Ally"],"urban":99.58900000000001,"rural":566.8105807304382,"burgs":18,"area":6449,"cells":51,"form":"Monarchy","formName":"Duchy","fullName":"Duchy of Geiterzelia","provinces":[37,38,39,40,165],"alert":2.96,"military":[{"i":0,"a":4143,"cell":6632,"x":1470.28,"y":755.73,"bx":1470.28,"by":755.73,"u":{"infantry":1885,"archers":1624,"cavalry":598,"artillery":36},"n":0,"name":"1st (Ungen) Regiment","state":5,"icon":"āļø"},{"i":1,"a":3011,"cell":7229,"x":1499.1,"y":824.2,"bx":1499.1,"by":824.2,"u":{"archers":1425,"cavalry":265,"infantry":1271,"artillery":50},"n":0,"name":"2nd (Bolsheimia) Regiment","state":5,"icon":"š"},{"i":2,"a":14,"cell":7229,"x":1487.35,"y":821.35,"bx":1487.35,"by":821.35,"u":{"fleet":14},"n":1,"name":"1st Fleet","state":5,"icon":"š"}]},{"i":6,"name":"Zahuahuaco","expansionism":4.4,"capital":6,"type":"Generic","center":4474,"culture":5,"coa":{"t1":"sable","division":{"division":"perSaltire","t":"argent"},"shield":"wedged"},"pole":[638,548],"neighbors":[13,0,3,19],"color":"#ffd92f","campaigns":[{"name":"Tetelilcan Campaign","start":1650,"end":1655},{"name":"Sulmanian War","start":1765,"end":1768},{"name":"Ialitaris Conflict","start":1814,"end":1815},{"name":"Ro Campaign","start":1879,"end":1880},{"name":"Tetelilco-Zahuahuacian War","start":1899,"attacker":3,"defender":6}],"diplomacy":["x","Enemy","Ally","Enemy","Enemy","Suspicion","x","Ally","Ally","Friendly","Friendly","Friendly","Ally","Enemy","Neutral","Enemy","Suspicion","Neutral","Neutral","Rival","Unknown"],"urban":119.22600000000001,"rural":850.923743724823,"burgs":24,"area":14396,"cells":152,"form":"Union","formName":"League","fullName":"Zahuahuacan League","provinces":[41,42,43,44,45,166,167],"alert":4.87,"military":[{"i":0,"a":10482,"cell":4311,"x":631.14,"y":560.17,"bx":631.14,"by":560.17,"u":{"infantry":4617,"archers":4533,"cavalry":1234,"artillery":98},"n":0,"name":"1st (Tlapipanco) Regiment","state":6,"icon":"āļø"},{"i":1,"a":4264,"cell":3848,"x":608.7,"y":518.3,"bx":608.7,"by":518.3,"u":{"archers":2162,"cavalry":310,"infantry":1781,"artillery":11},"n":0,"name":"2nd (Anitzizamat) Regiment","state":6,"icon":"š¹"},{"i":2,"a":4051,"cell":4474,"x":652.5,"y":570.7,"bx":652.5,"by":570.7,"u":{"archers":2106,"cavalry":242,"artillery":62,"infantry":1641},"n":0,"name":"3rd (Coatlacan) Regiment","state":6,"icon":"š¹"},{"i":3,"a":1766,"cell":2961,"x":762.56,"y":430.66,"bx":762.56,"by":430.66,"u":{"archers":903,"cavalry":118,"infantry":730,"artillery":15},"n":0,"name":"4th (Apultepec) Regiment","state":6,"icon":"š¹"},{"i":4,"a":17,"cell":4474,"x":663.81,"y":575.23,"bx":663.81,"by":575.23,"u":{"fleet":17},"n":1,"name":"1st Fleet","state":6,"icon":"š"},{"i":5,"a":8,"cell":4001,"x":602.37,"y":526.15,"bx":602.37,"by":526.15,"u":{"fleet":8},"n":1,"name":"2nd Fleet","state":6,"icon":"š"}]},{"i":7,"name":"Sasbachia","expansionism":3.4,"capital":7,"type":"Generic","center":6767,"culture":8,"coa":{"t1":"or","charges":[{"charge":"eagle","t":"vert","p":"e","t2":"vert","t3":"vert","size":1.5}],"shield":"heater"},"pole":[1553,721],"neighbors":[8,20,4,5],"color":"#76bbba","campaigns":[{"name":"Smyrchian War","start":1693,"end":1698},{"name":"Schapten Conflict","start":1698,"end":1700},{"name":"Paowanian Invasion","start":1778,"end":1788},{"name":"Geiterzelian War","start":1893,"end":1895}],"diplomacy":["x","Enemy","Neutral","Enemy","Friendly","Rival","Ally","x","Enemy","Enemy","Ally","Unknown","Enemy","Neutral","Enemy","Neutral","Unknown","Enemy","Enemy","Enemy","Suspicion"],"urban":205.58299999999997,"rural":2090.737123608589,"burgs":46,"area":17786,"cells":129,"form":"Republic","formName":"Republic","fullName":"Republic of Sasbachia","provinces":[46,47,48,49,50,51,52,53,54,55],"alert":2.03,"military":[{"i":0,"a":6820,"cell":6767,"x":1563.03,"y":770.62,"bx":1563.03,"by":770.62,"u":{"archers":2317,"cavalry":1217,"artillery":59,"infantry":3227},"n":0,"name":"1st (Haitersia) Regiment","state":7,"icon":"āļø"},{"i":1,"a":3951,"cell":6521,"x":1594.97,"y":748.48,"bx":1594.97,"by":748.48,"u":{"archers":1355,"cavalry":706,"artillery":14,"infantry":1876},"n":0,"name":"2nd (Gourtyn) Regiment","state":7,"icon":"āļø"},{"i":2,"a":3752,"cell":6272,"x":1542.24,"y":721.6,"bx":1542.24,"by":721.6,"u":{"infantry":1876,"archers":1027,"cavalry":831,"artillery":18},"n":0,"name":"3rd (Neuhesen) Regiment","state":7,"icon":"āļø"},{"i":3,"a":2754,"cell":6510,"x":1457.32,"y":746.53,"bx":1457.32,"by":746.53,"u":{"infantry":1382,"cavalry":622,"artillery":19,"archers":731},"n":0,"name":"4th (Rheinhardt) Regiment","state":7,"icon":"āļø"},{"i":4,"a":8,"cell":6767,"x":1570.85,"y":780.97,"bx":1570.85,"by":780.97,"u":{"fleet":8},"n":1,"name":"1st Fleet","state":7,"icon":"š"}]},{"i":8,"name":"Paowania","expansionism":6.6,"capital":8,"type":"Naval","center":4854,"culture":11,"coa":{"t1":"azure","charges":[{"charge":"trianglePierced","t":"or","p":"kmo","size":0.5}],"shield":"gonfalon"},"pole":[1397,537],"neighbors":[12,0,10,20,18,4,7],"color":"#ff8b7f","campaigns":[{"name":"Smyrchian Campaign","start":1717,"end":1718},{"name":"Straudens Conquest","start":1748,"end":1749},{"name":"Gongshingian Conquest","start":1861,"end":1862},{"name":"Kamailean Invasion","start":1877,"end":1884},{"name":"Sesosian War","start":1893,"end":1894},{"name":"Shunese Crusade","start":1893,"end":1894},{"name":"Sasbachian Conflict","start":1893,"end":1898},{"name":"Smyrchia-Paowanian War","start":1894,"attacker":4,"defender":8}],"diplomacy":["x","Enemy","Neutral","Enemy","Enemy","Ally","Ally","Enemy","x","Ally","Enemy","Enemy","Unknown","Suspicion","Rival","Neutral","Unknown","Neutral","Rival","Ally","Enemy"],"urban":311.02200000000005,"rural":3148.1927530765533,"burgs":79,"area":53185,"cells":501,"form":"Monarchy","formName":"Empire","fullName":"Paowanian Empire","provinces":[56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,168,169,170,171,172,173],"alert":1.98,"military":[{"i":0,"a":5665,"cell":4535,"x":1399.15,"y":562.29,"bx":1399.15,"by":562.29,"u":{"infantry":2367,"cavalry":205,"archers":3006,"artillery":87},"n":0,"name":"1st (Wongia) Regiment","state":8,"icon":"š¹"},{"i":1,"a":4226,"cell":5292,"x":1405.59,"y":625.06,"bx":1405.59,"by":625.06,"u":{"infantry":1991,"cavalry":276,"archers":1884,"artillery":75},"n":0,"name":"2nd (Fachau) Regiment","state":8,"icon":"āļø"},{"i":2,"a":3496,"cell":5168,"x":1530.03,"y":615.31,"bx":1530.03,"by":615.31,"u":{"archers":1514,"cavalry":247,"infantry":1701,"artillery":34},"n":0,"name":"3rd (Bytostos) Regiment","state":8,"icon":"āļø"},{"i":3,"a":353,"cell":2299,"x":1016.6,"y":354.6,"bx":1016.6,"by":354.6,"u":{"archers":201,"cavalry":5,"infantry":142,"artillery":5},"n":0,"name":"4th (Skylo) Regiment","state":8,"icon":"š¹"},{"i":4,"a":300,"cell":1767,"x":1324.46,"y":288.55,"bx":1324.46,"by":288.55,"u":{"archers":172,"cavalry":4,"infantry":122,"artillery":2},"n":0,"name":"5th (Methymia) Regiment","state":8,"icon":"š¹"},{"i":5,"a":87,"cell":759,"x":1637.57,"y":174.47,"bx":1637.57,"by":174.47,"u":{"archers":50,"infantry":37},"n":0,"name":"6th (Nausaipo) Regiment","state":8,"icon":"š¹"},{"i":6,"a":25,"cell":4529,"x":1368.36,"y":575.84,"bx":1368.36,"by":575.84,"u":{"fleet":25},"n":1,"name":"1st Fleet","state":8,"icon":"š"},{"i":7,"a":2,"cell":2578,"x":1031.7,"y":382.4,"bx":1031.7,"by":382.4,"u":{"fleet":2},"n":1,"name":"2nd Fleet","state":8,"icon":"š"}]},{"i":9,"name":"Vexum","expansionism":6.9,"capital":9,"type":"River","center":6198,"culture":4,"coa":{"t1":"chainy-or-purpure","charges":[{"charge":"talbotSejant","t":"gules","p":"e","t2":"azure","t3":"sable","size":1.5}],"shield":"renaissance"},"pole":[424,783],"neighbors":[16,11,1],"color":"#b7abc3","campaigns":[{"name":"Nafendorf Intervention","start":1617,"end":1627},{"name":"Lohian War","start":1783,"end":1784},{"name":"Meragubian Rebellion","start":1849,"end":1850}],"diplomacy":["x","Suspicion","Neutral","Ally","Enemy","Unknown","Friendly","Enemy","Ally","x","Enemy","Enemy","Neutral","Neutral","Unknown","Neutral","Suspicion","Suspicion","Neutral","Ally","Enemy"],"urban":226.7039999999999,"rural":2032.3008974790573,"burgs":51,"area":26081,"cells":181,"form":"Monarchy","formName":"Kingdom","fullName":"Kingdom of Vexum","provinces":[72,73,74,75,76,77,78,79,80,81,82,174],"alert":2.39,"military":[{"i":0,"a":5884,"cell":6069,"x":443.51,"y":707.69,"bx":443.51,"by":707.69,"u":{"infantry":3075,"cavalry":618,"artillery":57,"archers":2134},"n":0,"name":"1st (Dimicum) Regiment","state":9,"icon":"āļø"},{"i":1,"a":3387,"cell":6438,"x":469.47,"y":747.52,"bx":469.47,"by":747.52,"u":{"infantry":1872,"archers":976,"cavalry":513,"artillery":26},"n":0,"name":"2nd (Dodia) Regiment","state":9,"icon":"āļø"},{"i":2,"a":2918,"cell":6443,"x":521.2,"y":749.2,"bx":521.2,"by":749.2,"u":{"infantry":1524,"cavalry":313,"artillery":25,"archers":1056},"n":0,"name":"3rd (Condinium) Regiment","state":9,"icon":"āļø"},{"i":3,"a":2692,"cell":7043,"x":458.53,"y":810.82,"bx":458.53,"by":810.82,"u":{"infantry":1375,"cavalry":236,"artillery":16,"archers":1065},"n":0,"name":"4th (Phiniagas) Regiment","state":9,"icon":"āļø"},{"i":4,"a":3,"cell":6194,"x":487.5,"y":707.8,"bx":487.5,"by":707.8,"u":{"fleet":3},"n":1,"name":"1st Fleet","state":9,"icon":"š"}]},{"i":10,"name":"Kamaile","expansionism":6.3,"capital":10,"type":"Naval","center":6497,"culture":15,"coa":{"t1":"azure","ordinaries":[{"ordinary":"bendSinister","t":"or","line":"flechy"}],"charges":[{"charge":"lymphad","t":"azure","p":"e","t2":"azure","t3":"azure","size":0.7}],"shield":"gonfalon"},"pole":[1282,792],"neighbors":[8,0,19,18,4],"color":"#cce256","campaigns":[{"name":"Gongshingian Conquest","start":1552,"end":1553},{"name":"Odian War","start":1568,"end":1574},{"name":"Smyrchian Campaign","start":1718,"end":1725},{"name":"Paowanian War","start":1748,"end":1749},{"name":"Lintipotian Conquest","start":1889,"end":1890},{"name":"Kamaile-Ialitarisian War","start":1899,"attacker":10,"defender":19}],"diplomacy":["x","Unknown","Unknown","Friendly","Rival","Neutral","Friendly","Ally","Enemy","Enemy","x","Ally","Enemy","Suspicion","Enemy","Neutral","Neutral","Enemy","Enemy","Enemy","Ally"],"urban":272.31,"rural":1970.7014883458614,"burgs":61,"area":36146,"cells":317,"form":"Monarchy","formName":"Kingdom","fullName":"Kingdom of Kamaile","provinces":[83,84,85,86,87,88,89,90,91,92,93,94,95,175,176,177],"alert":2.78,"military":[{"i":0,"a":8365,"cell":6497,"x":1308.5,"y":750.7,"bx":1308.5,"by":750.7,"u":{"archers":4327,"cavalry":348,"artillery":198,"infantry":3492},"n":0,"name":"1st (Siros) Regiment","state":10,"icon":"š"},{"i":1,"a":3367,"cell":6973,"x":1230.73,"y":795,"bx":1230.73,"by":795,"u":{"infantry":1379,"archers":1817,"cavalry":115,"artillery":56},"n":0,"name":"2nd (Methos) Regiment","state":10,"icon":"š¹"},{"i":2,"a":2554,"cell":7197,"x":1201.27,"y":821.11,"bx":1201.27,"by":821.11,"u":{"infantry":1047,"cavalry":88,"archers":1384,"artillery":35},"n":0,"name":"3rd (Somis) Regiment","state":10,"icon":"š¹"},{"i":3,"a":2364,"cell":6750,"x":1354.65,"y":768.89,"bx":1354.65,"by":768.89,"u":{"infantry":1035,"cavalry":110,"artillery":30,"archers":1189},"n":0,"name":"4th (Myrgos) Regiment","state":10,"icon":"š¹"},{"i":4,"a":1161,"cell":7422,"x":1179.99,"y":846.7,"bx":1179.99,"by":846.7,"u":{"archers":447,"artillery":12,"cavalry":103,"infantry":599},"n":0,"name":"5th (Somis) Regiment","state":10,"icon":"āļø"},{"i":5,"a":332,"cell":4675,"x":1019.73,"y":580.64,"bx":1019.73,"by":580.64,"u":{"archers":189,"cavalry":7,"infantry":136},"n":0,"name":"6th (Thoseidia) Regiment","state":10,"icon":"š¹"},{"i":6,"a":291,"cell":5386,"x":836.97,"y":643.87,"bx":836.97,"by":643.87,"u":{"archers":160,"cavalry":7,"artillery":5,"infantry":119},"n":0,"name":"7th (Thoseidia) Regiment","state":10,"icon":"š¹"},{"i":7,"a":54,"cell":6497,"x":1298.88,"y":738.82,"bx":1298.88,"by":738.82,"u":{"fleet":54},"n":1,"name":"1st Fleet","state":10,"icon":"š"},{"i":8,"a":3,"cell":7434,"x":1311.4,"y":838.12,"bx":1311.4,"by":838.12,"u":{"fleet":3},"n":1,"name":"2nd Fleet","state":10,"icon":"š"},{"i":9,"a":3,"cell":5386,"x":853,"y":646,"bx":853,"by":646,"u":{"fleet":3},"n":1,"name":"3rd Fleet","state":10,"icon":"š"},{"i":10,"a":1,"cell":5985,"x":1130.43,"y":703.32,"bx":1130.43,"by":703.32,"u":{"fleet":1},"n":1,"name":"4th Fleet","state":10,"icon":"š"}]},{"i":11,"name":"Meragubia","expansionism":1.3,"capital":11,"type":"Generic","center":6568,"culture":14,"coa":{"t1":"gules","ordinaries":[{"ordinary":"gemelle","t":"argent","line":"straight"}],"charges":[{"charge":"falcon","t":"argent","p":"abc","t2":"argent","t3":"argent","size":0.5}],"shield":"gonfalon"},"pole":[576,805],"neighbors":[19,9],"color":"#cdd168","campaigns":[{"name":"Ialitaris Campaign","start":1860,"end":1862},{"name":"Vexuman Campaign","start":1893,"end":1894}],"diplomacy":["x","Friendly","Unknown","Friendly","Neutral","Unknown","Friendly","Unknown","Enemy","Enemy","Ally","x","Enemy","Unknown","Enemy","Neutral","Friendly","Enemy","Enemy","Enemy","Neutral"],"urban":113.31800000000001,"rural":1095.9886022806168,"burgs":28,"area":11860,"cells":82,"form":"Monarchy","formName":"Despotate","fullName":"Meragubian Despotate","provinces":[96,97,98,99,100,101],"alert":1.46,"military":[{"i":0,"a":3397,"cell":7165,"x":567.42,"y":815.9,"bx":567.42,"by":815.9,"u":{"infantry":1563,"archers":1293,"cavalry":513,"artillery":28},"n":0,"name":"1st (Diontosia) Regiment","state":11,"icon":"āļø"},{"i":1,"a":3131,"cell":6694,"x":583.02,"y":772.77,"bx":583.02,"by":772.77,"u":{"infantry":1465,"archers":1129,"cavalry":518,"artillery":19},"n":0,"name":"2nd (Siceia) Regiment","state":11,"icon":"āļø"},{"i":2,"a":2055,"cell":7048,"x":517.14,"y":809.22,"bx":517.14,"by":809.22,"u":{"infantry":983,"archers":676,"cavalry":385,"artillery":11},"n":0,"name":"3rd (Iolara) Regiment","state":11,"icon":"āļø"},{"i":3,"a":3,"cell":6568,"x":555.6,"y":755.7,"bx":555.6,"by":755.7,"u":{"fleet":3},"n":1,"name":"1st Fleet","state":11,"icon":"š"}]},{"i":12,"name":"Sesosia","expansionism":5.6,"capital":12,"type":"Naval","center":167,"culture":15,"coa":{"t1":"semy_of_roundel-argent-purpure","charges":[{"charge":"ladder","t":"vert","p":"e","size":1.5}],"shield":"gonfalon"},"pole":[925,113],"neighbors":[13,0,8],"color":"#fff83d","campaigns":[{"name":"Ro Intervention","start":1524,"end":1525},{"name":"Paowanian War","start":1818,"end":1828},{"name":"Nenaian Conquest","start":1893,"end":1898},{"name":"Ros-Sesosian War","start":1897,"attacker":13,"defender":12},{"name":"Laupsland-Sesosian War","start":1895,"attacker":15,"defender":12}],"diplomacy":["x","Enemy","Neutral","Enemy","Unknown","Neutral","Ally","Enemy","Unknown","Neutral","Enemy","Enemy","x","Enemy","Neutral","Enemy","Neutral","Neutral","Suspicion","Ally","Enemy"],"urban":79.60399999999998,"rural":981.2012677788734,"burgs":17,"area":43233,"cells":379,"form":"Monarchy","formName":"Kingdom","fullName":"Kingdom of Sesosia","provinces":[102,103,104,105,178,179],"alert":1.1,"military":[{"i":0,"a":1467,"cell":928,"x":1002.35,"y":195.33,"bx":1002.35,"by":195.33,"u":{"archers":823,"cavalry":32,"infantry":587,"artillery":25},"n":0,"name":"1st (Hinon) Regiment","state":12,"icon":"š¹"},{"i":1,"a":1019,"cell":167,"x":1001.3,"y":87.4,"bx":1001.3,"by":87.4,"u":{"archers":581,"cavalry":13,"artillery":9,"infantry":416},"n":0,"name":"2nd (Lirasos) Regiment","state":12,"icon":"š"},{"i":2,"a":295,"cell":1071,"x":1373.9,"y":221.7,"bx":1373.9,"by":221.7,"u":{"archers":169,"cavalry":1,"infantry":125},"n":0,"name":"3rd (New Hinon) Regiment","state":12,"icon":"š¹"},{"i":3,"a":3,"cell":1961,"x":1041.31,"y":313.09,"bx":1041.31,"by":313.09,"u":{"fleet":3},"n":1,"name":"1st Fleet","state":12,"icon":"š"},{"i":4,"a":3,"cell":742,"x":1083.34,"y":187.33,"bx":1083.34,"by":187.33,"u":{"fleet":3},"n":1,"name":"2nd Fleet","state":12,"icon":"š"},{"i":5,"a":1,"cell":167,"x":1011.43,"y":82.46,"bx":1011.43,"by":82.46,"u":{"fleet":1},"n":1,"name":"3rd Fleet","state":12,"icon":"š"}]},{"i":13,"name":"Ros","expansionism":6.2,"capital":13,"type":"Naval","center":1231,"culture":12,"coa":{"t1":"gules","ordinaries":[{"ordinary":"orle","t":"or"}],"charges":[{"charge":"trianglePierced","t":"argent","p":"peq","size":0.4}],"shield":"oldFrench"},"pole":[581,143],"neighbors":[12,0,14,6],"color":"#64e1b2","campaigns":[{"name":"Onestadian War","start":1677,"end":1683},{"name":"Skatey Campaign","start":1778,"end":1779},{"name":"Elanan War","start":1893,"end":1898},{"name":"Beisfnan Invasion","start":1893,"end":1894},{"name":"Ros-Sesosian War","start":1897,"attacker":13,"defender":12}],"diplomacy":["x","Neutral","Unknown","Friendly","Suspicion","Neutral","Enemy","Neutral","Suspicion","Neutral","Suspicion","Unknown","Enemy","x","Suspicion","Neutral","Suspicion","Neutral","Neutral","Enemy","Neutral"],"urban":45.921,"rural":1104.8265959620476,"burgs":15,"area":64768,"cells":570,"form":"Monarchy","formName":"Empire","fullName":"Ro Empire","provinces":[106,107,108,180,181,182],"alert":1.37,"military":[{"i":0,"a":2520,"cell":1019,"x":684.84,"y":213.78,"bx":684.84,"by":213.78,"u":{"archers":1428,"cavalry":38,"infantry":1044,"artillery":10},"n":0,"name":"1st (Egilsia) Regiment","state":13,"icon":"š¹"},{"i":1,"a":1686,"cell":1231,"x":610.65,"y":235.55,"bx":610.65,"by":235.55,"u":{"archers":954,"cavalry":32,"infantry":680,"artillery":20},"n":0,"name":"2nd (Meroyri) Regiment","state":13,"icon":"š"},{"i":2,"a":4,"cell":1231,"x":622.4,"y":238.7,"bx":622.4,"by":238.7,"u":{"fleet":4},"n":1,"name":"1st Fleet","state":13,"icon":"š"},{"i":3,"a":1,"cell":1115,"x":518.47,"y":211.62,"bx":518.47,"by":211.62,"u":{"fleet":1},"n":1,"name":"2nd Fleet","state":13,"icon":"š"}]},{"i":14,"name":"Onestad","expansionism":2.7,"capital":14,"type":"Naval","center":1917,"culture":12,"coa":{"t1":"argent","charges":[{"charge":"roundel","t":"gules","p":"acegi","size":0.4}],"shield":"oldFrench"},"pole":[512,316],"neighbors":[13,3],"color":"#fab46b","campaigns":[{"name":"Tetelilcan Crusade","start":1672,"end":1684},{"name":"Ro Conflict","start":1825,"end":1826}],"diplomacy":["x","Neutral","Neutral","Suspicion","Rival","Neutral","Neutral","Enemy","Rival","Unknown","Enemy","Enemy","Neutral","Suspicion","x","Unknown","Enemy","Ally","Suspicion","Ally","Enemy"],"urban":31.296,"rural":187.46386209130287,"burgs":5,"area":4560,"cells":52,"form":"Republic","formName":"Republic","fullName":"Republic of Onestad","provinces":[109,110],"alert":2.2,"military":[{"i":0,"a":1732,"cell":1917,"x":554.79,"y":313.74,"bx":554.79,"by":313.74,"u":{"archers":972,"cavalry":40,"infantry":681,"artillery":39},"n":0,"name":"1st (Orarka) Regiment","state":14,"icon":"š¹"},{"i":1,"a":16,"cell":1917,"x":567.22,"y":311.08,"bx":567.22,"by":311.08,"u":{"fleet":16},"n":1,"name":"1st Fleet","state":14,"icon":"š"},{"i":2,"a":2,"cell":2022,"x":497.17,"y":339.82,"bx":497.17,"by":339.82,"u":{"fleet":2},"n":1,"name":"2nd Fleet","state":14,"icon":"š"}]},{"i":15,"name":"Laupsland","expansionism":6.1,"capital":15,"type":"Naval","center":3220,"culture":12,"coa":{"t1":"purpure","ordinaries":[{"ordinary":"bendlet","t":"argent","line":"straight"}],"charges":[{"charge":"cock","t":"sable","p":"joe","t2":"sable","t3":"sable","size":0.3}],"shield":"oldFrench"},"pole":[330,465],"neighbors":[3,1,16,17],"color":"#df93df","campaigns":[{"name":"Tetelilcan War","start":1725,"end":1735},{"name":"Nafendorf Rebellion","start":1822,"end":1825},{"name":"Rogengenese Invasion","start":1844,"end":1853},{"name":"Kansian War","start":1893,"end":1894},{"name":"Laupsland-Sesosian War","start":1895,"attacker":15,"defender":12}],"diplomacy":["x","Suspicion","Suspicion","Suspicion","Suspicion","Neutral","Enemy","Neutral","Neutral","Neutral","Neutral","Neutral","Enemy","Neutral","Unknown","x","Suspicion","Suspicion","Neutral","Enemy","Neutral"],"urban":178.13600000000002,"rural":1380.119529902935,"burgs":36,"area":22297,"cells":267,"form":"Monarchy","formName":"Principality","fullName":"Principality of Laupsland","provinces":[111,112,113,114,115,116,117,118,183,184,185],"alert":1.31,"military":[{"i":0,"a":4275,"cell":3220,"x":327.53,"y":468.2,"bx":327.53,"by":468.2,"u":{"archers":2416,"cavalry":87,"artillery":74,"infantry":1698},"n":0,"name":"1st (Laupsvi) Regiment","state":15,"icon":"š"},{"i":1,"a":47,"cell":3452,"x":10.02,"y":492.46,"bx":10.02,"by":492.46,"u":{"archers":28,"infantry":19},"n":0,"name":"2nd (New Getia) Regiment","state":15,"icon":"š¹"},{"i":2,"a":6,"cell":3010,"x":240.39,"y":462.34,"bx":240.39,"by":462.34,"u":{"fleet":6},"n":1,"name":"1st Fleet","state":15,"icon":"š"},{"i":3,"a":5,"cell":3346,"x":336.82,"y":504.5,"bx":336.82,"by":504.5,"u":{"fleet":5},"n":1,"name":"2nd Fleet","state":15,"icon":"š"},{"i":4,"a":1,"cell":1987,"x":249.03,"y":343.29,"bx":249.03,"by":343.29,"u":{"fleet":1},"n":1,"name":"3rd Fleet","state":15,"icon":"š"}]},{"i":16,"name":"Nafendorf","expansionism":4.9,"capital":16,"type":"Generic","center":4118,"culture":16,"coa":{"t1":"argent","ordinaries":[{"ordinary":"pale","t":"sable","line":"straight"}],"charges":[{"charge":"crossHummetty","t":"argent","p":"beh","size":0.5}],"shield":"spanish"},"pole":[353,595],"neighbors":[15,1,17,9],"color":"#b7ce73","campaigns":[{"name":"Vexuman War","start":1650,"end":1655},{"name":"Lohian War","start":1693,"end":1704},{"name":"Laupsish Conflict","start":1893,"end":1896},{"name":"Breisach War","start":1893,"end":1897},{"name":"Nafendorf-Breisachian War","start":1892,"attacker":16,"defender":17}],"diplomacy":["x","Enemy","Friendly","Neutral","Unknown","Suspicion","Suspicion","Unknown","Unknown","Suspicion","Neutral","Friendly","Neutral","Suspicion","Enemy","Suspicion","x","Enemy","Neutral","Enemy","Neutral"],"urban":288.69700000000006,"rural":2872.621410191059,"burgs":70,"area":30340,"cells":225,"form":"Anarchy","formName":"Commune","fullName":"Commune of Nafendorf","provinces":[119,120,121,122,123,124,125,126,127,128,129,130,131,132,186,187],"alert":2.32,"military":[{"i":0,"a":7946,"cell":6427,"x":344.41,"y":744.8,"bx":344.41,"by":744.8,"u":{"archers":3735,"cavalry":759,"artillery":38,"infantry":3414},"n":0,"name":"1st (Fluorndin) Regiment","state":16,"icon":"š¹"},{"i":1,"a":5759,"cell":5072,"x":379.67,"y":618.05,"bx":379.67,"by":618.05,"u":{"infantry":2584,"archers":2371,"cavalry":764,"artillery":40},"n":0,"name":"2nd (Orstadtnia) Regiment","state":16,"icon":"āļø"},{"i":2,"a":3440,"cell":4441,"x":373.34,"y":563.34,"bx":373.34,"by":563.34,"u":{"infantry":1485,"cavalry":338,"artillery":25,"archers":1592},"n":0,"name":"3rd (Breithengsia) Regiment","state":16,"icon":"š¹"},{"i":3,"a":2988,"cell":4435,"x":305.36,"y":563.67,"bx":305.36,"by":563.67,"u":{"archers":1507,"cavalry":213,"artillery":31,"infantry":1237},"n":0,"name":"4th (Odeckloshut) Regiment","state":16,"icon":"š¹"},{"i":4,"a":2565,"cell":4758,"x":315.2,"y":585.86,"bx":315.2,"by":585.86,"u":{"archers":1284,"cavalry":193,"artillery":17,"infantry":1071},"n":0,"name":"5th (Rheinwenalb) Regiment","state":16,"icon":"š¹"},{"i":5,"a":1054,"cell":4604,"x":404.6,"y":578.03,"bx":404.6,"by":578.03,"u":{"infantry":517,"cavalry":218,"artillery":9,"archers":310},"n":0,"name":"6th (Dunbach) Regiment","state":16,"icon":"āļø"},{"i":6,"a":5,"cell":4118,"x":329.3,"y":528.67,"bx":329.3,"by":528.67,"u":{"fleet":5},"n":1,"name":"1st Fleet","state":16,"icon":"š"},{"i":7,"a":1,"cell":5477,"x":431.11,"y":655.37,"bx":431.11,"by":655.37,"u":{"fleet":1},"n":1,"name":"2nd Fleet","state":16,"icon":"š"}]},{"i":17,"name":"Breisach","expansionism":1.1,"capital":17,"type":"Generic","center":4921,"culture":16,"coa":{"t1":"bendySinister-or-sable-small","division":{"division":"perBendSinister","t":"azure","line":"straight"},"charges":[{"charge":"sunInSplendour","t":"gules","p":"j","size":0.7},{"charge":"boat","t":"argent","p":"o","size":0.7}],"shield":"spanish"},"pole":[452,572],"neighbors":[15,3,16],"color":"#ecf549","campaigns":[{"name":"Laupsish Campaign","start":1398,"end":1403},{"name":"Tetelilcan Crusade","start":1873,"end":1884},{"name":"Ailerkenese Rebellion","start":1878,"end":1879},{"name":"Nafendorf-Breisachian War","start":1892,"attacker":16,"defender":17}],"diplomacy":["x","Ally","Unknown","Suspicion","Neutral","Unknown","Neutral","Enemy","Neutral","Suspicion","Enemy","Enemy","Neutral","Neutral","Ally","Suspicion","Enemy","x","Unknown","Ally","Enemy"],"urban":113.59700000000002,"rural":644.5754780173302,"burgs":20,"area":6892,"cells":60,"form":"Monarchy","formName":"Duchy","fullName":"Duchy of Breisach","provinces":[133,134,135,136],"alert":1.44,"military":[{"i":0,"a":2996,"cell":4768,"x":433.4,"y":592.71,"bx":433.4,"by":592.71,"u":{"archers":1386,"cavalry":288,"artillery":42,"infantry":1280},"n":0,"name":"1st (Schal) Regiment","state":17,"icon":"š¹"},{"i":1,"a":2327,"cell":4129,"x":433.25,"y":540.71,"bx":433.25,"by":540.71,"u":{"archers":1159,"cavalry":178,"infantry":973,"artillery":17},"n":0,"name":"2nd (Wiebengen) Regiment","state":17,"icon":"š¹"},{"i":2,"a":3,"cell":4292,"x":418.73,"y":544.5,"bx":418.73,"by":544.5,"u":{"fleet":3},"n":1,"name":"1st Fleet","state":17,"icon":"š"}]},{"i":18,"name":"Gongshingia","expansionism":5.3,"capital":18,"type":"Naval","center":5518,"culture":11,"coa":{"t1":"argent","ordinaries":[{"ordinary":"point","t":"gules"}],"charges":[{"charge":"lymphad","t":"gules","p":"bdf","t2":"gules","t3":"gules","size":0.5}],"shield":"gonfalon"},"pole":[1285,635],"neighbors":[8,10],"color":"#ffd148","campaigns":[{"name":"Kamailean Intervention","start":1636,"end":1638},{"name":"Paowanian Rebellion","start":1781,"end":1782}],"diplomacy":["x","Unknown","Suspicion","Neutral","Suspicion","Neutral","Neutral","Enemy","Rival","Neutral","Enemy","Enemy","Suspicion","Neutral","Suspicion","Neutral","Neutral","Unknown","x","Ally","Enemy"],"urban":70.115,"rural":530.9195467233658,"burgs":14,"area":8879,"cells":93,"form":"Monarchy","formName":"Grand Duchy","fullName":"Grand Duchy of Gongshingia","provinces":[137,138,139,188],"alert":5,"military":[{"i":0,"a":4868,"cell":5638,"x":1294.39,"y":659.74,"bx":1294.39,"by":659.74,"u":{"archers":2733,"cavalry":137,"artillery":64,"infantry":1934},"n":0,"name":"1st (Yuen) Regiment","state":18,"icon":"š¹"},{"i":1,"a":4283,"cell":5141,"x":1299.26,"y":610.13,"bx":1299.26,"by":610.13,"u":{"archers":2406,"cavalry":111,"infantry":1670,"artillery":96},"n":0,"name":"2nd (Longtai) Regiment","state":18,"icon":"š¹"},{"i":2,"a":298,"cell":5278,"x":1311.98,"y":625.63,"bx":1311.98,"by":625.63,"u":{"archers":167,"cavalry":9,"infantry":122},"n":0,"name":"3rd (Samtsaunyi) Regiment","state":18,"icon":"š¹"},{"i":3,"a":9,"cell":5518,"x":1320.54,"y":670.37,"bx":1320.54,"by":670.37,"u":{"fleet":9},"n":1,"name":"1st Fleet","state":18,"icon":"š"},{"i":4,"a":9,"cell":5630,"x":1227.68,"y":663.9,"bx":1227.68,"by":663.9,"u":{"fleet":9},"n":1,"name":"2nd Fleet","state":18,"icon":"š"}]},{"i":19,"name":"Ialitaris","expansionism":6.5,"capital":19,"type":"Generic","center":5842,"culture":14,"coa":{"t1":"vert","ordinaries":[{"ordinary":"chief","t":"or","line":"urdy"}],"charges":[{"charge":"rustre","t":"vert","p":"abc","size":0.5}],"shield":"gonfalon"},"pole":[652,731],"neighbors":[6,0,10,3,11],"color":"#73bcbb","campaigns":[{"name":"Mantidopan War","start":1644,"end":1649},{"name":"Kamailean Invasion","start":1765,"end":1766},{"name":"Thaphiran War","start":1803,"end":1804},{"name":"Zahuahuacan War","start":1835,"end":1847},{"name":"Tetelilcan Intervention","start":1893,"end":1898},{"name":"Kamaile-Ialitarisian War","start":1899,"attacker":10,"defender":19}],"diplomacy":["x","Unknown","Neutral","Rival","Enemy","Neutral","Rival","Enemy","Ally","Ally","Enemy","Enemy","Ally","Enemy","Ally","Enemy","Enemy","Ally","Ally","x","Enemy"],"urban":189.64900000000003,"rural":1733.1536620259285,"burgs":41,"area":27959,"cells":256,"form":"Theocracy","formName":"Patriarchate","fullName":"Patriarchate of Ialitaris","provinces":[140,141,142,143,144,145,146,147,148,189,190,191],"alert":3.7,"military":[{"i":0,"a":5646,"cell":5967,"x":616.07,"y":694.23,"bx":616.07,"by":694.23,"u":{"infantry":2561,"archers":2288,"cavalry":785,"artillery":12},"n":0,"name":"1st (Tithema) Regiment","state":19,"icon":"āļø"},{"i":1,"a":3944,"cell":6575,"x":654.86,"y":760.71,"bx":654.86,"by":760.71,"u":{"archers":1973,"cavalry":301,"artillery":22,"infantry":1648},"n":0,"name":"2nd (Rosiapapa) Regiment","state":19,"icon":"š¹"},{"i":2,"a":3907,"cell":6212,"x":656.04,"y":723.91,"bx":656.04,"by":723.91,"u":{"archers":1948,"cavalry":293,"artillery":48,"infantry":1618},"n":0,"name":"3rd (Rosiapapa) Regiment","state":19,"icon":"š¹"},{"i":3,"a":3753,"cell":6459,"x":673.93,"y":744.3,"bx":673.93,"by":744.3,"u":{"archers":1936,"cavalry":241,"artillery":41,"infantry":1535},"n":0,"name":"4th (Iatece) Regiment","state":19,"icon":"š¹"},{"i":4,"a":3577,"cell":6329,"x":587.83,"y":731.71,"bx":587.83,"by":731.71,"u":{"infantry":1647,"cavalry":537,"artillery":22,"archers":1371},"n":0,"name":"5th (Smyrgan) Regiment","state":19,"icon":"āļø"},{"i":5,"a":3561,"cell":6580,"x":709.74,"y":755.73,"bx":709.74,"by":755.73,"u":{"archers":1828,"cavalry":240,"artillery":31,"infantry":1462},"n":0,"name":"6th (Gortelea) Regiment","state":19,"icon":"š¹"},{"i":6,"a":3388,"cell":5721,"x":595.82,"y":677.9,"bx":595.82,"by":677.9,"u":{"infantry":1579,"cavalry":547,"artillery":26,"archers":1236},"n":0,"name":"7th (Hyeririsia) Regiment","state":19,"icon":"āļø"},{"i":7,"a":1738,"cell":7058,"x":638.03,"y":805.32,"bx":638.03,"by":805.32,"u":{"archers":892,"cavalry":117,"artillery":16,"infantry":713},"n":0,"name":"8th (Iatece) Regiment","state":19,"icon":"š¹"},{"i":8,"a":373,"cell":4329,"x":781.68,"y":555.66,"bx":781.68,"by":555.66,"u":{"archers":191,"infantry":157,"cavalry":24,"artillery":1},"n":0,"name":"9th (Ecocatlan) Regiment","state":19,"icon":"š¹"},{"i":9,"a":5,"cell":7175,"x":657.49,"y":826.99,"bx":657.49,"by":826.99,"u":{"fleet":5},"n":1,"name":"1st Fleet","state":19,"icon":"š"},{"i":10,"a":4,"cell":5231,"x":570.21,"y":639.35,"bx":570.21,"by":639.35,"u":{"fleet":4},"n":1,"name":"2nd Fleet","state":19,"icon":"š"}]},{"i":20,"name":"Straudens","expansionism":5.3,"capital":20,"type":"Generic","center":7243,"culture":8,"coa":{"t1":"argent","charges":[{"charge":"arbalest","t":"gules","p":"e","t2":"gules","t3":"gules","size":1.5,"reversed":1}],"shield":"heater"},"pole":[1640,625],"neighbors":[8,7],"color":"#aebabf","campaigns":[{"name":"Sasbachian Conflict","start":1811,"end":1814},{"name":"Paowanian Crusade","start":1841,"end":1842}],"diplomacy":["x","Neutral","Neutral","Unknown","Friendly","Ally","Unknown","Suspicion","Enemy","Enemy","Ally","Neutral","Enemy","Neutral","Enemy","Neutral","Neutral","Enemy","Enemy","Enemy","x"],"urban":286.20599999999996,"rural":2364.448450565338,"burgs":56,"area":24858,"cells":179,"form":"Monarchy","formName":"Principality","fullName":"Principality of Straudens","provinces":[149,150,151,152,153,154,155,156,157,158,159,160],"alert":1.81,"military":[{"i":0,"a":4682,"cell":6775,"x":1639.67,"y":767.27,"bx":1639.67,"by":767.27,"u":{"infantry":2222,"cavalry":825,"artillery":37,"archers":1598},"n":0,"name":"1st (Schopold) Regiment","state":20,"icon":"āļø"},{"i":1,"a":3185,"cell":5915,"x":1665.75,"y":684.93,"bx":1665.75,"by":684.93,"u":{"archers":1189,"cavalry":495,"infantry":1472,"artillery":29},"n":0,"name":"2nd (Sytion) Regiment","state":20,"icon":"āļø"},{"i":2,"a":2739,"cell":5431,"x":1617.99,"y":634.83,"bx":1617.99,"by":634.83,"u":{"infantry":1240,"archers":1113,"cavalry":372,"artillery":14},"n":0,"name":"3rd (Emnosia) Regiment","state":20,"icon":"āļø"},{"i":3,"a":2186,"cell":4566,"x":1627.25,"y":570.45,"bx":1627.25,"by":570.45,"u":{"archers":890,"cavalry":297,"infantry":986,"artillery":13},"n":0,"name":"4th (Ithegicosia) Regiment","state":20,"icon":"āļø"},{"i":4,"a":1560,"cell":7243,"x":1634.1,"y":816.18,"bx":1634.1,"by":816.18,"u":{"archers":640,"cavalry":197,"artillery":19,"infantry":704},"n":0,"name":"5th (Launingen) Regiment","state":20,"icon":"š"},{"i":5,"a":11,"cell":7243,"x":1620.98,"y":818.28,"bx":1620.98,"by":818.28,"u":{"fleet":11},"n":1,"name":"1st Fleet","state":20,"icon":"š"}]}]
+[0,{"cell":4589,"x":216.85,"y":585.12,"i":1,"state":1,"culture":2,"name":"Longong","feature":23,"capital":1,"population":15.067,"type":"River","coa":{"t1":"bendy-or-azure","division":{"division":"perPale","t":"azure","line":"straight"},"ordinaries":[{"ordinary":"bordure","t":"vert"}],"shield":"heater"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"capital"},{"cell":3471,"x":159.65,"y":496.25,"i":2,"state":2,"culture":10,"name":"Krar","feature":23,"capital":1,"port":1,"population":30.415,"type":"Naval","coa":{"t1":"argent","charges":[{"charge":"lymphad","t":"azure","p":"e","t2":"azure","t3":"purpure","size":1.5}],"shield":"heater"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":1,"group":"capital"},{"cell":3139,"x":512.92,"y":461.16,"i":3,"state":3,"culture":5,"name":"Tetzintza","feature":23,"capital":1,"population":6.728,"type":"Lake","coa":{"t1":"purpure","ordinaries":[{"ordinary":"cross","t":"or","line":"straight"}],"charges":[{"charge":"crossSantiago","t":"gules","p":"beh","size":0.3}],"shield":"wedged"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"capital"},{"cell":6009,"x":1377.87,"y":700.35,"i":4,"state":4,"culture":15,"name":"Boreos","feature":26,"capital":1,"port":1,"population":7.957,"type":"Naval","coa":{"t1":"purpure","ordinaries":[{"ordinary":"chevron","t":"or"}],"charges":[{"charge":"mullet","t":"sable","p":"h","size":0.5}],"shield":"gonfalon"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"capital"},{"cell":7229,"x":1493.31,"y":822.11,"i":5,"state":5,"culture":8,"name":"Ripel","feature":26,"capital":1,"port":42,"population":24.721,"type":"Naval","coa":{"t1":"argent","charges":[{"charge":"crossTemplar","t":"sable","p":"jlh","size":0.7}],"shield":"heater"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"capital"},{"cell":4474,"x":657.73,"y":571.46,"i":6,"state":6,"culture":5,"name":"Coatlacan","feature":23,"capital":1,"port":1,"population":16.71,"type":"Naval","coa":{"t1":"vert","charges":[{"charge":"harp","t":"argent","p":"e","t2":"or","size":1.5}],"shield":"wedged"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"capital"},{"cell":6767,"x":1564.9,"y":775.73,"i":7,"state":7,"culture":8,"name":"Schopfloch","feature":26,"capital":1,"port":39,"population":18.256,"type":"Naval","coa":{"t1":"azure","charges":[{"charge":"sword","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"heater"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"capital"},{"cell":4854,"x":1388.78,"y":591.69,"i":8,"state":8,"culture":11,"name":"Hokshing","feature":26,"capital":1,"port":1,"population":5.046,"type":"Naval","coa":{"t1":"gemelles-or-azure-smaller","ordinaries":[{"ordinary":"pall","t":"purpure"}],"charges":[{"charge":"trianglePierced","t":"argent","p":"jleh","size":0.5}],"shield":"gonfalon"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"capital"},{"cell":6198,"x":502.68,"y":722.87,"i":9,"state":9,"culture":4,"name":"Luvarau","feature":23,"capital":1,"port":1,"population":2.746,"type":"Naval","coa":{"t1":"chainy-or-purpure","charges":[{"charge":"talbotSejant","t":"vert","p":"e","t2":"vert","t3":"sable","size":1.5}],"shield":"renaissance"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"capital"},{"cell":6497,"x":1303.28,"y":744.81,"i":10,"state":10,"culture":15,"name":"Siros","feature":26,"capital":1,"port":1,"population":24.969,"type":"Naval","coa":{"t1":"azure","charges":[{"charge":"dolphin","t":"or","p":"e","t2":"or","size":1.5}],"shield":"gonfalon"},"citadel":1,"plaza":1,"walls":1,"shanty":1,"temple":0,"group":"capital"},{"cell":6568,"x":559.7,"y":756.7,"i":11,"state":11,"culture":14,"name":"Juktos","feature":23,"capital":1,"port":1,"population":12.105,"type":"Naval","coa":{"t1":"gules","charges":[{"charge":"falcon","t":"or","p":"def","t2":"or","t3":"or","size":0.5}],"shield":"gonfalon"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"capital"},{"cell":167,"x":1005.29,"y":83.7,"i":12,"state":12,"culture":15,"name":"Lirasos","feature":2,"capital":1,"port":1,"population":2.885,"type":"Naval","coa":{"t1":"argent","division":{"division":"perCross","t":"counterPotent-or-gules","line":"straight"},"charges":[{"charge":"talbotPassant","t":"sable","p":"jo","t2":"sable","t3":"vert","size":0.7}],"shield":"gonfalon"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"capital"},{"cell":1231,"x":615.73,"y":235.98,"i":13,"state":13,"culture":12,"name":"Meroyri","feature":2,"capital":1,"port":1,"population":6.714,"type":"Naval","coa":{"t1":"bendySinister-or-purpure","charges":[{"charge":"trianglePierced","t":"gules","p":"e","size":1.5}],"shield":"oldFrench"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"capital"},{"cell":1917,"x":560.21,"y":310.66,"i":14,"state":14,"culture":12,"name":"Orarka","feature":2,"capital":1,"port":1,"population":18.393,"type":"Naval","coa":{"t1":"purpure","ordinaries":[{"ordinary":"orle","t":"or"}],"charges":[{"charge":"inescutcheon","t":"or","p":"jleh","size":0.5}],"shield":"oldFrench"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"capital"},{"cell":3220,"x":327.53,"y":468.2,"i":15,"state":15,"culture":12,"name":"Laupsvi","feature":23,"capital":1,"population":12.613,"type":"Lake","coa":{"t1":"purpure","charges":[{"charge":"laurelWreath","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"oldFrench"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"capital"},{"cell":4118,"x":330.08,"y":533.26,"i":16,"state":16,"culture":16,"name":"Dorn","feature":23,"capital":1,"port":1,"population":10.88,"type":"Naval","coa":{"t1":"azure","division":{"division":"perFess","t":"or","line":"dancetty"},"charges":[{"charge":"plough","t":"argent","p":"k","t2":"argent","size":0.7},{"charge":"griffinRampant","t":"purpure","p":"n","size":0.7}],"shield":"spanish"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"capital"},{"cell":4921,"x":437.78,"y":601.55,"i":17,"state":17,"culture":16,"name":"Schal","feature":23,"capital":1,"population":2.751,"type":"River","coa":{"t1":"bendySinister-or-sable-small","division":{"division":"perBendSinister","t":"azure","line":"straight"},"shield":"spanish"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"capital"},{"cell":5518,"x":1315.85,"y":664.77,"i":18,"state":18,"culture":11,"name":"Tiungwu","feature":26,"capital":1,"port":1,"population":5.335,"type":"Naval","coa":{"t1":"argent","charges":[{"charge":"lymphad","t":"purpure","p":"e","t2":"purpure","t3":"gules","size":1.5}],"shield":"gonfalon"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"capital"},{"cell":5842,"x":571.77,"y":689.02,"i":19,"state":19,"culture":14,"name":"Throme","feature":23,"capital":1,"port":1,"population":2.602,"type":"Naval","coa":{"t1":"gules","charges":[{"charge":"anchor","t":"argent","p":"beh","size":0.5}],"shield":"gonfalon"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"capital"},{"cell":7243,"x":1626.88,"y":814.11,"i":20,"state":20,"culture":8,"name":"Launingen","feature":26,"capital":1,"port":39,"population":26.827,"type":"Naval","coa":{"t1":"argent","charges":[{"charge":"dolphin","t":"gules","p":"kn","t2":"gules","size":0.7}],"shield":"heater"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"capital"},{"cell":4426,"x":199.18,"y":566.31,"i":21,"state":1,"culture":2,"name":"Yuengyaumun","feature":23,"capital":0,"population":8.066,"type":"River","coa":{"t1":"bendy-or-azure","division":{"division":"perChevronReversed","t":"sable","line":"straight"},"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6190,"x":433.02,"y":721.77,"i":22,"state":9,"culture":4,"name":"Rineiguro","feature":23,"capital":0,"population":6.745,"type":"River","coa":{"t1":"chainy-or-purpure","division":{"division":"perBendSinister","t":"gules","line":"straight"},"shield":"renaissance"},"citadel":1,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":6508,"x":1440.02,"y":746.55,"i":23,"state":4,"culture":8,"name":"Ehriedt","feature":26,"capital":0,"population":6.074,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"arrowsSheaf","t":"sable","p":"e","t2":"sable","t3":"sable","size":1.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6881,"x":1533.29,"y":781.84,"i":24,"state":7,"culture":8,"name":"Schorstad","feature":26,"capital":0,"population":5.44,"type":"Generic","coa":{"t1":"scaly-azure-argent","division":{"division":"perFess","t":"or","line":"straight"},"charges":[{"charge":"roundel","t":"gules","p":"ABCDEFGHIJKL","size":0.18}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3343,"x":296.35,"y":482.9,"i":25,"state":15,"culture":13,"name":"Sebareaquen","feature":23,"capital":0,"port":1,"population":1.422,"type":"Naval","coa":{"t1":"argent","division":{"division":"perPale","t":"purpure","line":"straight"},"shield":"swiss"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6061,"x":351.3,"y":711.67,"i":26,"state":16,"culture":16,"name":"Selberg","feature":23,"capital":0,"population":2.126,"type":"River","coa":{"t1":"azure","division":{"division":"perBendSinister","t":"or","line":"engrailed"},"charges":[{"charge":"pike","t":"argent","p":"j","t2":"argent","size":0.7},{"charge":"unicornRampant","t":"purpure","p":"o","size":0.7}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6634,"x":1500.85,"y":758.42,"i":27,"state":7,"culture":8,"name":"Eschb","feature":26,"capital":0,"population":0.993,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"hourglass","t":"azure","p":"e","t2":"azure","t3":"azure","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5541,"x":1555.47,"y":647.79,"i":28,"state":7,"culture":15,"name":"Esmos","feature":26,"capital":0,"population":4.625,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"bordure","t":"vert"}],"charges":[{"charge":"triangle","t":"argent","p":"ABCDEFGHIJKL","size":0.18}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4532,"x":1376.08,"y":566.74,"i":29,"state":8,"culture":11,"name":"Pakgong","feature":26,"capital":0,"port":1,"population":1.887,"type":"Naval","coa":{"t1":"argent","charges":[{"charge":"crescent","t":"gules","p":"abcdefgzi","size":0.3}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":6435,"x":432.15,"y":743.28,"i":30,"state":9,"culture":14,"name":"Gydon","feature":23,"capital":0,"population":5.403,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"bend","t":"or","line":"straight"}],"charges":[{"charge":"crossLatin","t":"vert","p":"e","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5066,"x":299.8,"y":611.02,"i":31,"state":16,"culture":3,"name":"Erfikaber","feature":23,"capital":0,"population":3.823,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"serpent","t":"azure","p":"beh","t2":"azure","size":0.5}],"shield":"fantasy3"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6768,"x":1572.19,"y":774.38,"i":32,"state":7,"culture":8,"name":"Schliter","feature":26,"capital":0,"population":5.664,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"lionRampant","t":"argent","p":"e","t2":"argent","t3":"or","size":1.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6348,"x":1113.88,"y":736.38,"i":33,"state":10,"culture":15,"name":"Rizephina","feature":37,"capital":0,"population":3.324,"type":"Generic","coa":{"t1":"azure","division":{"division":"perCross","t":"or","line":"straight"},"charges":[{"charge":"lozenge","t":"argent","p":"jlmo","divided":"counter","size":0.6}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3839,"x":537.21,"y":526.54,"i":34,"state":3,"culture":5,"name":"Tehuetla","feature":23,"capital":0,"port":1,"population":4.392,"type":"Naval","coa":{"t1":"or","division":{"division":"perChevronReversed","t":"azure","line":"straight"},"ordinaries":[{"ordinary":"pale","t":"gules","line":"wavy"}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6629,"x":1435.55,"y":757.35,"i":35,"state":4,"culture":8,"name":"Wehrbach","feature":26,"capital":0,"population":11.53,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"dove","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":3639,"x":186.42,"y":501.5,"i":36,"state":2,"culture":2,"name":"Duenchau","feature":23,"capital":0,"port":1,"population":7.786,"type":"Naval","coa":{"t1":"semy_of_mullet-or-gules","ordinaries":[{"ordinary":"bend","t":"purpure","line":"straight"}],"charges":[{"charge":"plaice","t":"argent","p":"e","t2":"argent","size":0.7}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4443,"x":396.89,"y":563.22,"i":37,"state":16,"culture":16,"name":"Schonigstal","feature":23,"capital":0,"population":1.294,"type":"Generic","coa":{"t1":"or","division":{"division":"perCross","t":"sable","line":"dovetailed"},"charges":[{"charge":"crossPattee","t":"gules","p":"j","size":0.6},{"charge":"snowflake","t":"argent","p":"l","size":0.6},{"charge":"laurelWreath","t":"argent","p":"m","size":0.6},{"charge":"crocodile","t":"sable","p":"o","size":0.6}],"shield":"spanish"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":6331,"x":610.74,"y":731.57,"i":38,"state":19,"culture":14,"name":"Thyreumnos","feature":23,"capital":0,"population":5.071,"type":"Generic","coa":{"t1":"vert","division":{"division":"perCross","t":"argent","line":"straight"},"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":5295,"x":1441.54,"y":629.31,"i":39,"state":8,"culture":15,"name":"Ricos","feature":26,"capital":0,"population":4.228,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"bell","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4264,"x":90.29,"y":551.91,"i":40,"state":1,"culture":2,"name":"Waiyeung","feature":23,"capital":0,"population":5.407,"type":"River","coa":{"t1":"vert","charges":[{"charge":"basilisk","t":"or","p":"jlh","t2":"or","t3":"argent","size":0.7}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4839,"x":1285.09,"y":588.1,"i":41,"state":18,"culture":11,"name":"Hoicheong","feature":26,"capital":0,"population":0.952,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"rose","t":"or","p":"beh","t2":"or","t3":"argent","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6066,"x":413.11,"y":713.28,"i":42,"state":9,"culture":3,"name":"Tosnestad","feature":23,"capital":0,"population":8.89,"type":"River","coa":{"t1":"gules","charges":[{"charge":"sabre","t":"or","p":"e","t2":"or","size":1.5}],"shield":"fantasy3"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5546,"x":1615.44,"y":655.44,"i":43,"state":20,"culture":15,"name":"Delphizipo","feature":26,"capital":0,"population":1.241,"type":"Generic","coa":{"t1":"vert","charges":[{"charge":"drakkar","t":"argent","p":"e","t2":"or","t3":"or","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6368,"x":1282.82,"y":737.38,"i":44,"state":10,"culture":15,"name":"Lacos","feature":26,"capital":0,"population":4.918,"type":"River","coa":{"t1":"sable","charges":[{"charge":"castle","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6580,"x":709.74,"y":755.73,"i":45,"state":19,"culture":14,"name":"Kimnospian","feature":23,"capital":0,"population":2.606,"type":"Lake","coa":{"t1":"argent","ordinaries":[{"ordinary":"saltire","t":"gules","line":"wavy"}],"charges":[{"charge":"rustre","t":"argent","p":"e","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4277,"x":241.98,"y":553.3,"i":46,"state":1,"culture":3,"name":"Bringdak","feature":23,"capital":0,"population":1.942,"type":"Generic","coa":{"t1":"argent","division":{"division":"perFess","t":"sable","line":"angled"},"charges":[{"charge":"fleurDeLis","t":"purpure","p":"k","size":0.7},{"charge":"hatchet","t":"or","p":"n","size":0.7}],"shield":"fantasy3"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5709,"x":387,"y":675.97,"i":47,"state":16,"culture":3,"name":"Aufarver","feature":23,"capital":0,"population":2.666,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"castle","t":"argent","p":"abc","t2":"argent","size":0.5}],"shield":"fantasy3"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6378,"x":1364.16,"y":738.84,"i":48,"state":4,"culture":15,"name":"Gorma","feature":26,"capital":0,"population":3.423,"type":"Generic","coa":{"t1":"purpure","division":{"division":"perChevron","t":"argent","line":"straight"},"charges":[{"charge":"pear","t":"or","p":"e","t2":"or","divided":"counter","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5845,"x":613.37,"y":685.61,"i":49,"state":19,"culture":14,"name":"Paphakouke","feature":23,"capital":0,"population":3.269,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"bordure","t":"argent"}],"charges":[{"charge":"spiral","t":"azure","p":"ABCDEFGHIJKL","size":0.18}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5819,"x":307.72,"y":692.04,"i":50,"state":1,"culture":2,"name":"Hoichfukwun","feature":23,"capital":0,"population":2.538,"type":"River","coa":{"t1":"bendy-or-azure","charges":[{"charge":"bullHeadCaboshed","t":"sable","p":"e","t2":"sable","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5586,"x":329.22,"y":667.03,"i":51,"state":16,"culture":3,"name":"Helsoyri","feature":23,"capital":0,"population":1.065,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"quarter","t":"sable"}],"charges":[{"charge":"roundel","t":"or","p":"j","size":0.5}],"shield":"fantasy3"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4754,"x":265.17,"y":593.93,"i":52,"state":1,"culture":3,"name":"Eyrivik","feature":23,"capital":0,"population":7.248,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"stagLodgedRegardant","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"fantasy3"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5157,"x":1429.31,"y":610.16,"i":53,"state":8,"culture":11,"name":"Fachau","feature":26,"capital":0,"population":7.213,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"lionRampant","t":"argent","p":"jlh","t2":"or","t3":"argent","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6261,"x":1418.31,"y":719.04,"i":54,"state":4,"culture":15,"name":"Aeleucia","feature":26,"capital":0,"population":5.061,"type":"Generic","coa":{"t1":"or","ordinaries":[{"ordinary":"pale","t":"purpure","line":"straight"}],"charges":[{"charge":"anvil","t":"argent","p":"e","size":0.7}],"shield":"gonfalon"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":6852,"x":1186.3,"y":788.5,"i":55,"state":10,"culture":15,"name":"Jukra","feature":26,"capital":0,"population":1.103,"type":"Generic","coa":{"t1":"purpure","division":{"division":"perPale","t":"or","line":"angled"},"charges":[{"charge":"lymphad","t":"argent","p":"e","t2":"argent","t3":"argent","divided":"counter","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7162,"x":533.54,"y":814.17,"i":56,"state":11,"culture":14,"name":"Smyrgan","feature":23,"capital":0,"population":1.855,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"gemelle","t":"or","line":"straight"}],"charges":[{"charge":"falcon","t":"or","p":"abc","t2":"or","t3":"or","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4380,"x":1443.3,"y":555.42,"i":57,"state":8,"culture":15,"name":"Diondos","feature":26,"capital":0,"port":1,"population":10.648,"type":"Naval","coa":{"t1":"argent","charges":[{"charge":"bridge2","t":"sable","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":6395,"x":1564.82,"y":736.61,"i":58,"state":7,"culture":8,"name":"Eisenschw","feature":26,"capital":0,"population":0.963,"type":"Generic","coa":{"t1":"vert","charges":[{"charge":"ouroboros","t":"argent","p":"def","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6630,"x":1449.01,"y":762.62,"i":59,"state":5,"culture":8,"name":"Ungen","feature":26,"capital":0,"population":7.867,"type":"Generic","coa":{"t1":"ermine-argent-sable","ordinaries":[{"ordinary":"quarter","t":"gules"}],"charges":[{"charge":"triangle","t":"azure","p":"e","size":1.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":1761,"x":1037.7,"y":293.55,"i":60,"state":12,"culture":15,"name":"Thytiontion","feature":2,"capital":0,"population":6.013,"type":"Generic","coa":{"t1":"semy_of_roundel-argent-purpure","ordinaries":[{"ordinary":"terrace","t":"gules","line":"straight"}],"charges":[{"charge":"ratRampant","t":"azure","p":"e","t2":"purpure","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3847,"x":598.64,"y":519.28,"i":61,"state":6,"culture":5,"name":"Tepehuetlan","feature":23,"capital":0,"population":1.509,"type":"Generic","coa":{"t1":"scaly-gules-or","division":{"division":"perCross","t":"argent","line":"straight"},"charges":[{"charge":"shears","t":"sable","p":"j","size":0.6},{"charge":"flangedMace","t":"gules","p":"l","size":0.6},{"charge":"wasp","t":"azure","p":"m","size":0.6},{"charge":"snake","t":"argent","p":"o","size":0.6}],"shield":"wedged"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6856,"x":1237.31,"y":781.44,"i":62,"state":10,"culture":15,"name":"Muron","feature":26,"capital":0,"population":1.627,"type":"Generic","coa":{"t1":"or","division":{"division":"perPale","t":"purpure","line":"straight"},"charges":[{"charge":"pillar","t":"gules","p":"e","divided":"counter","size":1.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6384,"x":1433.86,"y":734.28,"i":63,"state":4,"culture":8,"name":"Feldbad","feature":26,"capital":0,"population":4.648,"type":"Generic","coa":{"t1":"gules","division":{"division":"gyronny","t":"argent"},"ordinaries":[{"ordinary":"terrace","t":"or","line":"straight"}],"charges":[{"charge":"griffinRampant","t":"or","p":"def","t2":"or","t3":"or","size":0.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7154,"x":432.1,"y":818.69,"i":64,"state":9,"culture":14,"name":"Stympia","feature":23,"capital":0,"population":8.402,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"chevron","t":"gules"}],"charges":[{"charge":"pincers","t":"argent","p":"ach","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3810,"x":295.9,"y":517.6,"i":65,"state":15,"culture":12,"name":"Helmoen","feature":23,"capital":0,"population":0.955,"type":"Generic","coa":{"t1":"vert","charges":[{"charge":"sunInSplendour2","t":"or","p":"e","size":1.5}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6385,"x":1456.25,"y":729.66,"i":66,"state":4,"culture":8,"name":"Malsbachach","feature":26,"capital":0,"population":0.981,"type":"Generic","coa":{"t1":"vert","division":{"division":"perFess","t":"or","line":"straight"},"ordinaries":[{"ordinary":"chevronReversed","t":"argent"}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4905,"x":244.76,"y":603.46,"i":67,"state":1,"culture":2,"name":"Gongshan","feature":23,"capital":0,"population":1.662,"type":"River","coa":{"t1":"sable","ordinaries":[{"ordinary":"chevronReversed","t":"or"}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6314,"x":426.14,"y":734.67,"i":68,"state":9,"culture":14,"name":"Ptemanos","feature":23,"capital":0,"population":1.054,"type":"Generic","coa":{"t1":"sable","charges":[{"charge":"annulet","t":"or","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":3374,"x":514.18,"y":489.87,"i":69,"state":3,"culture":5,"name":"Metztanalco","feature":23,"capital":0,"port":1,"population":8.44,"type":"Naval","coa":{"t1":"argent","division":{"division":"perCross","t":"purpure","line":"engrailed"},"charges":[{"charge":"armEmbowedVambracedHoldingSword","t":"azure","p":"e","t2":"azure","t3":"vert","size":1.5}],"shield":"wedged"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7038,"x":397.85,"y":804.54,"i":70,"state":9,"culture":16,"name":"Schen","feature":23,"capital":0,"population":8.896,"type":"Generic","coa":{"t1":"vert","charges":[{"charge":"mulletFaceted","t":"argent","p":"e","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6439,"x":482.86,"y":749.79,"i":71,"state":9,"culture":14,"name":"Pinaros","feature":23,"capital":0,"population":4.575,"type":"Generic","coa":{"t1":"purpure","ordinaries":[{"ordinary":"pale","t":"argent","line":"straight"}],"charges":[{"charge":"triangle","t":"sable","p":"e","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4843,"x":1314.81,"y":593.02,"i":72,"state":18,"culture":11,"name":"Longtai","feature":26,"capital":0,"population":9.229,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"mascle","t":"purpure","p":"bdefh","size":0.4}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3007,"x":229.43,"y":452.26,"i":73,"state":15,"culture":13,"name":"Vegiorieto","feature":23,"capital":0,"port":1,"population":5.161,"type":"Naval","coa":{"t1":"azure","ordinaries":[{"ordinary":"pale","t":"or","line":"straight"}],"charges":[{"charge":"lozenge","t":"gules","p":"beh","size":0.5}],"shield":"swiss"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7056,"x":612.52,"y":806.3,"i":74,"state":11,"culture":14,"name":"Pseidara","feature":23,"capital":0,"population":3.682,"type":"Generic","coa":{"t1":"fusily-gules-argent","division":{"division":"perPale","t":"or","line":"straight"},"charges":[{"charge":"archer","t":"sable","p":"e","t2":"sable","t3":"sable","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6774,"x":1628.33,"y":765.38,"i":75,"state":20,"culture":8,"name":"Mullbachin","feature":26,"capital":0,"population":8.311,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"garb","t":"or","p":"def","t2":"or","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4559,"x":1550.78,"y":565.44,"i":76,"state":8,"culture":15,"name":"Nymphydonti","feature":26,"capital":0,"population":0.967,"type":"Generic","coa":{"t1":"sable","ordinaries":[{"ordinary":"gemelle","t":"argent","line":"dancetty"}],"charges":[{"charge":"annulet","t":"argent","p":"abc","size":0.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"fort"},{"cell":6349,"x":1115.2,"y":742.8,"i":77,"state":10,"culture":15,"name":"Strarathym","feature":37,"capital":0,"population":5.771,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"crossPatriarchal","t":"argent","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5176,"x":1632.78,"y":612.91,"i":78,"state":20,"culture":15,"name":"Athra","feature":26,"capital":0,"population":6.41,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"crossLatin","t":"sable","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5179,"x":1670.26,"y":618.26,"i":79,"state":20,"culture":15,"name":"Sidyma","feature":26,"capital":0,"population":2.892,"type":"Generic","coa":{"t1":"sable","charges":[{"charge":"buckle","t":"argent","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":2798,"x":233.69,"y":419.25,"i":80,"state":15,"culture":13,"name":"Dalium","feature":23,"capital":0,"population":4.397,"type":"Generic","coa":{"t1":"gules","division":{"division":"perSaltire","t":"argent"},"charges":[{"charge":"maces","t":"or","p":"abcdefgzi","t2":"or","divided":"counter","size":0.3}],"shield":"swiss"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5826,"x":386.7,"y":691.18,"i":81,"state":16,"culture":3,"name":"Vikkirave","feature":23,"capital":0,"population":6.565,"type":"Generic","coa":{"t1":"or","ordinaries":[{"ordinary":"bendlet","t":"gules","line":"straight"}],"charges":[{"charge":"serpent","t":"argent","p":"joe","t2":"argent","size":0.3}],"shield":"fantasy3"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6069,"x":444.51,"y":706.69,"i":82,"state":9,"culture":4,"name":"Diaquivori","feature":23,"capital":0,"population":4.752,"type":"River","coa":{"t1":"vert","ordinaries":[{"ordinary":"terrace","t":"or","line":"dancetty"}],"charges":[{"charge":"plough","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"renaissance"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6762,"x":1499.42,"y":768.68,"i":83,"state":7,"culture":8,"name":"Schapen","feature":26,"capital":0,"population":6.512,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"roundel2","t":"purpure","p":"jln","size":0.7}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5773,"x":1426.41,"y":678.68,"i":84,"state":4,"culture":15,"name":"Morgos","feature":26,"capital":0,"population":6.762,"type":"Generic","coa":{"t1":"or","division":{"division":"perChevronReversed","t":"sable","line":"straight"},"charges":[{"charge":"sword","t":"gules","p":"bdefh","t2":"gules","divided":"counter","size":0.4}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7109,"x":1457.3,"y":810.3,"i":85,"state":5,"culture":8,"name":"Wehrtenho","feature":26,"capital":0,"population":9.493,"type":"Generic","coa":{"t1":"argent","division":{"division":"perBendSinister","t":"pappellony2-gules-or-big","line":"straight"},"shield":"heater"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":5409,"x":1406.5,"y":646.82,"i":86,"state":8,"culture":17,"name":"Bang","feature":26,"capital":0,"port":1,"population":4.295,"type":"Naval","coa":{"t1":"bendy-or-azure-smaller","division":{"division":"perChevronReversed","t":"gules","line":"straight"},"ordinaries":[{"ordinary":"fess","t":"sable","line":"straight"}],"shield":"horsehead"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5034,"x":1608.71,"y":606.78,"i":87,"state":20,"culture":15,"name":"Apsaseron","feature":26,"capital":0,"population":1.153,"type":"Generic","coa":{"t1":"vert","ordinaries":[{"ordinary":"fessCotissed","t":"argent","line":"straight"}],"charges":[{"charge":"mullet10","t":"azure","p":"def","size":0.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7051,"x":558.07,"y":810.25,"i":88,"state":11,"culture":14,"name":"Histroreos","feature":23,"capital":0,"population":2.151,"type":"Generic","coa":{"t1":"gules","ordinaries":[{"ordinary":"pile","t":"or"}],"charges":[{"charge":"pegasus","t":"or","p":"ac","t2":"argent","t3":"or","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4875,"x":1572.34,"y":591.68,"i":89,"state":8,"culture":15,"name":"Thomegipat","feature":26,"capital":0,"population":2.239,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"gemelle","t":"argent","line":"straight"}],"charges":[{"charge":"arbalest","t":"argent","p":"abc","t2":"argent","t3":"argent","size":0.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6880,"x":1518.38,"y":778.71,"i":90,"state":7,"culture":8,"name":"Nordt","feature":26,"capital":0,"population":10.379,"type":"Generic","coa":{"t1":"or","division":{"division":"perCross","t":"masoned-argent-purpure","line":"straight"},"charges":[{"charge":"eagle","t":"azure","p":"jo","t2":"azure","t3":"gules","size":0.7}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":5964,"x":577.99,"y":704.29,"i":91,"state":19,"culture":14,"name":"Rhamna","feature":23,"capital":0,"population":1.407,"type":"Generic","coa":{"t1":"argent","division":{"division":"perPale","t":"azure","line":"dovetailedIndented"},"charges":[{"charge":"rustre","t":"gules","p":"p","size":0.7},{"charge":"trefle","t":"or","p":"q","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7119,"x":1535.86,"y":808.63,"i":92,"state":5,"culture":8,"name":"Briburg","feature":26,"capital":0,"population":6.484,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"bendSinister","t":"purpure","line":"urdy"}],"charges":[{"charge":"ramHeadErased","t":"argent","p":"lem","t2":"argent","t3":"argent","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":5429,"x":1594.94,"y":637.14,"i":93,"state":20,"culture":15,"name":"Kekus","feature":26,"capital":0,"population":5.214,"type":"Generic","coa":{"t1":"vert","division":{"division":"perPile","t":"argent","line":"straight"},"charges":[{"charge":"roundel","t":"or","p":"abc","divided":"counter","size":0.4}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5721,"x":595.82,"y":677.9,"i":94,"state":19,"culture":14,"name":"Donia","feature":23,"capital":0,"population":1.073,"type":"Generic","coa":{"t1":"vert","division":{"division":"perPile","t":"argent","line":"rayonne"},"charges":[{"charge":"sunInSplendour2","t":"or","p":"be","divided":"counter","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6612,"x":1242.84,"y":763.59,"i":95,"state":10,"culture":15,"name":"Thydondos","feature":26,"capital":0,"port":1,"population":13.429,"type":"Naval","coa":{"t1":"argent","charges":[{"charge":"mullet6","t":"vert","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":4588,"x":206.87,"y":575.59,"i":96,"state":1,"culture":2,"name":"Ching","feature":23,"capital":0,"population":13.61,"type":"River","coa":{"t1":"or","charges":[{"charge":"scythe","t":"gules","p":"abc","t2":"gules","size":0.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":3250,"x":552.7,"y":476.72,"i":97,"state":3,"culture":5,"name":"Coyucapacac","feature":23,"capital":0,"port":1,"population":13.188,"type":"Naval","coa":{"t1":"vert","charges":[{"charge":"pineCone","t":"argent","p":"e","size":1.5}],"shield":"wedged"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":5462,"x":260.84,"y":646.86,"i":98,"state":1,"culture":2,"name":"Machau","feature":23,"capital":0,"population":8.028,"type":"Generic","coa":{"t1":"or","division":{"division":"perFess","t":"azure","line":"straight"},"ordinaries":[{"ordinary":"pale","t":"vert","line":"straight"}],"charges":[{"charge":"apple","t":"or","p":"beh","t2":"or","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4215,"x":1405.44,"y":544.24,"i":99,"state":8,"culture":11,"name":"Hoichidong","feature":26,"capital":0,"population":4.073,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"trianglePierced","t":"azure","p":"kn","size":0.7}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7024,"x":232.81,"y":806.95,"i":100,"state":1,"culture":6,"name":"Chapotlan","feature":23,"capital":0,"population":3.232,"type":"Lake","coa":{"t1":"sable","charges":[{"charge":"crossedBones","t":"or","p":"e","size":1.5}],"shield":"round"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6631,"x":1459.85,"y":761.27,"i":101,"state":5,"culture":8,"name":"Ihringelsb","feature":26,"capital":0,"population":4.31,"type":"Generic","coa":{"t1":"gules","division":{"division":"perChevron","t":"argent","line":"dancetty"},"charges":[{"charge":"fusil","t":"or","p":"dfk","divided":"counter","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4328,"x":768.9,"y":563.6,"i":102,"state":19,"culture":5,"name":"Piaztlan","feature":2,"capital":0,"population":0.924,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"mascle","t":"gules","p":"abcpqh","size":0.5}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3005,"x":216.1,"y":454.1,"i":103,"state":15,"culture":13,"name":"Emedetesium","feature":23,"capital":0,"population":4.919,"type":"Hunting","coa":{"t1":"barry-argent-azure","division":{"division":"chevronny","t":"sable"},"ordinaries":[{"ordinary":"crossParted","t":"gules","line":"straight"}],"shield":"swiss"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4211,"x":1355.9,"y":546.59,"i":104,"state":8,"culture":11,"name":"Shing","feature":26,"capital":0,"population":1.975,"type":"Generic","coa":{"t1":"maily-argent-azure","division":{"division":"perPale","t":"chequy-or-gules","line":"straight"},"ordinaries":[{"ordinary":"pileInBendSinister","t":"sable"}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4376,"x":1391.94,"y":551.86,"i":105,"state":8,"culture":11,"name":"Luichai","feature":26,"capital":0,"population":5.03,"type":"Generic","coa":{"t1":"azure","division":{"division":"perPale","t":"or","line":"straight"},"charges":[{"charge":"crossPommy","t":"argent","p":"p","size":0.7},{"charge":"centaur","t":"gules","p":"q","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7043,"x":458.53,"y":810.82,"i":106,"state":9,"culture":14,"name":"Phiniagas","feature":23,"capital":0,"population":12.866,"type":"Generic","coa":{"t1":"purpure","ordinaries":[{"ordinary":"chief","t":"or","line":"dancetty"}],"charges":[{"charge":"palmTree","t":"vert","p":"abc","t2":"vert","t3":"vert","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":4650,"x":782.48,"y":577.94,"i":107,"state":19,"culture":5,"name":"Chocuicoto","feature":2,"capital":0,"population":1.883,"type":"Generic","coa":{"t1":"or","ordinaries":[{"ordinary":"pall","t":"purpure"}],"charges":[{"charge":"dragonPassant","t":"argent","p":"e","t2":"vert","t3":"argent","size":0.7}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3952,"x":186.43,"y":529.92,"i":108,"state":2,"culture":10,"name":"Kazzuz","feature":23,"capital":0,"population":14.422,"type":"River","coa":{"t1":"sable","division":{"division":"perFess","t":"or","line":"firTrees"},"charges":[{"charge":"crocodile","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":6625,"x":1392.34,"y":753.45,"i":109,"state":4,"culture":15,"name":"Scidros","feature":26,"capital":0,"population":1.184,"type":"Generic","coa":{"t1":"or","division":{"division":"perChevron","t":"sable","line":"straight"},"charges":[{"charge":"billet","t":"gules","p":"dfbh","divided":"counter","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4726,"x":1614.56,"y":575.64,"i":110,"state":20,"culture":15,"name":"Oriporea","feature":26,"capital":0,"population":7.95,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"scrollClosed","t":"azure","p":"e","t2":"azure","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5790,"x":1626.79,"y":676.61,"i":111,"state":20,"culture":15,"name":"Lefka","feature":26,"capital":0,"population":9.182,"type":"Generic","coa":{"t1":"masoned-argent-azure-small","ordinaries":[{"ordinary":"chevron","t":"gules"}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6441,"x":512.13,"y":745.02,"i":112,"state":9,"culture":4,"name":"Condinium","feature":23,"capital":0,"population":11.232,"type":"Generic","coa":{"t1":"chainy-or-purpure","charges":[{"charge":"mitre","t":"sable","p":"e","t2":"sable","t3":"sable","size":1.5}],"shield":"renaissance"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":6993,"x":1471.98,"y":790.69,"i":113,"state":5,"culture":8,"name":"Teinach","feature":26,"capital":0,"population":5.676,"type":"Generic","coa":{"t1":"argent","division":{"division":"perCross","t":"azure","line":"engrailed"},"charges":[{"charge":"laurelWreath2","t":"gules","p":"e","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5878,"x":1286.22,"y":683.48,"i":114,"state":18,"culture":11,"name":"Lokwun","feature":26,"capital":0,"population":8.897,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"lymphad","t":"purpure","p":"e","t2":"purpure","t3":"purpure","size":1.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":1044,"x":982.99,"y":210.35,"i":115,"state":12,"culture":15,"name":"Onchepi","feature":2,"capital":0,"population":7.187,"type":"Generic","coa":{"t1":"semy_of_roundel-argent-purpure","division":{"division":"perChevronReversed","t":"gules","line":"straight"},"charges":[{"charge":"lochaberAxe","t":"vert","p":"dfbh","t2":"vert","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5026,"x":1509.11,"y":596.22,"i":116,"state":8,"culture":15,"name":"Vathos","feature":26,"capital":0,"port":1,"population":9.338,"type":"Naval","coa":{"t1":"azure","ordinaries":[{"ordinary":"pall","t":"or"}],"charges":[{"charge":"caravel","t":"azure","p":"jleh","t2":"or","t3":"argent","size":0.5,"sinister":1}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4102,"x":174.78,"y":540.24,"i":117,"state":1,"culture":2,"name":"Duenchau","feature":23,"capital":0,"population":4.288,"type":"Generic","coa":{"t1":"sable","ordinaries":[{"ordinary":"pale","t":"argent","line":"engrailed"}],"charges":[{"charge":"crossBiparted","t":"sable","p":"beh","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6177,"x":283.95,"y":720.31,"i":118,"state":1,"culture":2,"name":"Gongshun","feature":23,"capital":0,"population":0.791,"type":"Generic","coa":{"t1":"or","ordinaries":[{"ordinary":"pale","t":"gules","line":"wavy"}],"charges":[{"charge":"shears","t":"gules","p":"y","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3383,"x":590.97,"y":480.98,"i":119,"state":3,"culture":5,"name":"Cholacan","feature":23,"capital":0,"population":2.048,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"goutte","t":"vert","p":"kn","size":0.7}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6011,"x":1386.39,"y":697.1,"i":120,"state":4,"culture":15,"name":"Pyrgyriapit","feature":26,"capital":0,"port":1,"population":11.273,"type":"Naval","coa":{"t1":"argent","charges":[{"charge":"chain","t":"sable","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":1,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":4557,"x":1525.12,"y":575.42,"i":121,"state":8,"culture":15,"name":"Cyroros","feature":26,"capital":0,"population":1.114,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"flangedMace","t":"purpure","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":1769,"x":1330.3,"y":296.3,"i":122,"state":8,"culture":15,"name":"Marga","feature":8,"capital":0,"population":5.811,"type":"Generic","coa":{"t1":"gules","ordinaries":[{"ordinary":"bendlet","t":"argent","line":"engrailed"}],"charges":[{"charge":"bell","t":"vert","p":"joe","t2":"or","size":0.3}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4953,"x":618.58,"y":605.01,"i":123,"state":6,"culture":5,"name":"Chituzac","feature":23,"capital":0,"population":1.07,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"fessCotissed","t":"sable","line":"straight"}],"charges":[{"charge":"fleurDeLis","t":"or","p":"def","size":0.5}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6315,"x":434.75,"y":734.06,"i":124,"state":9,"culture":14,"name":"Rhitha","feature":23,"capital":0,"population":1.109,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"heart","t":"argent","p":"beh","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3223,"x":352.4,"y":477.7,"i":125,"state":15,"culture":12,"name":"Fjerdur","feature":23,"capital":0,"population":5.739,"type":"Generic","coa":{"t1":"pappellony-or-gules-smaller","division":{"division":"perChevron","t":"purpure","line":"straight"},"ordinaries":[{"ordinary":"point","t":"azure"}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6153,"x":1623,"y":713.35,"i":126,"state":7,"culture":15,"name":"Thoporita","feature":26,"capital":0,"population":4.965,"type":"River","coa":{"t1":"or","charges":[{"charge":"wheatStalk","t":"gules","p":"e","t2":"gules","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6214,"x":669.54,"y":718.95,"i":127,"state":19,"culture":14,"name":"Skylgiris","feature":23,"capital":0,"population":7.483,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"wolfHeadErased","t":"gules","p":"e","t2":"gules","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6748,"x":1326.19,"y":768.54,"i":128,"state":10,"culture":15,"name":"Neleusis","feature":26,"capital":0,"population":3.815,"type":"Generic","coa":{"t1":"azure","division":{"division":"perPale","t":"argent","line":"straight"},"ordinaries":[{"ordinary":"point","t":"or","divided":"counter"}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":759,"x":1637.57,"y":174.47,"i":129,"state":8,"culture":15,"name":"Papialialy","feature":5,"capital":0,"population":0.97,"type":"Generic","coa":{"t1":"bendySinister-or-vert","division":{"division":"perBendSinister","t":"azure","line":"straight"},"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":6870,"x":1407.12,"y":785.33,"i":130,"state":4,"culture":7,"name":"Kabadskevecke","feature":26,"capital":0,"population":1.784,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"crossCalvary","t":"purpure","p":"abc","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4214,"x":1392.35,"y":544.84,"i":131,"state":8,"culture":11,"name":"Duenchau","feature":26,"capital":0,"population":4.605,"type":"Generic","coa":{"t1":"azure","division":{"division":"perPile","t":"argent","line":"straight"},"charges":[{"charge":"portcullis","t":"or","p":"e","t2":"or","divided":"counter","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6139,"x":1445.5,"y":714.05,"i":132,"state":4,"culture":15,"name":"Jukra","feature":26,"capital":0,"population":0.993,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"anvil","t":"gules","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":6166,"x":158.3,"y":728.8,"i":133,"state":1,"culture":2,"name":"Ching","feature":23,"capital":0,"population":4.347,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"spear","t":"azure","p":"e","t2":"azure","size":1.5,"reversed":1}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6521,"x":1595.97,"y":747.48,"i":134,"state":7,"culture":8,"name":"Rickengengen","feature":26,"capital":0,"population":4.859,"type":"River","coa":{"t1":"or","division":{"division":"perPile","t":"sable","line":"straight"},"charges":[{"charge":"plough","t":"azure","p":"abceh","t2":"azure","divided":"counter","size":0.4}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":2901,"x":204.3,"y":438.98,"i":135,"state":15,"culture":13,"name":"Brirorum","feature":23,"capital":0,"population":7.683,"type":"Generic","coa":{"t1":"or","division":{"division":"perBend","t":"gules","line":"potenty"},"charges":[{"charge":"eagle","t":"sable","p":"l","t2":"sable","t3":"purpure","size":0.7},{"charge":"tower","t":"argent","p":"m","size":0.7}],"shield":"swiss"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4108,"x":246.02,"y":540.03,"i":136,"state":1,"culture":3,"name":"Heldutar","feature":23,"capital":0,"population":2.836,"type":"Generic","coa":{"t1":"argent","division":{"division":"perCross","t":"sable","line":"embattledGrady"},"charges":[{"charge":"bridge","t":"azure","p":"e","size":1.5}],"shield":"fantasy3"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6144,"x":1508.86,"y":710.38,"i":137,"state":7,"culture":15,"name":"Mamiaion","feature":26,"capital":0,"population":7.423,"type":"River","coa":{"t1":"purpure","charges":[{"charge":"earOfWheat","t":"or","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":3002,"x":201.6,"y":451.7,"i":138,"state":15,"culture":13,"name":"Isarateva","feature":23,"capital":0,"population":0.986,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"castle","t":"purpure","p":"jln","t2":"gules","size":0.7}],"shield":"swiss"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5655,"x":1443.12,"y":657.64,"i":139,"state":4,"culture":15,"name":"Lindolymnos","feature":26,"capital":0,"population":5.055,"type":"Generic","coa":{"t1":"sable","division":{"division":"perPale","t":"argent","line":"wavy"},"charges":[{"charge":"sunInSplendour","t":"or","p":"p","size":0.7},{"charge":"griffinRampant","t":"vert","p":"q","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4427,"x":208.37,"y":566.93,"i":140,"state":1,"culture":2,"name":"Ching","feature":23,"capital":0,"population":7.872,"type":"Generic","coa":{"t1":"vert","division":{"division":"perCross","t":"argent","line":"potenty"},"charges":[{"charge":"rhinoceros","t":"or","p":"e","t2":"or","size":1.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6277,"x":1603.85,"y":718.33,"i":141,"state":7,"culture":15,"name":"Gourtyn","feature":26,"capital":0,"population":5.661,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"lanceWithBanner","t":"azure","p":"jlh","t2":"sable","t3":"sable","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5630,"x":1229.65,"y":665.55,"i":142,"state":18,"culture":11,"name":"Toishui","feature":26,"capital":0,"port":1,"population":9.848,"type":"Naval","coa":{"t1":"ermine-argent-sable","division":{"division":"perPale","t":"gules","line":"straight"},"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":5828,"x":410.06,"y":691.14,"i":143,"state":9,"culture":3,"name":"Snuba","feature":23,"capital":0,"population":1.708,"type":"Generic","coa":{"t1":"purpure","ordinaries":[{"ordinary":"cross","t":"or","line":"wavy"}],"charges":[{"charge":"rabbitSejant","t":"gules","p":"beh","t2":"gules","size":0.3}],"shield":"fantasy3"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5217,"x":438.58,"y":623.12,"i":144,"state":17,"culture":16,"name":"Griestetnau","feature":23,"capital":0,"population":9.557,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"cross","t":"or","line":"straight"}],"charges":[{"charge":"bridge","t":"argent","p":"acgi","size":0.5}],"shield":"spanish"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4434,"x":287.26,"y":563.51,"i":145,"state":16,"culture":16,"name":"Schutnaunau","feature":23,"capital":0,"population":6.465,"type":"Generic","coa":{"t1":"argent","division":{"division":"perFess","t":"sable","line":"nowy"},"charges":[{"charge":"crescent","t":"azure","p":"e","divided":"counter","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6622,"x":1356.87,"y":761.95,"i":146,"state":10,"culture":15,"name":"Eleuthos","feature":26,"capital":0,"population":9.627,"type":"Generic","coa":{"t1":"azure","division":{"division":"perPale","t":"argent","line":"straight"},"charges":[{"charge":"castle","t":"or","p":"p","t2":"or","size":0.7},{"charge":"crocodile","t":"vert","p":"q","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5902,"x":1507.97,"y":690.06,"i":147,"state":7,"culture":15,"name":"Chios","feature":26,"capital":0,"population":1.2,"type":"River","coa":{"t1":"vert","division":{"division":"perFess","t":"argent","line":"straight"},"charges":[{"charge":"earOfWheat","t":"or","p":"k","size":0.7},{"charge":"gauntlet","t":"sable","p":"n","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4888,"x":38.17,"y":600.99,"i":148,"state":1,"culture":2,"name":"Shektong","feature":23,"capital":0,"population":3.84,"type":"Generic","coa":{"t1":"vert","ordinaries":[{"ordinary":"chief","t":"argent","line":"potentyDexter"}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":1960,"x":1028.6,"y":330.09,"i":149,"state":12,"culture":15,"name":"Peira","feature":2,"capital":0,"port":1,"population":1.484,"type":"Naval","coa":{"t1":"gules","division":{"division":"perPile","t":"argent","line":"wavy"},"charges":[{"charge":"lochaberAxe","t":"or","p":"e","t2":"or","divided":"counter","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":5062,"x":253.62,"y":609.93,"i":150,"state":1,"culture":2,"name":"Fatshing","feature":23,"capital":0,"population":10.205,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"lionHeadCaboshed","t":"gules","p":"e","t2":"gules","size":1.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":5670,"x":1613.98,"y":664.72,"i":151,"state":20,"culture":15,"name":"Kamon","feature":26,"capital":0,"population":3.546,"type":"Generic","coa":{"t1":"gules","division":{"division":"perCross","t":"purpure","line":"wavy"},"charges":[{"charge":"hatchet","t":"argent","p":"jlmo","t2":"argent","divided":"counter","size":0.6}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6504,"x":1392.08,"y":747.36,"i":152,"state":4,"culture":15,"name":"Achargysos","feature":26,"capital":0,"population":1.837,"type":"Generic","coa":{"t1":"argent","division":{"division":"perCross","t":"purpure","line":"straight"},"charges":[{"charge":"cavalier","t":"gules","p":"j","t2":"gules","t3":"gules","size":0.6},{"charge":"lute","t":"argent","p":"l","size":0.6},{"charge":"snake","t":"argent","p":"m","size":0.6},{"charge":"crescent","t":"gules","p":"o","size":0.6}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6627,"x":1412.57,"y":761.2,"i":153,"state":4,"culture":8,"name":"Acher","feature":26,"capital":0,"population":6.888,"type":"River","coa":{"t1":"or","ordinaries":[{"ordinary":"chevron","t":"sable"}],"charges":[{"charge":"lochaberAxe","t":"or","p":"ach","t2":"or","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7205,"x":1275.1,"y":823.7,"i":154,"state":10,"culture":15,"name":"Heiasemi","feature":26,"capital":0,"population":1.314,"type":"Lake","coa":{"t1":"azure","charges":[{"charge":"cavalier","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6510,"x":1457.32,"y":746.53,"i":155,"state":7,"culture":8,"name":"Rheinhardt","feature":26,"capital":0,"population":9.419,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"cavalier","t":"or","p":"e","t2":"argent","t3":"or","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5951,"x":447.43,"y":695.29,"i":156,"state":9,"culture":4,"name":"Dimicum","feature":23,"capital":0,"population":10.482,"type":"Generic","coa":{"t1":"vert","ordinaries":[{"ordinary":"pileInBend","t":"or"}],"charges":[{"charge":"fleurDeLis","t":"purpure","p":"eo","size":0.5}],"shield":"renaissance"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":3108,"x":259.6,"y":470.1,"i":157,"state":15,"culture":13,"name":"Sielius","feature":23,"capital":0,"population":8.847,"type":"Hunting","coa":{"t1":"masoned-argent-sable","ordinaries":[{"ordinary":"pale","t":"purpure","line":"straight"}],"shield":"swiss"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3955,"x":220.38,"y":534.27,"i":158,"state":1,"culture":2,"name":"Kwaikaikai","feature":23,"capital":0,"population":4.13,"type":"Generic","coa":{"t1":"bendy-or-azure","division":{"division":"perBend","t":"sable","line":"straight"},"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4734,"x":31.35,"y":587.79,"i":159,"state":1,"culture":2,"name":"Gongshunfau","feature":23,"capital":0,"population":7.187,"type":"Generic","coa":{"t1":"argent","division":{"division":"perPale","t":"azure","line":"wavy"},"charges":[{"charge":"heart","t":"gules","p":"p","size":0.7},{"charge":"garb","t":"or","p":"q","size":0.7}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6044,"x":143.28,"y":718.81,"i":160,"state":1,"culture":2,"name":"Ngwaiyeung","feature":23,"capital":0,"port":34,"population":6.457,"type":"Naval","coa":{"t1":"fusily-argent-azure","charges":[{"charge":"wasp","t":"sable","p":"e","t2":"sable","t3":"gules","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5352,"x":361.32,"y":643.22,"i":161,"state":16,"culture":16,"name":"Forwolden","feature":23,"capital":0,"population":3.137,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"castle","t":"gules","p":"e","t2":"gules","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4730,"x":1670.55,"y":578.18,"i":162,"state":20,"culture":15,"name":"Aeleuthos","feature":26,"capital":0,"population":7.416,"type":"Generic","coa":{"t1":"vert","charges":[{"charge":"angel","t":"or","p":"e","t2":"or","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6808,"x":487.79,"y":778.06,"i":163,"state":11,"culture":14,"name":"Bytheloton","feature":23,"capital":0,"population":1.463,"type":"Generic","coa":{"t1":"gules","ordinaries":[{"ordinary":"chief","t":"argent","line":"straight"}],"charges":[{"charge":"crescent","t":"azure","p":"abc","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":6519,"x":1570.03,"y":743.29,"i":164,"state":7,"culture":8,"name":"Kapen","feature":26,"capital":0,"population":1.2,"type":"Generic","coa":{"t1":"or","division":{"division":"perFess","t":"vert","line":"straight"},"charges":[{"charge":"skull2","t":"purpure","p":"e","divided":"counter","size":1.5}],"shield":"heater"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5031,"x":1568.49,"y":608.01,"i":165,"state":8,"culture":15,"name":"Nymphos","feature":26,"capital":0,"population":6.918,"type":"Generic","coa":{"t1":"azure","division":{"division":"perPale","t":"or","line":"potentyDexter"},"charges":[{"charge":"archer","t":"argent","p":"ABCDEFGHIJKL","t2":"argent","t3":"argent","divided":"counter","size":0.18}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5776,"x":1465.76,"y":674.54,"i":166,"state":4,"culture":15,"name":"Rorearos","feature":26,"capital":0,"population":5.722,"type":"Generic","coa":{"t1":"or","ordinaries":[{"ordinary":"orle","t":"azure"}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5419,"x":1472.34,"y":643.88,"i":167,"state":4,"culture":15,"name":"Rhamenia","feature":26,"capital":0,"population":4.252,"type":"River","coa":{"t1":"purpure","ordinaries":[{"ordinary":"terrace","t":"or","line":"straight"}],"charges":[{"charge":"eagle","t":"or","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7090,"x":1257.07,"y":804.33,"i":168,"state":10,"culture":15,"name":"Histhenaico","feature":26,"capital":0,"population":1.85,"type":"Highland","coa":{"t1":"azure","charges":[{"charge":"anchor","t":"argent","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3947,"x":118.62,"y":523.64,"i":169,"state":1,"culture":2,"name":"Yeung","feature":23,"capital":0,"port":1,"population":8.94,"type":"Naval","coa":{"t1":"vert","charges":[{"charge":"parrot","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7136,"x":218.02,"y":818.06,"i":170,"state":1,"culture":6,"name":"Tinalco","feature":23,"capital":0,"population":1.069,"type":"Lake","coa":{"t1":"azure","charges":[{"charge":"bridge2","t":"argent","p":"jeo","size":0.5}],"shield":"round"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7097,"x":1340.59,"y":804.91,"i":171,"state":10,"culture":7,"name":"Tobeny","feature":26,"capital":0,"population":3.923,"type":"River","coa":{"t1":"argent","ordinaries":[{"ordinary":"bordure","t":"azure"}],"charges":[{"charge":"cancer","t":"argent","p":"ABCDEFGHIJKL","size":0.18}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4140,"x":517.57,"y":541.59,"i":172,"state":3,"culture":5,"name":"Telilcopa","feature":23,"capital":0,"population":1.022,"type":"Generic","coa":{"t1":"argent","division":{"division":"perCross","t":"azure","line":"dovetailedIndented"},"charges":[{"charge":"bridge","t":"vert","p":"e","size":1.5}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5893,"x":1397.7,"y":684.51,"i":173,"state":4,"culture":15,"name":"Ropebaidori","feature":26,"capital":0,"population":13.827,"type":"Generic","coa":{"t1":"or","ordinaries":[{"ordinary":"fessDoubleCotissed","t":"azure","line":"straight"}],"charges":[{"charge":"cancer","t":"sable","p":"jln","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":6569,"x":577.84,"y":756.04,"i":174,"state":11,"culture":14,"name":"Crolis","feature":23,"capital":0,"population":12.201,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"monk","t":"gules","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":4876,"x":1582.12,"y":587.96,"i":175,"state":8,"culture":15,"name":"Gourmagios","feature":26,"capital":0,"population":5.412,"type":"Generic","coa":{"t1":"vert","ordinaries":[{"ordinary":"chevron","t":"argent"}],"charges":[{"charge":"bowWithThreeArrows","t":"or","p":"e","t2":"or","t3":"or","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5354,"x":389.99,"y":636.33,"i":176,"state":16,"culture":16,"name":"Inztal","feature":23,"capital":0,"population":1.012,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"eagle","t":"azure","p":"jlh","t2":"azure","t3":"purpure","size":0.7}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":4099,"x":143.18,"y":542.33,"i":177,"state":1,"culture":2,"name":"Sanwangkok","feature":23,"capital":0,"population":3.073,"type":"River","coa":{"t1":"bendy-or-azure","ordinaries":[{"ordinary":"fessDoubleCotissed","t":"purpure","line":"straight"}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3047,"x":538.78,"y":448.14,"i":178,"state":3,"culture":5,"name":"Cayuautla","feature":23,"capital":0,"population":3.114,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"ramHeadErased","t":"azure","p":"e","t2":"sable","t3":"azure","size":1.5}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5412,"x":1418.83,"y":642.23,"i":179,"state":8,"culture":17,"name":"Kefinshi","feature":26,"capital":0,"population":3.729,"type":"Generic","coa":{"t1":"argent","division":{"division":"perFess","t":"sable","line":"straight"},"ordinaries":[{"ordinary":"cross","t":"gules","line":"straight","divided":"counter"}],"shield":"horsehead"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5423,"x":1520.94,"y":634.34,"i":180,"state":8,"culture":15,"name":"Eleusaidam","feature":26,"capital":0,"population":5.621,"type":"Generic","coa":{"t1":"honeycombed-argent-vert","charges":[{"charge":"dragonfly","t":"gules","p":"e","t2":"gules","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":4769,"x":445.71,"y":594.73,"i":181,"state":17,"culture":16,"name":"Tiberg","feature":23,"capital":0,"population":15.028,"type":"Generic","coa":{"t1":"fusily-argent-azure","division":{"division":"gyronny","t":"masoned-vert-or"},"ordinaries":[{"ordinary":"saltire","t":"sable","line":"straight"}],"shield":"spanish"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":6624,"x":1377.27,"y":759.69,"i":182,"state":4,"culture":15,"name":"Naucracos","feature":26,"capital":0,"population":5.918,"type":"River","coa":{"t1":"or","division":{"division":"perFess","t":"purpure","line":"straight"},"ordinaries":[{"ordinary":"cross","t":"azure","line":"straight"}],"charges":[{"charge":"plough","t":"argent","p":"behdf","t2":"argent","size":0.3}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5701,"x":296.29,"y":670.75,"i":183,"state":1,"culture":2,"name":"Fotanmei","feature":23,"capital":0,"population":2.511,"type":"River","coa":{"t1":"bendy-or-azure","division":{"division":"perCross","t":"sable","line":"straight"},"ordinaries":[{"ordinary":"pile","t":"azure"}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":2427,"x":330.04,"y":379.3,"i":184,"state":15,"culture":13,"name":"Lurumpolona","feature":19,"capital":0,"population":15.123,"type":"Generic","coa":{"t1":"vert","ordinaries":[{"ordinary":"pale","t":"or","line":"straight"}],"charges":[{"charge":"snake","t":"vert","p":"e","t2":"argent","size":0.7}],"shield":"swiss"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":5218,"x":434.7,"y":629.7,"i":185,"state":17,"culture":16,"name":"Fischten","feature":23,"capital":0,"population":4.877,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"grapeBunch2","t":"gules","p":"e","t2":"gules","t3":"vert","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6614,"x":1257.6,"y":766.4,"i":186,"state":10,"culture":15,"name":"Helcis","feature":26,"capital":0,"population":5.092,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"bendSinister","t":"or","line":"straight"}],"charges":[{"charge":"billet","t":"sable","p":"lem","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":2531,"x":437.66,"y":390.84,"i":187,"state":15,"culture":12,"name":"Snuba","feature":22,"capital":0,"population":4.508,"type":"Generic","coa":{"t1":"gules","division":{"division":"perChevronReversed","t":"argent","line":"arched"},"charges":[{"charge":"shield","t":"or","p":"dfh","t2":"or","divided":"counter","size":0.5}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5907,"x":1569.85,"y":689.48,"i":188,"state":7,"culture":15,"name":"Kala","feature":26,"capital":0,"population":1.805,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"bendlet","t":"argent","line":"urdy"}],"charges":[{"charge":"crossCercelee","t":"argent","p":"c","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5971,"x":664.12,"y":696.79,"i":189,"state":19,"culture":14,"name":"Rhampiaros","feature":23,"capital":0,"population":4.388,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"chief","t":"argent","line":"invecked"}],"charges":[{"charge":"lionHeadErased","t":"azure","p":"abc","t2":"azure","size":0.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4407,"x":1652.8,"y":550.75,"i":190,"state":20,"culture":15,"name":"Gorgos","feature":26,"capital":0,"population":1.083,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"pincers","t":"vert","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5949,"x":419.09,"y":698.32,"i":191,"state":9,"culture":3,"name":"Brufar","feature":23,"capital":0,"population":7.946,"type":"Generic","coa":{"t1":"purpure","division":{"division":"gyronny","t":"argent"},"charges":[{"charge":"cavalier","t":"or","p":"e","t2":"or","t3":"or","divided":"counter","size":1.5}],"shield":"fantasy3"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":3483,"x":255.25,"y":496.19,"i":192,"state":15,"culture":13,"name":"Paniscatugu","feature":23,"capital":0,"population":3.766,"type":"Generic","coa":{"t1":"gules","ordinaries":[{"ordinary":"pile","t":"or"}],"charges":[{"charge":"bell","t":"azure","p":"b","t2":"azure","size":0.5}],"shield":"swiss"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4312,"x":639.65,"y":555.07,"i":193,"state":6,"culture":5,"name":"Ahucapan","feature":23,"capital":0,"population":7.186,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"crossBiparted","t":"sable","p":"e","size":1.5}],"shield":"wedged"},"citadel":1,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5770,"x":1400.72,"y":671.69,"i":194,"state":4,"culture":15,"name":"Sidausai","feature":26,"capital":0,"population":1.124,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"bugleHorn","t":"gules","p":"jln","t2":"azure","size":0.7}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7087,"x":1220.88,"y":803.99,"i":195,"state":10,"culture":15,"name":"Phais","feature":26,"capital":0,"population":1.108,"type":"River","coa":{"t1":"sable","charges":[{"charge":"pike","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6644,"x":1575.9,"y":766.3,"i":196,"state":7,"culture":8,"name":"Sasberg","feature":26,"capital":0,"population":1.287,"type":"Generic","coa":{"t1":"or","division":{"division":"perChevron","t":"gules","line":"straight"},"charges":[{"charge":"annulet","t":"sable","p":"dfbh","divided":"counter","size":0.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6650,"x":1643.15,"y":755.93,"i":197,"state":20,"culture":8,"name":"Eisewald","feature":26,"capital":0,"population":5.04,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"pale","t":"gules","line":"angled"}],"charges":[{"charge":"arbalest","t":"sable","p":"e","t2":"purpure","t3":"sable","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6093,"x":672.22,"y":705.59,"i":198,"state":19,"culture":14,"name":"Metos","feature":23,"capital":0,"population":7.509,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"archer","t":"argent","p":"beh","t2":"argent","t3":"argent","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3045,"x":517.73,"y":445.93,"i":199,"state":3,"culture":5,"name":"Texcoaxac","feature":23,"capital":0,"population":1.254,"type":"Lake","coa":{"t1":"or","ordinaries":[{"ordinary":"chief","t":"azure","line":"straight"}],"charges":[{"charge":"cancer","t":"argent","p":"abc","size":0.5}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":4519,"x":1282.72,"y":562.09,"i":200,"state":18,"culture":11,"name":"Pingsha","feature":26,"capital":0,"population":5.702,"type":"Generic","coa":{"t1":"argent","division":{"division":"perBend","t":"gules","line":"wavy"},"charges":[{"charge":"crossCeltic","t":"sable","p":"lm","divided":"counter","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5551,"x":1673.31,"y":654.09,"i":201,"state":20,"culture":15,"name":"Nymphina","feature":26,"capital":0,"population":9.131,"type":"River","coa":{"t1":"purpure","charges":[{"charge":"cavalier","t":"argent","p":"e","t2":"or","t3":"argent","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7152,"x":414.35,"y":820.57,"i":202,"state":9,"culture":14,"name":"Pyrgos","feature":23,"capital":0,"population":3.692,"type":"River","coa":{"t1":"argent","ordinaries":[{"ordinary":"pale","t":"sable","line":"enclavy"}],"charges":[{"charge":"garb","t":"or","p":"beh","t2":"or","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6683,"x":460.66,"y":774.61,"i":203,"state":9,"culture":14,"name":"Thapiamai","feature":23,"capital":0,"population":0.82,"type":"Generic","coa":{"t1":"argent","division":{"division":"gyronny","t":"gules"},"charges":[{"charge":"bookClosed","t":"azure","p":"e","t2":"azure","t3":"azure","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6932,"x":554.23,"y":792.32,"i":204,"state":11,"culture":14,"name":"Pyrolissos","feature":23,"capital":0,"population":6.199,"type":"Generic","coa":{"t1":"purpure","ordinaries":[{"ordinary":"fess","t":"argent","line":"wavy"}],"charges":[{"charge":"tower","t":"vert","p":"def","t2":"vert","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":1987,"x":242.39,"y":340.75,"i":205,"state":15,"culture":13,"name":"Tauroconaco","feature":18,"capital":0,"port":1,"population":4.977,"type":"Naval","coa":{"t1":"gules","ordinaries":[{"ordinary":"fess","t":"or","line":"rayonne"}],"charges":[{"charge":"angel","t":"gules","p":"def","t2":"gules","size":0.5}],"shield":"swiss"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6091,"x":648.74,"y":705.3,"i":206,"state":19,"culture":14,"name":"Chalolis","feature":23,"capital":0,"population":7.227,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"fusil","t":"purpure","p":"abc","size":0.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5467,"x":320.91,"y":652.25,"i":207,"state":16,"culture":3,"name":"Ogsvivopa","feature":23,"capital":0,"population":8.509,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"bend","t":"argent","line":"arched"}],"charges":[{"charge":"mulletPierced","t":"azure","p":"jo","size":0.7}],"shield":"fantasy3"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":2443,"x":466.69,"y":381.38,"i":208,"state":3,"culture":12,"name":"Slehamnnes","feature":2,"capital":0,"port":1,"population":8.419,"type":"Naval","coa":{"t1":"argent","charges":[{"charge":"anchor","t":"purpure","p":"e","size":1.5}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3217,"x":293.83,"y":479.31,"i":209,"state":15,"culture":13,"name":"Bortistella","feature":23,"capital":0,"port":1,"population":1.487,"type":"Naval","coa":{"t1":"purpure","ordinaries":[{"ordinary":"label","t":"argent"}],"charges":[{"charge":"basilisk","t":"or","p":"eh","t2":"or","t3":"or","size":0.7}],"shield":"swiss"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":1958,"x":1012.27,"y":320.42,"i":210,"state":12,"culture":15,"name":"Thytos","feature":2,"capital":0,"population":1.682,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"chief","t":"gules","line":"dentilly"}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4606,"x":426.44,"y":574.66,"i":211,"state":17,"culture":16,"name":"Wutach","feature":23,"capital":0,"population":14.364,"type":"Generic","coa":{"t1":"or","division":{"division":"perChevron","t":"gules","line":"archedReversed"},"shield":"spanish"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":5058,"x":213.11,"y":616.67,"i":212,"state":1,"culture":2,"name":"Wanshan","feature":23,"capital":0,"population":0.854,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"palace","t":"or","p":"e","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5288,"x":1362.48,"y":625.95,"i":213,"state":8,"culture":11,"name":"Longwun","feature":26,"capital":0,"port":1,"population":2.15,"type":"Naval","coa":{"t1":"sable","charges":[{"charge":"helmetCorinthian","t":"argent","p":"e","t2":"or","t3":"argent","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4471,"x":623.29,"y":566.22,"i":214,"state":6,"culture":5,"name":"Yetahuenacal","feature":23,"capital":0,"population":10.442,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"gauntlet","t":"or","p":"jln","size":0.7}],"shield":"wedged"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":5663,"x":1533.78,"y":662.63,"i":215,"state":7,"culture":15,"name":"Cythympia","feature":26,"capital":0,"population":6.005,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"pall","t":"argent"}],"charges":[{"charge":"arbalest","t":"sable","p":"jleh","t2":"argent","t3":"or","size":0.5,"reversed":1}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6680,"x":422.97,"y":764.83,"i":216,"state":9,"culture":14,"name":"Methos","feature":23,"capital":0,"population":2.252,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"pallReversed","t":"sable"}],"charges":[{"charge":"bookClosed","t":"argent","p":"bemo","t2":"vert","t3":"argent","size":0.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3254,"x":589.44,"y":474.87,"i":217,"state":3,"culture":5,"name":"Ticohetlatla","feature":23,"capital":0,"population":0.813,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"bell","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6357,"x":1180.27,"y":729.03,"i":218,"state":10,"culture":15,"name":"Sparnenai","feature":35,"capital":0,"population":9.678,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"key","t":"or","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":3145,"x":583.14,"y":462.46,"i":219,"state":3,"culture":5,"name":"Tlalcolotlan","feature":23,"capital":0,"population":1.301,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"goutte","t":"sable","p":"def","size":0.5}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3788,"x":104.21,"y":521.75,"i":220,"state":1,"culture":2,"name":"Ching","feature":23,"capital":0,"port":1,"population":1.216,"type":"Naval","coa":{"t1":"gules","charges":[{"charge":"lozengeFaceted","t":"or","p":"abcpqh","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4271,"x":169.48,"y":550.92,"i":221,"state":1,"culture":2,"name":"Siumun","feature":23,"capital":0,"population":7.502,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"escallop","t":"sable","p":"e","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":5408,"x":1386.42,"y":634.8,"i":222,"state":8,"culture":11,"name":"Chiuenling","feature":26,"capital":0,"population":10.927,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"crossGamma","t":"gules","p":"abc","size":0.5}],"shield":"gonfalon"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":4093,"x":63.79,"y":548.14,"i":223,"state":1,"culture":2,"name":"Longlotan","feature":23,"capital":0,"population":2.645,"type":"River","coa":{"t1":"gules","division":{"division":"perCross","t":"or","line":"engrailed"},"charges":[{"charge":"boarHeadErased","t":"argent","p":"jlmo","t2":"argent","t3":"argent","divided":"counter","size":0.6}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5212,"x":371.17,"y":628.87,"i":224,"state":16,"culture":16,"name":"Penin","feature":23,"capital":0,"population":0.957,"type":"River","coa":{"t1":"or","division":{"division":"perBend","t":"purpure","line":"rayonne"},"charges":[{"charge":"crossBurgundy","t":"gules","p":"l","size":0.7},{"charge":"shipWheel","t":"argent","p":"m","size":0.7}],"shield":"spanish"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"fort"},{"cell":6581,"x":718.6,"y":756.5,"i":225,"state":19,"culture":14,"name":"Temna","feature":23,"capital":0,"population":7.05,"type":"Lake","coa":{"t1":"purpure","charges":[{"charge":"attire","t":"argent","p":"kn","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4870,"x":1524.21,"y":585.87,"i":226,"state":8,"culture":15,"name":"Lalion","feature":26,"capital":0,"population":7.55,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"key","t":"or","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6015,"x":1432.67,"y":701.89,"i":227,"state":4,"culture":15,"name":"Magra","feature":26,"capital":0,"population":4.135,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"anvil","t":"argent","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6753,"x":1396.31,"y":772.21,"i":228,"state":4,"culture":7,"name":"Rapabamelek","feature":26,"capital":0,"population":2.08,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"pineTree","t":"sable","p":"abcpqh","t2":"sable","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4104,"x":195.25,"y":541.34,"i":229,"state":1,"culture":2,"name":"Hokshan","feature":23,"capital":0,"population":7.195,"type":"River","coa":{"t1":"bendy-or-azure","division":{"division":"perPale","t":"gules","line":"straight"},"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7058,"x":638.03,"y":805.32,"i":230,"state":19,"culture":14,"name":"Peleron","feature":23,"capital":0,"population":6.068,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"chief","t":"gules","line":"wavy"}],"charges":[{"charge":"mitre","t":"argent","p":"abc","t2":"argent","t3":"argent","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5652,"x":1423.74,"y":666.39,"i":231,"state":4,"culture":15,"name":"Amphacatos","feature":26,"capital":0,"population":1.299,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"scrollClosed","t":"sable","p":"e","t2":"sable","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5804,"x":126.25,"y":680.27,"i":232,"state":1,"culture":2,"name":"Lamtin","feature":23,"capital":0,"population":8.701,"type":"River","coa":{"t1":"fretty-gules-argent-small","division":{"division":"perCross","t":"ermine-or-sable","line":"straight"},"ordinaries":[{"ordinary":"bordure","t":"purpure"}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3196,"x":1612.58,"y":464.17,"i":233,"state":8,"culture":15,"name":"Stympsos","feature":21,"capital":0,"port":1,"population":1.257,"type":"Naval","coa":{"t1":"gules","charges":[{"charge":"badgerStatant","t":"or","p":"e","t2":"or","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4436,"x":320.06,"y":566.61,"i":234,"state":16,"culture":16,"name":"Witter","feature":23,"capital":0,"population":2.834,"type":"Generic","coa":{"t1":"argent","division":{"division":"perBend","t":"azure","line":"potentySinister"},"charges":[{"charge":"portcullis","t":"sable","p":"lm","t2":"sable","divided":"counter","size":0.7}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":6451,"x":573.75,"y":744.18,"i":235,"state":11,"culture":14,"name":"Karas","feature":23,"capital":0,"population":6.593,"type":"Generic","coa":{"t1":"or","ordinaries":[{"ordinary":"quarter","t":"gules"}],"charges":[{"charge":"hourglass","t":"argent","p":"j","t2":"argent","t3":"argent","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6358,"x":1179.7,"y":736.1,"i":236,"state":10,"culture":15,"name":"Esmos","feature":35,"capital":0,"population":2.331,"type":"Generic","coa":{"t1":"gules","division":{"division":"perChevronReversed","t":"or","line":"seaWaves"},"charges":[{"charge":"armEmbowedHoldingSabre","t":"argent","p":"mok","t2":"argent","t3":"argent","divided":"counter","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4882,"x":1651.1,"y":596.1,"i":237,"state":20,"culture":15,"name":"Chiossa","feature":26,"capital":0,"population":0.855,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"crossFormee","t":"gules","p":"jln","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":2754,"x":749.5,"y":417.3,"i":238,"state":6,"culture":5,"name":"Chacan","feature":2,"capital":0,"population":5.988,"type":"Generic","coa":{"t1":"azure","division":{"division":"perBend","t":"argent","line":"straight"},"charges":[{"charge":"anvil","t":"or","p":"l","size":0.7},{"charge":"raven","t":"sable","p":"m","size":0.7}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6180,"x":315.55,"y":726.7,"i":239,"state":16,"culture":16,"name":"Steiter","feature":23,"capital":0,"population":3.721,"type":"Generic","coa":{"t1":"argent","division":{"division":"perCross","t":"azure","line":"dovetailed"},"charges":[{"charge":"mulletFaceted","t":"vert","p":"j","size":0.6},{"charge":"lamb","t":"or","p":"l","size":0.6},{"charge":"boarRampant","t":"argent","p":"m","size":0.6,"sinister":1},{"charge":"cossack","t":"sable","p":"o","size":0.6}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4707,"x":1434.31,"y":578.53,"i":240,"state":8,"culture":15,"name":"Onchesia","feature":26,"capital":0,"population":0.933,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"ratRampant","t":"azure","p":"abcpqh","t2":"gules","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4055,"x":1410.34,"y":529.51,"i":241,"state":8,"culture":11,"name":"Yatei","feature":26,"capital":0,"population":1.637,"type":"Generic","coa":{"t1":"ermine-azure-argent","division":{"division":"perCross","t":"or","line":"straight"},"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":6520,"x":1581.35,"y":744.87,"i":242,"state":7,"culture":8,"name":"Acher","feature":26,"capital":0,"population":3.147,"type":"Generic","coa":{"t1":"barry-argent-gules","ordinaries":[{"ordinary":"point","t":"vert"}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4292,"x":421.18,"y":548.72,"i":243,"state":17,"culture":16,"name":"Wiebengen","feature":23,"capital":0,"port":1,"population":12.047,"type":"Naval","coa":{"t1":"scaly-or-sable","division":{"division":"perBendSinister","t":"azure","line":"straight"},"charges":[{"charge":"escallop","t":"gules","p":"j","size":0.7},{"charge":"greyhoundSejant","t":"argent","p":"o","size":0.7}],"shield":"spanish"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":5547,"x":1633.66,"y":651.4,"i":244,"state":20,"culture":15,"name":"Koulaicear","feature":26,"capital":0,"population":3.305,"type":"River","coa":{"t1":"argent","charges":[{"charge":"boarHeadErased","t":"gules","p":"e","t2":"sable","t3":"gules","size":1.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6304,"x":304.19,"y":738.58,"i":245,"state":16,"culture":16,"name":"Weiltach","feature":23,"capital":0,"population":7.305,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"shears","t":"or","p":"jln","size":0.7}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6305,"x":315.61,"y":738.51,"i":246,"state":16,"culture":16,"name":"Wuchseier","feature":23,"capital":0,"population":0.976,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"lute","t":"vert","p":"e","t2":"vert","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3513,"x":442.77,"y":500.58,"i":247,"state":15,"culture":16,"name":"Frienautach","feature":23,"capital":0,"population":8.943,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"roundel2","t":"azure","p":"jeo","size":0.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6930,"x":528.59,"y":790.49,"i":248,"state":11,"culture":14,"name":"Nauros","feature":23,"capital":0,"population":1.187,"type":"Generic","coa":{"t1":"barry-or-purpure","ordinaries":[{"ordinary":"saltireParted","t":"azure","line":"straight"}],"charges":[{"charge":"ramHeadErased","t":"argent","p":"e","t2":"argent","t3":"sable","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6509,"x":1446.82,"y":749.99,"i":249,"state":7,"culture":8,"name":"Dunbachen","feature":26,"capital":0,"population":3.907,"type":"Generic","coa":{"t1":"or","ordinaries":[{"ordinary":"fessDoubleCotissed","t":"azure","line":"straight"}],"charges":[{"charge":"crossPattee","t":"or","p":"def","size":0.4}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5912,"x":1626.67,"y":689.42,"i":250,"state":20,"culture":15,"name":"Thosia","feature":26,"capital":0,"population":11.657,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"horseSalient","t":"azure","p":"e","t2":"azure","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":6676,"x":370.85,"y":767.46,"i":251,"state":9,"culture":16,"name":"Schliters","feature":23,"capital":0,"population":3.904,"type":"River","coa":{"t1":"azure","ordinaries":[{"ordinary":"pale","t":"argent","line":"straight"}],"charges":[{"charge":"crossHummetty","t":"purpure","p":"beh","size":0.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":2943,"x":487.94,"y":438.72,"i":252,"state":3,"culture":5,"name":"Metztac","feature":23,"capital":0,"population":0.864,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"scalesHanging","t":"purpure","p":"jlh","size":0.7}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4592,"x":253.53,"y":583.14,"i":253,"state":1,"culture":2,"name":"Longlo","feature":23,"capital":0,"population":2.736,"type":"Generic","coa":{"t1":"argent","division":{"division":"perPale","t":"gules","line":"straight"},"ordinaries":[{"ordinary":"pale","t":"vert","line":"straight","divided":"counter"}],"shield":"heater"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7040,"x":429.16,"y":811.25,"i":254,"state":9,"culture":14,"name":"Stympsos","feature":23,"capital":0,"population":4.832,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"sagittarius","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6913,"x":324.71,"y":798.34,"i":255,"state":16,"culture":16,"name":"Baueschingen","feature":23,"capital":0,"population":0.942,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"lizard","t":"or","p":"e","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5151,"x":1368,"y":617.9,"i":256,"state":8,"culture":11,"name":"Tsangloning","feature":26,"capital":0,"population":12.801,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"crossMaltese","t":"argent","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":6063,"x":374.92,"y":709.75,"i":257,"state":16,"culture":3,"name":"Djutarfug","feature":23,"capital":0,"population":13.912,"type":"River","coa":{"t1":"or","charges":[{"charge":"lozenge","t":"gules","p":"e","size":1.5}],"shield":"fantasy3"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":3853,"x":646.42,"y":521.73,"i":258,"state":6,"culture":5,"name":"Otlahuahuatla","feature":23,"capital":0,"port":1,"population":1.883,"type":"Naval","coa":{"t1":"or","charges":[{"charge":"hand","t":"purpure","p":"e","size":1.5}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6574,"x":638.87,"y":753.15,"i":259,"state":19,"culture":14,"name":"Pantion","feature":23,"capital":0,"population":2.281,"type":"Generic","coa":{"t1":"azure","division":{"division":"perFess","t":"or","line":"straight"},"charges":[{"charge":"grapeBunch","t":"argent","p":"k","t2":"argent","t3":"argent","size":0.7},{"charge":"mullet10","t":"gules","p":"n","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6276,"x":1599.18,"y":720.34,"i":260,"state":7,"culture":8,"name":"Buhen","feature":26,"capital":0,"population":7.532,"type":"Generic","coa":{"t1":"lozengy-argent-sable","charges":[{"charge":"ratRampant","t":"azure","p":"e","t2":"gules","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6891,"x":1611.86,"y":782.29,"i":261,"state":20,"culture":8,"name":"Schwenaufen","feature":26,"capital":0,"port":39,"population":5.766,"type":"Naval","coa":{"t1":"argent","division":{"division":"perBendSinister","t":"gules","line":"straight"},"charges":[{"charge":"lymphad","t":"sable","p":"jo","t2":"sable","t3":"sable","divided":"counter","size":0.7}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4157,"x":630.26,"y":544.73,"i":262,"state":6,"culture":5,"name":"Cucalcoca","feature":23,"capital":0,"population":1.175,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"chevron","t":"argent"}],"charges":[{"charge":"lochaberAxe","t":"azure","p":"ach","t2":"azure","size":0.5}],"shield":"wedged"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6636,"x":1527.34,"y":755.21,"i":263,"state":7,"culture":8,"name":"Schonbach","feature":26,"capital":0,"population":1.127,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"lanceWithBanner","t":"purpure","p":"e","t2":"purpure","t3":"vert","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4378,"x":1419.98,"y":560.1,"i":264,"state":8,"culture":11,"name":"Tsimshun","feature":26,"capital":0,"population":2.737,"type":"Generic","coa":{"t1":"semy_of_lozengeFaceted-sable-argent","division":{"division":"perCross","t":"or","line":"straight"},"ordinaries":[{"ordinary":"pallReversed","t":"azure"}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4003,"x":631.49,"y":533.06,"i":265,"state":6,"culture":5,"name":"Anitzizamat","feature":23,"capital":0,"population":10.48,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"cross","t":"argent","line":"straight"}],"charges":[{"charge":"crossHummetty","t":"azure","p":"beh","size":0.3}],"shield":"wedged"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":6875,"x":1458.04,"y":778.12,"i":266,"state":5,"culture":8,"name":"Dachsbach","feature":26,"capital":0,"population":2.445,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"mullet8","t":"argent","p":"e","size":1.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6067,"x":424.57,"y":714.52,"i":267,"state":9,"culture":4,"name":"Dusiga","feature":23,"capital":0,"population":3.259,"type":"River","coa":{"t1":"or","ordinaries":[{"ordinary":"bar","t":"gules","line":"straight"}],"charges":[{"charge":"talbotSejant","t":"or","p":"def","t2":"or","t3":"azure","size":0.3}],"shield":"renaissance"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6931,"x":539.03,"y":792.39,"i":268,"state":11,"culture":14,"name":"Lampsos","feature":23,"capital":0,"population":3.705,"type":"Generic","coa":{"t1":"vert","charges":[{"charge":"falcon","t":"or","p":"e","t2":"or","t3":"or","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4609,"x":462.57,"y":578.52,"i":269,"state":17,"culture":16,"name":"Ebrongengen","feature":23,"capital":0,"population":2.236,"type":"Generic","coa":{"t1":"sable","ordinaries":[{"ordinary":"pale","t":"or","line":"nebuly"}],"charges":[{"charge":"roundel2","t":"gules","p":"e","size":0.7}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5579,"x":249.95,"y":661.79,"i":270,"state":1,"culture":2,"name":"Tinsha","feature":23,"capital":0,"population":1.67,"type":"Generic","coa":{"t1":"bendy-or-azure","ordinaries":[{"ordinary":"fessDoubleCotissed","t":"gules","line":"straight"}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":2578,"x":1023.62,"y":387.16,"i":271,"state":8,"culture":15,"name":"Skylo","feature":2,"capital":0,"port":1,"population":9.648,"type":"Naval","coa":{"t1":"sable","charges":[{"charge":"eagleTwoHeads","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":1045,"x":1000.01,"y":212.48,"i":272,"state":12,"culture":15,"name":"Hinon","feature":2,"capital":0,"population":9.648,"type":"Generic","coa":{"t1":"semy_of_roundel-argent-purpure","charges":[{"charge":"earOfWheat","t":"gules","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3218,"x":307.34,"y":468.57,"i":273,"state":15,"culture":12,"name":"Troten","feature":23,"capital":0,"population":0.955,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"cock","t":"argent","p":"kn","t2":"or","t3":"argent","size":0.7}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4605,"x":416.62,"y":574.56,"i":274,"state":16,"culture":16,"name":"Todtnau","feature":23,"capital":0,"population":3.329,"type":"Generic","coa":{"t1":"azure","division":{"division":"perPale","t":"argent","line":"straight"},"charges":[{"charge":"crossHummetty","t":"or","p":"p","size":0.7},{"charge":"crossCeltic","t":"gules","p":"q","size":0.7}],"shield":"spanish"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4002,"x":614.2,"y":538.8,"i":275,"state":6,"culture":5,"name":"Atepec","feature":23,"capital":0,"population":3.684,"type":"Generic","coa":{"t1":"sable","ordinaries":[{"ordinary":"bend","t":"argent","line":"invecked"}],"charges":[{"charge":"billet","t":"azure","p":"joe","size":0.5}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6256,"x":1360.75,"y":722.04,"i":276,"state":4,"culture":15,"name":"Sizitaga","feature":26,"capital":0,"port":1,"population":19.527,"type":"Naval","coa":{"t1":"gules","division":{"division":"perFess","t":"argent","line":"engrailed"},"charges":[{"charge":"anchor","t":"or","p":"e","divided":"counter","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":5351,"x":354.7,"y":635.44,"i":277,"state":16,"culture":16,"name":"Rickenzell","feature":23,"capital":0,"population":7.383,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"tower","t":"gules","p":"e","t2":"gules","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5206,"x":299.7,"y":625.46,"i":278,"state":16,"culture":3,"name":"Hellavik","feature":23,"capital":0,"population":6.125,"type":"Generic","coa":{"t1":"pally-argent-vert","charges":[{"charge":"apple","t":"gules","p":"e","t2":"gules","size":1.5}],"shield":"fantasy3"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6686,"x":491.88,"y":773.8,"i":279,"state":11,"culture":14,"name":"Thuron","feature":23,"capital":0,"population":4.223,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"chalice","t":"argent","p":"jln","t2":"or","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4425,"x":181.36,"y":568.42,"i":280,"state":1,"culture":2,"name":"Yuenshing","feature":23,"capital":0,"population":3.806,"type":"Generic","coa":{"t1":"purpure","division":{"division":"perCross","t":"argent","line":"straight"},"charges":[{"charge":"apple","t":"or","p":"jlmo","t2":"or","divided":"counter","size":0.6}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4054,"x":1406.47,"y":532.26,"i":281,"state":8,"culture":11,"name":"Wanshanhing","feature":26,"capital":0,"population":6.23,"type":"Generic","coa":{"t1":"argent","division":{"division":"perPale","t":"gules","line":"straight"},"ordinaries":[{"ordinary":"bordure","t":"sable"}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":2299,"x":1016.6,"y":354.6,"i":282,"state":8,"culture":15,"name":"Tyralopo","feature":2,"capital":0,"population":0.933,"type":"Generic","coa":{"t1":"gules","division":{"division":"perFess","t":"bendySinister-vert-or-small","line":"straight"},"charges":[{"charge":"castle","t":"argent","p":"k","t2":"argent","size":0.7},{"charge":"crossLatin","t":"argent","p":"n","size":0.7}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"fort"},{"cell":5477,"x":427.37,"y":656.11,"i":283,"state":16,"culture":16,"name":"Sinzheimberg","feature":23,"capital":0,"port":1,"population":3.953,"type":"Naval","coa":{"t1":"azure","ordinaries":[{"ordinary":"pale","t":"or","line":"straight"}],"charges":[{"charge":"eagle","t":"azure","p":"e","t2":"azure","t3":"argent","size":0.7}],"shield":"spanish"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7428,"x":1251.05,"y":843.26,"i":284,"state":10,"culture":15,"name":"Plateleusis","feature":26,"capital":0,"population":2.382,"type":"River","coa":{"t1":"azure","ordinaries":[{"ordinary":"bendSinister","t":"argent","line":"seaWaves"}],"charges":[{"charge":"lymphad","t":"argent","p":"a","t2":"argent","t3":"argent","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4107,"x":231.42,"y":542.43,"i":285,"state":1,"culture":2,"name":"Yukfunam","feature":23,"capital":0,"population":6.704,"type":"Generic","coa":{"t1":"sable","charges":[{"charge":"garb","t":"or","p":"kn","t2":"or","size":0.7}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6620,"x":1334.83,"y":761.51,"i":286,"state":10,"culture":15,"name":"Myonia","feature":26,"capital":0,"population":8.083,"type":"Generic","coa":{"t1":"vert","charges":[{"charge":"crossFleury","t":"argent","p":"jeo","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5550,"x":1660.54,"y":653,"i":287,"state":20,"culture":15,"name":"Myralionti","feature":26,"capital":0,"population":1.151,"type":"Generic","coa":{"t1":"or","division":{"division":"perBend","t":"vair-argent-sable","line":"straight"},"charges":[{"charge":"lanceWithBanner","t":"azure","p":"l","t2":"azure","t3":"azure","size":0.7},{"charge":"horseRampant","t":"purpure","p":"m","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":6735,"x":1194.4,"y":774.8,"i":288,"state":10,"culture":15,"name":"Histhon","feature":26,"capital":0,"population":3.493,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"dragonPassant","t":"gules","p":"abc","t2":"gules","t3":"azure","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7246,"x":1654.19,"y":815.65,"i":289,"state":20,"culture":8,"name":"Rench","feature":26,"capital":0,"population":3.259,"type":"Generic","coa":{"t1":"sable","division":{"division":"perCross","t":"or","line":"straight"},"charges":[{"charge":"lozengeFaceted","t":"argent","p":"e","divided":"counter","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6018,"x":1460.99,"y":694.47,"i":290,"state":4,"culture":15,"name":"Salaris","feature":26,"capital":0,"population":1.172,"type":"Generic","coa":{"t1":"argent","division":{"division":"perPile","t":"purpure","line":"straight"},"charges":[{"charge":"crescent","t":"azure","p":"be","divided":"counter","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3835,"x":505.81,"y":515.81,"i":291,"state":3,"culture":5,"name":"Huichtitlacan","feature":23,"capital":0,"population":9.908,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"bar","t":"purpure","line":"dancetty"}],"shield":"wedged"},"citadel":1,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":2539,"x":481.55,"y":384.05,"i":292,"state":3,"culture":5,"name":"Ayutezoco","feature":2,"capital":0,"population":10.331,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"crossMaltese","t":"sable","p":"jln","size":0.7}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":5024,"x":1500.02,"y":606.09,"i":293,"state":8,"culture":15,"name":"Namaikast","feature":26,"capital":0,"population":1.019,"type":"Generic","coa":{"t1":"counterVair-argent-sable","ordinaries":[{"ordinary":"chief","t":"gules","line":"straight"}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6747,"x":1323.67,"y":773.69,"i":294,"state":10,"culture":15,"name":"Oricearis","feature":26,"capital":0,"population":8.608,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"lymphad","t":"or","p":"e","t2":"or","t3":"or","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4706,"x":1430.89,"y":575.13,"i":295,"state":8,"culture":11,"name":"Chingling","feature":26,"capital":0,"population":2.068,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"key","t":"argent","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7117,"x":1510.89,"y":809.79,"i":296,"state":5,"culture":8,"name":"Biegen","feature":26,"capital":0,"population":6.767,"type":"River","coa":{"t1":"sable","ordinaries":[{"ordinary":"fess","t":"argent","line":"straight"}],"charges":[{"charge":"drakkar","t":"or","p":"e","t2":"or","t3":"argent","size":1.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5158,"x":1436.55,"y":613.85,"i":297,"state":8,"culture":11,"name":"Saiying","feature":26,"capital":0,"population":1.339,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"trianglePierced","t":"vert","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":1,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6282,"x":1669.96,"y":725.94,"i":298,"state":20,"culture":8,"name":"Nordbad","feature":26,"capital":0,"population":2.159,"type":"Generic","coa":{"t1":"gules","ordinaries":[{"ordinary":"chief","t":"or","line":"straight"}],"charges":[{"charge":"arbalest2","t":"vert","p":"abc","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6502,"x":1364.7,"y":742.82,"i":299,"state":4,"culture":15,"name":"Thuketos","feature":26,"capital":0,"population":10.559,"type":"Generic","coa":{"t1":"semy_of_mullet6-argent-gules","ordinaries":[{"ordinary":"fessDoubleCotissed","t":"vert","line":"straight"}],"charges":[{"charge":"snail","t":"argent","p":"def","t2":"argent","size":0.4}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":5697,"x":249.41,"y":673.86,"i":300,"state":1,"culture":2,"name":"Siutaunam","feature":23,"capital":0,"population":7.892,"type":"Generic","coa":{"t1":"or","ordinaries":[{"ordinary":"fess","t":"purpure","line":"straight"}],"charges":[{"charge":"falcon","t":"argent","p":"def","t2":"argent","t3":"azure","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6366,"x":1274.7,"y":732.16,"i":301,"state":10,"culture":15,"name":"Akourolidam","feature":26,"capital":0,"population":8.272,"type":"Generic","coa":{"t1":"azure","division":{"division":"perSaltire","t":"or"},"ordinaries":[{"ordinary":"bendlet","t":"argent","line":"straight"}],"charges":[{"charge":"crossArrowed","t":"sable","p":"joe","size":0.3}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6937,"x":613.8,"y":797.21,"i":302,"state":11,"culture":14,"name":"Phasos","feature":23,"capital":0,"population":2.22,"type":"River","coa":{"t1":"sable","charges":[{"charge":"skull2","t":"or","p":"jln","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6031,"x":1620.5,"y":696.08,"i":303,"state":7,"culture":15,"name":"Tymaxos","feature":26,"capital":0,"population":6.661,"type":"Generic","coa":{"t1":"vert","ordinaries":[{"ordinary":"cross","t":"argent","line":"arched"}],"charges":[{"charge":"oak","t":"argent","p":"acgi","t2":"argent","t3":"argent","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5301,"x":1497.02,"y":631.04,"i":304,"state":8,"culture":15,"name":"Phanebaidy","feature":26,"capital":0,"population":8.637,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"chief","t":"purpure","line":"straight"}],"charges":[{"charge":"spiral","t":"argent","p":"abc","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5207,"x":317.14,"y":625.1,"i":305,"state":16,"culture":3,"name":"Sorodoy","feature":23,"capital":0,"population":3.357,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"pincers","t":"argent","p":"jeo","size":0.5}],"shield":"fantasy3"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":5862,"x":1150.04,"y":690.44,"i":306,"state":10,"culture":15,"name":"Dekustos","feature":35,"capital":0,"population":0.799,"type":"Generic","coa":{"t1":"vert","ordinaries":[{"ordinary":"chief","t":"or","line":"straight"}],"charges":[{"charge":"billet","t":"vert","p":"abc","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3243,"x":490.7,"y":473.3,"i":307,"state":3,"culture":5,"name":"Huatlal","feature":23,"capital":0,"population":1.214,"type":"River","coa":{"t1":"argent","ordinaries":[{"ordinary":"orle","t":"azure"}],"charges":[{"charge":"goutte","t":"gules","p":"peq","size":0.4}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":3638,"x":177.6,"y":506.6,"i":308,"state":2,"culture":10,"name":"Zrard","feature":23,"capital":0,"population":5.744,"type":"Generic","coa":{"t1":"gules","division":{"division":"perFess","t":"argent","line":"bevilled"},"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6877,"x":1489.7,"y":780.56,"i":309,"state":5,"culture":8,"name":"Lahrbendin","feature":26,"capital":0,"population":5.929,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"crocodile","t":"azure","p":"e","t2":"azure","size":1.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4856,"x":1419.42,"y":588.84,"i":310,"state":8,"culture":11,"name":"Ngchu","feature":26,"capital":0,"population":4.441,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"greyhoundRampant","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6269,"x":1514.52,"y":726.75,"i":311,"state":7,"culture":15,"name":"Laoros","feature":26,"capital":0,"population":10.492,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"owl","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":7099,"x":1366.81,"y":810.03,"i":312,"state":10,"culture":7,"name":"Puszalas","feature":26,"capital":0,"population":0.913,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"shears","t":"purpure","p":"e","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7422,"x":1179.99,"y":846.7,"i":313,"state":10,"culture":15,"name":"Kypethumnos","feature":26,"capital":0,"population":4.149,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"bordure","t":"or"}],"charges":[{"charge":"shield","t":"argent","p":"kn","t2":"argent","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5985,"x":1133.71,"y":704.45,"i":314,"state":10,"culture":15,"name":"Meialaion","feature":35,"capital":0,"port":1,"population":2.906,"type":"Naval","coa":{"t1":"vert","charges":[{"charge":"lymphad","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6996,"x":1508.84,"y":792.39,"i":315,"state":5,"culture":8,"name":"Breislach","feature":26,"capital":0,"population":1.494,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"sword","t":"sable","p":"e","t2":"azure","size":1.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6776,"x":1654.52,"y":767.9,"i":316,"state":20,"culture":8,"name":"Bollsruter","feature":26,"capital":0,"population":0.84,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"bend","t":"vert","line":"straight"}],"charges":[{"charge":"lanceWithBanner","t":"argent","p":"jo","t2":"argent","t3":"purpure","size":0.7}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5173,"x":1589.04,"y":617.82,"i":317,"state":20,"culture":15,"name":"Hesos","feature":26,"capital":0,"population":3.435,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"bordure","t":"azure"}],"charges":[{"charge":"bridge","t":"argent","p":"ABCDEFGHIJKL","size":0.18}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6691,"x":548.41,"y":766.34,"i":318,"state":9,"culture":4,"name":"Veriaca","feature":23,"capital":0,"population":7.01,"type":"Generic","coa":{"t1":"sable","charges":[{"charge":"garb","t":"or","p":"lme","t2":"or","size":0.5}],"shield":"renaissance"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6823,"x":654.18,"y":783.55,"i":319,"state":19,"culture":14,"name":"Pydria","feature":23,"capital":0,"port":1,"population":2.955,"type":"Naval","coa":{"t1":"argent","charges":[{"charge":"sun","t":"azure","p":"jln","size":0.7}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3901,"x":1412.98,"y":523.12,"i":320,"state":8,"culture":15,"name":"Askrasos","feature":26,"capital":0,"population":0.919,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"boat","t":"purpure","p":"e","t2":"purpure","size":1.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"fort"},{"cell":3852,"x":635.89,"y":522.65,"i":321,"state":6,"culture":5,"name":"Michnapul","feature":23,"capital":0,"population":4.421,"type":"Generic","coa":{"t1":"sable","ordinaries":[{"ordinary":"pileInBend","t":"or"}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6101,"x":1139.76,"y":709.62,"i":322,"state":10,"culture":15,"name":"Artynti","feature":35,"capital":0,"population":4.624,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"crossFleury","t":"purpure","p":"jlh","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":6312,"x":398.32,"y":728.62,"i":323,"state":9,"culture":3,"name":"Lautarni","feature":23,"capital":0,"population":1.166,"type":"River","coa":{"t1":"sable","charges":[{"charge":"lionSejant","t":"argent","p":"e","t2":"argent","t3":"or","size":1.5}],"shield":"fantasy3"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7153,"x":420.17,"y":815.94,"i":324,"state":9,"culture":14,"name":"Pinerythmo","feature":23,"capital":0,"population":8.938,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"portcullis","t":"azure","p":"e","t2":"azure","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3554,"x":783.33,"y":492.58,"i":325,"state":6,"culture":5,"name":"Tocomatezonte","feature":2,"capital":0,"population":11.421,"type":"Generic","coa":{"t1":"sable","charges":[{"charge":"anchor","t":"argent","p":"e","size":1.5}],"shield":"wedged"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":4524,"x":1315.94,"y":562.96,"i":326,"state":8,"culture":9,"name":"Toltanshig","feature":26,"capital":0,"population":0.852,"type":"Generic","coa":{"t1":"maily-or-purpure-small","division":{"division":"chevronny","t":"gules"},"shield":"round"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6552,"x":375.78,"y":762.1,"i":327,"state":9,"culture":16,"name":"Heilermers","feature":23,"capital":0,"population":0.965,"type":"Generic","coa":{"t1":"potent-purpure-or","division":{"division":"perBend","t":"bendy-gules-argent","line":"straight"},"charges":[{"charge":"salmon","t":"azure","p":"l","t2":"azure","size":0.7},{"charge":"scalesHanging","t":"azure","p":"m","size":0.7}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5159,"x":1439,"y":621.6,"i":328,"state":8,"culture":11,"name":"Hangpunwai","feature":26,"capital":0,"population":5.298,"type":"Generic","coa":{"t1":"vert","ordinaries":[{"ordinary":"pale","t":"argent","line":"dentilly"}],"charges":[{"charge":"salmon","t":"azure","p":"e","t2":"azure","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5540,"x":1550.92,"y":648.02,"i":329,"state":7,"culture":15,"name":"Stranos","feature":26,"capital":0,"population":1.089,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"mount","t":"or"}],"charges":[{"charge":"maces","t":"or","p":"e","t2":"or","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6458,"x":659.09,"y":744.15,"i":330,"state":19,"culture":14,"name":"Agios","feature":23,"capital":0,"population":0.962,"type":"Generic","coa":{"t1":"vert","ordinaries":[{"ordinary":"bendlet","t":"argent","line":"straight"}],"charges":[{"charge":"cavalier","t":"vert","p":"joe","t2":"or","t3":"argent","size":0.3}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7278,"x":535.08,"y":825.98,"i":331,"state":11,"culture":14,"name":"Pydna","feature":23,"capital":0,"population":8.754,"type":"Generic","coa":{"t1":"gules","ordinaries":[{"ordinary":"terrace","t":"argent","line":"straight"}],"charges":[{"charge":"crossErminee","t":"argent","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4415,"x":61.09,"y":570.56,"i":332,"state":1,"culture":2,"name":"Gopingkum","feature":23,"capital":0,"population":1.941,"type":"Generic","coa":{"t1":"gules","ordinaries":[{"ordinary":"point","t":"or"}],"charges":[{"charge":"crossClechy","t":"or","p":"e","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6367,"x":1269.7,"y":737.3,"i":333,"state":10,"culture":15,"name":"Thapia","feature":26,"capital":0,"population":1.175,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"pale","t":"purpure","line":"straight"}],"charges":[{"charge":"lionHeadCaboshed","t":"argent","p":"beh","t2":"argent","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6383,"x":1426.33,"y":734.64,"i":334,"state":4,"culture":8,"name":"Schoberied","feature":26,"capital":0,"population":1.251,"type":"Generic","coa":{"t1":"gules","division":{"division":"perChevron","t":"argent","line":"straight"},"shield":"heater"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":5418,"x":1463.31,"y":643.02,"i":335,"state":4,"culture":15,"name":"Sparnepi","feature":26,"capital":0,"population":7.169,"type":"River","coa":{"t1":"or","ordinaries":[{"ordinary":"pallReversed","t":"gules"}],"charges":[{"charge":"pear","t":"or","p":"bemo","t2":"or","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5428,"x":1583.88,"y":643.49,"i":336,"state":20,"culture":15,"name":"Aeiaies","feature":26,"capital":0,"population":1.208,"type":"Generic","coa":{"t1":"argent","division":{"division":"perFess","t":"purpure","line":"straight"},"charges":[{"charge":"crossFleury","t":"gules","p":"k","size":0.7},{"charge":"caravel","t":"or","p":"n","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4918,"x":393.73,"y":601.13,"i":337,"state":16,"culture":16,"name":"Horbruck","feature":23,"capital":0,"population":5.16,"type":"River","coa":{"t1":"gules","ordinaries":[{"ordinary":"bordure","t":"or"}],"charges":[{"charge":"crossLatin","t":"argent","p":"e","size":1.1}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7163,"x":547.96,"y":820.54,"i":338,"state":11,"culture":14,"name":"Athrosiala","feature":23,"capital":0,"population":1.02,"type":"Generic","coa":{"t1":"sable","ordinaries":[{"ordinary":"fessDoubleCotissed","t":"or","line":"nowy"}],"charges":[{"charge":"crossFleury","t":"argent","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4603,"x":384.08,"y":582.41,"i":339,"state":16,"culture":16,"name":"Hofsadengen","feature":23,"capital":0,"population":6.087,"type":"Generic","coa":{"t1":"vert","charges":[{"charge":"grapeBunch","t":"or","p":"e","t2":"or","t3":"or","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6505,"x":1398.45,"y":750.88,"i":340,"state":4,"culture":15,"name":"Troyranais","feature":26,"capital":0,"population":4.278,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"scalesHanging","t":"argent","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5526,"x":1392.89,"y":654.83,"i":341,"state":8,"culture":17,"name":"Kuswaroru","feature":26,"capital":0,"population":8.527,"type":"Generic","coa":{"t1":"ermine-argent-sable","charges":[{"charge":"helmetCorinthian","t":"purpure","p":"e","t2":"purpure","t3":"gules","size":1.5}],"shield":"horsehead"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5953,"x":456.46,"y":703.74,"i":342,"state":9,"culture":4,"name":"Ediona","feature":23,"capital":0,"population":1.289,"type":"Generic","coa":{"t1":"plumetty-azure-or","ordinaries":[{"ordinary":"bordure","t":"argent"}],"charges":[{"charge":"crossHummetty","t":"argent","p":"e","size":1.1}],"shield":"renaissance"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3041,"x":487.49,"y":447.17,"i":343,"state":3,"culture":5,"name":"Huepec","feature":23,"capital":0,"population":1.152,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"terrace","t":"sable","line":"engrailed"}],"charges":[{"charge":"mullet10","t":"gules","p":"e","size":1.5}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5080,"x":454.47,"y":616.35,"i":344,"state":17,"culture":16,"name":"Tuberg","feature":23,"capital":0,"population":7.465,"type":"Generic","coa":{"t1":"bendySinister-or-sable-small","ordinaries":[{"ordinary":"chevron","t":"gules"}],"shield":"spanish"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6185,"x":376.79,"y":727.04,"i":345,"state":16,"culture":3,"name":"Laureyri","feature":23,"capital":0,"population":2.936,"type":"Generic","coa":{"t1":"gules","ordinaries":[{"ordinary":"bar","t":"argent","line":"wavy"}],"charges":[{"charge":"drawingCompass","t":"argent","p":"ach","size":0.5}],"shield":"fantasy3"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6628,"x":1426.31,"y":757.21,"i":346,"state":4,"culture":8,"name":"Rench","feature":26,"capital":0,"population":2.666,"type":"River","coa":{"t1":"vert","division":{"division":"perFess","t":"or","line":"wavy"},"charges":[{"charge":"hook","t":"argent","p":"k","size":0.7},{"charge":"lionPassant","t":"gules","p":"n","size":0.7}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4109,"x":257.65,"y":544.14,"i":347,"state":1,"culture":3,"name":"Vasjahver","feature":23,"capital":0,"population":6.537,"type":"Generic","coa":{"t1":"sable","division":{"division":"gyronny","t":"or"},"charges":[{"charge":"castle2","t":"argent","p":"e","t2":"argent","t3":"argent","divided":"counter","size":1.5}],"shield":"fantasy3"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":6016,"x":1433.71,"y":696.36,"i":348,"state":4,"culture":15,"name":"Sulai","feature":26,"capital":0,"population":6.192,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"pot","t":"azure","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4602,"x":375.71,"y":576.67,"i":349,"state":16,"culture":16,"name":"Bonweibach","feature":23,"capital":0,"population":6.729,"type":"Generic","coa":{"t1":"vairEnPointe-azure-argent","charges":[{"charge":"inescutcheon","t":"or","p":"e","size":1.5},{"charge":"heart","t":"azure","p":"e","size":0.75}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4758,"x":315.2,"y":585.86,"i":350,"state":16,"culture":16,"name":"Wittnautach","feature":23,"capital":0,"population":4.254,"type":"Generic","coa":{"t1":"or","ordinaries":[{"ordinary":"quarter","t":"purpure"}],"charges":[{"charge":"key","t":"purpure","p":"e","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4768,"x":432.4,"y":591.71,"i":351,"state":17,"culture":16,"name":"Staulachler","feature":23,"capital":0,"population":11.526,"type":"River","coa":{"t1":"bendySinister-or-sable-small","division":{"division":"perCross","t":"azure","line":"straight"},"ordinaries":[{"ordinary":"gyron","t":"gules"}],"shield":"spanish"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":5433,"x":1641.55,"y":635.3,"i":352,"state":20,"culture":15,"name":"Pantos","feature":26,"capital":0,"population":4.506,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"mullet","t":"azure","p":"def","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4119,"x":341.53,"y":545.48,"i":353,"state":16,"culture":16,"name":"Laufen","feature":23,"capital":0,"population":1.384,"type":"Generic","coa":{"t1":"purpure","ordinaries":[{"ordinary":"fessDoubleCotissed","t":"or","line":"straight"}],"charges":[{"charge":"crossHummetty","t":"azure","p":"def","size":0.4}],"shield":"spanish"},"citadel":1,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4762,"x":362.64,"y":593.92,"i":354,"state":16,"culture":16,"name":"Ofin","feature":23,"capital":0,"population":4.472,"type":"River","coa":{"t1":"or","charges":[{"charge":"crossHummetty","t":"gules","p":"e","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7085,"x":1197.84,"y":800.52,"i":355,"state":10,"culture":15,"name":"Somis","feature":26,"capital":0,"population":8.123,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"lymphad","t":"argent","p":"e","t2":"or","t3":"argent","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6626,"x":1396.98,"y":760.97,"i":356,"state":4,"culture":8,"name":"Neusern","feature":26,"capital":0,"population":3.95,"type":"River","coa":{"t1":"gules","charges":[{"charge":"bullHeadCaboshed","t":"argent","p":"jln","t2":"argent","size":0.7}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6687,"x":512.92,"y":767.24,"i":357,"state":9,"culture":14,"name":"Romis","feature":23,"capital":0,"population":0.92,"type":"Generic","coa":{"t1":"gules","division":{"division":"perFess","t":"or","line":"straight"},"charges":[{"charge":"shipWheel","t":"argent","p":"k","size":0.7},{"charge":"anchor","t":"purpure","p":"n","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3010,"x":245.81,"y":458.91,"i":358,"state":15,"culture":13,"name":"Nonimbricia","feature":23,"capital":0,"port":1,"population":16.521,"type":"Naval","coa":{"t1":"gules","charges":[{"charge":"bridge2","t":"argent","p":"e","size":1.5}],"shield":"swiss"},"citadel":1,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":7155,"x":448.08,"y":821.32,"i":359,"state":9,"culture":14,"name":"Laris","feature":23,"capital":0,"population":1.004,"type":"Generic","coa":{"t1":"argent","division":{"division":"perFess","t":"sable","line":"straight"},"charges":[{"charge":"arbalest","t":"azure","p":"e","t2":"azure","t3":"gules","divided":"counter","size":1.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3030,"x":398.25,"y":446.9,"i":360,"state":15,"culture":12,"name":"Olsvikavik","feature":23,"capital":0,"population":4.867,"type":"Generic","coa":{"t1":"purpure","ordinaries":[{"ordinary":"cross","t":"or","line":"potentySinister"}],"charges":[{"charge":"cock","t":"purpure","p":"behdf","t2":"purpure","t3":"or","size":0.3}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":2127,"x":458.2,"y":348.3,"i":361,"state":3,"culture":12,"name":"Rogenha","feature":2,"capital":0,"population":0.984,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"ladder2","t":"argent","p":"e","size":1.5}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6090,"x":634.25,"y":705.54,"i":362,"state":19,"culture":14,"name":"Alarapolcis","feature":23,"capital":0,"population":5.142,"type":"Generic","coa":{"t1":"sable","division":{"division":"perCross","t":"or","line":"invecked"},"charges":[{"charge":"eagleTwoHeads","t":"argent","p":"jo","t2":"argent","t3":"argent","divided":"counter","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6775,"x":1639.67,"y":767.27,"i":363,"state":20,"culture":8,"name":"Hausen","feature":26,"capital":0,"population":1.188,"type":"Generic","coa":{"t1":"argent","division":{"division":"perSaltire","t":"gules"},"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6765,"x":1532.52,"y":774.7,"i":364,"state":7,"culture":8,"name":"Lofrinhaufen","feature":26,"capital":0,"population":3.758,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"earOfWheat","t":"azure","p":"e","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3949,"x":144.33,"y":533.36,"i":365,"state":2,"culture":2,"name":"Yeung","feature":23,"capital":0,"population":3.709,"type":"Generic","coa":{"t1":"or","division":{"division":"perChevron","t":"vert","line":"dovetailedIndented"},"charges":[{"charge":"goutte","t":"gules","p":"dfbh","divided":"counter","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5039,"x":1669.34,"y":604.47,"i":366,"state":20,"culture":15,"name":"Leranegara","feature":26,"capital":0,"population":4.637,"type":"Generic","coa":{"t1":"azure","division":{"division":"perCross","t":"or","line":"straight"},"ordinaries":[{"ordinary":"cross","t":"argent","line":"arched","divided":"counter"}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6982,"x":1340.85,"y":793.01,"i":367,"state":10,"culture":7,"name":"Fodajklala","feature":26,"capital":0,"population":4.378,"type":"Generic","coa":{"t1":"gules","ordinaries":[{"ordinary":"canton","t":"or"}],"charges":[{"charge":"annulet","t":"gules","p":"y","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6648,"x":1617.84,"y":758.28,"i":368,"state":20,"culture":8,"name":"Kehlheimberg","feature":26,"capital":0,"population":12.259,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"plaice","t":"gules","p":"e","t2":"gules","size":1.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":6491,"x":1259.34,"y":748.98,"i":369,"state":10,"culture":15,"name":"Polis","feature":26,"capital":0,"port":1,"population":10.163,"type":"Naval","coa":{"t1":"azure","charges":[{"charge":"lymphad","t":"or","p":"e","t2":"or","t3":"or","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":880,"x":504.08,"y":198.33,"i":370,"state":13,"culture":12,"name":"Sosennogen","feature":2,"capital":0,"population":1.832,"type":"Generic","coa":{"t1":"sable","ordinaries":[{"ordinary":"orle","t":"or","line":"straight"}],"charges":[{"charge":"trianglePierced","t":"or","p":"peq","size":0.4}],"shield":"oldFrench"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6154,"x":1630.78,"y":707.69,"i":371,"state":7,"culture":15,"name":"Orcho","feature":26,"capital":0,"population":6.304,"type":"Generic","coa":{"t1":"gules","ordinaries":[{"ordinary":"chevronReversed","t":"argent"}],"charges":[{"charge":"lanceWithBanner","t":"argent","p":"b","t2":"argent","t3":"argent","size":0.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6291,"x":164.21,"y":735.14,"i":372,"state":1,"culture":2,"name":"Tsing","feature":23,"capital":0,"population":2.59,"type":"Generic","coa":{"t1":"bendy-or-azure","division":{"division":"perChevronReversed","t":"sable","line":"straight"},"charges":[{"charge":"rake","t":"purpure","p":"dfh","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6434,"x":425.21,"y":741.29,"i":373,"state":9,"culture":14,"name":"Doseidea","feature":23,"capital":0,"population":1.139,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"parrot","t":"or","p":"e","t2":"or","size":1.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6610,"x":1247.42,"y":757.87,"i":374,"state":10,"culture":15,"name":"Nauclea","feature":26,"capital":0,"population":1.064,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"cross","t":"azure","line":"straight"}],"charges":[{"charge":"crossHummetty","t":"argent","p":"behdf","size":0.3}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6972,"x":1222.53,"y":790.01,"i":375,"state":10,"culture":15,"name":"Braucia","feature":26,"capital":0,"population":1.103,"type":"Generic","coa":{"t1":"purpure","ordinaries":[{"ordinary":"cross","t":"or","line":"nebuly"}],"charges":[{"charge":"mullet","t":"azure","p":"beh","size":0.3}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6273,"x":1557.98,"y":721.36,"i":376,"state":7,"culture":8,"name":"Kobertal","feature":26,"capital":0,"population":2.734,"type":"Generic","coa":{"t1":"or","ordinaries":[{"ordinary":"chief","t":"sable","line":"archedReversed"}],"charges":[{"charge":"cannon","t":"argent","p":"abc","t2":"argent","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6585,"x":731.2,"y":762.7,"i":377,"state":19,"culture":14,"name":"Plamonti","feature":23,"capital":0,"population":0.352,"type":"Lake","coa":{"t1":"masoned-argent-sable","division":{"division":"perPale","t":"azure","line":"straight"},"ordinaries":[{"ordinary":"bordure","t":"gules"}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5180,"x":1675.9,"y":620.94,"i":378,"state":20,"culture":15,"name":"Mandotiros","feature":26,"capital":0,"population":5.148,"type":"River","coa":{"t1":"sable","charges":[{"charge":"anvil","t":"or","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6865,"x":1344.85,"y":778.77,"i":379,"state":10,"culture":7,"name":"Mindszotur","feature":26,"capital":0,"population":4.285,"type":"Generic","coa":{"t1":"sable","ordinaries":[{"ordinary":"pale","t":"argent","line":"straight"}],"charges":[{"charge":"crossHummetty","t":"sable","p":"beh","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5353,"x":371.99,"y":641.58,"i":380,"state":16,"culture":16,"name":"Staufinhan","feature":23,"capital":0,"population":4.363,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"millstone","t":"or","p":"e","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6034,"x":1655.66,"y":694,"i":381,"state":20,"culture":8,"name":"Hinburg","feature":26,"capital":0,"population":1.147,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"stagPassant","t":"sable","p":"e","t2":"sable","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7047,"x":505.17,"y":801.54,"i":382,"state":11,"culture":14,"name":"Athmopopo","feature":23,"capital":0,"population":1.035,"type":"River","coa":{"t1":"azure","charges":[{"charge":"falcon","t":"or","p":"e","t2":"or","t3":"or","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4909,"x":292.57,"y":607.43,"i":383,"state":16,"culture":3,"name":"Lenneyrar","feature":23,"capital":0,"population":3.833,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"crosslet","t":"sable","p":"e","size":1.5}],"shield":"fantasy3"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":1323,"x":524.75,"y":242.65,"i":384,"state":13,"culture":12,"name":"Strenga","feature":2,"capital":0,"population":10.528,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"key","t":"sable","p":"e","size":1.5}],"shield":"oldFrench"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":3137,"x":480.75,"y":463.93,"i":385,"state":3,"culture":5,"name":"Hueyotlapulte","feature":23,"capital":0,"port":1,"population":6.679,"type":"Naval","coa":{"t1":"or","charges":[{"charge":"shears","t":"azure","p":"jln","size":0.7}],"shield":"wedged"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4158,"x":639.29,"y":546.18,"i":386,"state":6,"culture":5,"name":"Huitlaticoya","feature":23,"capital":0,"population":7.935,"type":"Generic","coa":{"t1":"sable","charges":[{"charge":"sextifoil","t":"argent","p":"e","size":1.5}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5028,"x":1531.33,"y":603.18,"i":387,"state":8,"culture":15,"name":"Egenionti","feature":26,"capital":0,"population":1.109,"type":"Generic","coa":{"t1":"counterPotent-argent-purpure","division":{"division":"perChevron","t":"gules","line":"straight"},"ordinaries":[{"ordinary":"label","t":"vert"}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6814,"x":551.96,"y":780.52,"i":388,"state":11,"culture":14,"name":"Gortenos","feature":23,"capital":0,"population":3.392,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"scale","t":"purpure","p":"abc","t2":"purpure","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6927,"x":497.33,"y":791.94,"i":389,"state":11,"culture":14,"name":"Ephyba","feature":23,"capital":0,"population":1.012,"type":"River","coa":{"t1":"argent","charges":[{"charge":"falcon","t":"sable","p":"e","t2":"sable","t3":"sable","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5824,"x":361,"y":691.09,"i":390,"state":16,"culture":16,"name":"Eigachen","feature":23,"capital":0,"population":1.056,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"snail","t":"or","p":"e","t2":"or","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6869,"x":1394.09,"y":784.58,"i":391,"state":4,"culture":7,"name":"Bedelek","feature":26,"capital":0,"population":5.227,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"mullet6","t":"or","p":"e","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":659,"x":1027.2,"y":159.8,"i":392,"state":12,"culture":15,"name":"Trorysthos","feature":2,"capital":0,"population":9.31,"type":"River","coa":{"t1":"sable","charges":[{"charge":"crossCarolingian","t":"argent","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7315,"x":1199.84,"y":834.05,"i":393,"state":10,"culture":15,"name":"Pantos","feature":26,"capital":0,"population":4.728,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"cavalier","t":"gules","p":"e","t2":"gules","t3":"gules","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4693,"x":1323,"y":582.72,"i":394,"state":8,"culture":9,"name":"Tayan","feature":26,"capital":0,"population":0.901,"type":"Generic","coa":{"t1":"chequy-or-azure","division":{"division":"perPale","t":"argent","line":"straight"},"ordinaries":[{"ordinary":"pale","t":"gules","line":"straight"}],"shield":"round"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3951,"x":176.32,"y":534,"i":395,"state":2,"culture":2,"name":"Loyuen","feature":23,"capital":0,"population":7.141,"type":"Generic","coa":{"t1":"vert","charges":[{"charge":"arbalest2","t":"argent","p":"e","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6866,"x":1353.37,"y":786.95,"i":396,"state":10,"culture":7,"name":"Szegharos","feature":26,"capital":0,"population":3.624,"type":"Generic","coa":{"t1":"sable","division":{"division":"chevronny","t":"argent"},"charges":[{"charge":"helmet","t":"or","p":"e","divided":"counter","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":7170,"x":621.6,"y":816.18,"i":397,"state":11,"culture":14,"name":"Gorgiphilip","feature":23,"capital":0,"population":6.67,"type":"Generic","coa":{"t1":"gules","ordinaries":[{"ordinary":"crossParted","t":"argent","line":"straight"}],"charges":[{"charge":"falcon","t":"purpure","p":"e","t2":"purpure","t3":"purpure","size":1.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6089,"x":623.09,"y":713.68,"i":398,"state":19,"culture":14,"name":"Pitrea","feature":23,"capital":0,"population":1.194,"type":"Generic","coa":{"t1":"or","ordinaries":[{"ordinary":"cross","t":"gules","line":"invecked"}],"charges":[{"charge":"snail","t":"or","p":"beh","t2":"or","size":0.3}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6296,"x":209.18,"y":738.06,"i":399,"state":1,"culture":2,"name":"Howanwan","feature":23,"capital":0,"population":6.494,"type":"Highland","coa":{"t1":"fusily-or-gules-small","charges":[{"charge":"basilisk","t":"purpure","p":"e","t2":"purpure","t3":"azure","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5671,"x":1626.16,"y":658.72,"i":400,"state":20,"culture":15,"name":"Hyegesos","feature":26,"capital":0,"population":3.262,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"portcullis","t":"vert","p":"e","t2":"vert","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7086,"x":1210.39,"y":804.64,"i":401,"state":10,"culture":15,"name":"Eplios","feature":26,"capital":0,"population":10.758,"type":"Generic","coa":{"t1":"argent","division":{"division":"perFess","t":"azure","line":"straight"},"charges":[{"charge":"heart","t":"purpure","p":"e","divided":"counter","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":4729,"x":1650.51,"y":578.24,"i":402,"state":20,"culture":15,"name":"Pegeagikast","feature":26,"capital":0,"population":5.37,"type":"Generic","coa":{"t1":"vert","ordinaries":[{"ordinary":"bar","t":"or","line":"straight"}],"charges":[{"charge":"scale","t":"or","p":"bgi","t2":"or","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5899,"x":1477.65,"y":687.95,"i":403,"state":4,"culture":15,"name":"Myrapolbia","feature":26,"capital":0,"population":9.106,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"fan","t":"argent","p":"abcpqh","t2":"argent","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5913,"x":1638.31,"y":685.71,"i":404,"state":20,"culture":15,"name":"Sytion","feature":26,"capital":0,"population":8.064,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"bendSinister","t":"argent","line":"invecked"}],"charges":[{"charge":"dragonRampant","t":"sable","p":"lem","t2":"sable","t3":"or","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5774,"x":1441.49,"y":677.73,"i":405,"state":4,"culture":15,"name":"Penega","feature":26,"capital":0,"population":2.983,"type":"River","coa":{"t1":"purpure","ordinaries":[{"ordinary":"chevron","t":"argent"}],"charges":[{"charge":"billet","t":"or","p":"abc","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6186,"x":382.99,"y":721.38,"i":406,"state":16,"culture":3,"name":"Evelsvik","feature":23,"capital":0,"population":9.697,"type":"Generic","coa":{"t1":"vert","charges":[{"charge":"angel","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"fantasy3"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":6035,"x":1663.48,"y":693.88,"i":407,"state":20,"culture":8,"name":"Apbach","feature":26,"capital":0,"population":5.342,"type":"Generic","coa":{"t1":"argent","division":{"division":"perBendSinister","t":"sable","line":"wavy"},"charges":[{"charge":"scrollClosed","t":"azure","p":"j","t2":"azure","size":0.7},{"charge":"lochaberAxe","t":"or","p":"o","size":0.7}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":132,"x":604.29,"y":78.51,"i":408,"state":13,"culture":12,"name":"Stamsund","feature":2,"capital":0,"population":1.314,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"crossOccitan","t":"gules","p":"jln","size":0.7}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6213,"x":668.03,"y":721.12,"i":409,"state":19,"culture":14,"name":"Depina","feature":23,"capital":0,"population":10.797,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"pilesInPoint","t":"sable"}],"charges":[{"charge":"hourglass","t":"purpure","p":"e","t2":"purpure","t3":"purpure","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":7326,"x":1291.56,"y":826.32,"i":410,"state":10,"culture":15,"name":"Sicea","feature":26,"capital":0,"population":2.98,"type":"Lake","coa":{"t1":"gules","ordinaries":[{"ordinary":"orle","t":"or"}],"charges":[{"charge":"stagLodgedRegardant","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.1}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7248,"x":1676.89,"y":816.29,"i":411,"state":20,"culture":8,"name":"Sulztal","feature":26,"capital":0,"population":4.079,"type":"Generic","coa":{"t1":"azure","division":{"division":"chevronny","t":"argent"},"charges":[{"charge":"ratRampant","t":"or","p":"beh","t2":"or","divided":"counter","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6178,"x":287.04,"y":725.26,"i":412,"state":1,"culture":2,"name":"Kimangyuen","feature":23,"capital":0,"population":1.438,"type":"River","coa":{"t1":"bendy-or-azure","division":{"division":"perPale","t":"gules","line":"straight"},"charges":[{"charge":"rake","t":"azure","p":"p","size":0.7},{"charge":"helmet","t":"argent","p":"q","size":0.7}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5442,"x":39.94,"y":649.23,"i":413,"state":1,"culture":2,"name":"Suifungong","feature":23,"capital":0,"population":0.331,"type":"River","coa":{"t1":"bendy-or-azure","ordinaries":[{"ordinary":"terrace","t":"azure","line":"straight"}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3795,"x":176.49,"y":518.22,"i":414,"state":2,"culture":10,"name":"Gidh","feature":23,"capital":0,"population":1.819,"type":"River","coa":{"t1":"gules","ordinaries":[{"ordinary":"fessCotissed","t":"argent","line":"wavy"}],"charges":[{"charge":"sickle","t":"gules","p":"def","t2":"gules","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6611,"x":1255.51,"y":753.31,"i":415,"state":10,"culture":15,"name":"Bythumnos","feature":26,"capital":0,"port":1,"population":7.266,"type":"Naval","coa":{"t1":"gules","charges":[{"charge":"cancer","t":"argent","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":6377,"x":1356.54,"y":729.85,"i":416,"state":4,"culture":15,"name":"Olympianos","feature":26,"capital":0,"port":1,"population":10.925,"type":"Naval","coa":{"t1":"scaly-gules-argent","ordinaries":[{"ordinary":"fess","t":"or","line":"straight"}],"charges":[{"charge":"dragonPassant","t":"vert","p":"e","t2":"vert","t3":"vert","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":6559,"x":458.69,"y":760.19,"i":417,"state":9,"culture":14,"name":"Nauphamaca","feature":23,"capital":0,"population":12.479,"type":"Generic","coa":{"t1":"or","ordinaries":[{"ordinary":"quarter","t":"vert"}],"charges":[{"charge":"goutte","t":"azure","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":4441,"x":373.34,"y":563.34,"i":418,"state":16,"culture":16,"name":"Ortengenbach","feature":23,"capital":0,"population":12.046,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"bar","t":"gules","line":"wavy"}],"charges":[{"charge":"lanceWithBanner","t":"vert","p":"ach","t2":"vert","t3":"purpure","size":0.5}],"shield":"spanish"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":5471,"x":368.97,"y":655.53,"i":419,"state":16,"culture":3,"name":"Esetrand","feature":23,"capital":0,"population":0.948,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"pale","t":"argent","line":"straight"}],"charges":[{"charge":"crossPotent","t":"or","p":"y","size":0.5}],"shield":"fantasy3"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6461,"x":698.24,"y":743.95,"i":420,"state":19,"culture":14,"name":"Eniontos","feature":23,"capital":0,"population":3.892,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"wolfHeadErased","t":"azure","p":"e","t2":"vert","size":1.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6983,"x":1361.16,"y":796.44,"i":421,"state":10,"culture":7,"name":"Barcshalozar","feature":26,"capital":0,"population":3.206,"type":"River","coa":{"t1":"azure","division":{"division":"perSaltire","t":"or"},"charges":[{"charge":"plough","t":"argent","p":"b","t2":"argent","size":0.5},{"charge":"cock","t":"vert","p":"d","size":0.5},{"charge":"helmetGreat","t":"gules","p":"f","size":0.5},{"charge":"mascle","t":"argent","p":"h","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5525,"x":1384,"y":650.8,"i":422,"state":8,"culture":17,"name":"Gijokunbas","feature":26,"capital":0,"population":1.067,"type":"Generic","coa":{"t1":"sable","ordinaries":[{"ordinary":"fess","t":"argent","line":"wavy"}],"charges":[{"charge":"bell","t":"gules","p":"def","t2":"argent","size":0.5}],"shield":"horsehead"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3832,"x":479.81,"y":521.64,"i":423,"state":17,"culture":16,"name":"Eninweil","feature":23,"capital":0,"population":0.991,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"fleurDeLis","t":"or","p":"abcpqh","size":0.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4278,"x":261.87,"y":555.49,"i":424,"state":1,"culture":3,"name":"Hofsostad","feature":23,"capital":0,"population":8.464,"type":"Generic","coa":{"t1":"vairAncien-azure-argent","division":{"division":"perBend","t":"or","line":"straight"},"charges":[{"charge":"wheel","t":"vert","p":"l","size":0.7},{"charge":"eagleTwoHeads","t":"gules","p":"m","size":0.7}],"shield":"fantasy3"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5296,"x":1444.5,"y":634.9,"i":425,"state":8,"culture":15,"name":"Sicos","feature":26,"capital":0,"population":1.164,"type":"Generic","coa":{"t1":"vairAncien-argent-gules","division":{"division":"perPale","t":"purpure","line":"straight"},"charges":[{"charge":"ratRampant","t":"azure","p":"p","t2":"azure","size":0.7},{"charge":"horseHeadCouped","t":"or","p":"q","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6740,"x":1240.12,"y":765.85,"i":426,"state":10,"culture":15,"name":"Bhrytos","feature":26,"capital":0,"port":1,"population":9.795,"type":"Naval","coa":{"t1":"argent","charges":[{"charge":"eagleTwoHeads","t":"vert","p":"e","t2":"vert","t3":"gules","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":6879,"x":1512.89,"y":781.18,"i":427,"state":7,"culture":8,"name":"Herken","feature":26,"capital":0,"population":1.148,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"cavalier","t":"argent","p":"e","t2":"or","t3":"argent","size":1.5,"sinister":1}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6386,"x":1459.4,"y":733.21,"i":428,"state":7,"culture":8,"name":"Altten","feature":26,"capital":0,"population":5.65,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"lighthouse","t":"or","p":"jln","t2":"or","t3":"or","size":0.7}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4409,"x":1674.42,"y":557.04,"i":429,"state":20,"culture":15,"name":"Stymphos","feature":26,"capital":0,"population":9.594,"type":"Generic","coa":{"t1":"honeycombed-gules-argent-smaller","division":{"division":"perPale","t":"or","line":"straight"},"charges":[{"charge":"cock","t":"azure","p":"e","t2":"azure","t3":"azure","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":6623,"x":1370.92,"y":754.69,"i":430,"state":4,"culture":15,"name":"Aphidam","feature":26,"capital":0,"population":3.884,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"lute","t":"argent","p":"abc","t2":"argent","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5356,"x":408.54,"y":634.32,"i":431,"state":16,"culture":16,"name":"Todtweil","feature":23,"capital":0,"population":0.965,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"cross","t":"argent","line":"straight"}],"charges":[{"charge":"anchor","t":"azure","p":"behdf","size":0.3}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6183,"x":352.04,"y":721.05,"i":432,"state":16,"culture":16,"name":"Brisengen","feature":23,"capital":0,"population":0.849,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"castle","t":"vert","p":"jlh","t2":"vert","size":0.7}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4287,"x":360.46,"y":553.33,"i":433,"state":16,"culture":16,"name":"Vogtstet","feature":23,"capital":0,"population":1.026,"type":"Generic","coa":{"t1":"barry-or-gules-smaller","ordinaries":[{"ordinary":"flaunches","t":"sable"}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4841,"x":1299.73,"y":592.79,"i":434,"state":18,"culture":11,"name":"Namshatsen","feature":26,"capital":0,"population":0.893,"type":"Generic","coa":{"t1":"argent","division":{"division":"perCross","t":"gules","line":"straight"},"charges":[{"charge":"spear","t":"azure","p":"j","t2":"azure","size":0.6},{"charge":"mullet6","t":"argent","p":"l","size":0.6},{"charge":"lionRampant","t":"or","p":"m","size":0.6,"sinister":1},{"charge":"horsePassant","t":"azure","p":"o","size":0.6}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6459,"x":673.93,"y":744.3,"i":435,"state":19,"culture":14,"name":"Iatece","feature":23,"capital":0,"population":10.006,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"rustre","t":"argent","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":4702,"x":1394.37,"y":579.29,"i":436,"state":8,"culture":11,"name":"Namchfukfu","feature":26,"capital":0,"population":7.22,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"dragonPassant","t":"or","p":"e","t2":"or","t3":"or","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5654,"x":1432.4,"y":663,"i":437,"state":4,"culture":15,"name":"Egikasthe","feature":26,"capital":0,"population":12.372,"type":"River","coa":{"t1":"gules","charges":[{"charge":"trefoil","t":"argent","p":"jln","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":6554,"x":394.77,"y":763.04,"i":438,"state":9,"culture":16,"name":"Silerheim","feature":23,"capital":0,"population":4.536,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"bearRampant","t":"or","p":"e","t2":"or","t3":"argent","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6211,"x":639,"y":724.73,"i":439,"state":19,"culture":14,"name":"Troyraxos","feature":23,"capital":0,"population":4.122,"type":"Generic","coa":{"t1":"fusily-argent-azure-small","ordinaries":[{"ordinary":"pale","t":"gules","line":"straight"}],"charges":[{"charge":"rustre","t":"or","p":"e","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4533,"x":1381.68,"y":570.31,"i":440,"state":8,"culture":11,"name":"Siukfung","feature":26,"capital":0,"port":1,"population":9.041,"type":"Naval","coa":{"t1":"counterVair-argent-azure","division":{"division":"perFess","t":"gules","line":"straight"},"ordinaries":[{"ordinary":"pale","t":"purpure","line":"straight"}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6301,"x":270.78,"y":735.83,"i":441,"state":1,"culture":2,"name":"Facheung","feature":23,"capital":0,"population":6.309,"type":"Highland","coa":{"t1":"gules","division":{"division":"perPale","t":"argent","line":"escartely"},"charges":[{"charge":"compassRose","t":"or","p":"e","divided":"counter","size":1.5}],"shield":"heater"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6876,"x":1473.33,"y":779.11,"i":442,"state":5,"culture":8,"name":"Ebringen","feature":26,"capital":0,"population":1.366,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"crossOccitan","t":"argent","p":"e","size":1.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7057,"x":627.83,"y":808.74,"i":443,"state":11,"culture":14,"name":"Ainoponiane","feature":23,"capital":0,"population":1.965,"type":"River","coa":{"t1":"argent","ordinaries":[{"ordinary":"canton","t":"gules"}],"charges":[{"charge":"falcon","t":"gules","p":"e","t2":"gules","t3":"gules","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6997,"x":1526.8,"y":798.1,"i":444,"state":7,"culture":8,"name":"Kipfheim","feature":26,"capital":0,"population":2.1,"type":"River","coa":{"t1":"or","charges":[{"charge":"eagle","t":"purpure","p":"e","t2":"purpure","t3":"purpure","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6526,"x":1657.79,"y":746.02,"i":445,"state":20,"culture":8,"name":"Sinztalbach","feature":26,"capital":0,"population":5.203,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"fessCotissed","t":"sable","line":"straight"}],"charges":[{"charge":"bell","t":"argent","p":"def","t2":"argent","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5339,"x":211.17,"y":641.5,"i":446,"state":1,"culture":2,"name":"Toishuiwai","feature":23,"capital":0,"population":0.607,"type":"River","coa":{"t1":"azure","division":{"division":"perSaltire","t":"bendySinister-argent-sable"},"charges":[{"charge":"apple","t":"or","p":"bh","t2":"or","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":1531,"x":641.57,"y":254.94,"i":447,"state":13,"culture":12,"name":"Hofofors","feature":2,"capital":0,"port":1,"population":0.401,"type":"Naval","coa":{"t1":"purpure","charges":[{"charge":"dolphin","t":"or","p":"e","t2":"or","size":1.5}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7391,"x":477.33,"y":836.26,"i":448,"state":9,"culture":14,"name":"Thyreia","feature":23,"capital":0,"population":2.304,"type":"River","coa":{"t1":"semy_of_lozengeFaceted-argent-gules","division":{"division":"chevronny","t":"azure"},"charges":[{"charge":"skull","t":"sable","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6019,"x":1476.47,"y":693.55,"i":449,"state":4,"culture":15,"name":"Myrneramia","feature":26,"capital":0,"population":12.203,"type":"Generic","coa":{"t1":"or","division":{"division":"gyronny","t":"azure"},"charges":[{"charge":"crescent","t":"vert","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":4617,"x":510.6,"y":584.2,"i":450,"state":3,"culture":16,"name":"Rhein","feature":23,"capital":0,"population":1.033,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"cross","t":"argent","line":"indented"}],"charges":[{"charge":"crossHummetty","t":"azure","p":"behdf","size":0.3}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4932,"x":506.74,"y":604.25,"i":451,"state":3,"culture":16,"name":"Todtnauten","feature":23,"capital":0,"population":0.919,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"scissors2","t":"or","p":"e","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3221,"x":339.4,"y":475.82,"i":452,"state":15,"culture":12,"name":"Myripolar","feature":23,"capital":0,"population":1.515,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"inescutcheon","t":"argent","p":"e","size":1.5}],"shield":"oldFrench"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3954,"x":207,"y":529.58,"i":453,"state":1,"culture":2,"name":"Longshing","feature":23,"capital":0,"population":0.899,"type":"Generic","coa":{"t1":"argent","division":{"division":"perChevron","t":"gules","line":"nebuly"},"charges":[{"charge":"grapeBunch","t":"sable","p":"bdefh","t2":"sable","t3":"sable","divided":"counter","size":0.4}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6263,"x":1438.58,"y":725.08,"i":454,"state":4,"culture":15,"name":"Lampsamei","feature":26,"capital":0,"population":11.323,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"chief","t":"sable","line":"dovetailed"}],"charges":[{"charge":"roundel","t":"argent","p":"abc","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":1372,"x":1027.09,"y":247.11,"i":455,"state":12,"culture":15,"name":"Aklesmos","feature":2,"capital":0,"population":1.618,"type":"Generic","coa":{"t1":"sable","ordinaries":[{"ordinary":"piles","t":"argent"}],"charges":[{"charge":"frog","t":"or","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7336,"x":1406.67,"y":831.34,"i":456,"state":10,"culture":7,"name":"Akadakecs","feature":26,"capital":0,"port":42,"population":0.62,"type":"Naval","coa":{"t1":"or","ordinaries":[{"ordinary":"pale","t":"gules","line":"straight"}],"charges":[{"charge":"monk","t":"or","p":"beh","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":470,"x":708.46,"y":142.15,"i":457,"state":13,"culture":12,"name":"Barland","feature":2,"capital":0,"population":4.893,"type":"River","coa":{"t1":"sable","charges":[{"charge":"skull2","t":"argent","p":"e","size":1.5}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5536,"x":1494.37,"y":648.95,"i":458,"state":4,"culture":15,"name":"Leontiochro","feature":26,"capital":0,"population":7.728,"type":"Generic","coa":{"t1":"or","division":{"division":"perFess","t":"gules","line":"invecked"},"charges":[{"charge":"bone","t":"purpure","p":"e","divided":"counter","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6294,"x":184.98,"y":738.83,"i":459,"state":1,"culture":2,"name":"Mauma","feature":23,"capital":0,"population":1.01,"type":"Highland","coa":{"t1":"gules","division":{"division":"perFess","t":"argent","line":"wavy"},"charges":[{"charge":"apple","t":"or","p":"k","t2":"or","size":0.7},{"charge":"crossTemplar","t":"purpure","p":"n","size":0.7}],"shield":"heater"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6565,"x":529.25,"y":758.16,"i":460,"state":9,"culture":4,"name":"Vintia","feature":23,"capital":0,"population":1.555,"type":"River","coa":{"t1":"azure","charges":[{"charge":"talbotSejant","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"renaissance"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":2319,"x":262.14,"y":376.8,"i":461,"state":15,"culture":1,"name":"Kesztlandor","feature":19,"capital":0,"port":1,"population":1.902,"type":"Naval","coa":{"t1":"gules","charges":[{"charge":"shipWheel","t":"argent","p":"kn","size":0.7}],"shield":"oval"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5153,"x":1378.41,"y":616.8,"i":462,"state":8,"culture":11,"name":"Lukhohau","feature":26,"capital":0,"population":2.118,"type":"Generic","coa":{"t1":"azure","division":{"division":"perCross","t":"honeycombed-vert-argent","line":"straight"},"charges":[{"charge":"trianglePierced","t":"or","p":"j","size":0.6},{"charge":"camel","t":"argent","p":"l","size":0.6},{"charge":"mullet4","t":"or","p":"m","size":0.6},{"charge":"lionPassantGuardant","t":"or","p":"o","size":0.6}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":2126,"x":460.4,"y":347.2,"i":463,"state":3,"culture":12,"name":"Lenesmy","feature":2,"capital":0,"population":1.647,"type":"Hunting","coa":{"t1":"gules","division":{"division":"perBendSinister","t":"or","line":"straight"},"ordinaries":[{"ordinary":"fessDoubleCotissed","t":"argent","line":"straight"}],"charges":[{"charge":"triangle","t":"vert","p":"def","size":0.4}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":5422,"x":1514.59,"y":641.96,"i":464,"state":8,"culture":15,"name":"Heleutha","feature":26,"capital":0,"population":5.056,"type":"Generic","coa":{"t1":"sable","charges":[{"charge":"maces","t":"argent","p":"jln","t2":"argent","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4777,"x":511.19,"y":594.34,"i":465,"state":3,"culture":16,"name":"Waldt","feature":23,"capital":0,"population":2.247,"type":"Generic","coa":{"t1":"gules","division":{"division":"perCross","t":"argent","line":"straight"},"charges":[{"charge":"dove","t":"argent","p":"j","t2":"argent","size":0.6},{"charge":"annulet","t":"gules","p":"l","size":0.6},{"charge":"sun","t":"azure","p":"m","size":0.6},{"charge":"boarRampant","t":"argent","p":"o","size":0.6}],"shield":"spanish"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4858,"x":1441.07,"y":589.91,"i":466,"state":8,"culture":15,"name":"Egita","feature":26,"capital":0,"population":1.659,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"lochaberAxe","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6994,"x":1488.22,"y":793.28,"i":467,"state":5,"culture":8,"name":"Rench","feature":26,"capital":0,"population":8.34,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"cavalier","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"heater"},"citadel":1,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5001,"x":1312.47,"y":601.04,"i":468,"state":18,"culture":11,"name":"Lukpaigong","feature":26,"capital":0,"population":5.565,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"sabre","t":"gules","p":"e","t2":"gules","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":4444,"x":416.7,"y":562.88,"i":469,"state":16,"culture":16,"name":"Kupen","feature":23,"capital":0,"population":1.025,"type":"Generic","coa":{"t1":"palyBendy-azure-or","division":{"division":"gyronny","t":"argent"},"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5200,"x":237.21,"y":631.45,"i":470,"state":1,"culture":2,"name":"Yonleitoy","feature":23,"capital":0,"population":0.835,"type":"Generic","coa":{"t1":"bendy-or-azure","division":{"division":"perPale","t":"sable","line":"straight"},"shield":"heater"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"fort"},{"cell":3348,"x":357.28,"y":482.58,"i":471,"state":15,"culture":12,"name":"Hrafjordur","feature":23,"capital":0,"port":1,"population":0.864,"type":"Naval","coa":{"t1":"or","charges":[{"charge":"anchor","t":"gules","p":"e","size":1.5}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7440,"x":1387.77,"y":841.96,"i":472,"state":10,"culture":7,"name":"Asvalany","feature":26,"capital":0,"population":0.54,"type":"River","coa":{"t1":"chequy-or-vert","division":{"division":"perSaltire","t":"sable"},"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5939,"x":306.45,"y":704.67,"i":473,"state":1,"culture":2,"name":"Sakyuehoi","feature":23,"capital":0,"population":1.079,"type":"River","coa":{"t1":"or","charges":[{"charge":"rustre","t":"gules","p":"e","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":3107,"x":262.8,"y":464.1,"i":474,"state":15,"culture":13,"name":"Cornonimbri","feature":23,"capital":0,"population":8.272,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"dragonPassant","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"swiss"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5667,"x":1583.61,"y":666.78,"i":475,"state":7,"culture":15,"name":"Naucrama","feature":26,"capital":0,"population":1.108,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"tower","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6392,"x":1531,"y":735.85,"i":476,"state":7,"culture":8,"name":"Neuhesen","feature":26,"capital":0,"population":8.93,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"hand","t":"gules","p":"kn","size":0.7}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6760,"x":1472.69,"y":774.48,"i":477,"state":5,"culture":8,"name":"Herdorf","feature":26,"capital":0,"population":1.459,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"lanceWithBanner","t":"azure","p":"e","t2":"azure","t3":"azure","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":2072,"x":1036.31,"y":325.14,"i":478,"state":12,"culture":15,"name":"Capapoli","feature":2,"capital":0,"population":1.286,"type":"Generic","coa":{"t1":"bendy-argent-sable","charges":[{"charge":"duck","t":"azure","p":"e","t2":"azure","t3":"azure","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":6558,"x":443.77,"y":758.81,"i":479,"state":9,"culture":14,"name":"Throna","feature":23,"capital":0,"population":5.601,"type":"Generic","coa":{"t1":"gules","division":{"division":"perPile","t":"or","line":"straight"},"charges":[{"charge":"lizard","t":"argent","p":"e","divided":"counter","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4253,"x":1642.93,"y":541.86,"i":480,"state":20,"culture":15,"name":"Athmotonti","feature":26,"capital":0,"population":6.445,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"mullet6Faceted","t":"sable","p":"acegi","size":0.4}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6678,"x":396.9,"y":768.06,"i":481,"state":9,"culture":16,"name":"Lenzgraiersb","feature":23,"capital":0,"population":5.059,"type":"Generic","coa":{"t1":"purpure","ordinaries":[{"ordinary":"label","t":"argent"}],"charges":[{"charge":"buckle","t":"argent","p":"pqn","size":0.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4570,"x":1680,"y":569.32,"i":482,"state":20,"culture":15,"name":"Amphidria","feature":26,"capital":0,"population":0.822,"type":"Generic","coa":{"t1":"gules","ordinaries":[{"ordinary":"bend","t":"argent","line":"straight"}],"charges":[{"charge":"anvil","t":"sable","p":"e","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5653,"x":1418.1,"y":672.1,"i":483,"state":4,"culture":15,"name":"Akroi","feature":26,"capital":0,"population":14.814,"type":"Generic","coa":{"t1":"or","ordinaries":[{"ordinary":"orle","t":"gules"}],"charges":[{"charge":"inescutcheon","t":"purpure","p":"jleh","size":0.5},{"charge":"escallop","t":"argent","p":"jleh","size":0.25}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":6056,"x":295.45,"y":710.04,"i":484,"state":1,"culture":2,"name":"Yeung","feature":23,"capital":0,"population":0.978,"type":"River","coa":{"t1":"bendy-or-azure","division":{"division":"perPale","t":"azure","line":"straight"},"ordinaries":[{"ordinary":"pilesInPoint","t":"purpure"}],"shield":"heater"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"fort"},{"cell":5816,"x":270.9,"y":690.68,"i":485,"state":1,"culture":2,"name":"Kongchun","feature":23,"capital":0,"population":4.364,"type":"River","coa":{"t1":"bendy-or-azure","charges":[{"charge":"plough","t":"sable","p":"e","t2":"sable","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":1912,"x":516.1,"y":317.6,"i":486,"state":14,"culture":12,"name":"Stalurnes","feature":2,"capital":0,"population":0.488,"type":"Lake","coa":{"t1":"azure","division":{"division":"chevronny","t":"argent"},"ordinaries":[{"ordinary":"chevronReversed","t":"or"}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4881,"x":1642.86,"y":591.52,"i":487,"state":20,"culture":15,"name":"Hemealegai","feature":26,"capital":0,"population":4.575,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"terrace","t":"argent","line":"straight"}],"charges":[{"charge":"mallet","t":"argent","p":"bdf","t2":"or","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4155,"x":610.69,"y":546.3,"i":488,"state":6,"culture":5,"name":"Oamatlan","feature":23,"capital":0,"population":1.79,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"oak","t":"azure","p":"e","t2":"azure","t3":"gules","size":1.5}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4288,"x":381.35,"y":557,"i":489,"state":16,"culture":16,"name":"Ballrech","feature":23,"capital":0,"population":1.081,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"cross","t":"azure","line":"dancetty"}],"charges":[{"charge":"crossPatteeAlisee","t":"argent","p":"beh","size":0.3}],"shield":"spanish"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4440,"x":363.59,"y":571.66,"i":490,"state":16,"culture":16,"name":"Walfach","feature":23,"capital":0,"population":4.786,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"lizard","t":"gules","p":"e","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6855,"x":1219.57,"y":781.05,"i":491,"state":10,"culture":15,"name":"Rhysa","feature":26,"capital":0,"population":3.529,"type":"Generic","coa":{"t1":"azure","division":{"division":"perCross","t":"or","line":"straight"},"charges":[{"charge":"scissors2","t":"argent","p":"j","size":0.6},{"charge":"goat","t":"gules","p":"l","size":0.6},{"charge":"armEmbowedVambraced","t":"gules","p":"m","size":0.6},{"charge":"inescutcheon","t":"argent","p":"o","size":0.6}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3346,"x":334.54,"y":495.62,"i":492,"state":15,"culture":12,"name":"Leivik","feature":23,"capital":0,"port":1,"population":12.955,"type":"Naval","coa":{"t1":"gules","charges":[{"charge":"dolphin","t":"or","p":"e","t2":"or","size":1.5}],"shield":"oldFrench"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":7053,"x":579.62,"y":800.93,"i":493,"state":11,"culture":14,"name":"Methostos","feature":23,"capital":0,"population":3.523,"type":"Generic","coa":{"t1":"sable","charges":[{"charge":"stagPassant","t":"or","p":"jln","t2":"or","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3897,"x":1368.6,"y":518.31,"i":494,"state":8,"culture":15,"name":"Tholis","feature":26,"capital":0,"population":0.807,"type":"Generic","coa":{"t1":"or","ordinaries":[{"ordinary":"chief","t":"sable","line":"dragonTeeth"}],"charges":[{"charge":"archer","t":"gules","p":"emo","t2":"gules","t3":"gules","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":3988,"x":485.44,"y":531.39,"i":495,"state":17,"culture":16,"name":"Tubenmaberg","feature":23,"capital":0,"population":1.157,"type":"Generic","coa":{"t1":"purpure","ordinaries":[{"ordinary":"pale","t":"argent","line":"escartely"}],"charges":[{"charge":"crosslet","t":"gules","p":"beh","size":0.5}],"shield":"spanish"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3384,"x":605.17,"y":486.8,"i":496,"state":6,"culture":5,"name":"Tenochtepec","feature":23,"capital":0,"population":1.468,"type":"Generic","coa":{"t1":"sable","ordinaries":[{"ordinary":"pallReversed","t":"or"}],"charges":[{"charge":"ramHeadErased","t":"argent","p":"acz","t2":"argent","t3":"argent","size":0.4}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4262,"x":68.25,"y":560.28,"i":497,"state":1,"culture":2,"name":"Gochauping","feature":23,"capital":0,"population":5.193,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"inescutcheon","t":"vert","p":"jln","size":0.7},{"charge":"shears","t":"or","p":"jln","size":0.35}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4255,"x":1666.06,"y":548.15,"i":498,"state":20,"culture":15,"name":"Poreos","feature":26,"capital":0,"population":4.218,"type":"Generic","coa":{"t1":"gules","ordinaries":[{"ordinary":"pale","t":"argent","line":"straight"}],"charges":[{"charge":"mitre","t":"vert","p":"kn","t2":"vert","t3":"or","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6142,"x":1484.54,"y":713.33,"i":499,"state":4,"culture":15,"name":"Temnos","feature":26,"capital":0,"population":11.005,"type":"Generic","coa":{"t1":"gules","division":{"division":"perPale","t":"or","line":"straight"},"ordinaries":[{"ordinary":"saltire","t":"argent","line":"straight"}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":2032,"x":567.44,"y":330.75,"i":500,"state":14,"culture":12,"name":"Sodinker","feature":2,"capital":0,"population":4.458,"type":"Generic","coa":{"t1":"sable","ordinaries":[{"ordinary":"chevronReversed","t":"argent"}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5308,"x":1580.82,"y":628.1,"i":501,"state":20,"culture":15,"name":"Olesmecena","feature":26,"capital":0,"population":1.193,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"fess","t":"azure","line":"straight"}],"charges":[{"charge":"mullet6","t":"azure","p":"abc","size":0.5}],"shield":"gonfalon"},"citadel":1,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6084,"x":579.23,"y":712.1,"i":502,"state":19,"culture":14,"name":"Smyrgan","feature":23,"capital":0,"population":9.09,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"spear","t":"or","p":"e","t2":"or","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":4007,"x":671.46,"y":532.67,"i":503,"state":6,"culture":5,"name":"Tulacacatlan","feature":23,"capital":0,"port":1,"population":1.624,"type":"Naval","coa":{"t1":"argent","ordinaries":[{"ordinary":"bordure","t":"purpure"}],"charges":[{"charge":"helmetZischagge","t":"or","p":"ABCDEFGHIJKL","size":0.18}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6429,"x":364.87,"y":744.99,"i":504,"state":16,"culture":3,"name":"Olafsf","feature":23,"capital":0,"population":1.245,"type":"River","coa":{"t1":"or","division":{"division":"perPale","t":"azure","line":"straight"},"charges":[{"charge":"lochaberAxe","t":"vert","p":"p","t2":"vert","size":0.7},{"charge":"lionPassantGuardant","t":"argent","p":"q","size":0.7}],"shield":"fantasy3"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4260,"x":45.04,"y":554.25,"i":505,"state":1,"culture":2,"name":"Lokcheung","feature":23,"capital":0,"population":3.56,"type":"Lake","coa":{"t1":"vert","division":{"division":"gyronny","t":"argent"},"charges":[{"charge":"pike","t":"or","p":"jln","t2":"or","divided":"counter","size":0.7}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7230,"x":1508.76,"y":815.14,"i":506,"state":5,"culture":8,"name":"Schal","feature":26,"capital":0,"population":4.656,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"chevron","t":"gules"}],"charges":[{"charge":"laurelWreath2","t":"sable","p":"e","size":1.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5895,"x":1430,"y":691.37,"i":507,"state":4,"culture":15,"name":"Skylgipomis","feature":26,"capital":0,"population":9.202,"type":"Generic","coa":{"t1":"or","ordinaries":[{"ordinary":"bar","t":"azure","line":"firTrees"}],"charges":[{"charge":"bridge","t":"or","p":"def","size":0.3}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6745,"x":1294.18,"y":768.57,"i":508,"state":10,"culture":15,"name":"Myrnas","feature":26,"capital":0,"population":2.075,"type":"Generic","coa":{"t1":"sable","charges":[{"charge":"scale","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3141,"x":535.55,"y":462.42,"i":509,"state":3,"culture":5,"name":"Nolotlan","feature":23,"capital":0,"population":4.037,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"griffinPassant","t":"gules","p":"e","t2":"purpure","t3":"sable","size":1.5}],"shield":"wedged"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7434,"x":1315.38,"y":843.91,"i":510,"state":10,"culture":15,"name":"Salolympo","feature":26,"capital":0,"port":46,"population":2.917,"type":"Naval","coa":{"t1":"pally-argent-gules","charges":[{"charge":"cannon","t":"purpure","p":"e","t2":"purpure","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":395,"x":715.8,"y":133.18,"i":511,"state":13,"culture":12,"name":"Bugardur","feature":2,"capital":0,"port":1,"population":0.521,"type":"Naval","coa":{"t1":"gules","division":{"division":"perChevron","t":"or","line":"straight"},"charges":[{"charge":"sword","t":"argent","p":"jlh","t2":"argent","divided":"counter","size":0.7}],"shield":"oldFrench"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"trading_post"},{"cell":6025,"x":1552.41,"y":696.36,"i":512,"state":7,"culture":15,"name":"Imblalory","feature":26,"capital":0,"population":3.01,"type":"River","coa":{"t1":"azure","ordinaries":[{"ordinary":"fessCotissed","t":"or","line":"straight"}],"charges":[{"charge":"mullet7","t":"azure","p":"def","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4286,"x":350.29,"y":553.9,"i":513,"state":16,"culture":16,"name":"Onadenzell","feature":23,"capital":0,"population":1.097,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"wyvernWithWingsDisplayed","t":"gules","p":"abc","t2":"purpure","t3":"gules","size":0.5}],"shield":"spanish"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6919,"x":396.9,"y":793.78,"i":514,"state":9,"culture":16,"name":"Schlibesen","feature":23,"capital":0,"population":1.861,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"fess","t":"or","line":"straight"}],"charges":[{"charge":"tower","t":"azure","p":"e","t2":"azure","size":0.7}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5155,"x":1405.03,"y":613.04,"i":515,"state":8,"culture":11,"name":"Chuehoiwai","feature":26,"capital":0,"population":1.26,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"chevron","t":"azure"}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":1804,"x":521.61,"y":307.89,"i":516,"state":14,"culture":12,"name":"Reykken","feature":2,"capital":0,"population":4.709,"type":"Lake","coa":{"t1":"argent","ordinaries":[{"ordinary":"gemelle","t":"vert","line":"straight"}],"charges":[{"charge":"hook","t":"purpure","p":"abc","size":0.5}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6271,"x":1529.01,"y":717.16,"i":517,"state":7,"culture":8,"name":"Dunberg","feature":26,"capital":0,"population":10.402,"type":"Generic","coa":{"t1":"counterVair-vert-argent","division":{"division":"perFess","t":"or","line":"straight"},"charges":[{"charge":"fountain","t":"azure","p":"k","size":0.7},{"charge":"wolfStatant","t":"gules","p":"n","size":0.7}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":6425,"x":320.55,"y":744.02,"i":518,"state":16,"culture":16,"name":"Allin","feature":23,"capital":0,"population":0.983,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"key","t":"argent","p":"e","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3491,"x":308.15,"y":491.38,"i":519,"state":15,"culture":12,"name":"Nesmarda","feature":23,"capital":0,"population":3.475,"type":"Generic","coa":{"t1":"gules","ordinaries":[{"ordinary":"pall","t":"or"}],"charges":[{"charge":"key","t":"gules","p":"e","size":0.7}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5365,"x":576.31,"y":644.04,"i":520,"state":19,"culture":14,"name":"Topotigost","feature":23,"capital":0,"population":1.672,"type":"Generic","coa":{"t1":"or","ordinaries":[{"ordinary":"bordure","t":"vert"}],"charges":[{"charge":"crossPatriarchal","t":"azure","p":"e","size":1.1}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5801,"x":106.22,"y":685.42,"i":521,"state":1,"culture":2,"name":"Hoichi","feature":23,"capital":0,"port":34,"population":0.68,"type":"Naval","coa":{"t1":"bendy-or-azure","ordinaries":[{"ordinary":"bendlet","t":"vert","line":"straight"}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7158,"x":483.13,"y":819.85,"i":522,"state":9,"culture":14,"name":"Pyrteralydo","feature":23,"capital":0,"population":5.312,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"rustre","t":"argent","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4844,"x":1326.84,"y":593.26,"i":523,"state":18,"culture":11,"name":"Samtsaunyi","feature":26,"capital":0,"population":8.96,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"lymphad","t":"gules","p":"e","t2":"gules","t3":"gules","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":2129,"x":477.66,"y":346.71,"i":524,"state":3,"culture":12,"name":"Vevelstad","feature":2,"capital":0,"port":1,"population":1.903,"type":"Naval","coa":{"t1":"azure","division":{"division":"perPale","t":"or","line":"nebuly"},"charges":[{"charge":"snowflake","t":"argent","p":"e","divided":"counter","size":1.5}],"shield":"oldFrench"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6969,"x":1180.23,"y":791.69,"i":525,"state":10,"culture":15,"name":"Athroryro","feature":26,"capital":0,"port":1,"population":0.534,"type":"Naval","coa":{"t1":"azure","charges":[{"charge":"bookClosed","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":1115,"x":522.55,"y":216.36,"i":526,"state":13,"culture":12,"name":"Hutodoy","feature":2,"capital":0,"port":1,"population":3.889,"type":"Naval","coa":{"t1":"sable","charges":[{"charge":"dragonRampant","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5436,"x":1679.44,"y":635.05,"i":527,"state":20,"culture":15,"name":"Sespiantos","feature":26,"capital":0,"population":3.839,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"lochaberAxe","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7167,"x":589.01,"y":814.88,"i":528,"state":11,"culture":14,"name":"Zakroros","feature":23,"capital":0,"population":5.024,"type":"Generic","coa":{"t1":"ermine-argent-sable-smaller","division":{"division":"perPale","t":"gules","line":"straight"},"ordinaries":[{"ordinary":"bendSinister","t":"azure","line":"straight"}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3714,"x":760.33,"y":510.8,"i":529,"state":6,"culture":5,"name":"Tecatitlan","feature":2,"capital":0,"population":3.011,"type":"Generic","coa":{"t1":"sable","charges":[{"charge":"bridge","t":"or","p":"e","size":1.5}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5406,"x":1369.55,"y":640.06,"i":530,"state":8,"culture":11,"name":"Shamshalius","feature":26,"capital":0,"population":1.024,"type":"Generic","coa":{"t1":"sable","charges":[{"charge":"wheel","t":"or","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3101,"x":210.6,"y":457.1,"i":531,"state":15,"culture":13,"name":"Vintesium","feature":23,"capital":0,"population":3.882,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"rabbitSejant","t":"or","p":"e","t2":"or","size":1.5}],"shield":"swiss"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5589,"x":368.95,"y":664.92,"i":532,"state":16,"culture":16,"name":"Gorwolberg","feature":23,"capital":0,"population":2.163,"type":"Generic","coa":{"t1":"argent","division":{"division":"perChevronReversed","t":"azure","line":"straight"},"charges":[{"charge":"armEmbowedHoldingSabre","t":"vert","p":"mok","t2":"sable","t3":"vert","divided":"counter","size":0.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6059,"x":326.04,"y":705.7,"i":533,"state":16,"culture":16,"name":"Gusachlin","feature":23,"capital":0,"population":2.506,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"eagle","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7218,"x":1410.87,"y":826.8,"i":534,"state":4,"culture":8,"name":"Grafen","feature":26,"capital":0,"port":42,"population":4.979,"type":"Naval","coa":{"t1":"gules","ordinaries":[{"ordinary":"bendSinister","t":"argent","line":"invecked"}],"charges":[{"charge":"scaleImbalanced","t":"argent","p":"a","t2":"argent","size":0.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":2728,"x":450.9,"y":411.9,"i":535,"state":3,"culture":5,"name":"Tlalma","feature":23,"capital":0,"population":0.322,"type":"Generic","coa":{"t1":"argent","division":{"division":"perFess","t":"azure","line":"dragonTeeth"},"charges":[{"charge":"shears","t":"vert","p":"e","divided":"counter","size":1.5}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5068,"x":327.74,"y":616.81,"i":536,"state":16,"culture":16,"name":"Lautach","feature":23,"capital":0,"population":0.868,"type":"Generic","coa":{"t1":"sable","division":{"division":"perChevronReversed","t":"argent","line":"barby"},"charges":[{"charge":"inescutcheon","t":"or","p":"dfh","size":0.5},{"charge":"trianglePierced","t":"azure","p":"dfh","size":0.25}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5142,"x":1308.87,"y":610.81,"i":537,"state":18,"culture":11,"name":"Keityeun","feature":26,"capital":0,"population":3.987,"type":"Generic","coa":{"t1":"masoned-or-sable","charges":[{"charge":"lymphad","t":"azure","p":"e","t2":"azure","t3":"azure","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4751,"x":227.81,"y":591.6,"i":538,"state":1,"culture":2,"name":"Namshan","feature":23,"capital":0,"population":13.807,"type":"Generic","coa":{"t1":"azure","division":{"division":"chevronny","t":"argent"},"charges":[{"charge":"mullet8","t":"or","p":"abcdefgzi","divided":"counter","size":0.3}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":6894,"x":1634.71,"y":784.25,"i":539,"state":20,"culture":8,"name":"Schopold","feature":26,"capital":0,"population":14.892,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"terrace","t":"vert","line":"arched"}],"charges":[{"charge":"mullet6","t":"azure","p":"e","size":1.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":5150,"x":1364.46,"y":610.86,"i":540,"state":8,"culture":11,"name":"Kingonling","feature":26,"capital":0,"population":2.375,"type":"Generic","coa":{"t1":"azure","division":{"division":"perFess","t":"argent","line":"nebuly"},"charges":[{"charge":"dragonfly","t":"or","p":"kn","t2":"or","divided":"counter","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":5297,"x":1451.26,"y":632.12,"i":541,"state":8,"culture":15,"name":"Pithymnossa","feature":26,"capital":0,"population":5.416,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"unicornRampant","t":"or","p":"e","t2":"or","t3":"or","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":2545,"x":529.69,"y":392.05,"i":542,"state":3,"culture":5,"name":"Exihuapepec","feature":2,"capital":0,"port":1,"population":2.386,"type":"Naval","coa":{"t1":"chequy-argent-gules","ordinaries":[{"ordinary":"terrace","t":"azure","line":"straight"}],"charges":[{"charge":"shipWheel","t":"azure","p":"def","size":0.5}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6699,"x":637.23,"y":766.52,"i":543,"state":19,"culture":14,"name":"Kyrodolynt","feature":23,"capital":0,"population":6.651,"type":"Generic","coa":{"t1":"gules","ordinaries":[{"ordinary":"canton","t":"argent"}],"charges":[{"charge":"triangle","t":"vert","p":"y","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":1009,"x":619.99,"y":214.32,"i":544,"state":13,"culture":12,"name":"Halvavik","feature":2,"capital":0,"port":1,"population":0.735,"type":"Naval","coa":{"t1":"pappellony-argent-vert","ordinaries":[{"ordinary":"orle","t":"gules","line":"straight"}],"charges":[{"charge":"escallop","t":"azure","p":"ken","size":0.4}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4279,"x":272.38,"y":554.54,"i":545,"state":1,"culture":3,"name":"Ofotengar","feature":23,"capital":0,"population":4.539,"type":"Generic","coa":{"t1":"gules","ordinaries":[{"ordinary":"chief","t":"argent","line":"straight"}],"charges":[{"charge":"parrot","t":"gules","p":"abc","t2":"or","size":0.5}],"shield":"fantasy3"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5347,"x":304.57,"y":637.63,"i":546,"state":16,"culture":3,"name":"Ogstogenvi","feature":23,"capital":0,"population":1.753,"type":"Generic","coa":{"t1":"argent","division":{"division":"perSaltire","t":"azure"},"charges":[{"charge":"mullet","t":"gules","p":"bhdf","divided":"counter","size":0.5}],"shield":"fantasy3"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5474,"x":396.12,"y":653.9,"i":547,"state":16,"culture":3,"name":"Hvamstan","feature":23,"capital":0,"population":7.41,"type":"Generic","coa":{"t1":"sable","division":{"division":"perSaltire","t":"or"},"charges":[{"charge":"mullet6","t":"argent","p":"e","divided":"counter","size":1.5}],"shield":"fantasy3"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3500,"x":356.89,"y":500.25,"i":548,"state":15,"culture":12,"name":"Bosting","feature":23,"capital":0,"population":3.84,"type":"Generic","coa":{"t1":"vert","division":{"division":"perPale","t":"vair-azure-argent","line":"straight"},"charges":[{"charge":"bow","t":"or","p":"p","size":0.7},{"charge":"escallop","t":"or","p":"q","size":0.7}],"shield":"oldFrench"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5658,"x":1477,"y":667.24,"i":549,"state":4,"culture":15,"name":"Ampia","feature":26,"capital":0,"population":1.218,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"anvil","t":"gules","p":"jln","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4568,"x":1655.16,"y":570.73,"i":550,"state":20,"culture":15,"name":"Psychrera","feature":26,"capital":0,"population":2.545,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"chief","t":"argent","line":"straight"}],"charges":[{"charge":"griffinRampant","t":"gules","p":"abc","t2":"gules","t3":"argent","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5350,"x":345.31,"y":636.6,"i":551,"state":16,"culture":16,"name":"Tieden","feature":23,"capital":0,"population":1.101,"type":"Generic","coa":{"t1":"gules","ordinaries":[{"ordinary":"fessDoubleCotissed","t":"or","line":"straight"}],"charges":[{"charge":"heart","t":"gules","p":"def","size":0.4}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6750,"x":1354.42,"y":768.66,"i":552,"state":10,"culture":15,"name":"Bytronia","feature":26,"capital":0,"population":2.081,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"bendSinister","t":"argent","line":"straight"}],"charges":[{"charge":"lochaberAxe","t":"gules","p":"lem","t2":"gules","size":0.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5638,"x":1293.63,"y":660.5,"i":553,"state":18,"culture":11,"name":"Waichai","feature":26,"capital":0,"population":5.233,"type":"River","coa":{"t1":"argent","ordinaries":[{"ordinary":"bendSinister","t":"gules","line":"straight"}],"charges":[{"charge":"raven","t":"sable","p":"lem","t2":"sable","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5933,"x":235.92,"y":701.23,"i":554,"state":1,"culture":2,"name":"Hoichue","feature":23,"capital":0,"population":1.13,"type":"Highland","coa":{"t1":"or","charges":[{"charge":"grenade","t":"gules","p":"jlh","t2":"azure","size":0.7}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":576,"x":1019.78,"y":150.22,"i":555,"state":12,"culture":15,"name":"Smyrgan","feature":2,"capital":0,"port":1,"population":0.546,"type":"Naval","coa":{"t1":"or","charges":[{"charge":"hourglass","t":"sable","p":"e","t2":"azure","t3":"sable","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6492,"x":1270.07,"y":741.57,"i":556,"state":10,"culture":15,"name":"Histhe","feature":26,"capital":0,"population":6.976,"type":"Generic","coa":{"t1":"vert","charges":[{"charge":"sceptre","t":"argent","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5475,"x":412.77,"y":654.17,"i":557,"state":16,"culture":16,"name":"Rasbach","feature":23,"capital":0,"population":4.155,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"bell","t":"sable","p":"e","t2":"sable","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6427,"x":345.41,"y":745.8,"i":558,"state":16,"culture":16,"name":"Dober","feature":23,"capital":0,"population":14.97,"type":"River","coa":{"t1":"argent","ordinaries":[{"ordinary":"pileInBend","t":"vert"}],"charges":[{"charge":"crossHummetty","t":"vert","p":"cg","size":0.7}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":6453,"x":604.99,"y":751.19,"i":559,"state":11,"culture":14,"name":"Argiphico","feature":23,"capital":0,"population":1.106,"type":"Generic","coa":{"t1":"gules","division":{"division":"perPale","t":"argent","line":"straight"},"charges":[{"charge":"ouroboros","t":"or","p":"p","size":0.7},{"charge":"fly","t":"sable","p":"q","size":0.7}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5827,"x":400.1,"y":683.26,"i":560,"state":16,"culture":3,"name":"Raumendyr","feature":23,"capital":0,"population":8.291,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"scrollClosed","t":"sable","p":"jeo","t2":"sable","size":0.5}],"shield":"fantasy3"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4597,"x":321.73,"y":580.21,"i":561,"state":16,"culture":16,"name":"Rheinwenalb","feature":23,"capital":0,"population":6.49,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"crossClechy","t":"azure","p":"e","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":1050,"x":1059.81,"y":211.75,"i":562,"state":12,"culture":15,"name":"Exandria","feature":2,"capital":0,"population":2.152,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"ladder","t":"argent","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5722,"x":601.88,"y":672.53,"i":563,"state":19,"culture":14,"name":"Phaiontita","feature":23,"capital":0,"population":4.29,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"hatchet","t":"or","p":"e","t2":"or","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5935,"x":254.83,"y":694.84,"i":564,"state":1,"culture":2,"name":"Chiwai","feature":23,"capital":0,"population":3.379,"type":"River","coa":{"t1":"gules","charges":[{"charge":"lionRampant","t":"argent","p":"bdefh","t2":"argent","t3":"argent","size":0.4}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6600,"x":1168.39,"y":763.94,"i":565,"state":10,"culture":15,"name":"Orea","feature":35,"capital":0,"port":1,"population":3.202,"type":"Naval","coa":{"t1":"bendy-purpure-or","charges":[{"charge":"rapier","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":2148,"x":640.28,"y":338.49,"i":566,"state":13,"culture":12,"name":"Bostad","feature":2,"capital":0,"population":2.451,"type":"River","coa":{"t1":"gules","charges":[{"charge":"stagPassant","t":"or","p":"jln","t2":"or","size":0.7}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3946,"x":115.12,"y":525.57,"i":567,"state":1,"culture":2,"name":"Daknamhong","feature":23,"capital":0,"port":1,"population":4.405,"type":"Naval","coa":{"t1":"or","ordinaries":[{"ordinary":"bordure","t":"purpure"}],"charges":[{"charge":"crossFleury","t":"or","p":"ABCDEFGHIJKL","size":0.18}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4696,"x":1357.88,"y":583.81,"i":568,"state":8,"culture":11,"name":"Hoheongtai","feature":26,"capital":0,"population":5.793,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"cross","t":"gules","line":"straight"}],"charges":[{"charge":"trianglePierced","t":"or","p":"behdf","size":0.3}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6452,"x":586.99,"y":749.48,"i":569,"state":11,"culture":14,"name":"Lamphita","feature":23,"capital":0,"population":4.881,"type":"Generic","coa":{"t1":"gules","ordinaries":[{"ordinary":"chevron","t":"argent"}],"charges":[{"charge":"falcon","t":"vert","p":"ach","t2":"argent","t3":"argent","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6557,"x":437.3,"y":759.21,"i":570,"state":9,"culture":14,"name":"Thyla","feature":23,"capital":0,"population":6.791,"type":"Generic","coa":{"t1":"sable","charges":[{"charge":"flamberge","t":"argent","p":"e","t2":"or","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5315,"x":1660.82,"y":621.86,"i":571,"state":20,"culture":15,"name":"Cyzandoti","feature":26,"capital":0,"population":3.533,"type":"Generic","coa":{"t1":"gules","ordinaries":[{"ordinary":"chevronReversed","t":"argent"}],"charges":[{"charge":"mace","t":"or","p":"b","t2":"or","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4095,"x":93.92,"y":543.48,"i":572,"state":1,"culture":2,"name":"Yeung","feature":23,"capital":0,"population":7.295,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"stirrup","t":"gules","p":"abcpqh","t2":"gules","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6685,"x":487.44,"y":774.76,"i":573,"state":11,"culture":14,"name":"Skylosia","feature":23,"capital":0,"population":3.478,"type":"Generic","coa":{"t1":"vert","division":{"division":"perFess","t":"argent","line":"wavy"},"charges":[{"charge":"scrollClosed","t":"or","p":"jkl","t2":"or","divided":"counter","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4636,"x":637.79,"y":579.96,"i":574,"state":6,"culture":5,"name":"Acocan","feature":23,"capital":0,"population":3.792,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"buckle","t":"gules","p":"jeo","size":0.5}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":6818,"x":606.93,"y":785.33,"i":575,"state":11,"culture":14,"name":"Lampsos","feature":23,"capital":0,"population":5.501,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"arbalest","t":"azure","p":"e","t2":"azure","t3":"azure","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":6882,"x":1551.54,"y":784.31,"i":576,"state":7,"culture":8,"name":"Binweibach","feature":26,"capital":0,"population":6.976,"type":"Generic","coa":{"t1":"or","ordinaries":[{"ordinary":"pale","t":"gules","line":"dragonTeeth"}],"charges":[{"charge":"ramHeadErased","t":"argent","p":"beh","t2":"argent","t3":"azure","size":0.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6551,"x":367.55,"y":758.86,"i":577,"state":16,"culture":16,"name":"Rheinhau","feature":23,"capital":0,"population":7.474,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"attire","t":"azure","p":"e","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6803,"x":423.1,"y":778.79,"i":578,"state":9,"culture":14,"name":"Eurolis","feature":23,"capital":0,"population":1.692,"type":"Generic","coa":{"t1":"ermine-argent-sable","charges":[{"charge":"rose","t":"purpure","p":"e","t2":"purpure","t3":"purpure","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":3115,"x":312.16,"y":459.81,"i":579,"state":15,"culture":12,"name":"Valheim","feature":23,"capital":0,"population":2.693,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"ramHeadErased","t":"or","p":"e","t2":"or","t3":"argent","size":1.5}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6555,"x":407.77,"y":752.92,"i":580,"state":9,"culture":16,"name":"Tuter","feature":23,"capital":0,"population":2.667,"type":"River","coa":{"t1":"argent","charges":[{"charge":"elephant","t":"azure","p":"e","t2":"azure","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6800,"x":391.84,"y":780.03,"i":581,"state":9,"culture":16,"name":"Enzkirch","feature":23,"capital":0,"population":3.105,"type":"River","coa":{"t1":"argent","charges":[{"charge":"centaur","t":"sable","p":"e","t2":"sable","t3":"purpure","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":1725,"x":630.1,"y":298.63,"i":582,"state":13,"culture":12,"name":"Meneshofn","feature":2,"capital":0,"port":1,"population":1.787,"type":"Naval","coa":{"t1":"argent","charges":[{"charge":"crossOccitan","t":"gules","p":"e","size":1.5}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":7431,"x":1290.78,"y":843.9,"i":583,"state":10,"culture":15,"name":"Minarynthon","feature":26,"capital":0,"port":46,"population":1.894,"type":"Naval","coa":{"t1":"purpure","division":{"division":"perPale","t":"argent","line":"potentySinister"},"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3371,"x":499.2,"y":479.5,"i":584,"state":3,"culture":5,"name":"Zatepec","feature":23,"capital":0,"population":1.013,"type":"Generic","coa":{"t1":"or","division":{"division":"perFess","t":"azure","line":"straight"},"charges":[{"charge":"centaur","t":"vert","p":"e","t2":"vert","t3":"purpure","divided":"counter","size":1.5}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4132,"x":456.29,"y":547.97,"i":585,"state":17,"culture":16,"name":"March","feature":23,"capital":0,"population":1.706,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"key","t":"argent","p":"jln","size":0.7}],"shield":"spanish"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7023,"x":225.74,"y":806.05,"i":586,"state":1,"culture":6,"name":"Ozautlan","feature":23,"capital":0,"population":9.56,"type":"Lake","coa":{"t1":"lozengy-argent-azure-smaller","charges":[{"charge":"crossPattee","t":"vert","p":"e","size":1.5}],"shield":"round"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5784,"x":1562.45,"y":673.54,"i":587,"state":7,"culture":15,"name":"Pseiros","feature":26,"capital":0,"population":1.003,"type":"Generic","coa":{"t1":"gules","division":{"division":"perCross","t":"or","line":"engrailed"},"charges":[{"charge":"trefle","t":"argent","p":"e","divided":"counter","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5215,"x":413.53,"y":625.69,"i":588,"state":16,"culture":16,"name":"Sulzkirchin","feature":23,"capital":0,"population":1.841,"type":"Generic","coa":{"t1":"purpure","ordinaries":[{"ordinary":"chief","t":"argent","line":"straight"}],"charges":[{"charge":"scythe2","t":"sable","p":"abc","size":0.5,"sinister":1}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":3046,"x":528.39,"y":445.06,"i":589,"state":3,"culture":5,"name":"Michianitla","feature":23,"capital":0,"population":2.335,"type":"Generic","coa":{"t1":"or","division":{"division":"perFess","t":"vair-argent-purpure","line":"straight"},"charges":[{"charge":"crocodile","t":"sable","p":"k","t2":"gules","size":0.7},{"charge":"escallop","t":"azure","p":"n","size":0.7}],"shield":"wedged"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5169,"x":1542.09,"y":614.09,"i":590,"state":8,"culture":15,"name":"Bytostos","feature":26,"capital":0,"population":8.306,"type":"Generic","coa":{"t1":"sable","division":{"division":"perChevronReversed","t":"argent","line":"straight"},"charges":[{"charge":"owl","t":"or","p":"dfbh","t2":"or","divided":"counter","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4794,"x":626.48,"y":594.34,"i":591,"state":6,"culture":5,"name":"Teyanacan","feature":23,"capital":0,"population":2.067,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"pilesInPoint","t":"azure"}],"charges":[{"charge":"crossHummetty","t":"sable","p":"e","size":1.5}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6736,"x":1208.9,"y":767.82,"i":592,"state":10,"culture":15,"name":"Imbros","feature":26,"capital":0,"port":1,"population":1.496,"type":"Naval","coa":{"t1":"or","division":{"division":"perFess","t":"purpure","line":"enclavy"},"charges":[{"charge":"crossFleury","t":"sable","p":"e","divided":"counter","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5788,"x":1608.09,"y":671.78,"i":593,"state":7,"culture":15,"name":"Setos","feature":26,"capital":0,"population":4.263,"type":"Generic","coa":{"t1":"sable","charges":[{"charge":"crescent","t":"argent","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6462,"x":714.95,"y":745.4,"i":594,"state":19,"culture":14,"name":"Gortelea","feature":23,"capital":0,"population":10.153,"type":"Generic","coa":{"t1":"pally-purpure-argent-smaller","ordinaries":[{"ordinary":"bordure","t":"or"}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":5937,"x":283.45,"y":693.87,"i":595,"state":1,"culture":2,"name":"Maliushangy","feature":23,"capital":0,"population":0.908,"type":"Generic","coa":{"t1":"bendy-or-azure","division":{"division":"perPale","t":"purpure","line":"straight"},"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4924,"x":457.1,"y":607.1,"i":596,"state":17,"culture":16,"name":"Wildkirch","feature":23,"capital":0,"population":0.787,"type":"River","coa":{"t1":"or","charges":[{"charge":"hook","t":"vert","p":"e","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3092,"x":1619.64,"y":446.3,"i":597,"state":8,"culture":15,"name":"Magragios","feature":21,"capital":0,"port":1,"population":2.024,"type":"Naval","coa":{"t1":"gules","charges":[{"charge":"lochaberAxe","t":"argent","p":"jln","t2":"argent","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5272,"x":1229.83,"y":631.32,"i":598,"state":18,"culture":11,"name":"Seikinghom","feature":26,"capital":0,"port":1,"population":0.506,"type":"Naval","coa":{"t1":"gules","charges":[{"charge":"lymphad","t":"or","p":"e","t2":"argent","t3":"or","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5076,"x":419.24,"y":610.81,"i":599,"state":17,"culture":16,"name":"Rhein","feature":23,"capital":0,"population":6.472,"type":"Generic","coa":{"t1":"potent-argent-gules-smaller","ordinaries":[{"ordinary":"terrace","t":"vert","line":"straight"}],"shield":"spanish"},"citadel":1,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":1862,"x":1331.32,"y":304.42,"i":600,"state":8,"culture":15,"name":"Smyrteialia","feature":8,"capital":0,"port":1,"population":1.258,"type":"Naval","coa":{"t1":"argent","charges":[{"charge":"anchor","t":"purpure","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5767,"x":1386.93,"y":673.15,"i":601,"state":4,"culture":15,"name":"Histholis","feature":26,"capital":0,"population":2.389,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"lozengePloye","t":"argent","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":4537,"x":1428.28,"y":566.05,"i":602,"state":8,"culture":11,"name":"Lokchau","feature":26,"capital":0,"population":3.552,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"orb","t":"gules","p":"abc","t2":"gules","t3":"vert","size":0.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5460,"x":233.57,"y":652.56,"i":603,"state":1,"culture":2,"name":"Macheong","feature":23,"capital":0,"population":0.933,"type":"Generic","coa":{"t1":"sable","charges":[{"charge":"apple","t":"or","p":"kn","t2":"or","size":0.7}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":2183,"x":1011.17,"y":343.8,"i":604,"state":8,"culture":15,"name":"Skylinaras","feature":2,"capital":0,"population":0.821,"type":"Generic","coa":{"t1":"sable","ordinaries":[{"ordinary":"pall","t":"argent"}],"charges":[{"charge":"scissors","t":"argent","p":"BCKFEILGJbdmfo","size":0.18}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4449,"x":471.27,"y":564.26,"i":605,"state":17,"culture":16,"name":"Schorstad","feature":23,"capital":0,"population":3.641,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"plough","t":"gules","p":"e","t2":"gules","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6146,"x":1536.31,"y":710.35,"i":606,"state":7,"culture":15,"name":"Phais","feature":26,"capital":0,"population":1.06,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"grapeBunch","t":"purpure","p":"e","t2":"gules","t3":"purpure","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5817,"x":277.35,"y":686.61,"i":607,"state":1,"culture":2,"name":"Chung","feature":23,"capital":0,"population":5.387,"type":"River","coa":{"t1":"fusily-argent-vert","division":{"division":"perFess","t":"sable","line":"straight"},"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7035,"x":364.29,"y":807.07,"i":608,"state":9,"culture":16,"name":"Herbach","feature":23,"capital":0,"population":1.009,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"crossHummetty","t":"sable","p":"e","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5673,"x":1650.3,"y":667.34,"i":609,"state":20,"culture":15,"name":"Opolynthe","feature":26,"capital":0,"population":1.766,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"salmon","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6281,"x":1658.5,"y":722.12,"i":610,"state":20,"culture":8,"name":"Frewaldberg","feature":26,"capital":0,"population":10.703,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"peacock","t":"gules","p":"jln","t2":"gules","t3":"azure","size":0.7}],"shield":"heater"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":6423,"x":294.26,"y":749.93,"i":611,"state":16,"culture":2,"name":"Kwaiwangon","feature":23,"capital":0,"population":0.753,"type":"Generic","coa":{"t1":"plumetty-or-gules","charges":[{"charge":"camel","t":"azure","p":"e","t2":"azure","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7094,"x":1303.22,"y":807.21,"i":612,"state":10,"culture":15,"name":"Temnos","feature":26,"capital":0,"population":5.485,"type":"Highland","coa":{"t1":"gules","charges":[{"charge":"triangle","t":"argent","p":"jleh","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6194,"x":486.72,"y":715.21,"i":613,"state":9,"culture":4,"name":"Agustacori","feature":23,"capital":0,"port":1,"population":3.96,"type":"Naval","coa":{"t1":"chequy-or-azure","division":{"division":"perPile","t":"vair-vert-argent","line":"straight"},"charges":[{"charge":"plaice","t":"gules","p":"abc","t2":"gules","size":0.4}],"shield":"renaissance"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4156,"x":614.01,"y":551.31,"i":614,"state":6,"culture":5,"name":"Huacucalpan","feature":23,"capital":0,"population":7.875,"type":"River","coa":{"t1":"purpure","charges":[{"charge":"lambPassantReguardant","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":1961,"x":1033.69,"y":310.58,"i":615,"state":12,"culture":15,"name":"Halepipodo","feature":2,"capital":0,"port":1,"population":12.296,"type":"Naval","coa":{"t1":"gules","ordinaries":[{"ordinary":"terrace","t":"argent","line":"dancetty"}],"charges":[{"charge":"pike","t":"argent","p":"def","t2":"argent","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":6929,"x":520.85,"y":791.02,"i":616,"state":11,"culture":14,"name":"Mysostos","feature":23,"capital":0,"population":2.755,"type":"Generic","coa":{"t1":"sable","charges":[{"charge":"griffinPassant","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4274,"x":207.93,"y":552.8,"i":617,"state":1,"culture":2,"name":"Gotaukeng","feature":23,"capital":0,"population":4.814,"type":"Generic","coa":{"t1":"bendy-or-azure","ordinaries":[{"ordinary":"pale","t":"gules","line":"straight"}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7352,"x":1540.84,"y":832.52,"i":618,"state":5,"culture":8,"name":"Esendernheim","feature":26,"capital":0,"port":39,"population":0.753,"type":"Naval","coa":{"t1":"or","charges":[{"charge":"scissors2","t":"gules","p":"e","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7362,"x":1623.57,"y":830.45,"i":619,"state":20,"culture":8,"name":"Gagingen","feature":26,"capital":0,"population":0.858,"type":"River","coa":{"t1":"chequy-argent-gules-small","division":{"division":"perBendSinister","t":"purpure","line":"straight"},"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7112,"x":1477.89,"y":806.72,"i":620,"state":5,"culture":8,"name":"Hoche","feature":26,"capital":0,"port":42,"population":3.025,"type":"Naval","coa":{"t1":"purpure","ordinaries":[{"ordinary":"bend","t":"argent","line":"indented"}],"charges":[{"charge":"crossOrthodox","t":"purpure","p":"e","size":0.7}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":1070,"x":1377.21,"y":217.41,"i":621,"state":12,"culture":15,"name":"Opoporint","feature":8,"capital":0,"population":0.901,"type":"Hunting","coa":{"t1":"gules","ordinaries":[{"ordinary":"pall","t":"or"}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"fort"},{"cell":4704,"x":1408.24,"y":576.77,"i":622,"state":8,"culture":11,"name":"Lungling","feature":26,"capital":0,"population":5.635,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"crossHummetty","t":"or","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3244,"x":491.68,"y":468.21,"i":623,"state":3,"culture":5,"name":"Atihuatl","feature":23,"capital":0,"population":4.366,"type":"River","coa":{"t1":"argent","charges":[{"charge":"bridge2","t":"sable","p":"beh","size":0.5}],"shield":"wedged"},"citadel":1,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":3373,"x":512.1,"y":483.3,"i":624,"state":3,"culture":5,"name":"Chilotoyuelol","feature":23,"capital":0,"population":7.719,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"trowel","t":"sable","p":"e","t2":"azure","size":1.5}],"shield":"wedged"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7129,"x":1662.35,"y":810.5,"i":625,"state":20,"culture":8,"name":"Lahrwolrech","feature":26,"capital":0,"population":1.149,"type":"Generic","coa":{"t1":"pally-or-sable","charges":[{"charge":"wheel","t":"purpure","p":"e","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4126,"x":404.93,"y":545.84,"i":626,"state":16,"culture":16,"name":"Stautach","feature":23,"capital":0,"population":5.299,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"pale","t":"purpure","line":"wavy"}],"charges":[{"charge":"fleurDeLis","t":"gules","p":"y","size":0.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4283,"x":316.86,"y":556.89,"i":627,"state":16,"culture":16,"name":"Bongen","feature":23,"capital":0,"population":1.204,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"pallReversed","t":"sable"}],"charges":[{"charge":"crossHummetty","t":"argent","p":"e","size":0.7}],"shield":"spanish"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":4914,"x":348.05,"y":606.32,"i":628,"state":16,"culture":16,"name":"Acherwol","feature":23,"capital":0,"population":8.142,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"crossHummetty","t":"or","p":"e","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6064,"x":384.52,"y":704.22,"i":629,"state":16,"culture":3,"name":"Sanden","feature":23,"capital":0,"population":0.965,"type":"River","coa":{"t1":"sable","ordinaries":[{"ordinary":"mount","t":"or"}],"charges":[{"charge":"annulet","t":"or","p":"bdf","size":0.5}],"shield":"fantasy3"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5844,"x":607.28,"y":683.78,"i":630,"state":19,"culture":14,"name":"Nymphidna","feature":23,"capital":0,"population":5.519,"type":"Generic","coa":{"t1":"vert","division":{"division":"perFess","t":"argent","line":"invecked"},"charges":[{"charge":"rustre","t":"or","p":"k","size":0.7},{"charge":"crossDouble","t":"gules","p":"n","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6215,"x":684.78,"y":720.28,"i":631,"state":19,"culture":14,"name":"Pinolis","feature":23,"capital":0,"population":2.434,"type":"Generic","coa":{"t1":"or","division":{"division":"perBendSinister","t":"gules","line":"nebuly"},"charges":[{"charge":"bridge","t":"purpure","p":"jo","divided":"counter","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":3013,"x":276.47,"y":445.95,"i":632,"state":15,"culture":13,"name":"Podurum","feature":23,"capital":0,"population":3.247,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"saltire","t":"sable","line":"dragonTeeth"}],"charges":[{"charge":"bell","t":"argent","p":"e","t2":"argent","size":0.7}],"shield":"swiss"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7316,"x":1216.13,"y":829.06,"i":633,"state":10,"culture":15,"name":"Tausai","feature":26,"capital":0,"population":2.981,"type":"Highland","coa":{"t1":"azure","charges":[{"charge":"horseshoe","t":"or","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4539,"x":1443.95,"y":561.18,"i":634,"state":8,"culture":11,"name":"Wongwu","feature":26,"capital":0,"port":1,"population":1.848,"type":"Naval","coa":{"t1":"argent","ordinaries":[{"ordinary":"bendlet","t":"vert","line":"rayonne"}],"charges":[{"charge":"caravel","t":"argent","p":"joe","t2":"argent","t3":"argent","size":0.3}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7430,"x":1268.03,"y":846.61,"i":635,"state":10,"culture":15,"name":"Keleusai","feature":26,"capital":0,"population":1.842,"type":"Generic","coa":{"t1":"argent","division":{"division":"perChevronReversed","t":"gules","line":"straight"},"charges":[{"charge":"deerHeadCaboshed","t":"purpure","p":"mok","t2":"purpure","divided":"counter","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5022,"x":1474.68,"y":598.79,"i":636,"state":8,"culture":15,"name":"Throlis","feature":26,"capital":0,"port":1,"population":4.244,"type":"Naval","coa":{"t1":"argent","charges":[{"charge":"fleurDeLis","t":"sable","p":"jln","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5078,"x":446.79,"y":612.97,"i":637,"state":17,"culture":16,"name":"Schwonau","feature":23,"capital":0,"population":5.918,"type":"Generic","coa":{"t1":"bendySinister-or-sable-small","division":{"division":"perCross","t":"gules","line":"straight"},"charges":[{"charge":"pike","t":"sable","p":"j","t2":"sable","size":0.6},{"charge":"ladder","t":"argent","p":"l","size":0.6},{"charge":"scale","t":"or","p":"m","size":0.6},{"charge":"griffinRampant","t":"gules","p":"o","size":0.6}],"shield":"spanish"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4130,"x":428.9,"y":546.8,"i":638,"state":17,"culture":16,"name":"Schal","feature":23,"capital":0,"population":3.285,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"roundel","t":"argent","p":"e","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5529,"x":1422.57,"y":652.3,"i":639,"state":8,"culture":17,"name":"Mafar","feature":26,"capital":0,"population":2.088,"type":"Generic","coa":{"t1":"vert","charges":[{"charge":"bridge","t":"argent","p":"e","size":1.5}],"shield":"horsehead"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":1019,"x":685.19,"y":214.13,"i":640,"state":13,"culture":12,"name":"Snuba","feature":2,"capital":0,"population":4.321,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"trianglePierced","t":"or","p":"e","size":1.5}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5075,"x":416.01,"y":614.39,"i":641,"state":17,"culture":16,"name":"Fisch","feature":23,"capital":0,"population":2.145,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"anchor","t":"gules","p":"e","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5969,"x":638.33,"y":696.35,"i":642,"state":19,"culture":14,"name":"Titrosia","feature":23,"capital":0,"population":10.448,"type":"Generic","coa":{"t1":"sable","charges":[{"charge":"shipWheel","t":"or","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":6639,"x":1563.48,"y":754.69,"i":643,"state":7,"culture":8,"name":"Schapenheim","feature":26,"capital":0,"population":1.159,"type":"River","coa":{"t1":"azure","charges":[{"charge":"cavalier","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6480,"x":1179.21,"y":743.23,"i":644,"state":10,"culture":15,"name":"Gourmalion","feature":35,"capital":0,"population":8.707,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"spear","t":"or","p":"jln","t2":"or","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6946,"x":673.79,"y":803.43,"i":645,"state":19,"culture":14,"name":"Rhithelos","feature":23,"capital":0,"port":1,"population":2.349,"type":"Naval","coa":{"t1":"sable","division":{"division":"perCross","t":"or","line":"straight"},"charges":[{"charge":"sun","t":"argent","p":"jlmo","divided":"counter","size":0.6}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":2307,"x":1667.91,"y":350.84,"i":646,"state":8,"culture":15,"name":"Manostias","feature":21,"capital":0,"population":1.793,"type":"River","coa":{"t1":"or","charges":[{"charge":"scythe","t":"azure","p":"e","t2":"azure","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5102,"x":641.56,"y":616.76,"i":647,"state":6,"culture":5,"name":"Atetitla","feature":23,"capital":0,"port":1,"population":3.413,"type":"Naval","coa":{"t1":"gules","ordinaries":[{"ordinary":"saltireParted","t":"argent","line":"straight"}],"charges":[{"charge":"crossClechy","t":"or","p":"e","size":1.5}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6041,"x":125.53,"y":712.19,"i":648,"state":1,"culture":2,"name":"Machau","feature":23,"capital":0,"population":8.821,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"apple","t":"gules","p":"e","t2":"gules","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":742,"x":1078.87,"y":181.22,"i":649,"state":12,"culture":15,"name":"Osialion","feature":2,"capital":0,"port":1,"population":14.189,"type":"Naval","coa":{"t1":"purpure","charges":[{"charge":"deerHeadCaboshed","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":5723,"x":620.22,"y":673.95,"i":650,"state":19,"culture":14,"name":"Tithema","feature":23,"capital":0,"population":7.236,"type":"Generic","coa":{"t1":"vert","ordinaries":[{"ordinary":"chief","t":"or","line":"straight"}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":5781,"x":1518.87,"y":671.16,"i":651,"state":7,"culture":15,"name":"Mekion","feature":26,"capital":0,"population":1.07,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"anvil","t":"sable","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5202,"x":259.93,"y":622.94,"i":652,"state":1,"culture":2,"name":"Hoiwan","feature":23,"capital":0,"population":4.087,"type":"River","coa":{"t1":"argent","division":{"division":"perChevron","t":"vert","line":"urdy"},"charges":[{"charge":"crossBiparted","t":"azure","p":"e","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":2827,"x":459.95,"y":426.2,"i":653,"state":3,"culture":5,"name":"Xochiaucacac","feature":23,"capital":0,"population":4.044,"type":"Generic","coa":{"t1":"plumetty-gules-or-smaller","division":{"division":"perBend","t":"argent","line":"straight"},"shield":"wedged"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6026,"x":1557.86,"y":696.87,"i":654,"state":7,"culture":15,"name":"Nausai","feature":26,"capital":0,"population":3.53,"type":"River","coa":{"t1":"or","charges":[{"charge":"angel","t":"azure","p":"e","t2":"azure","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3390,"x":646.13,"y":486.08,"i":655,"state":6,"culture":5,"name":"Huetezotoca","feature":23,"capital":0,"port":1,"population":2.903,"type":"Naval","coa":{"t1":"gules","charges":[{"charge":"anchor","t":"argent","p":"e","size":1.5}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3018,"x":314.7,"y":453.9,"i":656,"state":15,"culture":12,"name":"Ulvstad","feature":23,"capital":0,"population":2.892,"type":"Lake","coa":{"t1":"or","division":{"division":"perPale","t":"gules","line":"dancetty"},"charges":[{"charge":"boat","t":"sable","p":"e","t2":"sable","divided":"counter","size":1.5}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":889,"x":559.61,"y":195.94,"i":657,"state":13,"culture":12,"name":"Lonstadrek","feature":2,"capital":0,"population":2.088,"type":"River","coa":{"t1":"or","charges":[{"charge":"inescutcheon","t":"vert","p":"e","size":1.5}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":1296,"x":1387.8,"y":240.5,"i":658,"state":8,"culture":15,"name":"Nympha","feature":8,"capital":0,"population":1.422,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"roundel","t":"gules","p":"jleh","size":0.5}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6799,"x":375.32,"y":782.5,"i":659,"state":9,"culture":16,"name":"Schwenausen","feature":23,"capital":0,"population":2.741,"type":"River","coa":{"t1":"argent","ordinaries":[{"ordinary":"bend","t":"gules","line":"straight"}],"charges":[{"charge":"crossSaltire","t":"or","p":"jo","size":0.7}],"shield":"spanish"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4001,"x":609.91,"y":529.11,"i":660,"state":6,"culture":5,"name":"Huepec","feature":23,"capital":0,"port":1,"population":5.843,"type":"Naval","coa":{"t1":"sable","division":{"division":"perChevronReversed","t":"or","line":"potenty"},"shield":"wedged"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4377,"x":1401.21,"y":553.22,"i":661,"state":8,"culture":11,"name":"Chuiwoning","feature":26,"capital":0,"population":2.022,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"trianglePierced","t":"argent","p":"jlh","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3009,"x":243.29,"y":455.25,"i":662,"state":15,"culture":13,"name":"Borium","feature":23,"capital":0,"port":1,"population":9.307,"type":"Naval","coa":{"t1":"sable","ordinaries":[{"ordinary":"chevron","t":"argent"}],"charges":[{"charge":"dolphin","t":"sable","p":"ach","t2":"sable","size":0.5,"sinister":1}],"shield":"swiss"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6576,"x":662.59,"y":753.06,"i":663,"state":19,"culture":14,"name":"Ampha","feature":23,"capital":0,"population":4.289,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"rustre","t":"or","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6394,"x":1555.05,"y":730.66,"i":664,"state":7,"culture":8,"name":"Griesbachlin","feature":26,"capital":0,"population":6.417,"type":"Generic","coa":{"t1":"or","division":{"division":"chevronny","t":"sable"},"charges":[{"charge":"archer","t":"gules","p":"e","t2":"gules","t3":"gules","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3495,"x":321.74,"y":490.12,"i":665,"state":15,"culture":12,"name":"Laumen","feature":23,"capital":0,"population":5.633,"type":"Generic","coa":{"t1":"purpure","ordinaries":[{"ordinary":"chevronReversed","t":"argent"}],"charges":[{"charge":"key","t":"argent","p":"b","size":0.5}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":6024,"x":1528.34,"y":701.1,"i":666,"state":7,"culture":15,"name":"Thytion","feature":26,"capital":0,"population":1.032,"type":"River","coa":{"t1":"argent","division":{"division":"perPale","t":"vert","line":"dancetty"},"charges":[{"charge":"hand","t":"azure","p":"p","size":0.7},{"charge":"horseRampant","t":"or","p":"q","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6135,"x":1403.96,"y":708.44,"i":667,"state":4,"culture":15,"name":"Argan","feature":26,"capital":0,"population":1.232,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"fan","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6318,"x":470.49,"y":734.75,"i":668,"state":9,"culture":4,"name":"Vindoma","feature":23,"capital":0,"population":1.128,"type":"Generic","coa":{"t1":"azure","charges":[{"charge":"bullPassant","t":"argent","p":"jlh","t2":"argent","t3":"argent","size":0.7}],"shield":"renaissance"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6741,"x":1251.26,"y":772.59,"i":669,"state":10,"culture":15,"name":"Peizinanag","feature":26,"capital":0,"population":1.665,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"plaice","t":"argent","p":"kn","t2":"argent","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3900,"x":1402.58,"y":516.41,"i":670,"state":8,"culture":15,"name":"Laolissa","feature":26,"capital":0,"population":6.914,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"drakkar","t":"vert","p":"e","t2":"vert","t3":"vert","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6137,"x":1422.23,"y":715.43,"i":671,"state":4,"culture":15,"name":"Rhithon","feature":26,"capital":0,"population":2.573,"type":"Generic","coa":{"t1":"or","division":{"division":"perPale","t":"purpure","line":"straight"},"charges":[{"charge":"castle2","t":"gules","p":"p","t2":"gules","t3":"gules","size":0.7},{"charge":"eagle","t":"argent","p":"q","size":0.7}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":6506,"x":1409.59,"y":744.32,"i":672,"state":4,"culture":8,"name":"Marchringen","feature":26,"capital":0,"population":3.649,"type":"Generic","coa":{"t1":"argent","division":{"division":"perChevron","t":"vert","line":"dovetailed"},"charges":[{"charge":"stirrup","t":"purpure","p":"jlh","t2":"purpure","divided":"counter","size":0.7}],"shield":"heater"},"citadel":1,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":6926,"x":482.64,"y":793.71,"i":673,"state":9,"culture":14,"name":"Taurorea","feature":23,"capital":0,"population":5.64,"type":"River","coa":{"t1":"purpure","ordinaries":[{"ordinary":"bendletSinister","t":"or","line":"embattledGrady"}],"charges":[{"charge":"mulletFaceted","t":"sable","p":"lem","size":0.3}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5695,"x":225.62,"y":678.15,"i":674,"state":1,"culture":2,"name":"Kwong","feature":23,"capital":0,"population":8.285,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"bend","t":"sable","line":"straight"}],"charges":[{"charge":"spear","t":"argent","p":"joe","t2":"argent","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5294,"x":1426.31,"y":633.4,"i":675,"state":8,"culture":11,"name":"Lotan","feature":26,"capital":0,"port":1,"population":0.972,"type":"Naval","coa":{"t1":"sable","division":{"division":"perFess","t":"argent","line":"straight"},"charges":[{"charge":"mullet6","t":"or","p":"k","size":0.7},{"charge":"griffinRampant","t":"gules","p":"n","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4139,"x":499.58,"y":544.57,"i":676,"state":3,"culture":5,"name":"Huascahuilco","feature":23,"capital":0,"port":1,"population":1.114,"type":"Naval","coa":{"t1":"purpure","division":{"division":"perChevron","t":"argent","line":"straight"},"charges":[{"charge":"elephantHeadErased","t":"or","p":"dfk","t2":"or","divided":"counter","size":0.5}],"shield":"wedged"},"citadel":1,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7033,"x":346,"y":810.18,"i":677,"state":9,"culture":16,"name":"Wienau","feature":23,"capital":0,"population":1.2,"type":"River","coa":{"t1":"or","ordinaries":[{"ordinary":"saltireParted","t":"purpure","line":"straight"}],"charges":[{"charge":"roundel2","t":"or","p":"e","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5231,"x":573.73,"y":635.89,"i":678,"state":19,"culture":14,"name":"Tauros","feature":23,"capital":0,"port":1,"population":8.654,"type":"Naval","coa":{"t1":"azure","ordinaries":[{"ordinary":"terrace","t":"argent","line":"arched"}],"charges":[{"charge":"armillarySphere","t":"argent","p":"bdf","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5205,"x":293.39,"y":629.55,"i":679,"state":1,"culture":3,"name":"Snubaku","feature":23,"capital":0,"population":3.214,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"lymphad","t":"or","p":"e","t2":"or","t3":"or","size":1.5}],"shield":"fantasy3"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5780,"x":1514.91,"y":678.15,"i":680,"state":4,"culture":15,"name":"Sodonia","feature":26,"capital":0,"population":1,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"pileInBend","t":"azure"}],"charges":[{"charge":"maces","t":"argent","p":"e","t2":"azure","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4051,"x":1369.98,"y":528.72,"i":681,"state":8,"culture":11,"name":"Hoigongong","feature":26,"capital":0,"population":1.02,"type":"Generic","coa":{"t1":"vert","ordinaries":[{"ordinary":"chief","t":"argent","line":"straight"}],"charges":[{"charge":"greyhoundSejant","t":"vert","p":"abc","t2":"vert","t3":"or","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5309,"x":1593.17,"y":628.51,"i":682,"state":20,"culture":15,"name":"Tithon","feature":26,"capital":0,"population":1.228,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"fess","t":"argent","line":"barby"}],"charges":[{"charge":"lozengeFaceted","t":"gules","p":"def","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6329,"x":588.68,"y":730.86,"i":683,"state":19,"culture":14,"name":"Gylos","feature":23,"capital":0,"population":4.156,"type":"River","coa":{"t1":"purpure","ordinaries":[{"ordinary":"pile","t":"or"}],"charges":[{"charge":"griffinRampant","t":"azure","p":"b","t2":"azure","t3":"argent","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6751,"x":1369.98,"y":765.64,"i":684,"state":10,"culture":15,"name":"Ampsamis","feature":26,"capital":0,"population":5.216,"type":"Generic","coa":{"t1":"sable","ordinaries":[{"ordinary":"bendSinister","t":"or","line":"bevilled"}],"charges":[{"charge":"billet","t":"sable","p":"e","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6995,"x":1498.46,"y":791.29,"i":685,"state":5,"culture":8,"name":"Fischlenburg","feature":26,"capital":0,"population":3.536,"type":"Generic","coa":{"t1":"masoned-argent-purpure","ordinaries":[{"ordinary":"chief","t":"gules","line":"straight"}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4604,"x":404.6,"y":578.03,"i":686,"state":16,"culture":16,"name":"Dunbach","feature":23,"capital":0,"population":10.011,"type":"Generic","coa":{"t1":"pappellony2-argent-azure","division":{"division":"gyronny","t":"gules"},"charges":[{"charge":"billet","t":"purpure","p":"e","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":4438,"x":342.69,"y":567.1,"i":687,"state":16,"culture":16,"name":"Kustaldin","feature":23,"capital":0,"population":0.859,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"bearRampant","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6313,"x":412.69,"y":737.48,"i":688,"state":9,"culture":3,"name":"Blonden","feature":23,"capital":0,"population":9.03,"type":"River","coa":{"t1":"gules","ordinaries":[{"ordinary":"bend","t":"argent","line":"straight"}],"charges":[{"charge":"rake","t":"gules","p":"e","size":0.7}],"shield":"fantasy3"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3120,"x":346.36,"y":458.48,"i":689,"state":15,"culture":12,"name":"Bliksvige","feature":23,"capital":0,"population":1.779,"type":"River","coa":{"t1":"gules","charges":[{"charge":"bridge2","t":"or","p":"kn","size":0.7}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5606,"x":633.35,"y":665.58,"i":690,"state":19,"culture":14,"name":"Lampha","feature":23,"capital":0,"port":1,"population":0.564,"type":"Naval","coa":{"t1":"azure","division":{"division":"perCross","t":"or","line":"dentilly"},"charges":[{"charge":"crossHummetty","t":"argent","p":"jl","divided":"counter","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3147,"x":596.41,"y":453.63,"i":691,"state":3,"culture":5,"name":"Mayalucapan","feature":23,"capital":0,"port":1,"population":0.449,"type":"Naval","coa":{"t1":"argent","ordinaries":[{"ordinary":"fess","t":"gules","line":"straight"}],"charges":[{"charge":"scorpion","t":"argent","p":"def","size":0.5,"reversed":1}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":2022,"x":494.47,"y":335.32,"i":692,"state":14,"culture":12,"name":"Ovikadir","feature":2,"capital":0,"port":1,"population":3.248,"type":"Naval","coa":{"t1":"or","ordinaries":[{"ordinary":"pale","t":"purpure","line":"wavy"}],"charges":[{"charge":"dolphin","t":"or","p":"b","t2":"or","size":0.7}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6156,"x":1658.08,"y":713.14,"i":693,"state":20,"culture":8,"name":"Schluterten","feature":26,"capital":0,"population":4.911,"type":"Generic","coa":{"t1":"purpure","division":{"division":"perFess","t":"argent","line":"enclavy"},"charges":[{"charge":"wasp","t":"or","p":"ABCDEFGHIJKL","t2":"or","t3":"or","divided":"counter","size":0.18}],"shield":"heater"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":4910,"x":307.49,"y":606.87,"i":694,"state":16,"culture":16,"name":"Breiler","feature":23,"capital":0,"population":2.619,"type":"Generic","coa":{"t1":"argent","ordinaries":[{"ordinary":"fess","t":"azure","line":"straight"}],"charges":[{"charge":"crossHummetty","t":"argent","p":"def","size":0.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5344,"x":271.85,"y":638.5,"i":695,"state":1,"culture":2,"name":"Jiumun","feature":23,"capital":0,"population":4.745,"type":"River","coa":{"t1":"argent","division":{"division":"perPale","t":"vair-azure-or-small","line":"straight"},"charges":[{"charge":"apple","t":"purpure","p":"p","t2":"sable","size":0.7},{"charge":"cavalier","t":"purpure","p":"q","size":0.7}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5407,"x":1384.06,"y":642.92,"i":696,"state":8,"culture":17,"name":"Tinonu","feature":26,"capital":0,"population":3.618,"type":"Generic","coa":{"t1":"azure","division":{"division":"perPale","t":"or","line":"engrailed"},"charges":[{"charge":"bell","t":"argent","p":"p","t2":"argent","size":0.7},{"charge":"sabre2","t":"gules","p":"q","size":0.7}],"shield":"horsehead"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5002,"x":1316.28,"y":603.64,"i":697,"state":18,"culture":11,"name":"Onhau","feature":26,"capital":0,"population":2.562,"type":"Generic","coa":{"t1":"or","division":{"division":"perPile","t":"azure","line":"seaWaves"},"charges":[{"charge":"ratRampant","t":"gules","p":"jleh","t2":"gules","divided":"counter","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7214,"x":1374.3,"y":815.52,"i":698,"state":10,"culture":7,"name":"Varkamos","feature":26,"capital":0,"population":3.241,"type":"Generic","coa":{"t1":"semy_of_triangle-argent-gules","division":{"division":"perBendSinister","t":"azure","line":"straight"},"ordinaries":[{"ordinary":"cross","t":"purpure","line":"straight"}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6288,"x":141.16,"y":724.79,"i":699,"state":1,"culture":2,"name":"Tseun","feature":23,"capital":0,"port":34,"population":0.451,"type":"Naval","coa":{"t1":"or","charges":[{"charge":"lymphad","t":"purpure","p":"e","t2":"purpure","t3":"sable","size":1.5}],"shield":"heater"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7175,"x":655.89,"y":821.33,"i":700,"state":19,"culture":14,"name":"Nyria","feature":23,"capital":0,"port":1,"population":3.472,"type":"Naval","coa":{"t1":"counterPotent-argent-purpure","ordinaries":[{"ordinary":"bordure","t":"sable"}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":2487,"x":1019.61,"y":373.69,"i":701,"state":8,"culture":15,"name":"Gourga","feature":2,"capital":0,"population":0.314,"type":"River","coa":{"t1":"vairAncien-or-purpure","ordinaries":[{"ordinary":"chevron","t":"sable"}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3801,"x":238.42,"y":513.87,"i":702,"state":1,"culture":2,"name":"Puheihung","feature":23,"capital":0,"port":1,"population":4.046,"type":"Naval","coa":{"t1":"bendy-or-azure","division":{"division":"perSaltire","t":"purpure"},"ordinaries":[{"ordinary":"pileInBend","t":"azure"}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5386,"x":844.12,"y":643.99,"i":703,"state":10,"culture":15,"name":"Naurias","feature":2,"capital":0,"port":1,"population":5.903,"type":"Naval","coa":{"t1":"gules","charges":[{"charge":"lionPassantGuardant","t":"or","p":"e","t2":"or","t3":"or","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6147,"x":1546,"y":708.47,"i":704,"state":7,"culture":15,"name":"Domis","feature":26,"capital":0,"population":1.112,"type":"Generic","coa":{"t1":"chequy-argent-vert","division":{"division":"perFess","t":"purpure","line":"straight"},"ordinaries":[{"ordinary":"cross","t":"gules","line":"straight"}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5303,"x":1523.62,"y":630.94,"i":705,"state":8,"culture":15,"name":"Nympsos","feature":26,"capital":0,"population":6.15,"type":"Generic","coa":{"t1":"argent","division":{"division":"perCross","t":"sable","line":"invecked"},"charges":[{"charge":"key","t":"gules","p":"e","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4295,"x":464.59,"y":550.06,"i":706,"state":17,"culture":16,"name":"Steilden","feature":23,"capital":0,"population":6.965,"type":"Generic","coa":{"t1":"bendySinister-or-sable-small","ordinaries":[{"ordinary":"mount","t":"purpure"}],"charges":[{"charge":"roundel","t":"azure","p":"bdf","size":0.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4057,"x":1441.34,"y":534.25,"i":707,"state":8,"culture":15,"name":"Paphamaita","feature":26,"capital":0,"population":3.82,"type":"Generic","coa":{"t1":"argent","division":{"division":"perBend","t":"sable","line":"straight"},"charges":[{"charge":"compassRose","t":"purpure","p":"l","size":0.7},{"charge":"mullet","t":"or","p":"m","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":5470,"x":352.11,"y":647.96,"i":708,"state":16,"culture":16,"name":"Bucheterstet","feature":23,"capital":0,"population":4.368,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"crossHummetty","t":"argent","p":"e","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5818,"x":289.27,"y":684.24,"i":709,"state":1,"culture":2,"name":"Muicheung","feature":23,"capital":0,"population":3.496,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"wyvernWithWingsDisplayed","t":"vert","p":"e","t2":"vert","t3":"vert","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4691,"x":1293.9,"y":583.29,"i":710,"state":18,"culture":11,"name":"Choikok","feature":26,"capital":0,"population":2.446,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"basilisk","t":"azure","p":"abc","t2":"azure","t3":"purpure","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":1432,"x":627.1,"y":263.7,"i":711,"state":13,"culture":12,"name":"Byglufsos","feature":2,"capital":0,"population":2.09,"type":"River","coa":{"t1":"or","division":{"division":"perChevronReversed","t":"sable","line":"straight"},"charges":[{"charge":"inescutcheon","t":"gules","p":"e","size":1.5}],"shield":"oldFrench"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6772,"x":1605.88,"y":769.57,"i":712,"state":20,"culture":8,"name":"Rhein","feature":26,"capital":0,"population":6.14,"type":"River","coa":{"t1":"argent","ordinaries":[{"ordinary":"gemelle","t":"gules","line":"straight"}],"charges":[{"charge":"duck","t":"gules","p":"abc","t2":"gules","t3":"gules","size":0.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":658,"x":1019.11,"y":162.82,"i":713,"state":12,"culture":15,"name":"Phacapagios","feature":2,"capital":0,"population":7.646,"type":"Generic","coa":{"t1":"semy_of_roundel-argent-purpure","division":{"division":"gyronny","t":"azure"},"ordinaries":[{"ordinary":"pallReversed","t":"gules"}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":7111,"x":1471.6,"y":805.3,"i":714,"state":5,"culture":8,"name":"Rheilern","feature":26,"capital":0,"population":1.268,"type":"River","coa":{"t1":"chequy-argent-vert","charges":[{"charge":"drakkar","t":"azure","p":"e","t2":"azure","t3":"azure","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3004,"x":217.4,"y":450.1,"i":715,"state":15,"culture":13,"name":"Londidamuro","feature":23,"capital":0,"population":0.911,"type":"Generic","coa":{"t1":"argent","division":{"division":"chevronny","t":"purpure"},"shield":"swiss"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5070,"x":353.76,"y":610.43,"i":716,"state":16,"culture":16,"name":"Ihrengenbach","feature":23,"capital":0,"population":1.046,"type":"Generic","coa":{"t1":"vert","charges":[{"charge":"cavalier","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5164,"x":1485.99,"y":614.64,"i":717,"state":8,"culture":15,"name":"Palytos","feature":26,"capital":0,"population":0.943,"type":"Generic","coa":{"t1":"gules","ordinaries":[{"ordinary":"chief","t":"argent","line":"straight"}],"charges":[{"charge":"cavalier","t":"vert","p":"abc","t2":"vert","t3":"or","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5342,"x":242.92,"y":634.1,"i":718,"state":1,"culture":2,"name":"Yongshan","feature":23,"capital":0,"population":7.222,"type":"Generic","coa":{"t1":"bendy-or-azure","charges":[{"charge":"apple","t":"purpure","p":"e","t2":"vert","size":1.5}],"shield":"heater"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6524,"x":1628.56,"y":750.01,"i":719,"state":20,"culture":8,"name":"Mahlberg","feature":26,"capital":0,"population":2.285,"type":"Generic","coa":{"t1":"or","ordinaries":[{"ordinary":"saltire","t":"vert","line":"straight"}],"charges":[{"charge":"shield","t":"or","p":"jlemo","t2":"or","size":0.4}],"shield":"heater"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":1062,"x":1329.1,"y":213.3,"i":720,"state":12,"culture":15,"name":"Musaicear","feature":8,"capital":0,"population":0.318,"type":"River","coa":{"t1":"vert","charges":[{"charge":"roundel2","t":"or","p":"abcpqh","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3551,"x":762.9,"y":494.3,"i":721,"state":6,"culture":5,"name":"Tlalpantepec","feature":2,"capital":0,"population":1.536,"type":"Highland","coa":{"t1":"purpure","charges":[{"charge":"horseHeadCouped","t":"or","p":"jln","size":0.7}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":873,"x":428.72,"y":197.14,"i":722,"state":13,"culture":13,"name":"Anatua","feature":2,"capital":0,"port":1,"population":2.357,"type":"Naval","coa":{"t1":"purpure","ordinaries":[{"ordinary":"pale","t":"argent","line":"straight"}],"charges":[{"charge":"crossMaltese","t":"argent","p":"y","size":0.5}],"shield":"swiss"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5847,"x":645.77,"y":681.26,"i":723,"state":19,"culture":14,"name":"Lefkalion","feature":23,"capital":0,"port":1,"population":0.704,"type":"Naval","coa":{"t1":"vert","division":{"division":"perChevronReversed","t":"or","line":"engrailed"},"charges":[{"charge":"comet","t":"argent","p":"bdefh","divided":"counter","size":0.4}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5694,"x":211.86,"y":672.08,"i":724,"state":1,"culture":2,"name":"Kukhing","feature":23,"capital":0,"population":0.155,"type":"River","coa":{"t1":"argent","ordinaries":[{"ordinary":"chevron","t":"purpure"}],"charges":[{"charge":"crossHummetty","t":"argent","p":"ach","size":0.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":5410,"x":1412,"y":642.1,"i":725,"state":8,"culture":17,"name":"Ajiehinle","feature":26,"capital":0,"population":5.601,"type":"River","coa":{"t1":"argent","ordinaries":[{"ordinary":"crossParted","t":"gules","line":"urdy"}],"charges":[{"charge":"grapeBunch","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"horsehead"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6936,"x":604.96,"y":796.45,"i":726,"state":11,"culture":14,"name":"Aphizinon","feature":23,"capital":0,"population":0.98,"type":"Generic","coa":{"t1":"vert","ordinaries":[{"ordinary":"mount","t":"argent"}],"charges":[{"charge":"fly","t":"argent","p":"bdf","t2":"argent","t3":"argent","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":3213,"x":264.7,"y":476.34,"i":727,"state":15,"culture":13,"name":"Apurviaca","feature":23,"capital":0,"population":0.974,"type":"Hunting","coa":{"t1":"vairEnPointe-argent-vert","division":{"division":"chevronny","t":"azure"},"charges":[{"charge":"triangle","t":"purpure","p":"e","size":1.5}],"shield":"swiss"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"fort"},{"cell":5537,"x":1511.09,"y":650.41,"i":728,"state":4,"culture":15,"name":"Hepicos","feature":26,"capital":0,"population":1.107,"type":"Generic","coa":{"t1":"vairAncien-azure-or","division":{"division":"perPile","t":"argent","line":"straight"},"ordinaries":[{"ordinary":"pale","t":"gules","line":"straight"}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4285,"x":336.61,"y":552.88,"i":729,"state":16,"culture":16,"name":"Geilertal","feature":23,"capital":0,"population":0.844,"type":"Generic","coa":{"t1":"purpure","charges":[{"charge":"dragonPassant","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4174,"x":766.15,"y":543.75,"i":730,"state":19,"culture":5,"name":"Ecocatlan","feature":2,"capital":0,"population":7.705,"type":"River","coa":{"t1":"argent","charges":[{"charge":"plough","t":"azure","p":"kn","t2":"gules","size":0.7}],"shield":"wedged"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":4529,"x":1360.72,"y":575.55,"i":731,"state":8,"culture":11,"name":"Fatshuigong","feature":26,"capital":0,"port":1,"population":11.081,"type":"Naval","coa":{"t1":"bendy-gules-or","division":{"division":"perBendSinister","t":"argent","line":"straight"},"charges":[{"charge":"drakkar","t":"sable","p":"j","t2":"sable","t3":"sable","size":0.7},{"charge":"rabbitSejant","t":"sable","p":"o","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"city"},{"cell":6802,"x":408.8,"y":778.09,"i":732,"state":9,"culture":16,"name":"Frohn","feature":23,"capital":0,"population":2.703,"type":"River","coa":{"t1":"argent","division":{"division":"perChevronReversed","t":"gules","line":"arched"},"charges":[{"charge":"billet","t":"sable","p":"bdefh","divided":"counter","size":0.4}],"shield":"spanish"},"citadel":1,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":4408,"x":1662.92,"y":556.52,"i":733,"state":20,"culture":15,"name":"Otibethmo","feature":26,"capital":0,"population":8.479,"type":"Generic","coa":{"t1":"argent","charges":[{"charge":"cavalier","t":"gules","p":"e","t2":"gules","t3":"azure","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4569,"x":1670.31,"y":566.95,"i":734,"state":20,"culture":15,"name":"Patis","feature":26,"capital":0,"population":7.795,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"raven","t":"sable","p":"def","t2":"sable","size":0.5}],"shield":"gonfalon"},"citadel":1,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":6319,"x":488.42,"y":730.83,"i":735,"state":9,"culture":4,"name":"Auvarera","feature":23,"capital":0,"population":7.249,"type":"Generic","coa":{"t1":"bendy-azure-or","ordinaries":[{"ordinary":"bend","t":"argent","line":"straight"}],"shield":"renaissance"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"town"},{"cell":4575,"x":50.14,"y":573.94,"i":736,"state":1,"culture":2,"name":"Linshun","feature":23,"capital":0,"population":3.344,"type":"River","coa":{"t1":"purpure","charges":[{"charge":"rake","t":"or","p":"e","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3419,"x":973.93,"y":480.72,"i":737,"state":8,"culture":15,"name":"Corga","feature":2,"capital":0,"population":6.609,"type":"Highland","coa":{"t1":"azure","ordinaries":[{"ordinary":"terrace","t":"or","line":"straight"}],"charges":[{"charge":"raven","t":"sable","p":"bdf","t2":"sable","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4089,"x":20.57,"y":544.35,"i":738,"state":1,"culture":2,"name":"Yuenshan","feature":23,"capital":0,"population":1.673,"type":"Lake","coa":{"t1":"bendy-or-azure","ordinaries":[{"ordinary":"terrace","t":"gules","line":"straight"}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4982,"x":1050.1,"y":598.39,"i":739,"state":10,"culture":15,"name":"Tegenera","feature":32,"capital":0,"population":0.207,"type":"Generic","coa":{"t1":"sable","charges":[{"charge":"fan","t":"argent","p":"abc","t2":"or","size":0.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":2594,"x":209.4,"y":403.7,"i":740,"state":15,"culture":13,"name":"Ovisipodu","feature":23,"capital":0,"population":0.126,"type":"Generic","coa":{"t1":"vert","ordinaries":[{"ordinary":"gemelle","t":"argent","line":"straight"}],"shield":"swiss"},"citadel":0,"plaza":0,"walls":1,"shanty":0,"temple":0,"group":"village"},{"cell":4556,"x":1527.02,"y":567.15,"i":741,"state":8,"culture":15,"name":"Athos","feature":26,"capital":0,"population":1.935,"type":"Generic","coa":{"t1":"gules","division":{"division":"perPile","t":"argent","line":"archedReversed"},"charges":[{"charge":"crescent","t":"or","p":"abc","divided":"counter","size":0.4}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":7166,"x":581.17,"y":817.28,"i":742,"state":11,"culture":14,"name":"Hamon","feature":23,"capital":0,"population":4.638,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"bee","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4435,"x":305.36,"y":563.67,"i":743,"state":16,"culture":16,"name":"Odeckloshut","feature":23,"capital":0,"population":11.701,"type":"Generic","coa":{"t1":"azure","division":{"division":"perChevron","t":"masoned-argent-gules","line":"straight"},"ordinaries":[{"ordinary":"bordure","t":"or"}],"shield":"spanish"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":6303,"x":297.3,"y":733.18,"i":744,"state":1,"culture":2,"name":"Namshing","feature":23,"capital":0,"population":5.356,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"apple","t":"gules","p":"kn","t2":"purpure","size":0.7}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4433,"x":281.23,"y":563.21,"i":745,"state":16,"culture":3,"name":"Melahlid","feature":23,"capital":0,"population":3.506,"type":"Generic","coa":{"t1":"azure","ordinaries":[{"ordinary":"pilesInPoint","t":"or"}],"shield":"fantasy3"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":4593,"x":267,"y":584.36,"i":746,"state":1,"culture":3,"name":"Kansreyri","feature":23,"capital":0,"population":4.807,"type":"Generic","coa":{"t1":"gules","charges":[{"charge":"lochaberAxe","t":"or","p":"e","t2":"or","size":1.5}],"shield":"fantasy3"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":5898,"x":1461.02,"y":681.38,"i":747,"state":4,"culture":15,"name":"Dileron","feature":26,"capital":0,"population":11.111,"type":"Generic","coa":{"t1":"argent","division":{"division":"perPale","t":"azure","line":"straight"},"charges":[{"charge":"fusil","t":"gules","p":"pq","divided":"counter","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":1,"walls":1,"shanty":0,"temple":0,"group":"city"},{"cell":6562,"x":495.16,"y":753.57,"i":748,"state":9,"culture":14,"name":"Thukepilea","feature":23,"capital":0,"population":1.086,"type":"Generic","coa":{"t1":"gules","division":{"division":"perPale","t":"argent","line":"straight"},"charges":[{"charge":"castle","t":"or","p":"p","t2":"or","size":0.7},{"charge":"raven","t":"azure","p":"q","size":0.7}],"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":4451,"x":490.46,"y":574.78,"i":749,"state":3,"culture":16,"name":"Fluorharied","feature":23,"capital":0,"port":1,"population":4.654,"type":"Naval","coa":{"t1":"azure","charges":[{"charge":"triangle","t":"argent","p":"e","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"town"},{"cell":3986,"x":468.59,"y":525.12,"i":750,"state":17,"culture":16,"name":"Hohren","feature":23,"capital":0,"port":1,"population":0.679,"type":"Naval","coa":{"t1":"bendySinister-or-sable-small","division":{"division":"gyronny","t":"gules"},"charges":[{"charge":"anchor","t":"purpure","p":"e","size":1.5}],"shield":"spanish"},"citadel":0,"plaza":1,"walls":0,"shanty":0,"temple":0,"group":"trading_post"},{"cell":7328,"x":1307.12,"y":831.2,"i":751,"state":10,"culture":15,"name":"Kolyntha","feature":26,"capital":0,"port":46,"population":0.443,"type":"Naval","coa":{"t1":"azure","charges":[{"charge":"boat2","t":"or","p":"jln","size":0.7}],"shield":"gonfalon"},"citadel":1,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":1289,"x":1359.9,"y":235.77,"i":752,"state":12,"culture":15,"name":"Parnassada","feature":8,"capital":0,"port":1,"population":0.443,"type":"Naval","coa":{"t1":"semy_of_roundel-argent-purpure","division":{"division":"perChevron","t":"gules","line":"straight"},"shield":"gonfalon"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"village"},{"cell":6280,"x":1643.7,"y":718.47,"i":753,"state":7,"culture":8,"name":"Bertalzach","feature":26,"capital":0,"population":2.206,"type":"Generic","coa":{"t1":"or","charges":[{"charge":"eagle","t":"purpure","p":"e","t2":"purpure","t3":"purpure","size":1.5}],"shield":"heater"},"citadel":0,"plaza":0,"walls":0,"shanty":0,"temple":0,"group":"town"}]
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,9,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,11,11,11,10,10,9,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,9,9,9,10,9,12,9,12,9,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,12,12,9,9,12,12,12,12,9,12,12,9,11,11,10,10,9,8,8,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,11,10,9,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,12,12,12,12,12,11,12,11,11,10,11,11,11,11,10,9,9,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,12,9,11,11,11,11,11,11,9,11,10,10,12,0,0,0,0,0,0,0,0,0,12,12,12,9,11,9,12,11,11,11,10,11,10,11,10,9,9,9,9,12,12,12,0,0,0,0,0,0,0,12,12,12,12,12,11,11,11,11,11,11,11,11,11,11,10,9,9,9,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,11,9,12,11,10,10,9,9,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,11,12,12,10,11,11,11,11,11,11,12,12,9,9,9,9,0,0,0,0,0,12,12,12,12,12,12,0,12,12,12,12,12,12,0,0,12,12,9,12,9,9,9,9,10,9,9,12,12,12,12,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,9,11,9,11,11,11,11,10,12,12,12,9,9,9,0,0,0,0,0,12,12,12,12,12,12,12,12,12,9,9,12,0,12,12,11,11,11,11,11,10,10,9,12,9,11,9,9,9,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,12,12,12,12,12,12,10,11,11,11,11,11,10,10,9,12,12,12,12,12,12,0,0,0,0,0,12,12,12,12,9,11,10,12,12,12,12,12,11,11,11,11,11,11,10,9,10,10,10,9,9,9,12,9,12,12,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,9,11,11,11,9,12,11,9,12,12,9,12,9,12,12,0,0,0,12,12,9,9,10,9,9,9,9,9,9,11,11,11,11,11,11,11,11,11,9,10,9,9,9,9,9,12,8,8,12,12,12,12,12,12,12,12,8,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,12,12,0,0,0,12,12,12,12,9,11,12,12,12,9,11,10,9,11,9,9,0,12,12,12,12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,9,9,9,8,12,12,12,12,12,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,0,0,0,0,0,0,12,12,12,12,12,12,0,12,12,12,12,12,12,9,12,12,12,12,12,12,12,12,11,11,11,11,9,9,0,0,0,0,9,9,9,12,12,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,9,9,9,9,10,9,9,9,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,12,12,12,0,0,12,12,12,0,0,0,0,0,12,12,11,9,0,0,0,0,8,0,0,0,0,0,0,0,0,12,12,9,11,11,11,11,11,12,12,0,12,12,9,12,12,12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,9,8,8,9,12,9,12,12,12,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,12,12,11,10,12,12,8,8,0,0,0,0,0,0,12,12,12,12,12,12,11,11,11,11,11,9,12,12,12,0,0,0,0,12,12,12,12,8,12,12,9,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,8,8,9,12,12,12,8,8,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,8,8,12,8,0,0,0,0,0,12,0,0,0,0,0,0,12,0,0,0,0,0,12,0,0,0,0,0,0,0,12,0,0,12,12,12,11,11,9,12,12,0,12,12,12,12,12,12,11,11,11,9,9,12,12,0,0,0,0,0,0,0,0,0,12,12,12,12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,9,9,9,9,9,12,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,9,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,11,11,9,12,12,12,12,12,12,12,9,12,12,12,12,12,8,0,0,0,0,0,12,12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,9,8,12,12,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,9,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,10,12,12,8,12,9,9,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,12,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,9,12,9,8,0,0,0,0,0,12,12,12,9,12,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,12,12,10,10,10,9,8,12,12,12,12,9,11,10,12,12,0,0,0,0,0,12,12,12,12,12,12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,9,9,9,9,12,0,0,0,0,0,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,0,12,12,0,0,0,0,0,0,12,12,12,12,12,12,12,9,12,12,11,11,11,11,12,12,0,0,0,0,12,12,12,12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,9,9,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,12,0,0,0,0,0,0,12,0,0,0,0,0,0,0,12,12,0,12,12,12,12,12,11,11,12,12,12,0,0,0,0,12,12,12,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,9,0,12,12,0,0,0,0,0,0,12,12,12,12,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,12,12,12,12,11,12,12,12,12,0,0,0,0,12,12,12,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,8,12,12,8,0,0,0,12,12,8,8,8,0,0,12,12,12,12,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,12,12,0,12,12,12,12,0,0,0,0,0,0,0,0,12,12,12,12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,9,8,12,8,0,0,0,0,0,0,0,12,12,12,12,8,8,0,0,0,12,12,12,0,0,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,8,8,8,0,0,0,0,0,0,12,12,12,12,12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,9,8,8,8,8,8,0,0,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,12,12,8,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,0,0,12,12,12,12,12,12,12,12,9,12,12,12,9,8,12,8,8,0,0,0,0,12,12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,9,8,8,8,8,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,12,8,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,12,12,12,12,8,8,12,12,8,12,0,0,12,0,0,0,12,12,12,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,9,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,12,12,12,12,0,0,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,8,12,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,12,12,9,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,9,12,8,0,0,0,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,12,8,12,12,12,12,12,12,0,0,0,12,12,12,12,12,0,0,0,0,0,0,12,12,0,0,0,12,12,0,12,12,12,12,12,12,12,12,12,11,11,11,11,9,12,0,0,0,0,0,0,0,0,0,12,12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,9,9,0,0,0,0,0,12,12,12,12,0,0,0,0,0,0,0,0,0,12,0,0,12,12,8,8,12,12,8,8,8,0,0,0,0,0,12,0,0,12,12,0,0,12,8,12,12,12,12,9,11,11,12,12,12,0,0,0,0,0,0,0,0,12,12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,12,12,0,0,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,12,8,8,12,12,12,12,12,12,0,0,0,0,0,0,12,9,9,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,0,0,0,0,0,0,12,12,0,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,9,9,9,12,12,12,12,0,0,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,8,8,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,0,0,12,12,12,12,12,12,12,12,12,0,0,0,12,12,12,12,0,0,0,0,12,12,0,0,0,0,0,0,0,0,8,8,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,0,0,0,0,0,0,8,12,8,12,12,0,0,0,0,0,8,8,12,8,8,12,8,8,12,8,0,0,0,0,0,0,0,0,12,12,12,0,0,0,0,12,12,0,0,12,12,12,12,8,0,0,0,12,12,12,12,0,12,12,12,12,12,12,12,12,9,0,0,0,0,0,0,0,0,0,0,12,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,0,0,0,0,0,0,0,0,0,8,12,12,12,0,0,0,0,0,0,0,0,8,8,8,8,12,8,8,8,8,8,12,8,8,12,12,0,12,12,12,0,12,12,0,0,0,0,0,12,0,0,0,8,8,8,0,0,12,12,0,0,0,0,0,0,8,12,12,12,12,12,12,12,0,0,12,0,0,0,0,0,0,8,8,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,12,12,12,12,0,0,0,0,0,12,12,12,12,12,8,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,8,12,12,12,12,12,0,12,12,0,0,0,0,0,0,0,0,8,8,8,8,0,12,12,0,0,0,0,8,12,12,0,8,8,8,8,12,9,10,10,12,0,0,0,0,0,0,0,0,0,8,8,9,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,0,0,0,0,12,12,12,0,0,0,0,0,0,0,0,8,8,0,0,0,8,8,8,8,8,8,8,12,8,8,12,12,8,12,12,8,0,0,0,0,12,12,0,0,12,12,0,0,0,0,8,8,8,8,8,8,8,8,8,8,12,12,12,12,12,0,0,0,0,0,0,0,12,12,12,9,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,9,9,11,11,11,11,12,12,0,0,0,0,0,0,0,0,0,0,8,8,12,12,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,12,12,12,12,12,12,0,0,0,0,0,0,8,8,8,8,8,8,8,12,8,12,12,12,8,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,12,12,9,11,11,11,11,11,11,11,11,11,11,11,11,11,11,9,11,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,12,12,12,12,0,0,0,0,0,0,0,0,12,8,12,12,12,12,0,0,0,0,0,8,8,12,8,8,12,12,8,0,0,8,12,12,8,8,12,12,12,12,12,12,0,0,0,0,0,0,0,0,12,12,12,12,12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,8,8,12,12,12,12,12,12,8,8,8,8,8,8,8,8,12,8,12,0,0,0,0,0,0,0,0,0,0,12,8,0,0,0,0,0,0,0,0,0,0,8,8,8,0,0,0,0,8,0,0,12,12,12,12,9,8,12,12,12,12,8,12,0,0,0,0,0,9,9,8,8,8,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,8,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,11,11,11,9,12,12,0,0,0,0,0,0,0,0,0,0,8,8,12,12,12,8,8,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,12,12,8,8,8,12,12,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,12,12,12,0,0,0,0,0,0,0,8,12,12,8,0,0,0,0,0,0,0,0,12,12,8,8,8,12,8,12,0,0,0,0,8,0,0,0,0,8,12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,0,0,0,0,0,0,0,0,0,12,12,12,9,12,8,8,8,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,9,11,11,11,9,12,12,12,12,12,12,0,8,12,8,8,12,12,8,8,12,8,12,12,12,12,12,8,0,0,0,8,8,8,0,0,0,12,12,8,0,0,0,0,0,0,0,0,12,0,0,0,12,0,8,0,0,8,8,8,8,8,0,0,0,0,0,0,0,8,8,8,8,8,8,12,0,0,0,0,0,0,0,0,0,0,12,9,11,11,11,11,11,11,11,11,11,11,12,11,11,11,9,12,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,8,8,8,8,8,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,9,12,8,8,12,8,12,9,9,12,12,8,8,8,8,12,8,8,8,8,12,12,12,12,0,0,0,0,0,0,0,8,8,8,0,0,0,0,0,0,0,0,8,0,0,8,8,12,8,12,12,8,0,8,8,12,0,0,0,0,12,0,0,0,8,8,8,8,12,12,12,0,0,0,0,0,0,0,0,0,12,12,8,9,11,11,11,11,11,11,11,11,11,11,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,10,12,12,8,8,8,8,8,8,8,12,12,12,12,12,0,0,0,0,12,0,0,0,0,0,0,12,0,0,0,0,8,12,8,8,8,12,12,12,8,12,12,12,12,8,8,8,8,8,12,12,8,8,8,6,6,12,8,8,8,8,8,8,12,12,12,12,12,12,12,8,8,8,12,12,8,8,8,8,8,0,8,8,8,8,8,12,12,0,8,8,12,8,12,12,12,12,0,0,0,0,0,0,0,0,0,0,6,6,8,8,12,11,12,12,0,0,0,0,0,0,0,0,0,0,12,8,12,12,9,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,9,9,12,8,8,8,8,8,8,8,8,8,8,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,0,12,12,12,12,8,12,8,8,12,12,0,6,8,8,8,8,12,12,12,12,12,8,6,6,12,8,6,6,6,6,6,8,8,12,8,8,8,8,8,8,8,8,12,8,8,8,8,8,12,12,12,12,12,12,8,0,0,0,0,0,6,6,6,8,8,9,12,12,12,12,12,12,12,12,0,0,0,0,8,8,8,9,11,11,11,11,11,11,11,11,11,11,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,9,12,12,12,12,12,12,8,6,8,8,8,0,0,0,0,0,12,12,12,12,12,12,0,0,0,12,12,12,0,12,12,12,12,0,8,12,6,6,8,8,6,12,8,12,8,8,9,12,12,12,12,12,12,12,12,8,12,8,8,6,6,6,6,8,8,8,8,8,8,8,8,6,6,6,6,8,8,8,6,8,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,8,8,8,12,8,12,12,12,12,0,0,0,0,9,9,11,11,11,11,11,11,11,11,11,10,10,12,12,0,0,0,0,12,12,12,12,0,12,12,12,12,12,12,12,0,0,0,8,8,12,12,9,8,12,8,12,12,12,8,8,8,8,8,6,8,8,8,12,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,6,12,12,8,8,12,8,8,8,12,12,8,8,12,12,9,9,9,8,11,11,9,12,12,12,8,12,12,12,6,6,6,8,8,6,8,8,8,8,6,6,6,6,6,6,6,8,8,12,12,12,0,0,12,8,8,0,0,0,0,0,0,0,0,0,12,12,12,0,8,8,8,6,8,8,8,0,0,8,0,0,0,0,0,0,0,0,12,8,12,11,11,11,11,11,11,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,12,8,8,8,12,12,8,0,0,0,0,0,6,6,6,8,6,8,8,8,0,0,0,0,0,0,12,12,12,8,6,8,6,6,8,8,8,6,12,6,8,8,12,12,8,9,9,12,9,11,11,11,11,11,11,11,9,12,12,8,12,6,12,6,6,6,8,8,8,8,8,8,6,8,8,12,12,8,8,8,12,12,12,12,12,0,0,8,12,12,12,12,0,0,0,12,12,12,0,0,0,8,8,6,6,12,12,12,12,0,0,0,0,0,0,0,12,12,9,11,11,11,11,11,12,12,0,0,0,0,0,0,0,12,12,12,12,12,9,9,9,12,0,0,0,0,0,0,0,8,12,8,8,8,8,12,12,0,0,0,0,0,0,0,6,6,6,6,8,12,12,0,0,0,12,12,12,0,0,0,8,8,6,6,6,6,6,6,6,6,8,6,8,8,8,9,10,9,8,12,9,12,12,9,9,8,11,11,11,11,12,12,12,12,12,12,6,6,6,8,8,8,8,8,8,6,6,8,8,6,6,8,8,8,12,0,0,0,0,0,0,0,8,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,12,8,12,12,12,0,0,0,0,8,10,10,11,11,11,11,9,0,0,0,0,0,0,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,8,8,8,8,12,8,12,12,0,0,0,12,12,12,6,6,6,6,6,8,12,12,8,8,8,8,8,8,6,6,6,6,6,6,6,8,6,6,8,8,8,9,9,9,9,12,12,12,12,12,9,9,9,11,11,11,11,12,8,12,6,12,6,6,6,8,8,8,8,8,6,8,6,6,6,6,6,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,0,0,0,0,0,0,10,11,11,11,11,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,9,8,8,12,12,8,0,0,0,0,8,8,8,8,8,6,6,6,6,6,8,8,8,8,8,8,8,8,8,6,6,6,6,6,6,8,6,6,8,8,8,11,9,8,11,11,9,12,9,9,9,10,9,10,11,11,11,12,12,8,8,8,12,6,6,6,6,8,8,8,8,8,6,6,6,6,12,8,8,0,0,0,0,0,0,0,0,0,0,12,12,8,12,12,12,12,12,12,12,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,12,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,12,12,9,10,9,8,8,8,12,12,0,0,0,0,0,0,0,8,6,6,6,6,8,12,6,8,8,6,6,6,6,6,6,8,6,6,6,6,6,8,6,6,6,8,8,8,9,10,10,10,9,9,11,11,11,11,11,11,11,9,9,11,11,11,10,11,9,9,12,12,6,6,12,12,6,6,8,8,8,8,8,8,8,8,8,8,12,8,8,0,0,0,0,0,8,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,12,12,9,9,11,9,0,0,0,0,0,0,12,8,10,9,12,8,8,12,12,12,0,0,0,8,8,6,8,8,8,8,0,0,0,0,6,8,8,6,6,6,6,6,6,6,6,6,6,6,6,6,6,8,8,8,12,0,0,0,12,12,8,9,11,11,11,10,9,9,9,9,10,8,9,9,9,12,8,8,8,6,6,12,6,6,8,8,8,8,6,6,6,6,8,12,12,0,0,0,0,0,6,6,6,8,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,8,8,10,12,12,12,8,12,8,8,0,0,0,0,8,8,8,8,0,0,8,0,0,8,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,9,9,9,9,11,9,8,9,12,12,8,8,8,6,8,8,12,6,6,6,8,8,8,8,6,6,8,12,12,0,0,0,0,0,6,12,8,8,12,12,0,0,0,0,0,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,12,9,12,12,12,12,12,8,12,12,0,0,0,0,0,0,0,0,0,0,0,6,8,8,8,8,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,8,12,8,0,0,0,0,0,0,12,12,12,12,12,9,9,10,11,10,11,9,12,8,8,6,8,8,12,12,8,6,8,8,6,8,8,6,6,12,12,0,0,0,0,0,0,8,12,6,6,8,12,8,0,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,0,0,0,0,12,8,8,8,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,8,8,12,0,0,0,0,0,0,12,12,12,8,9,10,11,11,11,11,9,12,8,8,8,12,12,8,8,8,8,8,8,8,6,6,6,8,12,12,12,0,0,0,0,0,0,0,0,0,12,6,6,6,6,8,12,12,12,12,12,12,12,0,0,0,0,0,0,0,12,8,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,12,12,12,12,0,0,0,0,0,0,0,8,6,8,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,8,12,0,0,0,0,12,12,12,12,8,9,11,11,11,11,10,12,8,8,12,8,8,8,8,8,8,8,8,6,6,6,8,6,6,12,8,12,8,12,0,0,0,0,0,0,0,0,6,8,6,6,6,6,8,12,8,12,12,12,0,0,0,0,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,0,0,0,0,0,8,8,0,6,12,6,6,6,6,6,6,6,6,6,6,6,6,8,6,6,6,6,6,6,6,6,6,6,12,0,0,0,0,8,8,12,8,9,9,10,9,10,12,12,12,12,12,8,8,8,8,8,8,8,8,6,8,6,8,8,8,12,12,12,12,8,0,0,0,0,0,0,0,0,0,0,6,8,6,6,8,8,8,8,8,8,12,12,12,0,0,0,0,8,8,12,12,12,0,0,0,0,0,0,0,0,12,0,0,0,8,0,0,0,0,0,0,0,0,0,0,8,12,12,8,8,6,6,6,6,6,6,6,6,6,6,6,6,6,6,12,12,6,8,8,8,6,6,6,8,12,0,0,0,0,0,0,12,8,9,9,9,9,9,11,9,12,12,9,8,8,8,8,8,8,8,6,6,6,12,12,12,12,6,6,12,12,8,12,8,8,12,0,0,0,0,12,12,8,6,8,8,8,8,8,8,8,8,12,12,12,0,0,0,0,0,0,0,12,0,0,8,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,8,8,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,12,6,6,6,6,6,8,8,12,0,0,0,8,12,12,8,8,12,10,6,6,8,9,11,11,9,8,8,8,8,8,8,8,8,6,12,12,6,12,6,6,6,6,8,8,12,12,12,0,0,0,0,8,8,6,6,8,8,8,8,8,8,8,8,12,12,12,12,0,0,0,0,0,8,8,12,12,0,0,8,8,8,8,8,0,0,0,0,0,0,0,8,8,8,0,8,8,12,12,12,12,12,8,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,12,6,6,6,6,8,8,8,12,0,0,0,12,0,0,12,12,9,9,11,9,10,11,11,11,9,8,8,8,8,8,8,12,12,6,8,12,6,6,6,6,6,6,6,6,8,8,8,0,0,0,0,0,6,6,6,6,6,8,8,8,8,8,8,8,8,8,12,12,12,0,0,0,0,0,8,8,12,0,0,12,12,12,12,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,12,8,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,8,6,6,6,8,6,12,12,0,0,0,0,0,0,12,11,11,9,9,10,11,11,11,9,8,8,8,12,12,8,8,8,8,6,12,6,6,6,6,6,6,6,6,12,8,0,0,6,6,6,6,8,8,8,8,8,8,12,12,8,8,12,12,12,12,12,0,0,0,0,0,0,12,0,0,0,0,12,8,12,12,12,12,0,0,0,0,0,0,8,8,8,6,8,8,8,8,6,6,6,6,6,6,12,6,12,12,12,6,6,6,6,6,6,6,6,6,6,6,6,6,12,8,8,12,12,8,6,6,6,6,8,12,0,0,0,0,12,12,12,10,11,10,9,10,11,11,9,12,12,12,12,8,8,8,8,8,6,12,6,6,6,6,6,6,6,8,12,12,12,8,8,8,6,6,6,8,8,8,12,12,12,12,12,12,12,12,12,12,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,8,0,0,0,0,0,8,8,8,8,12,12,12,8,6,6,6,8,8,6,8,6,6,6,12,6,6,6,6,12,6,6,6,6,6,6,6,6,12,8,8,8,0,0,8,6,6,6,6,8,12,0,0,0,12,12,12,12,9,11,11,11,11,11,8,8,9,8,8,8,8,8,12,8,12,6,6,6,6,6,6,8,6,6,6,6,8,8,6,6,6,8,8,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,8,8,12,12,8,8,12,8,12,12,12,12,8,6,8,8,12,8,8,6,6,6,12,12,6,6,6,6,6,6,8,8,8,8,0,0,0,0,0,0,6,6,8,6,6,6,8,12,0,12,12,12,12,9,10,9,9,10,11,10,9,8,8,8,8,12,8,8,8,8,6,6,6,6,6,8,8,6,6,6,6,6,6,6,6,8,8,8,8,12,12,12,12,12,12,12,0,0,0,0,0,12,12,12,12,12,12,12,0,0,0,0,0,0,12,12,12,12,12,8,8,6,6,12,12,12,12,12,12,12,6,8,12,8,12,12,12,6,8,12,8,12,8,8,8,6,8,8,8,0,0,0,0,0,0,0,0,0,8,6,8,6,6,8,12,0,0,0,0,0,0,6,12,12,12,12,10,11,11,11,9,8,12,12,8,8,8,8,6,6,6,6,6,8,8,8,8,6,8,8,6,6,6,6,6,8,8,8,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,8,8,8,8,8,8,12,12,8,11,11,11,8,12,12,8,12,6,8,8,12,12,12,12,12,8,8,8,8,12,12,12,8,8,8,8,8,8,0,0,0,0,0,0,6,6,6,8,8,0,0,0,6,12,8,0,12,9,11,11,11,11,11,9,8,8,8,8,8,8,6,6,6,6,6,8,8,8,8,8,8,8,6,6,6,8,8,6,8,8,12,12,12,12,8,8,12,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,8,12,8,11,9,11,8,8,12,12,12,12,12,12,12,8,8,8,12,12,12,0,0,0,0,0,0,0,0,8,8,8,6,12,12,0,0,0,0,0,0,0,0,0,0,6,6,6,6,8,8,0,0,12,9,9,11,11,11,11,11,11,11,11,10,9,9,12,12,12,12,12,12,12,12,12,12,12,12,12,8,12,6,12,12,12,12,12,12,12,12,12,8,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,8,12,11,12,12,12,12,12,12,0,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,0,0,0,0,0,0,0,12,12,12,12,12,12,12,0,0,12,11,11,11,9,11,11,11,11,11,11,11,11,9,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,0,0,8,6,6,12,12,12,12,0,12,12,0,0,12,9,8,12,12,12,12,12,0,0,0,0,0,10,11,12,12,12,0,0,0,12,12,12,12,12,12,12
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,722,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,544,0,0,0,0,0,0,0,0,0,640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,272,0,0,0,0,562,0,0,0,0,0,0,0,0,0,0,0,720,0,0,0,0,0,0,0,621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,752,0,0,0,0,0,0,658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,486,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,149,615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0,0,0,0,0,0,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,361,0,524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0,0,0,0,646,0,0,0,0,0,0,0,0,0,0,0,461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,292,0,0,0,0,0,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,715,103,0,73,0,662,358,0,0,632,0,0,0,0,656,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0,0,0,0,0,0,0,343,0,0,0,199,589,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,597,0,0,0,0,0,0,0,0,531,0,0,0,0,0,474,157,0,0,0,0,0,0,579,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,3,0,509,0,0,0,219,0,691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,727,0,0,0,209,273,0,15,452,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,623,0,0,0,0,0,97,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,492,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,584,0,624,69,0,0,0,0,0,0,0,0,119,496,0,0,0,0,0,655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0,0,0,0,519,0,0,0,665,0,0,0,0,548,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0,0,0,0,414,0,0,0,0,0,702,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,423,0,0,291,0,0,0,34,0,0,0,0,0,0,0,61,0,0,0,0,321,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,670,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,567,169,0,365,0,395,108,0,453,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,495,0,0,0,0,0,0,0,0,0,0,0,0,660,275,265,0,0,0,503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,681,0,0,281,241,0,707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,738,0,0,0,223,0,572,0,0,0,177,0,0,117,0,229,0,0,285,136,347,0,0,0,0,0,0,0,0,16,353,0,0,0,0,0,0,626,0,0,0,638,0,585,0,0,0,0,0,0,676,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,488,614,262,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,131,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,498,0,0,0,0,505,0,497,0,40,0,0,0,0,0,0,221,0,0,617,0,0,46,424,545,0,0,0,627,0,729,513,433,489,0,0,0,243,0,0,706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,661,264,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,733,429,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,280,21,140,0,0,0,0,0,745,145,743,234,0,687,0,490,418,0,37,469,0,0,0,0,605,0,749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,326,0,0,0,0,731,0,0,29,440,0,0,0,602,0,634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,121,0,76,0,0,0,0,0,0,0,0,550,734,482,0,0,0,0,736,0,0,0,0,0,0,0,0,0,0,0,0,96,1,0,0,253,746,0,0,0,561,0,0,0,0,349,339,686,274,211,0,0,269,0,0,0,0,0,0,0,450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,574,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,710,0,394,0,0,568,0,0,0,0,0,436,0,622,0,295,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,402,162,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,538,0,0,52,0,0,0,350,0,0,0,354,0,0,0,0,0,351,181,0,0,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,434,0,72,523,0,0,0,0,0,0,0,0,0,8,0,310,0,466,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,89,175,0,0,0,0,487,237,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,383,694,0,0,0,628,0,0,0,337,0,0,17,0,0,596,0,0,0,0,0,0,0,451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,468,697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,636,0,293,0,116,0,387,0,0,165,0,0,87,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,0,0,0,150,0,0,0,31,0,536,0,716,0,0,0,0,641,599,0,637,0,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0,0,0,0,540,256,0,462,0,515,0,53,297,328,0,0,0,0,717,0,0,0,0,590,0,0,0,317,0,0,78,0,0,79,378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,652,0,0,679,278,305,0,0,0,0,224,0,0,588,0,144,185,0,0,0,0,0,0,0,0,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,675,39,425,541,0,0,0,304,0,705,0,0,0,0,501,682,0,0,0,0,0,571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,0,0,718,0,695,0,0,546,0,0,551,277,161,380,176,0,431,0,0,0,0,0,0,0,0,520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,530,696,222,86,725,0,179,0,0,0,0,0,335,167,0,0,464,180,0,0,0,0,336,93,0,0,0,352,0,0,527,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,603,0,98,0,0,0,0,207,0,0,708,419,0,0,547,557,0,283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,422,341,0,0,639,0,0,0,0,0,0,458,728,0,0,329,28,0,0,0,0,43,244,0,0,287,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0,0,0,51,0,0,532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,553,0,0,0,0,0,0,0,0,0,0,0,0,0,231,483,437,139,0,0,549,0,0,0,0,215,0,0,0,475,0,0,151,400,0,609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,724,674,0,300,0,0,0,183,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,94,563,650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,601,0,0,194,0,0,84,405,0,166,0,0,0,680,651,0,0,587,0,0,0,593,0,111,0,0,0,0,0,0,0,0,0,0,521,0,0,232,0,0,0,0,0,0,0,0,0,0,0,485,607,709,50,0,0,0,0,390,0,81,560,143,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,630,49,0,723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,507,0,0,747,403,0,0,147,0,0,0,0,188,0,0,0,0,250,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,564,0,595,0,473,0,0,0,0,0,0,0,0,0,191,0,156,0,342,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,642,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,120,0,0,0,227,348,0,290,449,0,0,0,0,666,512,654,0,0,0,0,303,0,0,381,407,0,0,0,0,0,648,0,0,160,0,0,0,0,0,0,0,0,0,0,0,484,0,0,533,0,26,0,257,629,0,42,267,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,502,0,0,0,0,398,362,206,0,198,0,0,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,667,0,671,0,132,0,0,499,0,137,0,606,704,0,0,0,0,0,126,371,0,693,0,0,0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,118,412,0,239,0,0,432,0,345,406,0,0,0,22,0,0,0,613,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,439,0,409,127,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0,54,0,454,0,0,0,0,0,311,0,517,0,376,0,0,260,141,0,0,753,610,298,0,0,0,0,0,699,0,0,372,0,0,459,0,399,0,0,0,0,441,0,744,245,246,0,0,0,0,0,0,323,688,68,124,0,0,668,735,0,0,0,0,0,0,0,0,0,683,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,77,0,0,0,0,0,0,0,218,236,0,0,0,0,0,0,0,301,333,44,0,0,0,0,0,0,0,0,416,48,0,0,0,0,334,63,66,428,0,0,0,0,0,476,0,664,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,611,0,518,0,558,0,504,0,0,0,0,373,30,0,0,0,71,0,112,0,0,0,0,0,0,0,0,0,235,569,559,0,0,0,0,330,435,0,420,594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,644,0,0,0,0,0,0,0,0,0,0,369,556,0,0,0,0,10,0,0,0,0,299,0,152,340,672,0,23,249,155,0,0,0,0,0,0,0,0,164,242,134,0,0,719,0,445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,327,0,438,580,0,570,479,417,0,0,748,0,0,460,0,0,11,174,0,0,0,0,259,0,663,0,0,0,45,225,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,565,0,0,0,0,0,0,0,0,0,374,415,95,0,186,0,0,0,0,0,286,0,146,430,182,109,356,153,346,35,59,101,0,0,27,0,263,0,0,643,0,0,0,0,196,0,0,0,368,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,481,0,216,0,0,203,0,573,279,357,0,0,0,318,0,0,0,0,0,0,0,543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,592,0,0,0,426,669,0,0,0,508,0,294,128,0,552,684,0,228,0,0,0,0,0,0,477,0,83,0,0,364,0,7,32,0,0,0,712,0,75,363,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,581,0,732,578,0,0,0,0,163,0,0,0,0,0,388,0,0,0,575,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,491,62,0,0,0,0,0,0,0,0,379,396,0,0,391,130,0,0,0,0,266,442,309,0,427,90,24,576,0,0,0,0,0,0,0,0,261,0,0,539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,514,0,0,0,0,0,0,673,389,0,616,248,268,204,0,0,0,726,302,0,0,0,0,0,0,0,0,645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,0,0,375,0,0,0,0,0,0,0,0,0,367,421,0,0,0,0,0,0,0,0,0,113,467,685,315,444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,100,0,0,0,0,0,0,0,0,677,0,608,0,0,70,0,254,0,0,106,0,0,0,382,0,0,0,88,0,493,0,0,74,443,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,355,401,195,0,0,168,0,0,0,612,0,0,171,0,312,0,0,0,0,0,0,0,0,0,85,0,714,620,0,0,0,0,296,0,92,0,0,0,0,0,0,0,0,0,625,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,324,64,359,0,0,522,0,0,0,56,338,0,0,742,528,0,0,397,0,0,0,0,700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,698,0,0,0,534,0,0,0,0,0,0,0,0,0,0,5,506,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,289,0,411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,393,633,0,0,0,0,0,0,0,0,0,410,0,751,0,0,0,0,0,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,618,0,0,0,0,0,0,0,0,0,619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0,0,284,0,635,583,0,0,510,0,0,0,0,0,472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,221,159,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,1545,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1367,0,0,0,0,0,0,0,0,0,0,112,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0,0,0,0,0,0,0,0,0,0,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,382,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,77,0,0,119,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,1008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,0,0
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,12,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,0,0,0,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,12,12,0,0,0,0,0,0,0,12,12,12,12,12,12,0,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,0,0,0,0,0,0,0,12,12,12,12,12,12,0,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,0,15,15,15,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,12,12,12,12,12,12,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,0,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,15,15,15,15,15,15,15,0,0,0,0,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,0,0,0,12,12,0,12,12,12,12,12,12,12,12,0,0,0,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,12,12,0,0,0,12,12,12,12,12,0,12,12,12,12,0,0,12,0,12,12,0,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,13,13,12,12,12,12,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,12,12,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,15,15,15,0,0,15,15,15,0,0,0,0,0,13,13,0,12,0,0,0,0,12,0,0,0,0,0,0,0,0,12,12,12,0,0,0,0,0,12,12,0,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,13,12,0,12,12,12,12,12,0,0,0,0,0,0,12,12,12,12,12,12,0,0,0,0,0,12,12,12,12,0,0,0,0,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,15,0,0,0,0,0,0,15,0,0,0,0,0,15,0,0,0,0,0,0,0,13,0,0,13,12,12,0,0,12,12,12,0,12,12,12,12,12,12,0,0,0,12,12,12,12,0,0,0,0,0,0,0,0,0,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,12,12,12,0,0,12,12,12,12,12,12,12,0,0,12,12,0,0,0,0,0,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,0,13,12,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,0,0,0,0,12,12,0,0,0,0,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,13,0,0,0,0,0,0,12,0,0,0,0,0,0,0,12,12,0,12,12,12,12,12,0,0,12,12,12,0,0,0,0,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,15,15,0,0,0,0,0,0,15,15,15,15,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,0,12,12,12,12,0,0,0,0,12,12,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,15,15,15,15,15,0,0,15,15,15,15,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,12,0,0,0,0,12,12,0,12,12,12,12,0,0,0,0,0,0,0,0,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,0,15,15,15,15,15,15,0,0,0,15,15,15,0,0,0,0,0,0,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,13,13,13,13,13,12,12,13,12,12,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,0,0,12,0,0,0,12,12,12,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,1,1,1,1,1,1,1,13,1,0,0,0,0,0,0,13,13,13,13,0,0,0,0,0,0,13,13,12,12,12,0,0,0,0,0,0,0,0,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,0,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,13,13,13,13,13,0,0,0,0,0,0,12,12,0,0,0,12,12,0,12,12,12,12,12,12,5,5,5,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,0,0,0,1,0,0,13,13,13,13,13,13,13,13,13,0,0,0,0,0,12,0,0,12,12,0,0,12,12,12,12,12,5,5,0,0,5,5,5,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,12,5,5,5,5,5,5,5,5,0,0,0,0,0,0,12,12,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,15,15,0,0,0,0,0,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,0,13,13,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,0,0,12,12,12,12,12,5,12,5,5,0,0,0,5,5,5,5,0,0,0,0,5,5,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,12,12,12,0,0,0,0,12,12,0,0,12,12,12,5,5,0,0,0,5,5,5,5,0,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,12,12,12,0,12,12,0,0,0,0,0,12,0,0,0,12,12,12,0,0,12,12,0,0,0,0,0,0,5,5,5,5,5,5,5,5,0,0,5,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,15,15,15,15,15,15,0,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,12,12,12,0,12,12,0,0,0,0,0,0,0,0,12,12,12,12,0,12,12,0,0,0,0,5,5,5,0,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,15,15,15,0,0,0,0,0,0,0,0,13,13,0,0,0,13,13,13,13,13,13,13,13,12,12,12,12,12,12,12,12,0,0,0,0,12,12,0,0,12,12,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,13,12,12,12,12,12,12,0,0,0,0,0,0,12,12,12,12,12,12,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,12,12,16,16,16,16,0,0,0,0,0,5,5,5,5,5,5,5,5,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,5,0,0,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,5,5,5,5,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,15,11,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,10,10,10,10,10,10,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,16,16,16,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,0,0,0,0,5,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,11,11,11,11,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,2,0,0,0,2,2,2,2,2,2,2,0,2,2,2,10,10,10,10,2,2,2,2,2,2,2,2,13,0,0,0,12,12,12,0,0,0,12,12,16,0,0,0,0,0,0,0,0,16,0,0,0,16,0,16,0,0,5,5,5,5,5,0,0,0,0,0,0,0,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,15,0,0,0,15,15,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,15,15,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,2,2,2,2,2,2,2,2,2,2,2,2,2,10,2,10,2,2,2,2,2,2,12,12,0,0,0,0,0,0,0,16,16,16,0,0,0,0,0,0,0,0,16,0,0,16,16,16,16,16,16,16,0,5,5,5,0,0,0,0,5,0,0,0,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,9,11,0,11,11,11,11,11,11,11,15,15,15,15,15,15,15,0,0,0,0,15,0,0,0,0,0,0,15,0,0,0,0,15,15,15,15,15,15,15,15,15,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,12,3,12,12,12,16,16,16,16,16,16,16,16,16,16,16,0,16,16,16,16,16,16,16,0,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,0,5,5,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,9,11,11,11,11,11,11,11,11,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,0,15,15,15,15,15,15,15,15,2,2,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,5,16,5,5,5,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,9,11,11,11,11,11,11,11,11,11,11,15,0,0,0,0,0,15,15,15,15,15,15,0,0,0,15,15,15,0,15,15,15,15,0,15,15,15,15,15,15,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,15,15,15,15,0,15,15,15,15,15,15,15,0,0,0,11,11,11,11,9,9,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,2,2,2,2,2,2,2,2,2,2,0,0,2,2,2,2,2,2,2,2,2,2,3,3,16,3,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,16,16,16,0,0,0,0,0,0,0,0,0,5,5,5,0,5,5,5,5,5,5,5,0,0,5,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,11,11,9,9,11,11,11,0,0,0,0,0,11,11,11,11,11,15,15,15,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,2,2,2,2,2,2,2,0,0,0,0,0,0,0,2,2,2,2,2,2,2,3,3,3,3,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,16,16,16,16,5,0,0,0,5,5,5,0,0,0,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,15,15,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,11,11,11,11,15,15,15,0,0,0,15,15,15,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,2,0,2,2,2,2,2,2,2,2,2,0,0,0,0,2,2,2,2,2,2,2,3,3,3,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,16,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,5,0,0,0,0,5,0,5,0,0,0,0,15,0,0,0,0,0,0,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,11,11,11,11,11,11,11,11,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,2,2,2,2,2,2,3,3,3,3,3,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,5,5,0,0,0,0,0,0,15,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,11,11,11,11,11,11,11,11,11,11,17,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,2,2,0,0,2,2,2,2,2,0,2,0,0,0,0,2,2,2,2,2,2,3,3,3,3,3,3,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,5,5,14,5,5,5,5,5,5,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,0,11,11,11,11,11,11,0,0,0,0,0,0,0,11,11,11,11,11,17,11,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,2,2,2,0,2,2,0,0,0,0,0,0,0,2,2,0,0,0,0,0,2,2,2,2,2,2,2,2,3,3,3,3,3,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,14,14,14,5,5,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,15,0,0,0,0,0,0,11,11,0,11,11,11,11,11,11,11,0,0,0,11,17,11,17,17,17,17,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,2,0,0,0,2,2,2,2,0,0,0,0,2,2,2,2,0,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,16,16,3,3,3,3,16,16,16,0,0,0,0,0,14,14,14,14,5,5,14,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,11,11,0,11,11,11,11,11,11,11,0,0,0,0,17,17,17,17,0,0,17,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,0,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,16,16,16,3,3,16,3,3,0,0,0,0,0,14,14,14,14,14,14,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,2,2,2,2,2,2,2,0,0,0,0,2,2,2,2,2,2,2,2,2,2,3,3,3,3,16,16,3,3,3,3,0,0,0,0,0,0,14,14,14,14,14,14,14,0,5,14,5,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,0,0,0,0,11,11,11,11,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,2,2,2,2,2,0,0,0,0,0,2,2,2,2,2,2,2,2,2,3,3,3,3,16,3,3,3,3,3,3,4,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,8,15,0,0,0,0,2,2,2,2,2,2,0,0,0,0,0,2,2,2,2,2,2,2,2,2,16,16,16,3,3,3,3,3,3,3,4,4,4,4,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,0,0,0,0,0,15,15,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,8,8,8,0,0,0,0,2,2,2,2,2,2,0,2,0,2,2,2,2,2,2,2,16,2,16,16,16,16,3,3,3,3,4,4,4,4,4,4,4,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,15,15,15,15,15,0,0,0,0,0,0,0,0,15,0,0,0,15,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,8,8,8,8,0,0,0,0,0,0,2,2,2,2,2,2,2,0,2,2,2,2,2,2,16,16,16,16,16,3,3,3,3,3,4,4,14,4,4,4,4,4,4,4,4,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,15,0,0,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,8,8,8,8,8,8,15,15,8,8,8,8,8,0,0,0,2,2,2,2,2,2,0,2,2,2,2,0,0,2,2,2,2,16,16,16,16,16,3,3,3,3,3,14,14,14,4,4,4,4,4,4,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,15,15,15,15,0,0,15,15,15,15,15,0,0,0,0,0,0,0,15,15,15,0,15,15,15,15,15,15,15,15,15,15,15,15,15,8,8,8,8,15,15,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,2,0,0,2,2,2,2,0,2,0,0,0,0,2,2,2,16,16,16,16,16,3,3,16,3,14,14,14,14,4,4,14,14,4,4,4,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,15,15,15,0,0,15,15,15,15,15,15,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,2,0,0,2,2,0,0,0,0,2,16,16,16,2,2,16,16,16,16,16,16,14,14,14,14,14,14,14,14,4,4,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,15,0,0,0,0,15,15,15,15,15,15,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,2,2,2,0,0,0,2,0,0,0,2,2,2,2,2,16,16,16,16,16,16,16,14,14,14,14,14,14,14,14,4,4,4,4,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,8,8,8,8,8,8,8,0,0,0,2,2,2,2,2,0,0,0,0,0,2,2,2,16,16,16,16,16,16,16,16,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,2,2,2,2,6,0,6,6,0,0,0,2,16,16,16,16,16,16,16,16,16,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,14,14,14,14,14,14,14,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,0,0,0,0,0,0,2,6,6,6,6,0,0,0,0,16,16,16,16,16,16,16,16,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,0,0,0,15,15,15,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,8,8,8,8,8,0,0,0,2,2,6,0,6,6,0,0,0,0,0,16,16,16,16,16,16,16,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,0,15,0,15,15,15,15,15,15,15,7,7,7,7,7,8,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,0,0,2,6,6,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,15,15,15,15,15,15,0,15,15,15,15,15,7,7,7,7,7,7,7,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,0,0,0,0,0,0,0,8,8,8,8,8,8,8,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,0,0,15,15,15,15,15,15,15,0,15,15,0,0,15,15,7,7,7,7,7,8,0,0,0,0,0,8,0,8,8,8,0,0,0,8,8,8,8,8,8,8
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,122,53,53,54,54,70,56,97,48,48,79,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,22,33,0,0,0,15,14,11,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,64,64,132,302,253,37,11,11,34,9,47,93,130,150,30,44,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,31,67,92,57,86,46,46,41,128,0,0,0,0,0,0,0,0,0,0,56,56,38,38,14,73,257,182,169,138,81,41,0,0,15,10,9,47,154,0,0,0,0,0,0,0,0,0,0,0,0,93,55,38,38,62,87,38,22,47,0,29,87,54,54,86,86,43,43,34,0,0,0,0,0,0,0,0,0,96,35,23,60,218,0,62,0,0,17,0,0,0,0,10,21,11,74,37,37,37,41,41,41,54,54,0,0,0,0,0,0,0,0,0,0,70,24,0,0,0,0,0,0,74,0,13,13,17,0,0,0,0,0,0,0,0,0,82,53,29,23,0,189,165,0,0,0,14,0,37,0,9,9,9,44,14,14,19,101,0,0,0,0,0,0,0,74,74,153,122,238,0,0,0,0,0,0,0,0,0,0,14,27,13,40,33,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,50,104,34,894,35,860,11,123,0,11,67,0,9,9,173,222,12,19,8,17,18,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,64,162,88,0,0,0,0,0,0,36,97,17,12,12,25,0,0,0,0,0,52,52,30,30,35,97,0,36,251,36,20,20,20,836,0,33,156,11,75,31,32,48,78,96,133,7,236,491,536,554,45,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,40,40,39,26,79,42,0,32,0,0,0,0,41,86,28,114,11,11,68,0,0,0,0,0,306,50,13,76,12,54,44,44,195,11,25,64,0,45,45,0,0,0,0,0,21,10,102,149,40,0,6,6,6,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,62,30,30,26,93,49,19,0,0,0,0,0,42,12,53,95,306,350,479,573,536,0,0,0,0,0,42,243,162,20,56,0,11,154,46,11,120,70,0,0,0,0,0,0,24,85,12,11,6,149,168,204,32,32,9,9,0,0,0,0,65,98,53,31,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,18,21,47,0,0,0,23,64,0,22,20,90,19,20,39,20,24,0,0,0,36,386,16,35,33,25,39,66,89,29,39,0,0,0,0,0,0,0,0,0,33,25,54,82,52,7,10,10,62,167,33,33,66,66,45,12,13,50,50,0,0,0,0,0,0,47,47,0,0,0,0,0,0,0,62,62,0,0,0,34,25,122,70,51,0,52,145,62,44,0,31,39,0,27,27,0,82,82,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,11,7,11,35,14,39,12,12,19,43,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,29,0,0,0,0,0,0,104,79,31,31,41,67,0,57,64,212,173,12,12,12,26,26,88,177,41,275,253,79,0,0,0,0,15,15,0,0,0,0,21,21,9,315,85,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,7,70,17,13,12,13,20,20,40,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,49,0,0,0,0,0,63,63,27,0,0,56,56,62,0,0,0,0,0,56,56,0,26,0,0,0,0,46,0,0,0,0,0,0,0,0,307,364,25,0,0,0,0,0,51,51,0,47,15,10,208,172,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,14,124,9,320,15,384,400,16,0,0,0,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,95,35,0,10,40,40,76,77,0,0,0,0,0,0,57,57,257,52,52,52,0,0,0,0,0,39,39,78,58,0,0,0,0,41,41,35,149,53,13,46,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,55,95,241,262,15,13,50,37,0,0,0,0,0,0,0,0,52,73,189,21,21,50,50,186,86,43,43,58,47,41,0,0,0,0,0,60,0,0,0,0,0,0,63,0,0,0,0,0,55,0,0,0,0,0,0,0,71,0,0,43,43,44,0,0,22,44,22,0,43,43,29,29,148,42,0,0,0,197,22,13,13,0,0,0,0,0,0,0,0,0,93,37,21,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,26,10,11,17,17,29,0,0,0,0,0,0,0,0,0,0,0,0,166,74,74,92,116,15,16,26,15,15,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,136,37,70,70,0,0,23,23,393,32,14,15,103,47,36,41,19,19,19,256,293,0,0,0,0,0,55,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,77,107,136,0,0,0,0,0,66,66,66,34,34,34,154,60,114,96,18,18,18,21,35,35,39,29,29,16,16,16,41,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,48,14,28,261,21,11,20,7,65,181,222,50,0,0,0,0,0,0,0,0,0,0,0,99,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,17,36,12,80,0,0,0,0,0,40,20,27,15,25,25,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,75,75,9,9,14,17,19,36,24,226,86,51,0,7,26,17,0,0,0,0,0,49,161,54,121,79,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,12,12,26,30,0,0,0,0,0,44,44,15,20,19,14,55,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,71,32,0,55,55,0,0,0,0,0,0,72,113,50,20,50,50,59,11,11,103,0,0,0,0,29,29,0,0,0,0,87,112,33,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,11,20,0,0,0,0,0,0,0,0,0,0,0,70,55,19,66,28,18,73,68,100,102,34,0,0,0,0,0,0,0,50,0,0,0,0,0,0,60,0,0,0,0,0,0,0,39,67,0,44,44,15,13,46,0,0,32,54,54,0,0,0,0,45,45,45,13,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,10,0,43,43,0,0,0,0,0,0,38,122,16,22,0,0,37,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,1262,148,78,14,64,0,34,34,68,68,0,0,0,0,78,93,80,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,24,74,53,15,0,0,0,189,18,14,33,19,0,0,32,32,32,40,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,55,0,0,0,0,60,60,1122,187,55,29,14,0,0,0,0,0,0,0,0,45,45,173,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,38,17,15,0,0,0,0,0,0,0,35,35,89,15,28,78,0,0,0,44,44,62,0,0,0,0,0,0,110,55,55,55,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,95,58,111,37,37,37,37,37,16,53,69,33,47,14,0,0,0,0,0,0,55,352,17,335,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,15,12,12,14,14,0,0,0,0,0,0,54,54,54,16,16,0,0,0,0,0,0,0,0,0,0,58,58,26,26,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,74,35,35,35,0,0,55,55,55,55,41,32,32,32,11,23,40,40,10,9,9,22,22,0,0,0,0,29,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,53,51,128,30,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,70,70,0,0,0,76,39,39,39,41,41,41,41,82,36,0,0,0,0,0,79,44,56,13,13,13,13,15,15,87,0,0,62,0,0,0,75,74,23,0,0,0,0,0,0,0,122,13,13,13,66,86,86,255,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,68,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,50,50,50,50,221,79,96,30,30,0,0,0,0,0,0,57,57,154,30,0,0,0,0,0,0,86,86,39,39,15,0,0,0,0,0,0,0,0,30,30,31,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,118,236,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,25,37,0,0,0,0,0,0,0,198,99,99,177,41,0,0,0,0,0,0,63,63,16,16,33,33,13,13,0,0,0,40,40,40,14,14,0,0,0,0,0,0,29,29,0,0,0,55,55,0,31,16,43,57,46,65,89,125,54,17,17,17,17,37,20,0,0,0,0,0,0,0,0,0,173,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,0,0,0,0,0,63,63,15,57,0,0,0,0,0,0,0,0,0,30,0,0,32,19,43,62,38,38,28,28,83,0,0,0,0,0,42,0,0,45,28,0,0,27,15,15,14,14,12,12,0,0,50,50,50,0,0,0,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,304,61,0,0,0,0,0,0,31,15,15,15,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,28,48,47,29,29,38,58,134,50,0,0,0,0,0,0,64,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,16,64,0,0,0,0,0,31,31,31,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,64,64,115,25,25,25,0,0,0,0,0,0,74,43,31,31,31,0,0,0,0,0,0,12,25,13,27,53,32,32,46,46,0,0,0,0,0,0,0,0,0,0,0,0,58,58,33,33,62,0,0,58,73,29,29,44,75,44,31,31,0,0,0,31,31,31,58,0,0,0,0,57,57,0,0,0,0,0,0,0,0,25,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,88,27,84,0,0,0,0,0,0,50,15,15,15,74,0,0,0,0,0,12,12,12,14,26,14,13,13,78,77,0,0,0,0,0,0,0,0,53,53,53,0,0,0,0,33,33,0,0,12,12,27,27,50,0,0,0,30,30,30,28,0,30,30,30,30,23,35,35,29,45,0,0,0,0,0,0,0,0,0,0,45,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,37,43,0,0,0,0,0,0,0,0,0,15,15,72,36,0,0,0,0,0,0,0,0,38,63,13,35,48,14,12,28,12,12,12,50,49,53,65,0,60,60,120,0,49,49,0,0,0,0,0,72,0,0,0,58,42,42,0,0,71,32,0,0,0,0,0,0,16,48,28,58,13,15,29,29,0,0,98,0,0,0,0,0,0,54,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,255,75,57,387,0,0,0,0,0,44,44,15,15,15,50,0,0,0,0,0,0,21,21,11,11,11,13,34,60,29,40,11,11,15,14,30,30,31,31,570,34,34,0,0,0,0,0,0,0,0,16,16,16,43,0,30,30,0,0,0,0,63,24,24,227,14,18,38,59,80,20,13,13,107,0,0,0,0,0,0,0,0,0,14,14,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,16,16,38,0,0,0,0,0,0,0,0,16,43,0,0,0,12,12,12,27,29,55,13,12,14,28,605,640,35,13,699,46,0,0,0,0,48,48,0,0,29,61,0,0,0,0,13,13,12,251,32,14,11,9,18,29,17,17,17,92,123,0,0,0,0,0,0,0,24,40,40,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,45,1,1,1,1,70,69,0,0,0,0,0,0,0,0,0,0,31,31,30,30,0,0,0,0,0,0,0,0,0,0,0,0,11,11,12,22,22,22,44,13,42,15,28,55,40,0,0,0,0,0,0,32,32,32,25,25,25,0,0,0,0,0,0,46,328,294,29,14,29,34,48,71,19,19,46,15,14,14,42,42,0,0,0,0,0,0,0,0,0,0,0,106,99,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,497,16,0,32,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,29,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,13,13,13,13,60,30,30,0,0,0,0,0,0,0,0,47,22,11,11,43,43,0,0,0,0,0,29,29,23,23,13,13,29,68,0,0,85,109,15,14,25,12,47,82,35,49,117,0,0,0,0,0,0,0,0,51,51,51,8,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,677,32,0,0,0,0,0,0,0,0,0,0,0,0,53,39,33,33,67,50,31,31,73,0,0,0,0,0,0,0,0,0,0,85,110,87,87,66,66,0,0,0,0,0,0,0,0,0,0,0,0,58,4224,0,0,0,0,0,0,0,0,0,0,0,25,25,32,36,36,37,37,37,13,13,13,13,40,54,35,18,18,20,93,0,0,0,0,0,0,0,0,0,0,29,37,0,0,0,0,0,0,0,0,0,0,28,28,28,0,0,0,0,33,0,0,31,88,43,18,11,24,11,33,22,58,36,114,0,0,0,0,0,8,8,45,53,47,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,48,0,0,0,0,0,0,0,0,0,43,65,65,76,18,14,13,17,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,48,0,0,24,46,67,67,0,0,0,0,0,0,0,0,0,0,87,30,34,4166,11,11,27,38,78,42,42,34,34,34,60,106,0,0,0,0,0,0,0,51,14,39,13,21,21,43,43,0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,24,46,46,0,0,0,0,0,0,0,12,12,12,72,0,0,0,0,0,0,0,0,30,42,38,14,12,12,12,45,0,0,0,0,63,0,0,0,0,39,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,50,94,22,14,25,19,35,30,17,160,37,37,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,22,0,0,0,28,33,14,52,38,77,150,0,27,27,42,13,57,4132,11,24,22,12,12,12,40,40,28,77,0,0,0,17,17,82,0,0,0,40,40,40,0,0,0,0,0,0,0,0,56,0,0,0,24,0,50,0,0,37,25,13,46,33,0,0,0,0,0,0,0,72,96,28,16,17,50,88,0,0,0,0,0,0,0,0,0,0,24,7,0,0,0,0,0,0,0,0,0,0,175,13,13,13,253,53,0,0,0,0,0,0,0,0,47,40,40,30,30,14,26,21,13,14,80,16,79,112,165,52,40,34,34,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,10,33,45,6,37,18,75,11,10,10,76,908,13,12,45,10,4122,13,11,15,11,37,63,27,117,0,0,0,0,0,0,0,13,25,52,0,0,0,0,0,0,0,0,33,0,0,29,45,33,36,85,32,61,0,10,12,37,0,0,0,0,48,0,0,0,40,12,11,11,29,170,157,0,0,0,0,0,0,0,0,0,70,28,42,7,0,0,0,0,0,0,0,0,0,0,37,37,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,11,43,65,65,31,13,14,14,62,14,17,16,15,14,56,0,0,0,0,70,0,0,0,0,0,0,60,0,0,0,0,35,793,47,32,111,37,37,37,13,25,37,73,128,70,262,226,14,24,882,613,517,111,11,9,9,4088,9,11,27,9,9,18,37,37,37,84,38,60,56,65,12,38,32,69,31,64,30,43,75,0,28,15,16,13,17,28,28,0,13,13,13,13,30,30,30,30,0,0,0,0,0,0,0,0,0,0,13,103,27,15,13,0,107,122,0,0,0,0,0,0,0,0,0,0,46,127,13,81,14,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,61,12,20,39,17,150,59,12,15,15,14,17,17,34,25,34,31,16,15,15,15,15,47,47,62,0,0,0,0,0,0,0,0,0,0,41,41,41,110,68,55,0,73,33,33,12,79,53,13,14,1721,1659,1630,1,354,11,16,122,9,145,76,83,391,99,25,8,4068,8,28,43,8,7,7,10,9,10,21,27,24,24,37,24,10,11,49,83,11,13,10,13,15,48,46,33,58,24,71,0,0,0,0,0,63,33,53,32,27,41,15,15,84,42,42,42,72,114,0,0,0,0,21,21,64,32,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,12,20,29,75,54,183,72,64,40,12,16,79,0,0,0,0,0,47,46,28,28,31,104,0,0,0,51,51,144,0,28,13,54,54,0,13,758,13,26,13,89,15,15,49,1304,31,15,9,94,24,113,59,69,380,332,62,9,4050,90,81,11,86,77,21,13,11,11,11,14,13,12,13,13,25,38,25,13,14,14,30,21,37,16,49,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,12,26,88,134,54,69,14,14,14,45,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,196,196,32,55,0,0,0,0,50,50,51,51,0,37,37,125,46,40,86,60,0,0,0,62,42,20,20,13,25,23,39,95,74,174,59,221,100,105,12,13,14,14,31,32,41,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,93,115,93,43,14,14,42,70,83,205,526,13,44,15,9,9,8,3,916,873,8,29,29,68,0,0,240,60,52,89,182,3675,3665,2286,44,33,41,33,11,11,10,43,88,100,112,11,11,12,12,27,27,15,41,15,202,127,0,0,33,33,33,0,0,0,0,0,0,0,0,0,48,48,48,0,25,25,50,11,10,12,32,0,0,51,0,0,0,0,0,0,0,0,87,32,32,0,0,0,0,0,0,225,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,103,61,59,17,17,33,46,33,33,0,0,0,0,0,0,28,12,16,37,63,14,50,0,0,0,0,0,77,12,27,13,15,26,45,30,0,0,0,0,0,0,33,33,11,63,25,80,13,14,28,69,83,26,486,13,11,24,205,118,24,1,10,852,6,0,0,0,0,0,0,0,32,45,77,93,1371,7,2133,25,17,10,9,9,20,24,9,24,124,249,286,529,541,577,643,29,13,74,33,33,32,0,0,10,34,34,60,60,0,0,0,64,64,30,0,0,0,19,11,41,30,12,12,48,48,0,0,0,0,0,0,0,76,55,27,0,0,0,0,0,52,52,0,0,0,0,0,0,0,26,26,15,15,15,12,26,26,96,0,0,0,0,0,0,0,38,29,20,20,32,15,181,85,0,0,0,0,0,0,0,23,38,13,12,15,28,66,0,0,0,43,81,111,0,0,0,12,12,38,13,13,54,13,13,27,13,417,55,14,25,71,11,8,27,16,37,11,814,338,27,27,53,0,0,0,0,66,83,8,1354,1316,2073,51,41,33,11,11,12,12,12,24,87,13,204,231,12,14,671,688,71,746,0,0,0,0,0,0,0,35,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,23,10,18,16,11,11,11,72,0,0,0,0,22,7,7,0,0,0,0,214,0,0,0,0,0,0,37,37,141,0,0,0,0,0,0,0,0,0,0,0,0,46,70,99,24,34,11,40,88,15,15,15,30,41,0,0,0,32,32,43,10,11,12,12,12,38,27,27,38,38,68,40,431,403,24,26,13,26,14,14,13,391,12,27,13,20,14,20,42,9,2,283,347,411,45,269,137,70,16,0,0,0,0,51,17,1266,41,2023,41,33,24,12,21,47,12,12,50,12,190,12,12,26,14,14,29,43,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,26,26,88,35,112,95,60,0,0,0,0,0,0,9,0,0,0,0,84,84,0,0,0,0,0,0,0,0,0,0,0,0,0,132,66,89,58,58,19,10,19,17,103,32,164,0,0,0,0,30,53,30,12,11,12,36,12,12,12,12,12,13,12,12,28,35,367,308,12,13,13,13,40,14,326,52,39,13,31,172,0,107,43,0,0,28,57,20,116,26,17,39,14,0,0,0,44,72,83,9,15,2013,21,13,94,80,22,11,12,23,13,151,13,28,43,125,40,26,0,0,0,0,0,0,0,0,0,0,82,41,94,41,33,40,93,53,40,58,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,61,0,0,0,21,21,0,0,0,0,0,0,0,0,0,0,47,47,11,12,27,17,19,37,64,27,0,0,0,0,0,0,0,13,13,11,10,23,60,27,34,22,12,39,109,13,23,12,46,209,41,14,13,13,54,275,12,12,26,17,47,79,131,21,21,21,17,204,0,0,0,0,0,0,0,25,38,0,0,0,27,0,30,9,1111,1173,16,13,1982,1923,106,56,32,22,11,11,12,37,89,26,13,41,15,173,63,0,0,0,0,0,14,13,13,13,57,0,0,0,0,0,0,0,0,0,0,0,246,246,251,251,0,80,0,0,0,0,0,0,11,25,14,27,31,17,33,36,65,29,0,0,0,13,12,22,22,105,44,40,0,0,0,0,12,214,148,12,96,10,34,63,132,119,105,52,40,13,154,12,12,13,18,14,42,0,0,0,71,238,34,21,11,0,0,111,18,10,32,18,10,80,7,39,9,1057,10,18,18,17,27,1781,13,43,11,11,11,24,77,13,24,38,53,43,193,0,0,0,0,0,32,15,17,18,12,50,50,0,0,0,0,0,0,0,0,0,0,0,0,74,77,0,0,0,0,0,13,22,9,45,105,97,16,49,30,95,0,0,0,0,28,25,25,47,0,0,38,0,0,302,13,13,39,83,10,22,13,39,14,14,26,13,27,12,115,12,12,59,115,0,0,0,0,0,0,0,0,0,0,0,0,242,160,31,9,10,18,68,0,46,324,564,632,382,10,9,8,15,8,16,1695,10,63,39,12,51,12,12,14,13,27,34,34,0,0,0,0,0,14,131,76,30,14,43,0,0,0,0,0,62,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,24,58,58,140,144,16,114,16,84,0,0,0,0,0,0,0,0,0,0,0,24,12,157,32,63,13,13,12,22,10,11,12,13,13,13,13,13,14,12,91,12,12,22,108,0,0,0,0,0,0,82,127,76,57,31,97,20,10,0,158,0,48,372,44,18,15,24,8,1167,1630,425,24,14,12,39,12,13,27,55,83,54,0,0,0,0,0,0,189,13,27,13,14,15,90,0,45,46,14,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,39,49,0,0,0,0,15,32,142,170,0,0,0,0,0,0,0,38,64,26,26,26,42,121,90,12,145,50,12,14,40,11,10,11,12,13,13,80,27,13,13,13,54,12,13,33,53,0,0,0,0,0,0,53,22,22,142,7,5,0,0,0,0,161,65,10,15,70,1104,1141,10,301,10,10,12,12,25,41,13,14,14,14,109,41,0,0,0,0,0,0,0,0,0,13,39,26,14,13,41,44,110,218,15,14,46,46,0,0,0,0,0,0,0,78,39,55,47,0,0,0,0,0,0,0,0,0,0,0,0,0,60,41,13,27,27,27,0,0,0,0,0,0,0,11,33,11,60,82,121,12,13,12,66,119,142,163,220,39,106,13,13,26,14,13,12,28,16,25,78,0,0,0,0,34,34,189,207,31,10,0,0,0,0,12,29,7,8,1023,9,10,32,221,11,11,10,11,27,38,55,342,12,26,40,72,2734,69,56,0,0,0,0,0,0,0,0,27,91,13,13,13,28,94,153,31,17,17,102,0,0,0,0,0,0,0,0,16,16,16,15,55,0,0,0,0,0,0,0,0,0,0,0,0,40,13,33,0,0,0,0,0,60,108,0,10,10,22,47,70,12,12,14,53,12,11,11,22,244,516,119,13,40,54,14,25,12,31,11,14,39,0,0,0,0,22,53,45,19,194,165,2,25,7,519,538,734,1001,203,13,195,12,15,24,73,152,12,210,261,13,369,382,395,2702,13,34,34,205,0,0,0,0,0,0,0,0,0,0,77,14,39,26,13,13,60,17,135,16,19,44,44,0,0,0,0,57,35,22,40,40,0,0,0,0,0,0,0,0,66,0,0,0,45,0,0,0,0,0,0,0,0,0,0,47,12,12,60,28,22,11,35,23,35,11,12,13,25,62,133,221,12,51,699,740,13,359,239,159,55,11,19,12,85,0,0,0,0,0,0,229,26,9,8,46,36,458,0,178,53,186,6,28,147,9,10,26,67,20,184,11,11,835,2189,2201,2225,67,42,150,15,15,79,48,78,54,0,0,0,0,44,185,12,24,12,12,13,29,14,75,31,15,50,50,194,0,0,0,0,0,0,0,50,0,0,27,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,59,22,10,12,23,11,12,11,14,12,12,50,46,77,11,26,14,26,1137,12,13,13,90,17,11,17,42,0,0,0,23,18,76,18,32,19,5,68,6,453,35,0,0,167,40,61,74,12,9,54,8,11,29,761,812,173,1168,12,25,13,14,93,43,44,14,28,0,0,0,0,13,153,127,62,37,12,15,14,59,17,14,18,94,56,50,50,0,0,0,0,0,64,32,32,32,0,0,33,18,18,44,62,0,0,0,0,0,0,0,40,26,191,0,26,25,25,32,27,27,27,27,12,33,10,11,13,11,12,50,24,12,12,37,34,10,11,13,13,13,1177,26,13,12,14,11,12,18,153,0,0,0,21,0,0,35,147,85,0,0,395,5,0,0,0,16,19,31,21,35,21,593,693,706,39,162,1135,11,11,12,27,13,65,28,29,14,50,36,0,0,0,0,0,26,14,12,12,51,14,12,12,15,16,16,33,52,15,17,55,55,0,0,0,0,0,15,15,39,0,0,58,29,29,15,31,60,0,0,0,0,0,0,0,0,36,36,14,157,21,115,189,128,179,167,108,97,12,11,10,11,23,48,62,11,12,12,12,13,10,9,10,12,12,29,13,1229,13,12,11,11,20,12,61,0,0,0,0,0,0,27,0,0,147,240,86,0,0,0,131,14,10,10,546,559,77,11,11,147,24,1099,22,12,13,12,13,14,15,14,43,215,0,0,51,36,24,25,11,11,46,14,13,14,16,16,18,18,18,31,31,31,33,0,0,0,0,0,0,36,0,0,0,0,13,13,14,35,35,59,0,0,0,0,0,0,29,42,61,13,24,12,134,94,31,87,34,13,60,13,1234,11,1280,1338,1422,84,12,25,13,12,25,11,30,11,13,109,39,13,1275,13,13,33,33,25,76,52,15,15,13,28,0,0,0,0,249,30,219,7,0,5,121,105,0,0,116,459,476,519,535,26,40,11,130,10,19,1046,32,21,11,24,38,13,27,59,103,15,75,64,89,64,50,12,12,13,13,72,18,31,45,46,49,33,52,36,413,51,362,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,44,0,0,0,0,0,32,44,40,411,36,37,465,8,11,10,104,77,10,31,72,22,34,13,1222,23,12,25,12,1518,11,25,13,13,50,10,21,52,13,137,28,49,0,0,126,12,12,13,29,13,42,0,0,0,18,18,83,135,12,0,0,0,0,0,188,12,7,14,13,12,117,542,560,117,945,58,48,12,12,12,16,14,15,29,47,13,28,57,28,25,16,42,16,19,116,258,0,0,0,0,0,0,0,0,0,0,0,0,68,34,34,0,0,0,0,0,0,0,0,0,0,0,0,40,53,12,359,12,9,428,124,81,11,78,66,13,13,11,19,1169,40,11,13,13,14,1559,1583,76,27,77,14,12,95,12,31,43,65,0,0,0,0,0,0,37,13,13,12,12,13,70,72,0,102,19,186,1066,12,8,39,259,134,0,140,35,64,79,87,102,532,49,105,10,243,11,11,13,11,11,120,168,12,15,16,16,14,14,13,11,11,111,13,47,61,14,26,26,26,68,131,0,0,0,0,0,55,27,27,51,51,50,50,0,0,0,0,0,0,53,53,53,26,12,13,347,49,33,294,24,67,64,53,24,49,13,14,1155,12,11,60,14,13,27,14,14,1700,91,14,13,39,107,29,29,0,0,0,0,0,0,0,0,0,54,12,12,14,13,16,100,0,0,0,0,0,0,5,837,387,300,277,6,0,0,0,29,57,507,521,37,28,12,28,220,10,11,12,13,63,18,19,198,13,14,15,44,13,13,12,15,12,142,14,29,37,37,37,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,45,13,83,60,16,284,20,254,23,0,0,0,35,71,147,183,1120,51,14,10,112,154,55,28,28,59,26,26,27,1818,25,25,40,26,28,170,12,27,0,0,0,0,0,0,40,28,27,25,145,0,0,0,5,5,19,824,68,5,0,0,0,0,0,175,261,22,13,15,15,11,146,12,11,37,11,12,13,17,231,46,17,90,14,14,29,26,20,24,13,171,189,18,18,18,62,95,49,49,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,25,272,249,0,148,0,66,66,53,32,32,57,14,14,870,12,16,12,35,207,53,0,0,0,0,0,0,0,0,227,221,235,15,207,25,0,0,0,0,0,0,0,0,0,0,13,13,13,40,39,33,0,0,3,115,4,0,0,0,0,0,0,0,0,235,21,29,72,105,120,130,15,225,276,299,14,31,322,14,13,80,186,15,13,16,113,32,12,37,38,56,38,53,0,0,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,18,8,9,0,109,227,179,79,79,100,717,102,766,23,18,101,565,265,15,17,30,97,80,0,0,0,0,0,0,0,0,0,31,63,63,189,44,44,0,0,0,0,0,0,0,29,238,192,13,27,151,26,0,0,6,0,0,0,46,0,0,0,0,0,0,0,0,162,345,175,355,175,357,186,229,438,531,232,1286,238,254,439,0,24,283,404,197,348,171,434,0,0,0,0,0,0,0,0,0,0,0,0,60,60,72,0,0,54,1,0,3,17,174,328,0,191,192,0,0,232,212,208,244,226,241,617,191,0,0,0,0,0,132,0,141,31,66,0,0,0,54,209,178,176,540,342,173
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1917,2.7012,2.6301,0.9241,3.175,4.5967,2.1562,1.7948,4.0636,1.2084,3.8385,2.014,3.5068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7249,0.9241,4.3538,0,0,0,0,0,1.3743,1.8245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6349,2.9855,2.0614,3.9333,6.7766,8.3937,1.6705,1.5401,1.4572,1.4927,0,1.8008,2.3102,2.3991,8.2456,1.7297,1.6823,2.0614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8482,2.2036,2.6775,2.6538,3.2224,1.8482,1.9903,2.3635,1.3683,1.0426,3.5542,0,0,0,0,0,0,0,0,0,0,2.3694,3.6015,1.8126,1.0189,1.2558,1.8837,3.2461,3.8385,2.8256,2.6123,1.3683,2.1799,0,0,0,0,1.0189,10.1886,16.0885,0,0,0,0,0,0,0,0,0,0,0,0,4.2294,1.8245,3.4416,0.7464,2.3457,5.5149,3.2343,2.097,2.2924,0,0,1.8719,2.322,3.3172,5.0173,2.7782,0.7641,1.3506,1.7297,0,0,0,0,0,0,0,0,0,3.4416,3.175,0.8175,1.706,3.0566,0,1.8482,0,0,0,0,0,0,0,0,1.5283,1.3387,1.1906,0.6931,0.5509,2.7959,1.5638,2.0614,0.9241,2.5116,1.9666,0,0,0,0,0,0,0,0,0,0,5.0232,1.1018,0,0,0,0,0,0,1.2558,0,2.4287,2.3102,1.7593,0,0,0,0,0,0,0,0,0,2.1088,5.118,1.9015,1.6941,0,3.1277,1.6349,0,0,0,0,0,0,0,0,1.1373,0.8767,2.0436,2.6538,2.9381,1.2558,3.0803,0,0,0,0,0,0,0,1.4217,1.1373,5.971,6.125,6.587,0,0,0,0,0,0,0,0,0,0,0,0.6042,0.6397,2.9026,1.8126,2.9855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8175,1.1373,3.2343,0.6753,8.6366,3.7319,6.0776,1.2321,3.2521,0,1.0189,2.1147,0,0,0,2.5057,3.4594,1.398,1.6231,1.9903,1.8126,1.4098,1.3743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5816,0,1.4691,2.8966,0,0,0,0,0,0,0,1.9548,3.2521,1.8837,0.4383,0.9063,1.315,0,0,0,0,0,1.7415,4.028,1.2084,2.168,1.8482,4.9521,0,1.8955,6.4686,1.084,2.4642,0.9004,2.7012,0,0,2.6656,5.8525,5.3549,3.1454,2.0259,1.7297,0.8885,2.2154,0.9952,3.1277,1.5757,2.3931,7.6296,5.0173,6.0954,14.578,4.5612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4594,1.2973,3.5245,1.7948,1.4335,3.2698,2.1443,0,1.6705,0,0,0,0,0,2.5057,1.9192,2.8433,1.4454,4.1465,2.251,0,0,0,0,0,5.4912,2.8433,1.244,3.3942,0.8648,1.7948,2.0377,5.1654,2.1325,1.1018,3.9807,8.4707,0,5.9177,5.5445,0,0,0,0,0,0,0,1.5757,2.8078,1.6941,0,1.7415,2.7367,6.3442,0,2.0851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.867,0,0,0,0,2.5827,2.7485,3.175,1.5461,8.2753,1.1492,0,0,0,0,0,0,0,0,2.1088,3.1454,7.2149,4.1761,5.6393,4.9758,1.9074,0,0,0,0,0,2.3457,3.2935,2.7959,1.8363,1.5757,0,0,2.3694,1.1847,1.0544,9.7384,1.9015,0,0,0,0,0,0,0,1.4454,0,0,0,3.9096,2.322,8.8143,3.9807,1.8482,1.8837,4.6026,0,0,0,0,2.251,3.3883,1.8245,1.6705,1.475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9774,3.9392,2.2036,1.6231,1.3032,0,0,0,2.1799,2.7485,0,1.4217,1.3032,1.6349,1.4454,1.0426,4.0221,2.405,1.1906,0,0,0,5.6866,6.9306,1.1966,0.8885,0,1.7889,1.6231,1.4691,2.1503,1.6231,1.86,0,0,0,0,0,0,0,0,0,1.8245,0,2.0259,1.8304,1.1373,1.6823,1.6231,1.0781,6.7529,13.5058,1.8008,3.175,1.9666,4.5019,1.161,1.0662,1.1492,1.8245,8.3878,0,0,0,0,0,0,2.014,1.6349,0,0,0,0,0,0,0,2.1562,3.9807,0,0,0,3.4831,1.4572,2.2213,1.5875,1.552,0,1.9903,2.8196,0.9478,1.6586,0,0,1.2676,0,2.0436,1.6705,0,1.6349,1.5638,4.9344,1.5283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3506,1.6349,1.5046,11.089,1.4572,2.1443,2.6064,1.552,1.6349,9.4777,16.0648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5682,1.7297,0,0,0,0,0,0,2.0318,1.783,1.2973,0.6871,1.4691,2.6301,0,2.4879,3.3172,3.412,1.8719,0.8885,1.1373,2.944,1.1729,1.7771,1.3861,7.0135,6.0954,3.0803,3.1277,1.0426,0,0,0,0,3.8977,1.9903,0,0,0,0,2.4524,5.7637,1.8837,5.3668,2.328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6586,2.6656,1.9429,1.5757,0,1.9666,1.1492,4.105,5.0232,2.0614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1325,2.6064,0,0,0,0,0,2.559,1.9666,2.5827,0,0,2.0377,3.0566,4.2413,0,0,0,0,0,1.5461,4.5967,0,0.6634,0,0,0,0,6.0421,0,0,0,0,0,0,0,0,2.7545,7.2149,2.097,0,0,0,0,0,2.5353,2.1088,0,1.7238,0.9596,2.1206,2.8196,3.2935,2.014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6586,23.0309,25.2108,1.6823,4.1465,0.9004,5.2957,4.2057,1.3743,0,0,0,0,0,0,0,0,1.7771,1.9429,0,0,0,0,0,0,0,0,0,1.1136,1.4217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7297,0,0,0,0,0,0,0,0,5.971,1.6705,0,2.2213,5.3549,1.5816,18.6652,10.5203,0,0,0,0,0,0,1.4691,3.0329,5.2246,3.566,0.8648,3.7733,0,0,0,0,0,1.244,3.027,5.0351,1.0662,0,0,0,0,1.6349,0.8293,0.7819,8.9269,16.7401,1.6586,1.4098,1.8955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.2183,16.5446,3.2284,3.7437,1.7652,1.6468,6.279,9.8332,0,0,0,0,0,0,0,0,1.3269,2.5116,3.6489,1.3506,1.0662,2.7722,2.4642,6.1131,1.8245,0.6397,4.1643,7.2031,1.3743,11.4918,0,0,0,0,0,1.7534,0,0,0,0,0,0,1.5875,0,0,0,0,0,2.1562,0,0,0,0,0,0,0,3.7911,0,0,1.9192,1.5401,1.0189,0,0,1.2795,1.1551,0.5509,0,1.8719,3.7437,1.6586,4.3124,1.9429,1.4454,0,0,0,2.4879,1.0544,1.4394,1.2795,0,0,0,0,0,0,0,0,0,4.0636,3.2224,1.2913,2.0022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8719,1.6941,1.9548,5.1831,2.9499,1.244,0,0,0,0,0,0,0,0,0,0,0,0,2.9381,3.3172,0.9063,0.8885,1.4454,1.7297,1.2084,0.7227,0.853,1.3861,1.6171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9666,6.3975,1.0662,1.9192,1.4039,0,0,1.0426,6.0539,10.7809,1.9192,1.3624,0.9004,1.7771,1.7889,1.2321,1.8126,3.8977,2.9026,2.7782,2.0614,16.438,0,0,0,0,0,1.8955,1.9666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0614,10.3544,1.9548,7.0135,0,0,0,0,0,1.0899,1.8955,2.4642,1.1018,1.2617,0.6161,3.9333,2.5353,1.5638,4.6915,0.6161,3.1514,2.8196,4.5019,1.4691,1.9429,4.2176,1.7001,1.3328,2.9026,0.5568,1.0129,1.2321,1.398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0173,1.5401,0,1.7771,5.272,13.648,1.6231,1.7652,0.9537,2.9322,3.0329,2.7959,2.014,0,0,0,0,0,0,0,0,0,0,0,7.6237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5283,1.3861,0.8411,11.9893,0,0,0,0,0,1.1018,1.7771,1.7889,1.0189,0.9596,1.3328,0,0,0,0,0,0,0,0,0,0.8293,0,0,0,0,0,0,0,2.7722,0,0,0,0,0,0,0,0,2.7012,2.6064,2.3102,0,0,2.0377,11.7287,5.3549,2.79,6.1309,2.1147,1.2795,0,0,1.2558,0.8352,0,0,0,0,0,1.3032,2.0851,1.8719,3.2757,3.412,5.0706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8482,0.9833,1.3683,4.0636,0.9952,0,0,0,0,0,2.6775,3.4594,1.4927,1.3861,1.9311,1.1966,4.028,1.4217,1.084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2036,2.3931,2.559,0,1.706,1.7297,0,0,0,0,0,0,2.1088,3.7437,1.0307,1.1966,1.8245,3.0803,4.265,1.86,1.8955,3.0566,0,0,0,0,2.0792,2.559,0,0,0,0,2.559,2.3457,5.5563,1.5283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6075,1.7415,0,0,0,0,0,0,0,0,0,0,0,2.2036,3.0092,1.7415,3.021,1.6468,1.244,1.1729,0.9241,3.5186,1.9489,2.9381,0,0,0,0,0,0,0,2.5116,0,0,0,0,0,0,2.2036,0,0,0,0,0,0,0,3.0329,2.6064,0,1.7771,1.5401,1.1255,1.8008,1.8245,0,0,0.9596,3.7911,1.315,0,0,0,0,1.5638,0.6397,1.6349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4416,0,1.6823,1.5875,0,0,0,0,0,0,3.3646,4.0043,1.5757,4.3124,0,0,1.5638,2.1562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.3415,12.795,9.6258,1.5283,3.412,1.7238,0,0.8293,3.5245,2.6301,2.8611,0,0,0,0,1.4217,4.0873,5.9828,0,3.1099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.2069,7.363,5.4971,8.53,0,0,0,6.4923,1.9726,13.1148,9.4541,6.978,0,0,2.014,1.7297,0.622,1.3743,0,0,0,0,0,0,0,0,0,0,1.6586,0,0,0,0,0,0,0,0,0,1.0426,0,0,0,0,5.118,4.105,0,6.7766,1.5105,1.6231,1.7593,0,0,0,0,0,0,0,0,1.0189,4.3538,2.097,2.2924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8363,24.0972,2.5234,10.1293,0,0,0,0,0,0,0,3.0803,1.4572,2.1562,1.161,6.6818,10.8994,0,0,0,1.5638,2.4168,2.7367,0,0,0,0,0,0,2.7012,2.3694,0.8352,3.6015,2.2984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2343,5.4023,0.9063,3.8385,0.4147,0.4502,0.462,0.6279,3.0329,0.5331,0.5924,2.4524,14.5009,15.2473,9.7917,0,0,0,0,0,0,1.6349,5.0114,1.8126,3.7022,1.6231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5046,17.0599,8.2101,8.447,13.488,6.0776,0,0,0,0,0,0,1.4454,0.8175,1.9666,2.7782,1.2084,0,0,0,0,0,0,0,0,0,0,1.9903,2.7012,10.307,8.6721,2.9618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0377,1.4217,2.3694,1.9903,0.7286,0,0,1.3032,1.0307,2.6538,1.3506,3.566,2.2806,1.2084,1.2973,0.9833,1.1373,3.5245,1.6882,0.8175,11.5806,0.8175,7.9909,4.727,0,0,0,0,1.6349,1.5283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5875,11.9301,6.8654,19.4827,9.0039,0,0,0,0,0,0,1.7534,0,0,0,0,0,0,0,0,0,2.322,13.3873,0,0,0,0,0,0,0,0,0,0,0,3.1514,2.1325,0,0,0,1.9666,2.322,1.0662,1.6349,1.3269,0.7108,0.9419,1.2973,2.6123,2.0851,0,0,0,0,0,2.9855,1.398,1.398,1.3683,3.7319,7.0905,2.9855,3.8385,10.082,5.118,0,0,1.7534,0,0,0,2.5353,2.6775,1.5283,0,0,0,0,0,0,0,3.7733,3.6075,1.3683,2.8433,6.3027,2.7722,5.0232,3.5245,2.168,4.0636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.552,13.3281,11.3081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2224,0,0,0,0,2.5353,3.5542,1.0129,3.0329,3.7852,0.6931,0.8352,1.3743,1.7297,0,0,0,0,0,0,3.7437,0.9774,3.9333,1.8008,0,0,0,0,0,0,4.028,4.1228,3.1277,2.4168,2.1088,0,0,0,0,0,0,0,0,8.0383,1.4927,5.0647,9.7562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2084,0,0,0,0,0,0,2.6538,6.8773,0.6575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3743,0.6516,13.7309,0,0,0,0,0,0,0,4.9284,3.6489,2.0081,5.6866,2.8789,0,0,0,0,0,0,2.559,10.3781,0.9596,0.622,0.7819,2.2391,0.9715,2.5708,0,0,0,1.6112,0.9063,1.0307,3.2698,1.6349,0,0,0,0,0,0,1.5875,1.3506,0,0,0,2.4642,2.4168,0,1.2084,2.0259,4.3124,3.0092,2.2273,4.9284,3.0803,5.0943,0.6397,0,0,0,0,1.6705,1.0307,0,0,0,0,0,0,0,0,0,6.1605,4.2117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2321,2.7722,0,0,0,0,0,1.6882,0.5687,0.9596,6.3027,0,0,0,0,0,0,0,0,0,1.6112,0,0,2.7959,0.5154,10.6625,8.4115,2.2984,2.8196,10.8994,7.5822,8.5833,0,0,0,0,0,1.6823,0,0,2.2273,2.251,0,0,2.4405,12.943,0.6634,1.7652,1.1492,1.1255,0.6634,0,0,1.6705,1.6349,0.7582,0,0,0,0,0,0,0,0,0.7938,1.6349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7049,3.3172,4.105,0,0,0,0,0,0,0.9241,1.2617,1.2795,2.9026,2.4405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2036,0,0,0,0,0,0,0,0,0,0,0,0,11.4918,0,0,0,0,0,0,2.1799,9.5962,9.2408,1.7771,1.7415,5.5919,2.322,7.2327,2.3694,0,0,0,0,0,0,2.8196,0.7641,4.5493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0.8885,1.9429,0,0,0,0,0,1.3743,1.7534,2.1562,1.6349,1.9666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2558,1.4039,3.7733,1.7593,1.937,0.6397,1.1906,0,0,0,0,0,0,4.0636,1.9903,2.1858,1.9726,0.6161,0,0,0,0,0,0,10.5203,8.293,2.6301,3.5542,2.7485,3.1099,1.7415,1.5638,1.5164,0,0,0,0,0,0,0,0,0,0,0,0,1.706,2.0614,2.0377,3.5542,2.559,0,0,2.1088,4.105,0.9774,2.0614,1.2558,2.5708,0.8885,2.1147,0.3673,0,0,0,1.7534,1.8245,1.8719,1.5401,0,0,0,0,1.1373,1.8008,0,0,0,0,0,0,0,0,10.7691,14.0685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1018,4.6204,1.0485,1.3743,0,0,0,0,0,0,11.0297,2.8611,7.5703,3.7319,2.014,0,0,0,0,0,11.7169,8.9565,1.6586,17.4864,17.8063,2.5412,9.5251,5.4023,1.5401,7.1083,0,0,0,0,0,0,0,0,1.7771,2.5116,1.5875,0,0,0,0,1.5638,2.2273,0,0,1.4572,0.6161,1.0307,1.3861,12.2026,0,0,0,1.9903,4.5019,1.6823,3.4416,0,1.244,1.1373,2.9855,1.6705,1.8126,2.3931,2.6538,1.2617,0.5687,0,0,0,0,0,0,0,0,0,0,3.5542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6705,2.8611,2.559,0,0,0,0,0,0,0,0,0,8.6662,2.9855,2.1977,0.5509,0,0,0,0,0,0,0,0,3.5542,7.3453,8.3286,9.4541,2.6952,17.5931,17.3798,16.0944,13.4347,7.2505,3.0329,9.3593,7.5822,2.9855,2.2747,0,6.5574,9.2408,4.9758,0,1.5164,2.1088,0,0,0,0,0,1.5638,0,0,0,9.537,9.8332,4.1643,0,0,4.1228,2.0851,0,0,0,0,0,0,8.7788,1.2973,0.8648,4.4782,3.0329,1.5283,4.1465,4.9758,0,0,2.7485,0,0,0,0,0,0,14.8504,19.9388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7641,3.7437,2.097,1.4691,10.236,0,0,0,0,0,1.4454,1.8482,2.8611,2.322,2.9026,4.8573,0,0,0,0,0,0,5.2898,8.1035,4.0517,7.0372,3.8385,7.4933,11.089,15.4013,17.9129,14.2166,14.5009,13.0082,11.089,2.3635,0.7819,0.7582,2.7722,2.9855,0,1.7771,2.0614,0,0,0,0,0,0,0,0,6.8714,9.6673,9.3593,11.6102,0,1.161,2.1562,0,0,0,0,16.0766,5.3312,7.3571,0,10.236,16.2069,14.8208,9.8095,4.6856,2.4168,3.021,3.4653,1.5875,0,0,0,0,0,0,0,0,0,8.216,8.8913,1.084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5386,0,0,0,0,1.5164,1.706,3.0684,0,0,0,0,0,0,0,0,7.4282,6.978,0,0,0,7.9909,9.8095,4.265,8.2101,11.9893,6.9898,14.8208,2.097,9.7028,7.3571,8.6603,2.8433,7.5526,0.6575,5.9295,12.9371,0,0,0,0,2.6064,2.6775,0,0,2.4642,3.0684,0,0,0,0,13.0556,8.0383,13.4347,23.8128,21.7514,12.795,10.6625,6.9484,16.6157,11.4799,0.8411,1.9489,0.8767,2.251,3.8385,0,0,0,0,0,0,0,2.251,2.3694,1.7771,0.6338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0792,1.0959,0,0,0,0,1.1136,1.4217,0,0,0,0,0,0,0,0,0,0,6.9898,11.089,2.3457,2.5116,0,0,0,0,0,0,0,0,0,0,0,0,4.3894,4.727,3.9392,11.3674,13.8967,7.1438,9.9457,11.5155,17.2021,17.7708,17.2199,9.2408,7.7007,0,0,0,0,0,0,1.7771,0.7464,1.7297,2.4464,2.322,0.5331,0,0,0,0,0,0,4.6204,5.4793,11.942,14.6313,18.3394,12.4751,8.2101,7.2327,15.0696,1.3269,2.8611,1.8719,10.1708,1.1492,5.3075,1.5283,2.0081,0,0,0,0,0,0,0,0,0,0,0,6.7529,6.0776,1.0485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9166,0,0,1.8955,2.6064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9666,1.3032,0.9004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.2118,14.1811,16.4202,17.0303,1.3683,4.3005,0.8175,0.7997,0,0,0,0,0,0,0,0,1.6586,9.6732,2.944,1.4394,2.4405,2.4879,0,0,0,0,0,4.9758,11.6102,3.2757,9.5666,10.3544,5.2601,1.9192,9.7147,0,0,14.2936,6.1902,4.3124,14.2877,13.3281,1.6468,0.9241,3.9096,0.8648,1.6349,4.7566,0,0,0,0,0,0,0,0,2.1088,2.3694,1.161,0.9715,1.2558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2795,9.4185,2.4879,0,0,0,0,0,0,0,0,0,0,0,0,2.7249,2.6064,2.2273,4.9284,1.8719,1.9666,1.8659,2.8196,2.014,0,0,0,0,0,0,0,0,0,0,7.9613,4.265,2.4168,2.1799,1.5638,2.1799,0,0,0,0,0,0,0,0,0,0,0,0,1.5638,12.5106,0,0,0,0,0,0,0,0,0,0,0,8.8854,13.5058,2.5353,1.7415,1.3861,3.2224,3.9807,0.9596,8.3167,7.5703,5.8644,6.824,10.1293,13.5946,9.0986,9.1164,1.6112,7.3453,4.5493,0,0,0,0,0,0,0,0,0,0,1.1847,7.4637,0,0,0,0,0,0,0,0,0,0,7.7007,12.795,7.3453,0,0,0,0,10.7809,0,0,1.4927,5.8644,1.0781,3.8563,0.6161,7.677,1.2913,0.7464,1.084,0.6931,7.2505,5.8288,0,0,0,0,0,3.0921,1.2084,11.1423,9.2408,9.0986,0,1.9844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9548,0,0,0,0,0,0,0,0,0,2.322,2.2984,2.2747,4.5967,5.1831,2.097,10.3426,1.5875,4.9284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0647,1.7771,0,0,0,0.9241,1.8482,2.7959,0,0,0,0,0,0,0,0,0,0,9.6732,7.9613,1.7297,17.0955,3.6963,14.0685,12.5343,2.9144,2.2036,1.2617,2.5294,2.9855,1.6705,0.7938,2.1562,5.6689,0,0,0,0,0,0,0,1.315,2.9381,9.229,9.8095,7.1438,2.4642,1.7297,1.5875,0,0,0,0,0,0,0,0,0,1.398,0,0,0,0,0,0,4.1702,2.8907,2.0851,0,0,0,0,0,0,0,9.6732,0.6871,0.5213,12.9134,0,0,0,0,0,0,0,0,1.9429,1.5875,14.8208,9.383,6.4449,4.105,8.9624,2.7012,0,0,0,0,8.4115,0,0,0,0,12.6706,1.5994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.392,0,0,0,0,0,0,0,0,0,1.6586,7.8191,1.4927,0.622,1.8245,13.4347,13.648,10.4492,1.4572,8.8143,5.734,2.5116,2.9144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8622,3.0447,0,0,0,0.9241,1.4335,0.9122,1.3683,1.6171,2.014,8.3167,0,5.8525,1.9429,9.7917,13.3518,2.8256,42.5432,9.2763,18.0196,1.552,7.9554,0.9833,4.3124,2.322,1.8659,0.9774,9.7147,0,0,0,8.293,6.6344,12.5343,0,0,0,1.9903,1.4691,6.1131,0,0,0,0,0,0,0,0,2.8433,0,0,0,1.8955,0,15.2829,0,0,10.467,9.9042,10.7691,12.4395,16.3491,0,0,0,0,0,0,0,11.7169,20.1521,9.8095,8.5833,9.2763,11.7287,6.9721,0,0,0,0,0,0,0,0,0,0,3.0092,0.9952,0,0,0,0,0,0,0,0,0,0,3.1987,0,0,0,2.0851,1.7534,0,0,0,0,0,0,0,0,2.3457,1.398,1.4927,1.2321,3.7319,2.1799,1.4217,12.9016,16.4202,21.2183,15.7568,14.6076,2.6834,1.8837,6.824,3.9333,2.0614,2.1562,2.6301,1.8008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.7272,0,0.6871,1.3269,16.7164,15.4606,2.2747,15.2473,1.6349,0.5805,1.398,2.1325,5.6274,13.648,15.3539,20.1521,13.0082,35.115,11.1956,14.2877,14.8208,12.5876,2.3813,2.0081,1.8719,6.587,0,0,0,0,0,0,0,6.4152,9.6673,10.1886,0,0,0,0,0,0,0,0,11.2548,0,0,13.1504,16.1122,4.7389,15.8871,5.2779,1.4039,11.5806,0,11.5925,12.3685,2.9381,0,0,0,0,2.4879,0,0,0,13.3518,15.0815,12.2618,10.236,1.6705,3.4357,4.0517,0,0,0,0,0,0,0,0,0,4.0636,3.5542,13.7546,0.7464,0,0,0,0,0,0,0,0,0,0,3.6608,0.8175,0,0,0,0,0,0,0,0,0,0,0,0,0,9.2645,1.1906,0,0.9122,1.6231,18.1262,14.7142,13.648,17.1666,8.2101,17.7826,13.1148,1.8304,2.2569,2.79,1.8304,2.1562,0,0,0,0,2.4642,0,0,0,0,0,0,3.2698,0,0,0,0,5.8051,8.5418,8.8854,8.1035,14.5543,2.6538,2.867,3.412,20.8984,2.1562,5.6866,1.6705,10.3781,14.7142,17.6523,19.3109,9.383,13.8612,11.7287,6.3975,17.4864,14.2936,16.2069,11.4918,18.3631,30.8382,16.6334,9.9161,11.6221,14.8208,19.8322,14.6076,4.3124,1.5816,0.8767,3.4416,1.3861,2.251,3.2935,13.7901,11.4088,14.2936,4.6915,4.6441,13.7427,15.1644,13.8612,12.4395,10.6269,0,19.074,8.4411,16.1003,9.4896,15.8871,4.3598,1.5638,0,8.0383,5.5445,1.706,14.0745,3.8859,1.1847,0.6753,0.7819,0,0,0,0,0,0,0,0,0,0,11.7287,16.5861,17.0599,10.6625,1.8126,0,1.6823,3.175,0,0,0,0,0,0,0,0,0,0,1.5875,11.6576,3.0684,1.937,0.9833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4405,2.2036,0.8885,0.6575,1.8955,10.8757,16.6571,15.8871,12.6883,16.3136,17.2732,13.5413,6.0776,11.0356,11.3674,2.9855,6.1131,4.5019,2.5057,1.9903,1.5164,1.3328,2.168,1.0662,1.0662,0.622,0,0,0,0,0,0,0,0,0,0,1.3269,1.706,1.4927,5.5445,4.265,1.5283,0,3.2757,1.7948,5.1654,1.8659,12.1552,2.3102,18.2328,20.4719,21.9528,21.8699,0,18.3276,16.4202,15.0045,15.3066,14.9689,1.8482,2.6656,2.2569,2.4701,4.3716,15.8693,23.4574,26.5377,29.7127,14.8208,13.1504,17.6523,22.9835,20.1402,7.1083,9.8095,11.5155,1.6349,18.2328,14.2877,14.6076,16.1003,20.8984,17.3798,12.6883,12.2618,2.1858,12.2263,14.0745,18.0196,11.5155,14.6076,2.0733,2.7959,2.9381,4.6915,4.496,1.9192,7.3571,0,0,0,0,0,10.698,10.6269,17.9129,11.7287,13.5413,0.6634,0.9478,0.8175,2.3457,1.7771,0.9241,0.6397,1.9192,4.3538,0,0,0,0,12.943,10.5795,14.8208,1.5638,0,0,0,0,0,0,0,0,0,0,3.4594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9192,0.8826,1.4691,1.3269,3.021,2.5057,3.8148,2.2036,13.3932,14.9274,15.9937,11.3022,15.3539,0,0,0,0,0,2.1562,2.2747,1.5638,1.2795,0.9952,2.0851,0,0,0,2.3694,1.2084,4.5493,0,2.8196,2.2213,1.7534,4.7863,0,11.1956,11.6635,19.9033,9.1223,13.8612,16.0944,21.4434,6.7292,26.1586,21.2538,8.3167,12.8897,0.9004,2.8789,1.86,2.559,2.8789,3.3942,2.3102,4.2354,3.0566,14.9274,38.1301,11.4799,22.5096,14.6905,13.0615,27.4855,20.0217,9.4896,16.8467,23.2442,17.1666,14.9274,14.0745,13.7546,16.3136,21.3249,20.1402,13.8612,11.0179,9.4896,16.9533,16.1003,17.8892,13.648,2.2747,4.881,1.706,1.8719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.7028,12.8127,14.0745,9.229,11.4444,3.0329,8.8143,2.4464,2.322,1.0307,1.6705,0,0,0,0,1.7415,0.7938,0,0,0,0,0,0,0,0,0,1.007,4.4427,0.7938,3.1514,0,0,0,0,2.1325,1.9666,1.4217,2.251,0,1.6586,0.6397,2.7782,1.7948,2.0377,3.4001,3.0803,0,0,0,9.5962,5.6866,4.9344,1.0544,1.244,17.6227,1.1966,9.383,2.0436,6.8417,4.8514,6.6403,14.5009,9.4363,18.7126,12.3803,22.5096,15.2473,7.9968,10.0227,4.4545,7.4637,12.558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.4536,16.6216,20.9517,9.5666,12.0841,14.7142,14.9274,3.0388,2.9677,11.5925,22.2668,7.6296,16.6334,14.8564,21.5382,3.0921,2.168,11.0771,12.8897,8.1746,8.3167,0.7345,0.9182,1.4691,17.8063,0,0,2.6656,1.2558,0.9833,2.7545,19.5478,22.3556,34.9729,29.8549,16.3491,18.837,22.8651,17.2732,17.0599,22.2727,13.1148,9.383,16.0944,15.9818,16.1714,14.6905,15.5198,28.7886,18.9555,20.3772,20.4956,17.2732,10.236,0.9833,6.1842,1.3506,0,0,1.8719,8.6484,11.0179,0,0,0,0,0,0,0,0,0,1.1847,1.5164,1.0189,0,11.3733,10.1293,10.0701,10.4255,18.4461,14.7142,13.2155,0,0,6.0421,0,0,0,0,0,0,0,0,4.6856,14.0745,4.7685,0,0,0,0,0,0,1.6112,1.8245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9903,4.9521,2.9381,0.8352,2.6952,0.9478,1.5283,1.244,1.4217,2.1147,0,0,0,0,0,0,2.322,13.0911,13.796,23.9905,2.7722,3.7733,6.7529,0,0,0,0,0,16.1418,13.5532,19.9033,13.0082,12.4395,14.1811,10.307,7.8191,0,0,0,0,0,0,3.0092,0.9241,0.7641,17.7826,20.4008,18.7956,12.795,12.558,16.2069,13.0556,18.5705,20.1521,6.0124,17.7708,9.768,10.3426,5.663,2.2924,12.1552,0.6161,0.853,9.1697,0.539,0,0,0,0,0,0,0,0.699,0.8648,2.8611,19.4708,8.7906,15.6383,38.3138,10.7809,11.8472,17.1784,17.4864,19.5123,20.0454,11.7287,9.8095,16.8467,20.5252,14.5543,18.1617,8.5833,6.8832,23.4337,24.8791,20.1521,1.8837,1.1729,2.0614,4.0754,2.4405,0,0,12.6765,1.3861,1.2617,2.0377,2.0614,0,0,0,1.6586,1.3269,2.2984,0,0,0,6.8714,13.6243,8.9565,17.5338,1.9548,2.168,1.7238,0.8648,0,0,0,0,0,0,0,3.4001,1.2973,0.7582,0,0,0,0,0,1.3743,1.6823,0,0,0,0,0,0,0,1.5105,2.8196,0.853,0.8411,3.3587,0.3613,3.021,1.2795,2.0614,0,0,0,0,0,0,0,11.3674,3.1099,13.4347,5.971,12.795,10.6625,5.6866,1.4572,0,0,0,0,0,0,0,11.705,16.5861,7.9376,17.6523,14.9274,2.559,6.2612,0,0,0,1.6823,3.6904,5.5445,0,0,0,8.8913,16.4913,16.7934,15.1762,20.6141,23.8839,20.2587,21.7988,17.0599,11.7287,10.9468,13.9323,18.7659,19.8322,17.8952,0.93,0,1.4809,11.6813,1.6349,1.0189,9.4481,3.6489,1.1551,1.3328,11.0771,0,0,0,0,0.7464,2.5945,2.0259,13.6006,17.0836,21.9884,12.0841,13.1504,20.2587,14.6076,12.9016,20.1521,17.3798,11.942,12.4751,20.6496,25.9453,10.6625,15.1644,15.5198,14.6787,11.2311,14.0745,15.5198,9.9339,0,0,0,0,0,0,0,14.6905,0,0,0,0,0,2.2273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.7147,13.7901,7.0372,11.4088,0.853,8.7432,2.5294,0.6279,1.2084,0,0,0,0,12.7179,0,2.2747,0,0,0,0,1.9666,0,0,0,0,0,0,1.3683,1.6882,2.3398,0,0,0,0,0,0,0,0,0,0,0,0,1.3032,2.9855,3.4831,0.6634,0.7819,11.1778,10.5558,7.4282,5.971,2.9026,5.5445,4.0636,2.3931,0,0,0,1.2558,3.7911,2.1799,14.5128,18.3631,18.7185,10.8994,16.1122,11.6221,4.7389,2.1088,9.2408,10.1293,9.9042,12.2263,10.6625,11.2074,18.7837,15.9937,18.0077,16.2306,20.3772,19.9033,18.0077,20.0691,8.7669,11.4918,16.8467,23.1375,19.4708,1.2854,0.7641,0.8708,1.1136,3.9807,2.7012,3.4061,2.0614,4.7981,1.5875,1.8955,0.4265,0,0,0,0,1.7771,12.2618,12.8542,18.837,14.9274,16.2306,14.0981,12.2026,10.7691,11.8353,15.1407,15.6738,13.8612,14.572,13.8612,27.2367,15.8752,15.1644,10.544,13.0319,10.6625,6.7529,11.3733,13.5058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8955,0.9419,2.5708,0.8885,1.2262,3.7793,3.6489,2.4642,0,0,0,0,0,0,0.7049,0,0,0,0,2.0614,1.7534,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7012,1.0129,1.3032,1.2084,4.8514,1.3269,0.6753,17.2199,14.1811,1.2084,3.6015,13.3636,0,0,0,0,9.5962,9.2408,6.3975,10.9823,16.7401,17.1784,15.9937,9.2408,10.8994,9.4777,16.0766,22.3912,11.5925,12.795,12.3685,17.5575,11.9301,16.8111,22.018,17.1784,22.6281,13.2688,10.0701,14.9274,17.4154,21.5204,20.0217,16.3491,12.3685,11.8353,20.7326,0,1.1847,15.7094,0,0,1.1669,1.5757,0.853,1.3624,0.8293,0,0.8234,0,0,0,0,2.3102,1.5283,6.1902,11.5806,14.0745,19.1924,15.6383,14.6905,16.669,19.0325,13.4347,15.4606,20.1521,14.6076,10.5558,16.9178,15.6383,17.7708,10.8994,3.5778,13.8612,12.6765,0,0,0,0,0,0,0,0,0,0,2.944,0.6753,10.7158,0.7345,1.2558,1.7771,2.2391,0.9952,0.9596,1.6112,0,0,0,0,0,0,1.9429,0,0,0,0,0,0,0,0,0,1.706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3506,3.7911,0.5805,0,0.6397,9.2645,20.0454,17.3798,2.6538,2.1088,0,0,0,0,0,0,0,8.7195,16.5446,9.7147,20.2587,23.3389,14.8564,4.7389,10.8224,5.1772,14.6076,24.2571,19.6545,15.6383,21.4434,17.5338,13.3103,17.7885,21.2065,18.837,12.0841,16.9415,17.0422,15.425,12.3211,15.5198,12.4395,12.1552,13.5413,12.4929,1.86,1.8482,2.4879,0,0.391,1.5638,0,0,0,0,0,0,0,0.8945,0.8471,0,0,0,0,0,0.6338,0.776,12.013,14.0034,15.0459,9.5962,20.2587,15.2829,17.6641,17.5338,15.8871,15.1407,18.6593,17.5931,13.5413,14.0745,16.2069,21.9647,18.9792,13.7546,1.8659,12.795,10.544,0,0,0,0,0,10.3544,0.9241,1.6112,3.4831,3.3883,0,0,0,0,0,0,0,0,0,0,0,2.1325,2.636,3.5542,2.8196,0,4.3124,0,0,0,0,0,0,2.944,11.089,0,0.7464,2.1325,10.9764,15.6738,1.6941,4.3953,5.2601,0,0,0,15.2829,11.3022,22.5096,18.9081,13.488,12.9134,11.7287,0,0,0,0,11.1067,16.1122,12.795,13.1504,16.1714,21.5619,11.1363,20.774,20.774,10.076,21.7692,15.0459,16.2306,12.9134,23.0131,18.837,15.2829,18.9792,19.2991,19.7256,2.8256,0,0,0,1.8955,4.6441,10.467,0.6871,0,0,0,0,1.321,1.2558,0.7108,0.9182,0,14.4002,1.0011,0.8175,0.6931,10.0405,14.8031,18.1262,21.0051,22.9835,13.2688,16.7697,12.558,20.4956,12.0486,15.8871,15.9937,15.0341,17.8892,13.9797,18.2447,16.9415,10.7691,4.9284,7.6237,0,0,0,0,0,9.5784,16.2958,23.102,22.6044,3.0566,2.5827,2.1799,0,0,0,0,0,0,0,0,0,0,0,0,1.4039,1.9015,0,0,0,0,0,7.0372,9.383,0,1.5401,3.021,2.9855,15.6738,2.6834,6.8654,15.194,0,0,0,0,11.9657,9.2408,13.0319,12.6765,0,0,9.5962,0,0,26.4784,21.6803,19.3109,13.9797,17.9129,22.7466,14.3351,15.4013,19.4294,14.572,15.5198,13.8612,15.5198,22.7466,17.7708,25.0035,15.8752,10.4492,18.9081,25.0983,0,0,0,0,0,0,0,0,0,0,0,0,1.0307,4.887,1.007,0.9833,0.4147,0.5983,1.4809,0,0.622,20.9695,7.3571,6.7588,2.3694,12.795,21.0051,16.8171,10.1886,17.3798,17.1666,17.3206,22.8651,17.5338,17.6523,21.858,19.6189,9.9161,14.6076,16.9415,12.558,15.7804,2.1799,4.1702,0,0,0,0,0,7.5881,2.1088,18.5705,14.2877,2.1858,2.4642,0,0,0,0,0,1.7534,2.8433,1.6349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0776,4.2235,0.545,0.4502,1.0662,2.2036,4.6026,7.8902,2.3457,17.1073,5.0706,4.4782,0,0,0,0,0,0,0,0,0,0,0,11.7287,12.0841,19.0503,12.4395,12.6054,13.3873,18.837,14.809,18.2447,17.0599,12.2026,18.9555,24.9976,20.7326,14.3351,19.5478,20.3772,8.8854,11.3733,22.7644,20.3772,11.089,1.7415,23.7477,0,0,0,0,0,0,2.6952,3.6015,1.1373,1.2795,1.2558,1.1729,0.6753,0,0,0,0,1.2025,6.0717,12.2618,11.8353,15.2829,14.2877,18.3394,10.6625,19.1924,22.4149,16.823,12.9016,22.2845,14.809,10.8757,10.8757,19.3109,19.6663,3.2698,2.0792,0,0,0,0,0,0,13.9323,2.8907,18.4816,13.5058,19.9388,4.1228,13.488,0,1.6823,2.1325,1.5105,5.6866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7108,2.2806,1.937,0,0,0,0,2.2984,12.6054,6.978,13.2215,0,0,0,0,0,0,0,10.7809,7.4637,5.4497,6.7529,5.6274,8.6484,12.943,12.0427,21.7692,21.633,17.5398,12.6765,15.0459,16.823,20.3772,13.8612,10.8994,13.3873,11.0179,15.2829,17.5398,8.6484,16.7045,15.6383,16.823,21.1472,20.1402,15.5672,12.5817,2.1858,0,0,0,0,0,0,4.5612,1.5994,1.3269,16.8822,0.9419,0,0,0,0,0,2.3635,2.1206,15.3066,13.5946,15.6738,5.4082,6.3975,18.1262,20.9695,9.4896,18.4461,17.3798,10.0227,11.089,15.1644,12.3211,20.2587,16.2069,1.6882,3.9333,2.2273,0,0,0,0,0,0,0,0,0,4.265,16.2899,16.7045,15.4013,13.6243,13.648,3.4594,5.9295,6.7529,1.007,1.1729,1.7593,2.5768,0,0,0,0,0,0,0,3.8977,5.6274,9.0039,2.3457,0,0,0,0,0,0,0,0,0,0,0,0,0,18.1203,8.7669,1.1551,2.2747,1.6112,0.8175,0,0,0,0,0,0,0,8.1035,12.3211,14.2877,23.0131,17.291,13.9323,13.3873,15.5198,12.4395,11.8176,15.1762,18.6593,15.508,25.2819,22.6281,18.7837,17.7708,14.6905,17.6523,8.7669,15.7568,13.0319,14.3351,17.1784,18.7659,2.2747,0,0,0,0,2.1088,2.8907,2.5827,8.3878,11.9834,0.6397,0,0,0,0,0,1.6349,13.4939,10.6743,8.4707,16.3136,13.796,14.5009,11.2548,8.4233,8.6366,13.8612,16.7401,11.1363,13.9797,11.3733,24.6303,12.9134,16.1122,1.4927,14.4417,14.1396,9.8332,2.6064,0,0,0,0,0,0,0,0,12.9016,13.2155,13.3873,19.9033,20.6141,14.6905,11.0297,2.322,10.6625,1.5164,1.5164,3.4653,0,0,0,0,0,0,0,0,1.8245,1.706,3.0803,1.6882,1.8482,0,0,0,0,0,0,0,0,0,0,0,0,3.0329,1.8955,1.706,0,0,0,0,0,11.8472,11.5155,0,10.9586,4.5967,13.8612,14.9274,16.5446,10.1886,20.851,22.1542,16.1714,17.0599,15.7568,12.2026,17.2969,19.6782,24.4348,13.5591,13.0319,22.6281,22.3912,11.4918,17.8892,12.6765,19.074,16.823,15.1644,4.4072,0,0,0,0,7.2268,9.8095,2.1799,13.1622,2.7722,2.3102,0,0.8175,0,4.6204,4.9758,6.2079,12.2974,3.8563,19.2339,15.7568,15.7804,12.4751,14.3943,14.7142,18.1203,14.9274,18.6356,19.7848,25.8269,23.0131,15.1762,20.774,36.2524,2.0081,1.5401,1.7771,9.2408,0,0,0,0,0,0,0,0,0,0,13.3103,11.2548,15.5198,20.2587,15.5672,15.1407,18.2328,19.0858,16.432,15.7804,1.4809,2.9855,2.4405,0,0,0,0,8.8854,11.089,2.2747,2.2747,2.4168,0,0,0,0,0,0,0,0,2.1799,0,0,0,9.7147,0,0,0,0,0,0,0,0,0,0,10.6625,2.251,0.9596,12.4929,10.1293,14.2166,14.572,14.572,14.3351,18.2447,12.3211,28.0778,17.6523,12.795,18.0373,17.5931,21.9351,14.9274,20.1521,8.3523,7.5703,17.1784,23.0131,22.8651,19.5478,18.5349,17.0599,15.8752,14.7142,2.8611,0,0,0,0,0,0,8.0324,5.8644,0.7108,0.6101,0.7819,0.8648,5.4201,0,3.181,2.0614,3.2521,0.9359,12.2855,15.8693,14.6017,10.5736,18.1262,18.1262,12.795,16.9178,10.8994,20.1402,6.3382,25.7676,13.0319,20.9814,17.0422,17.8892,3.0566,1.8482,8.4411,3.3172,8.6484,10.076,3.3409,0,0,0,0,2.3457,3.9333,13.0082,19.5478,12.2618,11.089,19.5123,18.8726,23.2442,10.5558,10.9823,17.1666,2.0792,2.6538,3.8385,0,0,0,0,0,0,0,2.7485,0,0,16.3491,5.0232,2.9618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.6313,15.3539,12.943,14.4536,20.3772,14.0981,16.1122,20.0217,15.1644,22.8651,18.9555,13.9797,19.2813,20.2587,16.4202,13.7427,20.1402,16.2306,19.1924,18.6712,14.9274,11.9657,17.4154,23.8839,15.5198,11.8827,11.4088,2.0259,0,0,0,11.6102,4.3124,7.1024,9.537,9.9694,4.4782,0,11.4799,18.5705,17.6641,0.6516,0,0,2.0851,13.6953,13.1148,18.0196,11.5806,12.0841,19.4057,18.7304,17.6997,15.1644,5.2246,9.0631,17.5398,10.4492,14.6905,12.3211,9.9516,9.9516,25.0983,16.9533,2.3813,1.1018,2.559,0,0,0,0,8.5537,13.6183,25.9986,15.8752,15.4606,14.7142,12.1552,9.8687,13.9678,19.4057,16.6334,14.9274,2.0792,2.3457,1.2558,1.8482,0,0,0,0,0,10.082,5.6866,2.2036,0.5864,0,0,11.5155,11.6576,7.6533,6.0421,7.7007,0,0,0,0,0,0,0,9.9516,8.8854,18.0551,0,9.3593,9.8095,3.2935,2.7012,0.853,1.5875,1.6586,11.4444,7.4637,21.4434,15.2829,14.3351,17.7708,12.558,16.823,19.074,13.0319,18.3631,16.7045,20.7326,16.823,14.4536,16.3491,18.3631,15.1644,11.0179,9.4718,22.6281,21.088,15.9937,17.4154,19.0858,13.1148,13.8612,4.2887,0,0,0,2.9144,0,0,1.8955,5.3549,1.6586,0.4561,0,3.258,0,0,0,0,0.8471,17.4213,12.9904,15.9108,13.4347,15.9108,27.1123,8.6366,6.9661,18.9555,19.921,10.8046,13.7427,11.2548,15.4013,21.4434,21.9173,22.5096,19.7848,17.2969,15.1407,12.9371,19.1924,0,0,0,0,0,9.922,11.0712,7.2268,20.3772,16.9415,11.8353,20.3653,11.782,11.5806,10.6625,21.1117,15.0341,17.6997,16.7401,1.161,1.8245,3.5068,0,0,0,0,0,7.8191,8.2456,2.4879,0,0,2.0377,1.0485,0.6931,1.0662,6.279,9.2408,0,0,0,0,0,0,0,0,9.0039,10.3781,9.3415,15.8752,15.2118,18.3927,11.7761,19.5123,11.6102,21.6803,2.8078,16.432,15.7568,18.2447,15.7568,13.2688,18.6001,21.0228,19.0325,16.2306,22.6281,18.9555,20.3772,14.809,12.0841,12.0841,15.8752,20.1402,15.9937,16.4202,13.4347,28.1726,17.2969,12.9134,11.0179,15.4606,20.3772,1.5875,3.1632,0,0,0,0,0,0,1.3506,0,0,1.2203,2.3102,0,0,0,0,1.86,11.782,15.9108,19.9388,4.2294,4.4782,15.9937,12.1552,12.2618,17.445,12.558,9.0276,18.837,18.3631,16.3491,19.074,18.2447,20.1402,18.7185,10.8994,1.9726,18.3394,0,0,11.9953,18.7185,19.074,7.8191,13.8967,16.9178,18.8726,20.543,14.7024,15.8101,1.4454,1.3506,18.0551,14.0745,3.6963,3.412,1.5757,2.4642,1.4691,0,0,0,0,0,0,2.322,0,0,0,0,2.1799,5.4379,3.1277,3.7437,1.7297,1.9192,0,0,0,0,0,0,8.6484,10.0938,10.3781,9.7147,7.7836,10.0227,15.0815,9.229,13.4347,15.6738,15.9937,13.5058,16.047,15.5198,10.9349,12.2026,10.1175,12.6054,15.9937,15.3006,12.558,18.9555,23.8128,15.8752,16.9415,16.4676,17.7708,13.2688,19.7848,26.6206,12.4395,7.9613,13.2925,10.8046,9.3415,1.5816,5.6866,13.648,14.6787,10.4255,17.1784,13.3873,12.795,3.2165,0,0,0,0,6.7707,3.5542,2.4642,0,0,0,1.007,0,0,0,1.4691,5.4793,3.5186,3.7319,3.5542,10.8757,10.8757,14.4002,15.1407,12.6883,12.0841,11.8709,16.5861,18.2447,15.9937,12.6765,11.4918,8.53,17.6523,17.5575,2.3635,2.2391,5.4734,12.3211,11.0356,18.1736,26.0638,17.8892,20.3772,15.5672,14.6076,19.6189,1.1255,1.5638,2.2036,3.4001,2.1562,1.8245,3.5068,1.9192,4.0873,8.8143,0,3.0329,4.7863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8907,9.4777,0,0,0,0,0,8.0561,10.0701,10.0938,15.0933,2.4168,2.0851,7.0491,11.7287,17.5338,13.1504,17.291,13.5413,18.9792,14.809,16.0944,13.1504,19.1924,16.9415,15.0163,22.7466,8.53,14.6905,14.3351,12.2263,14.2166,14.0981,13.0319,22.1542,17.6523,15.2829,14.6905,16.2958,3.5542,29.5232,9.3593,7.7007,0,0,13.2155,14.8031,19.1924,21.4434,13.5058,10.5558,3.7141,0,0,0,1.3328,1.2973,2.097,2.6301,0.9182,0,0,0,0,0,16.4202,13.4939,0.93,19.6367,12.6883,8.4589,18.2328,26.7154,5.7637,10.9172,15.2592,20.3772,19.6663,17.4154,20.3772,23.6944,6.7529,12.795,22.8651,17.6523,14.572,13.9797,16.7401,18.1262,15.9937,20.1402,21.3249,15.5672,16.1003,1.244,1.7771,5.3905,0,0,0,0,0,0,0,0,0,0,0,0,3.1928,0.545,3.4416,0,0,0,0,0,0,0,0,0,0,0,0,8.4115,8.1746,2.0081,4.0162,12.4751,15.5672,5.349,15.4191,1.7415,1.2558,1.8837,2.1917,15.7804,15.4013,16.6157,20.6852,11.7998,15.9937,20.0454,19.7848,17.8892,11.3733,19.2398,14.2166,19.4057,14.9274,21.7692,14.809,12.0841,15.7982,16.6334,16.823,11.9657,16.823,0,0,0,0,0,0,15.6975,8.0561,7.2031,20.3772,15.7568,17.0599,15.7804,3.5364,0,3.8977,4.5967,2.559,10.8224,0.7345,0,1.0485,2.6834,0,0,0,0.9892,14.6017,20.8984,19.2991,13.1148,4.8692,15.1407,17.8063,9.9161,23.102,21.5619,19.7848,12.9134,18.7185,16.9415,15.6442,15.3066,14.3351,18.2447,15.9937,15.5198,20.851,13.0319,8.6484,16.823,11.942,18.3454,7.2505,10.4492,1.8304,2.8611,2.1977,1.0662,0.6279,2.3457,4.4782,0,0,0,0,0,2.4168,1.5461,1.4394,1.2084,1.5638,1.8719,1.8245,0,0,0,0,0,0,2.6064,1.1136,1.9192,2.559,3.7437,9.2763,19.9388,16.3491,18.7185,5.894,1.1966,1.6349,2.0259,1.7889,2.0259,1.9726,9.5962,18.6593,6.7529,11.942,1.6705,2.9322,2.8078,12.0841,12.1552,1.1018,15.9937,15.0045,14.2936,14.5009,11.8353,22.8888,19.0206,13.648,6.8714,0,0,0,0,0,0,0,0,0,9.3593,10.4255,13.8967,13.2688,21.088,11.6221,1.8304,0,0,0,0,0,0,11.32,12.795,16.0055,2.8196,2.4168,0,0,0,0,0.6634,16.2129,6.1131,4.7626,12.6883,14.1988,12.5817,19.0858,25.6728,16.9415,14.6905,18.6001,26.0638,15.7804,13.5413,9.4896,11.8472,23.9313,17.3798,19.8322,21.088,17.5338,19.4294,17.5338,14.0981,17.9129,21.3842,21.0051,1.7178,1.1373,1.8482,0.5331,0,0,0,0,0,0,0,0,0,0,0,0,2.6538,0,0,0,0,0,0,14.2166,10.1293,18.5527,18.2328,10.9823,16.7045,1.7652,3.104,15.3066,0,0,0,14.1988,2.8789,2.3102,20.1461,8.293,11.8472,11.9834,12.6883,1.8304,2.7722,4.1702,3.412,5.2601,9.0039,12.9134,15.2829,8.6484,14.1692,4.0754,2.251,12.0841,11.2548,13.956,15.2829,14.8564,8.8854,0,0,0,0,0,0,11.7287,12.0841,19.3109,18.1262,24.7606,0,0,0,14.9571,2.0436,17.5753,0,6.2553,0.7049,0,0,0,0,0,1.6823,19.2457,16.8171,13.8967,10.6743,12.4751,19.4057,12.5639,13.2688,15.6383,18.6001,15.2829,17.8063,16.5268,12.0486,16.4676,13.0082,9.383,14.0685,13.5058,21.3249,14.3351,13.7546,9.2763,9.0039,13.0082,19.2457,3.412,1.9429,1.0129,4.6915,7.5407,9.5962,2.1325,2.5353,0,0,2.4879,0,0,0,0,0,0,0,0,0,0,0,0,0,13.18,24.2867,16.9533,3.2224,11.8176,0,2.1799,0,11.7169,9.6732,1.3032,0.9241,1.8126,3.2698,1.4454,1.6349,17.5812,15.8101,8.8498,17.1192,1.9192,7.1083,5.0232,0,0,0,0,0,0,0,0,13.6006,10.4255,13.9323,9.3297,3.3172,6.3975,0,0,0,0,0,0,0,0,0,0,14.3232,14.4773,17.5338,23.2619,12.8305,22.3971,0,0,1.7771,7.5822,5.8051,0,0,0,0,0,0,0,0,0.7049,0.7227,1.1847,1.9429,2.7545,1.8126,3.1987,1.7771,3.8148,4.3835,3.0803,1.1136,1.7948,5.6866,3.0388,1.9311,13.8434,3.9688,22.2727,2.1917,1.398,2.5057,2.6123,1.6823,1.9785,4.5019,1.2321,6.8714,4.265,0,0,5.6807,0.9478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.9441,21.6803,16.4143,1.5164,0,3.3231,6.4686,10.8579,2.1799,4.6441,1.8659,0,6.5456,6.0065,4.0636,5.7637,2.5057,11.9657,3.9333,1.2084,1.3506,1.398,8.8854,4.0636,0,0,0,0,0,0,0,0,0,2.6301,6.0184,5.6866,3.8148,2.7722,3.6963,0,0,0,0,0,0,0,1.8955,2.9855,6.3027,2.4346,2.4346,3.8622,2.7189,0,0,2.8433,0,0,0,1.475,0,0,0,0,0,0,0,0,2.7485,4.2887,2.79,6.8714,4.496,5.2424,3.175,6.4212,8.1746,4.9344,5.2365,23.3153,3.412,7.7599,6.6107,2.4405,4.7448,5.9828,4.4782,4.4072,6.4271,4.034,17.1666,0,0,0,0,0,0,0,0,0,0,0,0,1.1136,2.7012,4.0754,0,0,27.0116,18.4105,27.2485,1.8363,4.5493,4.8159,20.4838,0,8.6366,9.7562,0,0,9.8095,3.0033,26.5495,5.7814,3.0329,2.9026,8.7195,4.7981,0,0,0,0,0,4.3538,0,6.587,4.573,4.7863,0,0,0,3.4831,4.4308,4.9758,4.6915,7.8784,8.53,5.1654
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,590,0,590,0,0,0,584,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,326,118,199,0,0,0,0,0,296,296,296,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,471,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,326,118,199,199,199,199,199,0,0,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,476,0,0,476,0,394,394,0,471,0,0,169,0,0,447,449,449,447,0,0,0,0,0,0,0,0,0,0,184,0,0,326,118,0,0,0,0,0,0,0,0,0,0,0,0,623,0,623,0,0,0,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0,0,0,0,0,0,245,119,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,158,0,158,0,158,0,0,118,0,0,0,126,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,94,94,0,0,0,0,0,0,197,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,624,0,0,127,556,0,0,0,0,0,0,158,0,158,158,118,126,126,126,126,0,126,117,126,126,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,245,119,0,94,0,0,0,0,98,98,0,197,0,0,0,0,0,0,0,0,241,0,0,241,0,624,0,0,127,0,0,145,0,0,0,0,0,0,0,0,0,0,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,304,304,0,0,0,0,0,0,81,0,220,220,98,101,101,101,101,0,0,0,0,0,0,241,241,0,241,0,0,127,0,0,439,439,0,0,0,0,0,0,0,117,0,0,0,157,157,157,0,0,0,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,81,0,0,0,101,0,0,0,0,0,0,0,0,0,253,0,0,0,0,127,127,127,0,145,0,0,0,0,0,0,0,0,0,117,0,157,157,0,0,0,0,1286,1286,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,100,132,0,0,81,129,129,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,474,259,0,259,0,0,0,0,0,100,100,0,0,0,0,0,132,132,0,81,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,81,0,0,0,0,0,0,0,0,0,0,0,0,253,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,313,0,313,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,302,0,0,0,0,688,0,0,0,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,204,0,204,0,0,0,0,0,0,0,0,159,159,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,314,314,313,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0,1210,1215,1215,1210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,688,0,0,0,0,0,0,130,130,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1092,0,1093,1092,1093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0,0,0,0,316,0,0,0,130,160,0,0,0,0,0,91,91,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,658,658,0,0,0,0,0,0,0,0,0,0,0,228,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,183,0,0,316,0,0,0,0,160,160,160,0,0,0,0,0,0,0,0,0,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,628,0,628,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,143,143,0,0,0,0,0,0,0,0,0,0,71,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,305,0,0,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,0,71,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,683,0,0,782,555,782,555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,103,0,0,0,0,0,0,0,107,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,438,438,0,438,0,121,0,121,103,0,0,0,0,0,107,47,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0,0,683,0,0,0,0,0,0,0,0,869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,250,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0,0,0,0,0,0,0,687,477,0,0,687,0,0,0,0,0,869,0,0,0,0,0,0,1327,0,1327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,867,279,867,276,278,276,0,279,0,0,278,278,275,275,0,0,0,0,0,0,0,0,250,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,690,0,0,0,1167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1204,0,1204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1164,1163,1166,1164,0,0,0,0,0,0,690,0,0,0,0,0,0,0,0,1167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,349,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,273,273,448,0,0,0,0,0,0,0,0,0,1165,1165,0,0,0,0,0,0,0,1166,1163,0,0,0,0,0,0,0,0,0,0,0,0,0,1213,1213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,979,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,788,0,788,229,0,0,0,0,0,0,0,0,0,0,0,273,0,0,0,0,0,0,0,789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,83,0,0,0,0,0,0,0,0,0,352,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,475,513,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,557,557,0,0,0,0,0,0,0,0,0,0,0,1061,1061,0,0,0,0,0,0,0,0,0,0,0,0,1136,374,0,0,0,0,0,0,0,0,0,0,0,0,1218,0,1218,0,0,0,0,0,0,0,0,0,0,0,677,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,172,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,147,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,677,0,0,0,0,0,578,578,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1136,1136,0,0,1136,0,0,0,0,0,0,0,0,0,0,786,0,0,0,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,786,0,0,0,0,0,0,0,0,0,0,0,332,332,0,0,0,930,930,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1064,1065,1064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,203,0,0,0,0,224,224,225,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,400,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,632,0,0,0,0,1062,1062,0,0,0,0,1065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,372,372,0,0,0,0,0,0,300,300,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,400,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,675,0,0,4,0,0,0,0,0,0,0,0,0,148,0,148,0,0,0,0,0,0,0,632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,405,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,446,0,0,446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,406,0,0,406,0,0,0,0,0,675,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,405,299,0,0,0,404,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,446,0,733,733,733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,244,0,134,0,0,0,0,29,0,0,675,0,4,0,0,0,0,588,588,0,588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,686,686,931,931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,864,0,864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,180,0,508,0,0,0,733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,1059,0,0,0,0,0,0,32,32,244,201,134,0,0,29,29,29,365,0,0,0,4,0,0,0,0,0,0,0,0,407,407,0,0,0,0,0,0,0,684,0,0,0,0,779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,633,630,0,0,0,0,0,0,0,0,0,0,0,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,180,508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,1217,0,980,980,0,0,1059,1059,0,0,72,72,0,0,201,0,0,201,0,87,442,440,29,365,0,0,4,0,0,461,0,0,0,0,0,0,0,0,0,0,684,0,0,0,779,0,0,0,0,0,0,0,0,0,630,0,633,0,0,0,0,0,862,0,862,862,0,66,0,0,161,0,162,161,0,162,0,0,0,0,0,0,69,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,444,202,180,508,681,681,0,0,865,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0,0,858,0,0,0,0,0,0,0,768,0,0,0,924,0,0,0,72,0,0,0,201,0,87,442,440,29,29,365,0,4,461,461,0,295,295,0,0,0,0,0,0,0,0,0,0,0,779,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,306,0,0,0,0,0,0,0,0,0,0,0,515,515,0,187,0,0,0,0,0,0,0,0,0,0,0,445,444,202,444,445,180,508,681,0,0,0,0,865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,981,1207,858,0,0,0,1056,1056,1056,1056,768,0,924,0,0,0,0,0,72,72,0,0,0,87,0,0,29,0,365,252,86,4,3,4,398,398,295,295,0,0,0,347,347,347,347,0,0,0,0,0,0,0,509,0,509,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,591,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,981,0,1207,0,858,0,0,0,1057,1057,0,768,0,0,0,582,582,0,0,0,72,0,0,0,0,0,0,0,0,0,252,86,141,3,0,4,0,0,0,0,0,0,0,0,0,464,347,464,325,464,464,464,0,0,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,678,678,0,0,0,257,0,0,0,0,0,0,0,514,514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,0,0,0,0,0,0,0,0,780,0,0,0,0,929,0,0,0,0,1209,1087,0,0,0,0,0,1207,0,0,858,0,0,0,0,768,0,0,0,0,0,0,0,0,72,0,18,18,0,0,0,0,0,0,0,86,141,0,3,3,4,366,366,366,0,0,0,0,0,0,464,0,325,325,0,0,464,464,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,0,227,0,371,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,929,0,0,0,1209,1087,0,773,773,0,0,0,0,0,0,0,727,0,0,0,0,0,0,0,0,0,72,72,72,0,18,18,18,0,0,0,0,0,141,0,3,0,4,393,393,0,0,0,387,0,0,464,0,325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,737,257,737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,787,0,0,0,0,0,0,0,371,0,371,0,0,0,0,0,0,0,0,0,0,926,0,0,0,0,0,0,0,0,0,0,773,773,0,0,0,0,769,0,768,727,727,0,0,771,0,27,27,0,0,0,0,0,44,0,0,18,0,0,0,0,64,64,64,0,0,4,0,0,387,387,0,0,0,0,0,325,0,0,732,732,0,0,0,0,0,0,0,0,0,0,0,0,1216,1216,783,0,0,0,785,785,783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,373,373,0,0,0,0,0,0,0,0,0,0,0,0,0,926,0,0,0,0,0,849,0,0,0,922,773,0,0,0,0,769,768,0,0,0,0,771,771,27,0,0,0,0,26,0,0,0,0,0,0,0,0,44,0,0,0,0,0,35,0,3,3,0,0,4,4,387,389,389,0,0,0,0,0,325,0,0,0,0,732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,223,402,402,0,0,0,0,0,0,0,0,926,0,0,0,0,0,0,0,849,849,0,849,0,922,774,773,773,773,773,0,0,768,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,5,0,0,20,0,0,0,0,35,0,3,0,0,0,0,0,4,0,0,0,0,0,0,325,0,0,469,469,0,468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,92,131,0,223,1094,223,0,0,0,0,0,0,0,0,0,0,0,0,0,849,0,0,849,849,0,0,0,774,0,0,0,0,0,0,768,0,0,770,770,0,0,0,0,0,0,0,0,0,0,0,0,0,5,80,0,0,0,20,0,0,3,3,3,42,0,0,0,0,0,0,4,0,388,388,0,325,0,0,0,0,0,0,0,0,0,0,0,0,0,682,682,682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,246,92,0,131,0,1094,0,0,0,0,0,0,0,0,0,0,0,0,0,729,0,859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,975,0,0,0,0,0,0,80,182,182,0,133,20,0,0,0,3,0,0,42,0,0,0,0,0,4,4,97,0,0,0,325,0,0,0,468,468,866,0,0,0,0,0,0,682,0,0,0,0,0,586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1089,131,131,0,0,0,0,0,0,0,0,0,0,0,0,0,857,857,0,729,859,0,0,0,0,0,0,0,0,0,850,0,0,0,0,768,0,0,0,975,0,0,0,0,0,0,133,0,0,20,0,0,0,0,0,0,42,0,0,0,0,4,4,0,97,0,0,0,0,0,368,0,0,0,0,866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,329,221,0,0,0,0,0,0,0,0,0,0,0,1214,1214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,729,729,0,0,0,844,844,844,844,844,0,850,0,0,0,0,0,0,0,0,0,679,0,0,0,0,0,0,20,20,102,0,0,0,0,0,0,0,0,0,4,0,0,0,97,0,0,0,0,0,0,368,294,0,0,781,781,6,0,0,0,0,0,0,0,0,0,0,0,510,0,0,0,0,329,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1208,0,0,0,0,857,729,0,0,0,844,0,0,0,0,846,844,850,0,0,0,0,0,0,503,0,0,679,0,0,0,0,0,102,0,0,16,16,0,0,0,4,4,4,4,19,0,97,0,0,0,294,170,0,294,294,0,294,294,294,6,0,0,0,346,0,0,0,0,0,0,0,0,0,0,510,0,510,0,0,0,329,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1208,0,0,0,857,0,729,0,0,0,0,846,728,843,0,0,846,846,0,847,847,503,503,0,0,0,656,0,0,0,0,0,0,16,0,0,0,43,43,4,0,0,0,19,0,0,75,0,0,0,170,0,294,0,0,7,6,6,6,0,0,346,0,0,734,0,978,0,0,0,0,0,0,268,0,0,0,0,0,0,0,221,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,863,0,0,0,0,0,0,0,0,0,0,728,843,843,0,0,0,0,846,0,0,0,847,0,0,0,656,0,0,0,0,0,146,0,146,0,0,43,0,4,0,0,0,19,75,75,97,0,0,170,0,0,0,7,7,28,6,0,0,0,0,346,734,978,0,0,0,0,0,0,0,268,268,268,268,0,0,0,221,0,0,0,243,0,0,0,0,0,0,0,0,1066,0,0,1066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,863,0,0,0,0,0,680,0,0,0,728,843,0,0,0,0,0,846,0,0,0,0,0,0,0,625,0,0,0,0,0,0,0,43,43,0,0,4,0,0,0,0,0,0,97,0,170,0,7,7,7,0,28,6,0,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,179,626,443,626,626,626,626,0,0,0,0,0,0,680,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0,0,0,625,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,7,7,196,0,0,28,0,6,0,0,0,0,0,0,0,0,0,731,0,0,554,554,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,179,0,443,0,0,626,0,46,0,46,46,46,680,0,0,0,0,0,0,856,0,0,1206,1206,0,846,0,0,0,0,0,777,777,0,0,0,0,0,0,0,0,206,0,206,0,0,0,4,4,0,0,0,7,7,7,7,0,196,0,28,0,0,6,0,0,0,0,346,0,0,731,731,0,583,0,511,470,470,0,0,0,0,222,0,0,0,0,0,0,0,0,896,896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,144,0,0,0,237,179,0,443,443,0,626,0,46,0,0,0,0,46,0,0,0,0,776,0,0,856,0,1206,0,0,0,0,777,0,0,0,0,0,580,0,0,0,0,0,589,78,0,0,0,0,0,0,7,0,0,0,0,0,28,6,6,96,6,397,397,0,0,0,0,0,0,0,583,0,0,511,0,0,0,327,0,0,222,222,0,0,0,0,0,0,0,0,0,0,0,0,478,478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,144,239,239,0,237,179,0,0,0,0,46,0,0,0,0,0,46,46,0,0,776,0,0,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,580,0,589,0,78,2,0,0,0,2,2,0,7,28,28,28,28,28,6,96,96,0,95,0,0,0,0,0,622,622,0,0,0,0,0,0,0,0,0,327,0,462,462,0,0,0,0,0,735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,467,467,144,0,239,237,179,0,0,0,0,46,0,0,466,0,0,0,0,0,46,776,0,0,0,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,0,0,0,0,2,2,2,2,0,0,0,0,0,0,6,6,96,0,0,0,95,0,0,0,0,622,0,0,622,0,0,0,506,0,0,0,0,0,327,0,0,735,0,736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,928,928,0,70,0,144,0,0,0,0,62,62,62,62,46,0,0,0,466,466,0,0,0,0,0,0,0,46,0,0,0,0,0,856,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,95,0,0,0,0,0,0,0,622,655,0,506,0,0,0,0,0,0,0,327,327,0,0,0,1091,1091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,70,0,10,0,0,0,120,258,0,258,0,0,46,0,0,0,587,466,0,0,0,0,0,0,0,0,0,856,377,377,0,377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,95,95,95,95,0,362,362,362,0,0,622,0,0,655,506,0,0,0,507,0,0,0,0,0,0,0,0,0,736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,502,0,0,502,0,120,502,0,0,258,46,254,0,0,350,587,350,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,738,685,0,0,976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,140,140,267,267,362,363,363,362,0,622,0,657,506,0,0,0,269,269,507,330,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,181,0,0,0,0,0,0,46,0,254,0,778,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,738,685,927,927,1162,1162
+
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,8,4,3,4,8,4,3,7,4,8,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,7,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,8,4,8,13,13,3,2,2,2,0,2,3,3,12,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,4,8,4,4,7,3,4,8,0,0,0,0,0,0,0,0,0,0,4,8,3,2,2,3,4,4,3,3,3,2,0,0,0,0,2,20,28,0,0,0,0,0,0,0,0,0,0,0,0,7,4,7,2,4,7,3,2,3,0,0,2,4,8,11,7,3,3,4,0,0,0,0,0,0,0,0,0,7,8,2,2,4,0,2,0,0,0,0,0,0,0,0,2,2,3,3,3,8,4,4,3,4,4,0,0,0,0,0,0,0,0,0,0,8,2,0,0,0,0,0,0,2,0,5,5,3,0,0,0,0,0,0,0,0,0,4,8,3,2,0,4,3,0,0,0,0,0,0,0,0,2,2,3,8,8,4,8,0,0,0,0,0,0,0,4,4,8,11,8,0,0,0,0,0,0,0,0,0,0,0,2,2,7,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,7,3,18,9,19,2,3,0,2,3,0,0,0,3,4,2,2,2,2,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,3,0,0,0,0,0,0,0,2,3,2,2,3,3,0,0,0,0,0,3,8,3,3,3,11,0,4,13,3,8,2,8,0,0,9,13,8,3,2,2,2,2,1,3,2,4,8,7,7,23,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,7,3,2,3,2,0,2,0,0,0,0,0,3,2,3,2,7,4,0,0,0,0,0,9,4,2,3,2,3,4,8,4,2,8,11,0,9,8,0,0,0,0,0,0,0,2,3,2,0,2,7,7,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,4,8,3,11,2,0,0,0,0,0,0,0,0,2,3,6,5,7,12,7,0,0,0,0,0,4,4,4,2,2,0,0,4,2,2,12,3,0,0,0,0,0,0,0,2,0,0,0,4,4,12,7,3,3,7,0,0,0,0,4,11,4,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,7,2,2,2,0,0,0,2,2,0,2,2,3,2,2,7,7,3,0,0,0,8,10,2,2,0,2,2,2,3,2,2,0,0,0,0,0,0,0,0,0,2,0,2,3,2,2,2,2,19,24,4,8,4,8,2,2,2,4,24,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,4,8,0,0,0,7,3,3,2,2,0,2,4,2,2,0,0,2,0,3,3,0,4,4,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,18,2,2,2,2,3,20,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,4,0,0,0,0,0,0,7,7,3,2,4,4,0,4,8,8,4,2,3,7,3,3,3,8,7,5,4,2,0,0,0,0,7,3,0,0,0,0,3,7,2,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,2,2,0,2,2,7,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,4,4,4,0,0,4,4,4,0,0,0,0,0,3,8,0,2,0,0,0,0,20,0,0,0,0,0,0,0,0,5,14,2,0,0,0,0,0,4,4,0,3,2,2,4,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,18,19,2,5,2,6,10,4,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,8,2,0,5,8,3,23,24,0,0,0,0,0,0,4,8,9,7,2,7,0,0,0,0,0,2,7,10,4,0,0,0,0,3,2,2,11,18,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,19,5,4,2,2,20,20,0,0,0,0,0,0,0,0,4,8,8,3,3,4,4,12,7,3,19,19,4,20,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,4,4,2,0,0,2,3,3,0,4,8,4,8,4,2,0,0,0,3,2,3,3,0,0,0,0,0,0,0,0,0,7,8,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,7,3,3,0,0,0,0,0,0,0,0,0,0,0,0,8,8,3,3,4,2,2,2,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,2,3,3,0,0,2,7,14,3,2,2,3,2,2,2,7,7,7,4,25,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,19,3,8,0,0,0,0,0,4,4,8,3,3,2,8,4,4,8,2,7,7,8,4,4,8,7,3,7,2,3,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,2,0,2,5,18,2,2,1,3,4,8,4,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,2,23,0,0,0,0,0,2,2,2,2,3,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,8,5,0,0,2,18,8,3,5,3,2,0,0,2,3,0,0,0,0,0,4,8,4,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,3,7,4,0,0,0,0,0,4,8,2,2,2,2,8,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,0,4,4,0,0,0,0,0,0,4,8,2,2,4,8,8,2,2,3,0,0,0,0,3,3,0,0,0,0,4,3,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,4,4,2,3,2,2,3,3,11,7,8,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,4,0,4,4,2,2,2,0,0,2,8,3,0,0,0,0,3,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,4,4,0,0,0,0,0,0,4,4,2,7,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,18,13,3,8,3,0,2,7,6,7,0,0,0,0,4,10,10,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,11,8,20,0,0,0,8,3,18,19,19,0,0,4,4,3,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,9,0,13,3,2,3,0,0,0,0,0,0,0,0,2,7,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,18,3,19,0,0,0,0,0,0,0,8,3,7,2,24,23,0,0,0,4,4,7,0,0,0,0,0,0,8,8,3,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,12,3,12,2,2,2,2,8,2,2,3,18,26,19,0,0,0,0,0,0,3,9,3,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,18,18,23,23,19,0,0,0,0,0,0,4,3,4,7,3,0,0,0,0,0,0,0,0,0,0,4,8,20,24,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,3,0,0,4,3,8,4,7,7,3,3,2,3,7,3,1,23,2,19,19,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,19,19,23,20,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,20,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,4,8,4,4,4,3,3,3,7,4,0,0,0,0,0,7,4,4,3,18,19,7,8,23,8,0,0,4,0,0,0,4,4,3,0,0,0,0,0,0,0,7,7,3,3,7,4,8,5,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,18,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,8,3,8,9,3,3,4,4,0,0,0,0,0,0,8,3,8,4,0,0,0,0,0,0,8,8,8,8,4,0,0,0,0,0,0,0,0,23,4,19,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,19,0,0,0,0,0,0,0,8,8,3,8,3,0,0,0,0,0,0,4,24,3,3,2,7,2,7,0,0,0,4,3,3,8,4,0,0,0,0,0,0,4,4,0,0,0,4,4,0,4,3,8,4,4,8,4,10,2,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,8,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,3,2,2,8,0,0,0,0,0,0,0,0,0,4,0,0,8,3,20,20,4,4,20,20,23,0,0,0,0,0,4,0,0,4,4,0,0,4,23,2,2,2,2,1,0,0,3,3,2,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,7,0,0,0,0,0,0,3,3,3,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,4,20,20,3,3,8,4,11,4,0,0,0,0,0,0,4,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,3,4,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7,3,3,2,3,0,0,0,0,0,0,7,4,3,3,2,0,0,0,0,0,0,24,20,3,8,8,7,3,4,4,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,8,4,0,0,4,11,3,4,4,7,3,3,2,0,0,0,4,4,4,4,0,0,0,0,4,8,0,0,0,0,0,0,0,0,18,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,10,3,4,0,0,0,0,0,0,19,7,18,7,4,0,0,0,0,0,23,18,4,18,18,3,24,19,4,24,0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,4,4,0,0,3,2,3,3,20,0,0,0,4,8,4,7,0,3,2,7,3,3,4,7,3,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,7,8,0,0,0,0,0,0,0,0,0,19,7,7,3,0,0,0,0,0,0,0,0,20,20,19,19,7,18,18,19,18,18,8,20,20,8,4,0,9,12,12,0,4,4,0,0,0,0,0,4,0,0,0,23,20,19,0,0,8,4,0,0,0,0,0,0,19,3,2,12,8,2,7,7,0,0,4,0,0,0,0,0,0,23,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,3,4,12,0,0,0,0,0,4,8,7,7,7,20,0,0,0,0,0,0,19,19,18,18,18,23,24,20,24,24,18,18,18,3,2,2,9,9,0,4,4,0,0,0,0,0,0,0,0,20,24,20,20,0,4,4,0,0,0,0,23,9,9,0,24,18,18,18,7,3,5,5,4,0,0,0,0,0,0,0,0,0,19,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,4,4,7,0,0,0,0,0,0,0,0,19,19,0,0,0,19,18,18,18,23,20,18,2,18,18,17,8,25,3,13,24,0,0,0,0,4,4,0,0,4,7,0,0,0,0,19,23,18,30,24,18,18,17,17,17,2,7,2,5,9,0,0,0,0,0,0,0,4,4,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,20,24,4,4,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,23,18,23,18,24,24,19,20,20,0,0,0,0,0,0,4,3,4,7,7,2,0,0,0,0,0,0,20,25,21,19,18,18,18,11,24,2,7,2,17,2,7,3,3,0,0,0,0,0,0,0,0,0,0,0,12,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,18,18,23,3,11,3,3,0,0,0,0,0,0,0,0,4,23,7,3,4,4,0,0,0,0,0,20,20,7,19,23,8,4,20,0,0,19,11,7,18,18,2,2,10,2,4,11,0,0,0,0,0,0,0,0,4,8,4,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,15,6,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,8,4,4,3,4,4,0,0,0,0,0,0,0,0,0,0,7,8,4,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,4,44,0,0,0,0,0,0,0,0,0,0,0,20,20,4,3,3,8,8,3,18,18,18,18,19,27,24,19,4,20,8,0,0,0,0,0,0,0,0,0,0,4,20,0,0,0,0,0,0,0,0,0,0,20,24,20,0,0,0,0,20,0,0,4,11,2,7,1,18,2,2,3,3,18,8,0,0,0,0,0,6,2,19,20,24,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,4,4,8,7,2,18,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,2,4,4,0,0,0,0,0,0,0,0,0,0,23,24,4,39,8,19,23,4,4,3,7,7,3,2,4,11,0,0,0,0,0,0,0,3,8,19,23,18,8,4,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,4,4,0,0,0,0,0,0,0,23,2,2,20,0,0,0,0,0,0,0,0,4,2,18,18,17,7,17,4,0,0,0,0,20,0,0,0,0,23,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,4,11,2,1,2,18,18,18,3,12,8,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,1,2,2,3,3,4,12,0,19,4,19,23,3,38,18,18,2,17,2,7,4,3,3,20,0,0,0,20,20,23,0,0,0,4,4,24,0,0,0,0,0,0,0,0,4,0,0,0,4,0,20,0,0,19,19,18,20,24,0,0,0,0,0,0,0,23,27,18,23,18,18,11,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,4,4,0,0,0,0,0,0,0,0,4,4,4,2,7,2,2,18,18,18,19,18,3,3,12,8,4,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,1,2,17,18,2,18,2,1,2,8,19,18,18,18,18,38,18,18,18,17,3,3,4,8,0,0,0,0,0,0,0,19,24,20,0,0,0,0,0,0,0,0,20,0,0,20,20,8,18,11,3,23,0,19,18,4,0,0,0,0,4,0,0,0,23,19,18,18,3,5,9,0,0,0,0,0,0,0,0,0,7,8,18,1,0,0,0,0,0,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,23,3,0,2,2,18,18,18,18,18,19,18,3,3,3,3,4,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,20,14,20,24,27,4,4,4,18,2,8,3,12,18,20,20,18,18,12,9,24,19,18,20,20,38,18,18,18,18,18,18,7,3,2,7,3,4,4,24,18,19,8,7,20,20,20,20,23,0,23,19,18,18,18,8,4,0,23,18,8,18,8,4,3,3,0,0,0,0,0,0,0,0,0,0,22,25,18,18,2,0,4,8,0,0,0,0,0,0,0,0,0,0,4,24,7,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,1,1,2,18,19,18,18,18,18,18,18,23,19,4,8,8,3,4,4,3,3,4,4,3,0,0,0,0,0,0,0,0,0,0,4,4,4,12,8,3,0,7,3,8,3,19,3,18,18,17,26,0,26,22,17,17,19,2,3,3,3,6,19,20,20,38,18,20,20,20,20,20,18,18,2,18,18,18,18,18,18,18,18,3,24,18,18,18,18,2,8,8,8,11,4,23,0,0,0,0,0,21,26,21,18,18,1,2,2,6,3,2,2,4,7,0,0,0,0,23,19,18,2,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,2,3,3,4,3,19,20,18,18,27,0,0,0,0,0,4,4,4,4,4,8,0,0,0,4,4,8,0,4,3,4,8,0,18,11,20,20,18,19,20,8,24,26,18,17,1,3,2,3,3,3,6,5,3,18,41,19,19,20,21,20,20,18,18,18,18,18,18,18,18,20,20,20,20,18,18,18,20,18,3,8,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,21,18,19,28,8,24,7,7,3,3,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,2,6,2,7,0,0,0,0,4,4,4,4,0,4,3,7,3,4,7,4,0,0,0,20,20,7,2,1,17,2,18,3,11,13,19,24,27,27,19,20,18,18,18,8,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,23,27,19,24,18,20,3,3,19,21,7,18,19,18,2,2,17,17,10,9,1,1,2,18,0,0,3,2,2,3,22,34,48,24,20,20,20,18,18,20,18,18,19,19,21,20,20,20,20,20,20,18,18,2,12,4,0,0,4,20,20,0,0,0,0,0,0,0,0,0,4,4,4,0,20,19,20,20,18,18,23,0,0,20,0,0,0,0,0,0,0,0,7,18,7,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,11,8,3,7,2,2,2,3,7,0,0,0,0,0,0,4,17,17,18,3,7,20,0,0,0,0,0,25,26,20,18,20,18,20,24,0,0,0,0,0,0,4,3,3,19,21,19,20,20,18,19,19,21,7,20,17,18,4,3,18,1,1,9,1,0,0,0,0,0,0,0,1,2,3,19,14,20,33,20,20,20,18,18,18,18,18,18,21,21,21,9,7,23,24,18,3,3,4,8,4,0,0,20,3,3,4,4,0,0,0,4,4,4,0,0,0,20,23,24,20,2,3,3,2,0,0,0,0,0,0,0,7,3,1,0,0,0,0,0,4,4,0,0,0,0,0,0,0,3,7,2,2,7,1,6,2,4,0,0,0,0,0,0,0,19,7,18,18,18,18,8,3,0,0,0,0,0,0,0,26,20,20,20,18,8,7,0,0,0,4,7,8,0,0,0,19,24,21,21,20,21,20,20,20,20,22,21,18,18,19,1,0,2,17,2,1,11,4,1,1,17,0,0,0,0,2,3,2,14,14,32,20,20,20,18,18,18,18,18,18,21,20,20,20,20,21,24,24,20,13,0,0,0,0,0,0,0,20,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,24,18,18,2,18,7,2,4,0,0,0,0,19,0,4,0,0,0,0,4,0,0,0,0,0,0,3,3,5,0,0,0,0,0,0,0,0,0,0,0,0,4,8,7,2,2,17,18,19,18,7,18,7,4,0,0,0,4,8,4,25,20,20,20,20,18,8,4,24,19,19,24,30,22,21,20,20,20,20,20,20,22,20,20,18,18,19,1,1,1,1,4,4,5,2,5,2,2,1,0,0,0,0,2,18,14,20,20,20,20,20,18,18,18,18,18,20,18,22,20,20,20,20,18,19,24,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,7,3,3,11,7,4,0,0,0,0,0,0,1,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,4,3,7,2,1,17,18,3,8,24,0,0,0,0,20,20,24,18,18,20,20,20,20,20,23,18,19,18,18,19,19,22,21,20,20,20,20,20,20,21,20,20,18,18,20,0,2,17,0,0,1,2,1,2,1,0,1,0,0,0,0,2,3,19,17,18,20,20,20,21,21,18,18,18,18,18,21,20,20,20,4,20,20,0,0,0,0,0,0,0,0,0,0,7,3,27,4,4,4,7,3,3,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,8,1,0,1,17,18,18,7,4,0,0,0,0,0,0,0,23,21,20,20,20,19,8,21,19,18,21,21,20,20,20,21,21,20,20,20,20,21,21,20,20,20,18,18,19,2,4,4,0,1,3,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,12,12,20,20,20,20,21,20,18,18,18,18,18,18,18,18,18,18,3,24,20,0,0,0,0,0,19,2,2,7,4,0,0,0,0,0,0,0,0,0,0,0,5,5,8,4,0,7,0,0,0,0,0,0,7,18,0,1,2,17,18,2,7,8,0,0,0,20,18,20,24,23,20,20,0,0,0,0,25,20,20,20,21,20,20,21,21,21,21,20,20,20,21,20,20,18,18,18,3,0,0,0,4,8,19,2,0,0,0,0,1,1,1,1,0,17,1,1,1,15,17,18,18,20,20,19,20,20,18,18,18,18,20,20,20,20,18,8,13,0,0,0,0,0,21,21,20,18,3,4,4,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,22,18,0,2,3,3,18,3,19,27,0,0,0,0,20,24,20,20,0,0,20,0,0,30,20,20,20,21,20,20,20,20,20,20,20,20,20,20,21,20,18,19,19,0,0,0,0,0,0,0,0,0,0,0,0,6,11,2,1,1,1,2,0,1,20,6,7,5,18,18,17,20,18,18,17,20,20,20,18,18,18,18,20,20,18,4,8,0,0,0,0,0,21,4,19,18,3,8,0,0,0,0,0,4,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,23,2,1,2,3,7,12,3,19,8,7,0,0,0,0,0,0,0,0,0,0,0,22,20,24,20,19,20,20,20,20,20,20,20,20,20,20,20,20,20,20,21,20,18,3,19,0,0,0,0,0,0,7,8,2,3,2,2,1,0,0,0,0,1,5,18,18,20,18,18,12,20,22,20,18,18,20,18,18,20,20,3,3,0,0,0,0,0,0,24,8,20,20,18,8,23,0,4,4,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,7,3,0,0,0,0,4,19,19,24,0,0,0,0,0,0,0,20,20,20,20,19,20,23,19,21,22,21,20,20,20,20,20,20,20,20,20,21,20,20,20,20,21,20,18,18,3,0,0,0,0,0,0,11,3,4,19,1,0,0,0,0,0,3,2,17,17,18,11,12,17,20,18,18,18,18,18,20,20,20,18,3,8,4,0,0,0,0,0,0,0,0,0,8,25,20,20,20,18,8,11,12,2,2,3,3,0,0,0,0,0,0,0,7,19,20,4,0,0,0,0,0,0,0,0,0,0,0,0,0,23,20,3,4,4,3,0,0,0,0,0,0,0,24,26,18,21,21,21,20,20,20,21,21,21,22,22,20,21,20,20,20,20,20,20,20,20,18,3,0,0,0,0,4,8,4,12,17,1,0,0,0,0,0,2,17,17,11,17,17,18,19,18,18,18,18,20,20,20,21,20,20,3,23,31,20,8,0,0,0,0,0,0,0,0,22,23,20,20,20,20,19,4,18,2,2,5,0,0,0,0,0,0,0,0,4,3,8,3,4,0,0,0,0,0,0,0,0,0,0,0,0,8,4,4,0,0,0,0,0,20,27,0,25,8,20,21,21,20,20,20,21,20,20,20,20,22,25,21,20,20,21,20,20,20,20,20,20,3,0,0,0,0,20,23,4,22,3,2,0,1,0,6,6,8,12,3,17,19,18,18,18,18,19,18,22,20,20,21,21,21,30,3,4,4,24,0,0,0,0,0,0,0,0,0,0,21,19,20,20,18,18,18,18,19,18,2,8,4,0,0,0,0,20,24,3,4,4,0,0,0,0,0,0,0,0,4,0,0,0,20,0,0,0,0,0,0,0,0,0,0,20,4,3,19,19,20,20,20,20,20,20,20,20,20,21,22,23,20,21,10,9,20,21,20,20,21,20,20,18,3,0,0,0,0,0,0,12,18,1,1,1,1,5,0,3,2,3,1,17,19,17,17,18,18,18,21,20,20,10,30,22,22,21,20,4,8,19,7,20,27,4,0,0,0,0,4,8,18,20,18,18,18,18,18,18,18,18,3,8,8,0,0,0,0,0,0,0,4,0,0,20,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,27,19,20,20,20,20,20,20,20,20,20,21,20,21,20,20,20,20,16,20,20,20,21,20,17,18,3,0,0,0,20,8,11,23,17,7,0,19,19,21,1,0,0,2,17,18,18,17,17,18,17,18,20,9,9,21,12,20,20,20,20,19,18,3,3,4,0,0,0,0,19,19,21,20,18,18,18,17,18,18,18,18,3,4,4,4,0,0,0,0,0,23,20,4,3,0,0,24,24,19,20,20,0,0,0,0,0,0,0,20,20,24,0,20,23,4,4,4,4,4,23,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,13,20,20,20,20,18,18,18,4,0,0,0,4,0,0,4,8,2,1,0,5,0,0,0,0,1,17,17,17,18,17,23,9,8,20,19,12,20,20,20,20,20,20,20,20,18,24,24,0,0,0,0,0,25,21,20,20,20,18,18,17,17,18,18,18,18,18,2,4,8,0,0,0,0,0,20,24,4,0,0,4,3,3,3,20,24,0,0,0,0,0,0,0,0,20,24,19,20,24,27,28,27,20,20,3,19,20,20,20,20,20,21,21,20,20,20,20,20,20,20,20,20,20,21,21,29,20,20,20,18,20,2,3,0,0,0,0,0,0,2,0,0,2,3,0,0,0,0,2,17,17,17,6,7,18,18,18,19,20,12,20,20,20,20,20,20,20,20,3,24,0,0,25,20,20,20,17,17,18,17,17,17,2,2,24,24,8,8,7,8,4,0,0,0,0,0,0,4,0,0,0,0,4,18,8,8,4,4,0,0,0,0,0,0,20,24,24,20,18,18,19,19,21,21,20,20,21,20,13,20,14,14,15,21,20,20,20,20,20,20,20,20,20,21,21,21,22,24,19,3,8,18,21,20,20,20,18,3,0,0,0,0,9,8,4,0,0,0,2,0,0,0,2,5,6,6,6,17,18,17,18,18,20,12,20,20,20,20,20,20,20,19,3,3,7,20,27,26,20,20,20,18,18,18,2,3,3,7,4,4,8,4,10,12,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,20,0,0,0,0,0,20,20,24,26,4,4,14,18,20,20,21,18,18,20,19,20,20,20,13,20,20,20,20,16,20,20,20,20,20,20,20,21,3,28,20,20,0,0,23,21,20,20,20,18,3,0,0,0,3,3,3,3,1,0,0,0,0,0,18,17,1,17,17,17,18,22,7,19,14,20,20,20,20,20,20,18,20,20,20,20,18,18,20,20,20,18,18,2,3,13,0,0,0,0,0,0,0,0,0,0,0,0,7,2,7,0,0,0,0,0,0,0,0,0,0,0,0,20,20,3,6,18,18,7,19,3,2,2,2,18,20,17,18,12,18,18,20,20,20,16,16,21,20,21,20,20,21,18,20,20,20,0,0,0,0,0,0,25,20,19,20,20,20,18,3,0,7,8,4,21,1,0,1,3,0,0,0,1,17,18,18,18,6,18,18,18,20,20,20,20,20,20,19,19,20,20,20,20,20,20,20,20,18,19,18,18,3,7,7,3,2,4,12,0,0,0,0,0,4,3,3,4,4,4,4,0,0,0,0,0,0,4,4,4,8,8,18,22,20,20,5,2,3,2,2,2,3,20,18,12,18,2,3,3,20,18,3,18,17,19,18,18,21,19,24,20,0,0,0,0,0,0,0,0,0,20,20,23,20,20,18,3,0,0,0,0,0,0,21,18,14,4,4,0,0,0,0,1,17,6,6,17,17,18,18,22,20,20,20,20,18,18,18,20,20,18,18,20,20,20,20,20,18,19,18,2,3,4,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,20,19,27,19,18,20,2,4,17,0,0,0,17,3,3,19,14,20,17,17,3,4,8,8,8,20,20,20,20,23,8,4,24,20,19,20,19,20,0,0,0,0,0,0,22,20,20,18,20,0,0,0,25,3,23,0,8,1,0,0,0,0,0,2,19,17,17,17,18,18,21,20,20,20,20,18,18,18,20,18,18,19,20,20,20,18,18,20,18,19,12,8,3,8,19,27,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,25,20,18,4,19,0,2,0,23,23,2,2,3,3,2,2,14,17,18,17,3,8,8,0,0,0,0,0,0,0,0,28,20,28,21,4,8,0,0,0,0,0,0,0,0,0,0,26,26,20,21,19,19,0,0,3,8,7,0,0,0,0,0,0,0,0,1,1,1,2,3,3,3,2,4,5,5,2,3,5,3,2,19,5,20,2,2,3,3,2,2,8,4,8,20,0,0,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,20,17,2,0,3,12,13,8,8,3,0,13,13,7,7,3,10,4,2,2,2,12,7,0,0,0,0,0,0,0,0,0,4,8,8,4,4,8,0,0,0,0,0,0,0,4,9,8,3,3,4,3,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,2,4,3,5,3,5,4,4,6,7,4,16,4,5,6,2,3,5,6,4,5,3,14,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,0,0,20,21,20,2,3,3,14,0,9,9,0,0,9,3,18,4,4,5,8,5,0,0,0,0,0,5,0,8,4,4,0,0,0,4,4,4,4,10,6,4
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,0,0,0,0,13,13,13,13,13,13,0,13,13,13,13,13,13,0,0,13,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,0,13,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,12,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,13,13,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,13,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,13,13,13,13,13,13,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,8,8,8,0,0,8,8,8,0,0,0,0,0,13,13,13,13,0,0,0,0,13,0,0,0,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,0,13,13,13,13,13,13,13,13,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,13,13,13,13,13,13,13,13,0,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,0,0,0,13,13,13,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,8,0,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,8,0,0,0,0,0,0,0,13,0,0,13,13,13,13,13,13,13,13,0,13,13,13,13,13,13,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,0,0,0,0,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,0,0,0,0,0,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,0,0,0,0,0,12,12,12,12,12,12,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,0,13,13,0,0,0,0,0,0,13,13,13,13,13,13,13,13,14,14,13,13,13,13,13,13,0,0,0,0,13,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,12,12,12,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,15,0,0,0,0,0,0,13,0,0,0,0,0,0,0,13,13,0,14,14,14,14,14,13,13,13,13,13,0,0,0,0,13,13,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,0,12,12,0,0,0,0,0,0,12,8,8,8,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,13,13,14,13,13,0,0,0,0,13,13,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,0,0,0,8,8,8,8,8,0,0,8,8,8,8,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,13,0,0,0,0,14,14,0,14,14,14,14,0,0,0,0,0,0,0,0,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,0,0,0,0,0,0,0,8,8,8,8,8,8,0,0,0,8,8,8,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,13,13,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,0,0,3,3,3,3,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,13,13,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,3,3,3,3,3,3,3,3,3,3,0,0,14,0,0,0,14,14,14,0,0,0,0,0,0,0,13,13,13,13,13,13,13,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,0,0,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,0,0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,0,15,15,15,15,15,15,15,15,0,0,0,15,15,15,15,15,0,0,0,0,0,0,15,15,0,0,0,15,15,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,0,0,0,0,0,8,8,8,8,0,0,0,0,0,0,0,0,0,15,0,0,15,15,15,15,15,15,15,15,15,0,0,0,0,0,15,0,0,15,15,0,0,3,3,3,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,0,8,8,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,0,0,3,3,3,3,3,3,3,3,3,0,0,0,3,3,3,3,0,0,0,0,3,3,0,0,0,0,0,0,0,0,13,6,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,15,15,15,0,0,0,0,15,15,0,0,3,3,3,3,3,0,0,0,3,3,3,3,0,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0,0,0,0,0,8,8,8,8,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,15,15,15,0,15,15,0,0,0,0,0,15,0,0,0,15,15,15,0,0,3,15,0,0,0,0,0,0,3,3,3,3,3,3,3,3,0,0,3,0,0,0,0,0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,0,0,0,0,0,8,8,8,8,8,8,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,15,15,0,0,0,0,0,0,0,0,15,15,15,15,0,15,15,0,0,0,0,3,3,3,0,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,0,0,0,0,8,8,8,0,0,0,0,0,0,0,0,15,15,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,15,15,0,0,15,15,0,0,0,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,15,15,15,15,15,15,0,0,0,0,0,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,6,6,6,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,15,15,15,15,15,15,0,0,0,0,0,3,3,3,3,3,3,3,3,0,0,3,3,3,3,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,6,6,6,6,6,6,19,0,0,0,0,0,0,0,0,0,10,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,3,0,0,3,3,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,6,6,6,6,6,6,6,19,0,0,0,0,0,0,0,0,10,10,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,15,17,17,0,0,0,0,0,0,0,3,3,3,3,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,0,0,0,0,6,0,0,0,0,19,19,19,19,0,0,0,0,0,0,10,10,10,10,8,8,8,8,8,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,15,15,1,1,1,1,1,1,1,1,1,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,15,15,15,0,0,0,16,16,16,0,0,0,0,0,0,0,0,17,0,0,0,17,0,17,0,0,3,3,3,3,3,0,0,0,0,0,0,0,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,19,19,19,19,0,0,0,0,0,0,10,10,10,10,10,10,8,8,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,16,16,16,0,0,0,0,0,0,0,0,16,0,0,17,17,17,17,17,17,17,0,3,3,3,0,0,0,0,6,0,0,0,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,0,0,0,0,0,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,8,0,0,0,0,0,0,8,0,0,0,0,20,20,20,20,20,20,20,20,20,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,17,17,17,17,17,17,17,0,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,19,0,0,0,0,0,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,0,20,20,20,20,20,20,20,20,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,3,3,3,3,3,3,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,19,19,19,19,19,19,0,0,0,10,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,8,8,8,8,8,8,0,0,0,8,8,8,0,8,8,8,8,0,20,20,20,20,20,20,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,19,19,19,19,19,10,10,10,10,10,10,10,10,10,10,0,0,0,0,10,10,10,10,0,8,8,10,8,10,10,10,0,0,0,18,18,8,18,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,20,20,20,20,20,20,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,0,0,3,3,3,0,0,0,0,0,0,0,0,0,6,6,6,0,6,6,6,6,6,6,6,0,0,6,0,0,0,0,0,0,0,0,19,19,19,19,19,19,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,8,10,10,10,10,10,0,0,0,0,0,0,18,18,18,8,8,8,8,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,20,20,20,20,20,20,20,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,0,0,3,3,3,3,3,0,0,0,6,6,6,0,0,0,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,19,19,19,19,19,10,10,10,10,10,0,0,0,0,0,0,0,10,10,10,10,10,10,10,10,10,0,0,0,0,0,0,0,18,18,18,18,18,18,8,8,0,0,0,0,0,0,0,8,8,8,8,8,8,8,0,0,0,8,8,8,0,0,0,8,8,8,8,8,8,8,8,20,20,20,20,20,20,20,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,0,0,0,0,0,0,0,3,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,0,0,0,0,19,19,19,19,10,10,10,10,0,0,0,0,0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,18,18,18,18,18,18,18,18,8,8,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,20,20,20,20,20,20,20,20,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,0,0,0,0,0,0,19,19,19,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,18,18,18,18,18,18,18,18,18,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,20,20,20,20,20,20,20,20,20,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,16,16,17,17,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,19,19,19,19,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,19,19,19,10,10,10,0,0,0,0,0,0,0,0,0,0,18,18,18,18,18,18,18,18,18,18,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,20,20,20,20,20,20,20,20,20,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,16,16,17,16,0,0,0,0,0,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,19,19,19,10,10,10,0,0,0,0,0,0,18,18,18,18,18,18,18,18,18,18,0,0,0,8,8,8,8,8,8,8,0,0,0,0,4,4,4,4,8,8,8,8,8,8,8,20,20,20,20,20,20,20,20,20,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,19,19,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,18,18,18,18,18,18,18,18,18,18,0,0,0,0,8,8,8,8,0,0,8,0,0,4,4,4,4,4,4,8,7,7,7,7,7,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,9,0,0,0,0,0,19,19,19,19,19,19,0,0,0,0,0,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,18,18,18,18,18,18,18,18,18,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,4,4,8,7,7,7,7,7,7,20,20,20,20,20,20,20,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,9,0,0,0,0,0,0,19,19,19,19,19,19,19,0,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,0,0,0,0,18,18,18,18,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,7,7,7,7,7,7,7,7,7,20,20,20,20,20,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,9,9,9,9,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,19,19,19,19,19,19,19,0,0,0,0,0,0,0,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,18,18,18,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,4,4,4,7,7,7,7,7,7,7,7,7,7,20,20,20,20,20,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,9,9,9,9,9,9,9,9,0,0,0,0,0,0,0,0,19,19,19,19,19,19,19,19,19,19,19,19,0,0,0,0,0,0,0,0,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,0,0,0,0,0,4,4,0,4,4,4,4,4,4,4,4,4,4,7,7,7,7,7,7,7,7,7,7,7,20,20,20,20,20,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,1,16,16,16,16,16,16,9,9,9,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,19,19,19,19,19,19,19,0,0,0,0,10,10,10,10,10,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,7,7,7,7,7,7,7,7,7,7,7,7,7,20,20,20,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,9,9,9,9,9,9,9,9,9,9,9,9,9,0,0,0,0,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,0,0,0,0,0,0,0,10,0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,4,4,4,7,7,7,7,7,7,7,7,7,7,7,7,7,7,20,20,20,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,9,9,9,9,9,9,9,9,9,9,9,9,0,0,0,0,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,0,0,0,0,0,10,10,10,10,0,0,10,10,10,10,10,0,0,0,0,0,0,0,10,10,10,0,10,10,10,10,10,10,10,4,4,4,4,4,4,4,4,4,7,7,7,7,7,7,7,7,7,7,7,7,7,7,20,20,20,20,20,0,0,0,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,9,9,9,9,9,9,9,9,9,9,9,9,9,9,0,0,0,0,0,11,11,11,11,11,19,19,19,19,19,19,19,19,19,19,19,19,0,0,0,0,0,10,10,10,0,0,10,10,10,10,10,10,0,0,0,0,0,0,0,0,10,10,10,10,10,10,10,10,10,10,10,10,4,4,4,4,4,4,4,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,20,20,20,20,20,0,0,0,0,0,0,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,16,9,9,9,9,9,9,9,9,9,9,9,9,9,9,0,0,11,11,11,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,0,0,0,0,0,0,10,0,0,0,0,10,10,10,10,10,10,0,0,0,0,0,0,10,10,10,10,10,10,10,10,10,10,10,10,10,4,4,4,4,4,4,4,5,5,5,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,20,20,20,20,20,20,0,0,0,0,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,16,9,9,9,9,9,9,9,9,9,11,11,9,9,9,9,9,11,11,11,11,11,19,19,19,19,19,19,19,19,19,19,19,19,19,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,4,4,4,4,4,5,5,5,5,7,7,7,7,7,7,7,7,0,0,20,20,20,20,20,20,20,0,0,0,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,16,16,9,9,9,9,9,9,9,9,9,11,11,11,11,11,11,11,11,11,11,11,11,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,4,4,4,4,5,5,5,5,5,5,7,7,7,7,7,7,0,0,0,0,0,0,20,20,20,20,20,20,20,20,0,1,1,1,1,1,1,1,1,1,16,16,16,16,16,16,16,9,9,9,9,9,9,9,9,9,9,9,11,11,11,11,11,11,11,11,11,11,11,19,19,19,19,19,19,19,19,19,0,0,0,0,0,19,19,19,19,19,19,19,0,0,0,0,0,0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,4,4,4,5,5,5,5,5,5,5,7,7,7,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,0,0,0,0,0,0,1,1,1,1,1,1,16,16,16,16,16,9,9,9,9,9,9,9,9,9,9,9,9,9,11,11,11,11,11,11,11,11,11,11,11,11,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,4,4,4,5,4,5,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,20,20,20,20,20,0,0,0,1,1,1,0,1,1,1,1,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,11,11,11,11,11,11,11,11,11,11,11,11,19,19,19,19,19,19,19,19,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,4,4,4,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,0,0,1,1,1,1,1,1,1,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,11,11,11,11,11,11,11,11,11,11,19,19,11,19,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,10,10,10,10,10,10,10,0,10,10,10,10,10,10,10,10,10,10,10,10,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,20,20,20,20,20,20,20,0,0,1,1,1,1,1,1,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,0,0,10,10,10,10,10,10,10,0,10,10,0,0,10,10,10,10,10,10,10,10,0,0,0,0,0,5,5,5,5,5,0,0,0,20,20,20,20,20,20,20
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,12,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,15,24,15,15,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,24,24,24,24,24,15,0,0,0,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,25,25,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,12,12,0,0,0,0,0,0,0,25,25,25,25,25,25,0,0,0,0,0,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,0,0,0,0,0,0,0,25,25,25,25,25,25,0,0,0,0,0,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,0,15,15,15,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,12,12,12,12,12,12,0,0,0,0,0,0,0,0,25,25,25,25,25,25,25,0,0,0,0,0,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,15,15,15,15,15,15,15,0,0,0,0,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,0,0,0,12,12,0,25,25,25,25,25,25,25,25,0,0,0,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,12,12,0,0,0,12,12,12,12,25,0,25,25,12,12,0,0,25,0,25,25,0,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,13,13,12,12,12,12,0,12,12,12,12,12,12,25,25,25,25,25,25,25,25,12,0,0,0,0,25,25,0,0,0,0,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,15,15,15,0,0,15,15,15,0,0,0,0,0,13,13,0,12,0,0,0,0,12,0,0,0,0,0,0,0,0,25,25,25,0,0,0,0,0,25,25,0,25,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,13,12,0,12,12,12,12,12,0,0,0,0,0,0,25,25,25,25,25,25,0,0,0,0,0,25,25,25,25,0,0,0,0,25,25,25,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,15,0,0,0,0,0,0,15,0,0,0,0,0,15,0,0,0,0,0,0,0,13,0,0,13,12,12,0,0,12,12,12,0,25,25,25,25,25,25,0,0,0,25,25,25,25,0,0,0,0,0,0,0,0,0,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,0,0,12,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,0,0,12,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,12,25,25,25,25,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,12,12,12,0,0,12,12,12,25,25,25,25,0,0,25,25,0,0,0,0,0,25,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,0,13,12,0,0,0,0,0,0,12,12,12,12,12,12,12,25,25,25,0,0,0,0,25,25,0,0,0,0,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,13,0,0,0,0,0,0,12,0,0,0,0,0,0,0,12,12,0,12,12,12,25,25,0,0,25,25,25,0,0,0,0,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,15,15,0,0,0,0,0,0,15,15,15,15,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,25,25,25,0,25,25,25,25,0,0,0,0,25,25,25,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,15,15,15,15,15,0,0,15,15,15,15,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,12,0,0,0,0,12,25,0,25,25,25,25,0,0,0,0,0,0,0,0,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,0,15,15,15,15,15,15,0,0,0,15,15,15,0,0,0,0,0,0,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,0,0,12,12,12,12,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,13,13,13,13,13,12,12,13,12,12,0,0,0,0,0,12,12,12,12,12,12,12,12,12,25,0,0,12,0,0,0,25,25,25,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,1,1,1,1,1,1,1,13,1,0,0,0,0,0,0,13,13,13,13,0,0,0,0,0,0,13,13,12,12,12,0,0,0,0,0,0,0,0,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,0,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,13,13,13,13,13,0,0,0,0,0,0,12,12,0,0,0,12,12,0,12,12,12,12,12,12,5,5,5,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,0,0,0,1,0,0,13,13,13,13,13,13,13,13,13,0,0,0,0,0,12,0,0,12,12,0,0,12,12,12,12,12,5,5,0,0,5,5,5,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,12,5,5,5,5,5,5,5,5,0,0,0,0,0,0,12,12,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,15,15,0,0,0,0,0,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,0,13,13,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,0,0,12,12,12,12,12,5,12,5,5,0,0,0,19,19,19,5,0,0,0,0,19,19,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,13,13,13,13,13,13,13,26,13,26,0,0,0,0,0,0,0,0,12,12,12,0,0,0,0,12,12,0,0,12,12,12,5,5,0,0,0,19,19,19,19,0,19,19,19,19,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,0,0,13,13,13,13,13,13,13,13,26,26,26,26,26,26,26,0,26,26,26,0,12,26,0,0,0,0,0,12,0,0,0,12,12,12,0,0,12,12,0,0,0,0,0,0,19,19,19,19,19,19,19,19,0,0,22,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,15,15,15,15,15,15,0,0,0,0,0,0,13,13,13,13,13,13,26,26,26,26,26,26,26,26,26,26,26,26,0,26,26,0,0,0,0,0,0,0,0,12,12,12,12,0,12,12,0,0,0,0,19,19,19,0,19,19,19,19,19,19,22,22,19,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,15,15,15,0,0,0,0,0,0,0,0,13,13,0,0,0,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,0,0,0,0,12,12,0,0,12,12,0,0,0,0,19,19,19,19,19,19,19,19,19,19,19,19,19,22,22,0,0,0,0,0,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,26,26,26,26,26,26,26,26,26,26,26,26,26,0,0,0,0,0,0,12,12,12,12,23,12,0,0,0,0,0,0,19,19,19,19,19,19,19,19,19,19,19,19,19,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,26,26,26,26,26,26,26,0,0,0,0,0,0,0,0,12,23,23,23,23,23,0,0,0,0,0,19,19,19,19,19,19,19,19,0,0,19,19,19,19,22,22,22,22,22,22,22,0,0,0,0,0,0,0,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,0,0,0,0,0,0,0,0,0,0,23,23,0,0,0,0,0,0,0,0,0,0,19,19,19,0,0,0,0,19,0,0,19,19,22,22,22,22,22,22,22,22,22,22,0,0,0,0,0,5,5,5,5,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,15,11,15,15,20,20,20,20,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,18,18,18,0,0,0,0,0,0,0,0,0,0,10,10,10,10,10,10,2,2,2,18,18,18,18,18,18,18,0,0,0,0,0,0,0,26,26,26,26,26,26,26,26,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,23,23,23,0,0,0,0,0,0,0,19,19,19,19,0,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,0,0,0,0,5,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,11,11,11,11,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,2,0,0,0,18,18,18,18,18,18,18,0,18,18,2,10,10,10,10,2,18,18,18,18,18,18,18,18,0,0,0,26,26,26,0,0,0,26,26,26,0,0,0,0,0,0,0,0,23,0,0,0,23,0,23,0,0,19,19,19,19,19,0,0,0,0,0,0,0,22,22,22,22,22,22,22,0,0,0,0,0,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,15,0,0,0,15,15,0,0,0,0,0,0,0,0,11,11,11,11,11,20,20,20,20,20,20,20,20,20,20,20,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,18,18,18,18,18,18,18,18,18,18,18,18,2,10,2,10,18,18,18,18,18,18,18,18,0,0,0,0,0,0,0,26,26,26,0,0,0,0,0,0,0,0,23,0,0,23,23,23,23,23,23,23,0,19,19,19,0,0,0,0,22,0,0,0,22,22,22,22,22,22,22,0,0,0,0,0,0,0,0,0,22,22,22,22,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,9,11,0,20,20,20,20,20,20,20,20,20,20,20,15,15,15,0,0,0,0,15,0,0,0,0,0,0,15,0,0,0,0,15,15,15,15,15,15,15,15,15,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,26,12,26,26,26,26,26,26,26,26,26,26,26,26,23,23,23,0,23,23,23,23,23,23,23,0,19,19,19,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,0,22,22,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,9,20,20,20,20,20,20,20,20,20,20,20,20,20,20,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,0,15,15,15,15,15,15,15,15,18,18,0,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,26,26,26,26,26,26,26,26,26,26,23,23,23,23,23,23,23,23,19,19,19,19,19,19,0,0,0,0,0,22,22,22,22,22,22,22,22,22,22,22,22,22,22,0,0,0,0,22,22,22,22,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,9,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,0,15,15,15,15,15,15,0,0,0,20,20,20,0,20,20,15,20,0,20,15,15,15,15,15,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,26,26,26,26,26,26,26,26,26,26,23,23,23,23,23,23,23,23,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,22,22,22,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,15,15,15,15,0,15,15,15,15,15,15,15,0,0,0,11,11,11,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,15,20,15,15,18,18,18,18,18,18,18,18,18,18,0,0,18,18,18,18,18,18,18,18,18,18,18,18,26,26,26,26,26,26,23,26,23,23,23,23,23,23,23,23,23,23,0,0,19,19,19,0,0,0,0,0,0,0,0,0,22,22,22,0,22,22,22,22,22,22,22,0,0,22,0,0,0,0,0,0,0,0,22,22,22,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,11,20,20,20,20,20,20,0,0,0,0,0,20,20,20,20,20,20,20,20,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,15,15,18,18,18,18,18,18,18,0,0,0,0,0,0,0,18,18,18,18,18,18,18,18,18,18,26,23,26,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,19,19,22,22,22,0,0,0,22,22,22,0,0,0,22,22,22,22,22,22,22,22,0,0,0,0,0,0,0,22,22,5,0,0,0,0,0,15,15,0,0,0,0,0,0,0,15,15,15,15,15,15,15,15,15,0,0,0,0,0,0,0,20,11,20,20,20,20,20,20,0,0,0,0,0,0,0,20,20,20,20,20,20,20,0,0,0,20,20,20,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,15,15,18,0,18,18,18,18,18,18,18,18,18,0,0,0,0,18,18,18,18,18,18,18,18,18,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,19,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,22,0,0,0,0,5,0,5,0,0,0,0,15,0,0,0,0,0,0,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,20,20,20,20,20,20,20,20,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,15,18,18,18,18,18,18,18,18,18,18,18,18,0,0,0,0,18,18,18,18,18,18,18,18,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,0,0,0,0,0,0,15,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,20,20,20,20,20,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,15,0,18,18,0,0,18,18,18,18,18,0,18,0,0,0,0,18,18,18,18,18,18,18,18,18,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,22,22,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,0,11,11,11,20,20,20,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,15,18,18,18,0,18,18,0,0,0,0,0,0,0,18,18,0,0,0,0,0,18,18,18,18,18,18,18,18,18,18,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,22,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,15,15,15,15,0,15,0,0,0,0,0,0,11,11,0,11,11,20,20,11,20,20,0,0,0,20,20,20,20,20,20,20,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,18,0,0,0,18,18,18,18,0,0,0,0,18,18,18,18,0,18,18,18,18,18,18,18,18,18,18,18,18,18,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,22,23,22,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,11,11,0,11,11,11,20,20,20,20,0,0,0,0,20,20,20,20,0,0,20,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,18,18,18,18,0,18,18,18,18,18,18,18,18,18,18,18,18,18,18,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,23,23,23,22,22,22,0,0,0,0,0,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,11,11,20,20,20,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,15,0,0,0,0,0,0,18,18,18,18,18,18,18,0,0,0,0,18,18,18,18,18,18,18,18,18,18,18,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,23,23,23,23,22,22,23,0,22,23,22,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,0,0,0,0,11,20,20,20,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,15,0,0,0,0,0,0,18,18,18,18,18,0,0,0,0,0,18,18,18,18,18,18,18,18,18,18,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,15,0,0,0,0,18,18,18,18,18,18,0,0,0,0,0,18,18,18,18,18,18,18,18,18,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,0,0,0,0,0,20,20,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,8,0,0,0,0,18,18,18,18,18,18,0,18,0,18,18,18,18,18,18,18,23,18,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,15,15,15,15,15,0,0,0,0,0,0,0,0,20,0,0,0,15,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,8,0,0,0,0,0,0,18,18,18,18,18,18,18,0,18,18,18,18,18,18,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,15,0,0,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,8,8,0,0,0,18,18,18,18,18,18,0,18,18,18,18,0,0,18,18,18,18,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,15,15,15,15,0,0,15,15,15,15,15,0,0,0,0,0,0,0,20,20,20,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,8,8,0,0,0,18,0,0,18,18,18,18,0,18,0,0,0,0,18,18,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,15,15,15,0,0,15,15,15,15,15,15,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,8,8,0,0,0,0,0,0,18,0,0,18,18,0,0,0,0,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,15,0,0,0,0,15,15,15,15,15,15,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,8,8,0,0,0,0,18,18,18,0,0,0,18,0,0,0,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,20,20,20,20,20,8,8,0,0,0,18,18,18,18,18,0,0,0,0,0,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,20,20,20,20,20,20,8,8,0,18,18,18,18,18,0,18,18,0,0,0,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,23,23,14,14,14,14,14,0,0,0,0,0,0,15,15,15,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,20,20,20,20,8,8,8,0,0,0,0,0,0,18,18,18,18,18,0,0,0,0,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,20,8,8,8,8,0,0,0,18,18,18,0,18,18,0,0,0,0,0,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,0,20,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,20,20,21,20,20,20,0,0,0,0,0,0,0,0,0,0,20,8,8,8,8,8,0,0,18,18,18,0,0,0,0,0,0,0,0,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,0,20,20,20,20,20,20,0,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,0,0,0,0,0,0,0,8,8,8,8,8,8,8,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,0,0,20,20,20,20,15,20,20,0,20,20,0,0,20,20,20,20,20,20,20,20,0,0,0,0,0,8,0,20,20,8,0,0,0,8,8,8,8,8,8,8
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,179,179,179,179,179,179,179,102,102,102,102,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,179,179,179,179,179,179,102,102,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,179,179,179,179,179,179,179,179,179,179,102,102,102,102,102,102,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,180,180,180,180,180,180,180,180,180,180,0,0,0,0,0,0,0,0,0,0,179,179,179,179,179,179,179,179,179,179,179,179,179,102,102,102,102,102,102,0,0,0,0,0,0,0,0,0,0,0,0,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,0,0,0,0,0,0,0,0,0,179,179,179,179,179,179,179,179,179,179,179,179,102,102,102,102,102,102,102,102,102,102,102,102,102,102,0,0,0,0,0,0,0,0,0,0,180,180,180,180,180,180,180,180,180,180,180,180,180,0,0,0,0,0,0,0,0,0,180,180,180,179,179,179,179,179,179,179,179,179,102,102,102,102,102,102,102,102,102,102,0,0,0,0,0,0,0,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,180,180,180,180,180,180,180,180,179,179,179,179,179,179,179,102,102,102,102,102,102,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,0,0,0,0,0,108,108,108,108,180,180,0,180,180,180,180,180,180,0,0,180,180,180,180,179,179,179,179,179,179,102,102,102,102,102,102,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,0,0,0,0,0,108,108,108,108,180,180,180,180,180,180,180,180,0,180,180,180,180,179,179,179,179,179,102,102,102,102,102,102,105,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,0,0,0,0,0,108,108,108,108,180,180,180,180,180,180,180,180,180,180,179,179,179,179,179,179,102,102,102,105,105,105,105,105,105,105,0,0,0,0,103,103,103,103,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,0,0,0,108,108,108,108,180,180,180,180,180,180,180,180,180,180,180,179,0,179,179,179,179,179,179,105,105,105,105,105,105,105,105,105,105,103,103,103,103,103,103,0,0,0,0,0,0,168,168,0,0,0,0,0,0,0,180,180,0,0,0,180,180,180,180,180,180,107,180,180,180,180,180,180,180,180,180,0,108,108,108,108,108,180,180,180,180,180,180,180,180,180,180,0,180,0,0,0,179,179,179,179,179,179,104,105,105,105,105,105,105,103,103,103,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,168,0,0,0,0,0,0,180,180,180,180,180,180,0,180,180,180,180,180,180,180,180,180,180,180,107,107,107,180,180,180,180,180,180,106,0,0,0,0,108,108,108,108,108,108,180,180,180,180,180,180,180,180,0,0,0,0,0,0,179,179,179,179,179,179,104,104,104,104,105,105,105,103,103,103,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,168,0,0,0,0,0,168,168,168,0,0,168,168,168,0,0,0,0,0,180,180,180,180,0,0,0,0,180,0,0,0,0,0,0,0,0,107,107,107,180,180,180,180,106,106,106,0,108,108,108,108,108,108,180,180,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,179,178,178,104,104,104,104,104,105,104,103,104,0,0,0,0,0,0,0,0,178,178,0,0,0,0,0,0,0,0,0,168,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,180,180,180,180,107,107,107,107,0,0,0,0,0,0,107,107,107,107,107,107,107,180,180,180,106,106,106,106,106,0,0,0,0,108,108,108,108,108,108,108,108,180,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,178,178,104,104,104,104,104,104,104,104,0,0,0,0,0,0,0,0,178,178,178,178,178,178,178,178,178,178,178,178,178,168,0,0,0,0,0,168,0,0,0,0,0,0,168,0,0,0,0,0,168,0,0,0,0,0,0,0,180,0,0,180,180,180,180,180,107,107,107,0,107,107,107,107,107,107,107,180,180,106,106,106,106,0,0,0,0,0,0,0,0,0,108,108,108,108,108,181,180,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,178,178,104,104,104,104,104,104,104,0,0,0,0,0,0,0,0,0,0,0,0,178,178,178,178,178,178,178,178,178,168,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,180,180,180,180,180,107,107,107,107,107,107,107,107,107,106,106,106,106,106,106,106,0,0,0,0,0,108,108,108,181,181,181,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,178,178,104,104,104,104,104,0,0,0,0,0,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,168,168,168,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,107,107,107,107,107,107,107,107,107,106,106,106,0,0,0,0,0,0,0,0,0,0,0,108,108,108,181,181,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,178,104,104,104,104,104,0,0,0,0,0,178,178,178,178,178,178,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,180,180,180,180,107,107,107,107,107,107,107,107,181,181,106,106,0,0,0,0,0,181,181,180,180,181,181,181,181,181,181,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,178,178,104,104,104,104,104,0,0,0,0,0,178,178,178,178,178,178,169,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,183,183,0,182,182,0,0,0,0,0,0,180,107,107,107,107,107,107,107,110,110,181,181,181,181,106,106,0,0,0,0,181,181,181,181,181,181,181,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,178,178,104,178,0,0,0,0,0,0,0,0,0,0,0,178,178,178,169,169,169,169,169,169,169,169,0,0,0,0,0,0,0,183,0,0,0,0,0,0,182,0,0,0,0,0,0,0,107,107,0,110,110,110,110,110,181,181,181,181,181,0,0,0,0,181,181,181,181,181,181,181,181,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,178,178,178,0,178,178,0,0,0,0,0,0,178,169,169,169,0,0,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,110,110,110,110,110,181,181,109,181,181,0,0,0,0,181,181,181,181,181,181,181,181,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,178,178,178,178,178,178,0,0,0,169,169,169,169,169,0,0,169,169,169,169,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,182,0,0,0,0,110,110,0,110,110,109,109,0,0,0,0,0,0,0,0,181,181,181,181,181,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,178,178,178,178,178,0,0,0,0,0,0,0,169,169,169,169,169,169,0,0,0,169,169,169,0,0,0,0,0,0,183,183,183,183,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,110,110,110,110,110,110,110,110,110,110,110,109,109,109,0,0,0,0,0,0,181,181,181,181,181,181,181,181,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,178,178,178,178,178,178,178,0,0,0,0,0,0,169,169,169,169,169,0,0,0,0,0,0,0,0,0,0,183,183,183,183,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,0,0,24,24,24,24,110,110,110,110,110,110,110,110,109,109,109,109,109,0,0,0,0,181,181,181,181,181,181,181,181,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,178,178,178,178,178,178,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,183,183,0,0,0,0,0,0,0,0,0,0,0,112,112,0,0,0,183,183,183,183,184,184,184,183,184,184,0,0,0,0,0,24,24,24,24,24,24,24,24,24,24,0,0,110,0,0,0,109,109,109,0,0,0,0,0,0,0,181,181,181,181,181,181,181,181,181,181,181,181,181,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,170,170,170,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0,112,112,112,112,112,112,112,112,112,0,0,0,0,0,0,112,112,112,112,0,0,0,0,0,0,183,184,184,184,184,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,181,181,181,181,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,170,170,65,65,65,0,0,0,0,0,0,0,168,168,168,168,168,0,0,0,0,0,0,112,112,112,112,112,112,112,112,0,0,0,112,112,112,112,112,0,0,0,0,0,0,184,184,0,0,0,184,184,0,24,24,22,22,22,22,22,163,163,163,163,163,163,163,163,0,0,0,0,0,0,0,0,0,181,181,181,181,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,170,170,65,65,65,0,0,0,0,0,168,168,168,168,0,0,0,0,0,0,0,0,0,112,0,0,112,112,112,112,112,112,112,112,112,0,0,0,0,0,184,0,0,184,184,0,0,24,24,22,22,22,22,22,163,22,163,163,163,0,0,0,0,0,0,0,0,181,181,181,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,170,65,65,65,0,0,0,0,0,0,168,168,168,168,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0,0,0,22,22,22,22,22,22,22,163,163,0,0,0,0,0,0,181,181,181,181,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,169,169,65,65,0,0,0,0,0,0,168,168,0,0,0,0,0,115,115,115,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,181,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,169,65,65,65,65,65,65,65,0,0,0,0,0,0,168,168,168,168,168,0,0,0,0,0,0,115,115,115,115,115,115,115,115,115,0,0,0,0,0,0,0,0,0,0,0,0,184,184,184,184,184,0,0,163,163,163,163,163,163,163,163,163,0,0,0,19,19,19,19,0,0,0,0,19,19,0,0,0,0,0,0,0,0,181,166,181,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,169,169,169,65,65,0,0,0,0,0,0,168,168,168,168,168,0,0,0,0,0,115,115,115,115,115,115,115,115,115,113,0,0,0,0,0,0,0,0,111,111,111,0,0,0,0,184,184,0,0,163,163,163,163,163,0,0,0,19,19,19,19,0,19,19,19,19,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,166,166,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,169,169,169,169,0,0,0,0,0,0,0,0,0,168,168,168,168,0,0,0,0,0,0,0,0,115,115,115,115,115,115,115,115,115,113,113,118,118,118,118,0,111,111,111,0,111,111,0,0,0,0,0,184,0,0,0,184,184,184,0,0,163,116,0,0,0,0,0,0,19,19,19,19,19,19,19,19,0,0,163,0,0,0,0,0,0,42,166,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,169,169,169,169,169,169,0,0,0,0,0,168,168,168,168,168,168,0,0,0,0,0,0,115,115,115,115,115,115,115,115,115,113,113,118,118,118,118,111,111,111,0,111,111,0,0,0,0,0,0,0,0,116,184,116,184,0,116,116,0,0,0,0,19,19,19,0,19,19,19,21,21,21,163,21,21,0,0,0,0,0,0,0,0,0,42,42,42,166,166,0,0,0,0,0,0,0,0,0,0,0,0,169,169,169,169,169,169,0,0,0,0,168,168,168,0,0,0,0,0,0,0,0,115,115,0,0,0,117,118,117,118,117,117,118,118,111,111,111,111,111,111,111,111,0,0,0,0,116,116,0,0,116,116,0,0,0,0,19,19,19,19,19,19,21,21,21,21,21,163,21,163,21,0,0,0,0,0,0,0,42,42,42,42,42,166,0,0,0,0,0,0,0,0,0,0,169,169,169,169,169,169,169,169,169,169,169,0,0,0,0,0,0,0,0,0,0,168,168,168,168,0,0,0,0,0,0,0,0,0,0,0,0,117,117,117,118,118,111,111,111,111,111,111,111,111,0,0,0,0,0,0,116,116,116,116,116,116,0,0,0,0,0,0,19,19,19,19,19,19,21,21,21,21,21,21,21,21,43,43,43,0,0,0,0,0,0,0,0,0,0,0,42,42,42,166,0,0,0,0,0,0,0,0,0,0,171,169,169,169,169,0,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,172,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,111,111,114,114,114,114,114,0,0,0,0,0,0,0,0,116,116,116,116,116,116,0,0,0,0,0,19,19,19,23,25,25,19,19,0,0,21,21,21,21,43,43,43,43,43,43,43,0,0,0,0,0,0,0,0,42,42,42,42,42,42,190,0,0,0,0,0,0,0,0,0,175,169,169,169,169,169,0,0,0,0,0,0,0,0,0,0,0,0,66,66,66,66,66,66,66,66,66,0,0,0,0,0,0,0,0,0,0,183,183,183,183,183,183,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,111,111,111,111,111,111,111,111,111,114,114,111,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,25,20,20,0,0,0,0,21,0,0,21,21,43,43,43,43,43,43,43,43,43,43,0,0,0,0,0,42,42,42,42,42,42,42,190,0,0,0,0,0,0,0,0,175,175,169,169,169,169,169,169,169,169,169,169,0,0,0,0,0,0,0,0,0,66,66,66,66,66,66,66,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,183,183,183,8,8,8,8,0,0,0,0,0,0,0,0,0,0,18,18,17,17,17,18,18,18,18,16,16,16,13,16,13,13,0,0,0,0,0,0,0,111,111,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,116,136,136,0,0,0,0,0,0,0,20,20,20,20,0,0,0,0,0,0,0,0,43,43,43,43,43,43,43,43,0,0,0,0,42,0,0,0,0,145,145,190,190,0,0,0,0,0,0,175,175,175,175,173,169,169,169,169,0,0,0,0,0,0,0,0,0,64,64,66,66,66,66,66,66,66,66,66,66,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,183,183,161,8,8,8,8,8,8,8,8,0,8,8,18,18,18,18,18,18,16,16,16,13,13,13,13,13,0,0,0,111,114,114,0,0,0,119,119,119,0,0,0,0,0,0,0,0,136,0,0,0,136,0,136,0,0,20,20,20,20,20,0,0,0,0,0,0,0,43,43,43,43,43,43,43,0,0,0,0,0,0,0,0,0,0,145,145,190,190,0,0,0,0,0,0,175,175,175,175,175,175,173,173,0,0,0,0,0,0,0,0,169,64,64,64,169,64,66,66,66,66,66,66,66,58,58,58,58,58,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,161,161,8,8,8,8,8,8,8,8,8,8,8,18,18,18,18,16,16,16,13,13,13,13,13,0,0,0,0,0,0,0,119,119,119,0,0,0,0,0,0,0,0,187,0,0,136,136,136,136,136,136,136,0,20,20,20,0,0,0,0,167,0,0,0,43,45,43,43,43,43,43,0,0,0,0,0,0,0,0,0,145,145,145,145,190,190,0,0,0,0,0,175,175,175,175,175,0,0,0,0,0,0,0,0,0,0,0,0,0,169,64,64,66,66,66,66,66,66,66,66,58,58,58,58,58,58,0,0,0,0,169,0,0,0,0,0,0,68,0,0,0,0,154,154,154,154,154,154,154,154,154,161,161,8,8,8,8,8,8,8,8,8,8,14,14,14,14,16,16,16,13,13,13,6,124,124,124,124,124,124,119,119,119,119,122,122,122,122,123,123,123,0,136,136,136,134,136,136,135,0,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,45,45,43,43,43,43,43,43,0,0,0,0,0,0,0,0,0,0,145,145,145,145,145,190,190,0,0,0,0,0,175,175,175,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,64,64,64,64,57,57,57,66,66,66,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,0,0,0,0,0,0,0,0,0,0,68,68,68,68,68,68,0,154,154,159,154,154,154,154,154,161,161,0,8,8,8,8,8,8,8,8,8,14,14,14,16,16,16,16,1,6,6,6,124,124,124,124,130,119,119,122,122,123,123,123,136,136,134,134,134,135,20,20,20,20,20,20,0,0,0,0,0,44,44,44,41,41,41,41,41,166,166,166,41,166,166,0,0,0,0,145,145,145,190,190,190,0,0,0,175,175,175,175,175,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,64,64,64,64,64,57,57,57,57,58,58,58,0,0,0,0,0,58,58,58,58,58,58,0,0,0,67,67,67,0,68,68,68,68,0,159,154,154,154,154,155,161,161,161,8,8,8,8,8,8,8,8,14,14,14,14,16,16,12,1,1,1,6,6,124,124,124,130,130,119,131,131,122,123,123,123,134,134,134,134,134,135,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,41,41,41,41,41,41,41,41,166,0,0,0,0,145,145,190,190,190,175,175,175,175,175,175,175,175,175,175,0,0,0,0,175,175,175,175,0,169,169,175,169,175,175,175,0,0,0,139,139,64,139,64,64,64,64,64,64,64,64,57,57,57,71,57,58,58,58,58,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,67,67,67,68,68,68,68,68,159,159,154,154,154,155,161,161,161,161,8,8,161,8,8,8,8,161,14,14,14,16,16,4,1,1,1,15,15,15,124,130,130,130,130,131,131,131,131,123,123,134,134,135,135,135,135,135,0,0,20,20,20,0,0,0,0,0,0,0,0,0,167,167,167,0,44,44,44,44,44,44,41,0,0,41,0,0,0,0,0,0,0,0,145,145,145,190,190,190,175,175,175,175,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,175,175,175,169,175,175,175,175,175,0,0,0,0,0,0,139,139,139,64,64,64,64,0,0,0,0,0,71,71,71,71,58,58,70,70,0,0,0,0,0,0,67,67,67,67,67,68,68,68,68,159,159,159,159,154,155,155,161,161,161,161,161,161,161,161,161,8,161,161,161,161,161,1,1,1,1,2,2,15,15,15,124,130,130,130,129,129,129,131,123,123,123,133,133,135,135,135,135,135,135,0,0,20,20,164,164,164,0,0,0,167,167,167,0,0,0,44,44,44,44,41,41,41,41,0,0,0,0,0,0,0,145,190,190,190,190,175,175,175,175,175,0,0,0,0,0,0,0,175,175,175,175,175,175,175,175,175,0,0,0,0,0,0,0,139,139,139,139,139,138,64,64,0,0,0,0,0,0,0,56,71,71,70,70,70,70,0,0,0,62,62,62,0,0,0,67,67,67,67,68,68,68,68,159,159,160,160,160,154,154,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,1,1,1,2,2,3,3,3,15,124,130,130,129,129,129,129,123,123,123,123,133,133,133,135,133,0,0,0,0,0,0,0,164,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,44,44,41,41,41,41,41,0,0,0,0,190,190,190,190,175,175,175,175,0,0,0,0,0,0,175,175,175,0,0,0,0,0,0,0,0,0,0,0,0,139,139,139,139,139,139,139,138,138,138,138,64,64,0,0,0,59,59,59,56,56,70,70,70,70,70,63,63,63,63,62,62,62,69,69,68,68,68,160,160,160,160,160,160,154,154,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,1,2,2,2,3,3,3,15,124,130,129,129,129,129,132,132,123,123,133,133,133,133,133,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,41,41,41,41,41,41,0,0,0,0,0,0,190,190,190,175,175,175,175,0,0,0,0,0,0,0,0,0,0,0,0,0,188,188,188,188,137,137,137,139,138,138,138,138,0,0,0,0,59,59,59,59,59,70,70,70,70,70,70,70,63,63,63,63,63,62,69,69,68,68,160,160,160,160,160,160,160,160,160,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,2,2,2,2,11,3,11,11,11,129,129,129,129,132,132,132,128,128,128,128,133,133,0,0,0,0,0,0,0,0,0,0,146,146,146,146,146,146,146,146,146,146,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,190,190,190,175,175,175,0,0,0,0,0,0,0,0,0,0,188,188,188,188,137,137,137,138,138,137,0,0,0,0,0,0,0,59,60,59,59,70,70,70,70,70,70,63,63,63,63,63,63,69,69,68,68,160,160,160,160,160,160,160,160,160,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,9,2,2,2,11,11,11,11,11,11,129,129,132,132,132,132,128,128,128,128,128,133,128,0,0,0,0,0,146,146,146,146,146,0,0,0,0,0,0,0,0,0,0,0,190,190,190,175,175,175,0,0,0,0,0,0,188,188,188,137,137,137,137,137,137,137,0,0,0,60,60,60,60,70,60,70,0,0,0,0,31,31,31,31,63,63,63,63,69,68,68,160,160,160,160,160,160,160,156,156,161,0,0,0,161,161,161,161,161,161,161,161,161,161,10,161,161,161,161,9,9,9,9,9,11,11,11,11,11,11,132,132,132,132,132,128,128,128,128,128,125,0,0,0,0,0,146,146,146,147,147,147,147,0,0,0,0,0,0,0,0,0,0,0,0,175,175,0,0,0,0,0,188,188,188,137,137,137,137,137,137,137,0,0,0,0,60,60,61,61,0,0,70,0,0,31,31,31,35,35,35,63,51,51,53,53,53,160,160,156,156,160,156,156,156,0,0,0,0,0,0,0,0,0,0,0,0,161,161,10,161,10,10,10,161,161,161,9,9,9,9,9,9,9,11,11,11,11,11,132,132,132,128,128,128,128,128,125,73,0,0,0,0,0,140,140,147,147,147,147,0,0,0,0,0,144,144,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,137,137,137,137,137,137,137,137,137,137,137,0,0,0,0,0,0,0,0,0,0,0,30,30,31,31,31,35,35,35,35,35,63,51,51,53,53,53,53,156,156,156,156,156,156,156,0,0,0,0,0,0,10,10,10,10,10,10,10,161,161,161,161,9,9,9,9,9,9,9,9,11,11,11,132,132,120,120,120,125,125,125,73,0,0,0,0,0,0,140,140,140,147,147,147,147,0,144,144,144,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,137,137,0,0,0,0,137,137,137,137,0,0,0,0,0,0,0,29,29,29,29,29,29,29,29,30,31,35,35,35,35,35,35,51,51,51,51,53,53,53,53,53,156,156,156,156,158,0,0,0,0,0,0,10,10,10,10,10,161,161,161,161,161,161,9,9,9,9,9,9,9,11,11,120,120,120,120,120,125,125,75,73,73,73,0,0,0,0,0,0,0,0,0,140,140,140,147,147,147,144,144,144,141,141,141,141,0,0,0,0,0,0,0,88,88,88,88,0,0,0,0,0,0,0,0,0,0,0,0,0,137,137,137,137,137,137,0,0,0,0,0,0,0,29,33,29,29,29,34,34,35,34,34,35,54,51,51,51,51,53,53,53,53,53,152,158,158,158,158,0,0,0,0,7,10,10,7,7,7,161,161,161,161,161,9,9,9,9,9,9,11,11,11,120,120,120,120,120,120,75,75,75,73,73,73,73,73,0,0,0,0,0,0,0,0,140,148,140,140,147,144,144,144,141,141,141,141,0,0,0,0,0,0,0,0,88,88,88,88,88,0,0,0,0,0,0,0,0,0,0,0,0,137,137,137,0,0,0,0,0,26,26,0,33,33,33,33,28,34,34,34,34,34,54,54,51,51,51,51,53,53,53,53,53,158,158,158,151,151,0,0,0,0,7,7,7,7,7,161,161,161,161,161,9,9,9,9,9,11,121,11,121,120,120,120,120,120,75,75,75,73,73,73,73,82,82,0,0,0,0,0,0,0,0,0,0,148,148,148,148,144,144,144,144,141,141,141,141,142,0,0,0,0,88,88,88,88,88,0,0,0,0,0,0,0,0,175,0,0,0,177,0,0,0,0,0,0,0,0,0,0,26,26,26,26,26,33,33,28,28,28,34,34,34,34,54,54,51,51,51,51,53,53,53,53,53,53,53,151,151,151,0,0,0,0,0,0,7,7,7,161,161,161,161,161,9,9,9,9,9,11,121,121,121,121,120,120,120,126,75,75,75,73,73,73,82,82,82,72,72,72,72,0,0,0,0,148,148,148,148,148,144,144,144,141,141,141,141,142,142,142,0,0,0,0,0,0,0,175,0,0,88,88,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,36,27,27,27,28,28,28,28,34,34,50,50,50,47,51,47,47,47,53,53,53,53,53,53,151,151,151,0,0,0,7,7,7,7,161,5,161,161,161,161,161,161,161,161,161,161,161,121,121,121,121,121,120,120,78,78,78,78,78,77,77,82,82,72,72,72,0,0,0,0,148,148,148,148,144,144,144,141,141,141,143,142,142,142,142,142,0,0,0,0,0,175,175,175,175,0,0,88,88,94,88,88,0,0,0,0,0,0,0,90,90,90,0,83,83,83,86,86,86,86,36,36,27,27,27,28,28,28,28,55,50,50,50,50,47,47,47,47,47,53,53,53,53,153,151,151,151,151,0,0,0,7,0,0,5,5,5,161,161,161,161,161,161,161,161,161,186,121,121,121,121,121,127,78,78,78,78,78,78,77,77,77,82,76,76,76,76,0,0,0,0,0,97,97,97,97,97,144,144,144,141,141,143,143,142,142,142,142,142,0,0,0,0,0,175,175,175,0,0,94,94,94,94,94,94,0,0,0,0,0,0,0,0,89,89,89,89,83,83,83,83,83,86,86,86,36,36,27,32,32,32,32,49,49,50,50,50,50,47,47,47,47,46,46,53,53,53,153,153,151,151,151,0,0,0,0,0,0,5,161,161,161,161,161,161,186,186,186,186,121,121,121,121,121,127,78,78,78,78,78,77,77,77,77,76,76,76,76,76,0,0,96,97,97,144,144,144,141,141,143,143,143,142,142,142,142,142,142,142,142,0,0,0,0,0,0,175,0,0,0,0,94,94,94,94,94,94,0,0,0,0,0,0,84,92,84,92,84,92,83,83,83,83,86,86,87,36,36,36,32,32,32,32,38,38,38,48,48,48,47,47,46,46,46,46,46,46,46,53,53,53,153,153,150,150,150,151,0,0,0,0,5,5,5,161,161,161,161,161,186,186,186,186,121,121,121,121,121,121,78,78,78,78,77,77,77,77,77,101,101,76,76,76,76,76,101,97,97,97,99,144,144,141,143,143,143,143,143,142,142,142,142,142,0,142,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,0,0,0,0,0,85,85,85,85,91,91,91,84,84,92,93,93,93,93,86,86,87,87,87,32,32,32,32,32,38,38,38,38,48,48,48,48,46,46,46,46,0,0,153,153,157,150,150,150,150,0,0,0,5,5,5,5,161,161,161,161,186,186,186,186,186,121,121,121,121,81,81,81,81,77,77,77,77,77,98,98,101,101,101,101,101,101,101,99,99,99,143,143,143,143,0,0,0,0,0,0,0,0,0,0,0,0,142,142,142,0,0,0,0,0,0,0,0,0,0,0,0,85,95,85,85,91,91,91,84,84,93,93,93,93,93,86,87,87,87,32,32,32,32,38,38,38,38,38,40,48,48,48,52,52,46,0,0,0,0,0,0,150,150,150,150,150,150,150,150,0,5,5,5,5,5,5,5,161,161,186,186,186,186,186,121,121,81,81,81,81,81,81,79,74,74,74,74,98,98,101,101,101,101,101,101,99,99,99,143,143,143,143,143,143,143,189,189,0,0,0,0,0,142,142,142,142,142,142,142,0,0,0,0,0,0,95,95,95,95,95,95,85,91,91,91,91,93,93,93,93,93,93,93,87,87,87,87,32,32,32,39,39,39,39,39,40,40,48,48,48,0,0,0,0,0,0,0,0,0,150,150,150,150,150,150,150,0,0,0,0,0,0,5,5,5,5,5,161,186,186,186,186,186,174,81,81,81,81,81,81,79,79,74,74,74,74,98,98,98,101,101,101,101,99,99,100,100,100,143,143,143,189,189,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,95,95,95,95,85,85,85,91,91,176,176,93,93,93,93,93,93,87,87,87,32,32,32,39,32,39,39,39,39,39,39,39,40,40,40,40,40,40,0,0,0,0,0,0,149,149,150,149,150,0,0,0,5,5,5,0,5,5,161,161,174,174,174,174,174,81,81,81,81,81,80,80,79,74,74,74,74,74,98,98,98,98,101,101,101,100,100,100,100,100,189,189,189,143,143,189,189,189,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,85,85,85,91,95,176,176,176,93,93,93,93,93,93,93,87,87,87,32,32,32,0,0,0,0,0,0,0,0,40,37,37,40,40,40,0,0,0,0,0,0,0,0,0,0,149,149,149,149,149,149,0,0,5,5,161,161,161,161,161,174,174,174,174,174,174,174,81,81,81,80,79,79,74,74,74,74,74,74,98,98,98,98,101,101,101,100,100,100,189,189,100,189,0,0,189,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,85,85,95,95,95,95,95,95,95,0,93,93,93,93,93,93,93,93,87,87,87,87,0,0,0,0,0,0,0,0,0,37,37,165,40,40,40,0,0,0,0,0,0,0,149,149,149,149,149,149,149,0,0,5,162,161,161,161,161,174,174,174,174,174,174,174,174,81,81,81,80,79,79,79,74,74,74,74,74,74,98,98,98,101,101,101,100,100,100,0,0,0,0,0,0,0,0,0,0,0,0,175,175,175,0,0,95,95,95,95,95,95,95,0,95,93,0,0,93,93,93,93,93,87,87,87,0,0,0,0,0,165,40,40,40,40,0,0,0,149,149,149,149,149,149,149
+
+[{"name":"No religion","i":0,"origins":null},{"name":"Valadi Ancestors","type":"Folk","form":"Ancestor Worship","culture":1,"center":2319,"deity":"Bacsete, The Yellow Goat","expansion":"culture","expansionism":0,"color":"#dababf","i":1,"code":"VA","origins":[0]},{"name":"Tinshui Beliefs","type":"Folk","form":"Nature Worship","culture":2,"center":3452,"deity":"Tsimshing, The Teal Divine One","expansion":"culture","expansionism":0,"color":"#6e40aa","i":2,"code":"TB","origins":[0]},{"name":"Trover Faith","type":"Folk","form":"Polytheism","culture":3,"center":5466,"deity":"Helfostad, The Burning","expansion":"culture","expansionism":0,"color":"#fccde5","i":3,"code":"TF","origins":[0]},{"name":"Copovia Beliefs","type":"Folk","form":"Animism","culture":4,"center":6073,"deity":null,"expansion":"culture","expansionism":0,"color":"#ccebc5","i":4,"code":"CB","origins":[0]},{"name":"Ecacualteta Gods","type":"Folk","form":"Polytheism","culture":5,"center":2354,"deity":"Copotitlatlan, The Indigo Forefather","expansion":"culture","expansionism":0,"color":"#fb8072","i":5,"code":"EG","origins":[0]},{"name":"Chicoatliza Idols","type":"Folk","form":"Totemism","culture":6,"center":7136,"deity":"Cacacan, The Yellow Crane","expansion":"culture","expansionism":0,"color":"#52f667","i":6,"code":"CI","origins":[0]},{"name":"Najos Ancestors","type":"Folk","form":"Ancestor Worship","culture":7,"center":6984,"deity":"Ujvator, The New Worm of Pain","expansion":"culture","expansionism":0,"color":"#bc80bd","i":7,"code":"NA","origins":[0]},{"name":"Kupold Forefathers","type":"Folk","form":"Ancestor Worship","culture":8,"center":6036,"deity":"Nordbergen, The Sacrosanct Heron","expansion":"culture","expansionism":0,"color":"#8dd3c7","i":8,"code":"KF","origins":[0]},{"name":"Dayandor Ancestors","type":"Folk","form":"Ancestor Worship","culture":9,"center":4046,"deity":"On Uul, The Superior Scorpion of Light","expansion":"culture","expansionism":0,"color":"#ffed6f","i":9,"code":"DA","origins":[0]},{"name":"Khuzd Beliefs","type":"Folk","form":"Shamanism","culture":10,"center":3795,"deity":"Broghird, The Maroon Gorgon","expansion":"culture","expansionism":0,"color":"#80b1d3","i":10,"code":"KB","origins":[0]},{"name":"Yuen Spirits","type":"Folk","form":"Animism","culture":11,"center":3589,"deity":null,"expansion":"culture","expansionism":0,"color":"#fdb462","i":11,"code":"YS","origins":[0]},{"name":"Erdurvi Pantheon","type":"Folk","form":"Polytheism","culture":12,"center":128,"deity":"Krudarna, The Elder of Winter","expansion":"culture","expansionism":0,"color":"#fe4b83","i":12,"code":"EP","origins":[0]},{"name":"Borum Beliefs","type":"Folk","form":"Animism","culture":13,"center":767,"deity":null,"expansion":"culture","expansionism":0,"color":"#23abd8","i":13,"code":"BB","origins":[0]},{"name":"Rhyroti Faith","type":"Folk","form":"Polytheism","culture":14,"center":6954,"deity":"Zanos, The Dead Ancient of Frost","expansion":"culture","expansionism":0,"color":"#c6b9c1","i":14,"code":"RF","origins":[0]},{"name":"Didauron Beliefs","type":"Folk","form":"Totemism","culture":15,"center":107,"deity":"Gourmenai, The Bright Crocodile","expansion":"culture","expansionism":0,"color":"#b3de69","i":15,"code":"DB","origins":[0]},{"name":"Aich Beliefs","type":"Folk","form":"Animism","culture":16,"center":4769,"deity":null,"expansion":"culture","expansionism":0,"color":"#eb8de7","i":16,"code":"AB","origins":[0]},{"name":"Kalom Druidism","type":"Folk","form":"Shamanism","culture":17,"center":5529,"deity":"Lafa, The Celestial","expansion":"culture","expansionism":0,"color":"#e2b72f","i":17,"code":"KD","origins":[0]},{"name":"Longong Deities","type":"Organized","form":"Polytheism","culture":2,"center":4589,"deity":"Fatsuen, The Noble Hyena","expansion":"state","expansionism":5.7,"color":"#917dad","i":18,"code":"LD","origins":[10,2]},{"name":"Tetzintz Deities","type":"Organized","form":"Polytheism","culture":5,"center":3139,"deity":"Azcatemalina, The Orange Heaven","expansion":"state","expansionism":1.5,"color":"#f0b681","i":19,"code":"TD","origins":[5]},{"name":"Cortelism","type":"Organized","form":"Monotheism","culture":15,"center":6009,"deity":"Corteleu, The Two","expansion":"global","expansionism":2.3,"color":"#adff7d","i":20,"code":"Co","origins":[11]},{"name":"Dachstalrism","type":"Organized","form":"Pantheism","culture":8,"center":7229,"deity":"Dachstalro, The Lavender Pegasus","expansion":"global","expansionism":0,"color":"#c4d0cd","i":21,"code":"Da","origins":[20,8]},{"name":"Ototlanism","type":"Organized","form":"Monotheism","culture":5,"center":4474,"deity":"Tlananitlapan, The Creator","expansion":"global","expansionism":4,"color":"#ff9476","i":22,"code":"Ot","origins":[5]},{"name":"Adflelodu Faith","type":"Organized","form":"Monotheism","culture":4,"center":6198,"deity":"Retiabis, The Light Giver","expansion":"global","expansionism":4.2,"color":"#f5fdb7","i":23,"code":"AF","origins":[19,22]},{"name":"Lirasian Occultism","type":"Cult","form":"Dark Cult","culture":15,"center":167,"deity":"Pyrtyn, The Brown Scorpion","expansion":"global","expansionism":0.5,"color":"#b9df57","i":24,"code":"LO","origins":[15]},{"name":"Voviverism","type":"Heresy","form":"Heresy","culture":12,"center":1231,"deity":"Indurdur, The Oracle of Day","expansion":"global","expansionism":1.5,"color":"#bf73ad","i":25,"code":"Vo","origins":[12]},{"name":"Laupsvan Sect","type":"Heresy","form":"Heresy","culture":12,"center":3220,"deity":"Selhuskar, The Chief","expansion":"global","expansionism":1.1,"color":"#ff7a6e","i":26,"code":"LS","origins":[12]}]
+[0,{"i":1,"state":1,"center":4589,"burg":1,"name":"Longong","formName":"Parish","fullName":"Longong Parish","color":"#62d5c2","coa":{"t1":"vert","charges":[{"charge":"salmon","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"heater"},"pole":[229,567]},{"i":2,"state":1,"center":4751,"burg":538,"name":"Namshan","formName":"Parish","fullName":"Namshan Parish","color":"#81e2a7","coa":{"t1":"azure","ordinaries":[{"ordinary":"cross","t":"argent","line":"straight"}],"charges":[{"charge":"mullet8","t":"azure","p":"behdf","size":0.3}],"shield":"heater"},"pole":[208,628]},{"i":3,"state":1,"center":5062,"burg":150,"name":"Ngwamyuenia","formName":"Parish","fullName":"Ngwamyuenia Parish","color":"#68ccc5","coa":{"t1":"argent","charges":[{"charge":"lionHeadCaboshed","t":"sable","p":"e","t2":"purpure","size":1.5}],"shield":"heater"},"pole":[258,611]},{"i":4,"state":1,"center":4588,"burg":96,"name":"Ching","formName":"Parish","fullName":"Ching Parish","color":"#8ebbb5","coa":{"t1":"or","ordinaries":[{"ordinary":"terrace","t":"purpure","line":"wavy"}],"charges":[{"charge":"scythe","t":"purpure","p":"e","t2":"purpure","size":1.5}],"shield":"heater"},"pole":[201,571]},{"i":5,"state":1,"center":7023,"burg":586,"name":"Chitlanco","formName":"Parish","fullName":"Chitlanco Parish","color":"#65cec5","coa":{"t1":"azure","charges":[{"charge":"crossPattee","t":"argent","p":"e","size":1.5}],"shield":"round"},"pole":[246,801]},{"i":6,"state":1,"center":4278,"burg":424,"name":"Hofsostad","formName":"Parish","fullName":"Hofsostad Parish","color":"#7ce3a6","coa":{"t1":"vairAncien-azure-argent","charges":[{"charge":"crossLatin","t":"or","p":"e","size":1.5}],"shield":"fantasy3"},"pole":[259,558]},{"i":7,"state":1,"center":6041,"burg":648,"name":"Hoichia","formName":"Parish","fullName":"Hoichia Parish","color":"#63e1b3","coa":{"t1":"argent","charges":[{"charge":"lionSejant","t":"vert","p":"e","t2":"vert","t3":"vert","size":1.5}],"shield":"heater"},"pole":[129,708]},{"i":8,"state":1,"center":3947,"burg":169,"name":"Chia","formName":"Parish","fullName":"Chia Parish","color":"#8abbb8","coa":{"t1":"vert","charges":[{"charge":"lymphad","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"heater"},"pole":[84,547]},{"i":9,"state":1,"center":5697,"burg":300,"name":"Fanhingia","formName":"Parish","fullName":"Fanhingia Parish","color":"#8dbbb7","coa":{"t1":"gules","charges":[{"charge":"cavalier","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"heater"},"pole":[241,685]},{"i":10,"state":1,"center":5804,"burg":232,"name":"Lamtin","formName":"Parish","fullName":"Lamtin Parish","color":"#8bd89e","coa":{"t1":"fretty-gules-argent-small","ordinaries":[{"ordinary":"bordure","t":"or","line":"straight"}],"charges":[{"charge":"armillarySphere","t":"gules","p":"ABCDEFGHIJKL","size":0.18}],"shield":"heater"},"pole":[119,676]},{"i":11,"state":1,"center":5462,"burg":98,"name":"Kamteilia","formName":"Parish","fullName":"Kamteilia Parish","color":"#61d8bf","coa":{"t1":"or","division":{"division":"perPale","t":"azure","line":"straight"},"shield":"heater"},"pole":[291,653]},{"i":12,"state":1,"center":4427,"burg":140,"name":"Ching","formName":"Parish","fullName":"Ching Parish","color":"#6fc1c1","coa":{"t1":"vert","division":{"division":"perCross","t":"argent","line":"straight"},"charges":[{"charge":"rhinoceros","t":"or","p":"jl","t2":"or","divided":"counter","size":0.7}],"shield":"heater"},"pole":[203,559]},{"i":13,"state":1,"center":4109,"burg":347,"name":"Flalur","formName":"Parish","fullName":"Flalur Parish","color":"#79bbba","coa":{"t1":"azure","charges":[{"charge":"castle2","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"fantasy3"},"pole":[248,527]},{"i":14,"state":1,"center":4271,"burg":221,"name":"Siumun","formName":"Parish","fullName":"Siumun Parish","color":"#8cd79e","coa":{"t1":"argent","charges":[{"charge":"raven","t":"sable","p":"jln","t2":"sable","size":0.7}],"shield":"heater"},"pole":[160,561]},{"i":15,"state":1,"center":4754,"burg":52,"name":"Eyrivik","formName":"Parish","fullName":"Eyrivik Parish","color":"#61dabd","coa":{"t1":"gules","charges":[{"charge":"escallop","t":"argent","p":"e","size":1.5}],"shield":"fantasy3"},"pole":[270,590]},{"i":16,"state":1,"center":4426,"burg":21,"name":"Wancheongia","formName":"Parish","fullName":"Wancheongia Parish","color":"#89bbb9","coa":{"t1":"bendy-or-azure","charges":[{"charge":"hatchet","t":"vert","p":"e","t2":"vert","size":1.5}],"shield":"heater"},"pole":[206,545]},{"i":17,"state":2,"center":3471,"burg":2,"name":"Krar","formName":"County","fullName":"Krar County","color":"#ffb36b","coa":{"t1":"argent","charges":[{"charge":"lymphad","t":"purpure","p":"e","t2":"purpure","t3":"purpure","size":1.5}],"shield":"heater"},"pole":[164,503]},{"i":18,"state":2,"center":3952,"burg":108,"name":"Vun","formName":"County","fullName":"Vun County","color":"#ff8b7d","coa":{"t1":"vert","charges":[{"charge":"cock","t":"or","p":"e","t2":"or","t3":"argent","size":1.5}],"shield":"heater"},"pole":[191,518]},{"i":19,"state":3,"center":3139,"burg":3,"name":"Tolololo","formName":"Parish","fullName":"Tolololo Parish","color":"#9bc5c8","coa":{"t1":"gules","charges":[{"charge":"escallop","t":"argent","p":"kn","size":0.7}],"shield":"wedged"},"pole":[517,447]},{"i":20,"state":3,"center":3835,"burg":291,"name":"Calco","formName":"Parish","fullName":"Calco Parish","color":"#ad9cda","coa":{"t1":"argent","charges":[{"charge":"crossTau","t":"gules","p":"e","size":1.5}],"shield":"wedged"},"pole":[515,543]},{"i":21,"state":3,"center":3250,"burg":97,"name":"Xochiconant","formName":"Parish","fullName":"Xochiconant Parish","color":"#b7a7c6","coa":{"t1":"vert","ordinaries":[{"ordinary":"pale","t":"or","line":"enclavy"}],"charges":[{"charge":"plaice","t":"purpure","p":"beh","t2":"purpure","size":0.5}],"shield":"wedged"},"pole":[567,468]},{"i":22,"state":3,"center":2539,"burg":292,"name":"Tlatitlanco","formName":"Parish","fullName":"Tlatitlanco Parish","color":"#94a0e1","coa":{"t1":"gules","ordinaries":[{"ordinary":"pilesInPoint","t":"argent"}],"charges":[{"charge":"crossMaltese","t":"or","p":"e","size":1.5}],"shield":"wedged"},"pole":[497,376]},{"i":23,"state":3,"center":3373,"burg":624,"name":"Alahuepeco","formName":"Parish","fullName":"Alahuepeco Parish","color":"#b7a5c8","coa":{"t1":"sable","charges":[{"charge":"trowel","t":"or","p":"e","t2":"or","size":1.5}],"shield":"wedged"},"pole":[505,477]},{"i":24,"state":3,"center":2443,"burg":208,"name":"Auria","formName":"Parish","fullName":"Auria Parish","color":"#9f9cdc","coa":{"t1":"argent","charges":[{"charge":"crossSantiago","t":"vert","p":"def","size":0.5}],"shield":"oldFrench"},"pole":[436,335]},{"i":25,"state":3,"center":3374,"burg":69,"name":"Yepechi","formName":"Parish","fullName":"Yepechi Parish","color":"#b0b7bf","coa":{"t1":"argent","ordinaries":[{"ordinary":"chief","t":"gules","line":"indented"}],"charges":[{"charge":"crossHummetty","t":"argent","p":"abc","size":0.5}],"shield":"wedged"},"pole":[512,478]},{"i":26,"state":4,"center":6009,"burg":4,"name":"Boreos","formName":"County","fullName":"Boreos County","color":"#ec89d5","coa":{"t1":"purpure","ordinaries":[{"ordinary":"orle","t":"argent"}],"charges":[{"charge":"mullet","t":"argent","p":"e","size":1.1}],"shield":"gonfalon"},"pole":[1371,709]},{"i":27,"state":4,"center":6256,"burg":276,"name":"Sizitaga","formName":"Margrave","fullName":"Sizitaga Margrave","color":"#ffa5b9","coa":{"t1":"argent","ordinaries":[{"ordinary":"bendlet","t":"purpure","line":"rayonne"}],"charges":[{"charge":"anchor","t":"argent","p":"joe","size":0.3}],"shield":"gonfalon"},"pole":[1389,730]},{"i":28,"state":4,"center":6263,"burg":454,"name":"Esosia","formName":"County","fullName":"Esosia County","color":"#e48bd8","coa":{"t1":"purpure","ordinaries":[{"ordinary":"point","t":"argent"}],"charges":[{"charge":"estoile","t":"argent","p":"e","size":1.5}],"shield":"gonfalon"},"pole":[1429,720]},{"i":29,"state":4,"center":5893,"burg":173,"name":"Ropebaidori","formName":"Earldom","fullName":"Ropebaidori Earldom","color":"#d8b0cc","coa":{"t1":"or","charges":[{"charge":"cancer","t":"gules","p":"e","size":1.5}],"shield":"gonfalon"},"pole":[1403,681]},{"i":30,"state":4,"center":5653,"burg":483,"name":"Histhosia","formName":"County","fullName":"Histhosia County","color":"#d89de0","coa":{"t1":"argent","charges":[{"charge":"lute","t":"gules","p":"e","t2":"sable","size":1.5}],"shield":"gonfalon"},"pole":[1424,674]},{"i":31,"state":4,"center":5654,"burg":437,"name":"Penaile","formName":"County","fullName":"Penaile County","color":"#e2b2c4","coa":{"t1":"or","ordinaries":[{"ordinary":"pale","t":"vert","line":"straight"}],"charges":[{"charge":"sickle","t":"or","p":"beh","t2":"or","size":0.5}],"shield":"gonfalon"},"pole":[1465,645]},{"i":32,"state":4,"center":6629,"burg":35,"name":"Wehrbach","formName":"Earldom","fullName":"Wehrbach Earldom","color":"#d3a6da","coa":{"t1":"purpure","division":{"division":"perBend","t":"or","line":"straight"},"charges":[{"charge":"dove","t":"argent","p":"l","t2":"argent","size":0.7},{"charge":"helmetGreat","t":"sable","p":"m","size":0.7}],"shield":"heater"},"pole":[1417,768]},{"i":33,"state":4,"center":6011,"burg":120,"name":"Talion","formName":"Margrave","fullName":"Talion Margrave","color":"#d5aed0","coa":{"t1":"argent","charges":[{"charge":"escallop","t":"azure","p":"e","size":1.5}],"shield":"gonfalon"},"pole":[1399,703]},{"i":34,"state":4,"center":6019,"burg":449,"name":"Myrneramia","formName":"Earldom","fullName":"Myrneramia Earldom","color":"#e58bd7","coa":{"t1":"or","ordinaries":[{"ordinary":"saltire","t":"purpure","line":"straight"}],"charges":[{"charge":"crescent","t":"or","p":"e","size":0.7}],"shield":"gonfalon"},"pole":[1465,702]},{"i":35,"state":4,"center":5898,"burg":747,"name":"Dileron","formName":"County","fullName":"Dileron County","color":"#d8b0cc","coa":{"t1":"argent","charges":[{"charge":"fusil","t":"azure","p":"e","size":1.5}],"shield":"gonfalon"},"pole":[1488,668]},{"i":36,"state":4,"center":6377,"burg":416,"name":"Akra","formName":"County","fullName":"Akra County","color":"#ecb1c1","coa":{"t1":"purpure","ordinaries":[{"ordinary":"saltire","t":"argent","line":"straight"}],"charges":[{"charge":"crossPatriarchal","t":"purpure","p":"e","size":0.7}],"shield":"gonfalon"},"pole":[1362,736]},{"i":37,"state":5,"center":7229,"burg":5,"name":"Bolsheimia","formName":"Earldom","fullName":"Bolsheimia Earldom","color":"#abd074","coa":{"t1":"argent","division":{"division":"perCross","t":"azure","line":"wavy"},"charges":[{"charge":"fleurDeLis","t":"sable","p":"jl","divided":"counter","size":0.7}],"shield":"heater"},"pole":[1502,830]},{"i":38,"state":5,"center":6630,"burg":59,"name":"Ungen","formName":"Earldom","fullName":"Ungen Earldom","color":"#9bf26f","coa":{"t1":"ermine-argent-sable","division":{"division":"perCross","t":"azure","line":"straight"},"ordinaries":[{"ordinary":"fess","t":"gules","line":"straight"}],"shield":"heater"},"pole":[1462,773]},{"i":39,"state":5,"center":7109,"burg":85,"name":"Wehrtenho","formName":"Earldom","fullName":"Wehrtenho Earldom","color":"#b0ce72","coa":{"t1":"argent","ordinaries":[{"ordinary":"pallReversed","t":"sable"}],"charges":[{"charge":"compassRose","t":"argent","p":"bemo","size":0.5}],"shield":"heater"},"pole":[1448,799]},{"i":40,"state":5,"center":7117,"burg":296,"name":"Biegen","formName":"Earldom","fullName":"Biegen Earldom","color":"#b4f65f","coa":{"t1":"sable","ordinaries":[{"ordinary":"fess","t":"argent","line":"rayonne"}],"charges":[{"charge":"drakkar","t":"or","p":"e","t2":"or","t3":"or","size":1.5}],"shield":"heater"},"pole":[1522,819]},{"i":41,"state":6,"center":4474,"burg":6,"name":"Coatlacan","formName":"Council","fullName":"Coatlacan Council","color":"#f8d557","coa":{"t1":"vert","charges":[{"charge":"mascle","t":"argent","p":"e","size":1.5}],"shield":"wedged"},"pole":[671,560]},{"i":42,"state":6,"center":3554,"burg":325,"name":"Tocomatezonte","formName":"Council","fullName":"Tocomatezonte Council","color":"#fad153","coa":{"t1":"sable","division":{"division":"perBend","t":"or","line":"straight"},"charges":[{"charge":"arrowsSheaf","t":"argent","p":"l","t2":"argent","t3":"argent","size":0.7},{"charge":"lionRampant","t":"purpure","p":"m","size":0.7}],"shield":"wedged"},"pole":[770,464]},{"i":43,"state":6,"center":4003,"burg":265,"name":"Anitzizamat","formName":"Council","fullName":"Anitzizamat Council","color":"#ffd246","coa":{"t1":"azure","division":{"division":"perPale","t":"argent","line":"potenty"},"charges":[{"charge":"triangle","t":"or","p":"e","size":1.5}],"shield":"wedged"},"pole":[617,496]},{"i":44,"state":6,"center":4471,"burg":214,"name":"Tlapipanco","formName":"Council","fullName":"Tlapipanco Council","color":"#ffcf4e","coa":{"t1":"azure","ordinaries":[{"ordinary":"pileInBendSinister","t":"argent"}],"charges":[{"charge":"castle2","t":"argent","p":"ai","t2":"argent","t3":"argent","size":0.7}],"shield":"wedged"},"pole":[622,574]},{"i":45,"state":6,"center":4156,"burg":614,"name":"Tonantlapanco","formName":"Council","fullName":"Tonantlapanco Council","color":"#ffd542","coa":{"t1":"purpure","ordinaries":[{"ordinary":"cross","t":"argent","line":"straight"}],"charges":[{"charge":"gear","t":"or","p":"behdf","size":0.4}],"shield":"wedged"},"pole":[605,531]},{"i":46,"state":7,"center":6767,"burg":7,"name":"Haitersia","formName":"Province","fullName":"Haitersia Province","color":"#a1b9bf","coa":{"t1":"azure","ordinaries":[{"ordinary":"bend","t":"argent","line":"embattled"}],"charges":[{"charge":"drakkar","t":"gules","p":"joe","t2":"gules","t3":"or","size":0.5}],"shield":"heater"},"pole":[1565,762]},{"i":47,"state":7,"center":6392,"burg":476,"name":"Neuhesen","formName":"Province","fullName":"Neuhesen Province","color":"#73dbc4","coa":{"t1":"or","division":{"division":"perPale","t":"purpure","line":"straight"},"charges":[{"charge":"pique","t":"sable","p":"pq","divided":"counter","size":0.7}],"shield":"heater"},"pole":[1542,736]},{"i":48,"state":7,"center":6880,"burg":90,"name":"Enwaldia","formName":"Province","fullName":"Enwaldia Province","color":"#88ddb9","coa":{"t1":"azure","charges":[{"charge":"roundel","t":"or","p":"e","size":1.5}],"shield":"heater"},"pole":[1516,775]},{"i":49,"state":7,"center":6510,"burg":155,"name":"Rheinhardt","formName":"Province","fullName":"Rheinhardt Province","color":"#7fddbb","coa":{"t1":"or","charges":[{"charge":"cavalier","t":"purpure","p":"e","t2":"purpure","t3":"sable","size":1.5}],"shield":"heater"},"pole":[1440,738]},{"i":50,"state":7,"center":6269,"burg":311,"name":"Ribethria","formName":"Province","fullName":"Ribethria Province","color":"#9cb4c8","coa":{"t1":"purpure","charges":[{"charge":"helmetCorinthian","t":"or","p":"e","t2":"or","t3":"argent","size":1.5}],"shield":"gonfalon"},"pole":[1493,735]},{"i":51,"state":7,"center":6271,"burg":517,"name":"Dunberg","formName":"Province","fullName":"Dunberg Province","color":"#a1b9c1","coa":{"t1":"counterVair-vert-argent","division":{"division":"perBend","t":"argent","line":"straight"},"shield":"heater"},"pole":[1540,685]},{"i":52,"state":7,"center":6882,"burg":576,"name":"Breitland","formName":"Province","fullName":"Breitland Province","color":"#96d6b2","coa":{"t1":"or","ordinaries":[{"ordinary":"pale","t":"gules","line":"straight"}],"charges":[{"charge":"annulet","t":"azure","p":"y","size":0.5}],"shield":"heater"},"pole":[1536,774]},{"i":53,"state":7,"center":6277,"burg":141,"name":"Gourtyn","formName":"Prefecture","fullName":"Gourtyn Prefecture","color":"#6fcfd3","coa":{"t1":"argent","division":{"division":"gyronny","t":"purpure"},"shield":"gonfalon"},"pole":[1597,703]},{"i":54,"state":7,"center":6144,"burg":137,"name":"Koli","formName":"Prefecture","fullName":"Koli Prefecture","color":"#6fd0d3","coa":{"t1":"argent","charges":[{"charge":"earOfWheat","t":"gules","p":"e","size":1.5}],"shield":"gonfalon"},"pole":[1505,695]},{"i":55,"state":7,"center":6386,"burg":428,"name":"Altten","formName":"Province","fullName":"Altten Province","color":"#80ddba","coa":{"t1":"azure","charges":[{"charge":"lighthouse","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"heater"},"pole":[1451,728]},{"i":56,"state":8,"center":4854,"burg":8,"name":"Hokshing","formName":"Shire","fullName":"Hokshing Shire","color":"#fa8b98","coa":{"t1":"gemelles-or-azure-smaller","charges":[{"charge":"trianglePierced","t":"gules","p":"e","size":1.5}],"shield":"gonfalon"},"pole":[1387,591]},{"i":57,"state":8,"center":4533,"burg":440,"name":"Wongia","formName":"County","fullName":"Wongia County","color":"#e9ab98","coa":{"t1":"gules","ordinaries":[{"ordinary":"pale","t":"argent","line":"straight"}],"charges":[{"charge":"angel","t":"gules","p":"beh","t2":"gules","size":0.5}],"shield":"gonfalon"},"pole":[1379,553]},{"i":58,"state":8,"center":4380,"burg":57,"name":"Topekusa","formName":"Shire","fullName":"Topekusa Shire","color":"#ff8998","coa":{"t1":"argent","charges":[{"charge":"bridge2","t":"sable","p":"e","size":1.5}],"shield":"gonfalon"},"pole":[1483,534]},{"i":59,"state":8,"center":5151,"burg":256,"name":"Shia","formName":"Shire","fullName":"Shia Shire","color":"#ff9286","coa":{"t1":"gules","ordinaries":[{"ordinary":"chief","t":"argent","line":"straight"}],"charges":[{"charge":"inescutcheon","t":"azure","p":"abc","size":0.5},{"charge":"lionRampant","t":"argent","p":"abc","size":0.25}],"shield":"gonfalon"},"pole":[1379,614]},{"i":60,"state":8,"center":5408,"burg":222,"name":"Chiuenling","formName":"Earldom","fullName":"Chiuenling Earldom","color":"#eeb18d","coa":{"t1":"argent","division":{"division":"perPale","t":"azure","line":"straight"},"charges":[{"charge":"crossGamma","t":"sable","p":"p","size":0.7},{"charge":"horseHeadCouped","t":"or","p":"q","size":0.7}],"shield":"gonfalon"},"pole":[1374,641]},{"i":61,"state":8,"center":5526,"burg":341,"name":"Tamadia","formName":"Shire","fullName":"Tamadia Shire","color":"#efb18c","coa":{"t1":"ermine-argent-sable","division":{"division":"perBend","t":"vert","line":"straight"},"charges":[{"charge":"lozenge","t":"sable","p":"l","size":0.7},{"charge":"bell","t":"argent","p":"m","size":0.7}],"shield":"horsehead"},"pole":[1377,646]},{"i":62,"state":8,"center":5026,"burg":116,"name":"Diontiochia","formName":"Shire","fullName":"Diontiochia Shire","color":"#ff9780","coa":{"t1":"azure","division":{"division":"perCross","t":"argent","line":"straight"},"charges":[{"charge":"lymphad","t":"or","p":"e","t2":"or","t3":"or","size":1.5}],"shield":"gonfalon"},"pole":[1486,593]},{"i":63,"state":8,"center":5301,"burg":304,"name":"Otonia","formName":"County","fullName":"Otonia County","color":"#ffb284","coa":{"t1":"argent","charges":[{"charge":"spiral","t":"azure","p":"e","size":1.5}],"shield":"gonfalon"},"pole":[1476,616]},{"i":64,"state":8,"center":4529,"burg":731,"name":"Fatshuigong","formName":"County","fullName":"Fatshuigong County","color":"#ff9088","coa":{"t1":"bendy-gules-or","division":{"division":"perBendSinister","t":"argent","line":"straight"},"ordinaries":[{"ordinary":"pale","t":"or","line":"straight"}],"shield":"gonfalon"},"pole":[1329,557]},{"i":65,"state":8,"center":2578,"burg":271,"name":"Skylo","formName":"County","fullName":"Skylo County","color":"#f88e9e","coa":{"t1":"sable","ordinaries":[{"ordinary":"bend","t":"argent","line":"straight"}],"charges":[{"charge":"eagleTwoHeads","t":"sable","p":"e","t2":"sable","t3":"or","size":0.7}],"shield":"gonfalon"},"pole":[1011,356]},{"i":66,"state":8,"center":4054,"burg":281,"name":"Wanshanhing","formName":"Shire","fullName":"Wanshanhing Shire","color":"#ff8a94","coa":{"t1":"gules","charges":[{"charge":"crossOrthodox","t":"argent","p":"e","size":1.5}],"shield":"gonfalon"},"pole":[1388,511]},{"i":67,"state":8,"center":4870,"burg":226,"name":"Neia","formName":"Margrave","fullName":"Neia Margrave","color":"#ffa47c","coa":{"t1":"azure","charges":[{"charge":"lanceHead","t":"argent","p":"e","size":1.5}],"shield":"gonfalon"},"pole":[1534,576]},{"i":68,"state":8,"center":5031,"burg":165,"name":"Nymphos","formName":"County","fullName":"Nymphos County","color":"#f298a2","coa":{"t1":"azure","charges":[{"charge":"archer","t":"argent","p":"e","t2":"or","t3":"argent","size":1.5}],"shield":"gonfalon"},"pole":[1575,584]},{"i":69,"state":8,"center":5169,"burg":590,"name":"Bytostos","formName":"Shire","fullName":"Bytostos Shire","color":"#e9a89d","coa":{"t1":"sable","ordinaries":[{"ordinary":"terrace","t":"argent","line":"straight"}],"charges":[{"charge":"cock","t":"or","p":"bdf","t2":"or","t3":"or","size":0.5}],"shield":"gonfalon"},"pole":[1539,612]},{"i":70,"state":8,"center":5157,"burg":53,"name":"Fachau","formName":"Shire","fullName":"Fachau Shire","color":"#ff9582","coa":{"t1":"azure","charges":[{"charge":"lionRampant","t":"or","p":"abc","t2":"or","t3":"or","size":0.5}],"shield":"gonfalon"},"pole":[1432,614]},{"i":71,"state":8,"center":4702,"burg":436,"name":"Namchfukfu","formName":"Captaincy","fullName":"Namchfukfu Captaincy","color":"#ff8c90","coa":{"t1":"azure","ordinaries":[{"ordinary":"fess","t":"or","line":"straight"}],"charges":[{"charge":"dragonPassant","t":"argent","p":"abc","t2":"argent","t3":"argent","size":0.5}],"shield":"gonfalon"},"pole":[1404,581]},{"i":72,"state":9,"center":6198,"burg":9,"name":"Luvarau","formName":"Margrave","fullName":"Luvarau Margrave","color":"#afb9e0","coa":{"t1":"chainy-or-purpure","ordinaries":[{"ordinary":"mount","t":"purpure"}],"shield":"renaissance"},"pole":[508,729]},{"i":73,"state":9,"center":5951,"burg":156,"name":"Dimicum","formName":"Margrave","fullName":"Dimicum Margrave","color":"#dabab9","coa":{"t1":"vert","ordinaries":[{"ordinary":"pileInBend","t":"argent","line":"straight"}],"charges":[{"charge":"fleurDeLis","t":"argent","p":"cg","size":0.7}],"shield":"renaissance"},"pole":[442,704]},{"i":74,"state":9,"center":7043,"burg":106,"name":"Phiniagas","formName":"Margrave","fullName":"Phiniagas Margrave","color":"#d9a8cd","coa":{"t1":"purpure","ordinaries":[{"ordinary":"chief","t":"argent","line":"nebuly"}],"charges":[{"charge":"palmTree","t":"purpure","p":"abc","t2":"purpure","t3":"purpure","size":0.5}],"shield":"gonfalon"},"pole":[474,820]},{"i":75,"state":9,"center":6066,"burg":42,"name":"Tosnestad","formName":"Margrave","fullName":"Tosnestad Margrave","color":"#d8bdb8","coa":{"t1":"gules","charges":[{"charge":"mullet7","t":"or","p":"e","size":1.5}],"shield":"fantasy3"},"pole":[409,709]},{"i":76,"state":9,"center":6441,"burg":112,"name":"Condinium","formName":"Margrave","fullName":"Condinium Margrave","color":"#b1b4e0","coa":{"t1":"chainy-or-purpure","division":{"division":"perChevronReversed","t":"purpure","line":"straight"},"ordinaries":[{"ordinary":"bar","t":"gules","line":"straight"}],"shield":"renaissance"},"pole":[514,758]},{"i":77,"state":9,"center":6559,"burg":417,"name":"Dodia","formName":"Shire","fullName":"Dodia Shire","color":"#d6c1b8","coa":{"t1":"or","charges":[{"charge":"fusil","t":"purpure","p":"e","size":1.5}],"shield":"gonfalon"},"pole":[451,763]},{"i":78,"state":9,"center":6313,"burg":688,"name":"Blonden","formName":"Margrave","fullName":"Blonden Margrave","color":"#dbaac8","coa":{"t1":"gules","division":{"division":"perFess","t":"fretty-gules-argent","line":"straight"},"charges":[{"charge":"rake","t":"or","p":"k","size":0.7},{"charge":"bullHeadCaboshed","t":"or","p":"n","size":0.7}],"shield":"fantasy3"},"pole":[401,751]},{"i":79,"state":9,"center":7154,"burg":64,"name":"Stympia","formName":"Margrave","fullName":"Stympia Margrave","color":"#b2b3e0","coa":{"t1":"argent","division":{"division":"perFess","t":"purpure","line":"straight"},"charges":[{"charge":"crossOccitan","t":"sable","p":"k","size":0.7},{"charge":"dolphin","t":"or","p":"n","size":0.7}],"shield":"gonfalon"},"pole":[435,811]},{"i":80,"state":9,"center":7153,"burg":324,"name":"Trategia","formName":"County","fullName":"Trategia County","color":"#a8c6d8","coa":{"t1":"argent","division":{"division":"perChevronReversed","t":"azure","line":"straight"},"charges":[{"charge":"scorpion","t":"vert","p":"dfh","divided":"counter","size":0.5}],"shield":"gonfalon"},"pole":[414,843]},{"i":81,"state":9,"center":7038,"burg":70,"name":"Schen","formName":"Margrave","fullName":"Schen Margrave","color":"#dbadc4","coa":{"t1":"vert","division":{"division":"perPale","t":"or","line":"straight"},"charges":[{"charge":"mulletFaceted","t":"argent","p":"p","size":0.7},{"charge":"crocodile","t":"vert","p":"q","size":0.7}],"shield":"spanish"},"pole":[385,813]},{"i":82,"state":9,"center":6319,"burg":735,"name":"Auvarera","formName":"Margrave","fullName":"Auvarera Margrave","color":"#d2a6d2","coa":{"t1":"bendySinister-argent-gules","ordinaries":[{"ordinary":"terrace","t":"purpure","line":"straight"}],"shield":"renaissance"},"pole":[478,730]},{"i":83,"state":10,"center":6497,"burg":10,"name":"Siros","formName":"Margrave","fullName":"Siros Margrave","color":"#d2d774","coa":{"t1":"azure","division":{"division":"perCross","t":"argent","line":"straight"},"charges":[{"charge":"dragonRampant","t":"or","p":"jl","t2":"or","t3":"or","divided":"counter","size":0.7}],"shield":"gonfalon"},"pole":[1306,758]},{"i":84,"state":10,"center":6612,"burg":95,"name":"Thorysthia","formName":"County","fullName":"Thorysthia County","color":"#c1ea7f","coa":{"t1":"bendy-argent-purpure","ordinaries":[{"ordinary":"terrace","t":"vert","line":"straight"}],"charges":[{"charge":"crown2","t":"azure","p":"bdf","t2":"azure","t3":"azure","size":0.5}],"shield":"gonfalon"},"pole":[1259,773]},{"i":85,"state":10,"center":7086,"burg":401,"name":"Arnia","formName":"Earldom","fullName":"Arnia Earldom","color":"#d2d774","coa":{"t1":"argent","division":{"division":"perFess","t":"purpure","line":"embattledGrady"},"charges":[{"charge":"heart","t":"gules","p":"k","size":0.7},{"charge":"swan","t":"or","p":"n","size":0.7}],"shield":"gonfalon"},"pole":[1198,779]},{"i":86,"state":10,"center":6620,"burg":286,"name":"Myonia","formName":"County","fullName":"Myonia County","color":"#ebd86d","coa":{"t1":"vert","division":{"division":"perBend","t":"argent","line":"straight"},"ordinaries":[{"ordinary":"saltireParted","t":"or","line":"straight"}],"shield":"gonfalon"},"pole":[1340,753]},{"i":87,"state":10,"center":6622,"burg":146,"name":"Myrgos","formName":"County","fullName":"Myrgos County","color":"#cfff61","coa":{"t1":"argent","charges":[{"charge":"wing","t":"sable","p":"e","size":1.5}],"shield":"gonfalon"},"pole":[1384,823]},{"i":88,"state":10,"center":6357,"burg":218,"name":"Sparnenai","formName":"Earldom","fullName":"Sparnenai Earldom","color":"#ecec58","coa":{"t1":"azure","charges":[{"charge":"stagLodgedRegardant","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"gonfalon"},"pole":[1154,709]},{"i":89,"state":10,"center":6491,"burg":369,"name":"Pydria","formName":"County","fullName":"Pydria County","color":"#ebef57","coa":{"t1":"azure","charges":[{"charge":"bugleHorn","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"gonfalon"},"pole":[1257,735]},{"i":90,"state":10,"center":6366,"burg":301,"name":"Pseidaia","formName":"County","fullName":"Pseidaia County","color":"#ccdb78","coa":{"t1":"argent","ordinaries":[{"ordinary":"pale","t":"vert","line":"straight"}],"charges":[{"charge":"crossArrowed","t":"argent","p":"beh","size":0.5}],"shield":"gonfalon"},"pole":[1262,727]},{"i":91,"state":10,"center":6740,"burg":426,"name":"Methos","formName":"County","fullName":"Methos County","color":"#c6e27e","coa":{"t1":"argent","division":{"division":"perCross","t":"vert","line":"straight"},"charges":[{"charge":"pegasus","t":"gules","p":"j","t2":"gules","t3":"azure","size":0.6},{"charge":"griffinRampant","t":"or","p":"l","size":0.6},{"charge":"deerHeadCaboshed","t":"argent","p":"m","size":0.6},{"charge":"bearRampant","t":"azure","p":"o","size":0.6}],"shield":"gonfalon"},"pole":[1253,806]},{"i":92,"state":10,"center":6611,"burg":415,"name":"Helopo","formName":"County","fullName":"Helopo County","color":"#cbdd7a","coa":{"t1":"gules","charges":[{"charge":"anchor","t":"argent","p":"jeo","size":0.5}],"shield":"gonfalon"},"pole":[1267,760]},{"i":93,"state":10,"center":6747,"burg":294,"name":"Oricearis","formName":"County","fullName":"Oricearis County","color":"#d9ff60","coa":{"t1":"azure","division":{"division":"perCross","t":"argent","line":"straight"},"ordinaries":[{"ordinary":"canton","t":"or"}],"shield":"gonfalon"},"pole":[1323,810]},{"i":94,"state":10,"center":6480,"burg":644,"name":"Naguriasia","formName":"Landgrave","fullName":"Naguriasia Landgrave","color":"#ccdb78","coa":{"t1":"barry-or-gules-small","division":{"division":"perBend","t":"purpure","line":"straight"},"ordinaries":[{"ordinary":"pileInBend","t":"azure"}],"shield":"gonfalon"},"pole":[1166,755]},{"i":95,"state":10,"center":7085,"burg":355,"name":"Somis","formName":"County","fullName":"Somis County","color":"#e1fa5b","coa":{"t1":"purpure","ordinaries":[{"ordinary":"chief","t":"argent","line":"enclavy"}],"charges":[{"charge":"lymphad","t":"gules","p":"b","t2":"argent","t3":"gules","size":0.5}],"shield":"gonfalon"},"pole":[1194,821]},{"i":96,"state":11,"center":6568,"burg":11,"name":"Juktos","formName":"County","fullName":"Juktos County","color":"#efda69","coa":{"t1":"gules","charges":[{"charge":"falcon","t":"argent","p":"e","t2":"argent","t3":"or","size":1.5}],"shield":"gonfalon"},"pole":[558,754]},{"i":97,"state":11,"center":6569,"burg":174,"name":"Siceia","formName":"County","fullName":"Siceia County","color":"#c9d08c","coa":{"t1":"or","ordinaries":[{"ordinary":"bar","t":"purpure","line":"rayonne"}],"charges":[{"charge":"inescutcheon","t":"or","p":"def","size":0.3},{"charge":"bone","t":"sable","p":"def","size":0.15}],"shield":"gonfalon"},"pole":[583,758]},{"i":98,"state":11,"center":7278,"burg":331,"name":"Iolara","formName":"County","fullName":"Iolara County","color":"#e4c782","coa":{"t1":"gules","ordinaries":[{"ordinary":"gyron","t":"or"}],"charges":[{"charge":"crossErminee","t":"argent","p":"bh","size":0.5}],"shield":"gonfalon"},"pole":[541,836]},{"i":99,"state":11,"center":6818,"burg":575,"name":"Midauros","formName":"Captaincy","fullName":"Midauros Captaincy","color":"#e2c783","coa":{"t1":"or","charges":[{"charge":"arbalest","t":"azure","p":"jln","t2":"azure","t3":"gules","size":0.7}],"shield":"gonfalon"},"pole":[600,788]},{"i":100,"state":11,"center":7170,"burg":397,"name":"Hena","formName":"County","fullName":"Hena County","color":"#d1c883","coa":{"t1":"vair-purpure-argent","division":{"division":"perCross","t":"or","line":"straight"},"charges":[{"charge":"horseHeadCouped","t":"gules","p":"jlmo","size":0.6}],"shield":"gonfalon"},"pole":[615,825]},{"i":101,"state":11,"center":6932,"burg":204,"name":"Diontosia","formName":"County","fullName":"Diontosia County","color":"#e9e368","coa":{"t1":"or","ordinaries":[{"ordinary":"pile","t":"azure"}],"charges":[{"charge":"crossOccitan","t":"argent","p":"b","size":0.5}],"shield":"gonfalon"},"pole":[539,798]},{"i":102,"state":12,"center":167,"burg":12,"name":"Lirasos","formName":"County","fullName":"Lirasos County","color":"#eaff65","coa":{"t1":"argent","division":{"division":"perFess","t":"vert","line":"wavy"},"shield":"gonfalon"},"pole":[977,96]},{"i":103,"state":12,"center":742,"burg":649,"name":"Heracria","formName":"County","fullName":"Heracria County","color":"#ffff41","coa":{"t1":"purpure","charges":[{"charge":"griffinRampant","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"gonfalon"},"pole":[1069,168]},{"i":104,"state":12,"center":1045,"burg":272,"name":"Hinon","formName":"County","fullName":"Hinon County","color":"#ffeb5d","coa":{"t1":"semy_of_roundel-argent-purpure","ordinaries":[{"ordinary":"pile","t":"gules"}],"shield":"gonfalon"},"pole":[1008,216]},{"i":105,"state":12,"center":659,"burg":392,"name":"Rinomisia","formName":"Earldom","fullName":"Rinomisia Earldom","color":"#ffff49","coa":{"t1":"sable","charges":[{"charge":"crossCarolingian","t":"or","p":"e","size":1.5}],"shield":"gonfalon"},"pole":[989,164]},{"i":106,"state":13,"center":1231,"burg":13,"name":"Meroyri","formName":"Landgrave","fullName":"Meroyri Landgrave","color":"#91d9bd","coa":{"t1":"bendySinister-or-purpure","ordinaries":[{"ordinary":"saltire","t":"vert","line":"straight"}],"shield":"oldFrench"},"pole":[604,228]},{"i":107,"state":13,"center":1323,"burg":384,"name":"Solfosland","formName":"Landgrave","fullName":"Solfosland Landgrave","color":"#81fdb1","coa":{"t1":"argent","ordinaries":[{"ordinary":"pile","t":"sable"}],"charges":[{"charge":"comet","t":"argent","p":"b","size":0.5}],"shield":"oldFrench"},"pole":[520,242]},{"i":108,"state":13,"center":1019,"burg":640,"name":"Egilsia","formName":"County","fullName":"Egilsia County","color":"#89f4a9","coa":{"t1":"argent","charges":[{"charge":"lozengeFaceted","t":"gules","p":"e","size":1.5}],"shield":"oldFrench"},"pole":[688,201]},{"i":109,"state":14,"center":1917,"burg":14,"name":"Orarka","formName":"Province","fullName":"Orarka Province","color":"#ffae86","coa":{"t1":"purpure","charges":[{"charge":"inescutcheon","t":"or","p":"jln","size":0.7},{"charge":"laurelWreath2","t":"vert","p":"jln","size":0.35}],"shield":"oldFrench"},"pole":[551,320]},{"i":110,"state":14,"center":1804,"burg":516,"name":"Reykken","formName":"Governorate","fullName":"Reykken Governorate","color":"#e7c591","coa":{"t1":"argent","charges":[{"charge":"hand","t":"purpure","p":"jeo","size":0.5,"reversed":1}],"shield":"oldFrench"},"pole":[513,305]},{"i":111,"state":15,"center":3220,"burg":15,"name":"Laupsvi","formName":"County","fullName":"Laupsvi County","color":"#e991ee","coa":{"t1":"purpure","ordinaries":[{"ordinary":"bendSinister","t":"argent","line":"dovetailedIndented"}],"charges":[{"charge":"comet","t":"azure","p":"lem","size":0.5}],"shield":"oldFrench"},"pole":[317,469]},{"i":112,"state":15,"center":2427,"burg":184,"name":"Lurumpolona","formName":"Earldom","fullName":"Lurumpolona Earldom","color":"#d79df8","coa":{"t1":"vert","division":{"division":"chevronny","t":"argent"},"charges":[{"charge":"snake","t":"or","p":"e","t2":"or","divided":"counter","size":1.5}],"shield":"swiss"},"pole":[280,362]},{"i":113,"state":15,"center":3010,"burg":358,"name":"Nonimbricia","formName":"Earldom","fullName":"Nonimbricia Earldom","color":"#f992ea","coa":{"t1":"azure","charges":[{"charge":"snowflake","t":"argent","p":"kn","size":0.7}],"shield":"swiss"},"pole":[261,444]},{"i":114,"state":15,"center":3346,"burg":492,"name":"Opnafjoria","formName":"County","fullName":"Opnafjoria County","color":"#efb7d8","coa":{"t1":"azure","ordinaries":[{"ordinary":"quarter","t":"argent"}],"charges":[{"charge":"lozengeFaceted","t":"azure","p":"j","size":0.5}],"shield":"oldFrench"},"pole":[348,490]},{"i":115,"state":15,"center":3009,"burg":662,"name":"Getia","formName":"Seneschalty","fullName":"Getia Seneschalty","color":"#ff9ed6","coa":{"t1":"sable","charges":[{"charge":"dolphin","t":"or","p":"e","t2":"or","size":1.5}],"shield":"swiss"},"pole":[226,428]},{"i":116,"state":15,"center":3513,"burg":247,"name":"Tutach","formName":"County","fullName":"Tutach County","color":"#ff95e1","coa":{"t1":"purpure","ordinaries":[{"ordinary":"cross","t":"or","line":"urdy"}],"charges":[{"charge":"billet","t":"purpure","p":"behdf","size":0.3}],"shield":"spanish"},"pole":[427,472]},{"i":117,"state":15,"center":3108,"burg":157,"name":"Bonia","formName":"County","fullName":"Bonia County","color":"#d1b8e3","coa":{"t1":"gules","charges":[{"charge":"greyhoundRampant","t":"argent","p":"abc","t2":"argent","size":0.5}],"shield":"swiss"},"pole":[258,469]},{"i":118,"state":15,"center":3107,"burg":474,"name":"Cornonimbri","formName":"County","fullName":"Cornonimbri County","color":"#d79cf7","coa":{"t1":"ermine-argent-sable","division":{"division":"perChevron","t":"azure","line":"straight"},"ordinaries":[{"ordinary":"bordure","t":"gules"}],"shield":"swiss"},"pole":[284,452]},{"i":119,"state":16,"center":4118,"burg":16,"name":"Dorn","formName":"Tribe","fullName":"Dorn Tribe","color":"#abdc97","coa":{"t1":"azure","charges":[{"charge":"laurelWreath","t":"or","p":"jln","t2":"or","size":0.7}],"shield":"spanish"},"pole":[341,543]},{"i":120,"state":16,"center":6063,"burg":257,"name":"Djutarfug","formName":"Tribe","fullName":"Djutarfug Tribe","color":"#c6c58e","coa":{"t1":"or","division":{"division":"gyronny","t":"chequy-or-gules"},"shield":"fantasy3"},"pole":[359,701]},{"i":121,"state":16,"center":6427,"burg":558,"name":"Fluorndin","formName":"Tribe","fullName":"Fluorndin Tribe","color":"#c7c58e","coa":{"t1":"argent","charges":[{"charge":"trefoil","t":"gules","p":"jln","size":0.7}],"shield":"spanish"},"pole":[331,752]},{"i":122,"state":16,"center":4441,"burg":418,"name":"Breithengsia","formName":"Tribe","fullName":"Breithengsia Tribe","color":"#cee975","coa":{"t1":"argent","ordinaries":[{"ordinary":"cross","t":"gules","line":"embattled"}],"charges":[{"charge":"ladder","t":"gules","p":"acgi","size":0.5}],"shield":"spanish"},"pole":[373,550]},{"i":123,"state":16,"center":4604,"burg":686,"name":"Dunbach","formName":"Tribe","fullName":"Dunbach Tribe","color":"#d2e472","coa":{"t1":"pappellony2-argent-azure","division":{"division":"gyronny","t":"gules"},"charges":[{"charge":"billet","t":"azure","p":"e","size":1.5}],"shield":"spanish"},"pole":[397,563]},{"i":124,"state":16,"center":4435,"burg":743,"name":"Odeckloshut","formName":"Tribe","fullName":"Odeckloshut Tribe","color":"#d8c688","coa":{"t1":"azure","ordinaries":[{"ordinary":"pallReversed","t":"argent"}],"charges":[{"charge":"crossOrthodox","t":"sable","p":"e","size":0.7}],"shield":"spanish"},"pole":[299,558]},{"i":125,"state":16,"center":5827,"burg":560,"name":"Drangdia","formName":"Tribe","fullName":"Drangdia Tribe","color":"#dbcc7e","coa":{"t1":"or","charges":[{"charge":"scrollClosed","t":"gules","p":"e","t2":"vert","size":1.5}],"shield":"fantasy3"},"pole":[404,674]},{"i":126,"state":16,"center":6186,"burg":406,"name":"Hupinavia","formName":"Tribe","fullName":"Hupinavia Tribe","color":"#d7c689","coa":{"t1":"vert","division":{"division":"perPale","t":"or","line":"straight"},"shield":"fantasy3"},"pole":[375,712]},{"i":127,"state":16,"center":6551,"burg":577,"name":"Rheinhau","formName":"Tribe","fullName":"Rheinhau Tribe","color":"#a9e194","coa":{"t1":"argent","charges":[{"charge":"attire","t":"sable","p":"e","size":1.5}],"shield":"spanish"},"pole":[355,735]},{"i":128,"state":16,"center":5474,"burg":547,"name":"Sendyria","formName":"Tribe","fullName":"Sendyria Tribe","color":"#dbce7a","coa":{"t1":"sable","division":{"division":"perPale","t":"argent","line":"dovetailedIndented"},"charges":[{"charge":"hatchet","t":"or","p":"pq","t2":"or","divided":"counter","size":0.7}],"shield":"fantasy3"},"pole":[398,644]},{"i":129,"state":16,"center":4914,"burg":628,"name":"Kehlia","formName":"Tribe","fullName":"Kehlia Tribe","color":"#dbcf79","coa":{"t1":"azure","charges":[{"charge":"crossHummetty","t":"or","p":"e","size":1.5}],"shield":"spanish"},"pole":[334,613]},{"i":130,"state":16,"center":4597,"burg":561,"name":"Rheinwenalb","formName":"Tribe","fullName":"Rheinwenalb Tribe","color":"#a9e78d","coa":{"t1":"or","charges":[{"charge":"moonInCrescent","t":"gules","p":"abc","size":0.5}],"shield":"spanish"},"pole":[319,583]},{"i":131,"state":16,"center":4602,"burg":349,"name":"Bonweibach","formName":"Tribe","fullName":"Bonweibach Tribe","color":"#b2d298","coa":{"t1":"vairEnPointe-azure-argent","ordinaries":[{"ordinary":"bendSinister","t":"or","line":"straight"}],"charges":[{"charge":"inescutcheon","t":"azure","p":"lem","size":0.5},{"charge":"heart","t":"or","p":"lem","size":0.25}],"shield":"spanish"},"pole":[367,577]},{"i":132,"state":16,"center":5351,"burg":277,"name":"Orstadtnia","formName":"Tribe","fullName":"Orstadtnia Tribe","color":"#bdee7a","coa":{"t1":"sable","division":{"division":"perCross","t":"or","line":"straight"},"charges":[{"charge":"swan","t":"argent","p":"j","t2":"argent","t3":"argent","divided":"counter","size":0.6}],"shield":"spanish"},"pole":[349,646]},{"i":133,"state":17,"center":4921,"burg":17,"name":"Schal","formName":"County","fullName":"Schal County","color":"#eaea69","coa":{"t1":"bendySinister-or-sable-small","charges":[{"charge":"palace","t":"sable","p":"e","size":1.5}],"shield":"spanish"},"pole":[438,613]},{"i":134,"state":17,"center":4606,"burg":211,"name":"Lenzkirchia","formName":"County","fullName":"Lenzkirchia County","color":"#d8ff6d","coa":{"t1":"semy_of_crossPattee-argent-purpure","division":{"division":"perPale","t":"vert","line":"straight"},"ordinaries":[{"ordinary":"cross","t":"azure","line":"straight"}],"shield":"spanish"},"pole":[447,563]},{"i":135,"state":17,"center":4769,"burg":181,"name":"Wehrzelia","formName":"County","fullName":"Wehrzelia County","color":"#fae769","coa":{"t1":"fusily-argent-azure","division":{"division":"perChevron","t":"azure","line":"straight"},"ordinaries":[{"ordinary":"chevronReversed","t":"gules"}],"shield":"spanish"},"pole":[468,580]},{"i":136,"state":17,"center":4292,"burg":243,"name":"Wiebengen","formName":"County","fullName":"Wiebengen County","color":"#ffff4c","coa":{"t1":"argent","charges":[{"charge":"escallop","t":"gules","p":"e","size":1.5}],"shield":"spanish"},"pole":[454,533]},{"i":137,"state":18,"center":5518,"burg":18,"name":"Yuen","formName":"Seneschalty","fullName":"Yuen Seneschalty","color":"#ffe44b","coa":{"t1":"argent","charges":[{"charge":"boat","t":"gules","p":"e","t2":"gules","size":1.5}],"shield":"gonfalon"},"pole":[1285,654]},{"i":138,"state":18,"center":4844,"burg":523,"name":"Samtsaunyi","formName":"Seneschalty","fullName":"Samtsaunyi Seneschalty","color":"#f4d372","coa":{"t1":"argent","ordinaries":[{"ordinary":"crossParted","t":"gules","line":"dancetty"}],"charges":[{"charge":"duck","t":"purpure","p":"e","t2":"purpure","t3":"gules","size":1.5}],"shield":"gonfalon"},"pole":[1320,609]},{"i":139,"state":18,"center":4843,"burg":72,"name":"Longtai","formName":"Earldom","fullName":"Longtai Earldom","color":"#ffee52","coa":{"t1":"or","ordinaries":[{"ordinary":"orle","t":"sable"}],"charges":[{"charge":"mascle","t":"gules","p":"e","size":1.1}],"shield":"gonfalon"},"pole":[1293,588]},{"i":140,"state":19,"center":5842,"burg":19,"name":"Hyeririsia","formName":"Deanery","fullName":"Hyeririsia Deanery","color":"#9fc7b2","coa":{"t1":"gules","division":{"division":"perBend","t":"pally-sable-argent","line":"straight"},"charges":[{"charge":"anchor","t":"or","p":"lm","size":0.7}],"shield":"gonfalon"},"pole":[585,686]},{"i":141,"state":19,"center":6213,"burg":409,"name":"Rosiapapa","formName":"Parish","fullName":"Rosiapapa Parish","color":"#91b4cd","coa":{"t1":"argent","division":{"division":"perCross","t":"azure","line":"embattledGhibellin"},"charges":[{"charge":"annulet","t":"gules","p":"jo","divided":"counter","size":0.7}],"shield":"gonfalon"},"pole":[667,720]},{"i":142,"state":19,"center":6462,"burg":594,"name":"Gortelea","formName":"Deanery","fullName":"Gortelea Deanery","color":"#6cd6d0","coa":{"t1":"pally-purpure-argent-smaller","ordinaries":[{"ordinary":"bordure","t":"argent"}],"shield":"gonfalon"},"pole":[716,755]},{"i":143,"state":19,"center":6459,"burg":435,"name":"Iatece","formName":"Deanery","fullName":"Iatece Deanery","color":"#9fb8c4","coa":{"t1":"gules","charges":[{"charge":"rustre","t":"or","p":"e","size":1.5}],"shield":"gonfalon"},"pole":[629,790]},{"i":144,"state":19,"center":5969,"burg":642,"name":"Titrosia","formName":"Deanery","fullName":"Titrosia Deanery","color":"#9fb9c3","coa":{"t1":"sable","charges":[{"charge":"shipWheel","t":"argent","p":"e","size":1.5}],"shield":"gonfalon"},"pole":[632,728]},{"i":145,"state":19,"center":4174,"burg":730,"name":"Ecocatlan","formName":"Parish","fullName":"Ecocatlan Parish","color":"#9fc7b2","coa":{"t1":"argent","charges":[{"charge":"earOfWheat","t":"azure","p":"e","size":1.5}],"shield":"wedged"},"pole":[792,539]},{"i":146,"state":19,"center":5231,"burg":678,"name":"Serythria","formName":"Parish","fullName":"Serythria Parish","color":"#9fc6b3","coa":{"t1":"azure","division":{"division":"perPale","t":"argent","line":"archedReversed"},"ordinaries":[{"ordinary":"bend","t":"or","line":"straight"}],"shield":"gonfalon"},"pole":[589,638]},{"i":147,"state":19,"center":5723,"burg":650,"name":"Tithema","formName":"Parish","fullName":"Tithema Parish","color":"#70dcc4","coa":{"t1":"or","ordinaries":[{"ordinary":"terrace","t":"sable","line":"nowy"}],"charges":[{"charge":"mullet","t":"vert","p":"e","size":1.5}],"shield":"gonfalon"},"pole":[616,669]},{"i":148,"state":19,"center":6084,"burg":502,"name":"Smyrgan","formName":"Parish","fullName":"Smyrgan Parish","color":"#96b5cc","coa":{"t1":"azure","ordinaries":[{"ordinary":"canton","t":"argent"}],"charges":[{"charge":"spear","t":"argent","p":"e","t2":"argent","size":1.5}],"shield":"gonfalon"},"pole":[588,723]},{"i":149,"state":20,"center":7243,"burg":20,"name":"Launingen","formName":"Earldom","fullName":"Launingen Earldom","color":"#d3c5b7","coa":{"t1":"vert","division":{"division":"perCross","t":"or","line":"indented"},"charges":[{"charge":"dolphin","t":"argent","p":"jo","t2":"argent","divided":"counter","size":0.7}],"shield":"heater"},"pole":[1647,830]},{"i":150,"state":20,"center":6894,"burg":539,"name":"Schopold","formName":"County","fullName":"Schopold County","color":"#c5d8ba","coa":{"t1":"gules","ordinaries":[{"ordinary":"terrace","t":"or","line":"straight"}],"charges":[{"charge":"raft","t":"or","p":"e","size":1.5}],"shield":"heater"},"pole":[1653,782]},{"i":151,"state":20,"center":6281,"burg":610,"name":"Frewaldberg","formName":"County","fullName":"Frewaldberg County","color":"#bfb3d2","coa":{"t1":"argent","division":{"division":"perChevron","t":"sable","line":"straight"},"charges":[{"charge":"crossBottony","t":"azure","p":"jlh","divided":"counter","size":0.7}],"shield":"heater"},"pole":[1666,727]},{"i":152,"state":20,"center":5912,"burg":250,"name":"Meria","formName":"County","fullName":"Meria County","color":"#aac1db","coa":{"t1":"or","charges":[{"charge":"bugleHorn","t":"gules","p":"e","t2":"gules","size":1.5}],"shield":"gonfalon"},"pole":[1618,682]},{"i":153,"state":20,"center":6648,"burg":368,"name":"Kehlheimberg","formName":"County","fullName":"Kehlheimberg County","color":"#a8dbc5","coa":{"t1":"argent","ordinaries":[{"ordinary":"bendlet","t":"vert","line":"straight"}],"charges":[{"charge":"boat","t":"argent","p":"joe","t2":"argent","size":0.3}],"shield":"heater"},"pole":[1624,755]},{"i":154,"state":20,"center":4408,"burg":733,"name":"Otibethmo","formName":"County","fullName":"Otibethmo County","color":"#bcdbbd","coa":{"t1":"argent","ordinaries":[{"ordinary":"orle","t":"sable"}],"charges":[{"charge":"cavalier","t":"azure","p":"jleh","t2":"azure","t3":"azure","size":0.5}],"shield":"gonfalon"},"pole":[1647,544]},{"i":155,"state":20,"center":4409,"burg":429,"name":"Stymphos","formName":"County","fullName":"Stymphos County","color":"#d3bac2","coa":{"t1":"honeycombed-gules-argent-smaller","charges":[{"charge":"cock","t":"argent","p":"e","t2":"argent","t3":"argent","size":1.5}],"shield":"gonfalon"},"pole":[1684,574]},{"i":156,"state":20,"center":5790,"burg":111,"name":"Lefka","formName":"County","fullName":"Lefka County","color":"#b8b3d1","coa":{"t1":"masoned-argent-azure-small","division":{"division":"perCross","t":"gules","line":"straight"},"ordinaries":[{"ordinary":"pallReversed","t":"azure"}],"shield":"gonfalon"},"pole":[1645,669]},{"i":157,"state":20,"center":6774,"burg":75,"name":"Mullbachin","formName":"County","fullName":"Mullbachin County","color":"#a9dbc4","coa":{"t1":"argent","charges":[{"charge":"mascle","t":"gules","p":"pqe","size":0.5}],"shield":"heater"},"pole":[1619,760]},{"i":158,"state":20,"center":5913,"burg":404,"name":"Sytion","formName":"County","fullName":"Sytion County","color":"#d3c2b9","coa":{"t1":"azure","division":{"division":"perCross","t":"argent","line":"straight"},"ordinaries":[{"ordinary":"pilesInPoint","t":"or"}],"shield":"gonfalon"},"pole":[1642,688]},{"i":159,"state":20,"center":4726,"burg":110,"name":"Ithegicosia","formName":"Earldom","fullName":"Ithegicosia Earldom","color":"#c9d2b5","coa":{"t1":"azure","ordinaries":[{"ordinary":"pale","t":"argent","line":"nebuly"}],"charges":[{"charge":"crossPatonce","t":"vert","p":"kn","size":0.7}],"shield":"gonfalon"},"pole":[1620,575]},{"i":160,"state":20,"center":5176,"burg":78,"name":"Emnosia","formName":"Captaincy","fullName":"Emnosia Captaincy","color":"#bfb3d2","coa":{"t1":"or","charges":[{"charge":"palace","t":"gules","p":"e","size":1.5}],"shield":"gonfalon"},"pole":[1611,622]},{"i":161,"state":1,"center":4089,"burg":738,"name":"Limkongia","formName":"Territory","fullName":"Limkongia Territory","color":"#90bcb4","coa":{"t1":"argent","ordinaries":[{"ordinary":"pilesInPoint","t":"gules"},{"ordinary":"canton","t":"bendy-or-azure"}],"charges":[{"charge":"mitre","t":"azure","p":"ln","t2":"azure","t3":"azure","size":0.7},{"charge":"apple","t":"gules","p":"y","size":0.5}],"shield":"heater"},"pole":[58,620]},{"i":162,"state":1,"center":7370,"burg":0,"name":"Towbowen","formName":"Tribe","fullName":"Towbowen Tribe","color":"#83e0a4","coa":{"t1":"azure","charges":[{"charge":"raven","t":"sable","p":"e","t2":"sable","size":1.5}],"shield":"round"},"pole":[214,837]},{"i":163,"state":3,"center":2545,"burg":542,"name":"New Alahuepeco","formName":"Colony","fullName":"New Alahuepeco Colony","color":"#9b9cdc","coa":{"t1":"gules","ordinaries":[{"ordinary":"gemelle","t":"or","line":"dragonTeeth"},{"ordinary":"canton","t":"or"}],"charges":[{"charge":"ladybird","t":"argent","p":"bc","t2":"argent","t3":"argent","size":0.5},{"charge":"goutte","t":"azure","p":"y","size":0.5}],"shield":"wedged"},"pole":[445,418]},{"i":164,"state":3,"center":4932,"burg":451,"name":"Todtnauten","formName":"Area","fullName":"Todtnauten Area","color":"#a4c4c8","coa":{"t1":"or","division":{"division":"perCross","t":"azure","line":"straight"},"ordinaries":[{"ordinary":"cross","t":"purpure","line":"straight"}],"shield":"spanish"},"pole":[533,595]},{"i":165,"state":5,"center":7349,"burg":0,"name":"Briburg","formName":"Territory","fullName":"Briburg Territory","color":"#a8d578","coa":{"t1":"bendy-azure-or","ordinaries":[{"ordinary":"chevron","t":"argent"}],"shield":"heater"},"pole":[1502,832]},{"i":166,"state":6,"center":2754,"burg":238,"name":"Apultepec","formName":"Clan","fullName":"Apultepec Clan","color":"#eaf34e","coa":{"t1":"gules","ordinaries":[{"ordinary":"chevron","t":"argent"}],"shield":"wedged"},"pole":[756,426]},{"i":167,"state":6,"center":3997,"burg":0,"name":"Teolotlapul","formName":"Islands","fullName":"Teolotlapul Islands","color":"#fad153","coa":{"t1":"argent","charges":[{"charge":"crossFourchy","t":"purpure","p":"e","size":1.5}],"shield":"wedged"},"pole":[575,589]},{"i":168,"state":8,"center":759,"burg":129,"name":"Nausaipo","formName":"Land","fullName":"Nausaipo Land","color":"#ffaf81","coa":{"t1":"counterVair-argent-gules-small","division":{"division":"perCross","t":"vert","line":"straight"},"charges":[{"charge":"fusil","t":"azure","p":"e","size":1.5}],"shield":"gonfalon"},"pole":[1668,365]},{"i":169,"state":8,"center":1769,"burg":122,"name":"Methymia","formName":"Land","fullName":"Methymia Land","color":"#ff9c7e","coa":{"t1":"azure","charges":[{"charge":"sabre2","t":"argent","p":"e","t2":"or","size":1.5}],"shield":"gonfalon"},"pole":[976,439]},{"i":170,"state":8,"center":2183,"burg":604,"name":"New Fachau","formName":"Colony","fullName":"New Fachau Colony","color":"#f494a1","coa":{"t1":"sable","ordinaries":[{"ordinary":"bendletSinister","t":"argent","line":"straight"},{"ordinary":"canton","t":"argent"}],"charges":[{"charge":"trianglePierced","t":"azure","p":"y","size":0.5}],"shield":"gonfalon"},"pole":[987,354]},{"i":171,"state":8,"center":3284,"burg":0,"name":"Chawburia","formName":"Colony","fullName":"Chawburia Colony","color":"#ff9c7e","coa":{"t1":"gules","charges":[{"charge":"mullet6Pierced","t":"or","p":"bcpqh","size":0.5},{"charge":"trianglePierced","t":"azure","p":"y","size":0.5}],"ordinaries":[{"ordinary":"canton","t":"argent"}],"shield":"round"},"pole":[921,466]},{"i":172,"state":8,"center":3313,"burg":0,"name":"New Hokshing","formName":"Colony","fullName":"New Hokshing Colony","color":"#e9aa9a","coa":{"t1":"sable","ordinaries":[{"ordinary":"pileInBendSinister","t":"or"},{"ordinary":"canton","t":"argent"}],"charges":[{"charge":"crossLatin","t":"argent","p":"i","size":0.7},{"charge":"trianglePierced","t":"azure","p":"y","size":0.5}],"shield":"gonfalon"},"pole":[1614,467]},{"i":173,"state":8,"center":3733,"burg":0,"name":"New Wanshanhing","formName":"Colony","fullName":"New Wanshanhing Colony","color":"#ff8998","coa":{"t1":"argent","charges":[{"charge":"banner","t":"purpure","p":"e","t2":"purpure","size":1.4},{"charge":"trianglePierced","t":"or","p":"y","size":0.5}],"ordinaries":[{"ordinary":"canton","t":"azure"}],"shield":"round"},"pole":[961,513]},{"i":174,"state":9,"center":7033,"burg":677,"name":"Wienau","formName":"Territory","fullName":"Wienau Territory","color":"#a9c8d3","coa":{"t1":"or","ordinaries":[{"ordinary":"bordure","t":"sable"}],"charges":[{"charge":"rustre","t":"or","p":"ABCDEFGHIJKL","size":0.18}],"shield":"spanish"},"pole":[324,834]},{"i":175,"state":10,"center":4982,"burg":739,"name":"Thoseidia","formName":"Territory","fullName":"Thoseidia Territory","color":"#eee65a","coa":{"t1":"or","charges":[{"charge":"lambPassantReguardant","t":"vert","p":"e","t2":"purpure","size":1.4},{"charge":"lymphad","t":"argent","p":"y","size":0.5}],"ordinaries":[{"ordinary":"canton","t":"azure"}],"shield":"gonfalon"},"pole":[913,521]},{"i":176,"state":10,"center":7205,"burg":154,"name":"Naulaia","formName":"Land","fullName":"Naulaia Land","color":"#e1d774","coa":{"t1":"azure","charges":[{"charge":"crossTriquetra","t":"argent","p":"abcpqh","size":0.5}],"shield":"gonfalon"},"pole":[1277,811]},{"i":177,"state":10,"center":6118,"burg":0,"name":"New Naguriasia","formName":"Colony","fullName":"New Naguriasia Colony","color":"#e7d870","coa":{"t1":"masoned-gules-argent-small","charges":[{"charge":"headWreathed","t":"or","p":"e","t2":"or","t3":"or","size":1.4},{"charge":"lymphad","t":"or","p":"y","size":0.5}],"ordinaries":[{"ordinary":"canton","t":"azure"}],"shield":"gonfalon"},"pole":[1286,703]},{"i":178,"state":12,"center":1062,"burg":720,"name":"New Hinon","formName":"Colony","fullName":"New Hinon Colony","color":"#ffed55","coa":{"t1":"argent","ordinaries":[{"ordinary":"pallReversed","t":"vert"},{"ordinary":"canton","t":"semy_of_roundel-argent-purpure"}],"charges":[{"charge":"apple","t":"or","p":"bemo","t2":"vert","size":0.5},{"charge":"ladder","t":"vert","p":"y","size":0.5}],"shield":"gonfalon"},"pole":[1341,214]},{"i":179,"state":12,"center":28,"burg":0,"name":"Pelistoria","formName":"Land","fullName":"Pelistoria Land","color":"#ffff4b","coa":{"t1":"semy_of_roundel-argent-purpure","division":{"division":"perChevronReversed","t":"gules","line":"straight"},"ordinaries":[{"ordinary":"terrace","t":"sable","line":"straight"}],"shield":"round"},"pole":[877,102]},{"i":180,"state":13,"center":132,"burg":408,"name":"Stavenia","formName":"Land","fullName":"Stavenia Land","color":"#8ed8bf","coa":{"t1":"purpure","charges":[{"charge":"crossOrthodox","t":"argent","p":"e","size":1.5}],"shield":"oldFrench"},"pole":[593,126]},{"i":181,"state":13,"center":1432,"burg":711,"name":"Fjeria","formName":"Land","fullName":"Fjeria Land","color":"#8bf2a9","coa":{"t1":"gules","ordinaries":[{"ordinary":"fessDoubleCotissed","t":"argent","line":"wavy"}],"charges":[{"charge":"inescutcheon","t":"gules","p":"e","size":0.7},{"charge":"mullet","t":"argent","p":"e","size":0.35}],"shield":"oldFrench"},"pole":[661,306]},{"i":182,"state":13,"center":1501,"burg":0,"name":"Aulatia","formName":"Islands","fullName":"Aulatia Islands","color":"#91eaaa","coa":{"t1":"gules","charges":[{"charge":"camel","t":"argent","p":"e","t2":"argent","size":1.4},{"charge":"trianglePierced","t":"gules","p":"y","size":0.5}],"ordinaries":[{"ordinary":"canton","t":"argent"}],"shield":"swiss"},"pole":[401,263]},{"i":183,"state":15,"center":1987,"burg":205,"name":"New Getia","formName":"Colony","fullName":"New Getia Colony","color":"#efb7d8","coa":{"t1":"pally-or-azure","ordinaries":[{"ordinary":"bordure","t":"gules"},{"ordinary":"canton","t":"purpure"}],"charges":[{"charge":"deerHeadCaboshed","t":"or","p":"ABCDEFGHIJKL","t2":"or","size":0.18},{"charge":"cock","t":"argent","p":"y","size":0.5}],"shield":"swiss"},"pole":[255,319]},{"i":184,"state":15,"center":2531,"burg":187,"name":"Myrikland","formName":"Territory","fullName":"Myrikland Territory","color":"#faa9d1","coa":{"t1":"purpure","division":{"division":"perPale","t":"or","line":"straight"},"charges":[{"charge":"elephantHeadErased","t":"argent","p":"p","t2":"argent","size":0.7},{"charge":"horsePassant","t":"gules","p":"q","size":0.7},{"charge":"cock","t":"purpure","p":"y","size":0.5}],"ordinaries":[{"ordinary":"canton","t":"argent"}],"shield":"oldFrench"},"pole":[391,414]},{"i":185,"state":15,"center":3673,"burg":0,"name":"Laudens","formName":"Island","fullName":"Laudens Island","color":"#e491ee","coa":{"t1":"gules","charges":[{"charge":"crossHummetty","t":"or","p":"e","size":1.4},{"charge":"cock","t":"purpure","p":"y","size":0.5}],"ordinaries":[{"ordinary":"canton","t":"barry-purpure-or"}],"shield":"spanish"},"pole":[412,498]},{"i":186,"state":16,"center":6423,"burg":611,"name":"Kwaiwangon","formName":"Territory","fullName":"Kwaiwangon Territory","color":"#dbd574","coa":{"t1":"argent","charges":[{"charge":"heron","t":"sable","p":"e","t2":"sable","size":1.5}],"shield":"heater"},"pole":[298,789]},{"i":187,"state":16,"center":3979,"burg":0,"name":"Trimel","formName":"Island","fullName":"Trimel Island","color":"#d9dc70","coa":{"t1":"gules","ordinaries":[{"ordinary":"pall","t":"argent"},{"ordinary":"canton","t":"argent"}],"charges":[{"charge":"triangle","t":"sable","p":"lh","size":0.5},{"charge":"crossHummetty","t":"vert","p":"y","size":0.5}],"shield":"spanish"},"pole":[404,524]},{"i":188,"state":18,"center":5272,"burg":598,"name":"Gohautia","formName":"Territory","fullName":"Gohautia Territory","color":"#ebe170","coa":{"t1":"gules","division":{"division":"perCross","t":"or","line":"straight"},"charges":[{"charge":"anchor","t":"argent","p":"o","divided":"counter","size":0.7},{"charge":"lymphad","t":"gules","p":"y","size":0.5}],"ordinaries":[{"ordinary":"canton","t":"argent"}],"shield":"gonfalon"},"pole":[1244,632]},{"i":189,"state":19,"center":6946,"burg":645,"name":"Rhithelos","formName":"Land","fullName":"Rhithelos Land","color":"#70cbd8","coa":{"t1":"or","charges":[{"charge":"anchor","t":"gules","p":"e","size":1.4},{"charge":"rustre","t":"argent","p":"y","size":0.5}],"ordinaries":[{"ordinary":"canton","t":"vert"}],"shield":"gonfalon"},"pole":[674,817]},{"i":190,"state":19,"center":3405,"burg":0,"name":"New Iatece","formName":"Colony","fullName":"New Iatece Colony","color":"#8edcba","coa":{"t1":"azure","charges":[{"charge":"column","t":"argent","p":"e","size":1.4},{"charge":"rustre","t":"vert","p":"y","size":0.5}],"ordinaries":[{"ordinary":"canton","t":"argent"}],"shield":"round"},"pole":[807,572]},{"i":191,"state":19,"center":4938,"burg":0,"name":"Chihuaculco","formName":"Territory","fullName":"Chihuaculco Territory","color":"#82b5ce","coa":{"t1":"gules","ordinaries":[{"ordinary":"terrace","t":"or","line":"invecked"}],"charges":[{"charge":"crossHummetty","t":"or","p":"e","size":1.5}],"shield":"wedged"},"pole":[539,600]}]
+German|5|12|lt|0|/English|6|11||0.1|/French|5|13|nlrs|0.1|/Italian|5|12|cltr|0.1|/Castillian|5|11|lr|0|/Ruthenian|5|10||0|/Nordic|6|10|kln|0.1|/Greek|5|11|s|0.1|/Roman|6|11|ln|0.1|/Finnic|5|11|akiut|0|/Korean|5|11||0|/Chinese|5|10||0|/Japanese|4|10||0|/Portuguese|5|11||0.1|/Nahuatl|6|13|l|0|/Hungarian|6|13||0.1|/Turkish|4|10||0|/Berber|4|10|s|0.2|/Arabic|4|9|ae|0.2|/Inuit|5|15|alutsn|0|/Basque|4|11|r|0.1|/Nigerian|4|10||0.3|/Celtic|4|12|nld|0|/Mesopotamian|4|9|srpl|0.1|/Iranian|5|11||0.1|/Hawaiian|5|10|auo|1|/Karnataka|5|11|tnl|0|/Quechua|6|12|l|0|/Swahili|4|9||0|/Vietnamese|3|12||1|/Cantonese|5|11||0|/Mongolian|5|12|aou|0.3|/Human Generic|6|11|peolst|0|/Elven|6|12|lenmsrg|0|/Dark Elven|6|14|nrslamg|0.2|/Dwarven|4|11|dk|0|/Goblin|4|9|eag|0|/Orc|4|8|gzrcu|0|/Giant|5|10|kdtng|0|/Draconic|6|14|aliuszrox|0|/Arachnid|4|10|erlsk|0|/Serpents|5|11|slrk|0|/Levantine|4|12|ankprs|0|
+[{"i":2,"source":6908,"mouth":6903,"discharge":1066,"length":118.83,"width":0.34,"widthFactor":1.2,"sourceWidth":0.16,"parent":2,"cells":[6908,6907,7026,7025,7024,7137,7023,6903,7020],"basin":2,"name":"Ngauping","type":"River"},{"i":3,"source":5691,"mouth":4750,"discharge":1371,"length":153.68,"width":0.35,"widthFactor":1,"sourceWidth":0.19,"parent":4,"cells":[5691,5573,5574,5575,5458,5339,5340,5059,4904,4903,4750,4589],"basin":4,"name":"Lungongmun","type":"Fork"},{"i":4,"source":6665,"mouth":3471,"discharge":4224,"length":438.08,"width":1.15,"widthFactor":1.2,"sourceWidth":0.13,"parent":0,"cells":[6665,6664,6539,6416,6296,6171,6050,6051,6052,6053,5935,5816,5817,5700,5701,5583,5464,5344,5343,5202,5061,4905,4752,4590,4589,4588,4426,4273,4104,3952,3795,3636,3471,3469],"basin":4,"name":"Nelbaz","type":"River"},{"i":5,"source":5448,"mouth":5565,"discharge":160,"length":19.66,"width":0.09,"widthFactor":1.2,"sourceWidth":0.14,"parent":0,"cells":[5448,5565,5680],"basin":5,"name":"Lukfung","type":"River"},{"i":6,"source":7262,"mouth":5952,"discharge":2734,"length":232.95,"width":0.83,"widthFactor":1.2,"sourceWidth":0.27,"parent":0,"cells":[7262,7146,7033,7034,6916,6799,6800,6802,6679,6555,6432,6313,6188,6189,6190,6069,5952,5834],"basin":6,"name":"Maracenda","type":"River"},{"i":7,"source":6910,"mouth":6187,"discharge":835,"length":182.03,"width":0.29,"widthFactor":1,"sourceWidth":0.17,"parent":6,"cells":[6910,6792,6669,6670,6671,6672,6548,6549,6427,6428,6429,6310,6311,6187,6188],"basin":6,"name":"Olsneske","type":"River"},{"i":9,"source":7382,"mouth":7383,"discharge":345,"length":21.83,"width":0.1,"widthFactor":1.2,"sourceWidth":0.19,"parent":0,"cells":[7382,7383,-1],"basin":9,"name":"Weisental","type":"River"},{"i":10,"source":7202,"mouth":7320,"discharge":227,"length":25.45,"width":0.12,"widthFactor":1.2,"sourceWidth":0.18,"parent":0,"cells":[7202,7320,7429],"basin":10,"name":"Palyraris","type":"River"},{"i":16,"source":6046,"mouth":6165,"discharge":229,"length":48.48,"width":0.18,"widthFactor":1.2,"sourceWidth":0.2,"parent":0,"cells":[6046,6045,6165,6164],"basin":16,"name":"Heung","type":"River"},{"i":18,"source":5192,"mouth":4892,"discharge":338,"length":77.32,"width":0.1,"widthFactor":1,"sourceWidth":0.05,"parent":72,"cells":[5192,5051,5050,5049,4892,4891],"basin":72,"name":"Lukgongping","type":"Fork"},{"i":19,"source":6300,"mouth":6054,"discharge":203,"length":42.78,"width":0.14,"widthFactor":1,"sourceWidth":0.2,"parent":4,"cells":[6300,6175,6054,6053],"basin":4,"name":"Sheunfaui","type":"River"},{"i":20,"source":5451,"mouth":5924,"discharge":207,"length":68.82,"width":0.12,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[5451,5570,5687,5804,5923,5924,6040],"basin":20,"name":"Kamgongwu","type":"River"},{"i":25,"source":2979,"mouth":2983,"discharge":387,"length":43.23,"width":0.24,"widthFactor":1.2,"sourceWidth":0.26,"parent":0,"cells":[2979,2980,2983,2985],"basin":25,"name":"Smyrgiphid","type":"River"},{"i":26,"source":5322,"mouth":5442,"discharge":238,"length":23.88,"width":0.15,"widthFactor":1.2,"sourceWidth":0.24,"parent":0,"cells":[5322,5442,5556],"basin":26,"name":"Tseun","type":"River"},{"i":27,"source":5183,"mouth":5317,"discharge":131,"length":34.11,"width":0.09,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[5183,5182,5317,-1],"basin":27,"name":"Toishatsau","type":"River"},{"i":28,"source":6911,"mouth":6312,"discharge":173,"length":150.04,"width":0.11,"widthFactor":1,"sourceWidth":0.05,"parent":7,"cells":[6911,6912,6913,6914,6915,6798,6676,6553,6431,6312,6188],"basin":6,"name":"Nevels","type":"River"},{"i":29,"source":4583,"mouth":3947,"discharge":908,"length":94.57,"width":0.39,"widthFactor":1.2,"sourceWidth":0.28,"parent":0,"cells":[4583,4423,4422,4269,4099,4098,4097,3947,3789],"basin":29,"name":"Gamtin","type":"River"},{"i":32,"source":3937,"mouth":4091,"discharge":128,"length":34.2,"width":0.07,"widthFactor":1,"sourceWidth":0.05,"parent":72,"cells":[3937,4090,4091,4259],"basin":72,"name":"Yengyuehoi","type":"River"},{"i":35,"source":5337,"mouth":5456,"discharge":39,"length":20.07,"width":0.02,"widthFactor":1,"sourceWidth":0.04,"parent":3,"cells":[5337,5456,5574],"basin":4,"name":"Howupingwa","type":"River"},{"i":37,"source":3177,"mouth":3419,"discharge":677,"length":43.98,"width":0.28,"widthFactor":1.2,"sourceWidth":0.24,"parent":0,"cells":[3177,3287,3419,3421],"basin":37,"name":"Elolyntrea","type":"River"},{"i":38,"source":2486,"mouth":2487,"discharge":304,"length":20.89,"width":0.18,"widthFactor":1.2,"sourceWidth":0.28,"parent":0,"cells":[2486,2487,2489],"basin":38,"name":"Myolis","type":"River"},{"i":42,"source":5811,"mouth":5576,"discharge":382,"length":37.43,"width":0.16,"widthFactor":1,"sourceWidth":0.19,"parent":3,"cells":[5811,5694,5576,5458],"basin":4,"name":"Funghomtei","type":"Fork"},{"i":43,"source":6170,"mouth":6412,"discharge":147,"length":58.6,"width":0.1,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[6170,6169,6294,6413,6412,6533],"basin":43,"name":"Sheklo","type":"River"},{"i":44,"source":5331,"mouth":5189,"discharge":116,"length":22.03,"width":0.04,"widthFactor":1,"sourceWidth":0.05,"parent":18,"cells":[5331,5189,5049],"basin":72,"name":"Tsuen","type":"River"},{"i":46,"source":7435,"mouth":7111,"discharge":1818,"length":238.91,"width":0.63,"widthFactor":1.2,"sourceWidth":0.25,"parent":0,"cells":[7435,7331,7212,7098,6983,6867,6752,6624,6626,6627,6628,6757,6873,6874,6992,7111,7224],"basin":46,"name":"Acherwihl","type":"River"},{"i":47,"source":1726,"mouth":1725,"discharge":80,"length":23.11,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[1726,1725,1815],"basin":47,"name":"Vallanker","type":"River"},{"i":55,"source":2273,"mouth":2372,"discharge":173,"length":30.46,"width":0.06,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[2273,2372,2460],"basin":55,"name":"Laugarholt","type":"River"},{"i":56,"source":1343,"mouth":1342,"discharge":99,"length":28.37,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[1343,1342,1341],"basin":56,"name":"Vopendodin","type":"River"},{"i":57,"source":3161,"mouth":3270,"discharge":106,"length":21.2,"width":0.03,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[3161,3270,3269],"basin":57,"name":"Tlaxco","type":"River"},{"i":62,"source":7094,"mouth":7097,"discharge":183,"length":59.19,"width":0.08,"widthFactor":1,"sourceWidth":0.05,"parent":46,"cells":[7094,7095,7096,7097,7098],"basin":46,"name":"Mormis","type":"River"},{"i":64,"source":5197,"mouth":5199,"discharge":83,"length":24.84,"width":0.06,"widthFactor":1,"sourceWidth":0.06,"parent":3,"cells":[5197,5198,5199,5059],"basin":4,"name":"Longchau","type":"River"},{"i":66,"source":4314,"mouth":4474,"discharge":134,"length":31.33,"width":0.09,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[4314,4473,4474,4638],"basin":66,"name":"Coanaca","type":"River"},{"i":69,"source":4330,"mouth":4174,"discharge":127,"length":54.12,"width":0.09,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[4330,4329,4176,4174,4172],"basin":69,"name":"Tomulpan","type":"River"},{"i":70,"source":7200,"mouth":6737,"discharge":411,"length":80.47,"width":0.3,"widthFactor":1.2,"sourceWidth":0.29,"parent":0,"cells":[7200,7199,7087,6971,6854,6737,6607],"basin":70,"name":"Marmetos","type":"River"},{"i":71,"source":1629,"mouth":1432,"discharge":161,"length":34.12,"width":0.09,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[1629,1530,1432,1430],"basin":71,"name":"Silder","type":"River"},{"i":72,"source":4889,"mouth":4257,"discharge":1721,"length":155.05,"width":0.4,"widthFactor":1.2,"sourceWidth":0.05,"parent":72,"cells":[4889,5045,5046,5047,4891,4737,4576,4575,4413,4259,4259,4258,4257,-1],"basin":72,"name":"Hungshun","type":"River"},{"i":75,"source":6301,"mouth":6302,"discharge":61,"length":24.06,"width":0.04,"widthFactor":1,"sourceWidth":0.06,"parent":97,"cells":[6301,6302,6178],"basin":4,"name":"Lamtin","type":"Fork"},{"i":76,"source":804,"mouth":803,"discharge":85,"length":19.39,"width":0.03,"widthFactor":1,"sourceWidth":0.07,"parent":253,"cells":[804,803,802],"basin":253,"name":"Brugar","type":"River"},{"i":78,"source":6785,"mouth":6902,"discharge":186,"length":17.87,"width":0.09,"widthFactor":1,"sourceWidth":0.17,"parent":2,"cells":[6785,6902,6903],"basin":2,"name":"Luknamwan","type":"Branch"},{"i":80,"source":5566,"mouth":5682,"discharge":82,"length":15.89,"width":0.03,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[5566,5682,5680],"basin":80,"name":"Yongshui","type":"Brook"},{"i":81,"source":533,"mouth":890,"discharge":364,"length":82.17,"width":0.15,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[533,617,696,787,786,889,890,888],"basin":81,"name":"Biflaber","type":"River"},{"i":82,"source":2356,"mouth":2355,"discharge":125,"length":25.36,"width":0.06,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[2356,2355,2253],"basin":82,"name":"Tzompazacahu","type":"River"},{"i":83,"source":2671,"mouth":2578,"discharge":185,"length":40.13,"width":0.11,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[2671,2674,2578,2490],"basin":83,"name":"Bythos","type":"River"},{"i":86,"source":4900,"mouth":4748,"discharge":77,"length":24.75,"width":0.05,"widthFactor":1,"sourceWidth":0.09,"parent":141,"cells":[4900,4748,4587],"basin":4,"name":"Simshuiwan","type":"River"},{"i":87,"source":4580,"mouth":4266,"discharge":145,"length":45.27,"width":0.08,"widthFactor":1,"sourceWidth":0.09,"parent":29,"cells":[4580,4419,4266,4097],"basin":29,"name":"Ching","type":"Fork"},{"i":91,"source":1121,"mouth":1231,"discharge":293,"length":34.54,"width":0.21,"widthFactor":1.2,"sourceWidth":0.23,"parent":0,"cells":[1121,1230,1231,1233],"basin":91,"name":"Blondoya","type":"River"},{"i":92,"source":5512,"mouth":5636,"discharge":144,"length":41.41,"width":0.09,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[5512,5513,5636,5752],"basin":92,"name":"Longhoi","type":"River"},{"i":93,"source":2774,"mouth":2775,"discharge":88,"length":24,"width":0.04,"widthFactor":1.2,"sourceWidth":0.09,"parent":0,"cells":[2774,2775,2878],"basin":93,"name":"Seleuraly","type":"River"},{"i":94,"source":453,"mouth":299,"discharge":238,"length":67,"width":0.11,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[453,376,375,299,242],"basin":94,"name":"Stokvik","type":"River"},{"i":95,"source":7265,"mouth":6920,"discharge":243,"length":96.89,"width":0.12,"widthFactor":1,"sourceWidth":0.09,"parent":6,"cells":[7265,7266,7267,7268,7152,7039,6920,6802],"basin":6,"name":"Grenburg","type":"River"},{"i":96,"source":7035,"mouth":6801,"discharge":117,"length":59.8,"width":0.07,"widthFactor":1,"sourceWidth":0.05,"parent":6,"cells":[7035,6917,6918,6801,6802],"basin":6,"name":"Dottinfel","type":"Fork"},{"i":97,"source":6423,"mouth":5702,"discharge":425,"length":102.38,"width":0.12,"widthFactor":1,"sourceWidth":0.04,"parent":4,"cells":[6423,6303,6178,6056,5939,5819,5702,5701],"basin":4,"name":"Honing","type":"River"},{"i":98,"source":458,"mouth":459,"discharge":86,"length":25.6,"width":0.04,"widthFactor":1,"sourceWidth":0.06,"parent":101,"cells":[458,459,537],"basin":101,"name":"Odopasan","type":"River"},{"i":100,"source":612,"mouth":776,"discharge":212,"length":62.01,"width":0.12,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[612,692,691,777,776,879],"basin":100,"name":"Lautar","type":"River"},{"i":101,"source":701,"mouth":540,"discharge":573,"length":78.98,"width":0.18,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[701,621,537,538,539,541,540,544],"basin":101,"name":"Felheisey","type":"River"},{"i":102,"source":5925,"mouth":6042,"discharge":53,"length":23.14,"width":0.04,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[5925,6042,6162],"basin":102,"name":"Wancheung","type":"River"},{"i":103,"source":1618,"mouth":1718,"discharge":68,"length":20.79,"width":0.04,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[1618,1718,1719],"basin":103,"name":"Kansvika","type":"River"},{"i":105,"source":2453,"mouth":2545,"discharge":134,"length":29.54,"width":0.06,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[2453,2545,2636],"basin":105,"name":"Culalco","type":"River"},{"i":106,"source":3893,"mouth":3748,"discharge":94,"length":20.19,"width":0.04,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[3893,3748,3746],"basin":106,"name":"Ngchu","type":"River"},{"i":107,"source":1626,"mouth":1724,"discharge":93,"length":17.97,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[1626,1724,1815],"basin":107,"name":"Kjerstad","type":"Creek"},{"i":117,"source":650,"mouth":493,"discharge":149,"length":57.56,"width":0.07,"widthFactor":1,"sourceWidth":0.05,"parent":126,"cells":[650,566,492,493,421],"basin":126,"name":"Otondolis","type":"Fork"},{"i":118,"source":414,"mouth":99,"discharge":302,"length":80.02,"width":0.14,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[414,341,272,271,212,155,99,59],"basin":118,"name":"Caushead","type":"River"},{"i":119,"source":451,"mouth":298,"discharge":122,"length":34.58,"width":0.09,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[451,374,298,241],"basin":119,"name":"Opeid","type":"River"},{"i":120,"source":7206,"mouth":7326,"discharge":102,"length":25.46,"width":0.04,"widthFactor":1,"sourceWidth":0.07,"parent":502,"cells":[7206,7326,7325],"basin":502,"name":"Imbla","type":"Fork"},{"i":121,"source":1715,"mouth":1717,"discharge":68,"length":20.73,"width":0.04,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[1715,1717,1720],"basin":121,"name":"Vasker","type":"River"},{"i":122,"source":3616,"mouth":3453,"discharge":110,"length":17.83,"width":0.06,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[3616,3453,3321],"basin":122,"name":"Namchaifong","type":"Creek"},{"i":126,"source":415,"mouth":425,"discharge":570,"length":143.13,"width":0.23,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[415,416,417,418,345,346,420,421,422,423,425,499],"basin":126,"name":"Byperapo","type":"River"},{"i":127,"source":636,"mouth":402,"discharge":251,"length":67.44,"width":0.13,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[636,637,638,554,478,402,400],"basin":127,"name":"Sonexedon","type":"River"},{"i":129,"source":698,"mouth":697,"discharge":62,"length":21.18,"width":0.04,"widthFactor":1,"sourceWidth":0.06,"parent":81,"cells":[698,697,696],"basin":81,"name":"Gjelanes","type":"Fork"},{"i":130,"source":1117,"mouth":998,"discharge":257,"length":44.18,"width":0.12,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[1117,1223,1116,998,887],"basin":130,"name":"Bollurdaku","type":"River"},{"i":131,"source":5397,"mouth":5757,"discharge":170,"length":74.7,"width":0.1,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[5397,5514,5638,5756,5757,5758],"basin":131,"name":"Muifo","type":"River"},{"i":132,"source":693,"mouth":784,"discharge":177,"length":32.95,"width":0.1,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[693,783,784,888],"basin":132,"name":"Drangnan","type":"River"},{"i":133,"source":5686,"mouth":5801,"discharge":53,"length":23.4,"width":0.04,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[5686,5801,5799],"basin":133,"name":"Duenchau","type":"River"},{"i":134,"source":3783,"mouth":3942,"discharge":75,"length":36.35,"width":0.03,"widthFactor":1,"sourceWidth":0.05,"parent":201,"cells":[3783,3942,4094],"basin":72,"name":"Lingshui","type":"River"},{"i":140,"source":7384,"mouth":7385,"discharge":355,"length":20.95,"width":0.11,"widthFactor":1.2,"sourceWidth":0.21,"parent":0,"cells":[7384,7385,-1],"basin":140,"name":"Dornsruten","type":"River"},{"i":141,"source":5057,"mouth":4587,"discharge":182,"length":59.26,"width":0.09,"widthFactor":1,"sourceWidth":0.07,"parent":4,"cells":[5057,4901,4749,4587,4426],"basin":4,"name":"Motanfung","type":"Fork"},{"i":143,"source":1421,"mouth":1420,"discharge":86,"length":18.73,"width":0.04,"widthFactor":1,"sourceWidth":0.07,"parent":316,"cells":[1421,1420,1419],"basin":316,"name":"Flaksmy","type":"Creek"},{"i":144,"source":7089,"mouth":6740,"discharge":465,"length":53.18,"width":0.29,"widthFactor":1.2,"sourceWidth":0.29,"parent":0,"cells":[7089,6974,6857,6740,6609],"basin":144,"name":"Traparos","type":"River"},{"i":145,"source":640,"mouth":481,"discharge":64,"length":31.16,"width":0.03,"widthFactor":1,"sourceWidth":0.05,"parent":158,"cells":[640,481,408],"basin":158,"name":"Watbury","type":"River"},{"i":146,"source":6291,"mouth":6289,"discharge":76,"length":27.34,"width":0.04,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[6291,6289,6409],"basin":146,"name":"Yeung","type":"River"},{"i":147,"source":2875,"mouth":2981,"discharge":75,"length":25.93,"width":0.03,"widthFactor":1,"sourceWidth":0.05,"parent":25,"cells":[2875,2981,2983],"basin":25,"name":"Mulairos","type":"Fork"},{"i":148,"source":3646,"mouth":3648,"discharge":106,"length":21.8,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[3646,3648,3649],"basin":148,"name":"Kwong","type":"River"},{"i":157,"source":652,"mouth":572,"discharge":204,"length":65.84,"width":0.12,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[652,653,570,571,572,499],"basin":157,"name":"Metropene","type":"River"},{"i":158,"source":413,"mouth":334,"discharge":894,"length":99.82,"width":0.22,"widthFactor":1.2,"sourceWidth":0.04,"parent":158,"cells":[413,412,338,410,408,407,336,334,265],"basin":158,"name":"Bidesowey","type":"River"},{"i":159,"source":1137,"mouth":1018,"discharge":149,"length":44.35,"width":0.09,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[1137,1019,1018,1133],"basin":159,"name":"Kordurdur","type":"River"},{"i":160,"source":1224,"mouth":1329,"discharge":222,"length":50.03,"width":0.11,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[1224,1327,1328,1329,1331],"basin":160,"name":"Stamskif","type":"River"},{"i":161,"source":4320,"mouth":4317,"discharge":84,"length":17.21,"width":0.03,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[4320,4317,4163],"basin":161,"name":"Nautenamotlan","type":"Creek"},{"i":162,"source":4319,"mouth":4322,"discharge":114,"length":19.71,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[4319,4322,4481],"basin":162,"name":"Chilac","type":"River"},{"i":169,"source":252,"mouth":138,"discharge":128,"length":40.28,"width":0.11,"widthFactor":1.2,"sourceWidth":0.1,"parent":0,"cells":[252,191,138,140],"basin":169,"name":"Sudbuton","type":"River"},{"i":170,"source":6425,"mouth":6182,"discharge":67,"length":46.04,"width":0.06,"widthFactor":1,"sourceWidth":0.05,"parent":294,"cells":[6425,6306,6182,6061],"basin":6,"name":"Schildach","type":"River"},{"i":172,"source":2961,"mouth":2960,"discharge":54,"length":31.22,"width":0.04,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[2961,2960,2958],"basin":172,"name":"Cueyoacoto","type":"River"},{"i":173,"source":1238,"mouth":1134,"discharge":93,"length":27.53,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[1238,1134,1235],"basin":173,"name":"Nesetrand","type":"River"},{"i":179,"source":6978,"mouth":6495,"discharge":115,"length":64.25,"width":0.11,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[6978,6862,6745,6617,6495,6369],"basin":179,"name":"Lintira","type":"River"},{"i":180,"source":4049,"mouth":4531,"discharge":221,"length":59.99,"width":0.12,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[4049,4050,4212,4374,4531,4697],"basin":180,"name":"Kwongwunhui","type":"River"},{"i":181,"source":7427,"mouth":7428,"discharge":328,"length":27.64,"width":0.1,"widthFactor":1.2,"sourceWidth":0.21,"parent":0,"cells":[7427,7428,-1],"basin":181,"name":"Amphidaura","type":"River"},{"i":182,"source":5684,"mouth":5683,"discharge":127,"length":24.34,"width":0.07,"widthFactor":1.2,"sourceWidth":0.1,"parent":0,"cells":[5684,5683,5798],"basin":182,"name":"Kaukeng","type":"River"},{"i":183,"source":1319,"mouth":1318,"discharge":120,"length":20,"width":0.06,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[1319,1318,1317],"basin":183,"name":"Raupigenes","type":"River"},{"i":184,"source":152,"mouth":208,"discharge":96,"length":19.56,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[152,208,207],"basin":184,"name":"Bramplerid","type":"River"},{"i":186,"source":2039,"mouth":2148,"discharge":122,"length":28.61,"width":0.06,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[2039,2148,2147],"basin":186,"name":"Ivodores","type":"River"},{"i":187,"source":4681,"mouth":4514,"discharge":86,"length":25.09,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[4681,4514,4356],"basin":187,"name":"Polis","type":"River"},{"i":196,"source":6674,"mouth":6550,"discharge":77,"length":26.74,"width":0.04,"widthFactor":1,"sourceWidth":0.06,"parent":7,"cells":[6674,6550,6428],"basin":6,"name":"Alrosinbach","type":"River"},{"i":197,"source":383,"mouth":461,"discharge":114,"length":38.69,"width":0.06,"widthFactor":1,"sourceWidth":0.05,"parent":101,"cells":[383,384,461,539],"basin":101,"name":"Oyarasvina","type":"River"},{"i":199,"source":160,"mouth":100,"discharge":253,"length":80.56,"width":0.13,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[160,159,158,157,156,100,59],"basin":199,"name":"Brastorough","type":"River"},{"i":201,"source":4417,"mouth":4261,"discharge":354,"length":70.84,"width":0.13,"widthFactor":1,"sourceWidth":0.12,"parent":72,"cells":[4417,4264,4094,4093,4261,4413],"basin":72,"name":"Wancheong","type":"Fork"},{"i":202,"source":4210,"mouth":4528,"discharge":74,"length":44.7,"width":0.08,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[4210,4373,4528,4697],"basin":202,"name":"Ching","type":"River"},{"i":203,"source":3253,"mouth":3381,"discharge":109,"length":36.26,"width":0.09,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[3253,3380,3381,3532],"basin":203,"name":"Tlahualtepea","type":"River"},{"i":204,"source":1007,"mouth":1009,"discharge":78,"length":16.33,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[1007,1009,1125],"basin":204,"name":"Bringsnes","type":"Brook"},{"i":206,"source":6660,"mouth":6658,"discharge":249,"length":24.36,"width":0.16,"widthFactor":1.2,"sourceWidth":0.26,"parent":0,"cells":[6660,6658,6657],"basin":206,"name":"Tsinwailoi","type":"River"},{"i":208,"source":1532,"mouth":1434,"discharge":121,"length":23.41,"width":0.05,"widthFactor":1.2,"sourceWidth":0.09,"parent":0,"cells":[1532,1434,1339],"basin":208,"name":"Nesrey","type":"River"},{"i":220,"source":535,"mouth":536,"discharge":95,"length":27.03,"width":0.04,"widthFactor":1,"sourceWidth":0.07,"parent":101,"cells":[535,536,537],"basin":101,"name":"Vastad","type":"River"},{"i":221,"source":6335,"mouth":5849,"discharge":218,"length":69.53,"width":0.13,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[6335,6213,6092,5970,5849,5726],"basin":221,"name":"Temenion","type":"River"},{"i":222,"source":6574,"mouth":6823,"discharge":258,"length":49.95,"width":0.12,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[6574,6699,6822,6823,6824],"basin":222,"name":"Mornapodos","type":"River"},{"i":223,"source":5399,"mouth":5518,"discharge":95,"length":42.39,"width":0.08,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[5399,5516,5518,5758],"basin":223,"name":"Longchung","type":"River"},{"i":224,"source":3386,"mouth":3387,"discharge":82,"length":21.61,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[3386,3387,3260],"basin":224,"name":"Michnacoluca","type":"River"},{"i":225,"source":3388,"mouth":3390,"discharge":117,"length":22.33,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[3388,3390,3391],"basin":225,"name":"Alyacucacat","type":"River"},{"i":226,"source":4650,"mouth":4649,"discharge":87,"length":22.18,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[4650,4649,4648],"basin":226,"name":"Tihuatlpuaut","type":"River"},{"i":227,"source":4999,"mouth":4997,"discharge":99,"length":22.08,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[4999,4997,4994],"basin":227,"name":"Jiunyiu","type":"River"},{"i":228,"source":1378,"mouth":1279,"discharge":154,"length":29.38,"width":0.09,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[1378,1281,1279,1177],"basin":228,"name":"Jukha","type":"River"},{"i":229,"source":2406,"mouth":2310,"discharge":177,"length":27.72,"width":0.07,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[2406,2310,2306],"basin":229,"name":"Zaies","type":"River"},{"i":237,"source":6977,"mouth":6368,"discharge":191,"length":79.8,"width":0.13,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[6977,6861,6744,6616,6493,6368,6243],"basin":237,"name":"Orcholis","type":"River"},{"i":239,"source":6976,"mouth":6858,"discharge":124,"length":32.39,"width":0.08,"widthFactor":1,"sourceWidth":0.09,"parent":144,"cells":[6976,6859,6858,6857],"basin":144,"name":"Kales","type":"River"},{"i":241,"source":551,"mouth":470,"discharge":306,"length":66.11,"width":0.14,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[551,473,549,548,470,393],"basin":241,"name":"Dalland","type":"River"},{"i":243,"source":6460,"mouth":6218,"discharge":194,"length":50.12,"width":0.1,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[6460,6461,6339,6218,6097],"basin":243,"name":"Hyebeia","type":"River"},{"i":244,"source":3940,"mouth":4092,"discharge":70,"length":29.6,"width":0.03,"widthFactor":1,"sourceWidth":0.05,"parent":201,"cells":[3940,4092,4261],"basin":72,"name":"Tsingmun","type":"River"},{"i":245,"source":450,"mouth":297,"discharge":153,"length":27.95,"width":0.07,"widthFactor":1.2,"sourceWidth":0.1,"parent":0,"cells":[450,297,240],"basin":245,"name":"Goverver","type":"River"},{"i":246,"source":5633,"mouth":5635,"discharge":140,"length":25.9,"width":0.06,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[5633,5635,5750],"basin":246,"name":"Tinshanling","type":"River"},{"i":250,"source":1819,"mouth":1926,"discharge":352,"length":47.33,"width":0.16,"widthFactor":1.2,"sourceWidth":0.12,"parent":0,"cells":[1819,1818,1928,1926,1924],"basin":250,"name":"Braunahlid","type":"River"},{"i":252,"source":4747,"mouth":4586,"discharge":89,"length":36.39,"width":0.04,"widthFactor":1,"sourceWidth":0.06,"parent":4,"cells":[4747,4586,4426],"basin":4,"name":"Tsinghau","type":"Fork"},{"i":253,"source":1021,"mouth":631,"discharge":386,"length":62.06,"width":0.15,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[1021,904,903,802,631,629],"basin":253,"name":"Kvinobyg","type":"River"},{"i":254,"source":7437,"mouth":7332,"discharge":265,"length":34.43,"width":0.15,"widthFactor":1,"sourceWidth":0.28,"parent":46,"cells":[7437,7332,7212],"basin":46,"name":"Lazujhe","type":"River"},{"i":255,"source":4693,"mouth":4845,"discharge":181,"length":42.05,"width":0.09,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[4693,4846,4845,4847],"basin":255,"name":"Taihang","type":"River"},{"i":257,"source":4798,"mouth":5105,"discharge":112,"length":25.47,"width":0.09,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[4798,5103,5105,5242],"basin":257,"name":"Teyacatlalco","type":"River"},{"i":258,"source":7207,"mouth":7330,"discharge":101,"length":44.41,"width":0.06,"widthFactor":1,"sourceWidth":0.05,"parent":46,"cells":[7207,7209,7330,7331],"basin":46,"name":"Epinaion","type":"Fork"},{"i":259,"source":770,"mouth":768,"discharge":79,"length":12.69,"width":0.03,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[770,768,683],"basin":259,"name":"Batita","type":"River"},{"i":267,"source":7386,"mouth":7387,"discharge":357,"length":22.22,"width":0.11,"widthFactor":1.2,"sourceWidth":0.21,"parent":0,"cells":[7386,7387,-1],"basin":267,"name":"Bilerken","type":"River"},{"i":268,"source":6331,"mouth":6205,"discharge":185,"length":57.88,"width":0.11,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[6331,6330,6329,6328,6205,6325],"basin":268,"name":"Magricear","type":"River"},{"i":269,"source":7401,"mouth":7400,"discharge":404,"length":15.93,"width":0.12,"widthFactor":1.2,"sourceWidth":0.23,"parent":0,"cells":[7401,7400,-1],"basin":269,"name":"Soceaponia","type":"Creek"},{"i":273,"source":2322,"mouth":2211,"discharge":79,"length":17.48,"width":0.03,"widthFactor":1,"sourceWidth":0.05,"parent":448,"cells":[2322,2211,2210],"basin":448,"name":"Kesztmikbatas","type":"Branch"},{"i":274,"source":664,"mouth":582,"discharge":98,"length":17.49,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[664,582,580],"basin":274,"name":"Thyria","type":"Brook"},{"i":275,"source":1916,"mouth":1917,"discharge":47,"length":25.84,"width":0.04,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[1916,1917,1919],"basin":275,"name":"Selhustad","type":"River"},{"i":276,"source":1909,"mouth":1907,"discharge":111,"length":20.55,"width":0.04,"widthFactor":1,"sourceWidth":0.05,"parent":278,"cells":[1909,1907,1803],"basin":278,"name":"Hveneshofn","type":"Fork"},{"i":278,"source":1908,"mouth":1709,"discharge":1262,"length":66.86,"width":0.27,"widthFactor":1.2,"sourceWidth":0.05,"parent":278,"cells":[1908,1914,1915,1804,1803,1803,1709,1707],"basin":278,"name":"Hafting","type":"River"},{"i":279,"source":1911,"mouth":1905,"discharge":95,"length":19.75,"width":0.04,"widthFactor":1,"sourceWidth":0.05,"parent":278,"cells":[1911,1905,1803],"basin":278,"name":"Daldutodin","type":"Fork"},{"i":294,"source":6060,"mouth":6068,"discharge":395,"length":129.36,"width":0.16,"widthFactor":1,"sourceWidth":0.1,"parent":6,"cells":[6060,6061,6184,6063,6064,5947,6066,6067,6068,6069],"basin":6,"name":"Betagus","type":"Fork"},{"i":295,"source":4594,"mouth":4430,"discharge":86,"length":64.91,"width":0.07,"widthFactor":1,"sourceWidth":0.05,"parent":4,"cells":[4594,4593,4431,4430,4590],"basin":4,"name":"Lunglingkok","type":"River"},{"i":296,"source":106,"mouth":109,"discharge":150,"length":52.73,"width":0.1,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[106,107,108,109,70],"basin":296,"name":"Pantion","type":"River"},{"i":299,"source":3704,"mouth":3848,"discharge":96,"length":26.41,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[3704,3848,3999],"basin":299,"name":"Choyautecaca","type":"River"},{"i":300,"source":3544,"mouth":3545,"discharge":114,"length":31.94,"width":0.08,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[3544,3543,3545,3394],"basin":300,"name":"Cotihuatlco","type":"River"},{"i":302,"source":983,"mouth":982,"discharge":95,"length":25.93,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[983,982,871],"basin":302,"name":"Vememilia","type":"River"},{"i":303,"source":3183,"mouth":3085,"discharge":149,"length":14.64,"width":0.05,"widthFactor":1.2,"sourceWidth":0.09,"parent":0,"cells":[3183,3085,3086],"basin":303,"name":"Myopoporydo","type":"Creek"},{"i":304,"source":526,"mouth":525,"discharge":93,"length":29.42,"width":0.05,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[526,525,607],"basin":304,"name":"Rifjor","type":"River"},{"i":305,"source":1511,"mouth":1510,"discharge":113,"length":24.64,"width":0.06,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[1511,1510,1507],"basin":305,"name":"Lonsan","type":"River"},{"i":306,"source":4498,"mouth":4499,"discharge":55,"length":16.97,"width":0.03,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[4498,4499,4666],"basin":306,"name":"Liritakynt","type":"Stream"},{"i":313,"source":735,"mouth":933,"discharge":400,"length":121.07,"width":0.17,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[735,827,928,1046,1047,930,932,933,936],"basin":313,"name":"Rolis","type":"River"},{"i":314,"source":1044,"mouth":1045,"discharge":95,"length":26,"width":0.04,"widthFactor":1,"sourceWidth":0.07,"parent":313,"cells":[1044,1045,1046],"basin":313,"name":"Hela","type":"River"},{"i":316,"source":1615,"mouth":1219,"discharge":393,"length":78.98,"width":0.15,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[1615,1518,1419,1322,1219,1111],"basin":316,"name":"Jungen","type":"River"},{"i":325,"source":5706,"mouth":4918,"discharge":231,"length":103.88,"width":0.11,"widthFactor":1,"sourceWidth":0.05,"parent":464,"cells":[5706,5588,5471,5353,5212,5072,4917,4918,4765],"basin":464,"name":"Soltachwei","type":"River"},{"i":326,"source":211,"mouth":98,"discharge":132,"length":43.56,"width":0.1,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[211,154,98,59],"basin":326,"name":"Bretham","type":"River"},{"i":327,"source":6819,"mouth":7172,"discharge":189,"length":75.2,"width":0.11,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[6819,6937,7057,7171,7172,7291],"basin":327,"name":"Psychialy","type":"River"},{"i":329,"source":6090,"mouth":5848,"discharge":110,"length":35.56,"width":0.1,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[6090,5969,5848,5726],"basin":329,"name":"Neapitholis","type":"River"},{"i":330,"source":7403,"mouth":7404,"discharge":434,"length":19.16,"width":0.11,"widthFactor":1.2,"sourceWidth":0.2,"parent":0,"cells":[7403,7404,-1],"basin":330,"name":"Stymphyria","type":"River"},{"i":332,"source":2837,"mouth":3243,"discharge":328,"length":69.58,"width":0.13,"widthFactor":1.2,"sourceWidth":0.04,"parent":332,"cells":[2837,2946,3044,3044,3139,3244,3243,3367],"basin":332,"name":"Cucohuayucal","type":"River"},{"i":346,"source":6684,"mouth":6073,"discharge":205,"length":64.57,"width":0.11,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[6684,6438,6318,6193,6073,5958],"basin":346,"name":"Saterunda","type":"River"},{"i":347,"source":4598,"mouth":4601,"discharge":112,"length":52.52,"width":0.07,"widthFactor":1,"sourceWidth":0.06,"parent":464,"cells":[4598,4599,4600,4601,4763],"basin":464,"name":"Laufen","type":"River"},{"i":349,"source":2183,"mouth":2184,"discharge":115,"length":20.01,"width":0.06,"widthFactor":1.2,"sourceWidth":0.09,"parent":0,"cells":[2183,2184,2185],"basin":349,"name":"Nypesiapon","type":"River"},{"i":350,"source":7335,"mouth":7337,"discharge":80,"length":27.65,"width":0.04,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[7335,7337,7340],"basin":350,"name":"Kunhalmasber","type":"River"},{"i":351,"source":1105,"mouth":1211,"discharge":136,"length":23.49,"width":0.06,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[1105,1211,1314],"basin":351,"name":"Hoyaber","type":"River"},{"i":352,"source":2688,"mouth":2684,"discharge":74,"length":20.5,"width":0.04,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[2688,2684,2682],"basin":352,"name":"Nausis","type":"River"},{"i":362,"source":7388,"mouth":7391,"discharge":531,"length":68.14,"width":0.25,"widthFactor":1.2,"sourceWidth":0.22,"parent":0,"cells":[7388,7270,7271,7272,7391,-1],"basin":362,"name":"Artyn","type":"River"},{"i":363,"source":7389,"mouth":7390,"discharge":438,"length":21.22,"width":0.15,"widthFactor":1.2,"sourceWidth":0.27,"parent":0,"cells":[7389,7390,-1],"basin":363,"name":"Dolynthymna","type":"River"},{"i":365,"source":4585,"mouth":4100,"discharge":111,"length":56.51,"width":0.07,"widthFactor":1,"sourceWidth":0.07,"parent":29,"cells":[4585,4424,4270,4100,4099],"basin":29,"name":"Chunling","type":"River"},{"i":366,"source":4908,"mouth":4906,"discharge":51,"length":35.72,"width":0.06,"widthFactor":1,"sourceWidth":0.05,"parent":4,"cells":[4908,4907,4906,4752],"basin":4,"name":"Chiyaumamy","type":"Fork"},{"i":368,"source":5825,"mouth":5946,"discharge":55,"length":25.48,"width":0.04,"widthFactor":1,"sourceWidth":0.06,"parent":294,"cells":[5825,5946,5947],"basin":6,"name":"Royanes","type":"River"},{"i":371,"source":5001,"mouth":5145,"discharge":164,"length":34.66,"width":0.1,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[5001,5002,5143,5145,5281],"basin":371,"name":"Samtsui","type":"River"},{"i":372,"source":3536,"mouth":3535,"discharge":88,"length":20.76,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[3536,3535,3700],"basin":372,"name":"Michamatlate","type":"River"},{"i":373,"source":5278,"mouth":5279,"discharge":64,"length":16.46,"width":0.03,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[5278,5279,5281],"basin":373,"name":"Kauen","type":"Stream"},{"i":374,"source":3016,"mouth":2917,"discharge":120,"length":27.48,"width":0.05,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[3016,2917,2809],"basin":374,"name":"Hustad","type":"River"},{"i":377,"source":7350,"mouth":7229,"discharge":235,"length":39.72,"width":0.19,"widthFactor":1.2,"sourceWidth":0.22,"parent":0,"cells":[7350,7231,7228,7229,7226],"basin":377,"name":"Mullzachren","type":"River"},{"i":387,"source":5067,"mouth":5345,"discharge":106,"length":48.24,"width":0.07,"widthFactor":1,"sourceWidth":0.06,"parent":4,"cells":[5067,5206,5205,5345,5344],"basin":4,"name":"Bifrostbo","type":"Fork"},{"i":388,"source":5586,"mouth":5585,"discharge":63,"length":32.26,"width":0.03,"widthFactor":1,"sourceWidth":0.05,"parent":97,"cells":[5586,5585,5702],"basin":4,"name":"Klakksey","type":"River"},{"i":389,"source":5347,"mouth":5346,"discharge":56,"length":28.32,"width":0.03,"widthFactor":1,"sourceWidth":0.05,"parent":4,"cells":[5347,5346,5464],"basin":4,"name":"Bostsoding","type":"River"},{"i":393,"source":5063,"mouth":5062,"discharge":41,"length":31.77,"width":0.03,"widthFactor":1,"sourceWidth":0.05,"parent":4,"cells":[5063,5062,4905],"basin":4,"name":"Yaukaishui","type":"Fork"},{"i":394,"source":186,"mouth":185,"discharge":87,"length":28.55,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[186,185,126],"basin":394,"name":"Kjella","type":"River"},{"i":397,"source":6804,"mouth":6803,"discharge":58,"length":33.81,"width":0.04,"widthFactor":1,"sourceWidth":0.07,"parent":6,"cells":[6804,6803,6679],"basin":6,"name":"Vathos","type":"River"},{"i":398,"source":4592,"mouth":4591,"discharge":44,"length":25.86,"width":0.03,"widthFactor":1,"sourceWidth":0.05,"parent":4,"cells":[4592,4591,4590],"basin":4,"name":"Keihungkui","type":"River"},{"i":400,"source":3615,"mouth":3452,"discharge":85,"length":27.68,"width":0.03,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[3615,3452,-1],"basin":400,"name":"Leung","type":"River"},{"i":402,"source":5400,"mouth":5401,"discharge":65,"length":27.48,"width":0.04,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[5400,5401,5403],"basin":402,"name":"Tongsaifong","type":"River"},{"i":404,"source":3852,"mouth":3853,"discharge":88,"length":17.92,"width":0.05,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[3852,3853,3854],"basin":404,"name":"Cuauhteca","type":"Creek"},{"i":405,"source":3703,"mouth":3847,"discharge":72,"length":20.49,"width":0.03,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[3703,3847,3846],"basin":405,"name":"Olotlan","type":"River"},{"i":406,"source":3785,"mouth":3788,"discharge":150,"length":31.18,"width":0.06,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[3785,3788,3626],"basin":406,"name":"Sheunhing","type":"River"},{"i":407,"source":4113,"mouth":4114,"discharge":84,"length":22.85,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[4113,4114,3964],"basin":407,"name":"Naursvines","type":"River"},{"i":438,"source":1713,"mouth":1710,"discharge":148,"length":36.29,"width":0.08,"widthFactor":1,"sourceWidth":0.08,"parent":278,"cells":[1713,1711,1710,1803],"basin":278,"name":"Selsolar","type":"Fork"},{"i":439,"source":558,"mouth":557,"discharge":120,"length":28.3,"width":0.05,"widthFactor":1,"sourceWidth":0.09,"parent":158,"cells":[558,557,482],"basin":158,"name":"Ateswestes","type":"River"},{"i":440,"source":4421,"mouth":4268,"discharge":83,"length":22.3,"width":0.05,"widthFactor":1,"sourceWidth":0.09,"parent":29,"cells":[4421,4268,4098],"basin":29,"name":"Ngantingkui","type":"River"},{"i":442,"source":4420,"mouth":4267,"discharge":76,"length":31.07,"width":0.04,"widthFactor":1,"sourceWidth":0.08,"parent":87,"cells":[4420,4267,4097],"basin":29,"name":"Taikokwun","type":"River"},{"i":443,"source":6747,"mouth":6497,"discharge":128,"length":48.59,"width":0.09,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[6747,6748,6619,6497,6369],"basin":443,"name":"Thaphyrian","type":"River"},{"i":444,"source":4372,"mouth":4529,"discharge":174,"length":40.01,"width":0.12,"widthFactor":1.2,"sourceWidth":0.1,"parent":0,"cells":[4372,4527,4529,4697],"basin":444,"name":"Yeungchung","type":"River"},{"i":445,"source":4526,"mouth":4530,"discharge":59,"length":16.8,"width":0.02,"widthFactor":1,"sourceWidth":0.05,"parent":444,"cells":[4526,4530,4529],"basin":444,"name":"Waiyautau","type":"Creek"},{"i":446,"source":3753,"mouth":3756,"discharge":160,"length":48.92,"width":0.09,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[3753,3900,3756,3597],"basin":446,"name":"Ninoi","type":"River"},{"i":447,"source":197,"mouth":194,"discharge":86,"length":20.87,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[197,194,141],"basin":447,"name":"Malboverke","type":"River"},{"i":448,"source":2208,"mouth":2210,"discharge":221,"length":28.5,"width":0.11,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[2208,2212,2210,2099],"basin":448,"name":"Nyirtir","type":"River"},{"i":449,"source":196,"mouth":195,"discharge":86,"length":15.98,"width":0.03,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[196,195,142],"basin":449,"name":"Tronestad","type":"Creek"},{"i":461,"source":4276,"mouth":4427,"discharge":90,"length":36,"width":0.06,"widthFactor":1,"sourceWidth":0.06,"parent":4,"cells":[4276,4428,4427,4426],"basin":4,"name":"Limgong","type":"River"},{"i":462,"source":6939,"mouth":6940,"discharge":61,"length":21.57,"width":0.04,"widthFactor":1,"sourceWidth":0.06,"parent":222,"cells":[6939,6940,6823],"basin":222,"name":"Thaphala","type":"Fork"},{"i":464,"source":5070,"mouth":4924,"discharge":746,"length":147.1,"width":0.27,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[5070,4915,4762,4763,4764,4765,4766,4767,4768,4921,4922,4924,4927],"basin":464,"name":"Eltern","type":"River"},{"i":466,"source":6986,"mouth":7217,"discharge":207,"length":66.9,"width":0.12,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[6986,7102,7103,7217,7339],"basin":466,"name":"Durtal","type":"River"},{"i":467,"source":6973,"mouth":6972,"discharge":49,"length":24.69,"width":0.03,"widthFactor":1,"sourceWidth":0.05,"parent":70,"cells":[6973,6972,6971],"basin":70,"name":"Pasos","type":"River"},{"i":468,"source":5710,"mouth":5477,"discharge":193,"length":39.95,"width":0.11,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[5710,5711,5477,5478],"basin":468,"name":"Schenweisen","type":"River"},{"i":469,"source":5474,"mouth":5475,"discharge":53,"length":29.94,"width":0.03,"widthFactor":1,"sourceWidth":0.05,"parent":468,"cells":[5474,5475,5477],"basin":468,"name":"Strauchse","type":"River"},{"i":470,"source":6694,"mouth":6693,"discharge":64,"length":31.69,"width":0.05,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[6694,6693,6567],"basin":470,"name":"Histhos","type":"River"},{"i":471,"source":188,"mouth":132,"discharge":92,"length":20.34,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[188,132,81],"basin":471,"name":"Bifjorgar","type":"River"},{"i":472,"source":1848,"mouth":1759,"discharge":74,"length":27.98,"width":0.04,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[1848,1759,1661],"basin":472,"name":"Thydontion","type":"River"},{"i":474,"source":872,"mouth":767,"discharge":104,"length":14.11,"width":0.04,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[872,767,871],"basin":474,"name":"Agripidita","type":"Creek"},{"i":475,"source":2731,"mouth":2728,"discharge":75,"length":21.9,"width":0.04,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[2731,2728,2624],"basin":475,"name":"Zacatlan","type":"River"},{"i":476,"source":183,"mouth":180,"discharge":93,"length":21.9,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[183,180,125],"basin":476,"name":"Ogsanney","type":"River"},{"i":477,"source":1970,"mouth":1860,"discharge":89,"length":19.38,"width":0.05,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[1970,1860,1857],"basin":477,"name":"Negaikast","type":"River"},{"i":478,"source":6837,"mouth":6836,"discharge":68,"length":18.67,"width":0.04,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[6837,6836,6716],"basin":478,"name":"Chios","type":"Creek"},{"i":502,"source":7324,"mouth":7327,"discharge":766,"length":49.88,"width":0.23,"widthFactor":1.2,"sourceWidth":0.13,"parent":502,"cells":[7324,7321,7325,7325,7327,7432],"basin":502,"name":"Botibethmo","type":"River"},{"i":503,"source":6033,"mouth":6154,"discharge":55,"length":26.55,"width":0.03,"widthFactor":1,"sourceWidth":0.04,"parent":847,"cells":[6033,6154,6153],"basin":846,"name":"Methece","type":"River"},{"i":506,"source":7051,"mouth":7396,"discharge":439,"length":48.95,"width":0.14,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[7051,7163,7279,7396,-1],"basin":506,"name":"Aelossos","type":"River"},{"i":507,"source":7283,"mouth":7402,"discharge":348,"length":28.32,"width":0.08,"widthFactor":1.2,"sourceWidth":0.14,"parent":0,"cells":[7283,7402,-1],"basin":507,"name":"Cortakynt","type":"River"},{"i":508,"source":4052,"mouth":4532,"discharge":100,"length":44.65,"width":0.08,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[4052,4213,4375,4532,4700],"basin":508,"name":"Tsuen","type":"River"},{"i":509,"source":4448,"mouth":4611,"discharge":202,"length":52.71,"width":0.1,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[4448,4609,4771,4612,4611,4613],"basin":509,"name":"Malscken","type":"River"},{"i":510,"source":6086,"mouth":5964,"discharge":91,"length":39.84,"width":0.08,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[6086,6084,5964,6082],"basin":510,"name":"Ecenion","type":"River"},{"i":511,"source":6815,"mouth":6692,"discharge":89,"length":22.83,"width":0.04,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[6815,6692,6567],"basin":511,"name":"Paphidea","type":"River"},{"i":513,"source":2729,"mouth":2724,"discharge":73,"length":20.12,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[2729,2724,2622],"basin":513,"name":"Sofjor","type":"River"},{"i":514,"source":4807,"mouth":4806,"discharge":76,"length":20.31,"width":0.05,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[4807,4806,4964],"basin":514,"name":"Zalatlal","type":"River"},{"i":515,"source":4512,"mouth":4511,"discharge":125,"length":15.08,"width":0.04,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[4512,4511,4355],"basin":515,"name":"Podes","type":"Creek"},{"i":554,"source":6569,"mouth":6568,"discharge":51,"length":24.8,"width":0.04,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[6569,6568,6448],"basin":554,"name":"Thyla","type":"River"},{"i":555,"source":1482,"mouth":1584,"discharge":102,"length":22.37,"width":0.08,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[1482,1582,1584,1483],"basin":555,"name":"Gorgylis","type":"River"},{"i":556,"source":403,"mouth":332,"discharge":104,"length":22.5,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[403,332,265],"basin":556,"name":"Sidgeton","type":"River"},{"i":557,"source":2890,"mouth":2889,"discharge":72,"length":14.65,"width":0.04,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[2890,2889,2893],"basin":557,"name":"Ninion","type":"Creek"},{"i":578,"source":3047,"mouth":3049,"discharge":80,"length":42.15,"width":0.08,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[3047,3048,3049,2952],"basin":578,"name":"Zihuatlan","type":"River"},{"i":580,"source":6778,"mouth":6898,"discharge":72,"length":16.49,"width":0.02,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[6778,6898,-1],"basin":580,"name":"Loshutnau","type":"Creek"},{"i":581,"source":6897,"mouth":7130,"discharge":145,"length":34.14,"width":0.1,"widthFactor":1.2,"sourceWidth":0.09,"parent":0,"cells":[6897,7015,7130,-1],"basin":581,"name":"Schrafenzell","type":"River"},{"i":582,"source":4733,"mouth":4732,"discharge":205,"length":19,"width":0.06,"widthFactor":1.2,"sourceWidth":0.15,"parent":0,"cells":[4733,4732,-1],"basin":582,"name":"Hoichau","type":"River"},{"i":583,"source":6812,"mouth":6690,"discharge":75,"length":32.38,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[6812,6690,6566],"basin":583,"name":"Vintiorumpe","type":"River"},{"i":584,"source":35,"mouth":36,"discharge":97,"length":19.31,"width":0.05,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[35,36,17],"basin":584,"name":"Carton","type":"River"},{"i":586,"source":5846,"mouth":5725,"discharge":90,"length":22.61,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[5846,5725,5726],"basin":586,"name":"Piniaion","type":"River"},{"i":587,"source":7216,"mouth":7336,"discharge":97,"length":29.83,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[7216,7336,7338],"basin":587,"name":"Balmaverkekes","type":"River"},{"i":588,"source":3957,"mouth":3960,"discharge":117,"length":40.31,"width":0.08,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[3957,3958,3960,3808],"basin":588,"name":"Nesmar","type":"River"},{"i":589,"source":6784,"mouth":6900,"discharge":102,"length":20.42,"width":0.07,"widthFactor":1.2,"sourceWidth":0.11,"parent":0,"cells":[6784,6900,7020],"basin":589,"name":"Tsing","type":"River"},{"i":590,"source":31,"mouth":29,"discharge":122,"length":17.37,"width":0.04,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[31,29,11],"basin":590,"name":"Castbury","type":"Stream"},{"i":591,"source":4677,"mouth":4675,"discharge":103,"length":23.74,"width":0.06,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[4677,4675,4508],"basin":591,"name":"Agriraca","type":"River"},{"i":622,"source":7044,"mouth":7275,"discharge":322,"length":80.22,"width":0.12,"widthFactor":1,"sourceWidth":0.08,"parent":657,"cells":[7044,6926,6927,7047,7160,7275,7393],"basin":657,"name":"Thergos","type":"River"},{"i":623,"source":227,"mouth":167,"discharge":154,"length":27.58,"width":0.09,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[227,225,167,168],"basin":623,"name":"Gornaga","type":"River"},{"i":624,"source":475,"mouth":399,"discharge":97,"length":16.62,"width":0.05,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[475,399,327],"basin":624,"name":"Wigmorough","type":"Creek"},{"i":625,"source":6528,"mouth":6404,"discharge":153,"length":17.55,"width":0.04,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[6528,6404,-1],"basin":625,"name":"Aibergin","type":"Creek"},{"i":626,"source":6750,"mouth":6496,"discharge":189,"length":84.33,"width":0.12,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[6750,6622,6501,6500,6499,6498,6496,6369],"basin":626,"name":"Hipoponamai","type":"River"},{"i":628,"source":1370,"mouth":1372,"discharge":80,"length":22.84,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[1370,1372,1469],"basin":628,"name":"Pagios","type":"River"},{"i":630,"source":4144,"mouth":4301,"discharge":58,"length":20.62,"width":0.04,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[4144,4301,4454],"basin":630,"name":"Zahualoztapan","type":"River"},{"i":632,"source":3490,"mouth":3811,"discharge":82,"length":32.5,"width":0.08,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[3490,3656,3811,3813],"basin":632,"name":"Brugar","type":"River"},{"i":633,"source":4143,"mouth":4303,"discharge":71,"length":16.12,"width":0.04,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[4143,4303,4458],"basin":633,"name":"Piaztlatlala","type":"Creek"},{"i":655,"source":7161,"mouth":7278,"discharge":80,"length":23.46,"width":0.04,"widthFactor":1,"sourceWidth":0.06,"parent":506,"cells":[7161,7278,7279],"basin":506,"name":"Heracra","type":"River"},{"i":656,"source":6283,"mouth":6158,"discharge":85,"length":12.8,"width":0.02,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[6283,6158,-1],"basin":656,"name":"Stein","type":"Brook"},{"i":657,"source":7395,"mouth":7393,"discharge":1286,"length":22.98,"width":0.27,"widthFactor":1.2,"sourceWidth":0.29,"parent":0,"cells":[7395,7393,-1],"basin":657,"name":"Imbdeia","type":"River"},{"i":658,"source":1265,"mouth":1267,"discharge":136,"length":37.75,"width":0.11,"widthFactor":1.2,"sourceWidth":0.1,"parent":0,"cells":[1265,1266,1267,1374],"basin":658,"name":"Thurias","type":"River"},{"i":675,"source":3950,"mouth":3633,"discharge":87,"length":35.12,"width":0.08,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[3950,3794,3633,3467],"basin":675,"name":"Chaz","type":"River"},{"i":677,"source":2944,"mouth":3041,"discharge":63,"length":25.67,"width":0.05,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[2944,3041,2941],"basin":677,"name":"Culconacan","type":"River"},{"i":678,"source":4794,"mouth":4793,"discharge":41,"length":21.4,"width":0.04,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[4794,4793,4951],"basin":678,"name":"Chalco","type":"River"},{"i":679,"source":6036,"mouth":5916,"discharge":78,"length":18.71,"width":0.02,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[6036,5916,-1],"basin":679,"name":"Heles","type":"Creek"},{"i":680,"source":6385,"mouth":6629,"discharge":84,"length":47.48,"width":0.07,"widthFactor":1,"sourceWidth":0.07,"parent":46,"cells":[6385,6508,6629,6757],"basin":46,"name":"Bienautach","type":"River"},{"i":681,"source":4377,"mouth":4533,"discharge":105,"length":37.13,"width":0.09,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[4377,4376,4533,4700],"basin":681,"name":"Tsiuchung","type":"River"},{"i":682,"source":5604,"mouth":5719,"discharge":189,"length":53.21,"width":0.1,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[5604,5603,5602,5719,5599],"basin":682,"name":"Pseidomis","type":"River"},{"i":683,"source":1578,"mouth":1765,"discharge":189,"length":43.32,"width":0.11,"widthFactor":1.2,"sourceWidth":0.09,"parent":0,"cells":[1578,1671,1765,1857],"basin":683,"name":"Koucia","type":"River"},{"i":684,"source":4287,"mouth":4122,"discharge":69,"length":28.45,"width":0.04,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[4287,4122,3972],"basin":684,"name":"Lostatt","type":"River"},{"i":685,"source":7457,"mouth":7362,"discharge":192,"length":26.34,"width":0.13,"widthFactor":1.2,"sourceWidth":0.21,"parent":0,"cells":[7457,7362,7241],"basin":685,"name":"Richrin","type":"River"},{"i":686,"source":3985,"mouth":3986,"discharge":85,"length":16.67,"width":0.03,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[3985,3986,3831],"basin":686,"name":"Bobel","type":"Creek"},{"i":687,"source":1859,"mouth":1863,"discharge":78,"length":23.73,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[1859,1863,1974],"basin":687,"name":"Kecelostos","type":"River"},{"i":688,"source":1109,"mouth":988,"discharge":76,"length":19.98,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[1109,988,991],"basin":688,"name":"Fjerna","type":"River"},{"i":690,"source":2014,"mouth":2122,"discharge":79,"length":18.7,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[2014,2122,2121],"basin":690,"name":"Tosvik","type":"Creek"},{"i":727,"source":5177,"mouth":5176,"discharge":52,"length":29.32,"width":0.03,"widthFactor":1,"sourceWidth":0.05,"parent":768,"cells":[5177,5176,5035],"basin":768,"name":"Tholis","type":"River"},{"i":728,"source":6389,"mouth":6268,"discharge":50,"length":29.02,"width":0.03,"widthFactor":1,"sourceWidth":0.05,"parent":846,"cells":[6389,6268,6144],"basin":846,"name":"Theoreos","type":"River"},{"i":729,"source":6138,"mouth":5654,"discharge":157,"length":76.94,"width":0.11,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[6138,6015,5895,5896,5774,5654,5531],"basin":729,"name":"Dolymnos","type":"River"},{"i":731,"source":6687,"mouth":6565,"discharge":215,"length":38.77,"width":0.11,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[6687,6688,6565,6445],"basin":731,"name":"Marnumbia","type":"River"},{"i":732,"source":5215,"mouth":5358,"discharge":173,"length":35.03,"width":0.1,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[5215,5216,5358,5360],"basin":732,"name":"Lauchlerbach","type":"River"},{"i":733,"source":4056,"mouth":3904,"discharge":165,"length":45.3,"width":0.11,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[4056,3902,3903,3904,3760],"basin":733,"name":"Bopoceapo","type":"River"},{"i":734,"source":6319,"mouth":6196,"discharge":79,"length":19.25,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[6319,6196,6074],"basin":734,"name":"Coriduvale","type":"River"},{"i":735,"source":7060,"mouth":6946,"discharge":131,"length":18.5,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[7060,6946,7063],"basin":735,"name":"Histhy","type":"Creek"},{"i":736,"source":7062,"mouth":7293,"discharge":62,"length":22.61,"width":0.04,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[7062,7293,7291],"basin":736,"name":"Eliolis","type":"River"},{"i":737,"source":5104,"mouth":5106,"discharge":95,"length":21.08,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[5104,5106,5108],"basin":737,"name":"Mixtlan","type":"River"},{"i":738,"source":7456,"mouth":7361,"discharge":238,"length":18.49,"width":0.15,"widthFactor":1.2,"sourceWidth":0.24,"parent":0,"cells":[7456,7361,7359],"basin":738,"name":"Bondorfin","type":"Creek"},{"i":768,"source":5790,"mouth":4080,"discharge":793,"length":191.83,"width":0.28,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[5790,5671,5547,5431,5310,5175,5035,4880,4728,4567,4405,4080,4078],"basin":768,"name":"Histhos","type":"River"},{"i":769,"source":5173,"mouth":5309,"discharge":54,"length":25.34,"width":0.03,"widthFactor":1,"sourceWidth":0.06,"parent":768,"cells":[5173,5309,5310],"basin":768,"name":"Olcos","type":"River"},{"i":770,"source":5550,"mouth":5551,"discharge":115,"length":19.6,"width":0.03,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[5550,5551,-1],"basin":770,"name":"Murion","type":"River"},{"i":771,"source":5315,"mouth":5180,"discharge":172,"length":26.79,"width":0.09,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[5315,5316,5180,-1],"basin":771,"name":"Opostos","type":"River"},{"i":773,"source":5428,"mouth":5026,"discharge":431,"length":107.99,"width":0.19,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[5428,5427,5426,5425,5304,5168,5167,5027,5026,4869],"basin":773,"name":"Tricea","type":"River"},{"i":774,"source":5540,"mouth":5424,"discharge":63,"length":30.45,"width":0.03,"widthFactor":1,"sourceWidth":0.05,"parent":773,"cells":[5540,5424,5304],"basin":773,"name":"Olissosme","type":"Fork"},{"i":776,"source":6762,"mouth":6993,"discharge":91,"length":52.48,"width":0.07,"widthFactor":1,"sourceWidth":0.07,"parent":46,"cells":[6762,6877,6993,7111],"basin":46,"name":"Kirchrengen","type":"River"},{"i":777,"source":6649,"mouth":6772,"discharge":126,"length":36.94,"width":0.09,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[6649,6648,6772,6889],"basin":777,"name":"Krofengen","type":"River"},{"i":778,"source":7439,"mouth":7440,"discharge":617,"length":20.76,"width":0.18,"widthFactor":1.2,"sourceWidth":0.28,"parent":0,"cells":[7439,7440,-1],"basin":778,"name":"Ezomaz","type":"River"},{"i":779,"source":4443,"mouth":4127,"discharge":75,"length":35.6,"width":0.08,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[4443,4291,4127,4128],"basin":779,"name":"Steilernau","type":"River"},{"i":780,"source":4855,"mouth":4702,"discharge":77,"length":27.55,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[4855,4702,4853],"basin":780,"name":"Shanlong","type":"River"},{"i":781,"source":5950,"mouth":5951,"discharge":72,"length":25.68,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[5950,5951,5832],"basin":781,"name":"Gemiba","type":"River"},{"i":782,"source":1581,"mouth":1583,"discharge":100,"length":16.99,"width":0.06,"widthFactor":1.2,"sourceWidth":0.1,"parent":0,"cells":[1581,1583,1674],"basin":782,"name":"Magneleu","type":"Creek"},{"i":783,"source":5237,"mouth":5231,"discharge":94,"length":18.82,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[5237,5231,5364],"basin":783,"name":"Phais","type":"Creek"},{"i":785,"source":5236,"mouth":5235,"discharge":93,"length":12.62,"width":0.04,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[5236,5235,5097],"basin":785,"name":"Acahuacotitla","type":"Creek"},{"i":786,"source":3231,"mouth":3131,"discharge":61,"length":16.89,"width":0.03,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[3231,3131,3129],"basin":786,"name":"Naurstad","type":"River"},{"i":787,"source":5135,"mouth":5134,"discharge":132,"length":12.82,"width":0.05,"widthFactor":1.2,"sourceWidth":0.09,"parent":0,"cells":[5135,5134,5133],"basin":787,"name":"Longchung","type":"Brook"},{"i":788,"source":2309,"mouth":2307,"discharge":198,"length":23.68,"width":0.09,"widthFactor":1.2,"sourceWidth":0.13,"parent":0,"cells":[2309,2307,2195],"basin":788,"name":"Lamphapon","type":"River"},{"i":789,"source":2330,"mouth":2429,"discharge":83,"length":17.38,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[2330,2429,2430],"basin":789,"name":"Mocenderun","type":"River"},{"i":843,"source":6390,"mouth":6270,"discharge":77,"length":38.63,"width":0.06,"widthFactor":1,"sourceWidth":0.05,"parent":846,"cells":[6390,6269,6270,6145],"basin":846,"name":"Gournas","type":"Fork"},{"i":844,"source":6019,"mouth":5904,"discharge":220,"length":85.23,"width":0.1,"widthFactor":1,"sourceWidth":0.07,"parent":846,"cells":[6019,5900,5901,5902,5903,5904,6025],"basin":846,"name":"Tatea","type":"River"},{"i":846,"source":6143,"mouth":6642,"discharge":1275,"length":162.64,"width":0.35,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[6143,6144,6145,6024,6025,6148,6149,6275,6396,6521,6642,6770],"basin":846,"name":"Glotlin","type":"River"},{"i":847,"source":6279,"mouth":6151,"discharge":359,"length":58.33,"width":0.12,"widthFactor":1,"sourceWidth":0.11,"parent":846,"cells":[6279,6153,6152,6151,6275],"basin":846,"name":"Kalgi","type":"River"},{"i":849,"source":5535,"mouth":5532,"discharge":302,"length":84.73,"width":0.14,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[5535,5536,5421,5299,5419,5418,5532,5416],"basin":849,"name":"Diton","type":"River"},{"i":850,"source":5785,"mouth":6026,"discharge":119,"length":44.3,"width":0.08,"widthFactor":1,"sourceWidth":0.1,"parent":846,"cells":[5785,5906,6026,6148],"basin":846,"name":"Eurias","type":"River"},{"i":856,"source":6636,"mouth":7227,"discharge":227,"length":101.65,"width":0.12,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[6636,6765,6880,6997,7117,7227,7226],"basin":856,"name":"Rhein","type":"River"},{"i":857,"source":6136,"mouth":5771,"discharge":121,"length":54.18,"width":0.1,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[6136,6014,5894,5772,5771,5649],"basin":857,"name":"Rinapithos","type":"River"},{"i":858,"source":4875,"mouth":4397,"discharge":144,"length":56.95,"width":0.11,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[4875,4721,4559,4397,4394],"basin":858,"name":"Temnamon","type":"River"},{"i":859,"source":5775,"mouth":5656,"discharge":63,"length":23.61,"width":0.04,"widthFactor":1,"sourceWidth":0.07,"parent":849,"cells":[5775,5656,5532],"basin":849,"name":"Goliris","type":"River"},{"i":862,"source":4312,"mouth":4156,"discharge":103,"length":44.62,"width":0.09,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[4312,4311,4309,4156,4308],"basin":862,"name":"Onaliza","type":"River"},{"i":863,"source":6379,"mouth":6257,"discharge":59,"length":25.63,"width":0.04,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[6379,6257,6255],"basin":863,"name":"Koniamairos","type":"River"},{"i":864,"source":4019,"mouth":4017,"discharge":70,"length":25.47,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[4019,4017,3863],"basin":864,"name":"Coatlapa","type":"River"},{"i":865,"source":4538,"mouth":4380,"discharge":79,"length":21.51,"width":0.04,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[4538,4380,4381],"basin":865,"name":"Chalcos","type":"River"},{"i":866,"source":5712,"mouth":5830,"discharge":109,"length":19.51,"width":0.06,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[5712,5830,5713],"basin":866,"name":"Soyavet","type":"River"},{"i":867,"source":1906,"mouth":1904,"discharge":116,"length":21.41,"width":0.06,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[1906,1904,1903],"basin":867,"name":"Higslika","type":"River"},{"i":868,"source":231,"mouth":287,"discharge":101,"length":17.21,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[231,287,357],"basin":868,"name":"Rhyria","type":"Brook"},{"i":869,"source":1774,"mouth":1869,"discharge":62,"length":18.75,"width":0.04,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[1774,1869,1871],"basin":869,"name":"Kyramaita","type":"Brook"},{"i":896,"source":6709,"mouth":6708,"discharge":413,"length":24.24,"width":0.13,"widthFactor":1.2,"sourceWidth":0.07,"parent":896,"cells":[6709,6710,6708,6832],"basin":896,"name":"Paphikast","type":"River"},{"i":922,"source":5423,"mouth":5303,"discharge":46,"length":22.25,"width":0.02,"widthFactor":1,"sourceWidth":0.05,"parent":773,"cells":[5423,5303,5168],"basin":773,"name":"Tydotipathe","type":"River"},{"i":924,"source":4569,"mouth":4409,"discharge":89,"length":17,"width":0.03,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[4569,4409,-1],"basin":924,"name":"Troydoridam","type":"Brook"},{"i":926,"source":5156,"mouth":5410,"discharge":105,"length":41.43,"width":0.08,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[5156,5293,5410,5527],"basin":926,"name":"Ikpefumju","type":"River"},{"i":927,"source":7458,"mouth":7459,"discharge":540,"length":25.03,"width":0.13,"widthFactor":1.2,"sourceWidth":0.21,"parent":0,"cells":[7458,7459,-1],"basin":927,"name":"Bilerbachtal","type":"River"},{"i":928,"source":7085,"mouth":7084,"discharge":83,"length":26.52,"width":0.06,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[7085,7084,7195],"basin":928,"name":"Hubros","type":"River"},{"i":929,"source":5019,"mouth":4860,"discharge":66,"length":26.05,"width":0.04,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[5019,4860,4861],"basin":929,"name":"Pinebaido","type":"River"},{"i":930,"source":3248,"mouth":3249,"discharge":48,"length":19.96,"width":0.04,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[3248,3249,3378],"basin":930,"name":"Tlacancoyaco","type":"River"},{"i":931,"source":3987,"mouth":3988,"discharge":61,"length":17.76,"width":0.04,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[3987,3988,3989],"basin":931,"name":"Neuninheim","type":"Creek"},{"i":975,"source":5794,"mouth":5675,"discharge":108,"length":18.02,"width":0.03,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[5794,5675,-1],"basin":975,"name":"Bybros","type":"River"},{"i":976,"source":7246,"mouth":7365,"discharge":151,"length":39.19,"width":0.04,"widthFactor":1,"sourceWidth":0.06,"parent":927,"cells":[7246,7365,7459],"basin":927,"name":"Kapen","type":"River"},{"i":978,"source":6320,"mouth":6198,"discharge":78,"length":23.38,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[6320,6198,6075],"basin":978,"name":"Mardum","type":"River"},{"i":979,"source":2271,"mouth":2272,"discharge":236,"length":28.06,"width":0.1,"widthFactor":1.2,"sourceWidth":0.15,"parent":0,"cells":[2271,2272,2371],"basin":979,"name":"Boyavikkaf","type":"River"},{"i":980,"source":4250,"mouth":4249,"discharge":73,"length":18.66,"width":0.04,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[4250,4249,4076],"basin":980,"name":"Braupaktas","type":"Creek"},{"i":981,"source":4717,"mouth":4557,"discharge":93,"length":28.99,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[4717,4557,4393],"basin":981,"name":"Heleos","type":"River"},{"i":982,"source":4231,"mouth":4391,"discharge":104,"length":14.71,"width":0.04,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[4231,4391,4552],"basin":982,"name":"Kydon","type":"Creek"},{"i":1056,"source":4563,"mouth":4565,"discharge":83,"length":42.59,"width":0.06,"widthFactor":1,"sourceWidth":0.06,"parent":1057,"cells":[4563,4564,4565,4566],"basin":768,"name":"Sikasthos","type":"Fork"},{"i":1057,"source":4725,"mouth":4566,"discharge":205,"length":43.34,"width":0.09,"widthFactor":1,"sourceWidth":0.09,"parent":768,"cells":[4725,4726,4566,4405],"basin":768,"name":"Brauros","type":"River"},{"i":1059,"source":4254,"mouth":4083,"discharge":111,"length":33.1,"width":0.09,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[4254,4253,4083,3931],"basin":1059,"name":"Iolgisaly","type":"River"},{"i":1061,"source":2902,"mouth":2903,"discharge":48,"length":18.5,"width":0.04,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[2902,2903,2999],"basin":1061,"name":"Nigrum","type":"Creek"},{"i":1062,"source":3495,"mouth":3496,"discharge":54,"length":21.92,"width":0.04,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[3495,3496,3664],"basin":1062,"name":"Stokerfug","type":"River"},{"i":1064,"source":3350,"mouth":3348,"discharge":60,"length":18.49,"width":0.04,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[3350,3348,3351],"basin":1064,"name":"Orstad","type":"Stream"},{"i":1065,"source":3349,"mouth":3501,"discharge":93,"length":17.52,"width":0.03,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[3349,3501,3503],"basin":1065,"name":"Bilhei","type":"Creek"},{"i":1066,"source":6351,"mouth":6348,"discharge":64,"length":19.19,"width":0.04,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[6351,6348,6225],"basin":1066,"name":"Artyn","type":"River"},{"i":1087,"source":5024,"mouth":4866,"discharge":111,"length":21.09,"width":0.06,"widthFactor":1.2,"sourceWidth":0.09,"parent":0,"cells":[5024,4866,4868],"basin":1087,"name":"Juktas","type":"River"},{"i":1089,"source":5755,"mouth":5878,"discharge":60,"length":31.83,"width":0.04,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[5755,5878,5877],"basin":1089,"name":"Muichaiking","type":"River"},{"i":1091,"source":7176,"mouth":7177,"discharge":95,"length":20.25,"width":0.06,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[7176,7177,7291],"basin":1091,"name":"Eleurondo","type":"River"},{"i":1092,"source":1183,"mouth":1180,"discharge":166,"length":14.34,"width":0.08,"widthFactor":1.2,"sourceWidth":0.12,"parent":0,"cells":[1183,1180,1179],"basin":1092,"name":"Zaktossos","type":"River"},{"i":1093,"source":1182,"mouth":1062,"discharge":189,"length":33.21,"width":0.12,"widthFactor":1.2,"sourceWidth":0.1,"parent":0,"cells":[1182,1184,1062,1058],"basin":1093,"name":"Exandnale","type":"River"},{"i":1094,"source":5517,"mouth":5640,"discharge":84,"length":19.41,"width":0.04,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[5517,5640,5759],"basin":1094,"name":"Fangshui","type":"River"},{"i":1136,"source":2916,"mouth":3120,"discharge":699,"length":55.57,"width":0.2,"widthFactor":1.2,"sourceWidth":0.08,"parent":1136,"cells":[2916,3019,3019,3116,3117,3120,3022],"basin":1136,"name":"Hveroy","type":"River"},{"i":1162,"source":7461,"mouth":7460,"discharge":342,"length":23.1,"width":0.11,"widthFactor":1.2,"sourceWidth":0.21,"parent":0,"cells":[7461,7460,-1],"basin":1162,"name":"Lausen","type":"River"},{"i":1163,"source":2113,"mouth":2232,"discharge":86,"length":23.62,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[2113,2232,2338],"basin":1163,"name":"Marnum","type":"River"},{"i":1164,"source":2112,"mouth":2115,"discharge":82,"length":15.97,"width":0.03,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[2112,2115,2003],"basin":1164,"name":"Anhabygd","type":"Creek"},{"i":1165,"source":2222,"mouth":2223,"discharge":154,"length":20.89,"width":0.07,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[2222,2223,2219],"basin":1165,"name":"Eronocodu","type":"River"},{"i":1166,"source":2114,"mouth":2231,"discharge":86,"length":21.64,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[2114,2231,2229],"basin":1166,"name":"Lerantia","type":"River"},{"i":1167,"source":2018,"mouth":2131,"discharge":87,"length":25.5,"width":0.05,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[2018,2131,2249],"basin":1167,"name":"Breidrek","type":"River"},{"i":1204,"source":2069,"mouth":2071,"discharge":128,"length":24.48,"width":0.06,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[2069,2071,2185],"basin":1204,"name":"Nidyrossos","type":"River"},{"i":1206,"source":6640,"mouth":6767,"discharge":137,"length":41.78,"width":0.09,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[6640,6639,6767,6885],"basin":1206,"name":"Schopen","type":"River"},{"i":1207,"source":4872,"mouth":4558,"discharge":115,"length":40.02,"width":0.08,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[4872,4719,4558,4394],"basin":1207,"name":"Acharmemi","type":"River"},{"i":1208,"source":6132,"mouth":6009,"discharge":108,"length":23.83,"width":0.06,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[6132,6009,6010],"basin":1208,"name":"Meragurion","type":"River"},{"i":1209,"source":5023,"mouth":4865,"discharge":81,"length":19.77,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[5023,4865,4863],"basin":1209,"name":"Elolymnos","type":"River"},{"i":1210,"source":1070,"mouth":1067,"discharge":186,"length":20.58,"width":0.06,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[1070,1067,947],"basin":1210,"name":"Thoseicyon","type":"River"},{"i":1213,"source":2246,"mouth":2247,"discharge":65,"length":15.83,"width":0.04,"widthFactor":1.2,"sourceWidth":0.04,"parent":0,"cells":[2246,2247,2248],"basin":1213,"name":"Stordager","type":"River"},{"i":1214,"source":5862,"mouth":5861,"discharge":78,"length":22.58,"width":0.05,"widthFactor":1.2,"sourceWidth":0.05,"parent":0,"cells":[5862,5861,5739],"basin":1214,"name":"Braurion","type":"River"},{"i":1215,"source":1069,"mouth":1068,"discharge":86,"length":16.1,"width":0.03,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[1069,1068,948],"basin":1215,"name":"Alaidauros","type":"Brook"},{"i":1216,"source":5230,"mouth":5229,"discharge":82,"length":17.33,"width":0.05,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[5230,5229,5228],"basin":1216,"name":"Ahuautlan","type":"Creek"},{"i":1217,"source":4247,"mouth":4245,"discharge":110,"length":25.01,"width":0.06,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[4247,4245,4073],"basin":1217,"name":"Phaispian","type":"River"},{"i":1218,"source":2932,"mouth":2930,"discharge":58,"length":18.89,"width":0.03,"widthFactor":1.2,"sourceWidth":0.06,"parent":0,"cells":[2932,2930,3028],"basin":1218,"name":"Grimsund","type":"Brook"},{"i":1286,"source":658,"mouth":659,"discharge":167,"length":18.83,"width":0.07,"widthFactor":1.2,"sourceWidth":0.08,"parent":0,"cells":[658,659,578],"basin":1286,"name":"Kocea","type":"Creek"},{"i":1327,"source":1878,"mouth":1876,"discharge":110,"length":15.05,"width":0.04,"widthFactor":1.2,"sourceWidth":0.07,"parent":0,"cells":[1878,1876,1778],"basin":1327,"name":"Braquentia","type":"Creek"}]
+Ruler: 417,206 1097,158
+[{"family":"Almendra SC","src":"url(https://fonts.gstatic.com/s/almendrasc/v13/Iure6Yx284eebowr7hbyTaZOrLQ.woff2)","unicodeRange":"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"},{"family":"Orbitron","src":"url(https://fonts.gstatic.com/s/orbitron/v9/HmnHiRzvcnQr8CjBje6GQvesZW2xOQ-xsNqO47m55DA.woff2)","unicodeRange":"U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215"}]
+[{"icon":"š","type":"volcanoes","dx":52,"px":13,"x":212.14,"y":702.43,"cell":5931,"i":0},{"icon":"š","type":"volcanoes","dx":52,"px":13,"x":779.29,"y":181.43,"cell":809,"i":1},{"icon":"āØļø","type":"hot-springs","dy":52,"x":649.1,"y":348.9,"cell":2150,"i":2},{"icon":"š§","type":"water-sources","x":364.29,"y":807.07,"cell":7035,"i":3},{"icon":"āļø","type":"mines","dx":48,"px":13,"x":283.95,"y":720.31,"cell":6177,"i":4},{"icon":"āļø","type":"mines","dx":48,"px":13,"x":1315.38,"y":843.91,"cell":7434,"i":5},{"icon":"āļø","type":"mines","dx":48,"px":13,"x":1293.9,"y":583.29,"cell":4691,"i":6},{"icon":"āļø","type":"mines","dx":48,"px":13,"x":659.09,"y":744.15,"cell":6458,"i":7},{"icon":"āļø","type":"mines","dx":48,"px":13,"x":31.35,"y":587.79,"cell":4734,"i":8},{"icon":"š»","type":"inns","px":14,"x":1642.86,"y":591.52,"cell":4881,"i":9},{"icon":"š»","type":"inns","px":14,"x":404.6,"y":578.03,"cell":4604,"i":10},{"icon":"š»","type":"inns","px":14,"x":334.54,"y":495.62,"cell":3346,"i":11},{"icon":"š»","type":"inns","px":14,"x":159.65,"y":496.25,"cell":3471,"i":12},{"icon":"š»","type":"inns","px":14,"x":1473.33,"y":779.11,"cell":6876,"i":13},{"icon":"š»","type":"inns","px":14,"x":231.42,"y":542.43,"cell":4107,"i":14},{"icon":"š»","type":"inns","px":14,"x":446.79,"y":612.97,"cell":5078,"i":15},{"icon":"šØ","type":"lighthouses","px":14,"x":1549.02,"y":532.7,"cell":4067,"i":16},{"icon":"šØ","type":"lighthouses","px":14,"x":697.66,"y":819.79,"cell":7182,"i":17},{"icon":"šØ","type":"lighthouses","px":14,"x":1308.17,"y":516.78,"cell":3890,"i":18},{"icon":"šØ","type":"lighthouses","px":14,"x":319.66,"y":340.07,"cell":2102,"i":19},{"icon":"šØ","type":"lighthouses","px":14,"x":411.59,"y":529.95,"cell":3979,"i":20},{"icon":"šØ","type":"lighthouses","px":14,"x":402.36,"y":223.19,"cell":1100,"i":21},{"icon":"šØ","type":"lighthouses","px":14,"x":1591.22,"y":534.03,"cell":4074,"i":22},{"icon":"ā±","type":"waterfalls","dy":54,"px":16,"x":1059.24,"y":578.73,"cell":4681,"i":23},{"icon":"ā±","type":"waterfalls","dy":54,"px":16,"x":685.07,"y":234.75,"cell":1238,"i":24},{"icon":"ā±","type":"waterfalls","dy":54,"px":16,"x":225.74,"y":806.05,"cell":7023,"i":25},{"icon":"ā±","type":"waterfalls","dy":54,"px":16,"x":1236.04,"y":821.58,"cell":7200,"i":26},{"icon":"ā±","type":"waterfalls","dy":54,"px":16,"x":223.2,"y":516.7,"cell":3646,"i":27},{"icon":"ā±","type":"waterfalls","dy":54,"px":16,"x":1328.73,"y":838.71,"cell":7435,"i":28},{"icon":"ā±","type":"waterfalls","dy":54,"px":16,"x":546.33,"y":224.81,"cell":1117,"i":29},{"icon":"ā±","type":"waterfalls","dy":54,"px":16,"x":772.12,"y":454.86,"cell":3161,"i":30},{"icon":"ā±","type":"waterfalls","dy":54,"px":16,"x":86.18,"y":665.61,"cell":5565,"i":31},{"icon":"ā±","type":"waterfalls","dy":54,"px":16,"x":661.57,"y":557.22,"cell":4314,"i":32},{"icon":"āļø","type":"battlefields","dy":52,"x":395.7,"y":714.5,"cell":6065,"i":33},{"icon":"āļø","type":"battlefields","dy":52,"x":277.35,"y":686.61,"cell":5817,"i":34},{"icon":"āļø","type":"battlefields","dy":52,"x":1156.05,"y":766.23,"cell":6727,"i":35},{"icon":"šļø","type":"dungeons","dy":51,"px":13,"x":644.1,"y":828.3,"cell":7174,"i":36},{"icon":"šļø","type":"dungeons","dy":51,"px":13,"x":797.54,"y":619.41,"cell":5114,"i":37},{"icon":"šļø","type":"dungeons","dy":51,"px":13,"x":1383.7,"y":599,"cell":5013,"i":38},{"icon":"šļø","type":"dungeons","dy":51,"px":13,"x":1290.43,"y":778.41,"cell":6861,"i":39},{"icon":"šļø","type":"dungeons","dy":51,"px":13,"x":197.03,"y":673.42,"cell":5693,"i":40},{"icon":"šļø","type":"dungeons","dy":51,"px":13,"x":385.79,"y":414.41,"cell":2716,"i":41},{"icon":"šļø","type":"dungeons","dy":51,"px":13,"x":625.03,"y":655.62,"cell":5488,"i":42},{"icon":"šļø","type":"dungeons","dy":51,"px":13,"x":688.78,"y":114.02,"cell":314,"i":43},{"icon":"š","type":"lake-monsters","dy":48,"x":1281.44,"y":825.28,"cell":7325,"i":44},{"icon":"š¦","type":"sea-monsters","x":495.76,"y":349.72,"cell":2250,"i":45},{"icon":"š¦","type":"sea-monsters","x":110.4,"y":516.2,"cell":3626,"i":46},{"icon":"š¹","type":"hill-monsters","dy":54,"px":13,"x":255.01,"y":847.13,"cell":7373,"i":47},{"icon":"š³","type":"sacred-forests","x":249.95,"y":661.79,"cell":5579,"i":48},{"icon":"š³","type":"sacred-forests","x":379.82,"y":821.88,"cell":7149,"i":49},{"icon":"š²","type":"sacred-pineries","px":13,"x":1243.37,"y":659.67,"cell":5632,"i":50},{"icon":"š°","type":"brigands","px":13,"x":1439,"y":621.6,"cell":5159,"i":51},{"icon":"š°","type":"brigands","px":13,"x":305.36,"y":563.67,"cell":4435,"i":52},{"icon":"š°","type":"brigands","px":13,"x":1587.4,"y":756.8,"cell":6642,"i":53},{"icon":"š“āā ļø","type":"pirates","dx":51,"x":1234.6,"y":611.5,"cell":4990,"i":54},{"icon":"š“āā ļø","type":"pirates","dx":51,"x":1093.07,"y":139.87,"cell":511,"i":55},{"icon":"š“āā ļø","type":"pirates","dx":51,"x":1279.2,"y":291.3,"cell":1669,"i":56},{"icon":"š“āā ļø","type":"pirates","dx":51,"x":1549.7,"y":827.7,"cell":7237,"i":57},{"icon":"šæ","type":"statues","x":1317.29,"y":225.3,"cell":1180,"i":58},{"icon":"šæ","type":"statues","x":1290.6,"y":688.5,"cell":5879,"i":59},{"icon":"šæ","type":"statues","x":1505.9,"y":603,"cell":5025,"i":60},{"icon":"šŗ","type":"ruins","x":558.5,"y":201.6,"cell":890,"i":61},{"icon":"šŗ","type":"ruins","x":700.29,"y":218.3,"cell":1137,"i":62},{"icon":"šŗ","type":"ruins","x":619.99,"y":214.32,"cell":1009,"i":63},{"icon":"š","type":"libraries","x":1418.83,"y":642.23,"cell":5412,"i":64},{"icon":"šŖ","type":"circuses","x":1010.88,"y":253.04,"cell":1465,"i":65},{"icon":"šŖ","type":"circuses","x":323.5,"y":507.7,"cell":3661,"i":66},{"icon":"š ","type":"fairs","x":360.46,"y":553.33,"cell":4287,"i":67},{"icon":"š¶","type":"canoes","x":469.47,"y":747.52,"cell":6438,"i":68},{"icon":"š","type":"migration","x":966.05,"y":338.01,"cell":2179,"i":69},{"icon":"š","type":"migration","x":78.17,"y":621.97,"cell":5187,"i":70},{"icon":"š¦","type":"caves","x":137.41,"y":690.74,"cell":5805,"i":71},{"icon":"šŖ¦","type":"necropolises","x":952.12,"y":431.2,"cell":2977,"i":72},{"icon":"šŖ¦","type":"necropolises","x":508.1,"y":732.79,"cell":6321,"i":73},{"icon":"š§","type":"encounters","x":1332.63,"y":731.93,"cell":6373,"i":74},{"icon":"š§","type":"encounters","x":1497.02,"y":631.04,"cell":5301,"i":75},{"icon":"š§","type":"encounters","x":544.1,"y":474.7,"cell":3249,"i":76},{"icon":"š§","type":"encounters","x":1175.8,"y":749.5,"cell":6481,"i":77},{"icon":"š§","type":"encounters","x":1428.64,"y":608.13,"cell":5017,"i":78},{"icon":"š§","type":"encounters","x":1589.73,"y":552.96,"cell":4401,"i":79}]
+{"9":{"10":501,"11":501},"10":{"9":501,"27":501},"11":{"9":501,"12":501},"12":{"11":501,"13":501},"13":{"12":501,"14":501},"14":{"13":501,"15":501},"15":{"14":501,"16":501},"16":{"15":501,"17":501},"17":{"16":501,"18":501},"18":{"17":501,"19":501},"19":{"18":501,"21":501},"21":{"19":501,"41":501},"25":{"26":501,"57":501},"26":{"25":501,"27":501},"27":{"10":501,"26":501},"30":{"31":1,"32":1},"31":{"30":1,"61":1},"32":{"30":1,"33":1},"33":{"32":1,"34":1},"34":{"33":1,"35":1},"35":{"34":1,"36":1},"36":{"35":1,"37":1},"37":{"36":1,"38":1},"38":{"37":1,"39":1},"39":{"38":1,"40":1},"40":{"39":1,"69":1},"41":{"21":501,"42":501},"42":{"41":501,"70":501},"55":{"56":501,"57":501},"56":{"55":501,"94":501},"57":{"25":501,"55":501},"61":{"31":1,"62":1},"62":{"61":1,"101":1},"69":{"40":1,"109":1},"70":{"42":501,"71":501},"71":{"70":501,"113":501},"76":{"77":524,"127":524},"77":{"76":524,"78":524},"78":{"77":524,"79":524},"79":{"78":524,"80":524},"80":{"79":524,"81":524},"81":{"80":524,"82":524},"82":{"81":524,"83":524},"83":{"82":524,"84":524},"84":{"83":524,"85":524},"85":{"84":524,"139":524},"90":{"91":501,"92":501},"91":{"90":501,"147":501},"92":{"90":501,"93":501},"93":{"92":501,"94":501},"94":{"56":501,"93":501},"95":{"96":1,"97":1},"96":{"95":1,"151":1},"97":{"95":1,"98":1},"98":{"97":1,"99":1},"99":{"98":1,"100":1},"100":{"99":1,"101":1},"101":{"62":1,"100":1},"109":{"69":1,"110":1},"110":{"109":1,"111":1},"111":{"110":1,"112":1},"112":{"111":1,"166":1},"113":{"71":501,"114":501},"114":{"113":501,"115":501},"115":{"114":501,"117":501},"117":{"115":501,"168":501},"122":{"124":524,"179":524},"124":{"122":524,"125":524},"125":{"124":524,"126":524},"126":{"125":524,"127":524},"127":{"76":524,"126":524},"128":{"129":37,"130":37},"129":{"128":37,"185":37},"130":{"128":37,"131":37},"131":{"130":37,"132":37},"132":{"131":37,"133":37},"133":{"132":37,"134":37},"134":{"133":37,"135":37},"135":{"134":37,"136":37},"136":{"135":37,"137":37},"137":{"136":37,"138":37},"138":{"137":37,"192":37},"139":{"85":524,"140":524},"140":{"139":524,"141":524},"141":{"140":524,"142":524},"142":{"141":524,"143":524},"143":{"142":524,"144":524},"144":{"143":524,"145":524},"145":{"144":524,"199":524},"147":{"91":501,"148":501},"148":{"147":501,"205":501},"150":{"151":1,"152":1},"151":{"96":1,"150":1},"152":{"150":1,"208":1},"166":{"112":1,"167":1},"167":{"166":1,"168":501,"225":34,"283":44},"168":{"117":501,"167":501,"169":502},"169":{"168":502,"170":502},"170":{"169":502,"171":502},"171":{"170":502,"172":502},"172":{"171":502,"173":502},"173":{"172":502,"174":502},"174":{"173":502,"175":502},"175":{"174":502,"234":502},"179":{"122":524,"243":524},"182":{"183":37,"184":37},"183":{"182":37,"244":37},"184":{"182":37,"185":37},"185":{"129":37,"184":37},"192":{"138":37,"193":37},"193":{"192":37,"194":37},"194":{"193":37,"197":37},"197":{"194":37,"254":37},"199":{"145":524,"200":524},"200":{"199":524,"258":524},"205":{"148":501,"265":501},"208":{"152":1,"209":1},"209":{"208":1,"266":1},"225":{"167":34,"227":34},"227":{"225":34,"285":34},"234":{"175":502,"288":502},"237":{"239":524,"293":524},"239":{"237":524,"240":524},"240":{"239":524,"241":524},"241":{"240":524,"242":524},"242":{"241":524,"243":524},"243":{"179":524,"242":524},"244":{"183":37,"299":37},"254":{"197":37,"255":37},"255":{"254":37,"311":37},"258":{"200":524,"259":524},"259":{"258":524,"316":524},"263":{"264":501,"328":501},"264":{"263":501,"265":501},"265":{"205":501,"264":501},"266":{"209":1,"267":1},"267":{"266":1,"335":1},"283":{"167":44,"284":44},"284":{"283":44,"285":34,"352":34},"285":{"227":34,"284":34},"288":{"234":502,"289":502},"289":{"288":502,"359":502},"293":{"237":524,"294":524},"294":{"293":524,"370":524},"296":{"297":37,"372":37},"297":{"296":37,"298":37},"298":{"297":37,"299":37},"299":{"244":37,"298":37},"311":{"255":37,"386":37},"312":{"386":37,"387":37},"316":{"259":524,"318":524},"318":{"316":524,"392":524},"320":{"321":501,"322":501},"321":{"320":501,"392":501},"322":{"320":501,"323":501},"323":{"322":501,"324":501},"324":{"323":501,"325":501},"325":{"324":501,"326":501},"326":{"325":501,"328":501},"328":{"263":501,"326":501},"335":{"267":1,"336":1},"336":{"335":1,"404":1},"352":{"284":34,"424":34},"359":{"289":502,"360":502},"360":{"359":502,"430":502},"366":{"367":524,"443":524},"367":{"366":524,"368":524},"368":{"367":524,"369":524},"369":{"368":524,"370":524},"370":{"294":524,"369":524},"372":{"296":37,"448":37},"386":{"311":37,"312":37},"387":{"312":37,"464":37},"392":{"318":524,"321":501,"395":501},"394":{"395":1,"396":1},"395":{"392":501,"394":1,"470":1},"396":{"394":1,"397":1},"397":{"396":1,"398":1},"398":{"397":1,"474":1},"399":{"475":1,"476":1},"402":{"405":1,"477":1},"404":{"336":1,"405":1},"405":{"402":1,"404":1},"424":{"352":34,"425":34},"425":{"424":34,"497":34},"430":{"360":502,"501":502},"443":{"366":524,"444":524},"444":{"443":524,"519":524},"448":{"372":37,"526":37},"462":{"463":37,"464":37},"463":{"462":37,"540":37},"464":{"387":37,"462":37},"470":{"395":1,"471":1},"471":{"470":1,"547":1},"474":{"398":1,"475":1},"475":{"399":1,"474":1},"476":{"399":1,"477":1},"477":{"402":1,"476":1},"497":{"425":34,"498":34},"498":{"497":34,"571":34},"501":{"430":502,"577":502},"505":{"507":464,"579":464},"506":{"507":464,"508":464},"507":{"505":464,"506":464},"508":{"506":464,"509":464},"509":{"508":464,"510":464},"510":{"509":464,"511":464},"511":{"510":464,"586":464},"519":{"444":524,"520":524},"520":{"519":524,"600":524},"526":{"448":37,"527":37},"527":{"526":37,"610":37},"540":{"463":37,"541":37},"541":{"540":37,"625":37},"547":{"471":1,"630":1},"571":{"498":34,"572":43,"655":34},"572":{"571":43,"573":43},"573":{"572":43,"574":43},"574":{"573":43,"576":43},"576":{"574":43,"577":464,"659":41},"577":{"501":502,"576":464,"578":464},"578":{"577":464,"579":464},"579":{"505":464,"578":464},"582":{"664":40,"665":40},"586":{"511":464,"588":464},"588":{"586":464,"669":464},"600":{"520":524,"601":519,"602":519},"601":{"600":519,"686":519},"602":{"600":519,"683":519},"610":{"527":37,"691":37},"624":{"625":1,"703":1},"625":{"541":37,"624":1,"626":1},"626":{"625":1,"706":1},"630":{"547":1,"631":1},"631":{"630":1,"708":1},"655":{"571":34,"733":34},"657":{"658":39,"735":39},"658":{"657":39,"659":40},"659":{"576":41,"658":40,"660":40},"660":{"659":40,"661":40},"661":{"660":40,"662":40},"662":{"661":40,"663":40},"663":{"662":40,"664":40},"664":{"582":40,"663":40},"665":{"582":40,"666":40},"666":{"665":40,"742":40},"669":{"588":464,"743":462,"745":462},"683":{"602":519,"766":519},"686":{"601":519,"688":519},"688":{"686":519,"773":519},"691":{"610":37,"778":37},"703":{"624":1,"704":1},"704":{"703":1,"793":1},"706":{"626":1,"707":1},"707":{"706":1,"708":1,"799":32},"708":{"631":1,"707":1},"733":{"655":34,"826":34},"734":{"735":39,"827":39},"735":{"657":39,"734":39},"742":{"666":40,"835":38,"836":462},"743":{"669":462,"744":462},"744":{"743":462,"837":462},"745":{"669":462,"746":462},"746":{"745":462,"1172":462},"766":{"683":519,"871":519},"773":{"688":519,"877":519},"778":{"691":37,"780":37},"779":{"780":36,"880":36},"780":{"778":37,"779":36,"781":36},"781":{"780":36,"782":36},"782":{"781":36,"783":36},"783":{"782":36,"784":36},"784":{"783":36,"785":36},"785":{"784":36,"889":36},"793":{"704":1,"794":1},"794":{"793":1,"897":1},"799":{"707":32,"800":32},"800":{"799":32,"901":32},"826":{"733":34,"927":34},"827":{"734":39,"928":39},"832":{"833":38,"834":38},"833":{"832":38,"933":38},"834":{"832":38,"835":38},"835":{"742":38,"834":38},"836":{"742":462,"837":462,"938":465},"837":{"744":462,"836":462},"869":{"871":519,"981":519},"871":{"766":519,"869":519,"873":544},"873":{"871":544,"983":42},"877":{"773":519,"878":519},"878":{"877":519,"879":519},"879":{"878":519,"992":519},"880":{"779":36},"889":{"785":36,"890":33},"890":{"889":33,"1001":33},"897":{"794":1,"898":1},"898":{"897":1,"1009":1},"901":{"800":32,"1017":32},"927":{"826":34,"1044":34},"928":{"827":39,"1045":39},"933":{"833":38,"934":38},"934":{"933":38,"1050":38},"935":{"936":465,"937":465},"936":{"935":465,"1052":465},"937":{"935":465,"938":465},"938":{"836":465,"937":465},"981":{"869":519,"1101":519},"983":{"873":42,"1105":42},"992":{"879":519,"994":519},"994":{"992":519,"995":519},"995":{"994":519,"1115":519},"999":{"1000":35,"1001":33,"1117":33},"1000":{"999":35,"1116":35},"1001":{"890":33,"999":33},"1008":{"1009":1,"1123":1},"1009":{"898":1,"1008":1,"1125":522},"1017":{"901":32,"1018":32},"1018":{"1017":32,"1136":32},"1019":{"1136":32},"1044":{"927":34,"1045":34},"1045":{"928":39,"1044":34,"1163":34},"1050":{"934":38,"1051":38},"1051":{"1050":38,"1167":38},"1052":{"936":465,"1053":465},"1053":{"1052":465,"1169":465},"1062":{"1184":47},"1070":{"1071":46,"1188":45},"1071":{"1070":46,"1291":46},"1101":{"981":519,"1102":519},"1102":{"1101":519,"1209":519},"1105":{"983":42,"1212":42},"1112":{"1113":42,"1114":42},"1113":{"1112":42,"1219":42},"1114":{"1112":42,"1115":42},"1115":{"995":519,"1114":42,"1116":35},"1116":{"1000":35,"1115":35,"1222":25},"1117":{"999":33,"1224":33},"1123":{"1008":1,"1124":1},"1124":{"1123":1,"1231":1},"1125":{"1009":522,"1127":522},"1127":{"1125":522,"1232":522},"1136":{"1018":32,"1019":32},"1163":{"1045":34,"1265":34},"1165":{"1166":38,"1167":38},"1166":{"1165":38,"1267":38},"1167":{"1051":38,"1165":38},"1168":{"1169":465,"1268":465},"1169":{"1053":465,"1168":465},"1172":{"746":462,"1272":462},"1184":{"1062":47,"1286":47},"1188":{"1070":45,"1189":45},"1189":{"1188":45,"1295":45},"1209":{"1102":519,"1313":519},"1212":{"1105":42,"1213":42},"1213":{"1212":42,"1214":42},"1214":{"1213":42,"1318":42},"1218":{"1219":42,"1320":42},"1219":{"1113":42,"1218":42},"1222":{"1116":25,"1324":25},"1224":{"1117":33,"1327":33},"1227":{"1228":0,"1229":0},"1228":{"1227":0,"1328":33,"1329":0},"1229":{"1227":0,"1230":0},"1230":{"1229":0,"1231":0},"1231":{"1124":1,"1230":0,"1333":507,"1336":521},"1232":{"1127":522,"1233":522},"1233":{"1232":522,"1333":522},"1265":{"1163":34,"1370":34},"1267":{"1166":38,"1372":38},"1268":{"1168":465,"1269":465},"1269":{"1268":465,"1374":465},"1272":{"1172":462,"1376":462},"1284":{"1285":48,"1382":48},"1285":{"1284":48,"1286":48},"1286":{"1184":47,"1285":48,"1287":47},"1287":{"1286":47,"1288":47},"1288":{"1287":47,"1289":47},"1289":{"1288":47,"1290":46,"1387":463},"1290":{"1289":46,"1291":46},"1291":{"1071":46,"1290":46},"1295":{"1189":45,"1296":45},"1296":{"1295":45},"1313":{"1209":519,"1316":519},"1316":{"1313":519,"1409":519},"1318":{"1214":42,"1319":42},"1319":{"1318":42,"1320":42},"1320":{"1218":42,"1319":42},"1323":{"1324":25,"1419":25},"1324":{"1222":25,"1323":25},"1327":{"1224":33,"1328":33},"1328":{"1228":33,"1327":33},"1329":{"1228":0,"1425":0},"1330":{"1425":0,"1523":0},"1333":{"1231":507,"1233":522,"1334":507,"1336":523},"1334":{"1333":507,"1338":507},"1336":{"1231":521,"1333":523,"1427":521},"1338":{"1334":507,"1430":508,"1531":507},"1370":{"1265":34,"1372":34},"1372":{"1267":38,"1370":34,"1468":34},"1374":{"1269":465,"1469":465},"1376":{"1272":462,"1377":462},"1377":{"1376":462,"1473":462},"1382":{"1284":48,"1383":48},"1383":{"1382":48,"1480":48},"1387":{"1289":463,"1388":463},"1388":{"1387":463,"1485":463},"1409":{"1316":519,"1505":519},"1419":{"1323":25,"1518":25},"1425":{"1329":0,"1330":0},"1427":{"1336":521,"1428":521},"1428":{"1427":521,"1429":508,"1527":508},"1429":{"1428":508,"1430":508},"1430":{"1338":508,"1429":508},"1432":{"1529":18,"1530":18},"1465":{"1466":34,"1467":34},"1466":{"1465":34,"1468":34},"1467":{"1465":34,"1562":34},"1468":{"1372":34,"1466":34},"1469":{"1374":465,"1470":465},"1470":{"1469":465,"1568":465},"1473":{"1377":462,"1573":462},"1480":{"1383":48,"1482":48},"1482":{"1480":48,"1581":48},"1484":{"1485":463,"1587":463},"1485":{"1388":463,"1484":463},"1504":{"1505":519,"1601":519},"1505":{"1409":519,"1504":519},"1518":{"1419":25,"1615":25},"1523":{"1330":0,"1524":0},"1524":{"1523":0,"1619":0},"1527":{"1428":508,"1528":508},"1528":{"1527":508,"1623":520,"1624":508},"1529":{"1432":18,"1625":18},"1530":{"1432":18,"1531":18},"1531":{"1338":507,"1530":18},"1562":{"1467":34,"1563":34},"1563":{"1562":34,"1660":34},"1568":{"1470":465,"1569":465},"1569":{"1568":465,"1570":465},"1570":{"1569":465,"1664":465},"1573":{"1473":462,"1574":462},"1574":{"1573":462,"1667":462},"1581":{"1482":48,"1673":48},"1587":{"1484":463,"1678":463},"1601":{"1504":519,"1603":519},"1603":{"1601":519,"1696":519},"1615":{"1518":25,"1713":25},"1619":{"1524":0,"1620":0},"1620":{"1619":0,"1718":0},"1621":{"1622":515,"1623":515},"1622":{"1621":515,"1719":515},"1623":{"1528":520,"1621":515,"1624":515},"1624":{"1528":508,"1623":515,"1722":508},"1625":{"1529":18,"1626":18},"1626":{"1625":18,"1628":18},"1628":{"1626":18,"1725":18},"1660":{"1563":34,"1758":34},"1664":{"1570":465,"1665":465},"1665":{"1664":465,"1762":465},"1667":{"1574":462,"1668":462},"1668":{"1667":462,"1669":462},"1669":{"1668":462,"1764":462},"1673":{"1581":48,"1768":48},"1678":{"1587":463,"1679":463},"1679":{"1678":463,"1776":463},"1696":{"1603":519,"1793":519},"1712":{"1804":25,"1805":25},"1713":{"1615":25,"1805":25},"1715":{"1716":0,"1717":0},"1716":{"1715":0,"1807":0},"1717":{"1715":0,"1718":0},"1718":{"1620":0,"1717":0},"1719":{"1622":515,"1720":515},"1720":{"1719":515,"1808":515},"1722":{"1624":508,"1812":508},"1725":{"1628":18,"1727":18,"1815":508},"1727":{"1725":18,"1816":18},"1758":{"1660":34,"1759":34},"1759":{"1758":34,"1760":34},"1760":{"1759":34,"1761":34},"1761":{"1760":34,"1850":31},"1762":{"1665":465,"1851":465},"1764":{"1669":462,"1856":462},"1768":{"1673":48,"1769":48},"1769":{"1768":48,"1862":48},"1771":{"1862":462,"1864":463,"1974":462},"1776":{"1679":463,"1870":463},"1793":{"1696":519,"1795":519},"1795":{"1793":519,"1895":519},"1804":{"1712":25,"1912":27,"1915":25},"1805":{"1712":25,"1713":25},"1807":{"1716":0,"1917":0},"1808":{"1720":515,"1919":515},"1812":{"1722":508,"1813":508},"1813":{"1812":508,"1815":508},"1815":{"1725":508,"1813":508},"1816":{"1727":18,"1817":18},"1817":{"1816":18,"1926":18},"1850":{"1761":31,"1961":31},"1851":{"1762":465,"1963":465},"1856":{"1764":462,"1857":462},"1857":{"1856":462,"1967":462},"1862":{"1769":48,"1771":462},"1864":{"1771":463,"1866":463},"1866":{"1864":463,"1977":463},"1870":{"1776":463,"1871":463},"1871":{"1870":463,"1979":463},"1895":{"1795":519,"2007":519},"1907":{"1911":28,"1912":28},"1911":{"1907":28,"2022":28},"1912":{"1804":27,"1907":28},"1915":{"1804":25,"1916":25},"1916":{"1915":25,"1917":25},"1917":{"1807":0,"1916":25,"1918":25,"1919":515},"1918":{"1917":25,"2030":25},"1919":{"1808":515,"1917":515,"1920":519},"1920":{"1919":519,"2034":519},"1926":{"1817":18,"1927":18},"1927":{"1926":18,"2038":18},"1958":{"2069":26},"1960":{"2070":26,"2071":24,"2072":24,"2074":466},"1961":{"1850":31,"1962":30,"1963":465},"1962":{"1961":30,"2072":30},"1963":{"1851":465,"1961":465,"1964":466},"1964":{"1963":466,"2073":466},"1967":{"1857":462,"1968":462},"1968":{"1967":462,"2077":462},"1974":{"1771":462,"1975":462},"1975":{"1974":462,"2080":462},"1977":{"1866":463,"1978":463},"1978":{"1977":463,"1979":463},"1979":{"1871":463,"1978":463},"1987":{"2091":555},"1993":{"1994":555,"1995":555},"1994":{"1993":555,"1996":555},"1995":{"1993":555,"2101":555},"1996":{"1994":555,"2104":555},"1998":{"2000":555,"2106":555},"2000":{"1998":555,"2001":555},"2001":{"2000":555,"2002":555},"2002":{"2001":555,"2003":555},"2003":{"2002":555,"2004":555},"2004":{"2003":555,"2005":555},"2005":{"2004":555,"2007":555},"2007":{"1895":519,"2005":555,"2008":519},"2008":{"2007":519,"2120":519},"2022":{"1911":28,"2024":28,"2132":530},"2024":{"2022":28,"2131":28},"2030":{"1918":25,"2032":25},"2032":{"2030":25},"2034":{"1920":519,"2143":519},"2038":{"1927":18,"2148":18},"2069":{"1958":26,"2070":26},"2070":{"1960":26,"2069":26},"2071":{"1960":24,"2184":24},"2072":{"1960":24,"1962":30},"2073":{"1964":466,"2074":466},"2074":{"1960":466,"2073":466,"2185":503},"2077":{"1968":462,"2078":462},"2078":{"2077":462,"2189":462},"2080":{"1975":462,"2190":462},"2091":{"1987":555,"2093":563,"2094":555},"2093":{"2091":563,"2202":563},"2094":{"2091":555,"2096":555},"2096":{"2094":555,"2098":555},"2098":{"2096":555,"2099":555},"2099":{"2098":555,"2100":555},"2100":{"2099":555,"2101":555},"2101":{"1995":555,"2100":555},"2104":{"1996":555,"2105":555},"2105":{"2104":555,"2225":555},"2106":{"1998":555,"2225":555},"2120":{"2008":519,"2121":519},"2121":{"2120":519,"2239":519},"2126":{"2127":28,"2130":28},"2127":{"2126":28,"2244":28},"2129":{"2130":28,"2131":28,"2248":535},"2130":{"2126":28,"2129":28},"2131":{"2024":28,"2129":28},"2132":{"2022":530,"2133":530},"2133":{"2132":530,"2250":535,"2251":530},"2137":{"2254":530,"2255":530},"2141":{"2142":519,"2143":519},"2142":{"2141":519,"2259":519},"2143":{"2034":519,"2141":519},"2148":{"2038":18,"2149":18},"2149":{"2148":18,"2151":18},"2151":{"2149":18,"2152":18},"2152":{"2151":18,"2153":18},"2153":{"2152":18,"2154":18},"2154":{"2153":18,"2155":18},"2155":{"2154":18,"2156":18},"2156":{"2155":18,"2157":18},"2157":{"2156":18,"2271":18},"2183":{"2297":23,"2298":24},"2184":{"2071":24,"2298":24},"2185":{"2074":503,"2186":503},"2186":{"2185":503,"2300":503},"2189":{"2078":462,"2190":462},"2190":{"2080":462,"2189":462,"2191":468},"2191":{"2190":468,"2302":468},"2202":{"2093":563,"2203":563},"2203":{"2202":563,"2414":563},"2225":{"2105":555,"2106":555},"2239":{"2121":519,"2241":519},"2241":{"2239":519,"2347":519},"2244":{"2127":28,"2349":28},"2248":{"2129":535,"2249":535},"2249":{"2248":535,"2250":535},"2250":{"2133":535,"2249":535},"2251":{"2133":530,"2252":530},"2252":{"2251":530,"2253":530},"2253":{"2252":530,"2254":530},"2254":{"2137":530,"2253":530},"2255":{"2137":530,"2256":530},"2256":{"2255":530,"2257":530},"2257":{"2256":530,"2258":519,"2259":519},"2258":{"2257":519,"2363":519},"2259":{"2142":519,"2257":519},"2271":{"2157":18,"2272":18},"2272":{"2271":18,"2372":18},"2297":{"2183":23,"2299":23},"2298":{"2183":24,"2184":24},"2299":{"2297":23,"2398":23},"2300":{"2186":503,"2400":503},"2302":{"2191":468,"3187":468},"2307":{"2310":50},"2310":{"2307":50,"2405":50},"2319":{"2416":557},"2347":{"2241":519,"2440":519},"2349":{"2244":28,"2443":28},"2363":{"2258":519,"2454":519},"2372":{"2272":18,"2373":18},"2373":{"2372":18,"2462":18},"2398":{"2299":23,"2399":23},"2399":{"2398":23,"2487":23},"2400":{"2300":503,"2489":503},"2405":{"2310":50,"2496":50},"2414":{"2203":563,"2415":563},"2415":{"2414":563,"2416":563},"2416":{"2319":557,"2415":563,"2417":557},"2417":{"2416":557,"2514":557},"2440":{"2347":519,"2441":519},"2441":{"2440":519,"2535":519},"2443":{"2349":28,"2444":29,"2536":537},"2444":{"2443":29,"2539":29},"2454":{"2363":519,"2547":519},"2462":{"2373":18,"2463":18},"2463":{"2462":18,"2553":18},"2487":{"2399":23,"2488":23},"2488":{"2487":23,"2578":23},"2489":{"2400":503,"2490":503},"2490":{"2489":503,"2578":475,"2579":475},"2495":{"2497":50,"2585":50},"2496":{"2405":50,"2497":50},"2497":{"2495":50,"2496":50},"2503":{"2504":553,"2505":553},"2504":{"2503":553,"2591":553},"2505":{"2503":553,"2506":553},"2506":{"2505":553,"2507":553},"2507":{"2506":553,"2508":553},"2508":{"2507":553,"2509":553},"2509":{"2508":553,"2510":553},"2510":{"2509":553,"2598":553},"2514":{"2417":557,"2602":557},"2535":{"2441":519,"2537":519},"2536":{"2443":537,"2537":537},"2537":{"2535":519,"2536":537,"2626":519},"2539":{"2444":29},"2545":{"2636":536},"2547":{"2454":519,"2642":519},"2553":{"2463":18,"2554":18},"2554":{"2553":18,"2555":18},"2555":{"2554":18,"2650":18},"2578":{"2488":23,"2490":475},"2579":{"2490":475,"2678":475},"2585":{"2495":50,"2586":50},"2586":{"2585":50,"2686":50},"2591":{"2504":553,"2693":553},"2594":{"2695":249},"2598":{"2510":553,"2599":553},"2599":{"2598":553,"2600":553},"2600":{"2599":553,"2601":553,"2602":557},"2601":{"2600":553,"2704":553},"2602":{"2514":557,"2600":557},"2614":{"2615":546,"2616":546},"2615":{"2614":546,"2714":546},"2616":{"2614":546,"2617":546},"2617":{"2616":546,"2618":546},"2618":{"2617":546,"2619":546},"2619":{"2618":546,"2620":546},"2620":{"2619":546,"2621":546},"2621":{"2620":546,"2622":546},"2622":{"2621":546,"2623":546},"2623":{"2622":546,"2624":546},"2624":{"2623":546,"2625":546},"2625":{"2624":546,"2626":546},"2626":{"2537":519,"2625":546,"2628":519},"2628":{"2626":519,"2629":519,"2630":545},"2629":{"2628":519,"2630":525,"2631":519},"2630":{"2628":545,"2629":525,"2732":525},"2631":{"2629":519,"2632":519},"2632":{"2631":519,"2633":519},"2633":{"2632":519,"2634":519},"2634":{"2633":519,"2635":519},"2635":{"2634":519,"2636":519},"2636":{"2545":536,"2635":519,"2638":519},"2638":{"2636":519,"2641":519},"2639":{"2641":526,"2645":526},"2641":{"2638":519,"2639":526,"2642":519},"2642":{"2547":519,"2641":519},"2644":{"2645":526,"2745":526},"2645":{"2639":526,"2644":526},"2650":{"2555":18,"2753":18},"2678":{"2579":475,"2679":475},"2679":{"2678":475,"2778":475},"2685":{"2686":50,"2688":50},"2686":{"2586":50,"2685":50},"2688":{"2685":50,"2785":50},"2693":{"2591":553,"2694":553},"2694":{"2693":553,"2793":553},"2695":{"2594":249,"2697":249},"2697":{"2695":249,"2798":249},"2704":{"2601":553,"2705":553},"2705":{"2704":553,"2706":553},"2706":{"2705":553,"2805":553},"2711":{"2713":553,"2811":553},"2713":{"2711":553,"2815":553},"2714":{"2615":546,"2715":546},"2715":{"2714":546,"2817":546},"2728":{"2731":211},"2731":{"2728":211,"2825":212,"2826":211},"2732":{"2630":525,"2733":525},"2733":{"2732":525,"2828":525},"2745":{"2644":526,"2746":526},"2746":{"2745":526,"2845":526},"2753":{"2650":18,"2754":18},"2754":{"2753":18,"2855":18},"2778":{"2679":475,"2779":475},"2779":{"2778":475,"2881":475},"2785":{"2688":50,"2786":50},"2786":{"2785":50,"2887":50},"2793":{"2694":553,"2897":553},"2798":{"2697":249,"2905":200},"2805":{"2706":553,"2806":553},"2806":{"2805":553,"2914":553},"2807":{"2808":553,"2809":553},"2808":{"2807":553,"2918":553},"2809":{"2807":553,"2914":553},"2811":{"2711":553,"2918":553},"2815":{"2713":553,"2816":553},"2816":{"2815":553,"2817":553},"2817":{"2715":546,"2816":553,"2818":546},"2818":{"2817":546,"2927":546},"2824":{"2825":210,"2935":210},"2825":{"2731":212,"2824":210,"2826":210},"2826":{"2731":211,"2825":210,"2827":210},"2827":{"2826":210},"2828":{"2733":525,"2829":525},"2829":{"2828":525,"2941":525},"2845":{"2746":526,"2846":526},"2846":{"2845":526,"2850":526},"2850":{"2846":526,"2954":526},"2855":{"2754":18,"2960":18},"2879":{"2880":475,"2881":475},"2880":{"2879":475,"2985":475},"2881":{"2779":475,"2879":475},"2887":{"2786":50,"2991":50},"2897":{"2793":553,"2898":553},"2898":{"2897":553,"2999":553},"2901":{"2903":220},"2903":{"2901":220,"3002":220},"2905":{"2798":200,"3007":200},"2914":{"2806":553,"2809":553},"2918":{"2808":553,"2811":553},"2927":{"2818":546,"2928":546},"2928":{"2927":546,"3028":546},"2935":{"2824":210,"2936":210},"2936":{"2935":210,"3035":210},"2941":{"2829":525,"2942":525},"2942":{"2941":525,"3040":525},"2943":{"3041":203},"2954":{"2850":526,"2956":526},"2956":{"2954":526,"3054":526},"2960":{"2855":18,"3063":18},"2985":{"2880":475,"3086":475},"2990":{"2991":50,"2993":50},"2991":{"2887":50,"2990":50},"2993":{"2990":50,"3092":50},"2999":{"2898":553,"3000":553},"3000":{"2999":553,"3098":553},"3002":{"2903":220,"3101":220},"3004":{"3005":207,"3006":207},"3005":{"3004":207,"3101":208},"3006":{"3004":207,"3007":207},"3007":{"2905":200,"3006":207,"3008":200,"3103":558},"3008":{"3007":200,"3009":200},"3009":{"3008":200,"3010":201,"3105":556},"3010":{"3009":201,"3105":559,"3106":188},"3013":{"3112":180},"3018":{"3115":153},"3028":{"2928":546,"3029":546},"3029":{"3028":546,"3125":546},"3030":{"3032":166},"3032":{"3030":166,"3126":166},"3035":{"2936":210,"3036":210},"3036":{"3035":210,"3130":210},"3040":{"2942":525,"3133":525},"3041":{"2943":203,"3136":202},"3045":{"3046":222,"3140":217},"3046":{"3045":222,"3047":222},"3047":{"3046":222,"3141":222},"3054":{"2956":526,"3055":512,"3147":512},"3055":{"3054":512,"3058":512},"3058":{"3055":512,"3152":512},"3063":{"2960":18,"3064":18},"3064":{"3063":18,"3158":18},"3086":{"2985":475,"3185":475},"3092":{"2993":50,"3196":49},"3098":{"3000":553,"3099":553},"3099":{"3098":553,"3100":553},"3100":{"3099":553,"3104":553},"3101":{"3002":220,"3005":208},"3103":{"3007":558,"3104":553,"3105":553},"3104":{"3100":553,"3103":553},"3105":{"3009":556,"3010":559,"3103":553,"3209":553},"3106":{"3010":188,"3108":188},"3107":{"3108":180,"3109":180},"3108":{"3106":188,"3107":180,"3213":180},"3109":{"3107":180,"3112":180},"3110":{"3111":174,"3214":174},"3111":{"3110":174,"3213":174},"3112":{"3013":180,"3109":180},"3115":{"3018":153,"3218":153,"3219":164},"3120":{"3121":158},"3121":{"3120":158,"3221":158},"3125":{"3029":546,"3227":552,"3228":546},"3126":{"3032":166,"3127":166},"3127":{"3126":166,"3230":166},"3130":{"3036":210,"3233":210},"3133":{"3040":525,"3134":525},"3134":{"3133":525,"3240":525},"3136":{"3041":202,"3137":202},"3137":{"3136":202,"3240":538,"3242":196},"3139":{"3140":217,"3244":195,"3245":2,"3246":7},"3140":{"3045":217,"3139":217},"3141":{"3047":222,"3247":7,"3248":7},"3145":{"3146":256,"3253":246,"3254":250},"3146":{"3145":256,"3147":256},"3147":{"3054":512,"3146":256},"3152":{"3058":512,"3259":512},"3158":{"3064":18,"3159":18},"3159":{"3158":18,"3160":18},"3160":{"3159":18,"3270":18},"3185":{"3086":475,"3186":475},"3186":{"3185":475,"3292":475},"3187":{"2302":468,"3297":468},"3196":{"3092":49,"3311":500},"3209":{"3105":553,"3210":553},"3210":{"3209":553,"3336":554,"3337":553},"3213":{"3108":180,"3111":174},"3214":{"3110":174,"3215":174},"3215":{"3214":174,"3217":174},"3217":{"3215":174,"3218":153,"3342":561,"3343":153},"3218":{"3115":153,"3217":153},"3219":{"3115":164,"3220":164},"3220":{"3219":164,"3221":2},"3221":{"3121":158,"3220":2,"3223":136,"3346":2},"3223":{"3221":136,"3348":136},"3225":{"3226":550,"3351":550,"3352":551},"3226":{"3225":550,"3227":550},"3227":{"3125":552,"3226":550,"3228":550},"3228":{"3125":546,"3227":550,"3229":546},"3229":{"3228":546,"3356":546},"3230":{"3127":166,"3231":166},"3231":{"3230":166,"3233":166},"3233":{"3130":210,"3231":166,"3234":166},"3234":{"3233":166,"3361":166},"3240":{"3134":525,"3137":538,"3241":525},"3241":{"3240":525,"3367":525},"3242":{"3137":196,"3244":196},"3243":{"3244":187,"3371":187},"3244":{"3139":195,"3242":196,"3243":187},"3245":{"3139":2,"3373":2},"3246":{"3139":7,"3247":7,"3374":11},"3247":{"3141":7,"3246":7},"3248":{"3141":7,"3250":7},"3250":{"3248":7,"3251":7,"3378":514},"3251":{"3250":7,"3380":7},"3253":{"3145":246,"3380":246},"3254":{"3145":250,"3383":239},"3259":{"3152":512,"3260":512},"3260":{"3259":512,"3261":512},"3261":{"3260":512,"3262":512},"3262":{"3261":512,"3391":512},"3270":{"3160":18,"3271":18},"3271":{"3270":18,"3400":18},"3292":{"3186":475,"3293":475},"3293":{"3292":475,"3424":475},"3297":{"3187":468,"3299":468,"3300":470},"3298":{"3299":468,"3431":468},"3299":{"3297":468,"3298":468},"3300":{"3297":470,"3301":470},"3301":{"3300":470,"3302":470},"3302":{"3301":470,"3303":470},"3303":{"3302":470,"3304":470},"3304":{"3303":470,"3305":470},"3305":{"3304":470,"3306":470},"3306":{"3305":470,"3309":470},"3309":{"3306":470,"3442":470},"3311":{"3196":500,"3312":500},"3312":{"3311":500,"3605":500},"3329":{"3330":566,"3331":566},"3330":{"3329":566,"3472":566},"3331":{"3329":566,"3469":566},"3336":{"3210":554,"3338":554},"3337":{"3210":553,"3339":553},"3338":{"3336":554,"3480":554},"3339":{"3337":553,"3340":553},"3340":{"3339":553,"3341":553},"3341":{"3340":553,"3342":553},"3342":{"3217":561,"3341":553,"3343":553},"3343":{"3217":153,"3342":553,"3491":153},"3346":{"3221":2,"3495":135,"3496":2,"3664":551},"3348":{"3223":136,"3349":136,"3351":550},"3349":{"3348":136,"3500":136},"3351":{"3225":550,"3348":550},"3352":{"3225":551,"3354":551},"3354":{"3352":551,"3502":551},"3356":{"3229":546,"3358":546},"3358":{"3356":546,"3506":546},"3361":{"3234":166,"3362":166},"3362":{"3361":166,"3364":166},"3364":{"3362":166,"3513":166},"3367":{"3241":525,"3368":525},"3368":{"3367":525,"3519":525},"3371":{"3243":187,"3372":197},"3372":{"3371":197,"3373":197},"3373":{"3245":2,"3372":197,"3374":2},"3374":{"3246":11,"3373":2,"3522":525,"3524":2},"3378":{"3250":514,"3379":514},"3379":{"3378":514,"3530":514},"3380":{"3251":7,"3253":246,"3382":7},"3382":{"3380":7,"3534":7},"3383":{"3254":239,"3384":238},"3384":{"3383":238,"3385":259,"3538":238},"3385":{"3384":259,"3386":259},"3386":{"3385":259,"3387":259},"3387":{"3386":259,"3390":259},"3390":{"3387":259,"3391":504,"3541":269},"3391":{"3262":512,"3390":504,"3392":504},"3392":{"3391":504,"3393":504},"3393":{"3392":504,"3394":504},"3394":{"3393":504,"3546":504},"3400":{"3271":18,"3401":18},"3401":{"3400":18,"3551":18},"3424":{"3293":475,"3579":475},"3428":{"3429":468,"3430":468},"3429":{"3428":468,"3585":468},"3430":{"3428":468,"3431":468},"3431":{"3298":468,"3430":468},"3442":{"3309":470,"3443":470},"3443":{"3442":470,"3599":470},"3466":{"3467":565,"3468":565},"3467":{"3466":565,"3632":565},"3468":{"3466":565,"3471":565},"3469":{"3331":566,"3471":566},"3471":{"3468":565,"3469":566,"3636":9,"3637":218},"3472":{"3330":566,"3473":564,"3639":564},"3473":{"3472":564,"3474":564},"3474":{"3473":564,"3475":564},"3475":{"3474":564,"3476":564},"3476":{"3475":564,"3477":564},"3477":{"3476":564,"3478":564},"3478":{"3477":564,"3479":564},"3479":{"3478":564,"3482":564},"3480":{"3338":554,"3481":554,"3482":560},"3481":{"3480":554,"3651":554},"3482":{"3479":564,"3480":560,"3649":560},"3483":{"3484":175},"3484":{"3483":175,"3485":175},"3485":{"3484":175,"3486":175},"3486":{"3485":175,"3487":175},"3487":{"3486":175,"3490":175},"3490":{"3487":175,"3494":175},"3491":{"3343":153,"3492":152,"3493":154},"3492":{"3491":152,"3495":152},"3493":{"3491":154,"3494":175,"3659":154},"3494":{"3490":175,"3493":175},"3495":{"3346":135,"3492":152},"3496":{"3346":2,"3497":2},"3497":{"3496":2,"3662":2},"3500":{"3349":136},"3502":{"3354":551,"3503":551},"3503":{"3502":551,"3668":551},"3506":{"3358":546,"3508":546},"3508":{"3506":546,"3825":546},"3513":{"3364":166,"3680":143},"3519":{"3368":525,"3520":525},"3520":{"3519":525,"3522":525},"3522":{"3374":525,"3520":525,"3523":540},"3523":{"3522":540,"3689":540},"3524":{"3374":2,"3526":2},"3526":{"3524":2,"3690":2},"3530":{"3379":514,"3697":514},"3532":{"3533":514,"3698":514},"3533":{"3532":514,"3699":514},"3534":{"3382":7,"3535":7},"3535":{"3534":7,"3537":7},"3537":{"3535":7,"3702":7},"3538":{"3384":238,"3703":238},"3541":{"3390":269,"3544":269},"3544":{"3541":269,"3706":269},"3546":{"3394":504,"3547":504},"3547":{"3546":504,"3710":504},"3551":{"3401":18,"3552":17,"3553":18},"3552":{"3551":17,"3714":17},"3553":{"3551":18,"3554":18},"3554":{"3553":18,"3555":20},"3555":{"3554":20,"3557":20},"3557":{"3555":20,"3719":20},"3579":{"3424":475,"3580":475},"3580":{"3579":475,"3738":475},"3585":{"3429":468,"3586":468},"3586":{"3585":468,"3745":468},"3599":{"3443":470,"3600":470},"3600":{"3599":470,"3602":470},"3601":{"3602":470,"3761":470},"3602":{"3600":470,"3601":470},"3605":{"3312":500,"3772":500},"3626":{"3629":568,"3788":568},"3628":{"3629":565,"3630":565},"3629":{"3626":568,"3628":565,"3789":565},"3630":{"3628":565,"3631":565},"3631":{"3630":565,"3632":565},"3632":{"3467":565,"3631":565},"3636":{"3471":9,"3637":9},"3637":{"3471":218,"3636":9,"3638":9},"3638":{"3637":9,"3639":9,"3795":189},"3639":{"3472":564,"3638":9,"3796":9},"3649":{"3482":560,"3801":560},"3651":{"3481":554,"3652":554},"3652":{"3651":554,"3653":554},"3653":{"3652":554,"3806":554},"3658":{"3659":128,"3811":128},"3659":{"3493":154,"3658":128,"3660":128},"3660":{"3659":128,"3661":128},"3661":{"3660":128,"3662":128},"3662":{"3497":2,"3661":128,"3663":2},"3663":{"3662":2,"3815":2},"3664":{"3346":551,"3665":551},"3665":{"3664":551,"3666":551},"3666":{"3665":551,"3667":551},"3667":{"3666":551,"3668":551},"3668":{"3503":551,"3667":551},"3680":{"3513":143,"3681":143},"3681":{"3680":143,"3682":143},"3682":{"3681":143,"3830":143},"3683":{"3684":539,"3831":539},"3684":{"3683":539,"3686":539},"3686":{"3684":539,"3687":539},"3687":{"3686":539,"3688":540,"3833":539},"3688":{"3687":540,"3689":540},"3689":{"3523":540,"3688":540},"3690":{"3526":2,"3691":228,"3835":2},"3691":{"3690":228,"3838":228},"3697":{"3530":514,"3698":514},"3698":{"3532":514,"3697":514},"3699":{"3533":514,"3701":514},"3701":{"3699":514,"3844":514},"3702":{"3537":7,"3847":7},"3703":{"3538":238,"3847":238},"3706":{"3544":269,"3852":269},"3710":{"3547":504,"3856":504},"3714":{"3552":17},"3719":{"3557":20,"3720":20},"3720":{"3719":20,"3864":20},"3738":{"3580":475,"3739":475},"3739":{"3738":475,"3882":475},"3742":{"3743":468,"3744":468},"3743":{"3742":468,"3745":468},"3744":{"3742":468,"3888":468},"3745":{"3586":468,"3743":468},"3761":{"3601":470,"3762":470},"3762":{"3761":470,"3763":470},"3763":{"3762":470,"3764":470},"3764":{"3763":470,"3765":470},"3765":{"3764":470,"3910":470},"3772":{"3605":500,"3921":500},"3788":{"3626":568,"3943":261,"3945":213},"3789":{"3629":565,"3946":567,"3947":565},"3795":{"3638":189,"3952":189},"3796":{"3639":9,"3952":9},"3801":{"3649":560,"3956":176,"3957":149},"3806":{"3653":554,"3807":554},"3807":{"3806":554,"3962":554},"3810":{"3811":128},"3811":{"3658":128,"3810":128},"3815":{"3663":2,"3816":2},"3816":{"3815":2,"3817":2},"3817":{"3816":2,"3969":2},"3825":{"3508":546,"3980":546},"3830":{"3682":143,"3984":167,"3986":143},"3831":{"3683":539,"3986":539},"3832":{"3986":145,"3988":147},"3833":{"3687":539,"3834":539},"3834":{"3833":539,"3989":539},"3835":{"3690":2,"3836":2},"3836":{"3835":2,"3990":2},"3838":{"3691":228,"3839":228},"3839":{"3838":228,"3992":165,"3993":516},"3843":{"3844":516,"3845":516},"3844":{"3701":514,"3843":516,"3998":514},"3845":{"3843":516,"3996":516},"3847":{"3702":7,"3703":238,"3848":7},"3848":{"3847":7,"3850":7},"3850":{"3848":7,"4001":7},"3852":{"3706":269,"3853":269,"4003":255},"3853":{"3852":269,"3854":504,"4005":268},"3854":{"3853":504,"3855":504},"3855":{"3854":504,"3856":504,"3857":506},"3856":{"3710":504,"3855":504,"3857":527},"3857":{"3855":506,"3856":527,"4008":506},"3864":{"3720":20,"4017":20},"3882":{"3739":475,"3883":475},"3883":{"3882":475,"4039":475},"3888":{"3744":468,"3889":468},"3889":{"3888":468,"4203":468},"3897":{"4051":377},"3900":{"3901":376},"3901":{"3900":376,"4055":376},"3910":{"3765":470,"3911":470},"3911":{"3910":470,"4063":470},"3921":{"3772":500,"3922":500},"3922":{"3921":500,"4073":500},"3943":{"3788":261,"4095":261},"3945":{"3788":213,"3946":213},"3946":{"3789":567,"3945":213,"3947":213},"3947":{"3789":565,"3946":213,"3948":213},"3948":{"3947":213,"3949":213},"3949":{"3948":213,"4099":213},"3951":{"3952":189,"4102":194},"3952":{"3795":189,"3796":9,"3951":189,"4104":9},"3953":{"3954":177,"4104":177},"3954":{"3953":177,"3955":161},"3955":{"3954":161,"4107":161},"3956":{"3801":176,"4107":176},"3957":{"3801":149,"4108":149},"3962":{"3807":554,"3963":554},"3963":{"3962":554,"3964":554},"3964":{"3963":554,"3965":554},"3965":{"3964":554,"3966":554},"3966":{"3965":554,"3967":554},"3967":{"3966":554,"4118":554},"3969":{"3817":2,"4118":3,"4119":2},"3980":{"3825":546,"3981":546},"3981":{"3980":546,"4128":546},"3982":{"3983":167,"4129":167},"3983":{"3982":167,"3984":167},"3984":{"3830":167,"3983":167},"3986":{"3830":143,"3831":539,"3832":145,"4133":126},"3988":{"3832":147,"4134":162},"3989":{"3834":539,"4136":539},"3990":{"3836":2,"4137":2,"4140":185},"3992":{"3839":165,"4141":165},"3993":{"3839":516,"3995":516},"3995":{"3993":516,"3996":516},"3996":{"3845":516,"3995":516},"3998":{"3844":514,"4000":514},"3999":{"4000":509,"4001":509},"4000":{"3998":514,"3999":509,"4153":509},"4001":{"3850":7,"3999":509,"4002":245,"4003":7},"4002":{"4001":245,"4155":235,"4157":235},"4003":{"3852":255,"4001":7,"4157":7},"4005":{"3853":268,"4006":268},"4006":{"4005":268,"4007":268},"4007":{"4006":268,"4008":505},"4008":{"3857":506,"4007":505,"4009":505},"4009":{"4008":505,"4011":505},"4011":{"4009":505,"4165":505},"4017":{"3864":20,"4018":20},"4018":{"4017":20,"4174":20},"4033":{"4034":499,"4035":499},"4034":{"4033":499,"4189":499},"4035":{"4033":499,"4036":499},"4036":{"4035":499,"4037":499},"4037":{"4036":499,"4038":499},"4038":{"4037":499,"4039":499},"4039":{"3883":475,"4038":499,"4194":475},"4051":{"3897":377,"4052":369,"4212":377},"4052":{"4051":369,"4053":369},"4053":{"4052":369,"4214":369},"4054":{"4055":376,"4215":366},"4055":{"3901":376,"4054":376},"4057":{"4218":339},"4063":{"3911":470,"4232":470},"4071":{"4072":500,"4073":500},"4072":{"4071":500,"4240":500},"4073":{"3922":500,"4071":500},"4089":{"4091":274},"4091":{"4089":274,"4260":274},"4092":{"4093":274,"4260":274},"4093":{"4092":274,"4094":262,"4262":262},"4094":{"4093":262,"4264":262},"4095":{"3943":261,"4264":261},"4099":{"3949":213,"4269":213},"4102":{"3951":194,"4271":194},"4104":{"3952":9,"3953":177,"4273":9},"4106":{"4107":4,"4275":4},"4107":{"3955":161,"3956":176,"4106":4,"4108":4},"4108":{"3957":149,"4107":4,"4109":4,"4277":150},"4109":{"4108":4,"4278":4},"4117":{"4118":4,"4283":4},"4118":{"3967":554,"3969":3,"4117":4,"4119":6},"4119":{"3969":2,"4118":6,"4285":57,"4286":2},"4126":{"4127":102,"4290":94},"4127":{"4126":102,"4292":102},"4128":{"3981":546,"4292":546},"4129":{"3982":167,"4130":167},"4130":{"4129":167,"4292":101},"4132":{"4295":126,"4448":126},"4133":{"3986":126,"4296":126},"4134":{"3988":162,"4135":162},"4135":{"4134":162,"4298":162},"4136":{"3989":539,"4139":539},"4137":{"3990":2,"4139":2,"4140":165},"4139":{"4136":539,"4137":2,"4298":2},"4140":{"3990":185,"4137":165,"4141":165},"4141":{"3992":165,"4140":165},"4153":{"4000":509,"4154":509},"4154":{"4153":509,"4308":509},"4155":{"4002":235,"4156":234},"4156":{"4155":234,"4309":234},"4157":{"4002":235,"4003":7,"4158":7},"4158":{"4157":7,"4312":7},"4165":{"4011":505,"4166":505},"4166":{"4165":505,"4168":505},"4168":{"4166":505,"4323":505,"4324":511},"4170":{"4171":511,"4324":511},"4171":{"4170":511,"4172":511},"4172":{"4171":511,"4325":511},"4174":{"4018":20,"4175":19},"4175":{"4174":19,"4327":19},"4189":{"4034":499,"4190":499},"4190":{"4189":499,"4342":499},"4194":{"4039":475,"4345":475},"4203":{"3889":468,"4367":468},"4209":{"4210":377,"4371":377},"4210":{"4209":377,"4211":377},"4211":{"4210":377,"4212":377,"4373":350},"4212":{"4051":377,"4211":377},"4214":{"4053":369,"4376":337},"4215":{"4054":366,"4377":349},"4218":{"4057":339,"4220":339},"4220":{"4218":339,"4380":339},"4232":{"4063":470,"4233":470},"4233":{"4232":470,"4392":470},"4235":{"4237":500,"4238":500},"4237":{"4235":500,"4394":500},"4238":{"4235":500,"4239":500},"4239":{"4238":500,"4240":500},"4240":{"4072":500,"4239":500},"4252":{"4253":441,"4405":441},"4253":{"4252":441,"4254":447},"4254":{"4253":447,"4407":447},"4255":{"4408":447},"4260":{"4091":274,"4092":274},"4262":{"4093":262,"4415":265},"4264":{"4094":262,"4095":261},"4269":{"4099":213,"4422":213},"4270":{"4271":213,"4422":213},"4271":{"4102":194,"4270":213,"4425":214},"4273":{"4104":9,"4274":9},"4274":{"4273":9,"4275":4,"4427":4},"4275":{"4106":4,"4274":4},"4277":{"4108":150},"4278":{"4109":4,"4279":4},"4279":{"4278":4,"4280":4},"4280":{"4279":4,"4433":4},"4283":{"4117":4,"4284":57,"4435":4,"4436":57},"4284":{"4283":57,"4285":57},"4285":{"4119":57,"4284":57},"4286":{"4119":2,"4287":2,"4438":78},"4287":{"4286":2,"4441":2},"4288":{"4289":2,"4441":2},"4289":{"4288":2,"4443":2},"4290":{"4126":94,"4443":94},"4292":{"4127":102,"4128":546,"4130":101,"4444":93},"4295":{"4132":126,"4296":126},"4296":{"4133":126,"4295":126,"4449":133},"4297":{"4298":2,"4449":2,"4451":146},"4298":{"4135":162,"4139":2,"4297":2},"4308":{"4154":509,"4467":509},"4309":{"4156":234,"4471":234},"4311":{"4312":253,"4471":253},"4312":{"4158":7,"4311":253,"4472":7},"4323":{"4168":505,"4481":505},"4324":{"4168":511,"4170":511},"4325":{"4172":511,"4326":511},"4326":{"4325":511,"4484":511},"4327":{"4175":19,"4328":19},"4328":{"4327":19,"4486":22},"4342":{"4190":499,"4343":499},"4343":{"4342":499,"4500":499},"4345":{"4194":475,"4346":475},"4346":{"4345":475,"4348":475},"4348":{"4346":475,"4349":475},"4349":{"4348":475,"4350":475},"4350":{"4349":475,"4352":475},"4352":{"4350":475,"4353":475},"4353":{"4352":475,"4354":475},"4354":{"4353":475,"4355":475},"4355":{"4354":475,"4356":475},"4356":{"4355":475,"4357":475},"4357":{"4356":475,"4358":475},"4358":{"4357":475,"4361":475},"4361":{"4358":475,"4516":475},"4365":{"4366":468,"4367":468},"4366":{"4365":468,"4518":468},"4367":{"4203":468,"4365":468},"4370":{"4371":377,"4524":377},"4371":{"4209":377,"4370":377},"4373":{"4211":350,"4528":350},"4376":{"4214":337,"4377":342,"4533":337},"4377":{"4215":349,"4376":342,"4378":341},"4378":{"4377":341,"4537":331},"4380":{"4220":339,"4539":339},"4381":{"4382":470,"4539":470},"4382":{"4381":470,"4385":470},"4384":{"4385":470,"4545":470},"4385":{"4382":470,"4384":470},"4392":{"4233":470,"4393":470,"4394":500},"4393":{"4392":470,"4554":470},"4394":{"4237":500,"4392":500},"4404":{"4405":441,"4565":441},"4405":{"4252":441,"4404":441},"4407":{"4254":447,"4408":447},"4408":{"4255":447,"4407":447,"4409":452},"4409":{"4408":452,"4569":452},"4415":{"4262":265,"4575":272},"4422":{"4269":213,"4270":213},"4425":{"4271":214,"4426":179},"4426":{"4425":179,"4427":163},"4427":{"4274":4,"4426":163,"4588":4},"4433":{"4280":4,"4434":4,"4594":110},"4434":{"4433":4,"4435":4},"4435":{"4283":4,"4434":4},"4436":{"4283":57,"4597":57},"4438":{"4286":78},"4440":{"4441":77,"4602":74},"4441":{"4287":2,"4288":2,"4440":77},"4443":{"4289":2,"4290":94,"4604":2},"4444":{"4292":93,"4605":89},"4448":{"4132":126,"4449":2,"4609":2},"4449":{"4296":133,"4297":2,"4448":2,"4450":121,"4610":121},"4450":{"4449":121,"4451":121},"4451":{"4297":146,"4450":121,"4452":140,"4611":140,"4613":541},"4452":{"4451":140,"4453":140},"4453":{"4452":140,"4617":140},"4467":{"4308":509,"4468":509},"4468":{"4467":509,"4630":509},"4471":{"4309":234,"4311":253,"4635":234},"4472":{"4312":7,"4474":7,"4636":229},"4474":{"4472":7,"4638":505},"4481":{"4323":505,"4643":505},"4484":{"4326":511,"4647":511},"4486":{"4328":22,"4650":22},"4500":{"4343":499,"4667":499},"4516":{"4361":475,"4684":475},"4518":{"4366":468,"4687":468},"4519":{"4520":388},"4520":{"4519":388,"4522":388},"4522":{"4520":388,"4691":388},"4524":{"4370":377,"4693":382},"4528":{"4373":350,"4529":13,"4531":13},"4529":{"4528":13,"4695":13,"4696":336,"4697":467},"4531":{"4528":13,"4532":13},"4532":{"4531":13,"4533":13,"4700":467},"4533":{"4376":337,"4532":13,"4534":13,"4700":469},"4534":{"4533":13,"4702":13},"4537":{"4378":331,"4706":331},"4539":{"4380":339,"4381":470,"4706":340},"4545":{"4384":470,"4546":491,"4547":470},"4546":{"4545":491,"4712":491},"4547":{"4545":470,"4549":470},"4549":{"4547":470,"4551":470},"4551":{"4549":470,"4552":470},"4552":{"4551":470,"4554":470},"4554":{"4393":470,"4552":470,"4555":484},"4555":{"4554":484,"4715":484},"4556":{"4557":363,"4558":363},"4557":{"4556":363,"4870":363},"4558":{"4556":363,"4559":363},"4559":{"4558":363,"4721":363},"4565":{"4404":441,"4726":441},"4568":{"4569":449,"4729":445},"4569":{"4409":452,"4568":449,"4570":448,"4730":449},"4570":{"4569":448},"4574":{"4575":275,"4734":275},"4575":{"4415":272,"4574":275},"4588":{"4427":4,"4589":4},"4589":{"4588":4,"4750":137},"4592":{"4593":118},"4593":{"4592":118,"4594":110,"4754":110},"4594":{"4433":110,"4593":110},"4597":{"4436":57,"4598":57,"4758":73},"4598":{"4597":57,"4759":57},"4602":{"4440":74,"4603":56,"4763":56},"4603":{"4602":56,"4604":63},"4604":{"4443":2,"4603":63,"4605":2,"4765":63},"4605":{"4444":89,"4604":2,"4606":2},"4606":{"4605":2,"4607":2,"4768":5},"4607":{"4606":2,"4608":2},"4608":{"4607":2,"4609":2,"4769":8},"4609":{"4448":2,"4608":2,"4610":121},"4610":{"4449":121,"4609":121},"4611":{"4451":140,"4612":140},"4612":{"4611":140,"4771":140},"4613":{"4451":541,"4614":541},"4614":{"4613":541,"4775":541},"4617":{"4453":140,"4777":140},"4630":{"4468":509,"4788":509},"4635":{"4471":234,"4636":234},"4636":{"4472":229,"4635":234,"4794":229},"4638":{"4474":505,"4639":505},"4639":{"4638":505,"4799":505},"4642":{"4644":505,"4800":505},"4643":{"4481":505,"4644":505},"4644":{"4642":505,"4643":505},"4647":{"4484":511,"4648":511},"4648":{"4647":511,"4805":511},"4650":{"4486":22,"4651":21},"4651":{"4650":21,"4806":21},"4661":{"4662":499,"4663":499},"4662":{"4661":499,"4816":499},"4663":{"4661":499,"4665":499},"4665":{"4663":499,"4666":499},"4666":{"4665":499,"4667":499},"4667":{"4500":499,"4666":499},"4684":{"4516":475,"4832":475},"4687":{"4518":468,"4688":468},"4688":{"4687":468,"4836":468},"4691":{"4522":388,"4839":386,"4841":387},"4693":{"4524":382,"4844":343},"4695":{"4529":13,"4696":344,"4845":13},"4696":{"4529":336,"4695":344},"4697":{"4529":467,"4699":468,"4700":467},"4698":{"4699":473,"4701":473},"4699":{"4697":468,"4698":473,"4848":468},"4700":{"4532":467,"4533":469,"4697":467,"4701":469},"4701":{"4698":473,"4700":469,"4853":469},"4702":{"4534":13,"4703":13,"4704":333},"4703":{"4702":13,"4854":13},"4704":{"4702":333,"4855":326},"4705":{"4706":327,"4856":327},"4706":{"4537":331,"4539":340,"4705":327,"4707":328},"4707":{"4706":328,"4858":322},"4712":{"4546":491,"4713":484,"4714":484},"4713":{"4712":484,"4715":484,"4867":490},"4714":{"4712":484,"4863":484},"4715":{"4555":484,"4713":484},"4721":{"4559":363,"4875":363},"4725":{"4726":417,"4878":417},"4726":{"4565":441,"4725":417},"4729":{"4568":445,"4881":438},"4730":{"4569":449,"4731":446},"4731":{"4730":446,"4883":446},"4734":{"4574":275,"4887":276},"4750":{"4589":137,"4751":137},"4751":{"4750":137,"4752":115,"4904":137},"4752":{"4751":115,"4905":115},"4754":{"4593":110,"4906":110,"4908":100},"4758":{"4597":73,"4911":73},"4759":{"4598":57,"4760":57},"4760":{"4759":57,"4913":57},"4762":{"4763":56,"4915":56},"4763":{"4602":56,"4762":56},"4765":{"4604":63,"4918":63},"4768":{"4606":5,"4921":5},"4769":{"4608":8,"4921":8},"4771":{"4612":140,"4773":140},"4773":{"4771":140,"4923":140},"4775":{"4614":541,"4776":549,"4931":541},"4776":{"4775":549,"4928":549},"4777":{"4617":140,"4932":134},"4788":{"4630":509,"4789":509},"4789":{"4788":509,"4951":509},"4793":{"4794":229,"4953":229},"4794":{"4636":229,"4793":229,"4955":229},"4799":{"4639":505,"4800":505},"4800":{"4642":505,"4799":505,"4801":509},"4801":{"4800":509,"4962":509},"4805":{"4648":511,"4964":511},"4806":{"4651":21,"4807":21},"4807":{"4806":21,"4967":21},"4816":{"4662":499,"4817":499},"4817":{"4816":499,"4974":499},"4832":{"4684":475,"4833":475},"4833":{"4832":475,"4988":475},"4836":{"4688":468,"4837":468},"4837":{"4836":468,"4994":468},"4839":{"4691":386,"4840":358},"4840":{"4839":358,"4996":358},"4841":{"4691":387,"4842":374},"4842":{"4841":374,"4843":374},"4843":{"4842":374,"4844":343,"5001":372},"4844":{"4693":343,"4843":343,"4846":13,"5002":13},"4845":{"4695":13,"4846":13},"4846":{"4844":13,"4845":13},"4848":{"4699":468,"4849":468},"4849":{"4848":468,"5008":468},"4853":{"4701":469,"4854":469},"4854":{"4703":13,"4853":469,"5014":13,"5015":305},"4855":{"4704":326,"4856":326},"4856":{"4705":327,"4855":326},"4858":{"4707":322,"4859":308},"4859":{"4858":308,"4860":330,"5019":308},"4860":{"4859":330,"5020":330},"4863":{"4714":484,"5022":484},"4867":{"4713":490,"4868":490},"4868":{"4867":490,"4869":490},"4869":{"4868":490,"5026":490},"4870":{"4557":363,"4871":362},"4871":{"4870":362,"5026":324,"5028":362},"4875":{"4721":363,"4876":394,"5031":363},"4876":{"4875":394},"4878":{"4725":417,"4879":435,"5034":417},"4879":{"4878":435,"4880":435},"4880":{"4879":435,"4881":435},"4881":{"4729":438,"4880":435,"4882":425,"5037":425},"4882":{"4881":425,"5039":425},"4883":{"4731":446,"5039":446},"4887":{"4734":276,"4888":276},"4888":{"4887":276,"5043":277},"4904":{"4751":137,"5058":137},"4905":{"4752":115,"5062":115},"4906":{"4754":110,"5062":110},"4908":{"4754":100,"4909":100},"4909":{"4908":100,"5066":75},"4910":{"4911":73,"5066":75,"5067":73},"4911":{"4758":73,"4910":73},"4913":{"4760":57,"4914":57},"4914":{"4913":57,"5070":57,"5209":71},"4915":{"4762":56,"5070":56},"4917":{"4918":67,"5073":67},"4918":{"4765":63,"4917":67},"4920":{"4921":66,"5076":66},"4921":{"4768":5,"4769":8,"4920":66,"5077":8},"4923":{"4773":140,"4924":140},"4924":{"4923":140,"5078":90,"5080":90},"4925":{"4926":549,"4927":549},"4926":{"4925":549,"4928":549},"4927":{"4925":549,"5081":549},"4928":{"4776":549,"4926":549},"4931":{"4775":541,"5083":541},"4932":{"4777":134},"4945":{"4946":528,"5095":528},"4946":{"4945":528,"5094":528},"4951":{"4789":509,"4952":509},"4952":{"4951":509,"5098":509},"4953":{"4793":229,"4954":240,"4955":229},"4954":{"4953":240,"5100":240},"4955":{"4794":229,"4953":229},"4962":{"4801":509,"5108":509},"4964":{"4805":511,"4965":511},"4965":{"4964":511,"5111":511},"4967":{"4807":21,"4968":21},"4968":{"4967":21,"5114":21},"4974":{"4817":499,"5121":499},"4988":{"4833":475,"5626":475},"4990":{"5131":468,"5133":468},"4992":{"4993":468,"4994":468},"4993":{"4992":468,"5133":468},"4994":{"4837":468,"4992":468},"4996":{"4840":358,"4997":358},"4997":{"4996":358,"5138":358},"5001":{"4843":372,"5002":352},"5002":{"4844":13,"5001":352,"5142":347,"5143":13},"5008":{"4849":468,"5146":468,"5148":474},"5014":{"4854":13,"5154":335,"5155":13},"5015":{"4854":305,"5016":305},"5016":{"5015":305,"5017":305},"5017":{"5016":305,"5157":305},"5019":{"4859":308,"5158":308},"5020":{"4860":330,"5021":330},"5021":{"5020":330,"5022":330},"5022":{"4863":484,"5021":330,"5023":325},"5023":{"5022":325,"5164":325},"5024":{"5025":324,"5164":324},"5025":{"5024":324,"5026":324},"5026":{"4869":490,"4871":324,"5025":324},"5028":{"4871":362,"5169":362},"5031":{"4875":363,"5170":362,"5171":362},"5034":{"4878":417,"5035":426,"5174":399},"5035":{"5034":426,"5176":426},"5037":{"4881":425,"5176":425},"5039":{"4882":425,"4883":446,"5179":443},"5043":{"4888":277,"5183":277},"5044":{"5045":231,"5183":231},"5045":{"5044":231,"5046":231},"5046":{"5045":231,"5047":231},"5047":{"5046":231,"5187":231},"5058":{"4904":137,"5198":142},"5062":{"4905":115,"4906":110,"5202":115},"5066":{"4909":75,"4910":75,"5206":80},"5067":{"4910":73,"5207":73},"5068":{"5207":69,"5209":51},"5070":{"4914":57,"4915":56,"5210":55},"5073":{"4917":67,"5074":67},"5074":{"5073":67,"5075":67},"5075":{"5074":67,"5076":66,"5215":65},"5076":{"4920":66,"5075":66},"5077":{"4921":8,"5078":90,"5217":8},"5078":{"4924":90,"5077":90,"5079":85,"5080":85},"5079":{"5078":85,"5217":85},"5080":{"4924":90,"5078":85},"5081":{"4927":549,"5222":549},"5083":{"4931":541,"5084":541},"5084":{"5083":541,"5085":541},"5085":{"5084":541,"5086":541},"5086":{"5085":541,"5087":541},"5087":{"5086":541,"5088":541},"5088":{"5087":541,"5089":541},"5089":{"5088":541,"5092":541},"5091":{"5092":528,"5094":528},"5092":{"5089":541,"5091":528,"5227":528},"5094":{"4946":528,"5091":528},"5095":{"4945":528,"5096":528},"5096":{"5095":528,"5097":528},"5097":{"5096":528,"5098":528},"5098":{"4952":509,"5097":528,"5099":509},"5099":{"5098":509,"5240":509},"5100":{"4954":240,"5101":240},"5101":{"5100":240,"5102":240},"5102":{"5101":240,"5242":510},"5108":{"4962":509,"5109":509},"5109":{"5108":509,"5250":509},"5111":{"4965":511,"5112":511},"5112":{"5111":511,"5113":511},"5113":{"5112":511,"5253":511},"5114":{"4968":21,"5255":21},"5121":{"4974":499,"5122":499},"5122":{"5121":499,"5262":499},"5131":{"4990":468,"5132":468},"5132":{"5131":468,"5270":468},"5133":{"4990":468,"4993":468},"5134":{"5135":358,"5136":358},"5135":{"5134":358,"5272":358},"5136":{"5134":358,"5137":358},"5137":{"5136":358,"5138":358},"5138":{"4997":358,"5137":358},"5142":{"5002":347,"5144":373},"5143":{"5002":13,"5144":13},"5144":{"5142":373,"5143":13,"5279":13},"5146":{"5008":468,"5284":468},"5147":{"5149":476,"5284":476},"5148":{"5008":474,"5149":474},"5149":{"5147":476,"5148":474,"5287":480,"5288":474},"5150":{"5151":313},"5151":{"5150":313,"5153":301,"5288":301},"5153":{"5151":301,"5154":309},"5154":{"5014":335,"5153":309,"5155":309},"5155":{"5014":13,"5154":309,"5156":13},"5156":{"5155":13,"5157":13},"5157":{"5017":305,"5156":13,"5158":13},"5158":{"5019":308,"5157":13,"5159":13},"5159":{"5158":13,"5160":285,"5295":13},"5160":{"5159":285,"5294":285,"5295":294},"5164":{"5023":325,"5024":324,"5300":315},"5168":{"5169":348,"5303":348},"5169":{"5028":362,"5168":348,"5170":362},"5170":{"5031":362,"5169":362},"5171":{"5031":362,"5308":362},"5173":{"5174":399,"5308":362,"5309":362},"5174":{"5034":399,"5173":399},"5176":{"5035":426,"5037":425,"5177":426},"5177":{"5176":426,"5314":426},"5179":{"5039":443,"5180":442,"5315":444},"5180":{"5179":442,"5436":442},"5183":{"5043":277,"5044":231,"5319":231},"5187":{"5047":231,"5188":231},"5188":{"5187":231,"5330":231},"5198":{"5058":142,"5339":142},"5200":{"5342":99},"5201":{"5202":115,"5342":115},"5202":{"5062":115,"5201":115,"5203":92},"5203":{"5202":92,"5344":92},"5205":{"5206":79,"5345":92},"5206":{"5066":80,"5205":79,"5207":73,"5347":80},"5207":{"5067":73,"5068":69,"5206":73},"5209":{"4914":71,"5068":51,"5350":51},"5210":{"5070":55,"5351":55},"5212":{"5353":54},"5215":{"5075":65,"5216":60,"5356":60},"5216":{"5215":60,"5218":60},"5217":{"5077":8,"5079":85,"5218":8},"5218":{"5216":60,"5217":8,"5358":8},"5219":{"5220":549,"5221":549},"5220":{"5219":549,"5360":549},"5221":{"5219":549,"5222":549},"5222":{"5081":549,"5221":549},"5227":{"5092":528,"5228":528},"5228":{"5227":528,"5364":528},"5231":{"5364":542,"5365":139},"5240":{"5099":509,"5241":509,"5370":529},"5241":{"5240":509,"5244":509},"5242":{"5102":510,"5243":510},"5243":{"5242":510,"5244":509,"5371":513,"5375":509},"5244":{"5241":509,"5243":509},"5246":{"5247":509,"5249":509},"5247":{"5246":509,"5250":509},"5249":{"5246":509,"5375":509},"5250":{"5109":509,"5247":509},"5253":{"5113":511,"5254":511},"5254":{"5253":511,"5379":511},"5255":{"5114":21,"5381":21},"5262":{"5122":499,"5264":499},"5264":{"5262":499,"5387":499},"5270":{"5132":468,"5272":471,"5391":468},"5272":{"5135":358,"5270":471,"5393":358},"5279":{"5144":13,"5280":13},"5280":{"5279":13,"5401":13},"5282":{"5283":468,"5403":468},"5283":{"5282":468,"5284":468},"5284":{"5146":468,"5147":476,"5283":468},"5287":{"5149":480,"5405":480},"5288":{"5149":474,"5151":301,"5289":299,"5290":301},"5289":{"5288":299,"5406":299},"5290":{"5288":301,"5408":301},"5294":{"5160":285,"5412":285,"5413":481},"5295":{"5159":13,"5160":294,"5296":13},"5296":{"5295":13,"5297":292,"5417":13},"5297":{"5296":292,"5418":292},"5300":{"5164":315,"5301":315},"5301":{"5300":315,"5421":311,"5422":315},"5303":{"5168":348,"5423":323,"5424":323},"5308":{"5171":362,"5173":362,"5309":362,"5428":362},"5309":{"5173":362,"5308":362,"5429":398},"5314":{"5177":426,"5315":436,"5433":426},"5315":{"5179":444,"5314":436},"5319":{"5183":231,"5321":231},"5321":{"5319":231,"5442":231},"5330":{"5188":231,"5449":231},"5339":{"5198":142,"5459":142},"5342":{"5200":99,"5201":115,"5343":122,"5461":99},"5343":{"5342":122,"5462":122},"5344":{"5203":92,"5345":92,"5462":99},"5345":{"5205":92,"5344":92},"5347":{"5206":80,"5466":82},"5349":{"5350":58,"5468":58},"5350":{"5209":51,"5349":58,"5351":51},"5351":{"5210":55,"5350":51,"5352":51},"5352":{"5351":51,"5353":52,"5470":52},"5353":{"5212":54,"5352":52,"5354":53,"5471":54},"5354":{"5353":53,"5356":61,"5474":53},"5355":{"5356":61,"5475":61},"5356":{"5215":60,"5354":61,"5355":61},"5358":{"5218":8,"5359":8},"5359":{"5358":8,"5476":8},"5360":{"5220":549,"5361":549},"5361":{"5360":549,"5479":549},"5364":{"5228":528,"5231":542,"5481":528},"5365":{"5231":139,"5483":139},"5370":{"5240":529,"5372":529},"5371":{"5243":513,"5372":513},"5372":{"5370":529,"5371":513,"5490":513},"5375":{"5243":509,"5249":509,"5492":531},"5379":{"5254":511,"5380":511},"5380":{"5379":511,"5498":511},"5381":{"5255":21,"5382":21},"5382":{"5381":21,"5383":21},"5383":{"5382":21,"5384":21},"5384":{"5383":21,"5386":21},"5386":{"5384":21,"5388":499},"5387":{"5264":499,"5388":499},"5388":{"5386":499,"5387":499,"5504":511},"5391":{"5270":468,"5392":468},"5392":{"5391":468,"5507":468},"5393":{"5272":358,"5394":358},"5394":{"5393":358,"5509":358},"5401":{"5280":13,"5402":13},"5402":{"5401":13,"5517":13},"5403":{"5282":468,"5519":468},"5405":{"5287":480,"5521":480},"5406":{"5289":299,"5407":299},"5407":{"5406":299,"5408":289,"5525":289},"5408":{"5290":301,"5407":289},"5409":{"5410":289,"5411":289,"5527":479},"5410":{"5409":289,"5412":289},"5411":{"5409":289,"5526":289},"5412":{"5294":285,"5410":289,"5529":285},"5413":{"5294":481,"5415":481},"5415":{"5413":481,"5530":481},"5417":{"5296":13,"5532":13},"5418":{"5297":292,"5419":292},"5419":{"5418":292,"5534":292},"5420":{"5534":307,"5536":307},"5421":{"5301":311,"5536":311},"5422":{"5301":315,"5423":323,"5537":323},"5423":{"5303":323,"5422":323},"5424":{"5303":323,"5540":323},"5427":{"5428":353,"5541":353},"5428":{"5308":362,"5427":353,"5429":392,"5543":353},"5429":{"5309":398,"5428":392},"5432":{"5433":422,"5547":422},"5433":{"5314":426,"5432":422,"5548":426},"5436":{"5180":442,"5551":442},"5442":{"5321":231},"5449":{"5330":231,"5567":231},"5459":{"5339":142,"5460":142},"5460":{"5459":142,"5461":99,"5579":99},"5461":{"5342":99,"5460":99},"5462":{"5343":122,"5344":99,"5579":99},"5466":{"5347":82,"5467":81,"5584":81},"5467":{"5466":81,"5468":58,"5585":70},"5468":{"5349":58,"5467":58},"5470":{"5352":52,"5587":59},"5471":{"5353":54,"5589":54},"5474":{"5354":53,"5475":61,"5592":53},"5475":{"5355":61,"5474":61,"5477":72},"5476":{"5359":8,"5477":8},"5477":{"5475":72,"5476":8,"5478":549,"5594":8},"5478":{"5477":549,"5479":549,"5597":562},"5479":{"5361":549,"5478":549},"5481":{"5364":528,"5482":528},"5482":{"5481":528,"5599":528},"5483":{"5365":139,"5484":139},"5484":{"5483":139,"5601":139},"5490":{"5372":513,"5491":513},"5491":{"5490":513,"5607":513},"5492":{"5375":531,"5493":531},"5493":{"5492":531,"5494":518,"5495":518},"5494":{"5493":518,"5610":518},"5495":{"5493":518,"5496":518},"5496":{"5495":518,"5615":518},"5498":{"5380":511,"5499":511},"5499":{"5498":511,"5500":511},"5500":{"5499":511,"5501":511},"5501":{"5500":511,"5621":511},"5504":{"5388":511,"5623":511},"5507":{"5392":468,"5508":468},"5508":{"5507":468,"5628":468},"5509":{"5394":358,"5510":358},"5510":{"5509":358,"5629":358},"5517":{"5402":13,"5518":13},"5518":{"5517":13,"5639":359,"5758":477},"5519":{"5403":468,"5520":478,"5641":468},"5520":{"5519":478,"5521":478},"5521":{"5405":480,"5520":478,"5522":478},"5522":{"5521":478,"5643":478},"5525":{"5407":289,"5526":289},"5526":{"5411":289,"5525":289},"5527":{"5409":479,"5649":479},"5529":{"5412":285},"5530":{"5415":481,"5531":481},"5531":{"5530":481,"5651":481},"5532":{"5417":13,"5655":13},"5534":{"5419":292,"5420":307,"5658":292},"5536":{"5420":307,"5421":311,"5537":307},"5537":{"5422":323,"5536":307,"5661":307},"5540":{"5424":323,"5541":353,"5663":323},"5541":{"5427":353,"5540":353},"5543":{"5428":353,"5667":353},"5546":{"5670":403,"5671":412},"5547":{"5432":422,"5671":411},"5548":{"5433":426,"5549":426},"5549":{"5548":426,"5550":426},"5550":{"5549":426,"5551":426,"5673":430},"5551":{"5436":442,"5550":426},"5567":{"5449":231,"5684":231},"5579":{"5460":99,"5462":99,"5697":116},"5584":{"5466":81,"5701":81},"5585":{"5467":70,"5586":70},"5586":{"5585":70,"5587":59,"5704":84},"5587":{"5470":59,"5586":59},"5589":{"5471":54,"5707":62,"5708":53},"5591":{"5592":53,"5709":53},"5592":{"5474":53,"5591":53},"5594":{"5477":8,"5595":8},"5595":{"5594":8,"5712":8},"5597":{"5478":562,"5713":562},"5599":{"5482":528,"5600":528},"5600":{"5599":528,"5838":528},"5601":{"5484":139,"5602":139,"5603":221},"5602":{"5601":139,"5841":139},"5603":{"5601":221,"5722":221},"5606":{"5607":513,"5723":236,"5724":243},"5607":{"5491":513,"5606":513,"5608":517},"5608":{"5607":517,"5726":517},"5610":{"5494":518,"5611":518},"5611":{"5610":518,"5726":518},"5615":{"5496":518,"5617":518},"5617":{"5615":518,"5854":518},"5621":{"5501":511,"5623":511},"5623":{"5504":511,"5621":511},"5626":{"4988":475,"5738":475},"5628":{"5508":468,"5630":472,"5745":468},"5629":{"5510":358,"5630":358},"5630":{"5628":472,"5629":358,"5748":358},"5633":{"5634":358,"5635":358},"5634":{"5633":358,"5636":358},"5635":{"5633":358,"5749":358},"5636":{"5634":358,"5637":358},"5637":{"5636":358,"5754":358},"5638":{"5639":359,"5755":358},"5639":{"5518":359,"5638":359,"5756":397},"5641":{"5519":468,"5759":468},"5643":{"5522":478,"5646":479,"5763":478},"5644":{"5645":479,"5646":479},"5645":{"5644":479,"5647":479},"5646":{"5643":479,"5644":479,"5763":482},"5647":{"5645":479,"5648":479},"5648":{"5647":479,"5649":479},"5649":{"5527":479,"5648":479,"5650":481},"5650":{"5649":481,"5651":481},"5651":{"5531":481,"5650":481},"5652":{"5653":13,"5654":13},"5653":{"5652":13,"5772":13,"5773":284},"5654":{"5652":13,"5655":13},"5655":{"5532":13,"5654":13},"5658":{"5534":292,"5776":293},"5661":{"5537":307,"5781":307},"5663":{"5540":323,"5782":323},"5664":{"5782":381,"5784":381},"5667":{"5543":353,"5785":383,"5787":353},"5670":{"5546":403,"5788":353,"5790":353},"5671":{"5546":412,"5547":411},"5673":{"5550":430,"5791":427,"5792":423},"5684":{"5567":231,"5685":231},"5685":{"5684":231,"5801":231},"5694":{"5695":123},"5695":{"5694":123,"5813":123},"5697":{"5579":116,"5814":123,"5815":123},"5701":{"5584":81,"5818":91},"5703":{"5704":84,"5820":84},"5704":{"5586":84,"5703":84},"5707":{"5589":62,"5824":62},"5708":{"5589":53,"5709":53},"5709":{"5591":53,"5708":53,"5826":68,"5827":64},"5712":{"5595":8,"5830":8},"5713":{"5597":562,"5714":562},"5714":{"5713":562,"5832":562},"5721":{"5722":209,"5843":198},"5722":{"5603":221,"5721":209,"5844":209},"5723":{"5606":236,"5845":209},"5724":{"5606":243,"5846":243},"5726":{"5608":517,"5611":518,"5847":517},"5738":{"5626":475,"5739":489,"5740":475},"5739":{"5738":489,"5860":489},"5740":{"5738":475,"5741":475},"5741":{"5740":475,"5742":475},"5742":{"5741":475,"5865":475},"5745":{"5628":468,"5746":468},"5746":{"5745":468,"5869":468},"5748":{"5630":358,"5749":358},"5749":{"5635":358,"5748":358},"5754":{"5637":358,"5878":358},"5755":{"5638":358,"5756":397,"5878":358},"5756":{"5639":397,"5755":397},"5758":{"5518":477,"5759":477,"5760":485},"5759":{"5641":468,"5758":477,"5760":468},"5760":{"5758":485,"5759":468,"5884":468},"5763":{"5643":478,"5646":482,"5764":478},"5764":{"5763":478,"5888":478},"5767":{"5768":288},"5768":{"5767":288,"5770":288},"5770":{"5768":288,"5771":286,"5893":287},"5771":{"5770":286,"5772":286},"5772":{"5653":13,"5771":286,"5893":13},"5773":{"5653":284,"5774":284,"5895":283},"5774":{"5773":284,"5897":290},"5776":{"5658":293,"5898":291},"5780":{"5781":307,"5902":307},"5781":{"5661":307,"5780":307,"5782":323},"5782":{"5663":323,"5664":381,"5781":323},"5784":{"5664":381,"5785":383},"5785":{"5667":383,"5784":383,"5907":384},"5787":{"5667":353,"5788":353},"5788":{"5670":353,"5787":353},"5790":{"5670":353,"5912":353},"5791":{"5673":427,"5792":423,"5913":423},"5792":{"5673":423,"5791":423},"5799":{"5800":569,"5801":569},"5800":{"5799":569,"5919":569},"5801":{"5685":231,"5799":569,"5804":231},"5804":{"5801":231,"5923":232},"5813":{"5695":123,"5814":123,"5933":129},"5814":{"5697":123,"5813":123},"5815":{"5697":123,"5935":123},"5816":{"5817":104,"5935":119},"5817":{"5816":104,"5937":105},"5818":{"5701":91,"5819":86,"5937":96},"5819":{"5818":86,"5820":84,"5939":86},"5820":{"5703":84,"5819":84},"5824":{"5707":62,"5944":76,"6062":76},"5826":{"5709":68,"5946":76},"5827":{"5709":64,"5828":64},"5828":{"5827":64,"5949":64},"5830":{"5712":8,"5831":8},"5831":{"5830":8,"5951":8},"5832":{"5714":562,"5833":562},"5833":{"5832":562,"5834":562},"5834":{"5833":562,"5955":562},"5838":{"5600":528,"5839":532,"5840":528},"5839":{"5838":532,"5962":532},"5840":{"5838":528,"5842":528,"5962":543},"5841":{"5602":139,"5842":139},"5842":{"5840":528,"5841":139,"5843":198,"5963":10},"5843":{"5721":198,"5842":198},"5844":{"5722":209,"5845":209},"5845":{"5723":209,"5844":209,"5846":248},"5846":{"5724":243,"5845":248,"5847":243},"5847":{"5726":517,"5846":243,"5969":247},"5854":{"5617":518,"5855":518},"5855":{"5854":518,"5856":518},"5856":{"5855":518,"5857":518},"5857":{"5856":518,"5975":518},"5860":{"5739":489,"5981":489},"5862":{"5984":458},"5865":{"5742":475,"5866":475},"5866":{"5865":475,"5988":475},"5869":{"5746":468,"5870":468},"5870":{"5869":468,"5992":468},"5878":{"5754":358,"5755":358},"5884":{"5760":468,"5885":468},"5885":{"5884":468,"6003":468},"5888":{"5764":478,"5889":486,"5890":478},"5889":{"5888":486,"6007":486},"5890":{"5888":478,"6010":478},"5892":{"5893":13,"6011":13},"5893":{"5770":287,"5772":13,"5892":13},"5895":{"5773":283,"6016":283},"5897":{"5774":290,"5898":290},"5898":{"5776":291,"5897":290,"5899":297,"6018":290},"5899":{"5898":297,"5900":304,"6019":303},"5900":{"5899":304,"5901":304},"5901":{"5900":304,"5902":304},"5902":{"5780":307,"5901":304,"6022":304},"5907":{"5785":384,"6026":371},"5912":{"5790":353,"5913":418,"6031":353},"5913":{"5791":423,"5912":418,"5914":423},"5914":{"5913":423,"6034":423},"5919":{"5800":569,"5920":569},"5920":{"5919":569,"6039":569},"5923":{"5804":232,"5924":232},"5924":{"5923":232,"6041":232},"5931":{"5932":170,"6049":170},"5932":{"5931":170,"5933":170},"5933":{"5813":129,"5932":170,"5934":129},"5934":{"5933":129,"5935":129},"5935":{"5815":123,"5816":119,"5934":129},"5937":{"5817":105,"5818":96},"5939":{"5819":86,"6056":97,"6058":86},"5944":{"5824":76,"5945":76},"5945":{"5944":76,"6063":76},"5946":{"5826":76,"6064":76},"5949":{"5828":64,"6066":64},"5951":{"5831":8,"5952":8,"6069":108},"5952":{"5951":8,"5953":8},"5953":{"5952":8,"5954":8,"6069":109},"5954":{"5953":8,"6071":8},"5955":{"5834":562,"5956":562},"5956":{"5955":562,"5957":562},"5957":{"5956":562,"5958":562},"5958":{"5957":562,"6074":547,"6194":547},"5962":{"5839":532,"5840":543,"6082":532},"5963":{"5842":10,"5964":10},"5964":{"5963":10,"6084":10},"5969":{"5847":247,"6090":252,"6091":252},"5970":{"5971":260,"6091":260},"5971":{"5970":260,"6093":260},"5975":{"5857":518,"5976":518},"5976":{"5975":518,"6098":518},"5981":{"5860":489,"5982":489},"5982":{"5981":489,"5985":489},"5984":{"5862":458,"5985":458},"5985":{"5982":489,"5984":458,"6101":459},"5988":{"5866":475,"5989":475},"5989":{"5988":475,"6106":475},"5992":{"5870":468,"5993":468,"5994":475},"5993":{"5992":468,"5996":468},"5994":{"5992":475,"6113":475},"5996":{"5993":468,"5997":468},"5997":{"5996":468,"6116":468},"6003":{"5885":468,"6004":468},"6004":{"6003":468,"6119":468},"6006":{"6007":486,"6126":486},"6007":{"5889":486,"6006":486},"6009":{"6010":478,"6012":13,"6131":13},"6010":{"5890":478,"6009":478,"6011":483},"6011":{"5892":13,"6010":483,"6012":13,"6013":14},"6012":{"6009":13,"6011":13},"6013":{"6011":14,"6135":14},"6015":{"6016":283,"6137":283,"6138":290},"6016":{"5895":283,"6015":283},"6018":{"5898":290,"6019":296,"6140":290},"6019":{"5899":303,"6018":296,"6020":303},"6020":{"6019":303,"6142":303},"6022":{"5902":304,"6144":304},"6024":{"6146":346},"6025":{"6026":357,"6147":351},"6026":{"5907":371,"6025":357},"6031":{"5912":353,"6154":410},"6034":{"5914":423,"6035":434,"6156":423},"6035":{"6034":434},"6039":{"5920":569,"6040":569},"6040":{"6039":569,"6161":569},"6041":{"5924":232,"6042":223},"6042":{"6041":223,"6043":223},"6043":{"6042":223,"6044":223},"6044":{"6043":223,"6164":569,"6165":215},"6049":{"5931":170,"6171":170},"6056":{"5939":97,"6177":97},"6058":{"5939":86,"6059":86},"6059":{"6058":86,"6060":86,"6181":98},"6060":{"6059":86,"6061":86},"6061":{"6060":86,"6062":83,"6183":87},"6062":{"5824":76,"6061":83,"6063":76},"6063":{"5945":76,"6062":76,"6064":76,"6186":88},"6064":{"5946":76,"6063":76},"6066":{"5949":64,"6067":95,"6188":64},"6067":{"6066":95,"6190":103},"6069":{"5951":108,"5953":109,"6190":108},"6071":{"5954":8,"6072":8},"6072":{"6071":8,"6073":8},"6073":{"6072":8,"6194":8},"6074":{"5958":547,"6075":547},"6075":{"6074":547,"6076":548,"6198":547},"6076":{"6075":548,"6077":548},"6077":{"6076":548,"6078":548},"6078":{"6077":548,"6079":548},"6079":{"6078":548,"6080":548},"6080":{"6079":548,"6200":548},"6082":{"5962":532,"6083":532},"6083":{"6082":532,"6203":532},"6084":{"5964":10,"6085":10,"6206":244},"6085":{"6084":10,"6204":10,"6206":224},"6089":{"6090":241,"6210":241},"6090":{"5969":252,"6089":241},"6091":{"5969":252,"5970":260},"6093":{"5971":260,"6214":260},"6098":{"5976":518,"6219":518},"6101":{"5985":459,"6102":461},"6102":{"6101":461,"6229":461},"6106":{"5989":475,"6107":475},"6107":{"6106":475,"6233":475},"6113":{"5994":475,"6236":475},"6116":{"5997":468,"6117":468},"6117":{"6116":468,"6244":468},"6119":{"6004":468,"6122":468},"6122":{"6119":468,"6244":468},"6126":{"6006":486,"6255":486},"6131":{"6009":13,"6133":13},"6133":{"6131":13,"6256":13},"6135":{"6013":14,"6261":14},"6137":{"6015":283,"6261":283,"6263":295},"6138":{"6015":290,"6139":290,"6263":298},"6139":{"6138":290,"6140":290},"6140":{"6018":290,"6139":290},"6142":{"6020":303,"6143":320,"6267":303},"6143":{"6142":320,"6144":320},"6144":{"6022":304,"6143":320,"6269":304},"6146":{"6024":346,"6147":345,"6271":346},"6147":{"6025":351,"6146":345,"6273":345},"6153":{"6154":410,"6278":404},"6154":{"6031":410,"6153":410,"6155":424},"6155":{"6154":424,"6280":424},"6156":{"6034":423,"6281":423},"6161":{"6040":569,"6162":569},"6162":{"6161":569,"6164":569},"6164":{"6044":569,"6162":569,"6288":570},"6165":{"6044":215,"6166":216,"6288":215},"6166":{"6165":216,"6291":199},"6171":{"6049":170,"6296":170},"6177":{"6056":97,"6178":111},"6178":{"6177":111,"6302":125,"6303":111},"6180":{"6181":98,"6305":113},"6181":{"6059":98,"6180":98},"6183":{"6061":87,"6307":106},"6185":{"6186":64,"6310":64},"6186":{"6063":88,"6185":64,"6187":64},"6187":{"6186":64,"6312":64},"6188":{"6066":64,"6312":64},"6190":{"6067":103,"6069":108,"6315":108},"6194":{"5958":547,"6073":8,"6195":8},"6195":{"6194":8,"6196":8,"6319":148},"6196":{"6195":8,"6198":8,"6319":130},"6198":{"6075":547,"6196":8,"6321":8},"6200":{"6080":548,"6201":548},"6201":{"6200":548,"6323":548},"6203":{"6083":532,"6325":532},"6204":{"6085":10,"6205":10},"6205":{"6204":10,"6327":10},"6206":{"6084":244,"6085":224,"6329":224},"6210":{"6089":241,"6211":241,"6331":242},"6211":{"6210":241,"6333":266},"6213":{"6214":267,"6336":273},"6214":{"6093":260,"6213":267,"6215":267},"6215":{"6214":267},"6219":{"6098":518,"6220":518},"6220":{"6219":518,"6343":518},"6229":{"6102":461,"6230":461},"6230":{"6229":461,"6231":461},"6231":{"6230":461,"6355":461},"6233":{"6107":475,"6234":475},"6234":{"6233":475,"6359":475},"6236":{"6113":475,"6238":475},"6237":{"6238":487,"6239":487},"6238":{"6236":475,"6237":487,"6365":475},"6239":{"6237":487,"6240":487},"6240":{"6239":487,"6241":487},"6241":{"6240":487,"6243":487},"6243":{"6241":487,"6369":487},"6244":{"6117":468,"6122":468},"6247":{"6248":494,"6249":494},"6248":{"6247":494,"6369":494},"6249":{"6247":494,"6250":494},"6250":{"6249":494,"6251":494},"6251":{"6250":494,"6252":494},"6252":{"6251":494,"6253":494},"6253":{"6252":494,"6254":494},"6254":{"6253":494,"6255":494},"6255":{"6126":486,"6254":494,"6256":486,"6377":493},"6256":{"6133":13,"6255":486,"6257":13},"6257":{"6256":13,"6377":13},"6261":{"6135":14,"6137":283,"6262":14},"6262":{"6261":14,"6383":14},"6263":{"6137":295,"6138":298,"6384":298,"6385":300},"6267":{"6142":303,"6388":303},"6269":{"6144":304,"6270":304},"6270":{"6269":304,"6271":304},"6271":{"6146":346,"6270":304,"6392":304},"6273":{"6147":345,"6394":367},"6276":{"6277":400,"6397":395},"6277":{"6276":400,"6278":404},"6278":{"6153":404,"6277":404},"6280":{"6155":424,"6281":431},"6281":{"6156":423,"6280":431,"6282":440,"6403":423},"6282":{"6281":440},"6288":{"6164":570,"6165":215},"6291":{"6166":199,"6413":199},"6294":{"6295":193,"6413":192,"6414":192},"6295":{"6294":193,"6296":192,"6414":192},"6296":{"6171":170,"6295":192},"6301":{"6302":125},"6302":{"6178":125,"6301":125},"6303":{"6178":111,"6304":111},"6304":{"6303":111,"6305":111,"6423":124},"6305":{"6180":113,"6304":111,"6425":112},"6307":{"6183":106,"6427":106},"6310":{"6185":64,"6429":64},"6312":{"6187":64,"6188":64,"6313":107},"6313":{"6312":107,"6433":114,"6434":114},"6314":{"6315":114,"6434":114},"6315":{"6190":108,"6314":114,"6435":108},"6318":{"6319":130,"6439":151},"6319":{"6195":148,"6196":130,"6318":130},"6321":{"6198":8,"6441":8},"6323":{"6201":548,"6444":548},"6325":{"6203":532,"6326":532},"6326":{"6325":532,"6447":532},"6327":{"6205":10,"6451":10},"6329":{"6206":224,"6330":230,"6452":224},"6330":{"6329":230,"6331":230},"6331":{"6210":242,"6330":230,"6332":254,"6453":242},"6332":{"6331":254,"6456":254},"6333":{"6211":266,"6334":266},"6334":{"6333":266,"6458":266},"6336":{"6213":273,"6459":273},"6343":{"6220":518,"6344":518},"6344":{"6343":518,"6345":518},"6345":{"6344":518,"6466":518},"6355":{"6231":461,"6357":461},"6357":{"6355":461,"6358":457},"6358":{"6357":457,"6480":456},"6359":{"6234":475,"6483":475},"6363":{"6365":475,"6489":475},"6365":{"6238":475,"6363":475},"6366":{"6367":360,"6368":360},"6367":{"6366":360,"6492":396},"6368":{"6366":360,"6494":360},"6369":{"6243":487,"6248":494,"6497":487},"6371":{"6372":13,"6496":13},"6372":{"6371":13,"6373":13},"6373":{"6372":13,"6374":13},"6374":{"6373":13,"6375":13},"6375":{"6374":13,"6376":13},"6376":{"6375":13,"6377":13},"6377":{"6255":493,"6257":13,"6376":13,"6378":316},"6378":{"6377":316,"6502":317},"6383":{"6262":14,"6384":14,"6507":306},"6384":{"6263":298,"6383":14,"6508":14},"6385":{"6263":300,"6386":302},"6386":{"6385":302,"6387":303,"6510":302},"6387":{"6386":303,"6388":303},"6388":{"6267":303,"6387":303},"6392":{"6271":304,"6516":304},"6394":{"6273":367,"6395":380},"6395":{"6394":380,"6519":380},"6397":{"6276":395,"6521":395},"6403":{"6281":423,"6526":423},"6413":{"6291":199,"6294":192,"6535":192},"6414":{"6294":192,"6295":192},"6423":{"6304":124},"6425":{"6305":112,"6426":117,"6547":155},"6426":{"6425":117,"6427":117},"6427":{"6307":106,"6426":117,"6428":117},"6428":{"6427":117,"6429":117},"6429":{"6310":64,"6428":117,"6551":64},"6433":{"6313":114,"6555":114},"6434":{"6313":114,"6314":114,"6435":120},"6435":{"6315":108,"6434":120,"6557":108},"6439":{"6318":151,"6440":159,"6560":151},"6440":{"6439":159,"6562":159},"6441":{"6321":8,"6443":8,"6562":159},"6443":{"6441":8,"6565":8},"6444":{"6323":548,"6445":548},"6445":{"6444":548,"6566":548},"6447":{"6326":532,"6448":532},"6448":{"6447":532,"6566":548,"6568":532},"6449":{"6451":10,"6569":10},"6451":{"6327":10,"6449":10,"6569":12},"6452":{"6329":224,"6453":224,"6569":233},"6453":{"6331":242,"6452":224,"6571":224},"6456":{"6332":254,"6574":254},"6457":{"6458":264,"6574":264},"6458":{"6334":266,"6457":264,"6576":266},"6459":{"6336":273,"6460":278,"6576":273},"6460":{"6459":278,"6461":278},"6461":{"6460":278,"6580":278},"6462":{"6580":282},"6466":{"6345":518,"6467":518},"6467":{"6466":518,"6588":518},"6480":{"6358":456,"6481":460},"6481":{"6480":460,"6601":460},"6483":{"6359":475,"6484":475},"6484":{"6483":475,"6604":475},"6487":{"6489":475,"6609":475},"6489":{"6363":475,"6487":475,"6491":488},"6491":{"6489":488,"6492":401,"6611":401},"6492":{"6367":396,"6491":401},"6494":{"6368":360,"6495":360},"6495":{"6494":360,"6497":360},"6496":{"6371":13,"6497":13},"6497":{"6369":487,"6495":360,"6496":13,"6618":360},"6502":{"6378":317,"6623":318},"6504":{"6625":306},"6505":{"6506":306,"6625":306},"6506":{"6505":306,"6507":306,"6627":314},"6507":{"6383":306,"6506":306},"6508":{"6384":14,"6509":14,"6629":312},"6509":{"6508":14,"6510":310,"6630":14},"6510":{"6386":302,"6509":310,"6631":302},"6516":{"6392":304,"6636":304},"6519":{"6395":380,"6520":391,"6639":380},"6520":{"6519":391,"6521":395},"6521":{"6397":395,"6520":395,"6645":414},"6524":{"6648":421,"6649":433},"6526":{"6403":423,"6650":423},"6535":{"6413":192,"6658":192},"6547":{"6425":155,"6670":155},"6551":{"6429":64,"6552":64},"6552":{"6551":64,"6553":114,"6676":64},"6553":{"6552":114,"6554":114},"6554":{"6553":114,"6555":114,"6678":127},"6555":{"6433":114,"6554":114,"6556":108},"6556":{"6555":108,"6680":108},"6557":{"6435":108,"6558":131,"6680":108},"6558":{"6557":131,"6559":141},"6559":{"6558":141,"6683":168,"6684":151},"6560":{"6439":151,"6684":151,"6685":169},"6562":{"6440":159,"6441":159,"6686":181},"6563":{"6564":186,"6687":186},"6564":{"6563":186,"6565":186},"6565":{"6443":8,"6564":186,"6689":8},"6566":{"6445":548,"6448":548},"6568":{"6448":532,"6569":10,"6693":8},"6569":{"6449":10,"6451":12,"6452":233,"6568":10},"6571":{"6453":224,"6696":224},"6574":{"6456":254,"6457":264,"6699":263},"6576":{"6458":266,"6459":273},"6580":{"6461":278,"6462":282,"6581":278},"6581":{"6580":278,"6583":278},"6583":{"6581":278,"6585":278},"6585":{"6583":278},"6588":{"6467":518,"6714":518},"6600":{"6601":460,"6729":498},"6601":{"6481":460,"6600":460},"6604":{"6484":475,"6605":496,"6606":475},"6605":{"6604":496,"6732":496},"6606":{"6604":475,"6607":475,"6736":495},"6607":{"6606":475,"6608":475},"6608":{"6607":475,"6609":475},"6609":{"6487":475,"6608":475,"6740":497},"6610":{"6611":401,"6612":407},"6611":{"6491":401,"6610":401,"6612":492,"6614":402},"6612":{"6610":407,"6611":492,"6740":408,"6741":409},"6614":{"6611":402,"6741":415},"6617":{"6618":360,"6745":360},"6618":{"6497":360,"6617":360},"6620":{"6748":332},"6622":{"6750":332,"6751":332},"6623":{"6502":318,"6624":318},"6624":{"6623":318,"6625":318,"6751":332},"6625":{"6504":306,"6505":306,"6624":318,"6626":319},"6626":{"6625":319,"6627":321,"6753":319},"6627":{"6506":314,"6626":321,"6628":321},"6628":{"6627":321,"6629":321},"6629":{"6508":312,"6628":321},"6630":{"6509":14,"6631":329,"6875":14},"6631":{"6510":302,"6630":329,"6875":302},"6634":{"6635":304,"6762":304},"6635":{"6634":304,"6636":304},"6636":{"6516":304,"6635":304,"6765":379},"6639":{"6519":380,"6644":393,"6767":378},"6641":{"6642":16,"6644":16},"6642":{"6641":16,"6645":16},"6644":{"6639":393,"6641":16,"6768":16},"6645":{"6521":414,"6642":16,"6646":16},"6646":{"6645":16,"6772":16},"6648":{"6524":421,"6772":413,"6774":413},"6649":{"6524":433,"6650":433},"6650":{"6526":423,"6649":433,"6775":433},"6658":{"6535":192,"6659":192},"6659":{"6658":192,"6782":192},"6670":{"6547":155,"6671":155},"6671":{"6670":155,"6794":155},"6676":{"6552":64,"6799":64},"6677":{"6678":127,"6800":127},"6678":{"6554":127,"6677":127,"6802":132},"6680":{"6556":108,"6557":108,"6803":138},"6683":{"6559":168},"6684":{"6559":151,"6560":151},"6685":{"6560":169,"6686":172,"6808":169},"6686":{"6562":181,"6685":172,"6687":182},"6687":{"6563":186,"6686":182},"6689":{"6565":8,"6690":8},"6690":{"6689":8,"6691":8},"6691":{"6690":8,"6692":8,"6814":206},"6692":{"6691":8,"6693":8},"6693":{"6568":8,"6692":8},"6696":{"6571":224,"6818":224},"6698":{"6699":258,"6819":258},"6699":{"6574":263,"6698":258,"6821":271},"6714":{"6588":518,"6715":518},"6715":{"6714":518,"6840":518},"6729":{"6600":498,"6730":498},"6730":{"6729":498,"6732":498},"6732":{"6605":496,"6730":498,"6733":496},"6733":{"6732":496,"6850":496},"6735":{"6736":408,"6851":437},"6736":{"6606":495,"6735":408,"6737":408},"6737":{"6736":408,"6855":408},"6740":{"6609":497,"6612":408,"6856":408},"6741":{"6612":409,"6614":415},"6745":{"6617":360,"6746":360},"6746":{"6745":360,"6747":360},"6747":{"6746":360,"6748":368,"6863":360},"6748":{"6620":332,"6747":368,"6865":332},"6750":{"6622":332,"6865":332},"6751":{"6622":332,"6624":332},"6753":{"6626":319,"6869":334},"6760":{"6876":338},"6762":{"6634":304,"6877":304},"6765":{"6636":379,"6880":375,"6881":379},"6767":{"6639":378,"6768":16,"6884":15,"6885":572},"6768":{"6644":16,"6767":16},"6770":{"6771":572,"6889":572},"6771":{"6770":572,"6886":572},"6772":{"6646":16,"6648":413,"6773":16},"6773":{"6772":16,"6891":16},"6774":{"6648":413,"6775":429},"6775":{"6650":433,"6774":429,"6776":439,"6894":433},"6776":{"6775":439},"6782":{"6659":192,"6783":192},"6783":{"6782":192,"6900":192},"6794":{"6671":155,"6912":155},"6799":{"6676":64,"6800":127,"6916":156,"6917":64},"6800":{"6677":127,"6799":127,"6801":144},"6801":{"6800":144,"6919":144},"6802":{"6678":132,"6803":138},"6803":{"6680":138,"6802":138,"6921":157},"6808":{"6685":169,"6926":169},"6814":{"6691":206,"6932":226},"6818":{"6696":224,"6819":258,"6936":224},"6819":{"6698":258,"6818":258},"6821":{"6699":271,"6823":271},"6823":{"6821":271,"6824":518,"6940":279},"6824":{"6823":518,"6825":518},"6825":{"6824":518,"6826":518},"6826":{"6825":518,"6827":518},"6827":{"6826":518,"6828":533,"6829":518},"6828":{"6827":533,"6947":533},"6829":{"6827":518,"6832":518},"6832":{"6829":518,"6834":518},"6834":{"6832":518,"6835":518},"6835":{"6834":518,"6951":518},"6840":{"6715":518,"6841":518},"6841":{"6840":518,"6959":518},"6850":{"6733":496,"6969":496},"6851":{"6735":437,"6852":437},"6852":{"6851":437,"6969":451,"6970":437},"6855":{"6737":408,"6972":408},"6856":{"6740":408,"6972":408,"6974":419},"6863":{"6747":360,"6979":360},"6865":{"6748":332,"6750":332,"6866":356},"6866":{"6865":356,"6982":360,"6983":361},"6869":{"6753":334,"6870":354},"6870":{"6869":354,"6987":365},"6875":{"6630":14,"6631":302,"6876":14},"6876":{"6760":338,"6875":14,"6877":14,"6993":338},"6877":{"6762":304,"6876":14,"6994":304,"6995":14},"6879":{"6880":15,"6996":15},"6880":{"6765":375,"6879":15,"6881":15},"6881":{"6765":379,"6880":15,"6883":15,"6997":390},"6882":{"6883":15,"6884":15},"6883":{"6881":15,"6882":15},"6884":{"6767":15,"6882":15},"6885":{"6767":572,"6886":572,"7003":573},"6886":{"6771":572,"6885":572},"6889":{"6770":572,"6890":572},"6890":{"6889":572,"6891":571,"7007":571},"6891":{"6773":16,"6890":571,"6893":16,"6894":432},"6892":{"6893":16,"7010":16},"6893":{"6891":16,"6892":16},"6894":{"6775":433,"6891":432},"6900":{"6783":192,"6901":192},"6901":{"6900":192,"6902":192},"6902":{"6901":192,"6904":192},"6904":{"6902":192,"7023":192},"6912":{"6794":155,"6913":155},"6913":{"6912":155,"6914":171},"6914":{"6913":171,"7034":171},"6916":{"6799":156,"7035":156},"6917":{"6799":64,"7035":64},"6919":{"6801":144,"7038":160},"6921":{"6803":157,"6922":157},"6922":{"6921":157,"7041":157},"6926":{"6808":169,"6927":169,"7045":190},"6927":{"6926":169,"7047":169},"6928":{"6929":169,"7047":169},"6929":{"6928":169,"6930":169},"6930":{"6929":169,"6931":169},"6931":{"6930":169,"6932":219},"6932":{"6814":226,"6931":219,"7051":225},"6936":{"6818":224,"6937":257,"7054":224},"6937":{"6936":257,"7056":257},"6940":{"6823":279,"6941":281,"7058":279},"6941":{"6940":281,"6942":281},"6942":{"6941":281,"6943":281},"6943":{"6942":281,"6946":281},"6946":{"6943":281,"7060":281,"7063":533},"6947":{"6828":533,"6949":533},"6949":{"6947":533,"7063":533},"6951":{"6835":518,"7070":518},"6959":{"6841":518,"6960":518},"6960":{"6959":518,"7076":518},"6969":{"6850":496,"6852":451},"6970":{"6852":437,"7085":437},"6972":{"6855":408,"6856":408,"7087":437},"6974":{"6856":419,"7090":419},"6978":{"6979":360,"7094":360},"6979":{"6863":360,"6978":360},"6982":{"6866":360,"7097":360},"6983":{"6866":361,"7098":361},"6987":{"6870":365,"7102":365},"6993":{"6876":338,"6994":355,"7111":338},"6994":{"6877":304,"6993":355,"6995":364,"7112":304},"6995":{"6877":14,"6994":364,"6996":14},"6996":{"6879":15,"6995":14,"6997":385,"7117":14},"6997":{"6881":390,"6996":385,"7118":389},"7001":{"7002":573,"7120":573},"7002":{"7001":573,"7003":573},"7003":{"6885":573,"7002":573},"7007":{"6890":571,"7008":571},"7008":{"7007":571,"7125":571},"7010":{"6892":16,"7011":16},"7011":{"7010":16,"7126":16},"7023":{"6904":192,"7024":205,"7136":204},"7024":{"7023":205},"7033":{"7034":171},"7034":{"6914":171,"7033":171,"7035":64},"7035":{"6916":156,"6917":64,"7034":64},"7038":{"6919":160,"7151":173},"7040":{"7041":157,"7153":178,"7154":184},"7041":{"6922":157,"7040":157},"7043":{"7155":191,"7157":191},"7045":{"6926":190,"7159":190},"7047":{"6927":169,"6928":169},"7051":{"6932":225,"7163":225,"7165":237},"7053":{"7166":237},"7054":{"6936":224,"7167":224},"7056":{"6937":257,"7170":257},"7057":{"7058":270,"7170":280},"7058":{"6940":279,"7057":270,"7171":270},"7060":{"6946":281,"7176":281},"7063":{"6946":533,"6949":533,"7064":534},"7064":{"7063":534,"7180":534},"7070":{"6951":518,"7071":518},"7071":{"7070":518,"7072":518},"7072":{"7071":518,"7073":518},"7073":{"7072":518,"7074":518},"7074":{"7073":518,"7187":518},"7076":{"6960":518,"7077":518},"7077":{"7076":518,"7187":518},"7085":{"6970":437,"7086":437},"7086":{"7085":437,"7087":437},"7087":{"6972":437,"7086":437,"7199":428},"7090":{"6974":419,"7202":419},"7094":{"6978":360,"7095":360,"7207":406},"7095":{"7094":360,"7096":360},"7096":{"7095":360,"7097":360},"7097":{"6982":360,"7096":360},"7098":{"6983":361,"7099":361},"7099":{"7098":361,"7214":361},"7102":{"6987":365,"7216":365},"7104":{"7105":338,"7106":338},"7105":{"7104":338,"7107":338},"7106":{"7104":338,"7217":338},"7107":{"7105":338,"7108":338},"7108":{"7107":338,"7109":338},"7109":{"7108":338,"7111":338},"7111":{"6993":338,"7109":338,"7112":370},"7112":{"6994":304,"7111":370,"7224":574},"7117":{"6996":14,"7230":14},"7118":{"6997":389,"7119":389},"7119":{"7118":389,"7232":389},"7120":{"7001":573,"7233":573},"7125":{"7008":571,"7241":571},"7126":{"7011":16,"7243":16},"7129":{"7246":454,"7248":455},"7136":{"7023":204},"7151":{"7038":173,"7152":173},"7152":{"7151":173,"7153":178},"7153":{"7040":178,"7152":178},"7154":{"7040":184,"7155":183},"7155":{"7043":191,"7154":183},"7157":{"7043":191,"7158":191},"7158":{"7157":191,"7159":190,"7274":227},"7159":{"7045":190,"7158":190},"7162":{"7163":225,"7278":225},"7163":{"7051":225,"7162":225,"7278":251},"7165":{"7051":237,"7166":237},"7166":{"7053":237,"7165":237,"7167":224},"7167":{"7054":224,"7166":224},"7170":{"7056":257,"7057":280},"7171":{"7058":270,"7175":270},"7175":{"7171":270,"7176":281,"7291":534},"7176":{"7060":281,"7175":281},"7180":{"7064":534,"7181":534},"7181":{"7180":534,"7295":534},"7187":{"7074":518,"7077":518},"7199":{"7087":428,"7317":428},"7202":{"7090":419,"7324":419},"7204":{"7205":419,"7326":419},"7205":{"7204":419,"7321":420,"7324":419},"7207":{"7094":406,"7208":406,"7328":416},"7208":{"7207":406,"7326":406},"7214":{"7099":361,"7334":365},"7216":{"7102":365,"7218":365},"7217":{"7106":338,"7218":338},"7218":{"7216":365,"7217":338,"7336":365,"7338":574},"7219":{"7220":574,"7341":574},"7220":{"7219":574,"7221":574},"7221":{"7220":574,"7222":574},"7222":{"7221":574,"7223":574},"7223":{"7222":574,"7224":574},"7224":{"7112":574,"7223":574,"7225":575},"7225":{"7224":575,"7226":575},"7226":{"7225":575,"7229":575},"7227":{"7229":14,"7230":14},"7229":{"7226":575,"7227":14},"7230":{"7117":14,"7227":14},"7232":{"7119":389,"7351":389},"7233":{"7120":573,"7234":573},"7234":{"7233":573,"7237":573},"7237":{"7234":573,"7353":573},"7241":{"7125":571,"7243":571},"7243":{"7126":16,"7241":571,"7244":450,"7245":450},"7244":{"7243":450,"7362":450},"7245":{"7243":450,"7246":450},"7246":{"7129":454,"7245":450},"7248":{"7129":455},"7274":{"7158":227,"7391":227},"7278":{"7162":225,"7163":251},"7291":{"7175":534,"7292":534},"7292":{"7291":534,"7409":534},"7295":{"7181":534,"7297":534},"7297":{"7295":534,"7411":534},"7315":{"7316":453,"7424":453},"7316":{"7315":453,"7317":428,"7427":428},"7317":{"7199":428,"7316":428},"7320":{"7322":428,"7323":428},"7321":{"7205":420,"7430":420},"7322":{"7320":428,"7430":428},"7323":{"7320":428,"7428":428},"7324":{"7202":419,"7205":419},"7326":{"7204":419,"7208":406,"7327":419},"7327":{"7326":419,"7431":419},"7328":{"7207":416,"7329":405,"7433":576},"7329":{"7328":405,"7434":405},"7334":{"7214":365,"7335":365},"7335":{"7334":365,"7440":365},"7336":{"7218":365,"7337":365},"7337":{"7336":365,"7440":365},"7338":{"7218":574,"7339":574},"7339":{"7338":574,"7341":574},"7341":{"7219":574,"7339":574},"7351":{"7232":389,"7352":389},"7352":{"7351":389,"7353":573},"7353":{"7237":573,"7352":573},"7362":{"7244":450},"7391":{"7274":227},"7409":{"7292":534,"7410":534},"7410":{"7409":534,"7411":534},"7411":{"7297":534,"7410":534},"7422":{"7424":453},"7424":{"7315":453,"7422":453},"7427":{"7316":428,"7428":428},"7428":{"7323":428,"7427":428},"7430":{"7321":420,"7322":428,"7431":428},"7431":{"7327":419,"7430":428,"7432":576},"7432":{"7431":576,"7433":576},"7433":{"7328":576,"7432":576,"7434":577},"7434":{"7329":405,"7433":577},"7440":{"7335":365,"7337":365}}
+[{"i":0,"group":"roads","feature":2,"points":[[615.73,235.98,1231],[605.41,231.39,1230],[598.1,232.1,1229],[592.25,235.53,1227],[590.4,242.1,1228],[588.59,248.73,1329],[588.8,252.71,1425],[591.5,256.2,1330],[590.77,263.39,1523],[586.5,270.3,1524],[578.73,276.92,1619],[575.2,284,1620],[570.92,289.45,1718],[565,291.7,1717],[559.36,293.65,1715],[556,298.3,1716],[556.65,304.43,1807],[560.21,310.66,1917]]},{"i":1,"group":"roads","feature":2,"points":[[1005.29,83.7,167],[996.91,80.26,166],[991.3,74.4,112],[985.69,68.56,111],[980.2,65,110],[974.76,61.51,109],[971.45,51.49,69],[966.2,46.2,40],[960.98,40.97,39],[955,38.9,38],[949.24,38.16,37],[943.8,40,36],[937.62,41.46,35],[929.8,39.48,34],[922.1,40.7,33],[914.3,41.9,32],[905.09,44.27,30],[899.2,48.8,31],[893.36,53.25,61],[885.9,57.6,62],[878.52,61.91,101],[868.09,65.31,100],[861.1,67.8,99],[854.03,70.23,98],[847.3,68.3,97],[841.35,68.81,95],[836.2,71.7,96],[830.94,75.82,151],[826.05,78.31,150],[823.4,81.5,152],[814.98,86.03,208],[812.8,92.1,209],[810.7,98.07,266],[809.8,107.1,267],[808.86,116.16,335],[803.2,120.8,336],[797.63,125.41,404],[790.94,130.3,405],[783.8,131.8,402],[776.34,133.82,477],[768.41,132.45,476],[762.14,133.16,399],[756.88,134.75,475],[752.16,132.52,474],[749.71,129.54,398],[739.8,126.3,397],[731.37,126.6,396],[724.34,130.52,394],[715.8,133.18,395],[708.46,142.15,470],[701.7,146.8,471],[698,153.56,547],[696.35,161.07,630],[690.7,167.8,631],[683.5,172.24,708],[677.1,172.7,707],[671.19,171.16,706],[666.71,164.75,626],[660.43,162.94,625],[654.04,165.68,624],[650.14,170.97,703],[643.3,177,704],[638.3,183.79,793],[637.1,192.2,794],[636.21,200.75,897],[632,207.9,898],[619.99,214.32,1009],[615.7,217.04,1008],[613.7,222.01,1123],[612.2,228.8,1124],[615.73,235.98,1231]]},{"i":2,"group":"roads","feature":23,"points":[[512.92,461.16,3139],[512.03,471.39,3245],[512.1,483.3,3373],[514.18,489.87,3374],[516.91,497.25,3524],[517,504.5,3526],[513.27,510.68,3690],[505.81,515.81,3835],[504.7,524.7,3836],[503.66,533.6,3990],[502.9,539.62,4137],[499.58,544.57,4139],[496.72,551.11,4298],[488.04,555.18,4297],[471.27,564.26,4449],[466.11,568.74,4448],[462.57,578.52,4609],[452.8,577.93,4608],[439.66,574.48,4607],[426.44,574.66,4606],[416.62,574.56,4605],[404.6,578.03,4604],[396.89,563.22,4443],[389.83,557,4289],[381.35,557,4288],[373.34,563.34,4441],[360.46,553.33,4287],[350.29,553.9,4286],[341.53,545.48,4119],[338.3,537.4,3969],[341.5,529.4,3817],[340.73,526.02,3816],[337.99,522.16,3815],[333.2,517.1,3663],[328.33,512.1,3662],[327.5,503.5,3497],[329.56,498.02,3496],[334.54,495.62,3346],[339.4,475.82,3221],[327.53,468.2,3220]]},{"i":3,"group":"roads","feature":23,"points":[[330.08,533.26,4118],[338.3,537.4,3969]]},{"i":4,"group":"roads","feature":23,"points":[[330.08,533.26,4118],[322.6,539.1,4117],[316.86,556.89,4283],[305.36,563.67,4435],[287.26,563.51,4434],[281.23,563.21,4433],[277.22,556.81,4280],[272.38,554.54,4279],[261.87,555.49,4278],[257.65,544.14,4109],[246.02,540.03,4108],[231.42,542.43,4107],[225.15,546.97,4106],[219.12,550.2,4275],[207.93,552.8,4274],[208.37,566.93,4427],[206.87,575.59,4588],[216.85,585.12,4589]]},{"i":5,"group":"roads","feature":23,"points":[[437.78,601.55,4921],[432.4,591.71,4768],[426.44,574.66,4606]]},{"i":6,"group":"roads","feature":23,"points":[[341.53,545.48,4119],[330.08,533.26,4118]]},{"i":7,"group":"roads","feature":23,"points":[[657.73,571.46,4474],[646.23,566.23,4472],[639.65,555.07,4312],[639.29,546.18,4158],[630.26,544.73,4157],[631.49,533.06,4003],[609.91,529.11,4001],[612.37,523.97,3850],[607.1,519.96,3848],[598.64,519.28,3847],[593.6,511.96,3702],[593.2,503.7,3537],[586.75,495.58,3535],[579.41,491.82,3534],[578.22,488.52,3382],[572.33,479.87,3380],[562.4,474.19,3251],[552.7,476.72,3250],[547.86,466.81,3248],[535.55,462.42,3141],[533.76,466.63,3247],[523.11,466.84,3246],[512.92,461.16,3139]]},{"i":8,"group":"roads","feature":23,"points":[[452.8,577.93,4608],[445.71,594.73,4769],[437.78,601.55,4921],[436.89,609.73,5077],[438.58,623.12,5217],[434.7,629.7,5218],[430.74,636.19,5358],[425.9,642.9,5359],[424.79,649.54,5476],[427.37,656.11,5477],[428.73,666.59,5594],[427.1,673,5595],[428.5,678.21,5712],[433.02,682.12,5830],[440,688.5,5831],[447.43,695.29,5951],[451.7,699.3,5952],[456.46,703.74,5953],[461.8,707,5954],[467.14,710.24,6071],[473.7,712.7,6072],[480.18,715.21,6073],[486.72,715.21,6194],[488.4,721.87,6195],[494.59,723.74,6196],[502.68,722.87,6198],[508.1,732.79,6321],[512.13,745.02,6441],[521.2,749.2,6443],[529.25,758.16,6565],[533.7,763.3,6689],[540.1,766,6690],[548.41,766.34,6691],[556.31,766.06,6692],[559.32,762.61,6693],[559.7,756.7,6568]]},{"i":9,"group":"roads","feature":23,"points":[[159.65,496.25,3471],[163.7,503.9,3636],[170.31,502.33,3637],[177.6,506.6,3638],[186.42,501.5,3639],[181.86,515.64,3796],[186.43,529.92,3952],[195.25,541.34,4104],[201.65,551.13,4273],[207.93,552.8,4274]]},{"i":10,"group":"roads","feature":23,"points":[[571.77,689.02,5842],[577.47,697.2,5963],[577.99,704.29,5964],[579.23,712.1,6084],[574.5,717.3,6085],[569.22,721.99,6204],[567.5,730.7,6205],[569.03,738.11,6327],[573.75,744.18,6451],[574.44,749.32,6449],[577.84,756.04,6569],[559.7,756.7,6568]]},{"i":11,"group":"roads","feature":23,"points":[[523.11,466.84,3246],[514.18,489.87,3374]]},{"i":12,"group":"roads","feature":23,"points":[[577.84,756.04,6569],[573.75,744.18,6451]]},{"i":13,"group":"roads","feature":26,"points":[[1315.85,664.77,5518],[1318.65,655.77,5517],[1319.7,648.8,5402],[1320.8,641.92,5401],[1321.2,633.6,5280],[1321.62,625.34,5279],[1320.4,618,5144],[1319.25,610.74,5143],[1316.28,603.64,5002],[1326.84,593.26,4844],[1334.86,592.49,4846],[1341.8,588.49,4845],[1347.35,581.89,4695],[1360.72,575.55,4529],[1363.65,569.07,4528],[1369.49,566.33,4531],[1376.08,566.74,4532],[1381.68,570.31,4533],[1389.47,573.71,4534],[1394.37,579.29,4702],[1392.99,586.5,4703],[1388.78,591.69,4854],[1392,597.84,5014],[1405.03,613.04,5155],[1414.64,614.14,5156],[1429.31,610.16,5157],[1436.55,613.85,5158],[1439,621.6,5159],[1441.54,629.31,5295],[1444.5,634.9,5296],[1447.51,640.41,5417],[1447.52,649.55,5532],[1443.12,657.64,5655],[1432.4,663,5654],[1423.74,666.39,5652],[1418.1,672.1,5653],[1412.46,677.74,5772],[1397.7,684.51,5893],[1392.2,692.3,5892],[1386.39,697.1,6011],[1384.15,700.82,6012],[1377.87,700.35,6009],[1373.3,712.2,6131],[1369.35,717.08,6133],[1360.75,722.04,6256],[1360.73,727.56,6257],[1356.54,729.85,6377],[1350.46,732.51,6376],[1344.4,731.7,6375],[1338.46,730.49,6374],[1332.63,731.93,6373],[1323.6,734.6,6372],[1316.36,737.58,6371],[1312.76,740.99,6496],[1303.28,744.81,6497]]},{"i":14,"group":"roads","feature":26,"points":[[1386.39,697.1,6011],[1398.27,701.27,6013],[1403.96,708.44,6135],[1418.31,719.04,6261],[1423.99,725.94,6262],[1426.33,734.64,6383],[1433.86,734.28,6384],[1440.02,746.55,6508],[1446.82,749.99,6509],[1449.01,762.62,6630],[1458.04,778.12,6875],[1473.33,779.11,6876],[1489.7,780.56,6877],[1498.46,791.29,6995],[1508.84,792.39,6996],[1510.89,809.79,7117],[1508.76,815.14,7230],[1502.13,815.01,7227],[1493.31,822.11,7229]]},{"i":15,"group":"roads","feature":26,"points":[[1564.9,775.73,6767],[1559.11,779.66,6884],[1551.54,784.31,6882],[1542.84,785.45,6883],[1533.29,781.84,6881],[1518.38,778.71,6880],[1512.89,781.18,6879],[1508.84,792.39,6996]]},{"i":16,"group":"roads","feature":26,"points":[[1564.9,775.73,6767],[1572.19,774.38,6768],[1575.9,766.3,6644],[1580.67,759.85,6641],[1587.4,756.8,6642],[1594.63,757.46,6645],[1600.9,762.1,6646],[1605.88,769.57,6772],[1610.49,775.52,6773],[1611.86,782.29,6891],[1619.6,786,6893],[1623.11,787.9,6892],[1627.02,793.58,7010],[1630.8,801.8,7011],[1630.75,808.61,7126],[1626.88,814.11,7243]]},{"i":17,"group":"trails","feature":2,"points":[[762.9,494.3,3551],[761.6,502.6,3552],[760.33,510.8,3714]]},{"i":18,"group":"trails","feature":2,"points":[[783.33,492.58,3554],[773.32,494.52,3553],[762.9,494.3,3551],[760.73,489,3401],[761,484.7,3400],[765.09,477.49,3271],[764.25,469.87,3270],[760.8,464.3,3160],[755.95,459.69,3159],[746.63,455.06,3158],[744.2,449.2,3064],[741.67,443.33,3063],[743.58,437.47,2960],[748,427.85,2855],[749.5,417.3,2754],[749.02,409.58,2753],[746.65,404.76,2650],[745.1,396.5,2555],[742.1,389.6,2554],[737.77,384.58,2553],[736.3,378.1,2463],[734.78,371.87,2462],[730.2,367.5,2373],[724.05,363.98,2372],[719.8,355.6,2272],[714.47,348.96,2271],[706.9,346,2157],[698.26,344.82,2156],[689.91,340.36,2155],[682.6,340.3,2154],[675.84,342.43,2153],[667.56,340.69,2152],[657,341.9,2151],[646.39,343.17,2149],[640.28,338.49,2148],[638.74,332.85,2038],[636.7,324.1,1927],[636.14,316.3,1926],[638.7,310.3,1817],[641.49,304.57,1816],[637.76,300.2,1727],[630.1,298.63,1725],[626.69,285.27,1628],[620.44,282.96,1626],[619.57,275.57,1625],[622.4,267.2,1529],[627.1,263.7,1432],[632.6,265.3,1530],[641.57,254.94,1531]]},{"i":19,"group":"trails","feature":2,"points":[[766.15,543.75,4174],[770.73,548.81,4175],[772.38,556.41,4327],[768.9,563.6,4328]]},{"i":20,"group":"trails","feature":2,"points":[[766.15,543.75,4174],[769.67,537.05,4018],[775.33,533.06,4017],[781.35,523.43,3864],[786.1,516.3,3720],[790.92,509.22,3719],[792.88,502.63,3557],[789.55,496.25,3555],[783.33,492.58,3554]]},{"i":21,"group":"trails","feature":2,"points":[[782.48,577.94,4650],[782.6,587.1,4651],[783.86,594.63,4806],[787.7,599.4,4807],[792.87,602.8,4967],[795.2,611.1,4968],[797.54,619.41,5114],[799.5,627.97,5255],[805.15,633.5,5381],[812.7,634.3,5382],[819.88,636.97,5383],[826.2,643.4,5384],[844.12,643.99,5386]]},{"i":22,"group":"trails","feature":2,"points":[[782.48,577.94,4650],[777.43,569.5,4486],[768.9,563.6,4328]]},{"i":23,"group":"trails","feature":2,"points":[[1011.17,343.8,2183],[1012.47,348.58,2297],[1016.6,354.6,2299],[1017.47,362.24,2398],[1018,368.5,2399],[1019.61,373.69,2487],[1020.24,381.08,2488],[1023.62,387.16,2578]]},{"i":24,"group":"trails","feature":2,"points":[[1011.17,343.8,2183],[1015.58,344.42,2298],[1018.15,339.97,2184],[1021.92,334.32,2071],[1028.6,330.09,1960],[1036.31,325.14,2072]]},{"i":25,"group":"trails","feature":2,"points":[[567.44,330.75,2032],[560.53,324.64,2030],[557.7,319.2,1918],[560.21,310.66,1917],[542.82,316.66,1916],[530.85,315.59,1915],[521.61,307.89,1804],[523.4,303.74,1712],[526.18,301.22,1805],[529.88,294.35,1713],[531.77,282.05,1615],[528.59,270.2,1518],[524.69,256.36,1419],[524.75,242.65,1323],[530.19,239.76,1324],[532.71,232.42,1222],[532.1,225.81,1116]]},{"i":26,"group":"trails","feature":2,"points":[[1012.27,320.42,1958],[1014.79,322.59,2069],[1018.02,323.2,2070],[1028.6,330.09,1960]]},{"i":27,"group":"trails","feature":2,"points":[[516.1,317.6,1912],[521.61,307.89,1804]]},{"i":28,"group":"trails","feature":2,"points":[[516.1,317.6,1912],[510.41,320.37,1907],[502.1,326.2,1911],[494.47,335.32,2022],[488,335,2024],[482.18,337.96,2131],[477.66,346.71,2129],[468.8,347.7,2130],[460.4,347.2,2126],[458.2,348.3,2127],[462.02,356.52,2244],[466.32,365.74,2349],[466.69,381.38,2443]]},{"i":29,"group":"trails","feature":2,"points":[[481.55,384.05,2539],[475.9,381.5,2444],[466.69,381.38,2443]]},{"i":30,"group":"trails","feature":2,"points":[[1033.69,310.58,1961],[1032.1,318.6,1962],[1036.31,325.14,2072]]},{"i":31,"group":"trails","feature":2,"points":[[1033.69,310.58,1961],[1032.78,302.34,1850],[1037.7,293.55,1761]]},{"i":32,"group":"trails","feature":2,"points":[[685.19,214.13,1019],[680.38,215.57,1136],[673.97,212.11,1018],[669.49,204.06,1017],[670.77,199.44,901],[673.1,190.6,800],[675.34,181.76,799],[677.1,172.7,707]]},{"i":33,"group":"trails","feature":2,"points":[[559.61,195.94,889],[558.5,201.6,890],[552.1,210,1001],[548.12,215.49,999],[549.85,225.08,1117],[558.61,235.2,1224],[569.23,242.49,1327],[581.16,243.7,1328],[590.4,242.1,1228]]},{"i":34,"group":"trails","feature":2,"points":[[1005.29,83.7,167],[1005.77,94.44,225],[1006.12,99.15,227],[1003.9,103.1,285],[997.85,108.53,284],[995.7,115,352],[989.87,122.56,424],[987.6,128.1,425],[985.28,133.68,497],[984.6,143.8,498],[983.95,153.91,571],[980.64,163.38,655],[981.81,175.73,733],[981.95,180.42,826],[982.06,192.07,927],[982.99,210.35,1044],[1000.01,212.48,1045],[1006.3,221.31,1163],[1008.86,235.85,1265],[1013.94,239.97,1370],[1027.09,247.11,1372],[1023.93,251.4,1468],[1018.5,253.4,1466],[1012.53,255.28,1465],[1008.2,259.4,1467],[1005.53,265.82,1562],[1004.6,272.6,1563],[1003.7,279.4,1660],[1010.5,289.08,1758],[1017.63,290.33,1759],[1027.7,291.9,1760],[1037.7,293.55,1761]]},{"i":35,"group":"trails","feature":2,"points":[[522.55,216.36,1115],[532.1,225.81,1116],[539,218.7,1000],[548.12,215.49,999]]},{"i":36,"group":"trails","feature":2,"points":[[559.61,195.94,889],[547.87,190.28,785],[540.1,185.2,784],[532.64,182.4,783],[525.8,184.1,782],[519.36,186.29,781],[512.77,186.45,780],[506.96,191.15,779],[504.08,198.33,880]]},{"i":37,"group":"trails","feature":2,"points":[[512.77,186.45,780],[506.95,181.46,778],[504.01,170.81,691],[500.64,158.81,610],[500.07,151.22,527],[497.11,145.98,526],[498.1,135.57,448],[502.85,126.4,372],[506.58,120.83,296],[513.8,115.9,297],[523.44,115.2,298],[531.7,109.27,299],[540.79,106.2,244],[547.6,100.5,183],[554.46,94.7,182],[561.9,90.3,184],[569.26,85.87,185],[574.3,79.1,129],[580.82,74.12,128],[590.27,72.65,130],[598.3,77.51,131],[604.29,78.51,132],[611.59,78.38,133],[621.1,76.6,134],[630.6,74.91,135],[637.2,74.8,136],[642.47,77.19,137],[646.5,82,138],[649.29,89.18,192],[654.8,91.8,193],[660.32,94.34,194],[664,100,197],[667.63,105.62,254],[671.7,112.1,255],[675.72,118.48,311],[675.41,122.08,386],[673.7,125.07,312],[673.8,127.4,387],[669.89,132.38,464],[667,137.37,462],[666.2,144.6,463],[665.05,151.49,540],[661.5,155.9,541],[660.43,162.94,625]]},{"i":38,"group":"trails","feature":2,"points":[[1027.09,247.11,1372],[1028.63,236.49,1267],[1032.9,227.3,1166],[1039.1,222.8,1165],[1047.26,223.03,1167],[1053.5,217.4,1051],[1059.81,211.75,1050],[1058.8,205.8,934],[1057.7,199.9,933],[1056.4,193.5,833],[1057.82,188.03,832],[1061.9,183.6,834],[1068.69,180.29,835],[1078.87,181.22,742]]},{"i":39,"group":"trails","feature":2,"points":[[1019.11,162.82,658],[1011.99,164.86,657],[1007.59,168.79,735],[1002.51,175.2,734],[1000.81,181.51,827],[1002.35,195.33,928],[1000.01,212.48,1045]]},{"i":40,"group":"trails","feature":2,"points":[[1019.11,162.82,658],[1027.2,159.8,659],[1032.81,158.35,660],[1039.7,157.3,661],[1046.61,156.28,662],[1054.2,158.5,663],[1060.27,158.18,664],[1065.89,156.76,582],[1073.5,158.27,665],[1078.62,164.03,666],[1078.87,181.22,742]]},{"i":41,"group":"trails","feature":2,"points":[[1019.78,150.22,576],[1027.2,159.8,659]]},{"i":42,"group":"trails","feature":2,"points":[[522.55,216.36,1115],[515.13,220.63,1114],[511.23,223.14,1112],[504.9,228.5,1113],[497.62,232.09,1219],[488.5,232.1,1218],[479.26,240.4,1320],[469.42,244.97,1319],[458.57,245.06,1318],[451.9,240.4,1214],[445.14,235.73,1213],[440.68,227.7,1212],[436.96,219.18,1105],[437.59,212.2,983],[428.72,197.14,873]]},{"i":43,"group":"trails","feature":2,"points":[[1019.78,150.22,576],[1005.9,149.4,574],[1000.42,153.45,573],[992.2,153.7,572],[983.95,153.91,571]]},{"i":44,"group":"trails","feature":2,"points":[[997.85,108.53,284],[996.07,100.94,283],[1005.29,83.7,167]]},{"i":45,"group":"trails","feature":8,"points":[[1387.8,240.5,1296],[1388.85,234.96,1295],[1387.3,229.2,1189],[1383.1,223.2,1188],[1377.21,217.41,1070]]},{"i":46,"group":"trails","feature":8,"points":[[1359.9,235.77,1289],[1364.44,231.1,1290],[1369.49,228,1291],[1373.9,221.7,1071],[1377.21,217.41,1070]]},{"i":47,"group":"trails","feature":8,"points":[[1359.9,235.77,1289],[1351.3,234,1288],[1344.15,232.98,1287],[1336.44,228.33,1286],[1332.32,219.21,1184],[1329.1,213.3,1062]]},{"i":48,"group":"trails","feature":8,"points":[[1336.44,228.33,1286],[1330.36,233.86,1285],[1330.74,240.09,1284],[1334.26,245.12,1382],[1337.4,252.1,1383],[1340.57,259.14,1480],[1339.9,266.5,1482],[1339.19,273.89,1581],[1336.39,279.22,1673],[1332.67,289.62,1768],[1330.3,296.3,1769],[1331.32,304.42,1862]]},{"i":49,"group":"trails","feature":21,"points":[[1619.64,446.3,3092],[1612.58,464.17,3196]]},{"i":50,"group":"trails","feature":21,"points":[[1667.91,350.84,2307],[1661.1,359,2310],[1655.34,366.26,2405],[1652.04,371.67,2496],[1650.5,378.4,2497],[1647.78,381.13,2495],[1647.86,383.37,2585],[1647.57,387.29,2586],[1643.18,394.16,2686],[1637.7,398.22,2685],[1636,401.9,2688],[1627.35,408.22,2785],[1623,414.9,2786],[1618.61,421.65,2887],[1617.26,430.87,2991],[1613.4,436.4,2990],[1613.8,439.5,2993],[1619.64,446.3,3092]]},{"i":51,"group":"trails","feature":23,"points":[[361.32,643.22,5352],[354.7,635.44,5351],[345.31,636.6,5350],[339.05,624.36,5209],[327.74,616.81,5068]]},{"i":52,"group":"trails","feature":23,"points":[[371.99,641.58,5353],[361.32,643.22,5352],[352.11,647.96,5470]]},{"i":53,"group":"trails","feature":23,"points":[[371.99,641.58,5353],[389.99,636.33,5354],[396.12,653.9,5474],[395.1,660.41,5592],[388.34,667.62,5591],[387,675.97,5709],[375.81,673.34,5708],[368.95,664.92,5589]]},{"i":54,"group":"trails","feature":23,"points":[[371.17,628.87,5212],[371.99,641.58,5353],[368.97,655.53,5471],[368.95,664.92,5589]]},{"i":55,"group":"trails","feature":23,"points":[[353.76,610.43,5070],[355.83,623.82,5210],[354.7,635.44,5351]]},{"i":56,"group":"trails","feature":23,"points":[[353.76,610.43,5070],[361.49,603.93,4915],[362.64,593.92,4762],[372.01,585.86,4763],[375.71,576.67,4602],[384.08,582.41,4603]]},{"i":57,"group":"trails","feature":23,"points":[[353.76,610.43,5070],[348.05,606.32,4914],[340.97,598.02,4913],[336.87,590.45,4760],[331.01,587.2,4759],[327.24,582.3,4598],[321.73,580.21,4597],[320.06,566.61,4436],[316.86,556.89,4283],[327.9,556.9,4284],[336.61,552.88,4285],[341.53,545.48,4119]]},{"i":58,"group":"trails","feature":23,"points":[[320.91,652.25,5467],[324.2,647.71,5468],[331.92,640.99,5349],[345.31,636.6,5350]]},{"i":59,"group":"trails","feature":23,"points":[[329.22,667.03,5586],[343.18,660.48,5587],[352.11,647.96,5470]]},{"i":60,"group":"trails","feature":23,"points":[[408.54,634.32,5356],[413.53,625.69,5215],[418.52,625.96,5216],[434.7,629.7,5218]]},{"i":61,"group":"trails","feature":23,"points":[[389.99,636.33,5354],[408.54,634.32,5356],[408.01,642.88,5355],[412.77,654.17,5475],[396.12,653.9,5474]]},{"i":62,"group":"trails","feature":23,"points":[[361,691.09,5824],[365.31,679.11,5707],[368.95,664.92,5589]]},{"i":63,"group":"trails","feature":23,"points":[[393.73,601.13,4918],[400.96,592.24,4765],[404.6,578.03,4604],[384.08,582.41,4603]]},{"i":64,"group":"trails","feature":23,"points":[[387,675.97,5709],[400.1,683.26,5827],[410.06,691.14,5828],[419.09,698.32,5949],[413.11,713.28,6066],[407.69,722.36,6188],[398.32,728.62,6312],[393.41,725.71,6187],[382.99,721.38,6186],[376.79,727.04,6185],[373.96,734.37,6310],[364.87,744.99,6429],[367.55,758.86,6551],[375.78,762.1,6552],[370.85,767.46,6676],[375.32,782.5,6799],[372.61,792.16,6917],[364.29,807.07,7035],[352.11,804.1,7034]]},{"i":65,"group":"trails","feature":23,"points":[[416.01,614.39,5075],[413.53,625.69,5215]]},{"i":66,"group":"trails","feature":23,"points":[[416.01,614.39,5075],[419.24,610.81,5076],[428.43,605.24,4920],[437.78,601.55,4921]]},{"i":67,"group":"trails","feature":23,"points":[[393.73,601.13,4918],[391.81,604.67,4917],[395.58,611.1,5073],[404.18,615.97,5074],[416.01,614.39,5075]]},{"i":68,"group":"trails","feature":23,"points":[[386.7,691.18,5826],[387,675.97,5709]]},{"i":69,"group":"trails","feature":23,"points":[[317.14,625.1,5207],[327.74,616.81,5068]]},{"i":70,"group":"trails","feature":23,"points":[[329.22,667.03,5586],[321.63,659.7,5585],[320.91,652.25,5467]]},{"i":71,"group":"trails","feature":23,"points":[[339.05,624.36,5209],[348.05,606.32,4914]]},{"i":72,"group":"trails","feature":23,"points":[[412.77,654.17,5475],[427.37,656.11,5477]]},{"i":73,"group":"trails","feature":23,"points":[[299.7,625.46,5206],[317.14,625.1,5207],[313.04,617.03,5067],[307.49,606.87,4910],[313.03,599.06,4911],[315.2,585.86,4758],[321.73,580.21,4597]]},{"i":74,"group":"trails","feature":23,"points":[[363.59,571.66,4440],[375.71,576.67,4602]]},{"i":75,"group":"trails","feature":23,"points":[[307.49,606.87,4910],[299.8,611.02,5066],[292.57,607.43,4909]]},{"i":76,"group":"trails","feature":23,"points":[[386.7,691.18,5826],[386.33,693.82,5946],[384.52,704.22,6064],[374.92,709.75,6063],[364.36,709.77,6062],[361,691.09,5824],[369.21,694.81,5944],[370.85,698.82,5945],[374.92,709.75,6063]]},{"i":77,"group":"trails","feature":23,"points":[[363.59,571.66,4440],[373.34,563.34,4441]]},{"i":78,"group":"trails","feature":23,"points":[[350.29,553.9,4286],[342.69,567.1,4438]]},{"i":79,"group":"trails","feature":23,"points":[[299.7,625.46,5206],[293.39,629.55,5205]]},{"i":80,"group":"trails","feature":23,"points":[[304.57,637.63,5347],[299.7,625.46,5206],[299.8,611.02,5066]]},{"i":81,"group":"trails","feature":23,"points":[[296.29,670.75,5701],[302.23,665.65,5584],[310.09,655.44,5466],[320.91,652.25,5467]]},{"i":82,"group":"trails","feature":23,"points":[[310.09,655.44,5466],[304.57,637.63,5347]]},{"i":83,"group":"trails","feature":23,"points":[[351.3,711.67,6061],[364.36,709.77,6062]]},{"i":84,"group":"trails","feature":23,"points":[[307.72,692.04,5819],[314.27,687.37,5820],[318.1,678.13,5703],[324.37,670.31,5704],[329.22,667.03,5586]]},{"i":85,"group":"trails","feature":23,"points":[[438.58,623.12,5217],[442.7,618,5079],[446.79,612.97,5078],[454.47,616.35,5080]]},{"i":86,"group":"trails","feature":23,"points":[[351.3,711.67,6061],[337.12,709.95,6060],[326.04,705.7,6059],[313.39,705.37,6058],[306.45,704.67,5939],[307.72,692.04,5819],[289.27,684.24,5818]]},{"i":87,"group":"trails","feature":23,"points":[[351.3,711.67,6061],[352.04,721.05,6183]]},{"i":88,"group":"trails","feature":23,"points":[[382.99,721.38,6186],[374.92,709.75,6063]]},{"i":89,"group":"trails","feature":23,"points":[[416.7,562.88,4444],[416.62,574.56,4605]]},{"i":90,"group":"trails","feature":23,"points":[[436.89,609.73,5077],[446.79,612.97,5078],[457.1,607.1,4924],[454.47,616.35,5080]]},{"i":91,"group":"trails","feature":23,"points":[[296.29,670.75,5701],[289.27,684.24,5818]]},{"i":92,"group":"trails","feature":23,"points":[[259.93,622.94,5202],[267.21,628.51,5203],[271.85,638.5,5344],[276.85,634.53,5345],[293.39,629.55,5205]]},{"i":93,"group":"trails","feature":23,"points":[[421.18,548.72,4292],[416.7,562.88,4444]]},{"i":94,"group":"trails","feature":23,"points":[[404.93,545.84,4126],[397.96,556.1,4290],[396.89,563.22,4443]]},{"i":95,"group":"trails","feature":23,"points":[[413.11,713.28,6066],[424.57,714.52,6067]]},{"i":96,"group":"trails","feature":23,"points":[[283.45,693.87,5937],[289.27,684.24,5818]]},{"i":97,"group":"trails","feature":23,"points":[[306.45,704.67,5939],[295.45,710.04,6056],[283.95,720.31,6177]]},{"i":98,"group":"trails","feature":23,"points":[[315.55,726.7,6180],[323.11,721.14,6181],[326.04,705.7,6059]]},{"i":99,"group":"trails","feature":23,"points":[[271.85,638.5,5344],[260.84,646.86,5462],[249.95,661.79,5579],[233.57,652.56,5460],[240.99,645.29,5461],[242.92,634.1,5342],[237.21,631.45,5200]]},{"i":100,"group":"trails","feature":23,"points":[[265.17,593.93,4754],[275.67,603.93,4908],[292.57,607.43,4909]]},{"i":101,"group":"trails","feature":23,"points":[[421.18,548.72,4292],[428.9,546.8,4130]]},{"i":102,"group":"trails","feature":23,"points":[[404.93,545.84,4126],[414.54,546.92,4127],[421.18,548.72,4292]]},{"i":103,"group":"trails","feature":23,"points":[[433.02,721.77,6190],[424.57,714.52,6067]]},{"i":104,"group":"trails","feature":23,"points":[[277.35,686.61,5817],[270.9,690.68,5816]]},{"i":105,"group":"trails","feature":23,"points":[[283.45,693.87,5937],[277.35,686.61,5817]]},{"i":106,"group":"trails","feature":23,"points":[[345.41,745.8,6427],[345.41,731.86,6307],[352.04,721.05,6183]]},{"i":107,"group":"trails","feature":23,"points":[[412.69,737.48,6313],[398.32,728.62,6312]]},{"i":108,"group":"trails","feature":23,"points":[[447.43,695.29,5951],[444.51,706.69,6069],[433.02,721.77,6190],[434.75,734.06,6315],[432.15,743.28,6435],[437.3,759.21,6557],[422.97,764.83,6680],[417.91,758.09,6556],[407.77,752.92,6555]]},{"i":109,"group":"trails","feature":23,"points":[[456.46,703.74,5953],[444.51,706.69,6069]]},{"i":110,"group":"trails","feature":23,"points":[[253.62,609.93,5062],[256.73,600.42,4906],[265.17,593.93,4754],[267,584.36,4593],[276.65,575.65,4594],[281.23,563.21,4433]]},{"i":111,"group":"trails","feature":23,"points":[[315.61,738.51,6305],[304.19,738.58,6304],[297.3,733.18,6303],[287.04,725.26,6178],[283.95,720.31,6177]]},{"i":112,"group":"trails","feature":23,"points":[[315.61,738.51,6305],[320.55,744.02,6425]]},{"i":113,"group":"trails","feature":23,"points":[[315.55,726.7,6180],[315.61,738.51,6305]]},{"i":114,"group":"trails","feature":23,"points":[[434.75,734.06,6315],[426.14,734.67,6314],[425.21,741.29,6434],[412.69,737.48,6313],[413.16,744.17,6433],[407.77,752.92,6555],[394.77,763.04,6554],[386.54,761.26,6553],[375.78,762.1,6552]]},{"i":115,"group":"trails","feature":23,"points":[[242.92,634.1,5342],[245.37,629.51,5201],[259.93,622.94,5202],[253.62,609.93,5062],[244.76,603.46,4905],[238.54,596.5,4752],[227.81,591.6,4751]]},{"i":116,"group":"trails","feature":23,"points":[[249.41,673.86,5697],[249.95,661.79,5579]]},{"i":117,"group":"trails","feature":23,"points":[[364.87,744.99,6429],[354.68,749.37,6428],[345.41,745.8,6427],[331.2,747.89,6426],[320.55,744.02,6425]]},{"i":118,"group":"trails","feature":23,"points":[[253.53,583.14,4592],[267,584.36,4593]]},{"i":119,"group":"trails","feature":23,"points":[[254.83,694.84,5935],[270.9,690.68,5816]]},{"i":120,"group":"trails","feature":23,"points":[[425.21,741.29,6434],[432.15,743.28,6435]]},{"i":121,"group":"trails","feature":23,"points":[[462.57,578.52,4609],[467.28,573.69,4610],[471.27,564.26,4449],[481.44,571.8,4450],[490.46,574.78,4451]]},{"i":122,"group":"trails","feature":23,"points":[[260.84,646.86,5462],[254.91,638.29,5343],[242.92,634.1,5342]]},{"i":123,"group":"trails","feature":23,"points":[[254.83,694.84,5935],[256.24,687.56,5815],[249.41,673.86,5697],[244.34,683.41,5814],[235.43,682.92,5813],[225.62,678.15,5695],[211.86,672.08,5694]]},{"i":124,"group":"trails","feature":23,"points":[[304.19,738.58,6304],[294.26,749.93,6423]]},{"i":125,"group":"trails","feature":23,"points":[[270.78,735.83,6301],[279.62,732.87,6302],[287.04,725.26,6178]]},{"i":126,"group":"trails","feature":23,"points":[[466.11,568.74,4448],[456.29,547.97,4132],[464.59,550.06,4295],[470.24,547.65,4296],[472.11,538.69,4133],[468.59,525.12,3986]]},{"i":127,"group":"trails","feature":23,"points":[[394.77,763.04,6554],[396.9,768.06,6678],[392.74,772.29,6677],[391.84,780.03,6800],[375.32,782.5,6799]]},{"i":128,"group":"trails","feature":23,"points":[[295.9,517.6,3810],[302.11,516.84,3811],[307.53,511.09,3658],[313.1,507.2,3659],[318.39,506.08,3660],[323.5,507.7,3661],[328.33,512.1,3662]]},{"i":129,"group":"trails","feature":23,"points":[[254.83,694.84,5935],[244.75,699.2,5934],[235.92,701.23,5933],[235.43,682.92,5813]]},{"i":130,"group":"trails","feature":23,"points":[[470.49,734.75,6318],[488.42,730.83,6319],[494.59,723.74,6196]]},{"i":131,"group":"trails","feature":23,"points":[[437.3,759.21,6557],[443.77,758.81,6558]]},{"i":132,"group":"trails","feature":23,"points":[[408.8,778.09,6802],[396.9,768.06,6678]]},{"i":133,"group":"trails","feature":23,"points":[[470.24,547.65,4296],[471.27,564.26,4449]]},{"i":134,"group":"trails","feature":23,"points":[[506.74,604.25,4932],[511.19,594.34,4777]]},{"i":135,"group":"trails","feature":23,"points":[[321.74,490.12,3495],[334.54,495.62,3346]]},{"i":136,"group":"trails","feature":23,"points":[[339.4,475.82,3221],[352.4,477.7,3223],[357.28,482.58,3348],[355,492.2,3349],[356.89,500.25,3500]]},{"i":137,"group":"trails","feature":23,"points":[[216.85,585.12,4589],[224.24,590.26,4750],[227.81,591.6,4751],[224.48,605.5,4904],[213.11,616.67,5058]]},{"i":138,"group":"trails","feature":23,"points":[[408.8,778.09,6802],[423.1,778.79,6803],[422.97,764.83,6680]]},{"i":139,"group":"trails","feature":23,"points":[[573.73,635.89,5231],[576.31,644.04,5365],[574.29,653.64,5483],[578.5,660.1,5484],[580.77,666.88,5601],[579.3,674.1,5602],[576.05,681.55,5841],[571.77,689.02,5842]]},{"i":140,"group":"trails","feature":23,"points":[[457.1,607.1,4924],[461.8,599.81,4923],[465.1,593,4773],[468.46,586.19,4771],[475.2,583,4612],[481.89,579.74,4611],[490.46,574.78,4451],[497.62,571.23,4452],[504.06,574.66,4453],[510.6,584.2,4617],[511.19,594.34,4777]]},{"i":141,"group":"trails","feature":23,"points":[[458.69,760.19,6559],[443.77,758.81,6558]]},{"i":142,"group":"trails","feature":23,"points":[[233.57,652.56,5460],[223.97,651.03,5459],[211.17,641.5,5339],[213.1,626.58,5198],[213.11,616.67,5058]]},{"i":143,"group":"trails","feature":23,"points":[[442.77,500.58,3513],[452.55,503.61,3680],[458.83,509.84,3681],[460.5,516.2,3682],[463,521.31,3830],[468.59,525.12,3986]]},{"i":144,"group":"trails","feature":23,"points":[[396.9,793.78,6919],[397.23,787.17,6801],[391.84,780.03,6800]]},{"i":145,"group":"trails","feature":23,"points":[[479.81,521.64,3832],[468.59,525.12,3986]]},{"i":146,"group":"trails","feature":23,"points":[[488.04,555.18,4297],[490.46,574.78,4451]]},{"i":147,"group":"trails","feature":23,"points":[[479.81,521.64,3832],[485.44,531.39,3988]]},{"i":148,"group":"trails","feature":23,"points":[[488.4,721.87,6195],[488.42,730.83,6319]]},{"i":149,"group":"trails","feature":23,"points":[[246.02,540.03,4108],[244.79,531.38,3957],[238.42,513.87,3801]]},{"i":150,"group":"trails","feature":23,"points":[[241.98,553.3,4277],[246.02,540.03,4108]]},{"i":151,"group":"trails","feature":23,"points":[[458.69,760.19,6559],[466.32,763.53,6684],[473.55,760.04,6560],[482.86,749.79,6439],[470.49,734.75,6318]]},{"i":152,"group":"trails","feature":23,"points":[[308.15,491.38,3491],[314.43,492.97,3492],[321.74,490.12,3495]]},{"i":153,"group":"trails","feature":23,"points":[[308.15,491.38,3491],[296.35,482.9,3343],[293.83,479.31,3217],[307.34,468.57,3218],[312.16,459.81,3115],[314.7,453.9,3018]]},{"i":154,"group":"trails","feature":23,"points":[[313.1,507.2,3659],[307.8,501.2,3493],[308.15,491.38,3491]]},{"i":155,"group":"trails","feature":23,"points":[[324.71,798.34,6913],[319.64,792.73,6912],[316.77,780.63,6794],[314.55,774.99,6671],[311.83,769.67,6670],[312.17,762.42,6547],[320.55,744.02,6425]]},{"i":156,"group":"trails","feature":23,"points":[[364.29,807.07,7035],[366.49,795.05,6916],[375.32,782.5,6799]]},{"i":157,"group":"trails","feature":23,"points":[[429.16,811.25,7040],[433.18,803.38,7041],[433.14,796.52,6922],[425.62,789.08,6921],[423.1,778.79,6803]]},{"i":158,"group":"trails","feature":23,"points":[[346.36,458.48,3120],[345.12,466.6,3121],[339.4,475.82,3221]]},{"i":159,"group":"trails","feature":23,"points":[[482.86,749.79,6439],[490.75,750.49,6440],[495.16,753.57,6562],[512.13,745.02,6441]]},{"i":160,"group":"trails","feature":23,"points":[[396.9,793.78,6919],[397.85,804.54,7038]]},{"i":161,"group":"trails","feature":23,"points":[[231.42,542.43,4107],[220.38,534.27,3955],[207,529.58,3954]]},{"i":162,"group":"trails","feature":23,"points":[[496.72,551.11,4298],[491.5,545.4,4135],[486.19,539.72,4134],[485.44,531.39,3988]]},{"i":163,"group":"trails","feature":23,"points":[[199.18,566.31,4426],[208.37,566.93,4427]]},{"i":164,"group":"trails","feature":23,"points":[[312.16,459.81,3115],[318.1,465.33,3219],[327.53,468.2,3220]]},{"i":165,"group":"trails","feature":23,"points":[[502.9,539.62,4137],[517.57,541.59,4140],[525.49,541.1,4141],[532.28,535.73,3992],[537.21,526.54,3839]]},{"i":166,"group":"trails","feature":23,"points":[[398.25,446.9,3030],[400,454.5,3032],[403.84,460.85,3126],[411.9,464.6,3127],[422.07,467.13,3230],[428.9,467.3,3231],[433.79,469.36,3233],[436.8,473.4,3234],[437.86,479.45,3361],[440.65,485.95,3362],[443.26,491.38,3364],[442.77,500.58,3513]]},{"i":167,"group":"trails","feature":23,"points":[[463,521.31,3830],[452.84,526.99,3984],[442.8,530.2,3983],[436.29,534.78,3982],[433.25,540.71,4129],[428.9,546.8,4130]]},{"i":168,"group":"trails","feature":23,"points":[[460.66,774.61,6683],[458.69,760.19,6559]]},{"i":169,"group":"trails","feature":23,"points":[[473.55,760.04,6560],[487.44,774.76,6685],[487.79,778.06,6808],[482.64,793.71,6926],[497.33,791.94,6927],[505.17,801.54,7047],[510.48,796.51,6928],[520.85,791.02,6929],[528.59,790.49,6930],[539.03,792.39,6931]]},{"i":170,"group":"trails","feature":23,"points":[[235.92,701.23,5933],[222.95,702.76,5932],[213.48,703.88,5931],[208.02,710.52,6049],[205.26,722.42,6171],[209.18,738.06,6296]]},{"i":171,"group":"trails","feature":23,"points":[[346,810.18,7033],[347.13,802.81,7034],[338.37,798.44,6914],[324.71,798.34,6913]]},{"i":172,"group":"trails","feature":23,"points":[[487.44,774.76,6685],[491.88,773.8,6686]]},{"i":173,"group":"trails","feature":23,"points":[[414.35,820.57,7152],[405.07,815.38,7151],[397.85,804.54,7038]]},{"i":174,"group":"trails","feature":23,"points":[[264.7,476.34,3213],[269.55,471.24,3111],[277.08,469.73,3110],[283.75,471.69,3214],[289.33,473.97,3215],[293.83,479.31,3217]]},{"i":175,"group":"trails","feature":23,"points":[[307.8,501.2,3493],[302.4,499.6,3494],[293.2,500.7,3490],[288.14,499.63,3487],[280.77,496.84,3486],[272.24,497.73,3485],[263.7,497,3484],[255.25,496.19,3483]]},{"i":176,"group":"trails","feature":23,"points":[[231.42,542.43,4107],[235.67,536.31,3956],[238.42,513.87,3801]]},{"i":177,"group":"trails","feature":23,"points":[[195.25,541.34,4104],[199.49,536.44,3953],[207,529.58,3954]]},{"i":178,"group":"trails","feature":23,"points":[[429.16,811.25,7040],[420.17,815.94,7153],[414.35,820.57,7152]]},{"i":179,"group":"trails","feature":23,"points":[[181.36,568.42,4425],[199.18,566.31,4426]]},{"i":180,"group":"trails","feature":23,"points":[[264.7,476.34,3213],[259.6,470.1,3108],[262.8,464.1,3107],[270.63,462.64,3109],[275.36,456.04,3112],[276.47,445.95,3013]]},{"i":181,"group":"trails","feature":23,"points":[[495.16,753.57,6562],[491.88,773.8,6686]]},{"i":182,"group":"trails","feature":23,"points":[[512.92,767.24,6687],[491.88,773.8,6686]]},{"i":183,"group":"trails","feature":23,"points":[[432.1,818.69,7154],[448.08,821.32,7155]]},{"i":184,"group":"trails","feature":23,"points":[[429.16,811.25,7040],[432.1,818.69,7154]]},{"i":185,"group":"trails","feature":23,"points":[[503.66,533.6,3990],[517.57,541.59,4140]]},{"i":186,"group":"trails","feature":23,"points":[[512.92,767.24,6687],[512.55,762.69,6563],[518.01,759.39,6564],[529.25,758.16,6565]]},{"i":187,"group":"trails","feature":23,"points":[[491.68,468.21,3244],[490.7,473.3,3243],[499.2,479.5,3371]]},{"i":188,"group":"trails","feature":23,"points":[[245.81,458.91,3010],[254.42,463.86,3106],[259.6,470.1,3108]]},{"i":189,"group":"trails","feature":23,"points":[[176.32,534,3951],[186.43,529.92,3952],[176.49,518.22,3795],[177.6,506.6,3638]]},{"i":190,"group":"trails","feature":23,"points":[[483.13,819.85,7158],[487.16,812.66,7159],[486.81,803.99,7045],[482.64,793.71,6926]]},{"i":191,"group":"trails","feature":23,"points":[[483.13,819.85,7158],[473.31,817.57,7157],[458.53,810.82,7043],[448.08,821.32,7155]]},{"i":192,"group":"trails","feature":23,"points":[[225.74,806.05,7023],[223.27,798.16,6904],[213.28,791.71,6902],[203.3,791.5,6901],[194.61,790.01,6900],[188.4,785.8,6783],[183.33,780.26,6782],[178.9,773.7,6659],[176.19,766.26,6658],[176.75,756.86,6535],[178.31,747.71,6413],[184.98,738.83,6294],[190.91,740.19,6414],[197.67,738.69,6295],[209.18,738.06,6296]]},{"i":193,"group":"trails","feature":23,"points":[[197.67,738.69,6295],[184.98,738.83,6294]]},{"i":194,"group":"trails","feature":23,"points":[[169.48,550.92,4271],[174.78,540.24,4102],[176.32,534,3951]]},{"i":195,"group":"trails","feature":23,"points":[[491.68,468.21,3244],[512.92,461.16,3139]]},{"i":196,"group":"trails","feature":23,"points":[[480.75,463.93,3137],[487.61,468.68,3242],[491.68,468.21,3244]]},{"i":197,"group":"trails","feature":23,"points":[[512.1,483.3,3373],[506.68,479.14,3372],[499.2,479.5,3371]]},{"i":198,"group":"trails","feature":23,"points":[[595.82,677.9,5721],[587.15,686.21,5843],[571.77,689.02,5842]]},{"i":199,"group":"trails","feature":23,"points":[[178.31,747.71,6413],[164.21,735.14,6291],[158.3,728.8,6166]]},{"i":200,"group":"trails","feature":23,"points":[[243.29,455.25,3009],[237.07,452.2,3008],[229.43,452.26,3007],[235.99,436.72,2905],[233.69,419.25,2798]]},{"i":201,"group":"trails","feature":23,"points":[[245.81,458.91,3010],[243.29,455.25,3009]]},{"i":202,"group":"trails","feature":23,"points":[[480.75,463.93,3137],[483.13,456.22,3136],[487.49,447.17,3041]]},{"i":203,"group":"trails","feature":23,"points":[[487.94,438.72,2943],[487.49,447.17,3041]]},{"i":204,"group":"trails","feature":23,"points":[[225.74,806.05,7023],[218.02,818.06,7136]]},{"i":205,"group":"trails","feature":23,"points":[[232.81,806.95,7024],[225.74,806.05,7023]]},{"i":206,"group":"trails","feature":23,"points":[[551.96,780.52,6814],[548.41,766.34,6691]]},{"i":207,"group":"trails","feature":23,"points":[[216.1,454.1,3005],[217.4,450.1,3004],[223.91,449.65,3006],[229.43,452.26,3007]]},{"i":208,"group":"trails","feature":23,"points":[[210.6,457.1,3101],[216.1,454.1,3005]]},{"i":209,"group":"trails","feature":23,"points":[[595.82,677.9,5721],[601.88,672.53,5722],[607.28,683.78,5844],[613.37,685.61,5845],[620.22,673.95,5723]]},{"i":210,"group":"trails","feature":23,"points":[[459.95,426.2,2827],[452.7,424.5,2826],[445.37,422.72,2825],[441.97,426.38,2824],[441.13,432.42,2935],[436.8,437.5,2936],[433.85,443,3035],[433.8,449.5,3036],[435.27,456.5,3130],[433.79,469.36,3233]]},{"i":211,"group":"trails","feature":23,"points":[[452.7,424.5,2826],[450.6,419.4,2731],[450.9,411.9,2728]]},{"i":212,"group":"trails","feature":23,"points":[[450.6,419.4,2731],[445.37,422.72,2825]]},{"i":213,"group":"trails","feature":23,"points":[[169.48,550.92,4271],[160.18,556.42,4270],[154.49,559.35,4422],[149.23,553.61,4269],[143.18,542.33,4099],[144.33,533.36,3949],[133.15,528.78,3948],[118.62,523.64,3947],[115.12,525.57,3946],[109.38,526.27,3945],[104.21,521.75,3788]]},{"i":214,"group":"trails","feature":23,"points":[[181.36,568.42,4425],[169.48,550.92,4271]]},{"i":215,"group":"trails","feature":23,"points":[[143.28,718.81,6044],[145.71,721.98,6165],[141.16,724.79,6288]]},{"i":216,"group":"trails","feature":23,"points":[[145.71,721.98,6165],[158.3,728.8,6166]]},{"i":217,"group":"trails","feature":23,"points":[[517.73,445.93,3045],[517.42,455.08,3140],[512.92,461.16,3139]]},{"i":218,"group":"trails","feature":23,"points":[[170.31,502.33,3637],[159.65,496.25,3471]]},{"i":219,"group":"trails","feature":23,"points":[[554.23,792.32,6932],[539.03,792.39,6931]]},{"i":220,"group":"trails","feature":23,"points":[[210.6,457.1,3101],[201.6,451.7,3002],[201.47,445.29,2903],[204.3,438.98,2901]]},{"i":221,"group":"trails","feature":23,"points":[[580.77,666.88,5601],[588.81,666.81,5603],[601.88,672.53,5722]]},{"i":222,"group":"trails","feature":23,"points":[[517.73,445.93,3045],[528.39,445.06,3046],[538.78,448.14,3047],[535.55,462.42,3141]]},{"i":223,"group":"trails","feature":23,"points":[[125.53,712.19,6041],[131.9,712,6042],[137.98,713.61,6043],[143.28,718.81,6044]]},{"i":224,"group":"trails","feature":23,"points":[[574.5,717.3,6085],[580.77,726.57,6206],[588.68,730.86,6329],[586.99,749.48,6452],[604.99,751.19,6453],[604.91,757.81,6571],[602.34,769.3,6696],[606.93,785.33,6818],[604.96,796.45,6936],[595.22,803.35,7054],[589.01,814.88,7167],[581.17,817.28,7166]]},{"i":225,"group":"trails","feature":23,"points":[[554.23,792.32,6932],[558.07,810.25,7051],[547.96,820.54,7163],[533.54,814.17,7162],[535.08,825.98,7278]]},{"i":226,"group":"trails","feature":23,"points":[[551.96,780.52,6814],[554.23,792.32,6932]]},{"i":227,"group":"trails","feature":23,"points":[[483.13,819.85,7158],[478.69,831.88,7274],[477.33,836.26,7391]]},{"i":228,"group":"trails","feature":23,"points":[[513.27,510.68,3690],[524,515.4,3691],[530.96,519.13,3838],[537.21,526.54,3839]]},{"i":229,"group":"trails","feature":23,"points":[[646.23,566.23,4472],[637.79,579.96,4636],[626.48,594.34,4794],[624.74,600.39,4955],[618.58,605.01,4953],[620.85,599.32,4793],[626.48,594.34,4794]]},{"i":230,"group":"trails","feature":23,"points":[[610.74,731.57,6331],[606.54,729.36,6330],[588.68,730.86,6329]]},{"i":231,"group":"trails","feature":23,"points":[[126.25,680.27,5804],[106.22,685.42,5801],[107.4,678.5,5685],[104.5,672.94,5684],[105.63,662.04,5567],[98.99,652.3,5449],[95.81,638.46,5330],[89.26,629.77,5188],[78.17,621.97,5187],[74.29,618.2,5047],[67.62,616.9,5046],[53.97,611.49,5045],[43.05,616.07,5044],[31.54,625.42,5183],[30.45,634.83,5319],[34.11,640.46,5321],[39.94,649.23,5442]]},{"i":232,"group":"trails","feature":23,"points":[[125.53,712.19,6041],[122.9,703.9,5924],[120.26,695.58,5923],[126.25,680.27,5804]]},{"i":233,"group":"trails","feature":23,"points":[[586.99,749.48,6452],[577.84,756.04,6569]]},{"i":234,"group":"trails","feature":23,"points":[[610.69,546.3,4155],[614.01,551.31,4156],[618.67,557.67,4309],[623.29,566.22,4471],[629.75,575.11,4635],[637.79,579.96,4636]]},{"i":235,"group":"trails","feature":23,"points":[[610.69,546.3,4155],[614.2,538.8,4002],[630.26,544.73,4157]]},{"i":236,"group":"trails","feature":23,"points":[[633.35,665.58,5606],[620.22,673.95,5723]]},{"i":237,"group":"trails","feature":23,"points":[[558.07,810.25,7051],[567.42,815.9,7165],[581.17,817.28,7166],[579.62,800.93,7053]]},{"i":238,"group":"trails","feature":23,"points":[[590.97,480.98,3383],[605.17,486.8,3384],[603.29,493.02,3538],[603.33,505.93,3703],[598.64,519.28,3847]]},{"i":239,"group":"trails","feature":23,"points":[[590.97,480.98,3383],[589.44,474.87,3254]]},{"i":240,"group":"trails","feature":23,"points":[[641.56,616.76,5102],[636.83,613.52,5101],[632.03,611.66,5100],[625.3,608.3,4954],[618.58,605.01,4953]]},{"i":241,"group":"trails","feature":23,"points":[[639,724.73,6211],[630.02,721.74,6210],[623.09,713.68,6089],[634.25,705.54,6090]]},{"i":242,"group":"trails","feature":23,"points":[[630.02,721.74,6210],[610.74,731.57,6331],[604.99,751.19,6453]]},{"i":243,"group":"trails","feature":23,"points":[[633.35,665.58,5606],[630.78,672.65,5724],[631.38,683.76,5846],[645.77,681.26,5847]]},{"i":244,"group":"trails","feature":23,"points":[[580.77,726.57,6206],[579.23,712.1,6084]]},{"i":245,"group":"trails","feature":23,"points":[[609.91,529.11,4001],[614.2,538.8,4002]]},{"i":246,"group":"trails","feature":23,"points":[[583.14,462.46,3145],[579.16,468.6,3253],[572.33,479.87,3380]]},{"i":247,"group":"trails","feature":23,"points":[[638.33,696.35,5969],[645.77,681.26,5847]]},{"i":248,"group":"trails","feature":23,"points":[[631.38,683.76,5846],[613.37,685.61,5845]]},{"i":249,"group":"trails","feature":23,"points":[[209.4,403.7,2594],[211.39,408.91,2695],[217.05,413.57,2697],[233.69,419.25,2798]]},{"i":250,"group":"trails","feature":23,"points":[[583.14,462.46,3145],[589.44,474.87,3254]]},{"i":251,"group":"trails","feature":23,"points":[[547.96,820.54,7163],[535.08,825.98,7278]]},{"i":252,"group":"trails","feature":23,"points":[[648.74,705.3,6091],[638.33,696.35,5969],[634.25,705.54,6090]]},{"i":253,"group":"trails","feature":23,"points":[[639.65,555.07,4312],[631.14,560.17,4311],[623.29,566.22,4471]]},{"i":254,"group":"trails","feature":23,"points":[[638.87,753.15,6574],[636.38,742.08,6456],[631.16,737,6332],[610.74,731.57,6331]]},{"i":255,"group":"trails","feature":23,"points":[[635.89,522.65,3852],[631.49,533.06,4003]]},{"i":256,"group":"trails","feature":23,"points":[[583.14,462.46,3145],[588.59,456.45,3146],[596.41,453.63,3147]]},{"i":257,"group":"trails","feature":23,"points":[[604.96,796.45,6936],[613.8,797.21,6937],[612.52,806.3,7056],[621.6,816.18,7170]]},{"i":258,"group":"trails","feature":23,"points":[[637.23,766.52,6699],[622.94,772.18,6698],[618.91,777.93,6819],[606.93,785.33,6818]]},{"i":259,"group":"trails","feature":23,"points":[[646.13,486.08,3390],[634.1,482,3387],[628.24,484.53,3386],[615.42,487.59,3385],[605.17,486.8,3384]]},{"i":260,"group":"trails","feature":23,"points":[[648.74,705.3,6091],[654.35,700.15,5970],[664.12,696.79,5971],[672.22,705.59,6093],[669.54,718.95,6214]]},{"i":261,"group":"trails","feature":23,"points":[[90.29,551.91,4264],[93.92,543.48,4095],[89.12,535.55,3943],[104.21,521.75,3788]]},{"i":262,"group":"trails","feature":23,"points":[[90.29,551.91,4264],[79.7,547.32,4094],[63.79,548.14,4093],[68.25,560.28,4262]]},{"i":263,"group":"trails","feature":23,"points":[[638.87,753.15,6574],[637.23,766.52,6699]]},{"i":264,"group":"trails","feature":23,"points":[[659.09,744.15,6458],[649.91,745.24,6457],[638.87,753.15,6574]]},{"i":265,"group":"trails","feature":23,"points":[[61.09,570.56,4415],[68.25,560.28,4262]]},{"i":266,"group":"trails","feature":23,"points":[[639,724.73,6211],[642.42,732.82,6333],[651.17,737.32,6334],[659.09,744.15,6458],[662.59,753.06,6576]]},{"i":267,"group":"trails","feature":23,"points":[[668.03,721.12,6213],[669.54,718.95,6214],[684.78,720.28,6215]]},{"i":268,"group":"trails","feature":23,"points":[[646.42,521.73,3853],[653.44,528.93,4005],[663.36,532.47,4006],[671.46,532.67,4007]]},{"i":269,"group":"trails","feature":23,"points":[[646.42,521.73,3853],[635.89,522.65,3852],[634.49,511.64,3706],[636.3,503.6,3544],[638.19,495.57,3541],[646.13,486.08,3390]]},{"i":270,"group":"trails","feature":23,"points":[[627.83,808.74,7057],[638.03,805.32,7058],[644.58,815.99,7171],[655.89,821.33,7175]]},{"i":271,"group":"trails","feature":23,"points":[[654.18,783.55,6823],[641.87,782.85,6821],[637.23,766.52,6699]]},{"i":272,"group":"trails","feature":23,"points":[[61.09,570.56,4415],[50.14,573.94,4575]]},{"i":273,"group":"trails","feature":23,"points":[[668.03,721.12,6213],[674.38,730.05,6336],[673.93,744.3,6459],[662.59,753.06,6576]]},{"i":274,"group":"trails","feature":23,"points":[[63.79,548.14,4093],[55.73,548.58,4092],[45.04,554.25,4260],[36.5,547.82,4091],[20.57,544.35,4089]]},{"i":275,"group":"trails","feature":23,"points":[[31.35,587.79,4734],[42.34,580.58,4574],[50.14,573.94,4575]]},{"i":276,"group":"trails","feature":23,"points":[[38.17,600.99,4888],[34.18,596.27,4887],[31.35,587.79,4734]]},{"i":277,"group":"trails","feature":23,"points":[[31.54,625.42,5183],[31.55,613.06,5043],[38.17,600.99,4888]]},{"i":278,"group":"trails","feature":23,"points":[[673.93,744.3,6459],[686.74,747.43,6460],[698.24,743.95,6461],[709.74,755.73,6580],[718.6,756.5,6581],[726.19,758.48,6583],[731.2,762.7,6585]]},{"i":279,"group":"trails","feature":23,"points":[[654.18,783.55,6823],[648.71,791.11,6940],[638.03,805.32,7058]]},{"i":280,"group":"trails","feature":23,"points":[[627.83,808.74,7057],[621.6,816.18,7170]]},{"i":281,"group":"trails","feature":23,"points":[[648.71,791.11,6940],[654.5,792.8,6941],[660.33,794.47,6942],[666.6,795.1,6943],[673.79,803.43,6946],[666.38,808.33,7060],[660.1,812.9,7176],[655.89,821.33,7175]]},{"i":282,"group":"trails","feature":23,"points":[[714.95,745.4,6462],[709.74,755.73,6580]]},{"i":283,"group":"trails","feature":26,"points":[[1426.41,678.68,5773],[1430,691.37,5895],[1433.71,696.36,6016],[1432.67,701.89,6015],[1422.23,715.43,6137],[1418.31,719.04,6261]]},{"i":284,"group":"trails","feature":26,"points":[[1441.49,677.73,5774],[1426.41,678.68,5773],[1418.1,672.1,5653]]},{"i":285,"group":"trails","feature":26,"points":[[1439,621.6,5159],[1431.64,625.9,5160],[1426.31,633.4,5294],[1418.83,642.23,5412],[1422.57,652.3,5529]]},{"i":286,"group":"trails","feature":26,"points":[[1412.46,677.74,5772],[1406.6,674.7,5771],[1400.72,671.69,5770]]},{"i":287,"group":"trails","feature":26,"points":[[1397.7,684.51,5893],[1400.72,671.69,5770]]},{"i":288,"group":"trails","feature":26,"points":[[1386.93,673.15,5767],[1393.8,672.4,5768],[1400.72,671.69,5770]]},{"i":289,"group":"trails","feature":26,"points":[[1418.83,642.23,5412],[1412,642.1,5410],[1406.5,646.82,5409],[1399.7,649.1,5411],[1392.89,654.83,5526],[1384,650.8,5525],[1384.06,642.92,5407],[1386.42,634.8,5408]]},{"i":290,"group":"trails","feature":26,"points":[[1441.49,677.73,5774],[1450.3,681.83,5897],[1461.02,681.38,5898],[1460.99,694.47,6018],[1456.18,705.07,6140],[1445.5,714.05,6139],[1441.19,709.79,6138],[1432.67,701.89,6015]]},{"i":291,"group":"trails","feature":26,"points":[[1465.76,674.54,5776],[1461.02,681.38,5898]]},{"i":292,"group":"trails","feature":26,"points":[[1444.5,634.9,5296],[1451.26,632.12,5297],[1463.31,643.02,5418],[1472.34,643.88,5419],[1476.42,653.08,5534],[1477,667.24,5658]]},{"i":293,"group":"trails","feature":26,"points":[[1465.76,674.54,5776],[1477,667.24,5658]]},{"i":294,"group":"trails","feature":26,"points":[[1431.64,625.9,5160],[1441.54,629.31,5295]]},{"i":295,"group":"trails","feature":26,"points":[[1438.58,725.08,6263],[1422.23,715.43,6137]]},{"i":296,"group":"trails","feature":26,"points":[[1476.47,693.55,6019],[1460.99,694.47,6018]]},{"i":297,"group":"trails","feature":26,"points":[[1477.65,687.95,5899],[1461.02,681.38,5898]]},{"i":298,"group":"trails","feature":26,"points":[[1441.19,709.79,6138],[1438.58,725.08,6263],[1433.86,734.28,6384]]},{"i":299,"group":"trails","feature":26,"points":[[1384.06,642.92,5407],[1369.55,640.06,5406],[1368.26,632.75,5289],[1362.48,625.95,5288]]},{"i":300,"group":"trails","feature":26,"points":[[1456.25,729.66,6385],[1438.58,725.08,6263]]},{"i":301,"group":"trails","feature":26,"points":[[1378.41,616.8,5153],[1368,617.9,5151],[1362.48,625.95,5288],[1374.51,627.53,5290],[1386.42,634.8,5408]]},{"i":302,"group":"trails","feature":26,"points":[[1456.25,729.66,6385],[1459.4,733.21,6386],[1457.32,746.53,6510],[1459.85,761.27,6631],[1458.04,778.12,6875]]},{"i":303,"group":"trails","feature":26,"points":[[1477.65,687.95,5899],[1476.47,693.55,6019],[1482.89,702.01,6020],[1484.54,713.33,6142],[1486.83,720.02,6267],[1482.92,730.97,6388],[1473.38,734.44,6387],[1459.4,733.21,6386]]},{"i":304,"group":"trails","feature":26,"points":[[1477.65,687.95,5899],[1489.62,691.58,5900],[1493.99,690.29,5901],[1507.97,690.06,5902],[1507.03,696.29,6022],[1508.86,710.38,6144],[1514.52,726.75,6269],[1524.17,719.97,6270],[1529.01,717.16,6271],[1531,735.85,6392],[1532.04,746.76,6516],[1527.34,755.21,6636],[1514.6,755.77,6635],[1500.85,758.42,6634],[1499.42,768.68,6762],[1489.7,780.56,6877],[1488.22,793.28,6994],[1477.89,806.72,7112]]},{"i":305,"group":"trails","feature":26,"points":[[1429.31,610.16,5157],[1428.64,608.13,5017],[1416.35,601.43,5016],[1407.63,601.12,5015],[1388.78,591.69,4854]]},{"i":306,"group":"trails","feature":26,"points":[[1426.33,734.64,6383],[1420.81,741.7,6507],[1409.59,744.32,6506],[1398.45,750.88,6505],[1392.34,753.45,6625],[1392.08,747.36,6504]]},{"i":307,"group":"trails","feature":26,"points":[[1476.42,653.08,5534],[1483.3,639.68,5420],[1494.37,648.95,5536],[1511.09,650.41,5537],[1515.07,664.74,5661],[1518.87,671.16,5781],[1514.91,678.15,5780],[1507.97,690.06,5902]]},{"i":308,"group":"trails","feature":26,"points":[[1441.07,589.91,4858],[1444.96,595.07,4859],[1443.4,601.98,5019],[1436.55,613.85,5158]]},{"i":309,"group":"trails","feature":26,"points":[[1378.41,616.8,5153],[1389.01,611.62,5154],[1405.03,613.04,5155]]},{"i":310,"group":"trails","feature":26,"points":[[1457.32,746.53,6510],[1446.82,749.99,6509]]},{"i":311,"group":"trails","feature":26,"points":[[1497.02,631.04,5301],[1493.36,636.79,5421],[1494.37,648.95,5536]]},{"i":312,"group":"trails","feature":26,"points":[[1435.55,757.35,6629],[1440.02,746.55,6508]]},{"i":313,"group":"trails","feature":26,"points":[[1368,617.9,5151],[1364.46,610.86,5150]]},{"i":314,"group":"trails","feature":26,"points":[[1412.57,761.2,6627],[1409.59,744.32,6506]]},{"i":315,"group":"trails","feature":26,"points":[[1485.99,614.64,5164],[1488.35,622.53,5300],[1497.02,631.04,5301],[1514.59,641.96,5422]]},{"i":316,"group":"trails","feature":26,"points":[[1364.16,738.84,6378],[1356.54,729.85,6377]]},{"i":317,"group":"trails","feature":26,"points":[[1364.16,738.84,6378],[1364.7,742.82,6502]]},{"i":318,"group":"trails","feature":26,"points":[[1392.34,753.45,6625],[1377.27,759.69,6624],[1370.92,754.69,6623],[1364.7,742.82,6502]]},{"i":319,"group":"trails","feature":26,"points":[[1392.34,753.45,6625],[1396.98,760.97,6626],[1396.31,772.21,6753]]},{"i":320,"group":"trails","feature":26,"points":[[1508.86,710.38,6144],[1499.52,714.32,6143],[1484.54,713.33,6142]]},{"i":321,"group":"trails","feature":26,"points":[[1435.55,757.35,6629],[1426.31,757.21,6628],[1412.57,761.2,6627],[1396.98,760.97,6626]]},{"i":322,"group":"trails","feature":26,"points":[[1434.31,578.53,4707],[1441.07,589.91,4858]]},{"i":323,"group":"trails","feature":26,"points":[[1511.09,650.41,5537],[1514.59,641.96,5422],[1520.94,634.34,5423],[1523.62,630.94,5303],[1532.07,639.62,5424],[1550.92,648.02,5540],[1533.78,662.63,5663],[1538.78,671.69,5782],[1518.87,671.16,5781]]},{"i":324,"group":"trails","feature":26,"points":[[1485.99,614.64,5164],[1500.02,606.09,5024],[1505.9,603,5025],[1509.11,596.22,5026],[1517.8,593.1,4871]]},{"i":325,"group":"trails","feature":26,"points":[[1474.68,598.79,5022],[1482.33,605.92,5023],[1485.99,614.64,5164]]},{"i":326,"group":"trails","feature":26,"points":[[1408.24,576.77,4704],[1411.03,584.17,4855],[1419.42,588.84,4856]]},{"i":327,"group":"trails","feature":26,"points":[[1430.89,575.13,4706],[1422,583.08,4705],[1419.42,588.84,4856]]},{"i":328,"group":"trails","feature":26,"points":[[1430.89,575.13,4706],[1434.31,578.53,4707]]},{"i":329,"group":"trails","feature":26,"points":[[1459.85,761.27,6631],[1449.01,762.62,6630]]},{"i":330,"group":"trails","feature":26,"points":[[1444.96,595.07,4859],[1455.4,601.9,4860],[1462.95,605.95,5020],[1469.66,604.24,5021],[1474.68,598.79,5022]]},{"i":331,"group":"trails","feature":26,"points":[[1430.89,575.13,4706],[1428.28,566.05,4537],[1419.98,560.1,4378]]},{"i":332,"group":"trails","feature":26,"points":[[1377.27,759.69,6624],[1369.98,765.64,6751],[1356.87,761.95,6622],[1354.42,768.66,6750],[1344.85,778.77,6865],[1326.19,768.54,6748],[1334.83,761.51,6620]]},{"i":333,"group":"trails","feature":26,"points":[[1394.37,579.29,4702],[1408.24,576.77,4704]]},{"i":334,"group":"trails","feature":26,"points":[[1394.09,784.58,6869],[1396.31,772.21,6753]]},{"i":335,"group":"trails","feature":26,"points":[[1389.01,611.62,5154],[1392,597.84,5014]]},{"i":336,"group":"trails","feature":26,"points":[[1360.72,575.55,4529],[1357.88,583.81,4696]]},{"i":337,"group":"trails","feature":26,"points":[[1381.68,570.31,4533],[1391.94,551.86,4376],[1392.35,544.84,4214]]},{"i":338,"group":"trails","feature":26,"points":[[1472.69,774.48,6760],[1473.33,779.11,6876],[1471.98,790.69,6993],[1471.6,805.3,7111],[1457.3,810.3,7109],[1449.08,809.28,7108],[1440.99,801.17,7107],[1434.6,801,7105],[1428.34,802.99,7104],[1422.3,809.3,7106],[1416.39,817.73,7217],[1410.87,826.8,7218]]},{"i":339,"group":"trails","feature":26,"points":[[1443.95,561.18,4539],[1443.3,555.42,4380],[1441.5,547.3,4220],[1443.59,540.86,4218],[1441.34,534.25,4057]]},{"i":340,"group":"trails","feature":26,"points":[[1430.89,575.13,4706],[1443.95,561.18,4539]]},{"i":341,"group":"trails","feature":26,"points":[[1401.21,553.22,4377],[1419.98,560.1,4378]]},{"i":342,"group":"trails","feature":26,"points":[[1401.21,553.22,4377],[1391.94,551.86,4376]]},{"i":343,"group":"trails","feature":26,"points":[[1323,582.72,4693],[1326.84,593.26,4844],[1314.81,593.02,4843]]},{"i":344,"group":"trails","feature":26,"points":[[1347.35,581.89,4695],[1357.88,583.81,4696]]},{"i":345,"group":"trails","feature":26,"points":[[1536.31,710.35,6146],[1546,708.47,6147],[1557.98,721.36,6273]]},{"i":346,"group":"trails","feature":26,"points":[[1528.34,701.1,6024],[1536.31,710.35,6146],[1529.01,717.16,6271]]},{"i":347,"group":"trails","feature":26,"points":[[1316.28,603.64,5002],[1308.87,610.81,5142]]},{"i":348,"group":"trails","feature":26,"points":[[1542.09,614.09,5169],[1531.44,618.91,5168],[1523.62,630.94,5303]]},{"i":349,"group":"trails","feature":26,"points":[[1401.21,553.22,4377],[1405.44,544.24,4215]]},{"i":350,"group":"trails","feature":26,"points":[[1355.9,546.59,4211],[1355.58,552.94,4373],[1363.65,569.07,4528]]},{"i":351,"group":"trails","feature":26,"points":[[1552.41,696.36,6025],[1546,708.47,6147]]},{"i":352,"group":"trails","feature":26,"points":[[1312.47,601.04,5001],[1316.28,603.64,5002]]},{"i":353,"group":"trails","feature":26,"points":[[1550.92,648.02,5540],[1555.47,647.79,5541],[1568.14,642.47,5427],[1583.88,643.49,5428],[1580.93,651.75,5543],[1583.61,666.78,5667],[1594.59,674.12,5787],[1608.09,671.78,5788],[1613.98,664.72,5670],[1626.79,676.61,5790],[1626.67,689.42,5912],[1620.5,696.08,6031]]},{"i":354,"group":"trails","feature":26,"points":[[1407.12,785.33,6870],[1394.09,784.58,6869]]},{"i":355,"group":"trails","feature":26,"points":[[1488.22,793.28,6994],[1471.98,790.69,6993]]},{"i":356,"group":"trails","feature":26,"points":[[1353.37,786.95,6866],[1344.85,778.77,6865]]},{"i":357,"group":"trails","feature":26,"points":[[1552.41,696.36,6025],[1557.86,696.87,6026]]},{"i":358,"group":"trails","feature":26,"points":[[1293.63,660.5,5638],[1293.61,672.57,5755],[1286.22,683.48,5878],[1282.38,673.32,5754],[1279.85,669.01,5637],[1273.75,665.68,5636],[1265.1,661.7,5634],[1257.25,661.23,5633],[1250.2,664.3,5635],[1243.93,670.93,5749],[1237.8,671.7,5748],[1229.65,665.55,5630],[1233.31,660.33,5629],[1236.8,654.1,5510],[1240.27,647.92,5509],[1240.2,640.9,5394],[1236.75,635.39,5393],[1229.83,631.32,5272],[1238.8,626.33,5135],[1242.57,619.99,5134],[1249.6,617.4,5136],[1256.6,614.88,5137],[1265.45,613.79,5138],[1273.4,608.3,4997],[1278.8,601,4996],[1283.77,594.97,4840],[1285.09,588.1,4839]]},{"i":359,"group":"trails","feature":26,"points":[[1315.85,664.77,5518],[1307.32,665.03,5639],[1293.63,660.5,5638]]},{"i":360,"group":"trails","feature":26,"points":[[1353.37,786.95,6866],[1340.85,793.01,6982],[1340.59,804.91,7097],[1328.88,803.97,7096],[1320.23,803.92,7095],[1303.22,807.21,7094],[1302.87,798.34,6978],[1307.08,791.27,6979],[1319.07,783.55,6863],[1323.67,773.69,6747],[1310.91,769.83,6746],[1294.18,768.57,6745],[1297.77,763.24,6617],[1301.76,756.17,6618],[1303.28,744.81,6497],[1296.98,747.61,6495],[1290.36,745.22,6494],[1282.82,737.38,6368],[1274.7,732.16,6366],[1269.7,737.3,6367]]},{"i":361,"group":"trails","feature":26,"points":[[1353.37,786.95,6866],[1361.16,796.44,6983],[1362.03,802.26,7098],[1366.81,810.03,7099],[1374.3,815.52,7214]]},{"i":362,"group":"trails","feature":26,"points":[[1524.21,585.87,4870],[1524.45,594.05,4871],[1531.33,603.18,5028],[1542.09,614.09,5169],[1555.82,613.91,5170],[1568.49,608.01,5031],[1574.14,616.65,5171],[1580.82,628.1,5308],[1589.04,617.82,5173],[1593.17,628.51,5309],[1580.82,628.1,5308],[1583.88,643.49,5428]]},{"i":363,"group":"trails","feature":26,"points":[[1524.21,585.87,4870],[1525.12,575.42,4557],[1527.02,567.15,4556],[1538.39,567.15,4558],[1550.78,565.44,4559],[1559.91,575.03,4721],[1572.34,591.68,4875],[1568.49,608.01,5031]]},{"i":364,"group":"trails","feature":26,"points":[[1498.46,791.29,6995],[1488.22,793.28,6994]]},{"i":365,"group":"trails","feature":26,"points":[[1407.12,785.33,6870],[1403.83,798.49,6987],[1399.51,808.86,7102],[1401.1,814.63,7216],[1410.87,826.8,7218],[1406.67,831.34,7336],[1399.4,836.2,7337],[1387.77,841.96,7440],[1384.67,836.41,7335],[1378.89,832.4,7334],[1374.3,815.52,7214]]},{"i":366,"group":"trails","feature":26,"points":[[1406.47,532.26,4054],[1405.44,544.24,4215]]},{"i":367,"group":"trails","feature":26,"points":[[1555.05,730.66,6394],[1557.98,721.36,6273]]},{"i":368,"group":"trails","feature":26,"points":[[1323.67,773.69,6747],[1326.19,768.54,6748]]},{"i":369,"group":"trails","feature":26,"points":[[1369.98,528.72,4051],[1380.5,532.33,4052],[1385.83,536.12,4053],[1392.35,544.84,4214]]},{"i":370,"group":"trails","feature":26,"points":[[1471.6,805.3,7111],[1477.89,806.72,7112]]},{"i":371,"group":"trails","feature":26,"points":[[1569.85,689.48,5907],[1557.86,696.87,6026]]},{"i":372,"group":"trails","feature":26,"points":[[1312.47,601.04,5001],[1314.81,593.02,4843]]},{"i":373,"group":"trails","feature":26,"points":[[1320.4,618,5144],[1308.87,610.81,5142]]},{"i":374,"group":"trails","feature":26,"points":[[1299.73,592.79,4841],[1305.74,591.5,4842],[1314.81,593.02,4843]]},{"i":375,"group":"trails","feature":26,"points":[[1532.52,774.7,6765],[1518.38,778.71,6880]]},{"i":376,"group":"trails","feature":26,"points":[[1406.47,532.26,4054],[1410.34,529.51,4055],[1412.98,523.12,3901],[1402.58,516.41,3900]]},{"i":377,"group":"trails","feature":26,"points":[[1315.94,562.96,4524],[1322.26,558.5,4370],[1328.48,555.57,4371],[1335.74,546.09,4209],[1344.07,544.22,4210],[1355.9,546.59,4211],[1362.38,539.66,4212],[1369.98,528.72,4051],[1368.6,518.31,3897]]},{"i":378,"group":"trails","feature":26,"points":[[1563.48,754.69,6639],[1564.9,775.73,6767]]},{"i":379,"group":"trails","feature":26,"points":[[1533.29,781.84,6881],[1532.52,774.7,6765],[1527.34,755.21,6636]]},{"i":380,"group":"trails","feature":26,"points":[[1555.05,730.66,6394],[1564.82,736.61,6395],[1570.03,743.29,6519],[1563.48,754.69,6639]]},{"i":381,"group":"trails","feature":26,"points":[[1538.78,671.69,5782],[1549.11,669.4,5664],[1562.45,673.54,5784]]},{"i":382,"group":"trails","feature":26,"points":[[1323,582.72,4693],[1315.94,562.96,4524]]},{"i":383,"group":"trails","feature":26,"points":[[1583.61,666.78,5667],[1573.13,672.93,5785],[1562.45,673.54,5784]]},{"i":384,"group":"trails","feature":26,"points":[[1573.13,672.93,5785],[1569.85,689.48,5907]]},{"i":385,"group":"trails","feature":26,"points":[[1526.8,798.1,6997],[1508.84,792.39,6996]]},{"i":386,"group":"trails","feature":26,"points":[[1293.9,583.29,4691],[1285.09,588.1,4839]]},{"i":387,"group":"trails","feature":26,"points":[[1299.73,592.79,4841],[1293.9,583.29,4691]]},{"i":388,"group":"trails","feature":26,"points":[[1282.72,562.09,4519],[1283.54,567.73,4520],[1286,570.7,4522],[1293.9,583.29,4691]]},{"i":389,"group":"trails","feature":26,"points":[[1526.8,798.1,6997],[1529.65,804.34,7118],[1535.86,808.63,7119],[1534.25,817.11,7232],[1537.89,826.35,7351],[1540.84,832.52,7352]]},{"i":390,"group":"trails","feature":26,"points":[[1533.29,781.84,6881],[1526.8,798.1,6997]]},{"i":391,"group":"trails","feature":26,"points":[[1570.03,743.29,6519],[1581.35,744.87,6520]]},{"i":392,"group":"trails","feature":26,"points":[[1594.94,637.14,5429],[1583.88,643.49,5428]]},{"i":393,"group":"trails","feature":26,"points":[[1575.9,766.3,6644],[1563.48,754.69,6639]]},{"i":394,"group":"trails","feature":26,"points":[[1572.34,591.68,4875],[1582.12,587.96,4876]]},{"i":395,"group":"trails","feature":26,"points":[[1599.18,720.34,6276],[1593.88,734.21,6397],[1595.97,747.48,6521],[1581.35,744.87,6520]]},{"i":396,"group":"trails","feature":26,"points":[[1270.07,741.57,6492],[1269.7,737.3,6367]]},{"i":397,"group":"trails","feature":26,"points":[[1307.32,665.03,5639],[1303.23,670.09,5756],[1293.61,672.57,5755]]},{"i":398,"group":"trails","feature":26,"points":[[1593.17,628.51,5309],[1594.94,637.14,5429]]},{"i":399,"group":"trails","feature":26,"points":[[1608.71,606.78,5034],[1603.21,612.02,5174],[1589.04,617.82,5173]]},{"i":400,"group":"trails","feature":26,"points":[[1599.18,720.34,6276],[1603.85,718.33,6277]]},{"i":401,"group":"trails","feature":26,"points":[[1270.07,741.57,6492],[1259.34,748.98,6491],[1255.51,753.31,6611],[1247.42,757.87,6610]]},{"i":402,"group":"trails","feature":26,"points":[[1257.6,766.4,6614],[1255.51,753.31,6611]]},{"i":403,"group":"trails","feature":26,"points":[[1615.44,655.44,5546],[1613.98,664.72,5670]]},{"i":404,"group":"trails","feature":26,"points":[[1623,713.35,6153],[1615.17,717.88,6278],[1603.85,718.33,6277]]},{"i":405,"group":"trails","feature":26,"points":[[1307.12,831.2,7328],[1318.56,832.04,7329],[1315.38,843.91,7434]]},{"i":406,"group":"trails","feature":26,"points":[[1291.56,826.32,7326],[1298.8,825.1,7208],[1302.46,818.5,7207],[1303.22,807.21,7094]]},{"i":407,"group":"trails","feature":26,"points":[[1242.84,763.59,6612],[1247.42,757.87,6610]]},{"i":408,"group":"trails","feature":26,"points":[[1242.84,763.59,6612],[1240.12,765.85,6740],[1237.31,781.44,6856],[1222.53,790.01,6972],[1219.57,781.05,6855],[1217.2,773.4,6737],[1208.9,767.82,6736],[1194.4,774.8,6735]]},{"i":409,"group":"trails","feature":26,"points":[[1251.26,772.59,6741],[1242.84,763.59,6612]]},{"i":410,"group":"trails","feature":26,"points":[[1623,713.35,6153],[1630.78,707.69,6154],[1620.5,696.08,6031]]},{"i":411,"group":"trails","feature":26,"points":[[1626.16,658.72,5671],[1633.66,651.4,5547]]},{"i":412,"group":"trails","feature":26,"points":[[1615.44,655.44,5546],[1626.16,658.72,5671]]},{"i":413,"group":"trails","feature":26,"points":[[1605.88,769.57,6772],[1617.84,758.28,6648],[1628.33,765.38,6774]]},{"i":414,"group":"trails","feature":26,"points":[[1595.97,747.48,6521],[1594.63,757.46,6645]]},{"i":415,"group":"trails","feature":26,"points":[[1257.6,766.4,6614],[1251.26,772.59,6741]]},{"i":416,"group":"trails","feature":26,"points":[[1307.12,831.2,7328],[1302.46,818.5,7207]]},{"i":417,"group":"trails","feature":26,"points":[[1608.71,606.78,5034],[1609.43,589.84,4878],[1610.15,583.31,4725],[1614.56,575.64,4726]]},{"i":418,"group":"trails","feature":26,"points":[[1638.31,685.71,5913],[1626.67,689.42,5912]]},{"i":419,"group":"trails","feature":26,"points":[[1290.78,843.9,7431],[1289.4,834.5,7327],[1291.56,826.32,7326],[1281.81,822.1,7204],[1275.1,823.7,7205],[1268.39,823.24,7324],[1261.6,818.56,7202],[1257.07,804.33,7090],[1248.45,794.16,6974],[1237.31,781.44,6856]]},{"i":420,"group":"trails","feature":26,"points":[[1268.03,846.61,7430],[1273.63,836.78,7321],[1275.1,823.7,7205]]},{"i":421,"group":"trails","feature":26,"points":[[1628.56,750.01,6524],[1617.84,758.28,6648]]},{"i":422,"group":"trails","feature":26,"points":[[1641.55,635.3,5433],[1635.76,641.18,5432],[1633.66,651.4,5547]]},{"i":423,"group":"trails","feature":26,"points":[[1650.3,667.34,5673],[1646.09,671.61,5792],[1640.39,678.12,5791],[1638.31,685.71,5913],[1648.4,689.45,5914],[1655.66,694,6034],[1658.08,713.14,6156],[1658.5,722.12,6281],[1660.57,730.39,6403],[1657.79,746.02,6526],[1643.15,755.93,6650]]},{"i":424,"group":"trails","feature":26,"points":[[1630.78,707.69,6154],[1639.79,713.16,6155],[1643.7,718.47,6280]]},{"i":425,"group":"trails","feature":26,"points":[[1632.78,612.91,5176],[1636.83,599.2,5037],[1642.86,591.52,4881],[1651.1,596.1,4882],[1669.34,604.47,5039]]},{"i":426,"group":"trails","feature":26,"points":[[1608.71,606.78,5034],[1620.57,606.48,5035],[1632.78,612.91,5176],[1643.18,615.12,5177],[1645.37,624.07,5314],[1641.55,635.3,5433],[1646.99,643.22,5548],[1653.63,647.51,5549],[1660.54,653,5550],[1673.31,654.09,5551]]},{"i":427,"group":"trails","feature":26,"points":[[1640.39,678.12,5791],[1650.3,667.34,5673]]},{"i":428,"group":"trails","feature":26,"points":[[1290.78,843.9,7431],[1268.03,846.61,7430],[1266.4,840.7,7322],[1263.19,838.05,7320],[1258.4,838.6,7323],[1251.05,843.26,7428],[1232.03,837.22,7427],[1216.13,829.06,7316],[1222.91,823.25,7317],[1225.41,814.17,7199],[1220.88,803.99,7087]]},{"i":429,"group":"trails","feature":26,"points":[[1639.67,767.27,6775],[1628.33,765.38,6774]]},{"i":430,"group":"trails","feature":26,"points":[[1660.54,653,5550],[1650.3,667.34,5673]]},{"i":431,"group":"trails","feature":26,"points":[[1658.5,722.12,6281],[1643.7,718.47,6280]]},{"i":432,"group":"trails","feature":26,"points":[[1634.71,784.25,6894],[1611.86,782.29,6891]]},{"i":433,"group":"trails","feature":26,"points":[[1628.56,750.01,6524],[1633.23,753.94,6649],[1643.15,755.93,6650],[1639.67,767.27,6775],[1634.71,784.25,6894]]},{"i":434,"group":"trails","feature":26,"points":[[1663.48,693.88,6035],[1655.66,694,6034]]},{"i":435,"group":"trails","feature":26,"points":[[1609.43,589.84,4878],[1622.26,593.49,4879],[1628.63,595.37,4880],[1642.86,591.52,4881]]},{"i":436,"group":"trails","feature":26,"points":[[1660.82,621.86,5315],[1645.37,624.07,5314]]},{"i":437,"group":"trails","feature":26,"points":[[1222.53,790.01,6972],[1220.88,803.99,7087],[1210.39,804.64,7086],[1197.84,800.52,7085],[1194.08,793.98,6970],[1186.3,788.5,6852],[1188,781.72,6851],[1194.4,774.8,6735]]},{"i":438,"group":"trails","feature":26,"points":[[1650.51,578.24,4729],[1642.86,591.52,4881]]},{"i":439,"group":"trails","feature":26,"points":[[1654.52,767.9,6776],[1639.67,767.27,6775]]},{"i":440,"group":"trails","feature":26,"points":[[1669.96,725.94,6282],[1658.5,722.12,6281]]},{"i":441,"group":"trails","feature":26,"points":[[1642.93,541.86,4253],[1635.84,545.45,4252],[1630.17,552.56,4405],[1622.28,560.35,4404],[1618.5,563.23,4565],[1614.56,575.64,4726]]},{"i":442,"group":"trails","feature":26,"points":[[1670.26,618.26,5179],[1675.9,620.94,5180],[1679.44,635.05,5436],[1673.31,654.09,5551]]},{"i":443,"group":"trails","feature":26,"points":[[1670.26,618.26,5179],[1669.34,604.47,5039]]},{"i":444,"group":"trails","feature":26,"points":[[1660.82,621.86,5315],[1670.26,618.26,5179]]},{"i":445,"group":"trails","feature":26,"points":[[1650.51,578.24,4729],[1655.16,570.73,4568]]},{"i":446,"group":"trails","feature":26,"points":[[1670.55,578.18,4730],[1670.01,581.81,4731],[1666.68,586.61,4883],[1669.34,604.47,5039]]},{"i":447,"group":"trails","feature":26,"points":[[1642.93,541.86,4253],[1651.21,546.69,4254],[1652.8,550.75,4407],[1662.92,556.52,4408],[1666.06,548.15,4255]]},{"i":448,"group":"trails","feature":26,"points":[[1670.31,566.95,4569],[1680,569.32,4570]]},{"i":449,"group":"trails","feature":26,"points":[[1670.55,578.18,4730],[1670.31,566.95,4569],[1655.16,570.73,4568]]},{"i":450,"group":"trails","feature":26,"points":[[1654.19,815.65,7246],[1640.78,818.86,7245],[1626.88,814.11,7243],[1627.26,822.54,7244],[1623.57,830.45,7362]]},{"i":451,"group":"trails","feature":26,"points":[[1186.3,788.5,6852],[1180.23,791.69,6969]]},{"i":452,"group":"trails","feature":26,"points":[[1670.31,566.95,4569],[1674.42,557.04,4409],[1662.92,556.52,4408]]},{"i":453,"group":"trails","feature":26,"points":[[1216.13,829.06,7316],[1199.84,834.05,7315],[1192.69,842.69,7424],[1179.99,846.7,7422]]},{"i":454,"group":"trails","feature":26,"points":[[1662.35,810.5,7129],[1654.19,815.65,7246]]},{"i":455,"group":"trails","feature":26,"points":[[1662.35,810.5,7129],[1676.89,816.29,7248]]},{"i":456,"group":"trails","feature":35,"points":[[1179.7,736.1,6358],[1179.21,743.23,6480]]},{"i":457,"group":"trails","feature":35,"points":[[1180.27,729.03,6357],[1179.7,736.1,6358]]},{"i":458,"group":"trails","feature":35,"points":[[1150.04,690.44,5862],[1145.9,696.2,5984],[1133.71,704.45,5985]]},{"i":459,"group":"trails","feature":35,"points":[[1139.76,709.62,6101],[1133.71,704.45,5985]]},{"i":460,"group":"trails","feature":35,"points":[[1168.39,763.94,6600],[1172.39,755.7,6601],[1175.8,749.5,6481],[1179.21,743.23,6480]]},{"i":461,"group":"trails","feature":35,"points":[[1139.76,709.62,6101],[1144.4,714.2,6102],[1148.98,718.68,6229],[1157.45,723.19,6230],[1161.1,730.2,6231],[1170.99,731.66,6355],[1180.27,729.03,6357]]},{"i":462,"group":"searoutes","feature":1,"points":[[1078.87,181.22,742],[1083.34,187.33,836],[1090.1,185.2,837],[1094.2,176.6,744],[1091.51,170.2,743],[1100.78,163.44,669],[1107.1,169.05,745],[1111.42,173.78,746],[1255.9,221.19,1172],[1261.54,234.8,1272],[1268.5,243.25,1376],[1268,250.3,1377],[1267.57,257.35,1473],[1275.43,264.23,1573],[1275.9,273.3,1574],[1276.44,282.4,1667],[1278.72,284.71,1668],[1279.2,291.3,1669],[1279.77,297.88,1764],[1290.9,306.8,1856],[1297.2,307.08,1857],[1298.87,314.88,1967],[1298.9,320.9,1968],[1298.88,326.94,2077],[1309.09,332.47,2078],[1317.86,336.7,2189],[1324.2,337.5,2190],[1330.33,328.69,2080],[1331.5,322.1,1975],[1332.76,315.49,1974],[1336.3,306.4,1771],[1331.32,304.42,1862]]},{"i":463,"group":"searoutes","feature":1,"points":[[1359.9,235.77,1289],[1361,241.6,1387],[1359.6,248.8,1388],[1361.7,258.8,1485],[1362.4,263.3,1484],[1367,270.4,1587],[1363.9,275.91,1678],[1369.3,283.4,1679],[1374.66,290.89,1776],[1382.16,299.15,1870],[1378.1,305.3,1871],[1373.99,311.43,1979],[1365.64,319.91,1978],[1358.97,321.63,1977],[1353.5,313.8,1866],[1348.12,305.92,1864],[1336.3,306.4,1771]]},{"i":464,"group":"searoutes","feature":1,"points":[[1100.78,163.44,669],[1102.9,157.5,588],[1096.8,147.04,586],[1093.07,139.87,511],[1086.6,137.1,510],[1080.18,134.38,509],[1073.41,133.82,508],[1062.6,136.4,506],[1054,144.8,507],[1046,145.9,505],[1040.16,152.76,579],[1031.19,151.48,578],[1024.51,145.73,577],[1019.78,150.22,576]]},{"i":465,"group":"searoutes","feature":1,"points":[[1033.69,310.58,1961],[1041.31,313.09,1963],[1040.9,303.97,1851],[1046.2,297,1762],[1045.1,290.9,1665],[1044.02,284.73,1664],[1042.1,278.9,1570],[1040.24,273.05,1569],[1034.1,269.3,1568],[1029.1,259.2,1470],[1030.37,253.04,1469],[1038.4,249.9,1374],[1046.3,238,1269],[1046.15,229.27,1268],[1052.45,225.45,1168],[1062.3,223.1,1169],[1067.8,216,1053],[1063.46,211.16,1052],[1067.7,205.1,936],[1071.88,198.97,935],[1077.2,195.4,937],[1082.61,191.92,938],[1083.34,187.33,836]]},{"i":466,"group":"searoutes","feature":1,"points":[[1028.6,330.09,1960],[1036.9,335.9,2074],[1044.21,330.35,2073],[1042.8,321.7,1964],[1041.31,313.09,1963]]},{"i":467,"group":"searoutes","feature":1,"points":[[1376.08,566.74,4532],[1377.85,573.89,4700],[1368.36,575.84,4697],[1360.72,575.55,4529]]},{"i":468,"group":"searoutes","feature":1,"points":[[1324.2,337.5,2190],[1330.52,338.23,2191],[1340.24,347.21,2302],[1357.78,462.04,3187],[1354.06,471.36,3297],[1353.5,478.1,3299],[1348.9,477.3,3298],[1343.82,483.19,3431],[1337.8,485.4,3430],[1331.78,487.6,3428],[1324.2,490.7,3429],[1323.7,495.9,3585],[1317.1,500.6,3586],[1312.36,507.6,3745],[1306.1,509.6,3743],[1299.79,511.65,3742],[1295.4,517.7,3744],[1295.1,529.7,3888],[1292.7,532.1,3889],[1282.9,542.03,4203],[1284.57,552.49,4367],[1275.5,552.9,4365],[1270.8,560.8,4366],[1275.22,568.27,4518],[1271.88,576.48,4687],[1272.5,586.4,4688],[1264.61,593.36,4836],[1262.3,599.8,4837],[1259.99,606.28,4994],[1252.14,607.1,4992],[1246.2,611.5,4993],[1240.3,615.96,5133],[1234.6,611.5,4990],[1224.56,612.61,5131],[1224.1,620.9,5132],[1223.63,629.27,5270],[1219.59,635.53,5391],[1220.4,641.7,5392],[1221.13,647.85,5507],[1224.4,655.9,5508],[1227.68,663.9,5628],[1227.91,673.82,5745],[1233.9,681.8,5746],[1239.87,689.79,5869],[1246,694.6,5870],[1252.19,699.48,5992],[1261.6,700.9,5993],[1271,702.37,5996],[1276,706.4,5997],[1280.92,710.33,6116],[1284.4,715.7,6117],[1293.24,719.88,6244],[1298.1,712.8,6122],[1303,705.74,6119],[1309.1,702.7,6004],[1315.2,699.67,6003],[1319.6,693.9,5885],[1323.96,688.04,5884],[1322.3,679.2,5760],[1328.4,670.3,5759],[1336.16,660.75,5641],[1335.4,649.39,5519],[1331.76,638.75,5403],[1329,630.2,5282],[1333.5,621.8,5283],[1340.73,622.14,5284],[1346.33,614.15,5146],[1352.86,606.02,5008],[1354.9,596.5,4849],[1363.3,590.5,4848],[1369.1,584.9,4699],[1368.36,575.84,4697]]},{"i":469,"group":"searoutes","feature":1,"points":[[1381.68,570.31,4533],[1377.85,573.89,4700],[1380.8,581.2,4701],[1383.82,588.52,4853],[1388.78,591.69,4854]]},{"i":470,"group":"searoutes","feature":1,"points":[[1354.06,471.36,3297],[1361.76,467.84,3300],[1369.3,469.4,3301],[1376.81,470.96,3302],[1387.61,472.05,3303],[1397.4,474,3304],[1407.26,475.98,3305],[1416.1,472.4,3306],[1430.3,474,3309],[1435.53,479.16,3442],[1437,486.1,3443],[1438.49,493.09,3599],[1445.71,494.9,3600],[1450.6,501.6,3602],[1452.1,500.2,3601],[1458.54,505.45,3761],[1470.26,503.85,3762],[1476.1,506.1,3763],[1481.98,508.31,3764],[1488.5,513.1,3765],[1494.95,517.85,3910],[1501.9,525.8,3911],[1508.9,533.75,4063],[1518.69,540.15,4232],[1520.8,547.2,4233],[1522.95,554.29,4392],[1516.2,560.3,4393],[1509.46,566.38,4554],[1503.4,564.2,4552],[1497.31,562,4551],[1490.8,562,4549],[1484.19,561.96,4547],[1476.33,568.37,4545],[1468.1,561.6,4384],[1459.7,562.2,4385],[1453.7,557.1,4382],[1447.4,559.51,4381],[1443.95,561.18,4539]]},{"i":471,"group":"searoutes","feature":1,"points":[[1229.83,631.32,5272],[1223.63,629.27,5270]]},{"i":472,"group":"searoutes","feature":1,"points":[[1227.68,663.9,5628],[1229.65,665.55,5630]]},{"i":473,"group":"searoutes","feature":1,"points":[[1380.8,581.2,4701],[1376.1,582.2,4698],[1369.1,584.9,4699]]},{"i":474,"group":"searoutes","feature":1,"points":[[1352.86,606.02,5008],[1356.76,616.64,5148],[1353.7,623.1,5149],[1362.48,625.95,5288]]},{"i":475,"group":"searoutes","feature":1,"points":[[1252.19,699.48,5992],[1247.4,704.2,5994],[1247.8,714.8,6113],[1253.1,720.67,6236],[1260.5,725.5,6238],[1257.09,731.89,6365],[1251.44,739.14,6363],[1252.94,749.12,6489],[1244.4,749.3,6487],[1238.99,759.06,6609],[1228.52,760.24,6608],[1220,761,6607],[1211.46,761.7,6606],[1200.43,761.95,6604],[1197.7,754.5,6484],[1194.89,746.97,6483],[1190.35,737.53,6359],[1188,729.9,6234],[1185.65,722.23,6233],[1182.3,716.6,6107],[1178.87,711.05,6106],[1175.1,703.6,5989],[1171.42,696.24,5988],[1169.6,689.4,5866],[1167.76,682.5,5865],[1166.27,679.29,5742],[1157.8,674.7,5741],[1149.42,670.01,5740],[1139.87,671.22,5738],[1136.34,661.59,5626],[1096.47,602.46,4988],[1080.1,594.5,4833],[1079.24,586.5,4832],[1075.28,581.24,4684],[1079.4,571.73,4516],[1080.4,561.2,4361],[1068.44,552.22,4358],[1061.97,551.34,4357],[1054.6,555.7,4356],[1047.21,560,4355],[1039.5,559.4,4354],[1031.76,558.79,4353],[1024.91,558.76,4352],[1017.1,558.9,4350],[1009.29,558.96,4349],[1002.33,558.23,4348],[994.5,555.1,4346],[986.72,551.98,4345],[981.82,540.07,4194],[973.22,528.12,4039],[979.5,522.8,3883],[985.81,517.46,3882],[991.3,513.8,3739],[996.79,510.2,3738],[1001.7,501.9,3580],[1006.54,493.62,3579],[1007.39,483.48,3424],[1012.7,477.5,3293],[1018.04,471.52,3292],[1017.89,462.49,3186],[1013.01,456.41,3185],[1009.82,451.73,3086],[1014.4,443.7,2985],[1012.3,429.7,2880],[1011.9,421.5,2879],[1018.21,419.31,2881],[1024.7,417.8,2779],[1031.13,416.36,2778],[1034.7,408.6,2679],[1038.18,400.74,2678],[1033.67,393.1,2579],[1031.7,382.4,2490],[1023.62,387.16,2578]]},{"i":476,"group":"searoutes","feature":1,"points":[[1353.7,623.1,5149],[1348.4,621.9,5147],[1340.73,622.14,5284]]},{"i":477,"group":"searoutes","feature":1,"points":[[1328.4,670.3,5759],[1320.54,670.37,5758],[1315.85,664.77,5518]]},{"i":478,"group":"searoutes","feature":1,"points":[[1335.4,649.39,5519],[1342.41,647.96,5520],[1353.35,647.35,5521],[1358.5,655.1,5522],[1363.61,662.78,5643],[1367.04,670.88,5763],[1369.2,679,5764],[1371.3,687.2,5888],[1376.33,689.54,5890],[1380.52,693.22,6010],[1377.87,700.35,6009]]},{"i":479,"group":"searoutes","feature":1,"points":[[1406.5,646.82,5409],[1405.64,651.65,5527],[1402.48,660.79,5649],[1395.3,664.2,5648],[1388.18,667.69,5647],[1381.4,664.6,5645],[1374.63,661.59,5644],[1370.8,666.2,5646],[1363.61,662.78,5643]]},{"i":480,"group":"searoutes","feature":1,"points":[[1353.35,647.35,5521],[1350.41,639.23,5405],[1350.56,629.59,5287],[1353.7,623.1,5149]]},{"i":481,"group":"searoutes","feature":1,"points":[[1426.31,633.4,5294],[1431.96,634.98,5413],[1432.8,642.9,5415],[1433.71,650.72,5530],[1426.9,655.4,5531],[1420.08,660.04,5651],[1411.3,660.4,5650],[1402.48,660.79,5649]]},{"i":482,"group":"searoutes","feature":1,"points":[[1370.8,666.2,5646],[1367.04,670.88,5763]]},{"i":483,"group":"searoutes","feature":1,"points":[[1380.52,693.22,6010],[1386.39,697.1,6011]]},{"i":484,"group":"searoutes","feature":1,"points":[[1474.68,598.79,5022],[1475.13,592.49,4863],[1480.6,587.1,4714],[1486.08,581.75,4712],[1492,579.8,4713],[1497.84,577.78,4715],[1503.7,572.1,4555],[1509.46,566.38,4554]]},{"i":485,"group":"searoutes","feature":1,"points":[[1320.54,670.37,5758],[1322.3,679.2,5760]]},{"i":486,"group":"searoutes","feature":1,"points":[[1371.3,687.2,5888],[1363.7,692.5,5889],[1356,697.77,6007],[1347.52,703.55,6006],[1349.8,717,6126],[1356.65,723.38,6255],[1360.75,722.04,6256]]},{"i":487,"group":"searoutes","feature":1,"points":[[1303.28,744.81,6497],[1298.88,738.82,6369],[1293.4,729.9,6243],[1282.2,723,6241],[1276.43,724.87,6240],[1270.1,722,6239],[1263.85,719.08,6237],[1260.5,725.5,6238]]},{"i":488,"group":"searoutes","feature":1,"points":[[1252.94,749.12,6489],[1259.34,748.98,6491]]},{"i":489,"group":"searoutes","feature":1,"points":[[1139.87,671.22,5738],[1132.5,678.5,5739],[1125.2,685.86,5860],[1126,698.5,5981],[1130.43,703.32,5982],[1133.71,704.45,5985]]},{"i":490,"group":"searoutes","feature":1,"points":[[1492,579.8,4713],[1494.79,586.02,4867],[1501.1,589.5,4868],[1507.46,592.95,4869],[1509.11,596.22,5026]]},{"i":491,"group":"searoutes","feature":1,"points":[[1476.33,568.37,4545],[1481.2,575.1,4546],[1486.08,581.75,4712]]},{"i":492,"group":"searoutes","feature":1,"points":[[1255.51,753.31,6611],[1242.84,763.59,6612]]},{"i":493,"group":"searoutes","feature":1,"points":[[1356.65,723.38,6255],[1356.54,729.85,6377]]},{"i":494,"group":"searoutes","feature":1,"points":[[1356.65,723.38,6255],[1348.3,725.3,6254],[1339.96,727.26,6253],[1333.5,725.1,6252],[1327.13,722.86,6251],[1319.62,717.27,6250],[1312.2,720.9,6249],[1304.85,724.55,6247],[1301.9,731.7,6248],[1298.88,738.82,6369]]},{"i":495,"group":"searoutes","feature":1,"points":[[1208.9,767.82,6736],[1211.46,761.7,6606]]},{"i":496,"group":"searoutes","feature":1,"points":[[1200.43,761.95,6604],[1193.4,766.7,6605],[1186.34,771.49,6732],[1182.2,779.4,6733],[1178.06,787.35,6850],[1180.23,791.69,6969]]},{"i":497,"group":"searoutes","feature":1,"points":[[1240.12,765.85,6740],[1238.99,759.06,6609]]},{"i":498,"group":"searoutes","feature":1,"points":[[1186.34,771.49,6732],[1178.8,769.3,6730],[1171.22,767.1,6729],[1168.39,763.94,6600]]},{"i":499,"group":"searoutes","feature":1,"points":[[973.22,528.12,4039],[966.4,527.8,4038],[959.56,527.49,4037],[952.1,528,4036],[944.54,528.44,4035],[938.52,530.18,4033],[932.3,536.7,4034],[926.02,543.12,4189],[928.3,551.7,4190],[930.52,560.26,4342],[926.1,566,4343],[917.32,572.03,4500],[910.03,574.78,4667],[904.4,578.6,4666],[898.8,582.41,4665],[891.25,581.88,4663],[882.3,578.9,4661],[873,582.9,4662],[872.64,589.94,4816],[869.6,598.2,4817],[866.56,606.42,4974],[860.89,612.14,5121],[862.8,619,5122],[857.7,628.3,5262],[859.3,630.9,5264],[853.92,636.05,5387],[853,646,5388],[844.12,643.99,5386]]},{"i":500,"group":"searoutes","feature":1,"points":[[1522.95,554.29,4392],[1532.48,554.36,4394],[1534.8,548.2,4237],[1537.09,542.03,4235],[1544.87,541.64,4238],[1552.5,541,4239],[1560.11,540.34,4240],[1564.4,534.6,4072],[1568.63,528.84,4071],[1577.19,526.86,4073],[1582.1,522.2,3922],[1587.04,517.59,3921],[1590.95,509.72,3772],[1595.13,492.23,3605],[1606.1,475.1,3312],[1606.83,468.95,3311],[1612.58,464.17,3196]]},{"i":501,"group":"searoutes","feature":1,"points":[[1005.29,83.7,167],[1011.43,82.46,168],[1010.6,76.5,117],[1009.71,70.59,115],[1003.5,67.6,114],[997.27,64.52,113],[989.2,55.3,71],[982.34,54.04,70],[977.1,48.3,42],[971.82,42.57,41],[971.3,34.7,21],[963.5,30,19],[956.1,33.26,18],[949.22,29.41,17],[941.59,25.29,16],[931.2,27.6,15],[920.73,29.84,14],[912.85,27.96,13],[903.48,30.05,12],[896.4,32.6,11],[889.3,35.2,9],[885,40.9,10],[880.69,46.57,27],[871.4,43.3,26],[861.2,48.5,25],[852.5,53.9,57],[844.66,50.68,55],[838.1,57.2,56],[831.63,63.62,94],[823.1,64,93],[814.5,64.41,92],[805.93,69.02,90],[804.5,75.8,91],[803.08,82.55,147],[799.3,88.2,148],[795.58,93.92,205],[794.49,102.58,265],[787.2,102.4,264],[779.91,102.28,263],[772.9,110.5,328],[764.1,113.1,326],[755.27,115.73,325],[747.37,113.22,324],[740.5,115.9,323],[733.69,118.48,322],[723.7,118.4,320],[718,123.2,321],[712.39,127.9,392],[715.8,133.18,395]]},{"i":502,"group":"searoutes","feature":1,"points":[[1024.51,145.73,577],[1021.97,135.54,501],[1021.71,129.14,430],[1019.9,119.9,360],[1027.5,111.6,359],[1037.5,105.1,289],[1038.16,97.76,288],[1048.09,92.93,234],[1047.3,86.8,175],[1046.5,80.67,174],[1041.6,76.8,173],[1036.63,72.85,172],[1029.7,73.8,171],[1022.67,74.74,170],[1017.1,78.6,169],[1011.43,82.46,168]]},{"i":503,"group":"searoutes","feature":1,"points":[[1031.7,382.4,2490],[1029.67,371.64,2489],[1035.49,364.04,2400],[1034.64,354.08,2300],[1032.1,347.7,2186],[1029.58,341.38,2185],[1036.9,335.9,2074]]},{"i":504,"group":"searoutes","feature":1,"points":[[646.13,486.08,3390],[651.41,479.29,3391],[657,482.6,3392],[662.67,485.96,3393],[664.4,492.5,3394],[666.15,499.05,3546],[666.2,505.4,3547],[666.18,511.77,3710],[663.97,517.75,3856],[657.7,520,3855],[651.45,522.23,3854],[646.42,521.73,3853]]},{"i":505,"group":"searoutes","feature":1,"points":[[657.73,571.46,4474],[663.81,575.23,4638],[666.7,581.9,4639],[669.62,588.48,4799],[678.2,587.5,4800],[685,580.4,4642],[694.3,582.8,4644],[701.79,579.09,4643],[701.07,569.55,4481],[705.76,558.98,4323],[709.9,551.8,4168],[704.4,542.1,4166],[694.93,539.54,4165],[690.6,533.6,4011],[679.5,529.1,4009],[672.8,530.6,4008],[671.46,532.67,4007]]},{"i":506,"group":"searoutes","feature":1,"points":[[672.8,530.6,4008],[668.4,524.2,3857],[657.7,520,3855]]},{"i":507,"group":"searoutes","feature":1,"points":[[641.57,254.94,1531],[634,251.6,1338],[625.1,251,1334],[620.14,244.79,1333],[615.73,235.98,1231]]},{"i":508,"group":"searoutes","feature":1,"points":[[630.1,298.63,1725],[622.6,300.96,1815],[618.96,304.94,1813],[612.5,304.4,1812],[606.09,295.42,1722],[601.9,288.8,1624],[605.1,277.9,1528],[612.46,273.69,1527],[612.7,266.3,1428],[621.5,258.1,1429],[630.01,257.21,1430],[634,251.6,1338]]},{"i":509,"group":"searoutes","feature":1,"points":[[678.2,587.5,4800],[675.9,598.2,4801],[682.24,607.82,4962],[678.09,611.7,5108],[678.1,618,5109],[678.16,624.3,5250],[673.1,627.6,5247],[667.99,630.85,5246],[661.5,633.2,5249],[655.08,635.61,5375],[643.6,632.4,5243],[637,628.2,5244],[633.9,624.7,5241],[624.59,627.06,5240],[617.6,622.1,5099],[610.7,617.07,5098],[608.9,607.7,4952],[607.12,598.34,4951],[599.8,595.1,4789],[592.52,591.77,4788],[590.27,582.94,4630],[593,572.5,4468],[595.66,562.13,4467],[601.24,552.81,4308],[599.5,546,4154],[597.84,539.1,4153],[600.1,532.6,4000],[602.37,526.15,3999],[609.91,529.11,4001]]},{"i":510,"group":"searoutes","feature":1,"points":[[643.6,632.4,5243],[643.27,622.28,5242],[641.56,616.76,5102]]},{"i":511,"group":"searoutes","feature":1,"points":[[853,646,5388],[852.06,655.99,5504],[843.1,665.4,5623],[833.54,661.37,5621],[824.9,657.9,5501],[816.2,654.52,5500],[810,651.2,5499],[803.71,647.93,5498],[798.3,644.1,5380],[792.81,640.25,5379],[789.8,632.3,5254],[786.75,624.38,5253],[782.89,619.99,5113],[776.6,617.4,5112],[770.28,614.78,5111],[770.2,607.1,4965],[770.02,599.35,4964],[769.95,590.85,4805],[763.5,586.2,4648],[757.03,581.62,4647],[757.35,571.55,4484],[757.8,564.4,4326],[758.18,557.22,4325],[753.9,552,4172],[749.65,546.73,4171],[737.27,547.67,4170],[718,555.55,4324],[709.9,551.8,4168]]},{"i":512,"group":"searoutes","feature":1,"points":[[651.41,479.29,3391],[645.3,474,3262],[639.25,468.79,3261],[633.3,467.9,3260],[627.34,467.03,3259],[620.9,462.9,3152],[616.3,455.3,3058],[608.9,449.1,3055],[599.44,451.41,3054],[596.41,453.63,3147]]},{"i":513,"group":"searoutes","feature":1,"points":[[633.35,665.58,5606],[637.79,665.42,5607],[637.5,655.4,5491],[637.16,645.42,5490],[633.9,639.8,5372],[637.4,638.3,5371],[643.6,632.4,5243]]},{"i":514,"group":"searoutes","feature":1,"points":[[552.7,476.72,3250],[549.85,483.09,3378],[547.2,489.9,3379],[550.5,500.2,3530],[556.52,503.71,3697],[561.96,503.65,3698],[567.09,497.29,3532],[575.4,500.9,3533],[572.8,504.1,3699],[578.7,514,3701],[583,520.7,3844],[595.1,528.87,3998],[600.1,532.6,4000]]},{"i":515,"group":"searoutes","feature":1,"points":[[601.9,288.8,1624],[597.64,282.1,1623],[587.56,283.78,1621],[583.4,289.6,1622],[579.21,295.41,1719],[573.5,301.3,1720],[567.8,307.24,1808],[567.22,311.08,1919],[560.21,310.66,1917]]},{"i":516,"group":"searoutes","feature":1,"points":[[583,520.7,3844],[573.73,523.34,3843],[568.7,527,3845],[563.59,530.72,3996],[552.07,531.97,3995],[543.68,528.98,3993],[537.21,526.54,3839]]},{"i":517,"group":"searoutes","feature":1,"points":[[645.77,681.26,5847],[651.97,677.49,5726],[644.5,665.5,5608],[637.79,665.42,5607]]},{"i":518,"group":"searoutes","feature":1,"points":[[654.18,783.55,6823],[660.8,786.72,6824],[669.85,783.05,6825],[680.1,780.9,6826],[690.32,778.68,6827],[699.28,778.18,6829],[710.33,778.83,6832],[717.03,783.76,6834],[713.8,789.2,6835],[717.3,800.1,6951],[724.05,805.57,7070],[729.51,805.39,7071],[737.9,805.6,7072],[746.21,805.76,7073],[752,810.7,7074],[757.87,815.6,7187],[770.6,813.5,7077],[774.72,808.28,7076],[774.3,801.5,6960],[773.81,794.78,6959],[773.53,785.19,6841],[763.22,780.41,6840],[756.1,777.7,6715],[754.2,769.9,6714],[750.2,761,6588],[744.8,750.8,6467],[748.47,744.38,6466],[742.45,735.38,6345],[736.9,732.4,6344],[731.4,729.36,6343],[727.7,723.5,6220],[723.92,717.55,6219],[718.66,709.53,6098],[712.7,706.1,5976],[713.01,697.39,5975],[711.8,691.5,5857],[710.65,685.58,5856],[702.9,683.7,5855],[695.19,681.82,5854],[694.3,671.2,5617],[685.49,657.82,5615],[680.7,654,5496],[675.99,650.25,5495],[669.6,648.1,5493],[661.6,656.1,5494],[659.9,666.22,5610],[655.9,671.9,5611],[651.97,677.49,5726]]},{"i":519,"group":"searoutes","feature":1,"points":[[522.55,216.36,1115],[518.47,211.62,995],[512.2,207.6,994],[505.97,203.6,992],[496.95,199.11,879],[487.9,195.8,878],[478.89,192.44,877],[470.28,188.42,773],[471.8,179.7,688],[462.12,173.57,686],[457.3,169.7,601],[452.4,165.83,600],[444.7,171.7,602],[436.98,177.6,683],[428.85,182.67,766],[427.27,193.24,871],[417.1,197,869],[411.4,212.5,981],[415.65,217,1101],[415.2,225.8,1102],[414.7,234.62,1209],[420.7,242.31,1313],[430.5,248.6,1316],[430.44,257.19,1409],[430.3,264.4,1505],[427,272.5,1504],[432.01,281.39,1601],[431.5,288.2,1603],[431.02,295.01,1696],[426.49,299.36,1793],[422.8,309.3,1795],[419.08,319.25,1895],[415.56,327.39,2007],[419.8,336,2008],[423.95,344.61,2120],[429.4,350.8,2121],[434.82,357.07,2239],[443.9,361.9,2241],[452.96,366.64,2347],[451.22,372.7,2440],[449.7,378.6,2441],[456,384.5,2535],[462.1,391.1,2537],[468.3,399.3,2626],[476.07,400.9,2628],[484.93,400.84,2629],[491.6,401.9,2631],[498.24,402.9,2632],[508.29,402.35,2633],[514.5,402.7,2634],[520.74,402.99,2635],[528.6,402.6,2636],[536.44,402.26,2638],[541.4,398.9,2641],[546.39,395.52,2642],[555.79,390.44,2547],[555.57,378.93,2454],[559.39,368.17,2363],[557.7,359.8,2258],[555.98,351.46,2257],[562.52,348.68,2259],[567,344.3,2142],[571.52,339.82,2141],[577.63,336.83,2143],[577.19,329.18,2034],[572.2,320.1,1920],[567.22,311.08,1919]]},{"i":520,"group":"searoutes","feature":1,"points":[[597.64,282.1,1623],[605.1,277.9,1528]]},{"i":521,"group":"searoutes","feature":1,"points":[[612.7,266.3,1428],[612.93,258.92,1427],[613.3,249.8,1336],[615.73,235.98,1231]]},{"i":522,"group":"searoutes","feature":1,"points":[[620.14,244.79,1333],[622.4,238.7,1233],[624.58,232.67,1232],[624.6,224.7,1127],[624.65,216.8,1125],[619.99,214.32,1009]]},{"i":523,"group":"searoutes","feature":1,"points":[[620.14,244.79,1333],[613.3,249.8,1336]]},{"i":524,"group":"searoutes","feature":1,"points":[[452.4,165.83,600],[451.3,156.1,520],[450.22,146.4,519],[453.4,140.2,444],[456.65,134.06,443],[464.8,125.34,366],[474.71,125.89,367],[481,125.6,368],[487.38,125.38,369],[494,122.8,370],[493.2,120.6,294],[499.04,115.73,293],[498,107.1,237],[508.05,106.86,239],[514,105.7,240],[519.98,104.45,241],[525.8,101.4,242],[531.59,98.26,243],[532.55,92.03,179],[533.8,82.9,122],[546.7,77.6,124],[554.2,82.8,125],[558.3,78.2,126],[562.3,73.58,127],[566.27,64.75,76],[575.5,63.28,77],[584.3,64.2,78],[593.07,65.13,79],[603.93,63.13,80],[612.38,68.02,81],[620.2,69.5,82],[628.03,70.9,83],[635.47,62.61,84],[641,67.7,85],[646.59,72.74,139],[653.4,77,140],[660.17,81.32,141],[668.7,80.5,142],[677.31,79.73,143],[681.23,81.06,144],[686,87.2,145],[690.68,93.36,199],[697.1,95.6,200],[703.44,97.79,258],[707.39,102.19,259],[707.52,113.94,316],[710,120.9,318],[712.39,127.9,392]]},{"i":525,"group":"searoutes","feature":1,"points":[[514.18,489.87,3374],[512.42,494.52,3522],[504.2,492.4,3520],[495.92,490.33,3519],[490.7,484.8,3368],[485.56,479.17,3367],[481.1,472.9,3241],[476.7,466.69,3240],[472,462.2,3134],[467.23,457.61,3133],[467.67,450.9,3040],[471,445.7,2942],[474.42,440.49,2941],[474.4,434,2829],[474.47,427.58,2828],[475.1,418.9,2733],[475.68,410.26,2732],[480.3,405.5,2630],[484.93,400.84,2629]]},{"i":526,"group":"searoutes","feature":1,"points":[[541.4,398.9,2641],[544.4,402.4,2639],[548.9,408.9,2645],[558.8,408.8,2644],[565.24,415.15,2745],[570.3,419.2,2746],[575.3,423.18,2845],[583.7,423.3,2846],[591.2,431.1,2850],[590.26,438.77,2954],[600.1,444.6,2956],[599.44,451.41,3054]]},{"i":527,"group":"searoutes","feature":1,"points":[[663.97,517.75,3856],[668.4,524.2,3857]]},{"i":528,"group":"searoutes","feature":1,"points":[[571.77,689.02,5842],[567,691.31,5840],[560,689.5,5838],[558.5,671.3,5600],[564.84,665.15,5599],[565.7,656.4,5482],[566.6,647.62,5481],[570.21,639.35,5364],[564.6,635.1,5228],[558.98,630.89,5227],[558.5,624.9,5092],[566.6,618.9,5091],[575.17,618.96,5094],[575.9,612.2,4946],[583.4,610.5,4945],[590.17,615.53,5095],[596.1,617.6,5096],[602.09,619.64,5097],[610.7,617.07,5098]]},{"i":529,"group":"searoutes","feature":1,"points":[[624.59,627.06,5240],[630.72,634.1,5370],[633.9,639.8,5372]]},{"i":530,"group":"searoutes","feature":1,"points":[[494.47,335.32,2022],[497.17,339.82,2132],[501.2,345,2133],[505.32,350.15,2251],[514.54,349.78,2252],[520.9,349.1,2253],[527.23,348.37,2254],[532.3,344.5,2137],[538.21,349.19,2255],[547.1,350.3,2256],[555.98,351.46,2257]]},{"i":531,"group":"searoutes","feature":1,"points":[[669.6,648.1,5493],[663.2,646.02,5492],[655.08,635.61,5375]]},{"i":532,"group":"searoutes","feature":1,"points":[[560,689.5,5838],[558.1,692.8,5839],[563.25,697.82,5962],[561.99,705.36,6082],[559.6,714.3,6083],[557.11,723.18,6203],[559.73,732.64,6325],[558.4,741.1,6326],[557.05,749.46,6447],[555.6,755.7,6448],[559.7,756.7,6568]]},{"i":533,"group":"searoutes","feature":1,"points":[[673.79,803.43,6946],[679.86,802.77,7063],[685.5,799.3,6949],[691.21,795.78,6947],[690.8,787.2,6828],[690.32,778.68,6827]]},{"i":534,"group":"searoutes","feature":1,"points":[[679.86,802.77,7063],[684.77,806.5,7064],[689.51,816.37,7180],[692.2,822.4,7181],[694.89,828.39,7295],[694.1,834.6,7297],[693.29,840.72,7411],[685.62,838.31,7410],[676.44,846.58,7409],[659.5,836.9,7292],[657.49,826.99,7291],[655.89,821.33,7175]]},{"i":535,"group":"searoutes","feature":1,"points":[[501.2,345,2133],[495.76,349.72,2250],[488.1,353.2,2249],[480.36,356.73,2248],[477.66,346.71,2129]]},{"i":536,"group":"searoutes","feature":1,"points":[[529.69,392.05,2545],[528.6,402.6,2636]]},{"i":537,"group":"searoutes","feature":1,"points":[[466.69,381.38,2443],[463.77,384.56,2536],[462.1,391.1,2537]]},{"i":538,"group":"searoutes","feature":1,"points":[[476.7,466.69,3240],[480.75,463.93,3137]]},{"i":539,"group":"searoutes","feature":1,"points":[[499.58,544.57,4139],[498.51,543.29,4136],[492.98,535.84,3989],[494.3,528.6,3834],[495.6,521.42,3833],[493.2,515.2,3687],[490.82,509.05,3686],[477.2,508.1,3684],[472.16,512.2,3683],[468.8,523.62,3831],[468.59,525.12,3986]]},{"i":540,"group":"searoutes","feature":1,"points":[[493.2,515.2,3687],[498.9,508.8,3688],[507.07,508.45,3689],[509.7,501.5,3523],[512.42,494.52,3522]]},{"i":541,"group":"searoutes","feature":1,"points":[[558.5,624.9,5092],[549.2,618.7,5089],[540.48,618.51,5088],[533.57,618.2,5087],[524.65,619.94,5086],[515,617.3,5085],[505.36,614.72,5084],[496.86,610.94,5083],[499.82,599.8,4931],[500.47,596.33,4775],[496.7,588.2,4614],[492.96,579.98,4613],[490.46,574.78,4451]]},{"i":542,"group":"searoutes","feature":1,"points":[[570.21,639.35,5364],[573.73,635.89,5231]]},{"i":543,"group":"searoutes","feature":1,"points":[[563.25,697.82,5962],[567,691.31,5840]]},{"i":544,"group":"searoutes","feature":1,"points":[[428.72,197.14,873],[427.27,193.24,871]]},{"i":545,"group":"searoutes","feature":1,"points":[[480.3,405.5,2630],[476.07,400.9,2628]]},{"i":546,"group":"searoutes","feature":1,"points":[[468.3,399.3,2626],[460.49,397.63,2625],[454.4,398.9,2624],[448.34,400.11,2623],[439.8,398,2622],[431.28,395.79,2621],[425.7,399.6,2620],[420.12,403.46,2619],[414.08,402.7,2618],[405.8,400.3,2617],[397.53,397.88,2616],[389.3,402.78,2614],[383.4,406.8,2615],[377.54,410.79,2714],[378.4,417.6,2715],[379.25,424.32,2817],[385.84,426.71,2818],[385.52,432.07,2927],[389,438,2928],[392.43,443.87,3028],[392.1,453.1,3029],[391.85,462.38,3125],[396.28,472.91,3228],[406.68,476.84,3229],[410.93,483.36,3356],[411.5,491.9,3358],[412.01,500.48,3506],[413.3,510.8,3508],[414.57,521.19,3825],[419.63,531.38,3980],[419.2,537.9,3981],[418.73,544.5,4128],[421.18,548.72,4292]]},{"i":547,"group":"searoutes","feature":1,"points":[[502.68,722.87,6198],[503.2,714.8,6075],[495.82,715.33,6074],[487.5,707.8,5958],[486.72,715.21,6194]]},{"i":548,"group":"searoutes","feature":1,"points":[[555.6,755.7,6448],[548.06,755.41,6566],[540.37,750.45,6445],[534.62,742.51,6444],[534.9,733.13,6323],[535.2,726.7,6201],[535.51,720.31,6200],[532.3,715.1,6080],[529.13,709.91,6079],[521.21,707.71,6078],[515.9,711,6077],[510.55,714.23,6076],[503.2,714.8,6075]]},{"i":549,"group":"searoutes","feature":1,"points":[[427.37,656.11,5477],[431.11,655.37,5478],[437.3,652.3,5479],[443.5,643.2,5361],[443.47,637.15,5360],[448,631.6,5220],[452.48,626.14,5219],[464.19,627.58,5221],[467.73,625.96,5222],[472.64,618.08,5081],[474.3,611.7,4927],[475.98,605.3,4925],[481.6,601.7,4926],[487.23,598.1,4928],[493.9,597.2,4776],[500.47,596.33,4775]]},{"i":550,"group":"searoutes","feature":1,"points":[[396.28,472.91,3228],[390.24,469.55,3227],[380.13,472.84,3226],[369.5,477.8,3225],[361.12,478.59,3351],[357.28,482.58,3348]]},{"i":551,"group":"searoutes","feature":1,"points":[[369.5,477.8,3225],[369.4,480.7,3352],[374.7,489.2,3354],[371.72,495.45,3502],[367.1,501.1,3503],[362.48,506.78,3668],[355.6,508.7,3667],[348.75,510.71,3666],[342.8,507.6,3665],[336.82,504.5,3664],[334.54,495.62,3346]]},{"i":552,"group":"searoutes","feature":1,"points":[[390.24,469.55,3227],[391.85,462.38,3125]]},{"i":553,"group":"searoutes","feature":1,"points":[[379.25,424.32,2817],[370.5,422.8,2816],[361.73,421.27,2815],[354.7,416,2713],[341,418.9,2711],[338.05,425.25,2811],[333.07,430.86,2918],[325.2,427.6,2808],[317.3,424.32,2807],[308.4,427.8,2809],[299.48,431.19,2914],[295.11,425.36,2806],[285.6,426.3,2805],[286.5,421.1,2706],[277.79,416.78,2705],[266.12,415.79,2704],[262,407.6,2601],[257.85,399.47,2600],[249.3,399.9,2599],[240.77,400.4,2598],[236,395.4,2510],[237.7,393.8,2509],[234.62,387.23,2508],[226.9,386.2,2507],[219.09,385.17,2506],[211.82,393.22,2505],[204.4,389.2,2503],[194.5,393.4,2504],[192.02,401.63,2591],[194.67,408.96,2693],[193.2,416.9,2694],[191.79,424.82,2793],[190.28,432.24,2897],[190.3,439.9,2898],[190.37,447.56,2999],[188.9,455.5,3000],[194.7,462.9,3098],[201.92,462.39,3099],[209.7,466.8,3100],[223.6,464.9,3104],[229.57,458.7,3103],[240.39,462.34,3105],[247.3,471.34,3209],[249.5,477.2,3210],[259.6,480.6,3337],[267.33,478.2,3339],[273,480.8,3340],[278.66,483.45,3341],[289.97,485.61,3342],[296.35,482.9,3343]]},{"i":554,"group":"searoutes","feature":1,"points":[[330.08,533.26,4118],[329.3,528.67,3967],[320.73,528.71,3966],[312.2,530.1,3965],[303.57,531.39,3964],[296,529.1,3963],[288.5,526.82,3962],[282.9,523.4,3807],[277.24,520.07,3806],[272.4,514.4,3653],[267.48,508.8,3652],[255.98,506.06,3651],[252.3,501.2,3481],[248.58,496.32,3480],[250.2,489.6,3338],[251.79,482.96,3336],[249.5,477.2,3210]]},{"i":555,"group":"searoutes","feature":1,"points":[[415.56,327.39,2007],[406.6,327.7,2005],[397.71,328,2004],[389.25,329.21,2003],[380.5,331.4,2002],[371.76,333.68,2001],[366.2,329.6,2000],[355.13,333.28,1998],[353.27,344.81,2106],[347.73,347.57,2225],[337.69,341.83,2105],[331.01,335.99,2104],[325.54,326.92,1996],[319.3,327.6,1994],[313.11,328.2,1993],[306.3,335.4,1995],[299.58,342.61,2101],[295.12,343.48,2100],[286.3,344,2099],[277.4,344.43,2098],[263,337.7,2096],[253.83,339.84,2094],[249.03,343.29,2091],[242.39,340.75,1987]]},{"i":556,"group":"searoutes","feature":1,"points":[[243.29,455.25,3009],[240.39,462.34,3105]]},{"i":557,"group":"searoutes","feature":1,"points":[[257.85,399.47,2600],[264.48,395.05,2602],[264.78,392.35,2514],[261.8,386.7,2417],[258.82,381.04,2416],[262.14,376.8,2319]]},{"i":558,"group":"searoutes","feature":1,"points":[[229.57,458.7,3103],[229.43,452.26,3007]]},{"i":559,"group":"searoutes","feature":1,"points":[[245.81,458.91,3010],[240.39,462.34,3105]]},{"i":560,"group":"searoutes","feature":1,"points":[[248.58,496.32,3480],[245.2,501.9,3482],[241.86,507.49,3649],[238.42,513.87,3801]]},{"i":561,"group":"searoutes","feature":1,"points":[[293.83,479.31,3217],[289.97,485.61,3342]]},{"i":562,"group":"searoutes","feature":1,"points":[[487.5,707.8,5958],[479.27,700.22,5957],[472.8,699.7,5956],[466.37,699.21,5955],[463.2,693.2,5834],[460.08,687.24,5833],[448.55,685.01,5832],[442.9,678.8,5714],[437.17,672.63,5713],[438.4,665,5597],[431.11,655.37,5478]]},{"i":563,"group":"searoutes","feature":1,"points":[[258.82,381.04,2416],[249.9,377.4,2415],[247.03,371.39,2414],[246.1,364.2,2203],[245.16,356.92,2202],[247.1,350.1,2093],[249.03,343.29,2091]]},{"i":564,"group":"searoutes","feature":1,"points":[[245.2,501.9,3482],[241.6,494,3479],[234.68,491.73,3478],[226.8,492.4,3477],[218.82,493.15,3476],[213.89,499.85,3475],[206.1,495.6,3474],[198.24,491.38,3473],[187.43,492.23,3472],[186.42,501.5,3639]]},{"i":565,"group":"searoutes","feature":1,"points":[[159.65,496.25,3471],[151.6,495.2,3468],[145.33,499.09,3466],[143.6,504.9,3467],[141.9,510.8,3632],[134.6,509.2,3631],[127.25,507.66,3630],[120.9,508.2,3628],[115.4,516.6,3629],[116.3,524.37,3789],[118.62,523.64,3947]]},{"i":566,"group":"searoutes","feature":1,"points":[[187.43,492.23,3472],[180.1,490.4,3330],[172.75,488.6,3329],[165.4,490,3331],[157.96,491.34,3469],[159.65,496.25,3471]]},{"i":567,"group":"searoutes","feature":1,"points":[[115.12,525.57,3946],[116.3,524.37,3789]]},{"i":568,"group":"searoutes","feature":1,"points":[[115.4,516.6,3629],[110.4,516.2,3626],[104.21,521.75,3788]]},{"i":569,"group":"searoutes","feature":34,"points":[[143.28,718.81,6044],[137.28,721.7,6164],[131.4,719.9,6162],[125.42,718.08,6161],[116.43,714.96,6040],[109.2,714.9,6039],[100.2,706.9,5920],[98.42,698.89,5919],[100.5,693.1,5800],[102.61,687.3,5799],[106.22,685.42,5801]]},{"i":570,"group":"searoutes","feature":34,"points":[[141.16,724.79,6288],[137.28,721.7,6164]]},{"i":571,"group":"searoutes","feature":39,"points":[[1626.88,814.11,7243],[1620.98,818.28,7241],[1617.75,807.19,7125],[1612.7,800,7008],[1607.57,792.72,7007],[1604.6,784.9,6890],[1611.86,782.29,6891]]},{"i":572,"group":"searoutes","feature":39,"points":[[1604.6,784.9,6890],[1601.55,777.09,6889],[1593.31,774.31,6770],[1587.3,777.1,6771],[1581.28,779.94,6886],[1570.85,780.97,6885],[1564.9,775.73,6767]]},{"i":573,"group":"searoutes","feature":39,"points":[[1570.85,780.97,6885],[1566.4,792.9,7003],[1561.01,795.82,7002],[1552.8,797.4,7001],[1546.41,804.34,7120],[1545.15,813.49,7233],[1549.5,817.8,7234],[1549.7,827.7,7237],[1545.6,833.34,7353],[1540.84,832.52,7352]]},{"i":574,"group":"searoutes","feature":42,"points":[[1477.89,806.72,7112],[1477.55,814.46,7224],[1469.1,817.2,7223],[1460.74,819.86,7222],[1449.27,820.01,7221],[1443.28,817.55,7220],[1431.96,816.13,7219],[1430.72,825.45,7341],[1423.1,828.3,7339],[1415.51,831.17,7338],[1410.87,826.8,7218]]},{"i":575,"group":"searoutes","feature":42,"points":[[1493.31,822.11,7229],[1487.35,821.35,7226],[1482.4,817.9,7225],[1477.55,814.46,7224]]},{"i":576,"group":"searoutes","feature":46,"points":[[1307.12,831.2,7328],[1311.4,838.12,7433],[1294.34,839.65,7432],[1290.78,843.9,7431]]},{"i":577,"group":"searoutes","feature":46,"points":[[1315.38,843.91,7434],[1311.4,838.12,7433]]}]
+[{"i":0,"name":"Tetelilcan Incursion","type":"Invasion","cells":[3536,3703,3704,3537,3384,3538,3847,3256,3257,3258,3386],"color":"url(#hatch1)"},{"i":1,"name":"Vexuman Insurrection","type":"Rebels","cells":[6685,6686,6808,6810,6685,6809,6927,6811,6928,7046,6812,7048,7160,6813,7161,6814,6932,7277],"color":"url(#hatch3)"},{"i":2,"name":"Gongshingian Rebels","type":"Rebels","cells":[4521,4368,4523,4521,4693,4524,4846,4208,5006,4048],"color":"url(#hatch3)"},{"i":3,"name":"Longong Proselytism","type":"Proselytism","cells":[5347,5206,5207,5348,5347,5067,5066,5065,5068,5208,5467,5349,4911,4910,4757,4909,5069,4912,5209,5350,5468,5469,4914,4913,4759,4760,5070,5210],"color":"url(#hatch6)"},{"i":4,"name":"Tetzintz Proselytism","type":"Proselytism","cells":[3149,3150,3255,3149],"color":"url(#hatch6)"},{"i":5,"name":"Yellow Plague","type":"Disease","cells":[4932,4777,4932,4617,4453,4452,4451,4297,4611,4450,4612,4298,4449],"color":"url(#hatch12)"},{"i":6,"name":"Artyntian Famine","type":"Disaster","cells":[6101,6103,6101,5985,6104,6102,5984,6229,5862,5983,6226,5863,5987,6473,6105,5983,6354,5983,6355,6476,5861,6350,5986,6105,6230,6478,6358,5864,6231,5987,6476,6479,6357,5864,6472,6348,5864,6356,6477,6481,6471,6348,6601,6357,6356,6598,6351,6593,4980,6477],"color":"url(#hatch5)"},{"i":7,"name":"Chishambe Eruption","type":"Eruption","cells":[5931,5930,5810,5692,5691,5812,6050,6172,6298,6418,5932,5933,5811,6049,6048,6047,5929,5694],"color":"url(#hatch7)"},{"i":8,"name":"Leung Avalanche","type":"Avalanche","cells":[5319,5183,5044,5185,5324,5327,5184,5321,5322,5445,5318,5320,5444,5326,5325],"color":"url(#hatch5)"},{"i":9,"name":"Pendentonese Fault","type":"Fault","cells":[1263,1262,1159,1158,1040],"color":"url(#hatch2)"},{"i":10,"name":"Gidh Flood","type":"Flood","cells":[3795,3952,4104,4273,4426,4588,3636,3471],"color":"url(#hatch13)"},{"i":11,"name":"Uxbletonese Tsunami","type":"Tsunami","cells":[2155,2156,2372,2272,2153,2154,2157,2373,2152,2463],"color":"url(#hatch13)"}]
+[{"i":0,"points":[[935,48],[925,56],[919,49],[922,44],[932,44],[935,48]],"type":"glacier"},{"i":1,"points":[[935,81],[925,71],[933,68],[942,71],[945,68],[955,71],[958,74],[951,82],[956,91],[965,83],[971,86],[968,97],[959,97],[955,92],[945,95],[945,96],[932,97],[929,87],[935,81]],"type":"glacier"},{"i":2,"points":[[864,95],[861,92],[861,86],[873,80],[875,82],[876,84],[868,97],[864,95]],"type":"glacier"},{"i":3,"points":[[884,99],[883,88],[894,84],[894,82],[905,84],[907,86],[909,91],[906,93],[905,101],[900,103],[899,104],[884,109],[885,116],[877,121],[877,121],[867,117],[868,106],[868,106],[868,98],[884,99]],"type":"glacier"},{"i":4,"points":[[573,106],[571,107],[563,108],[563,118],[560,121],[562,130],[561,131],[566,142],[561,149],[552,138],[554,133],[549,129],[540,135],[538,141],[526,143],[524,141],[515,143],[512,144],[510,155],[513,157],[527,151],[528,153],[523,165],[533,167],[535,175],[542,181],[548,179],[549,174],[556,170],[557,155],[560,154],[567,157],[576,153],[575,142],[577,139],[581,139],[584,139],[590,139],[595,145],[608,138],[608,138],[612,127],[616,125],[622,129],[630,128],[628,117],[633,112],[642,117],[644,116],[652,120],[657,117],[659,107],[657,104],[657,104],[652,95],[641,94],[640,95],[647,107],[647,107],[633,105],[632,98],[630,96],[625,95],[622,96],[611,89],[604,93],[612,105],[609,109],[598,106],[593,109],[590,109],[586,99],[574,100],[573,106]],"type":"glacier"},{"i":5,"points":[[837,108],[831,103],[832,101],[840,94],[846,93],[847,94],[848,104],[848,104],[837,108]],"type":"glacier"},{"i":6,"points":[[551,116],[545,119],[540,117],[547,99],[551,102],[556,109],[551,116]],"type":"glacier"},{"i":7,"points":[[529,119],[512,120],[512,120],[513,121],[521,128],[529,119]],"type":"glacier"},{"i":8,"points":[[849,139],[845,134],[851,126],[861,132],[862,131],[868,132],[874,130],[880,137],[884,133],[894,130],[894,131],[898,142],[905,142],[911,151],[917,152],[919,154],[919,161],[923,165],[927,166],[930,172],[940,163],[945,168],[950,169],[951,171],[957,175],[962,176],[963,178],[960,187],[971,194],[969,198],[963,201],[960,212],[967,215],[974,213],[979,217],[976,227],[976,227],[978,240],[978,240],[978,245],[981,248],[975,264],[977,266],[981,266],[988,262],[995,275],[989,280],[989,282],[987,283],[987,297],[993,299],[990,309],[994,314],[988,319],[987,320],[988,332],[990,332],[990,344],[988,346],[991,356],[1001,355],[998,370],[1002,373],[1003,380],[1002,381],[1001,394],[993,397],[993,398],[982,404],[984,413],[983,414],[978,419],[968,414],[963,420],[963,422],[970,432],[963,439],[969,445],[979,436],[981,443],[989,448],[988,451],[998,463],[997,464],[993,467],[981,464],[982,476],[979,479],[968,470],[967,468],[979,462],[980,458],[971,450],[971,449],[963,456],[960,455],[949,461],[949,462],[960,467],[951,477],[957,483],[958,483],[964,496],[964,497],[970,502],[978,501],[982,488],[987,488],[992,503],[991,504],[981,504],[981,512],[978,518],[969,513],[968,508],[958,511],[957,512],[948,511],[943,518],[943,519],[939,522],[935,523],[926,514],[923,516],[919,522],[915,524],[917,535],[921,537],[920,553],[909,548],[904,553],[906,566],[904,568],[901,567],[893,559],[885,562],[882,559],[868,563],[868,569],[864,574],[859,574],[854,587],[857,589],[858,599],[848,605],[848,606],[846,608],[847,619],[853,623],[841,634],[840,634],[827,643],[825,643],[824,630],[812,637],[812,637],[801,628],[801,625],[808,620],[792,611],[802,602],[797,596],[805,584],[803,583],[787,586],[790,573],[796,572],[798,564],[801,560],[801,553],[799,551],[801,543],[803,541],[797,526],[802,521],[800,515],[800,514],[794,502],[803,498],[804,494],[800,490],[790,496],[787,487],[787,481],[787,481],[787,470],[782,467],[784,456],[777,454],[775,451],[763,451],[762,442],[765,440],[768,426],[767,425],[769,416],[768,415],[755,414],[758,403],[752,396],[752,396],[750,395],[751,382],[742,380],[739,378],[742,367],[742,366],[743,360],[740,355],[731,356],[730,344],[727,342],[722,344],[715,339],[715,337],[704,334],[700,337],[697,337],[692,330],[681,336],[677,333],[673,333],[668,331],[656,336],[653,334],[654,322],[656,318],[666,320],[672,309],[677,309],[680,307],[681,298],[678,296],[669,292],[664,298],[654,297],[654,297],[650,299],[640,297],[643,287],[647,284],[644,274],[645,274],[658,272],[661,275],[667,276],[676,263],[677,262],[682,253],[687,252],[692,247],[689,239],[693,232],[692,226],[704,224],[704,214],[715,213],[717,210],[726,214],[727,214],[732,203],[730,198],[731,193],[724,187],[726,175],[714,174],[712,173],[714,161],[716,160],[725,168],[727,173],[737,167],[742,169],[748,168],[749,167],[762,170],[762,165],[775,165],[774,174],[785,176],[790,173],[797,184],[805,168],[807,168],[808,169],[825,172],[828,168],[829,168],[840,157],[837,152],[836,147],[845,145],[849,139]],"type":"glacier"},{"i":9,"points":[[955,142],[966,146],[972,142],[967,132],[965,131],[962,131],[958,134],[955,142]],"type":"glacier"},{"i":10,"points":[[586,186],[576,187],[573,191],[580,203],[577,206],[565,206],[562,201],[550,201],[549,201],[553,214],[550,218],[553,228],[563,227],[563,227],[575,226],[580,222],[581,221],[584,222],[591,213],[593,214],[607,214],[605,206],[611,200],[619,202],[620,189],[632,194],[634,192],[629,181],[622,178],[620,179],[612,176],[608,171],[607,171],[598,176],[597,179],[588,182],[586,186]],"type":"glacier"},{"i":11,"points":[[451,229],[448,228],[439,220],[439,219],[445,213],[448,214],[458,210],[460,211],[464,221],[463,223],[467,228],[471,229],[475,235],[473,240],[463,240],[462,239],[453,237],[451,229]],"type":"glacier"},{"i":12,"points":[[563,263],[566,264],[569,275],[561,279],[564,287],[548,290],[548,290],[536,304],[534,301],[534,288],[540,286],[538,274],[536,273],[534,265],[540,261],[548,260],[549,254],[552,248],[559,247],[563,251],[563,263]],"type":"glacier"},{"i":13,"points":[[534,371],[536,368],[536,356],[532,353],[522,356],[533,371],[526,372],[517,383],[525,392],[526,392],[533,371],[534,371]],"type":"glacier"},{"i":14,"points":[[52,514],[51,515],[36,513],[37,530],[37,531],[29,527],[25,523],[13,525],[13,525],[10,517],[14,510],[23,510],[27,513],[35,512],[38,501],[51,502],[52,514]],"type":"glacier"},{"i":15,"points":[[670,544],[667,551],[655,551],[653,547],[656,538],[668,539],[670,544]],"type":"glacier"},{"i":16,"points":[[147,581],[149,587],[156,588],[159,583],[166,584],[169,587],[171,593],[172,594],[175,594],[179,598],[183,606],[185,606],[186,607],[186,619],[193,621],[196,631],[194,633],[183,635],[180,641],[177,644],[172,643],[166,631],[163,630],[162,630],[150,621],[143,625],[138,617],[138,617],[147,611],[139,605],[141,597],[141,596],[140,595],[130,601],[123,599],[120,589],[122,586],[129,584],[133,572],[134,571],[147,573],[147,581]],"type":"glacier"},{"i":17,"points":[[91,586],[92,593],[82,596],[81,595],[81,590],[89,584],[91,586]],"type":"glacier"},{"i":18,"points":[[103,585],[102,587],[102,594],[108,597],[120,589],[103,585]],"type":"glacier"},{"i":19,"points":[[10,621],[9,631],[0,631.75],[0,621.2142857142857],[9,618],[10,621]],"type":"glacier"},{"i":20,"points":[[46,633],[45,634],[32,632],[31,631],[36,621],[43,623],[50,618],[54,619],[57,633],[70,632],[71,631],[79,631],[82,633],[92,634],[95,644],[91,647],[85,645],[83,646],[80,658],[77,659],[70,648],[68,649],[65,661],[59,659],[60,648],[55,646],[57,633],[46,633]],"type":"glacier"},{"i":21,"points":[[131,641],[131,636],[120,629],[118,631],[116,638],[127,644],[131,641]],"type":"glacier"},{"i":22,"points":[[156,656],[154,652],[142,656],[140,659],[141,663],[144,667],[151,669],[151,681],[156,683],[156,693],[149,697],[151,705],[163,704],[166,708],[175,705],[176,703],[192,699],[193,703],[202,705],[207,702],[208,696],[202,694],[206,679],[205,679],[193,682],[188,669],[181,668],[179,670],[179,679],[192,684],[190,690],[176,690],[174,685],[165,679],[167,672],[165,669],[152,669],[156,656]],"type":"glacier"},{"i":23,"points":[[229,747],[229,749],[232,752],[241,752],[242,752],[243,765],[248,770],[249,770],[252,777],[248,786],[262,790],[264,792],[270,790],[282,798],[282,799],[292,810],[285,815],[276,805],[275,805],[269,812],[276,822],[275,823],[261,828],[259,836],[260,836],[266,849],[266,849],[306.6666666666667,849],[308,848],[310,849],[332,849],[332,849],[332,849],[353,849],[353,845],[360,839],[359,833],[349,835],[348,840],[337,839],[337,830],[334,826],[322,827],[322,827],[313,824],[311,819],[311,818],[301,806],[298,807],[287,795],[285,795],[284,787],[288,780],[285,775],[273,777],[270,774],[279,765],[275,756],[275,750],[272,751],[258,745],[249,749],[249,749],[247,741],[249,732],[247,730],[239,728],[235,730],[227,727],[227,728],[223,737],[229,747]],"type":"glacier"},{"i":24,"points":[[196,765],[193,769],[181,763],[184,753],[186,752],[192,754],[204,747],[206,753],[207,761],[217,763],[218,771],[214,776],[209,775],[203,764],[196,765]],"type":"glacier"},{"i":25,"points":[[1265,809],[1265,809],[1279,808],[1282,814],[1286,815],[1290,809],[1300,812],[1298,803],[1292,800],[1291,801],[1281,801],[1279,798],[1269,797],[1265,799],[1265,809]],"type":"glacier"},{"i":26,"points":[[1242,802],[1244,803],[1251,819],[1251,819],[1242,819],[1234,813],[1242,802]],"type":"glacier"},{"i":27,"points":[[247,827],[247,834],[253,836],[248.66666666666666,849],[215.8,849],[214,848],[216,841],[228,837],[230,838],[237,840],[241,835],[233,825],[237,817],[247,827]],"type":"glacier"},{"i":28,"points":[[1231,825],[1239,825],[1242,837],[1242,837],[1229,830],[1231,825]],"type":"glacier"},{"i":29,"points":[[1517,836],[1519.888888888889,849],[1533,849],[1533,849],[1528,835],[1517,836]],"type":"glacier"}]
\ No newline at end of file