about summary refs log tree commit diff stats
path: root/Archipelago/mypainting.gd
blob: 5e9c7038d32658eec33a5eb8770554e88e9684d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
extends Spatial

var orientation = ""  # north, south, east, west
var move = false
var move_to_x
var move_to_z
var target = null
var key


func _ready():
	var _connected = get_tree().get_root().get_node("Spatial/player").connect(
		"looked_at", self, "_looked_at"
	)
	if move:
		key.get_node("Viewport/GUI/Panel/TextEdit").connect(
			"answer_correct", self, "_answer_correct"
		)


func _answer_correct():
	var apclient = global.get_node("Archipelago")
	if not apclient._door_shuffle or apclient.paintingIsVanilla(self.get_parent().name):
		movePainting()


func movePainting():
	self.get_parent().translation.x = move_to_x
	self.get_parent().translation.z = move_to_z


func _looked_at(body, painting):
	if (
		target != null
		and body.is_in_group("player")
		and (painting.get_name() == self.get_parent().get_name())
	):
		var target_dir = _dir_to_int(target.orientation)
		var source_dir = _dir_to_int(orientation)
		var rotate = target_dir - source_dir
		if rotate < 0:
			rotate += 4
		rotate *= 90

		var target_painting = target.get_parent()

		# this is ACW
		if rotate == 0:
			body.translation.x = (
				target_painting.translation.x + (body.translation.x - painting.translation.x)
			)
			body.translation.y = (
				target_painting.translation.y + (body.translation.y - painting.translation.y)
			)
			body.translation.z = (
				target_painting.translation.z + (body.translation.z - painting.translation.z)
			)
		elif rotate == 180:
			body.translation.x = (
				target_painting.translation.x - (body.translation.x - painting.translation.x)
			)
			body.translation.y = (
				target_painting.translation.y + (body.translation.y - painting.translation.y)
			)
			body.translation.z = (
				target_painting.translation.z - (body.translation.z - painting.translation.z)
			)
			body.rotate_y(PI)
			body.velocity = body.velocity.rotated(Vector3(0, 1, 0), PI)
		elif rotate == 90:
			var diff_x = body.translation.x - painting.translation.x
			var diff_y = body.translation.y - painting.translation.y
			var diff_z = body.translation.z - painting.translation.z
			body.translation.x = target_painting.translation.x + diff_z
			body.translation.y = target_painting.translation.y + diff_y
			body.translation.z = target_painting.translation.z - diff_x
			body.rotate_y(PI / 2)
			body.velocity = body.velocity.rotated(Vector3(0, 1, 0), PI / 2)
		elif rotate == 270:
			var diff_x = body.translation.x - painting.translation.x
			var diff_y = body.translation.y - painting.translation.y
			var diff_z = body.translation.z - painting.translation.z
			body.translation.x = target_painting.translation.x - diff_z
			body.translation.y = target_painting.translation.y + diff_y
			body.translation.z = target_painting.translation.z + diff_x
			body.rotate_y(3 * PI / 2)
			body.velocity = body.velocity.rotated(Vector3(0, 1, 0), 3 * PI / 2)


func _dir_to_int(dir):
	if dir == "north":
		return 0
	elif dir == "west":
		return 1
	elif dir == "south":
		return 2
	elif dir == "east":
		return 3
	return 4
> 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809
---
- id: Entry Room/Panel_hi_hi
  color: white
  tag: midwhite
- id: Entry Room/Panel_type_type
  color: white
  tag: midwhite
- id: Entry Room/Panel_this_this
  color: white
  tag: midwhite
- id: Entry Room/Panel_write_write
  color: white
  tag: midwhite
- id: Entry Room/Panel_same_same
  color: white
  tag: midwhite
- id: Entry Room/Panel_hidden_hidden
  color: white
  tag: midwhite
- id: Entry Room/Panel_hi_high
  color: white
  tag: topwhite
- id: Entry Room/Panel_low_low
  color: white
  tag: forbid # This is a midwhite pretending to be a botwhite
- id: Entry Room/Panel_forward_forward
  color: white
  tag: midwhite
- id: Entry Room/Panel_between_between
  color: white
  tag: midwhite
- id: Entry Room/Panel_backward_backward
  color: white
  tag: midwhite
- id: Entry Room/Panel_return_return
  color: white
  tag: midwhite
- id: Entry Room/Panel_secret_secret
  color: white
  tag: midwhite
- id: Entry Room/Panel_size_small
  color: gray
  tag: forbid
- id: Entry Room/Panel_size_big
  color: gray
  tag: forbid
- id: Entry Room/Panel_summer_summer
  color: white
  tag: midwhite
- id: Entry Room/Panel_autumn_autumn
  color: white
  tag: midwhite
- id: Entry Room/Panel_spring_spring
  color: white
  tag: midwhite
- id: Entry Room/Panel_advance
  color: white
  tag: topwhite
- id: Synonym Room/Panel_open_open
  color: white
  tag: midwhite
- id: Synonym Room/Panel_close_near
  color: white
  tag: botwhite
- id: Synonym Room/Panel_compose_write
  color: white
  tag: double botwhite
  subtag: left
  link: syn WRITE
- id: Synonym Room/Panel_record_write
  color: white
  tag: double botwhite
  subtag: right
  link: syn WRITE
- id: Synonym Room/Panel_category_type
  color: white
  tag: botwhite
- id: Synonym Room/Panel_hello_hi
  color: white
  tag: botwhite
- id: Synonym Room/Panel_duplicate_same
  color: white
  tag: double botwhite
  subtag: left
  link: syn SAME
- id: Synonym Room/Panel_identical_same
  color: white
  tag: double botwhite
  subtag: right
  link: syn SAME
- id: Synonym Room/Panel_distant_far
  color: white
  tag: botwhite
- id: Synonym Room/Panel_hay_straw
  color: white
  tag: botwhite
- id: Synonym Room/Panel_giggle_laugh
  color: white
  tag: double botwhite
  subtag: left
  link: syn LAUGH
- id: Synonym Room/Panel_chuckle_laugh
  color: white
  tag: double botwhite
  subtag: right
  link: syn LAUGH
- id: Synonym Room/Panel_snitch_rat
  color: white
  tag: botwhite
- id: Synonym Room/Panel_concealed_hidden
  color: white
  tag: botwhite
- id: Synonym Room/Panel_plunge_fall
  color: white
  tag: double botwhite
  subtag: left
  link: syn FALL
- id: Synonym Room/Panel_autumn_fall
  color: white
  tag: double botwhite
  subtag: right
  link: syn FALL
- id: Synonym Room/Panel_growths_warts
  color: white
  tag: botwhite
- id: Antonym Room/Panel_close_open
  color: black
  tag: botblack
- id: Antonym Room/Panel_retool_looter
  color: black
  tag: midblack
- id: Antonym Room/Panel_drawer_reward
  color: black
  tag: midblack
- id: Antonym Room/Panel_read_write
  color: black
  tag: botblack
- id: Antonym Room/Panel_different_same
  color: black
  tag: botblack
- id: Antonym Room/Panel_bye_hi
  color: black
  tag: botblack
- id: Antonym Room/Panel_low_high
  color: black
  tag: botblack
- id: Antonym Room/Panel_alive_dead
  color: black
  tag: botblack
- id: Antonym Room/Panel_that_this
  color: black
  tag: botblack
- id: Antonym Room/Panel_stressed_desserts
  color: black
  tag: midblack
- id: Antonym Room/Panel_star_rats
  color: black
  tag: midblack
- id: Antonym Room/Panel_tame_mate
  color: black
  tag: topblack
- id: Antonym Room/Panel_cat_tack
  color: black
  tag: topblack
- id: Heteronym Room/Panel_entrance_entrance
  color: white
  tag: midwhite
- id: Heteronym Room/Panel_bear_bear
  color: white
  tag: midwhite
- id: Heteronym Room/Panel_mine_mine
  color: white
  tag: double midwhite
  subtag: left
  link: exact MINE
- id: Heteronym Room/Panel_mine_mine_2
  color: white
  tag: double midwhite
  subtag: right
  link: exact MINE
- id: Heteronym Room/Panel_bow_bow
  color: white
  tag: midwhite
- id: Heteronym Room/Panel_does_does
  color: white
  tag: midwhite
- id: Heteronym Room/Panel_mobile_mobile
  color: white
  tag: double midwhite
  subtag: left
  link: exact MOBILE
- id: Heteronym Room/Panel_mobile_mobile_2
  color: white
  tag: double midwhite
  subtag: right
  link: exact MOBILE
- id: Heteronym Room/Panel_desert_desert
  color: white
  tag: topmid white stack
  subtag: mid
  link: topmid DESERT
- id: Heteronym Room/Panel_desert_dessert
  color: white
  tag: topmid white stack
  subtag: top
  link: topmid DESERT
- id: Heteronym Room/Panel_sow_sow
  color: white
  tag: topmid white stack
  subtag: mid
  link: topmid SOW
- id: Heteronym Room/Panel_sow_so
  color: white
  tag: topmid white stack
  subtag: top
  link: topmid SOW
- id: Heteronym Room/Panel_two_to
  color: white
  tag: double topwhite
  subtag: left
  link: hp TWO
- id: Heteronym Room/Panel_two_too
  color: white
  tag: double topwhite
  subtag: right
  link: hp TWO
- id: Heteronym Room/Panel_write_right
  color: white
  tag: topwhite
- id: Heteronym Room/Panel_you_ewe
  color: white
  tag: topwhite
- id: Heteronym Room/Panel_not_knot
  color: white
  tag: double topwhite
  subtag: left
  link: hp NOT
- id: Heteronym Room/Panel_not_naught
  color: white
  tag: double topwhite
  subtag: right
  link: hp NOT
- id: Heteronym Room/Panel_bear_bare
  color: white
  tag: topwhite
- id: Symmetry Room/Panel_leaf_feel
  color: black
  tag: topblack
- id: Symmetry Room/Panel_feel_leaf
  color: black
  tag: topblack
- id: Symmetry Room/Panel_warts_straw
  color: black
  tag: midblack
- id: Symmetry Room/Panel_straw_warts
  color: black
  tag: midblack
- id: Symmetry Room/Panel_near_far
  color: black
  tag: botblack
- id: Symmetry Room/Panel_far_near
  color: black
  tag: botblack
- id: Symmetry Room/Panel_left_wrong
  color: black
  tag: bot black black
- id: Symmetry Room/Panel_black_white
  color: black
  tag: botblack
- id: Symmetry Room/Panel_left_right
  color: black
  tag: botblack
- id: Symmetry Room/Panel_right_left
  color: black
  tag: botblack
- id: Palindrome Room/Panel_slaughter_laughter
  color: red
  tag: midred
- id: Palindrome Room/Panel_dread_dead
  color: red
  tag: midred
- id: Palindrome Room/Panel_massacred_sacred
  color: red
  tag: midred
- id: Palindrome Room/Panel_decay_day
  color: red
  tag: midred
- id: Palindrome Room/Panel_solos_solos
  color: black
  tag: palindrome
  copy_to_sign:
    - sign5
    - sign6
- id: Palindrome Room/Panel_solos_solos_2
  color: white
  tag: midwhite
  copy_to_sign:
    - sign1
    - sign2
- id: Palindrome Room/Panel_racecar_racecar
  color: black
  tag: palindrome
  copy_to_sign: sign4
- id: Palindrome Room/Panel_racecar_racecar_2
  color: white
  tag: midwhite
  copy_to_sign: sign3
- id: Palindrome Room/Panel_level_level
  color: black
  tag: midblack
- id: Palindrome Room/Panel_level_level_2
  color: white
  tag: midwhite
- id: Truncate Room/Panel_unopened_open
  color: red
  tag: midred
- id: Truncate Room/Panel_foot_toe
  color: red
  tag: botred
- id: Truncate Room/Panel_needle_eye
  color: red
  tag: double botred
  subtag: left
  link: mero EYE
- id: Truncate Room/Panel_face_eye
  color: red
  tag: double botred
  subtag: right
  link: mero EYE
- id: Truncate Room/Panel_sign_sigh
  color: red
  tag: topred
- id: Truncate Room/Panel_heartbreak_brake
  color: red
  tag: topred
- id: Truncate Room/Panel_undead_dead
  color: red
  tag: double midred
  subtag: left
  link: trunc DEAD
- id: Truncate Room/Panel_deadline_dead
  color: red
  tag: double midred
  subtag: right
  link: trunc DEAD
- id: Truncate Room/Panel_sushi_hi
  color: red
  tag: midred
- id: Truncate Room/Panel_thistle_this
  color: red
  tag: midred
- id: Truncate Room/Panel_landmass_mass
  color: red
  tag: double midred
  subtag: left
  link: trunc MASS
- id: Truncate Room/Panel_massacred_mass
  color: red
  tag: double midred
  subtag: right
  link: trunc MASS
- id: Truncate Room/Panel_airplane_plain
  color: red
  tag: topred
- id: Truncate Room/Panel_nightmare_knight
  color: red
  tag: topred
- id: Truncate Room/Panel_mouth_teeth
  color: red
  tag: double botred
  subtag: left
  link: mero TEETH
- id: Truncate Room/Panel_saw_teeth
  color: red
  tag: double botred
  subtag: right
  link: mero TEETH
- id: Truncate Room/Panel_hand_finger
  color: red
  tag: botred
- id: Rock Room/Panel_begin_begin
  color: white
  tag: midwhite
- id: Rock Room/Panel_red_red
  color: white
  tag: midwhite
- id: Rock Room/Panel_soar_rose
  color: black
  tag: topblack
- id: Rock Room/Panel_incarnation_carnation
  color: red
  tag: midred
- id: Rock Room/Panel_sun_sunflower
  color: blue
  tag: midblue
- id: Rock Room/Panel_bury_ruby
  color: yellow
  tag: midyellow
- id: Rock Room/Panel_lump_plum
  color: yellow
  tag: midyellow
- id: Rock Room/Panel_limelight_lime
  color: red
  tag: midred
- id: Rock Room/Panel_melon_lemon
  color: yellow
  tag: midyellow
- id: Rock Room/Panel_top_topaz
  color: blue
  tag: midblue
- id: Rock Room/Panel_blue_orange
  color: black
  tag: botblack
- id: Rock Room/Panel_sap_sapphire
  color: blue
  tag: midblue
- id: Rock Room/Panel_blue_blueberry
  color: blue
  tag: midblue
- id: Rock Room/Panel_antechamber_amber
  color: red
  tag: midred
- id: Rock Room/Panel_herald_emerald
  color: purple
  tag: midpurp
- id: Rock Room/Panel_thistle_amethyst
  color: purple
  tag: toppurp
- id: Rock Room/Panel_lielack_lilac
  color: white
  tag: topwhite
- id: Rock Room/Panel_hairy_cherry
  color: blue
  tag: topblue
- id: Blue Room/Panel_pen_open
  color: blue
  tag: midblue
- id: Blue Room/Panel_bone_skeleton
  color: blue
  tag: botblue
- id: Blue Room/Panel_mouth_face
  color: blue
  tag: double botblue
  subtag: left
  link: holo FACE
- id: Blue Room/Panel_eye_face
  color: blue
  tag: double botblue
  subtag: right
  link: holo FACE
- id: Blue Room/Panel_toucan_bird
  color: blue
  tag: botblue
- id: Blue Room/Panel_two_toucan
  color: blue
  tag: topblue
- id: Blue Room/Panel_ice_eyesight
  color: blue
  tag: double topblue
  subtag: left
  link: hex EYESIGHT
- id: Blue Room/Panel_height_eyesight
  color: blue
  tag: double topblue
  subtag: right
  link: hex EYESIGHT
- id: Blue Room/Panel_eye_hi
  color: blue
  tag: topblue
- id: Blue Room/Panel_not_notice
  color: blue
  tag: midblue
- id: Blue Room/Panel_just_readjust
  color: blue
  tag: double midblue
  subtag: left
  link: exp READJUST
- id: Blue Room/Panel_read_readjust
  color: blue
  tag: double midblue
  subtag: right
  link: exp READJUST
- id: Blue Room/Panel_ate_primate
  color: blue
  tag: midblue
- id: Blue Room/Panel_primate_mammal
  color: blue
  tag: botblue
- id: Blue Room/Panel_continent_planet
  color: blue
  tag: double botblue
  subtag: left
  link: holo PLANET
- id: Blue Room/Panel_ocean_planet
  color: blue
  tag: double botblue
  subtag: right
  link: holo PLANET
- id: Blue Room/Panel_wall_room
  color: blue
  tag: botblue
- id: Sun Room/Panel_nope_open
  color: yellow
  tag: midyellow
- id: Sun Room/Panel_hits_this
  color: yellow
  tag: midyellow
- id: Sun Room/Panel_warred_drawer
  color: yellow
  tag: double midyellow
  subtag: left
  link: ana DRAWER
- id: Sun Room/Panel_redraw_drawer
  color: yellow
  tag: double midyellow
  subtag: right
  link: ana DRAWER
- id: Sun Room/Panel_adder_dread
  color: yellow
  tag: midyellow
- id: Sun Room/Panel_laughters_slaughter
  color: yellow
  tag: midyellow
- id: Sun Room/Panel_stone_notes
  color: yellow
  tag: double midyellow
  subtag: left
  link: ana NOTES
- id: Sun Room/Panel_onset_notes
  color: yellow
  tag: double midyellow
  subtag: right
  link: ana NOTES
- id: Sun Room/Panel_rat_art
  color: yellow
  tag: midyellow
- id: Sun Room/Panel_dusty_study
  color: yellow
  tag: midyellow
- id: Sun Room/Panel_arts_star
  color: yellow
  tag: double midyellow
  subtag: left
  link: ana STAR
- id: Sun Room/Panel_tsar_star
  color: yellow
  tag: double midyellow
  subtag: right
  link: ana STAR
- id: Sun Room/Panel_state_taste
  color: yellow
  tag: midyellow
- id: Sun Room/Panel_react_trace
  color: yellow
  tag: midyellow
- id: Sun Room/Panel_dear_read
  color: yellow
  tag: double midyellow
  subtag: left
  link: ana READ
- id: Sun Room/Panel_dare_read
  color: yellow
  tag: double midyellow
  subtag: right
  link: ana READ
- id: Sun Room/Panel_seam_same
  color: yellow
  tag: midyellow
- id: Shuffle Room/Panel_sword_words
  color: yellow
  tag: midyellow
- id: Shuffle Room/Panel_words_sword
  color: yellow
  tag: midyellow
- id: Shuffle Room/Panel_turn_runt
  color: yellow
  tag: midyellow
- id: Shuffle Room/Panel_turn_runt2
  color: yellow
  tag: midyellow
- id: Shuffle Room/Panel_runt3
  color:
    - yellow
    - blue
  tag: mid yellow blue
- id: Shuffle Room/Panel_corner
  color: yellow
  tag: topyellow
- id: Shuffle Room/Panel_order_chaos
  color: black
  tag: botblack
- id: Shuffle Room/Panel_swap_wasp
  color: yellow
  tag: midyellow
- id: Shuffle Room/Panel_lost_lots
  color: yellow
  tag: midyellow
- id: Shuffle Room/Panel_lost_slot
  color: yellow
  tag: midyellow
- id: Shuffle Room/Panel_gel
  color: yellow
  tag: topyellow
- id: Shuffle Room/Panel_though
  color: yellow
  tag: topyellow
- id: Shuffle Room/Panel_eyes_see_shuffle
  color: yellow
  tag: midyellow
- id: Shuffle Room/Panel_theeyes_theeyes
  color: white
  tag: midwhite
- id: Shuffle Room/Panel_amen_mean
  color: yellow
  tag: double midyellow
  subtag: left
  link: ana MEAN
- id: Shuffle Room/Panel_behind
  color: yellow
  tag: midyellow
- id: Shuffle Room/Panel_name_mean
  color: yellow
  tag: double midyellow
  subtag: right
  link: ana MEAN
- id: Shuffle Room/Panel_crossroads_crossroads
  color: white
  tag: midwhite
- id: Shuffle Room/Panel_corner_corner
  color: white
  tag: midwhite
- id: Shuffle Room/Panel_hollow_hollow
  color: white
  tag: midwhite
- id: Shuffle Room/Panel_far_far
  color: white
  tag: midwhite
- id: Shuffle Room/Panel_near_near
  color: white
  tag: midwhite
- id: Shuffle Room/Panel_lost_found
  color: black
  tag: botblack
- id: Shuffle Room/Panel_secret_secret
  color: white
  tag: forbid # This one is... weird because it's actually on the bottom
- id: Shuffle Room/Panel_clockwise_counterclockwise
  color: black
  tag: botblack
- id: Shuffle Room/Panel_past_present
  color: brown
  tag: botbrown
- id: Shuffle Room/Panel_future_present
  color:
    - brown
    - black
  tag: bot brown black
- id: Shuffle Room/Panel_future_past
  color: black
  tag: botblack
- id: Shuffle Room/Panel_past_future
  color: black
  tag: botblack
- id: Shuffle Room/Panel_past_past
  color:
    - brown
    - black
  tag: bot brown black
- id: Shuffle Room/Panel_pinecone_pine
  color: brown
  tag: botbrown
- id: Shuffle Room/Panel_acorn_oak
  color: brown
  tag: botbrown
- id: Shuffle Room/Panel_left_left
  color: white
  tag: midwhite
- id: Shuffle Room/Panel_right_right
  color: white
  tag: midwhite
- id: Shuffle Room/Panel_middle_middle
  color: white
  tag: midwhite
- id: Shuffle Room/Panel_left_left_2
  color: white
  tag: midwhite
- id: Shuffle Room/Panel_right_right_2
  color: white
  tag: midwhite
- id: Shuffle Room/Panel_middle_middle_2
  color: white
  tag: midwhite
- id: Shuffle Room/Panel_shortcuts
  color: yellow
  tag: midyellow
- id: Shuffle Room/Panel_tower
  color: yellow
  tag: midyellow
- id: Maze Room/Panel_trace_trace
  color: white
  tag: midwhite
- id: Maze Room/Panel_path_lock
  color: green
  tag: forbid
- id: Maze Room/Panel_path_knot
  color: green
  tag: forbid
- id: Maze Room/Panel_path_lost
  color: green
  tag: forbid
- id: Maze Room/Panel_look_look
  color: white
  tag: botwhite
- id: Maze Room/Panel_path_open
  color: green
  tag: forbid
- id: Maze Room/Panel_path_help
  color: green
  tag: forbid
- id: Maze Room/Panel_path_hunt
  color: green
  tag: forbid
- id: Maze Room/Panel_path_nest
  color: green
  tag: forbid
- id: Maze Room/Panel_path_look
  color: green
  tag: forbid
- id: Maze Room/Panel_down_up
  color: black
  tag: botblack
- id: Maze Room/Panel_strays_maze
  color: purple
  tag: toppurp
- id: Maze Room/Panel_daze_maze
  color: purple
  tag: midpurp
- id: Maze Room/Panel_reflow_flower
  color: yellow
  tag: midyellow
- id: Maze Room/Panel_leap_jump
  color: white
  tag: botwhite
- id: Maze Room/Panel_hide_seek
  color: black
  tag: botblack
- id: Maze Room/Panel_hide_seek_2
  color: black
  tag: botblack
- id: Maze Room/Panel_hide_seek_3
  color: black
  tag: botblack
- id: Maze Room/Panel_hide_seek_4
  color: black
  tag: botblack
- id: Look Room/Panel_four_back
  color: green
  tag: forbid
- id: Look Room/Panel_four_side
  color: green
  tag: forbid
- id: Look Room/Panel_four_ways
  color: green
  tag: forbid
- id: Look Room/Panel_two_on
  color: green
  tag: forbid
- id: Look Room/Panel_two_up
  color: green
  tag: forbid
- id: Look Room/Panel_six_stairs
  color: green
  tag: forbid
- id: Look Room/Panel_five_swims
  color: green
  tag: forbid
- id: Look Room/Panel_eight_upstairs
  color: green
  tag: forbid
- id: Look Room/Panel_blue_toil
  color: green
  tag: forbid
- id: Look Room/Panel_four_stop
  color: green
  tag: forbid
- id: Look Room/Panel_aqua_top
  color: green
  tag: forbid
- id: Look Room/Panel_blue_hi
  color: green
  tag: forbid
- id: Look Room/Panel_blue_hi2
  color: green
  tag: forbid
- id: Look Room/Panel_numbers_31
  color: green
  tag: forbid
- id: Look Room/Panel_numbers_52
  color: green
  tag: forbid
- id: Look Room/Panel_aqua_oil
  color: green
  tag: forbid
- id: Look Room/Panel_eight_backside
  color: green
  tag: forbid
- id: Look Room/Panel_eight_sideways
  color: green
  tag: forbid
- id: Appendix Room/Panel_rat_tar
  color: black
  tag: midblack
- id: Appendix Room/Panel_discover_recover
  color: purple
  tag: midpurp
- id: Appendix Room/Panel_deadend_deadened
  color: white
  tag: topwhite
- id: Appendix Room/Panel_deadend_deadend
  color: white
  tag: midwhite
- id: Appendix Room/Panel_warner_corner
  color: purple
  tag: toppurp
- id: Appendix Room/Panel_lies_lies
  color: white
  tag: midwhite
- id: Appendix Room/Panel_night_knight
  color: blue
  tag: homophone midblue
  copy_to_sign: sign7
- id: Appendix Room/Panel_knight_night
  color: red
  tag: homophone midred
  copy_to_sign: sign8
- id: Appendix Room/Panel_bee_be
  color: red
  tag: homophone midred
  copy_to_sign: sign9
- id: Appendix Room/Panel_new_knew
  color: blue
  tag: homophone midblue
  copy_to_sign: sign11
- id: Appendix Room/Panel_fore_for
  color: red
  tag: homophone midred
  copy_to_sign: sign10
- id: Appendix Room/Panel_trusted_trust
  color: red
  tag: midred
- id: Appendix Room/Panel_trusted_rusted
  color: red
  tag: midred
- id: Appendix Room/Panel_encrusted_rust
  color: red
  tag: midred
- id: Appendix Room/Panel_rust_trust
  color: blue
  tag: midblue
- id: Appendix Room/Panel_rust_crust
  color: blue
  tag: midblue
- id: Appendix Room/Panel_adjust_readjust
  color: blue
  tag: midblue and phone
- id: Appendix Room/Panel_adjust_adjusted
  color: blue
  tag: midblue and phone
- id: Appendix Room/Panel_adjust_readjusted
  color: blue
  tag: midblue
- id: Appendix Room/Panel_before_fore
  color: red
  tag: midred and phone
- id: Appendix Room/Panel_be_before
  color: blue
  tag: midblue and phone
- id: Appendix Room/Panel_left_left
  color: white
  tag: midwhite
- id: Appendix Room/Panel_right_right
  color: white
  tag: midwhite
- id: Appendix Room/Panel_trust_crust
  color:
    - red
    - blue
  tag: mid red blue
- id: Appendix Room/Panel_trust_crust_2
  color: purple
  tag: midpurp
- id: Appendix Room/Panel_trusted_readjusted
  color: purple
  tag: midpurp
- id: Rhyme Room/Panel_locked_knocked
  color: purple
  tag: midpurp
- id: Rhyme Room/Panel_daughter_laughter
  color: purple
  tag: midpurp
- id: Rhyme Room/Panel_move_love
  color: purple
  tag: double midpurp
  subtag: left
  link: change STARS
- id: Rhyme Room/Panel_stove_love
  color: purple
  tag: double midpurp
  subtag: right
  link: change STARS
- id: Rhyme Room/Panel_scope_type
  color: purple
  tag: midpurp and rhyme
  copy_to_sign: sign16
- id: Rhyme Room/Panel_abyss_this
  color: purple
  tag: toppurp
- id: Rhyme Room/Panel_sweat_great
  color: purple
  tag: double midpurp
  subtag: left
  link: change GREAT
- id: Rhyme Room/Panel_beat_great
  color: purple
  tag: double midpurp
  subtag: right
  link: change GREAT
- id: Rhyme Room/Panel_alumni_hi
  color: purple
  tag: midpurp and rhyme
  copy_to_sign: sign14
- id: Rhyme Room/Panel_wrath_path
  color: purple
  tag: midpurp and rhyme
  copy_to_sign: sign15
- id: Rhyme Room/Panel_knight_write
  color: purple
  tag: double toppurp
  subtag: left
  link: change WRITE
- id: Rhyme Room/Panel_byte_write
  color: purple
  tag: double toppurp
  subtag: right
  link: change WRITE
- id: Rhyme Room/Panel_maim_same
  color: purple
  tag: toppurp
- id: Rhyme Room/Panel_chair_bear
  color: purple
  tag: purple rhyme change stack
  subtag: top
  link: prcs CYBORG
- id: Rhyme Room/Panel_bare_bear
  color: purple
  tag: toppurp
- id: Rhyme Room/Panel_cost_most
  color: purple
  tag: purple rhyme change stack
  subtag: bot
  link: prcs CYBORG
- id: Rhyme Room/Panel_bed_dead
  color: purple
  tag: toppurp
# We will figure out what to do with these later.
- id: Cross Room/Panel_north_missing
  color: green
  tag: forbid
- id: Cross Room/Panel_diamonds_missing
  color: green
  tag: forbid
- id: Cross Room/Panel_fire_missing
  color: green
  tag: forbid
- id: Cross Room/Panel_winter_missing
  color: green
  tag: forbid
- id: Cross Room/Panel_shortcut_shortcut
  color: white
  tag: midwhite
- id: Cross Room/Panel_north_north
  color: blue
  tag: forbid
- id: Cross Room/Panel_mouth_south
  color: purple
  tag: midpurp
- id: Cross Room/Panel_yeast_east
  color: red
  tag: midred
- id: Cross Room/Panel_wet_west
  color: blue
  tag: midblue
- id: Cross Room/Panel_fire_fire
  color: blue
  tag: forbid
- id: Cross Room/Panel_earth_earth
  color: white
  tag: midwhite
- id: Cross Room/Panel_water_water
  color: white
  tag: midwhite
- id: Cross Room/Panel_air_air
  color: white
  tag: midwhite
- id: Cross Room/Panel_winter_winter
  color: blue
  tag: forbid
- id: Cross Room/Panel_diamonds_diamonds
  color: blue
  tag: forbid
- id: Cross Room/Panel_spades_spades
  color: white
  tag: midwhite
- id: Cross Room/Panel_clubs_clubs
  color: white
  tag: midwhite
- id: Cross Room/Panel_hearts_hearts
  color: white
  tag: midwhite
- id: Cross Room/Panel_part_rap
  color:
    - red
    - yellow
  tag: mid red yellow
- id: Cross Room/Panel_heart_tar
  color:
    - red
    - yellow
  tag: mid red yellow
- id: Cross Room/Panel_smile_lime
  color:
    - red
    - yellow
  tag: mid yellow red
- id: Cross Room/Panel_snow_won
  color:
    - red
    - yellow
  tag: mid red yellow
- id: Cross Room/Panel_warts_star
  color:
    - red
    - yellow
  tag: mid red yellow
- id: Cross Room/Panel_pots_top
  color:
    - red
    - yellow
  tag: mid yellow red
- id: Cross Room/Panel_silent_list
  color:
    - red
    - yellow
  tag: mid red yellow
- id: Cross Room/Panel_silent_list_2
  color:
    - red
    - yellow
  tag: mid yellow red
- id: Cross Room/Panel_tent_net
  color:
    - red
    - yellow
  tag: mid red yellow
- id: Cross Room/Panel_peace_ape
  color:
    - red
    - yellow
  tag: mid red yellow
- id: Cross Room/Panel_space_cape
  color:
    - red
    - yellow
  tag: mid red yellow
- id: Cross Room/Panel_bowl_low
  color:
    - red
    - yellow
  tag: mid red yellow
- id: Orange Room/Panel_lust
  color: orange
  tag: midorange
- id: Orange Room/Panel_read
  color: orange
  tag: midorange
- id: Orange Room/Panel_sew
  color: orange
  tag: midorange
- id: Orange Room/Panel_dead
  color: orange
  tag: midorange
- id: Orange Room/Panel_learn
  color: orange
  tag: midorange
- id: Orange Room/Panel_dust
  color: orange
  tag: midorange
- id: Orange Room/Panel_star
  color: orange
  tag: midorange
- id: Orange Room/Panel_wander
  color: orange
  tag: midorange
- id: Tower Room/Panel_1234567890_wanderlust
  color: orange
  tag: midorange
- id: Tower Room/Panel_wanderlust_1234567890
  color: orange
  tag: midorange
- id: Tower Room/Panel_dads_ale_dead_1
  color: orange
  tag: midorange
- id: Tower Room/Panel_art_art_eat_2
  color: orange
  tag: midorange
- id: Tower Room/Panel_deer_wren_rats_3
  color: orange
  tag: midorange
- id: Tower Room/Panel_learns_unsew_unrest_4
  color: orange
  tag: midorange
- id: Tower Room/Panel_drawl_runs_enter_5
  color: orange
  tag: midorange
- id: Tower Room/Panel_reads_rust_lawns_6
  color: orange
  tag: midorange
- id: Tower Room/Panel_waded_wee_warts_7
  color: orange
  tag: midorange
- id: Tower Room/Panel_834283054_undaunted
  color: orange
  tag: midorange
- id: Clock Room/Panel_kitten_cat
  color: brown
  tag: botbrown
- id: Clock Room/Panel_cat_kitten
  color:
    - brown
    - black
  tag: bot brown black
- id: Clock Room/Panel_puppy_dog
  color: brown
  tag: botbrown
- id: Clock Room/Panel_adult_child
  color:
    - brown
    - black
  tag: bot brown black
- id: Clock Room/Panel_bread_mold
  color: brown
  tag: botbrown
- id: Clock Room/Panel_dinosaur_fossil
  color: brown
  tag: botbrown
- id: Clock Room/Panel_oak_acorn
  color:
    - brown
    - black
  tag: bot brown black
- id: Clock Room/Panel_corpse_skeleton
  color: brown
  tag: botbrown
- id: Clock Room/Panel_before_ere
  color:
    - brown
    - black
  tag: mid brown black
- id: Clock Room/Panel_your_thy
  color:
    - brown
    - black
  tag: mid brown black
- id: Clock Room/Panel_betwixt_between
  color: brown
  tag: midbrown
- id: Clock Room/Panel_nigh_near
  color: brown
  tag: midbrown
- id: Clock Room/Panel_connexion_connection
  color: brown
  tag: midbrown
- id: Clock Room/Panel_thou_you
  color: brown
  tag: midbrown
- id: Painting Room/Panel_eon_one
  color: yellow
  tag: midyellow
- id: Painting Room/Panel_to_two
  color: red
  tag: midred
- id: Painting Room/Panel_free_three
  color: purple
  tag: midpurp
- id: Painting Room/Panel_our_four
  color: blue
  tag: midblue
- id: Painting Room/Panel_house_neighborhood
  color: blue
  tag: botblue
- id: Painting Room/Panel_path_road
  color: brown
  tag: botbrown
- id: Painting Room/Panel_park_drive
  color: black
  tag: botblack
- id: Painting Room/Panel_carriage_horse
  color: red
  tag: botred
- id: Painting Room/Panel_an_many
  color: blue
  tag: midblue
- id: Painting Room/Panel_may_many
  color: blue
  tag: midblue
- id: Painting Room/Panel_any_many
  color: blue
  tag: midblue
- id: Painting Room/Panel_man_many
  color: blue
  tag: midblue
- id: Painting Room/Panel_urns_turns
  color: blue
  tag: midblue
- id: Painting Room/Panel_learns_turns
  color: purple
  tag: midpurp
- id: Painting Room/Panel_runts_turns
  color: yellow
  tag: midyellow
- id: Painting Room/Panel_send_use_turns
  color: orange
  tag: midorange
- id: Painting Room/Panel_trust_06890
  color: orange
  tag: midorange
- id: Painting Room/Panel_06890_trust
  color: orange
  tag: midorange
- id: Painting Room/Panel_order_onepathmanyturns
  color: gray
  tag: forbid
- id: Double Room/Panel_ascend_rhyme
  color: purple
  tag: syn rhyme
  subtag: top
  link: rhyme ASCEND
- id: Double Room/Panel_ascend_syn
  color: white
  tag: syn rhyme
  subtag: bot
  link: rhyme ASCEND
- id: Double Room/Panel_double_rhyme
  color: purple
  tag: syn rhyme
  subtag: top
  link: rhyme DOUBLE
- id: Double Room/Panel_double_syn
  color: white
  tag: syn rhyme
  subtag: bot
  link: rhyme DOUBLE
- id: Double Room/Panel_blocked_rhyme
  color: purple
  tag: syn rhyme
  subtag: top
  link: rhyme BLOCKED
- id: Double Room/Panel_blocked_syn
  color: white
  tag: syn rhyme
  subtag: bot
  link: rhyme BLOCKED
- id: Double Room/Panel_rise_rhyme
  color: purple
  tag: syn rhyme
  subtag: top
  link: rhyme RISE
- id: Double Room/Panel_rise_syn
  color: white
  tag: syn rhyme
  subtag: bot
  link: rhyme RISE
- id: Double Room/Panel_crystal_rhyme
  color: purple
  tag: syn rhyme
  subtag: top
  link: rhyme CRYSTAL
- id: Double Room/Panel_crystal_syn
  color: white
  tag: syn rhyme
  subtag: bot
  link: rhyme CRYSTAL
- id: Double Room/Panel_creative_rhyme
  color: purple
  tag: syn rhyme
  subtag: top
  link: rhyme CREATIVE
- id: Double Room/Panel_creative_syn
  color: white
  tag: syn rhyme
  subtag: bot
  link: rhyme CREATIVE
- id: Double Room/Panel_child_rhyme
  color: purple
  tag: syn rhyme
  subtag: top
  link: rhyme CHILD
- id: Double Room/Panel_child_syn
  color: white
  tag: syn rhyme
  subtag: bot
  link: rhyme CHILD
- id: Double Room/Panel_hidden_rhyme
  color: purple
  tag: syn rhyme
  subtag: top
  link: rhyme HIDDEN
- id: Double Room/Panel_hidden_syn
  color: white
  tag: syn rhyme
  subtag: bot
  link: rhyme HIDDEN
- id: Double Room/Panel_word_rhyme
  color: purple
  tag: whole rhyme
  subtag: top
  link: rhyme WORD
- id: Double Room/Panel_word_whole
  color: blue
  tag: whole rhyme
  subtag: bot
  link: rhyme WORD
- id: Double Room/Panel_silent_rhyme
  color: purple
  tag: syn rhyme
  subtag: top
  link: rhyme SILENT
- id: Double Room/Panel_silent_syn
  color: white
  tag: syn rhyme
  subtag: bot
  link: rhyme SILENT
- id: Double Room/Panel_bones_rhyme
  color: purple
  tag: syn rhyme
  subtag: top
  link: rhyme BONES
- id: Double Room/Panel_bones_syn
  color: white
  tag: syn rhyme
  subtag: bot
  link: rhyme BONES
- id: Double Room/Panel_sentence_rhyme
  color: purple
  tag: whole rhyme
  subtag: top
  link: rhyme SENTENCE
- id: Double Room/Panel_sentence_whole
  color: blue
  tag: whole rhyme
  subtag: bot
  link: rhyme SENTENCE
- id: Double Room/Panel_dream_rhyme
  color: purple
  tag: syn rhyme
  subtag: top
  link: rhyme DREAM
- id: Double Room/Panel_dream_syn
  color: white
  tag: syn rhyme
  subtag: bot
  link: rhyme DREAM
- id: Double Room/Panel_mystery_rhyme
  color: purple
  tag: syn rhyme
  subtag: top
  link: rhyme MYSTERY
- id: Double Room/Panel_mystery_syn
  color: white
  tag: syn rhyme
  subtag: bot
  link: rhyme MYSTERY
- id: Double Room/Panel_jump_rhyme
  color: purple
  tag: syn rhyme
  subtag: top
  link: rhyme JUMP
- id: Double Room/Panel_jump_syn
  color: white
  tag: syn rhyme
  subtag: bot
  link: rhyme JUMP
- id: Double Room/Panel_fall_rhyme
  color: purple
  tag: syn rhyme
  subtag: top
  link: rhyme FALL
- id: Double Room/Panel_fall_syn
  color: white
  tag: syn rhyme
  subtag: bot
  link: rhyme FALL
- id: Double Room/Panel_return_rhyme
  color: purple
  tag: ant rhyme
  subtag: top
  link: rhyme RETURN
- id: Double Room/Panel_return_ant
  color: black
  tag: ant rhyme
  subtag: bot
  link: rhyme RETURN
- id: Double Room/Panel_descend_rhyme
  color: purple
  tag: ant rhyme
  subtag: top
  link: rhyme DESCEND
- id: Double Room/Panel_descend_ant
  color: black
  tag: ant rhyme
  subtag: bot
  link: rhyme DESCEND
- id: Double Room/Panel_leap_leap
  color: white
  tag: midwhite
- id: Backside Room/Panel_backside_1
  color: white
  tag: midwhite
- id: Backside Room/Panel_backside_2
  color: white
  tag: midwhite
- id: Backside Room/Panel_backside_3
  color: white
  tag: midwhite
- id: Backside Room/Panel_backside_4
  color: white
  tag: midwhite
- id: Backside Room/Panel_backside_5
  color: white
  tag: midwhite
- id: Backside Room/Panel_farther_far
  color: red
  tag: midred
- id: Backside Room/Panel_first_first
  color: white
  tag: midwhite
- id: Backside Room/Panel_second_second
  color: white
  tag: midwhite
- id: Backside Room/Panel_third_third
  color: white
  tag: midwhite
# This is a mandatory wall-snipe, so we will not shuffle it.
- id: Backside Room/Panel_fourth_fourth
  color: white
  tag: forbid
# This is a mandatory wall-snipe, so we will not shuffle it.
- id: Backside Room/Panel_zero_zero
  color: white
  tag: forbid
- id: Backside Room/Panel_one_one
  color: white
  tag: midwhite
- id: Backside Room/Panel_two_two
  color: white
  tag: midwhite
- id: Backside Room/Panel_two_two_2
  color: white
  tag: midwhite
- id: Backside Room/Panel_three_three
  color: white
  tag: midwhite
- id: Backside Room/Panel_three_three_2
  color: white
  tag: midwhite
- id: Backside Room/Panel_three_three_3
  color: white
  tag: midwhite
- id: Backside Room/Panel_four_four
  color: white
  tag: midwhite
- id: Backside Room/Panel_four_four_2
  color: white
  tag: midwhite
- id: Backside Room/Panel_four_four_3
  color: white
  tag: midwhite
- id: Backside Room/Panel_four_four_4
  color: white
  tag: midwhite
- id: Backside Room/Panel_five_five
  color: white
  tag: midwhite
- id: Backside Room/Panel_five_five_2
  color: white
  tag: midwhite
- id: Backside Room/Panel_five_five_3
  color: white
  tag: midwhite
- id: Backside Room/Panel_five_five_4
  color: white
  tag: midwhite
- id: Backside Room/Panel_five_five_5
  color: white
  tag: midwhite
- id: Backside Room/Panel_six_six
  color: white
  tag: midwhite
- id: Backside Room/Panel_six_six_2
  color: white
  tag: midwhite
- id: Backside Room/Panel_six_six_3
  color: white
  tag: midwhite
- id: Backside Room/Panel_six_six_4
  color: white
  tag: midwhite
- id: Backside Room/Panel_six_six_5
  color: white
  tag: midwhite
- id: Backside Room/Panel_six_six_6
  color: white
  tag: midwhite
- id: Backside Room/Panel_seven_seven
  color: white
  tag: midwhite
- id: Backside Room/Panel_seven_seven_2
  color: white
  tag: midwhite
- id: Backside Room/Panel_seven_seven_3
  color: white
  tag: midwhite
- id: Backside Room/Panel_seven_seven_4
  color: white
  tag: midwhite
- id: Backside Room/Panel_seven_seven_5
  color: white
  tag: midwhite
- id: Backside Room/Panel_seven_seven_6
  color: white
  tag: midwhite
- id: Backside Room/Panel_seven_seven_7
  color: white
  tag: midwhite
- id: Backside Room/Panel_eight_eight
  color: white
  tag: midwhite
- id: Backside Room/Panel_eight_eight_2
  color: white
  tag: midwhite
- id: Backside Room/Panel_eight_eight_3
  color: white
  tag: midwhite
- id: Backside Room/Panel_eight_eight_4
  color: white
  tag: midwhite
- id: Backside Room/Panel_eight_eight_5
  color: white
  tag: midwhite
- id: Backside Room/Panel_eight_eight_6
  color: white
  tag: midwhite
- id: Backside Room/Panel_eight_eight_7
  color: white
  tag: midwhite
- id: Backside Room/Panel_eight_eight_8
  color: white
  tag: midwhite
- id: Backside Room/Panel_nine_nine
  color: white
  tag: midwhite
- id: Backside Room/Panel_nine_nine_2
  color: white
  tag: midwhite
- id: Backside Room/Panel_nine_nine_3
  color: white
  tag: midwhite
- id: Backside Room/Panel_nine_nine_4
  color: white
  tag: midwhite
- id: Backside Room/Panel_nine_nine_5
  color: white
  tag: midwhite
- id: Backside Room/Panel_nine_nine_6
  color: white
  tag: midwhite
- id: Backside Room/Panel_nine_nine_7
  color: white
  tag: midwhite
- id: Backside Room/Panel_nine_nine_8
  color: white
  tag: midwhite
- id: Backside Room/Panel_nine_nine_9
  color: white
  tag: midwhite
- id: Backside Room/Panel_paranoid_paranoid
  color: white
  tag: midwhite
- id: Backside Room/Panel_salt_pepper
  color: black
  tag: botblack
- id: Backside Room/Panel_pepper_salt
  color: black
  tag: botblack
- id: Backside Room/Panel_ward_forward
  color: blue
  tag: midblue
- id: Backside Room/Panel_hind_behind
  color: blue
  tag: midblue
- id: Backside Room/Panel_rig_right
  color: blue
  tag: midblue
- id: Backside Room/Panel_windward_forward
  color: purple
  tag: midpurp
- id: Backside Room/Panel_light_right
  color: purple
  tag: midpurp
- id: Backside Room/Panel_rewind_behind
  color: purple
  tag: midpurp
- id: Backside Room/Panel_learn_return
  color: purple
  tag: midpurp
- id: Backside Room/Panel_turn_return
  color: blue
  tag: midblue
- id: Hallway Room/Panel_castle_1
  color: blue
  tag: quad bot blue
  link: qbb CASTLE
- id: Hallway Room/Panel_castle_2
  color: blue
  tag: quad bot blue
  link: qbb CASTLE
- id: Hallway Room/Panel_castle_3
  color: blue
  tag: quad bot blue
  link: qbb CASTLE
- id: Hallway Room/Panel_castle_4
  color: blue
  tag: quad bot blue
  link: qbb CASTLE
- id: Hallway Room/Panel_counterclockwise_1
  color: blue
  tag: quad mid blue
  link: qmb COUNTERCLOCKWISE
- id: Hallway Room/Panel_counterclockwise_2
  color: blue
  tag: quad mid blue
  link: qmb COUNTERCLOCKWISE
- id: Hallway Room/Panel_counterclockwise_3
  color: blue
  tag: quad mid blue
  link: qmb COUNTERCLOCKWISE
- id: Hallway Room/Panel_counterclockwise_4
  color: blue
  tag: quad mid blue
  link: qmb COUNTERCLOCKWISE
- id: Hallway Room/Panel_transformation_1
  color: blue
  tag: quad top blue
  link: qtb TRANSFORMATION
- id: Hallway Room/Panel_transformation_2
  color: blue
  tag: quad top blue
  link: qtb TRANSFORMATION
- id: Hallway Room/Panel_transformation_3
  color: blue
  tag: quad top blue
  link: qtb TRANSFORMATION
- id: Hallway Room/Panel_transformation_4
  color: blue
  tag: quad top blue
  link: qtb TRANSFORMATION
- id: Hallway Room/Panel_room_5
  color: blue
  tag: full stack blue
- id: Hallway Room/Panel_hollow_hollow
  color: white
  tag: midwhite
- id: Hallway Room/Panel_out_out
  color: white
  tag: midwhite
- id: Wonderland Room/Panel_shrink_shrink
  color: white
  tag: midwhite
- id: Wonderland Room/Panel_brooknod_doorknob
  color: yellow
  tag: midyellow
- id: Wonderland Room/Panel_case_bookcase
  color: blue
  tag: midblue
- id: Wonderland Room/Panel_candleheir_chandelier
  color: yellow
  tag: midyellow
- id: Wonderland Room/Panel_glass_window
  color: brown
  tag: botbrown
- id: Wonderland Room/Panel_wood_table
  color: brown
  tag: botbrown
- id: Wonderland Room/Panel_fireplace_fire
  color: red
  tag: mid bot red
- id: Panel Room/Panel_broomed_bedroom
  color: yellow
  tag: midyellow
- id: Panel Room/Panel_lays_maze
  color: purple
  tag: toppurp
- id: Panel Room/Panel_base_basement
  color: blue
  tag: midblue
- id: Panel Room/Panel_room_door_1
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_door_2
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_window_1
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_stairs_1
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_painting_1
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_floor_1
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_floor_2
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_floor_3
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_floor_4
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_floor_5
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_floor_7
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_floor_8
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_floor_9
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_floor_10
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_ceiling_1
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_ceiling_2
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_ceiling_3
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_ceiling_4
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_ceiling_5
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_wall_1
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_wall_2
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_wall_3
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_wall_4
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_wall_5
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_wall_6
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_wall_7
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_wall_8
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_wall_9
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_wall_10
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_wall_11
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_wall_12
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_wall_13
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_wall_14
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_wall_15
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_wall_16
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_wall_17
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_wall_18
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_wall_19
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_wall_20
  color: gray
  tag: forbid
- id: Panel Room/Panel_room_wall_21
  color: gray
  tag: forbid
- id: Panel Room/Panel_painting_flower
  color: green
  tag: forbid
- id: Panel Room/Panel_painting_eye
  color: green
  tag: forbid
- id: Panel Room/Panel_painting_snowman
  color: green
  tag: forbid
- id: Panel Room/Panel_painting_owl
  color: green
  tag: forbid
- id: Panel Room/Panel_painting_panda
  color: green
  tag: forbid
- id: Panel Room/Panel_room_stairs
  color: gray
  tag: forbid
- id: Doorways Room/Panel_begin_start
  color: white
  tag: botwhite
- id: Doorways Room/Panel_found_lost
  color: black
  tag: botblack
- id: Doorways Room/Panel_loaf_crust
  color: red
  tag: botred
- id: Doorways Room/Panel_eggs_breakfast
  color: yellow
  tag: botyellow
- id: Doorways Room/Panel_sun_sky
  color: blue
  tag: botblue
- id: Doorways Room/Panel_teacher_substitute
  color: purple
  tag: botpurple
- id: Doorways Room/Panel_walnuts_orange
  color: orange
  tag: botorange
- id: Doorways Room/Panel_path_i
  color: green
  tag: forbid
- id: Doorways Room/Panel_iron_rust
  color: brown
  tag: botbrown
- id: Doorways Room/Panel_obstacle_door
  color: gray
  tag: forbid
- id: Color Arrow Room/Panel_hues_colors
  color: white
  tag: botwhite
- id: Color Arrow Room/Panel_red_near
  color: white
  tag: midwhite
- id: Color Arrow Room/Panel_red_afar
  color: white
  tag: midwhite
- id: Color Arrow Room/Panel_blue_near
  color: white
  tag: midwhite
- id: Color Arrow Room/Panel_blue_afar
  color: white
  tag: midwhite
- id: Color Arrow Room/Panel_yellow_near
  color: white
  tag: midwhite
- id: Color Arrow Room/Panel_yellow_afar
  color: white
  tag: midwhite
- id: Color Arrow Room/Panel_purple_near
  color: white
  tag: midwhite
- id: Color Arrow Room/Panel_purple_afar
  color: white
  tag: midwhite
- id: Color Arrow Room/Panel_orange_near
  color: white
  tag: midwhite
- id: Color Arrow Room/Panel_orange_afar
  color: white
  tag: midwhite
- id: Color Arrow Room/Panel_green_near
  color: white
  tag: midwhite
- id: Color Arrow Room/Panel_green_afar
  color: white
  tag: midwhite
- id: Color Arrow Room/Panel_you
  color: gray
  tag: forbid
- id: Color Arrow Room/Panel_me
  color: gray
  tag: forbid
- id: Color Arrow Room/Panel_secret_blue
  color: gray
  tag: forbid
- id: Color Arrow Room/Panel_secret_yellow
  color: gray
  tag: forbid
- id: Color Arrow Room/Panel_secret_red
  color: gray
  tag: forbid
- id: Naps Room/Panel_naps_span
  color: black
  tag: midblack
- id: Naps Room/Panel_funny_enough
  color: black
  tag: topblack
- id: Naps Room/Panel_easy_soft
  color: black
  tag: bot black black
- id: Naps Room/Panel_sometimes_always
  color: black
  tag: bot black black
- id: Naps Room/Panel_dark_extinguish
  color: black
  tag: bot black black
- id: Naps Room/Panel_impatient_doctor
  color: black
  tag: bot black black
- id: Naps Room/Panel_even_ordinary
  color: black
  tag: bot black black
- id: Naps Room/Panel_one_none
  color:
    - white
    - black
  tag: top white bot black
- id: Naps Room/Panel_one_many
  color:
    - white
    - black
  tag: bot black top white
- id: Naps Room/Panel_team_meet
  color: black
  tag: topblack
- id: Naps Room/Panel_teem_meat
  color: black
  tag: topblack
- id: Naps Room/Panel_eat_tea
  color: black
  tag: topblack
- id: Naps Room/Panel_came_make
  color: black
  tag: topblack
- id: Naps Room/Panel_same_mace
  color: black
  tag: topblack
- id: Naps Room/Panel_safe_face
  color: black
  tag: topblack
- id: Naps Room/Panel_might_time
  color: black
  tag: topblack
- id: Strand Room/Panel_blank_a
  color: blue
  tag: forbid
- id: Strand Room/Panel_a_an
  color: blue
  tag: forbid
- id: Strand Room/Panel_a_and
  color: blue
  tag: forbid
- id: Strand Room/Panel_a_sand
  color: blue
  tag: forbid
- id: Strand Room/Panel_a_stand
  color: blue
  tag: forbid
- id: Strand Room/Panel_a_strand
  color: blue
  tag: forbid
- id: Strand Room/Panel_a_strands
  color: blue
  tag: forbid
- id: Strand Room/Panel_blank_i
  color: blue
  tag: forbid
- id: Strand Room/Panel_i_in
  color: blue
  tag: forbid
- id: Strand Room/Panel_i_sin
  color: blue
  tag: forbid
- id: Strand Room/Panel_i_sing
  color: blue
  tag: forbid
- id: Strand Room/Panel_i_sting
  color: blue
  tag: forbid
- id: Strand Room/Panel_i_string
  color: blue
  tag: forbid
- id: Strand Room/Panel_i_strings
  color: blue
  tag: forbid
- id: Strand Room/Panel_i_staring
  color: blue
  tag: forbid
- id: Strand Room/Panel_i_starling
  color: blue
  tag: forbid
- id: Strand Room/Panel_i_starting
  color: blue
  tag: forbid
- id: Strand Room/Panel_i_startling
  color: blue
  tag: forbid
- id: Smiley Room/Panel_soundgram_1
  color: yellow
  tag: topyellow
- id: Smiley Room/Panel_soundgram_2
  color: yellow
  tag: topyellow
- id: Smiley Room/Panel_scrambled_1
  color: yellow
  tag: botyellow
- id: Smiley Room/Panel_scrambled_2
  color: yellow
  tag: botyellow
- id: Smiley Room/Panel_anagram_6_1
  color: yellow
  tag: midyellow
- id: Smiley Room/Panel_anagram_6_2
  color: yellow
  tag: midyellow
- id: Smiley Room/Panel_anagram_7_1
  color: yellow
  tag: midyellow
- id: Smiley Room/Panel_anagram_7_2
  color: yellow
  tag: midyellow
- id: Smiley Room/Panel_anagram_7_3
  color: yellow
  tag: midyellow
- id: Smiley Room/Panel_anagram_7_4
  color: yellow
  tag: midyellow
- id: Smiley Room/Panel_anagram_8_1
  color: yellow
  tag: midyellow
- id: Smiley Room/Panel_anagram_8_2
  color: yellow
  tag: midyellow
- id: Smiley Room/Panel_anagram_8_3
  color: yellow
  tag: midyellow
- id: Smiley Room/Panel_anagram_9_1
  color: yellow
  tag: midyellow
- id: Hangry Room/Panel_red_top_1
  color: red
  tag: topred
- id: Hangry Room/Panel_red_top_2
  color: red
  tag: topred
- id: Hangry Room/Panel_red_top_3
  color: red
  tag: topred
- id: Hangry Room/Panel_red_top_4
  color: red
  tag: topred
- id: Hangry Room/Panel_red_mid_1
  color: red
  tag: midred
- id: Hangry Room/Panel_red_mid_2
  color:
    - red
    - black
  tag: red top red mid black bot
- id: Hangry Room/Panel_red_mid_3
  color: red
  tag: midred
- id: Hangry Room/Panel_red_mid_4
  color: red
  tag: red mid bot
  subtag: mid
  link: rmb FORE
- id: Hangry Room/Panel_red_mid_5
  color: red
  tag: red mid bot
  subtag: mid
  link: rmb AFT
- id: Hangry Room/Panel_red_bot_1
  color: red
  tag: botred
- id: Hangry Room/Panel_red_bot_2
  color: red
  tag: botred
- id: Hangry Room/Panel_red_bot_3
  color: red
  tag: botred
- id: Hangry Room/Panel_red_bot_4
  color: red
  tag: red mid bot
  subtag: bot
  link: rmb FORE
- id: Hangry Room/Panel_red_bot_5
  color: red
  tag: red mid bot
  subtag: bot
  link: rmb AFT
- id: Hangry Room/Panel_red_bot_6
  color: red
  tag: botred
- id: Ceiling Room/Panel_blue_top_1
  color: blue
  tag: blue top red bot
  subtag: top
  link: uxr IRIS
- id: Ceiling Room/Panel_red_bot_1
  color: red
  tag: blue top red bot
  subtag: bot
  link: uxr IRIS
- id: Ceiling Room/Panel_red_mid_2
  color: red
  tag: red mid blue bot
  subtag: mid
  link: xru LAKE
- id: Ceiling Room/Panel_blue_bot_2
  color: blue
  tag: red mid blue bot
  subtag: bot
  link: xru LAKE
- id: Ceiling Room/Panel_red_bot_3
  color: red
  tag: blue mid red bot
  subtag: bot
  link: xur HOURS
- id: Ceiling Room/Panel_blue_mid_3
  color: blue
  tag: blue mid red bot
  subtag: mid
  link: xur HOURS
- id: Ceiling Room/Panel_red_top_4
  color: red
  tag: red top mid blue
  subtag: top
  link: rux KNIGHT
- id: Ceiling Room/Panel_blue_mid_4
  color: blue
  tag: red top mid blue
  subtag: mid
  link: rux KNIGHT
- id: Ceiling Room/Panel_blue_bot_5
  color: blue
  tag: yellow top blue bot
  subtag: bot
  link: yxu KNIFE
- id: Ceiling Room/Panel_yellow_top_5
  color: yellow
  tag: yellow top blue bot
  subtag: top
  link: yxu KNIFE
- id: Ceiling Room/Panel_yellow_mid_6
  color: yellow
  tag: blue top yellow mid
  subtag: mid
  link: uyx BREAD
- id: Ceiling Room/Panel_blue_top_6
  color: blue
  tag: blue top yellow mid
  subtag: top
  link: uyx BREAD
- id: Ceiling Room/Panel_blue_mid_7
  color: blue
  tag: blue mid yellow bot
  subtag: mid
  link: xuy SPICE
- id: Ceiling Room/Panel_yellow_bot_7
  color: yellow
  tag: blue mid yellow bot
  subtag: bot
  link: xuy SPICE
- id: Ceiling Room/Panel_black_bot_8
  color: black
  tag: yellow mid black bot
  subtag: bot
  link: xyb GRIPS
- id: Ceiling Room/Panel_yellow_mid_8
  color: yellow
  tag: yellow mid black bot
  subtag: mid
  link: xyb GRIPS
- id: Ceiling Room/Panel_black_top_9
  color: black
  tag: black top yellow bot
  subtag: top
  link: bxy CHUM
- id: Ceiling Room/Panel_yellow_bot_9
  color: yellow
  tag: black top yellow bot
  subtag: bot
  link: bxy CHUM
- id: Ceiling Room/Panel_yellow_top_10
  color: yellow
  tag: yellow top black bot
  subtag: top
  link: yxb CHASM
- id: Ceiling Room/Panel_black_bot_10
  color: black
  tag: yellow top black bot
  subtag: bot
  link: yxb CHASM
- id: Ceiling Room/Panel_black_top_11
  color: black
  tag: black top yellow mid
  subtag: top
  link: byx NIGHT
- id: Ceiling Room/Panel_yellow_mid_11
  color: yellow
  tag: black top yellow mid
  subtag: mid
  link: byx NIGHT
- id: Ceiling Room/Panel_black_top_12
  color: black
  tag: black top red bot
  subtag: top
  link: bxr SHOP
- id: Ceiling Room/Panel_red_bot_12
  color: red
  tag: black top red bot
  subtag: bot
  link: bxr SHOP
- id: Ceiling Room/Panel_black_bot_13
  color: black
  tag: red top black bot
  subtag: bot
  link: rxb DECIDE
- id: Ceiling Room/Panel_red_top_13
  color: red
  tag: red top black bot
  subtag: top
  link: rxb DECIDE
- id: Ceiling Room/Panel_black_mid_14
  color: black
  tag: black mid red bot
  subtag: mid
  link: xbr DIAPER
- id: Ceiling Room/Panel_red_bot_14
  color: red
  tag: black mid red bot
  subtag: bot
  link: xbr DIAPER
- id: Ceiling Room/Panel_black_top_15
  color: black
  tag: black top red mid
  subtag: top
  link: brx BOWL
- id: Ceiling Room/Panel_red_mid_15
  color: red
  tag: black top red mid
  subtag: mid
  link: brx BOWL
- id: Ceiling Room/Panel_answer_1
  color: red
  tag: botred
- id: Ceiling Room/Panel_answer_2
  color: black
  tag: topblack
- id: Ceiling Room/Panel_answer_3
  color: blue
  tag: midblue
- id: Ceiling Room/Panel_answer_4
  color: yellow
  tag: topyellow
# This is a mandatory wall-snipe, so we will not shuffle it.
- id: Chemistry Room/Panel_open
  color: white
  tag: forbid
- id: Chemistry Room/Panel_close
  color: black
  tag: botblack
- id: Chemistry Room/Panel_ahead
  color: black
  tag: botblack
- id: Chemistry Room/Panel_yellow_bot_1
  color: yellow
  tag: botyellow
- id: Chemistry Room/Panel_brown_bot_1
  color: brown
  tag: botbrown
- id: Chemistry Room/Panel_blue_bot_2
  color: blue
  tag: tri botblue
  link: tbb WATER
- id: Chemistry Room/Panel_sugar_1
  color: red
  tag: botred
- id: Chemistry Room/Panel_sugar_2
  color: red
  tag: botred
- id: Chemistry Room/Panel_sugar_3
  color: red
  tag: botred
- id: Chemistry Room/Panel_blue_bot_3
  color: blue
  tag: tri botblue
  link: tbb WATER
- id: Chemistry Room/Panel_blue_bot_4
  color: blue
  tag: tri botblue
  link: tbb WATER
- id: Chemistry Room/Panel_blue_bot_5
  color: blue
  tag: double botblue
  subtag: left
  link: holo SALT
- id: Chemistry Room/Panel_blue_bot_6
  color: blue
  tag: double botblue
  subtag: right
  link: holo SALT
- id: Chemistry Room/Panel_blue_top_1
  color: blue
  tag: double topblue
  subtag: left
  link: exp CHEMISTRY
- id: Chemistry Room/Panel_blue_top_2
  color: blue
  tag: double topblue
  subtag: right
  link: exp CHEMISTRY
- id: Chemistry Room/Panel_long_bot_1
  color:
    - red
    - blue
  tag: chain red bot blue top
- id: Chemistry Room/Panel_black_bot_1
  color: black
  tag: botblack
- id: Chemistry Room/Panel_black_bot_2
  color: black
  tag: botblack
- id: Chemistry Room/Panel_long_top_1
  color:
    - blue
    - red
  tag: chain blue mid red bot
- id: Chemistry Room/Panel_anagram_1
  color: yellow
  tag: midyellow
- id: Chemistry Room/Panel_anagram_2
  color: yellow
  tag: midyellow
- id: Chemistry Room/Panel_anagram_3
  color: yellow
  tag: midyellow
- id: Chemistry Room/Panel_anagram_4
  color: yellow
  tag: midyellow
- id: Chemistry Room/Panel_anagram_5
  color: yellow
  tag: midyellow
- id: Chemistry Room/Panel_physics_1
  color: red
  tag: blue mid red bot
  subtag: bot
  link: xur PARTICLE
- id: Chemistry Room/Panel_physics_2
  color: blue
  tag: blue mid red bot
  subtag: mid
  link: xur PARTICLE
- id: Chemistry Room/Panel_physics_3
  color: red
  tag: purple mid red bot
  subtag: bot
  link: xpr ELECTRON
- id: Chemistry Room/Panel_physics_4
  color: red
  tag: purple mid red bot
  subtag: bot
  link: xpr NEUTRON
- id: Chemistry Room/Panel_physics_5
  color: red
  tag: purple mid red bot
  subtag: bot
  link: xpr PROTON
- id: Chemistry Room/Panel_physics_6
  color: purple
  tag: purple mid red bot
  subtag: mid
  link: xpr ELECTRON
- id: Chemistry Room/Panel_physics_7
  color: purple
  tag: purple mid red bot
  subtag: mid
  link: xpr NEUTRON
- id: Chemistry Room/Panel_physics_8
  color: purple
  tag: purple mid red bot
  subtag: mid
  link: xpr PROTON
- id: Chemistry Room/Panel_physics_9
  color: purple
  tag: double midpurp
  subtag: left
  link: change GRAVITY
- id: Chemistry Room/Panel_physics_10
  color: yellow
  tag: midyellow
- id: Chemistry Room/Panel_physics_11
  color: brown
  tag: botbrown
- id: Chemistry Room/Panel_biology_1
  color: red
  tag: botred
- id: Chemistry Room/Panel_biology_2
  color: red
  tag: botred
- id: Chemistry Room/Panel_biology_3
  color: red
  tag: botred
- id: Chemistry Room/Panel_biology_4
  color: red
  tag: double botred
  subtag: right
  link: mero SPINE
- id: Chemistry Room/Panel_biology_5
  color: red
  tag: botred
- id: Chemistry Room/Panel_biology_6
  color: red
  tag: botred
- id: Chemistry Room/Panel_biology_7
  color: red
  tag: botred
- id: Chemistry Room/Panel_biology_8
  color: red
  tag: double botred
  subtag: left
  link: mero SPINE
- id: Chemistry Room/Panel_biology_9
  color: purple
  tag: midpurp
- id: Chemistry Room/Panel_biology_10
  color: purple
  tag: double midpurp
  subtag: right
  link: change GRAVITY
- id: Challenge Room/Panel_challenge_challenge
  color: white
  tag: midwhite
- id: Challenge Room/Panel_welcome_welcome
  color: white
  tag: midwhite
- id: Challenge Room/Panel_open_nepotism
  color:
    - black
    - blue
  tag: chain mid black !!! blue
- id: Challenge Room/Panel_singed_singsong
  color:
    - red
    - blue
  tag: chain mid red blue
- id: Challenge Room/Panel_nevertrusted_maladjusted
  color: purple
  tag: midpurp
- id: Challenge Room/Panel_corner_corn
  color: red
  tag: midred
- id: Challenge Room/Panel_strawberries_mold
  color: brown
  tag: double botbrown
  subtag: left
  link: time MOLD
- id: Challenge Room/Panel_grub_burger
  color:
    - black
    - blue
  tag: chain mid black blue
- id: Challenge Room/Panel_bread_mold
  color: brown
  tag: double botbrown
  subtag: right
  link: time MOLD
- id: Challenge Room/Panel_color_gray
  color: gray
  tag: forbid
- id: Challenge Room/Panel_writer_songwriter
  color: blue
  tag: midblue
- id: Challenge Room/Panel_tales_stale
  color:
    - orange
    - yellow
  tag: chain mid orange yellow
- id: Challenge Room/Panel_realeyes_realize
  color: white
  tag: topwhite
- id: Challenge Room/Panel_lobs_lobster
  color: blue
  tag: midblue
- id: Challenge Room/Panel_double_anagram_1
  color: yellow
  tag: midyellow
- id: Challenge Room/Panel_double_anagram_2
  color: yellow
  tag: midyellow
- id: Challenge Room/Panel_double_anagram_3
  color: yellow
  tag: midyellow
- id: Challenge Room/Panel_double_anagram_4
  color: yellow
  tag: midyellow
- id: Challenge Room/Panel_double_anagram_5
  color: yellow
  tag: midyellow
- id: Challenge Room/Panel_facts
  color:
    - white
    - red
    - blue
  tag: forbid
- id: Challenge Room/Panel_facts2
  color: red
  tag: forbid
- id: Challenge Room/Panel_facts3
  color: white
  tag: forbid
- id: Challenge Room/Panel_facts4
  color: blue
  tag: forbid
- id: Challenge Room/Panel_facts5
  color: blue
  tag: forbid
- id: Challenge Room/Panel_facts6
  color: blue
  tag: forbid
- id: Challenge Room/Panel_double_anagram_6
  color: yellow
  tag: midyellow
- id: Open Areas/Panel_staircase
  color: white
  tag: midwhite
- id: Open Areas/Panel_rise_horizon
  color: blue
  tag: double topblue
  subtag: left
  link: expand HORIZON
- id: Open Areas/Panel_rise_sunrise
  color: blue
  tag: double topblue
  subtag: left
  link: expand SUNRISE
- id: Open Areas/Panel_son_horizon
  color: blue
  tag: double topblue
  subtag: right
  link: expand HORIZON
- id: Open Areas/Panel_son_sunrise
  color: blue
  tag: double topblue
  subtag: right
  link: expand SUNRISE
- id: Open Areas/Panel_smile_smile
  color: white
  tag: midwhite
- id: Open Areas/Panel_undistracted
  color: white
  tag: midwhite
- id: Open Areas/Panel_stargazer_stargazer
  color: white
  tag: midwhite
- id: Open Areas/Panel_hustling_sunlight
  color: yellow
  tag: midyellow
- id: Open Areas/Panel_sunlight_light
  color: red
  tag: midred
- id: Open Areas/Panel_light_bright
  color: purple
  tag: midpurp
- id: Open Areas/Panel_bright_sunny
  color: white
  tag: botwhite
- id: Open Areas/Panel_sunny_rainy
  color: black
  tag: botblack
- id: Open Areas/Panel_rainy_rainbow
  color: brown
  tag: botbrown
- id: Open Areas/Panel_rainy_rainbow2
  color: white
  tag: midwhite
- id: Open Areas/Panel_angered_enraged
  color:
    - yellow
    - white
  tag: syn anagram
  copy_to_sign: sign18
- id: Open Areas/Panel_vote_veto
  color:
    - yellow
    - black
  tag: ant anagram
  copy_to_sign: sign17
- id: Countdown Panels/Panel_traveled_traveled
  color: white
  tag: forbid
- id: Countdown Panels/Panel_disagreeable_agreeable
  color: black
  tag: forbid
- id: Countdown Panels/Panel_seeker_seeker
  color: white
  tag: forbid
- id: Countdown Panels/Panel_tenacious_tenacious
  color: white
  tag: forbid
- id: Countdown Panels/Panel_perceptive_perceptive
  color: white
  tag: forbid
- id: Countdown Panels/Panel_emboldened_bold
  color: red
  tag: forbid
- id: Countdown Panels/Panel_deterred_undeterred
  color: blue
  tag: forbid
- id: Countdown Panels/Panel_illuminated_initiated
  color: purple
  tag: forbid
- id: Countdown Panels/Panel_discerning_scramble
  color: yellow
  tag: forbid
- id: Countdown Panels/Panel_intelligent_wise
  color: brown
  tag: forbid
- id: Countdown Panels/Panel_optimistic_optimistic
  color: white
  tag: forbid
- id: Countdown Panels/Panel_wondrous_wondrous
  color: white
  tag: forbid
- id: Countdown Panels/Panel_steady_steady
  color: white
  tag: forbid
- id: Countdown Panels/Panel_bearer_bearer
  color: white
  tag: forbid
- id: Countdown Panels/Panel_colorful_colorful
  color: white
  tag: forbid
- id: Countdown Panels/Panel_observant_observant
  color: white
  tag: forbid
- id: Countdown Panels/Panel_master_master
  color: white
  tag: forbid
- id: Countdown Panels/Panel_grandfathered_red
  color: red
  tag: forbid
- id: Countdown Panels/Panel_ecstatic_ecstatic
  color: yellow
  tag: forbid
- id: Countdown Panels/Panel_artistic_artistic
  color: blue
  tag: forbid
- id: Countdown Panels/Panel_incomparable_incomparable
  color: white
  tag: forbid
- id: Countdown Panels/Panel_fearless_fearless
  color: white
  tag: forbid
- id: Countdown Panels/Panel_scientific_scientific
  color: purple
  tag: forbid
- id: Countdown Panels/Panel_challenged_unchallenged
  color: black
  tag: forbid
- id: Master Room/Panel_mastery_mastery
  color: white
  tag: midwhite
- id: Master Room/Panel_mastery_mastery2
  color: white
  tag: midwhite
- id: Master Room/Panel_mastery_mastery3
  color: white
  tag: midwhite
- id: Master Room/Panel_mastery_mastery4
  color: white
  tag: midwhite
- id: Master Room/Panel_mastery_mastery5
  color: white
  tag: midwhite
- id: Master Room/Panel_mastery_mastery6
  color: white
  tag: midwhite
- id: Master Room/Panel_mastery_mastery7
  color: white
  tag: midwhite
- id: Master Room/Panel_mastery_mastery8
  color: white
  tag: midwhite
- id: Master Room/Panel_mastery_mastery9
  color: white
  tag: midwhite
- id: Master Room/Panel_mastery_mastery10
  color: white
  tag: midwhite
- id: Master Room/Panel_mastery_mastery11
  color: white
  tag: midwhite
- id: Master Room/Panel_mastery_mastery12
  color: white
  tag: midwhite
- id: Master Room/Panel_mastery_mastery13
  color: white
  tag: midwhite
- id: Master Room/Panel_mastery_mastery14
  color: white
  tag: midwhite
- id: Master Room/Panel_mastery_mastery15
  color: white
  tag: midwhite
- id: Lingo Room/Panel_pilgrim
  color: blue
  tag: midblue
- id: Lingo Room/Panel_shortcut
  color: yellow
  tag: midyellow
- id: Lingo Room/Panel_lingo_1
  color: purple
  tag: toppurp
- id: Lingo Room/Panel_lingo_2
  color: white
  tag: botwhite
- id: Lingo Room/Panel_lingo_3
  color: white
  tag: botwhite
- id: Lingo Room/Panel_lingo_4
  color:
    - white
    - purple
  tag: forbid
- id: Lingo Room/Panel_lingo_5
  color: yellow
  tag: midyellow
- id: Lingo Room/Panel_lingo_6
  color:
    - black
    - white
  tag: forbid
- id: Lingo Room/Panel_lingo_7
  color:
    - orange
    - blue
  tag: forbid
- id: Lingo Room/Panel_lingo_8
  color: black
  tag: midblack
- id: Lingo Room/Panel_lingo_9
  color: gray
  tag: forbid
- id: Lingo Room/Panel_lingo_10
  color:
    - red
    - blue
  tag: forbid
- id: Lingo Room/Panel_lingo_11
  color: yellow
  tag: midyellow
- id: Lingo Room/Panel_lingo_12
  color:
    - purple
    - red
  tag: forbid
- id: Lingo Room/Panel_lingo_13
  color:
    - purple
    - brown
  tag: forbid