Skip to content
Snippets Groups Projects
Commit 4a2706dc authored by Vishnu Menon's avatar Vishnu Menon :bulb:
Browse files

clean code, add joshua's exhibit

parent c9e770ec
Branches
No related tags found
No related merge requests found
assets/misc/arrow.png

592 B

[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bbfcw6aetqtjq"
path="res://.godot/imported/arrow.png-e10df054c0d700e81b9fb5affc188f55.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/misc/arrow.png"
dest_files=["res://.godot/imported/arrow.png-e10df054c0d700e81b9fb5affc188f55.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
assets/paintings/joshua.png

220 KiB

[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cusjfg8xhddog"
path="res://.godot/imported/joshua.png-2043c684d5c184bfe5a1cdf418012c31.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/paintings/joshua.png"
dest_files=["res://.godot/imported/joshua.png-2043c684d5c184bfe5a1cdf418012c31.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<title>$GODOT_PROJECT_NAME</title>
<style>
body {
touch-action: none;
margin: 0;
border: 0 none;
padding: 0;
text-align: center;
background-color: black;
}
#canvas {
display: block;
margin: 0;
color: white;
}
#canvas:focus {
outline: none;
}
.godot {
font-family: 'Noto Sans', 'Droid Sans', Arial, sans-serif;
color: #e0e0e0;
background-color: #3b3943;
background-image: linear-gradient(to bottom, #403e48, #35333c);
border: 1px solid #45434e;
box-shadow: 0 0 1px 1px #2f2d35;
}
/* Status display */
#status {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
display: flex;
justify-content: center;
align-items: center;
/* don't consume click events - make children visible explicitly */
visibility: hidden;
}
#status-progress {
width: 366px;
height: 7px;
background-color: #38363A;
border: 1px solid #444246;
padding: 1px;
box-shadow: 0 0 2px 1px #1B1C22;
border-radius: 2px;
visibility: visible;
}
@media only screen and (orientation:portrait) {
#status-progress {
width: 61.8%;
}
}
#status-progress-inner {
height: 100%;
width: 0;
box-sizing: border-box;
transition: width 0.5s linear;
background-color: #202020;
border: 1px solid #222223;
box-shadow: 0 0 1px 1px #27282E;
border-radius: 3px;
}
#status-indeterminate {
height: 42px;
visibility: visible;
position: relative;
}
#status-indeterminate > div {
width: 4.5px;
height: 0;
border-style: solid;
border-width: 9px 3px 0 3px;
border-color: #2b2b2b transparent transparent transparent;
transform-origin: center 21px;
position: absolute;
}
#status-indeterminate > div:nth-child(1) { transform: rotate( 22.5deg); }
#status-indeterminate > div:nth-child(2) { transform: rotate( 67.5deg); }
#status-indeterminate > div:nth-child(3) { transform: rotate(112.5deg); }
#status-indeterminate > div:nth-child(4) { transform: rotate(157.5deg); }
#status-indeterminate > div:nth-child(5) { transform: rotate(202.5deg); }
#status-indeterminate > div:nth-child(6) { transform: rotate(247.5deg); }
#status-indeterminate > div:nth-child(7) { transform: rotate(292.5deg); }
#status-indeterminate > div:nth-child(8) { transform: rotate(337.5deg); }
#status-notice {
margin: 0 100px;
line-height: 1.3;
visibility: visible;
padding: 4px 6px;
visibility: visible;
}
</style>
$GODOT_HEAD_INCLUDE
</head>
<body>
<canvas id="canvas">
HTML5 canvas appears to be unsupported in the current browser.<br >
Please try updating or use a different browser.
</canvas>
<div id="status">
<div id="status-progress" style="display: none;" oncontextmenu="event.preventDefault();">
<div id ="status-progress-inner"></div>
</div>
<div id="status-indeterminate" style="display: none;" oncontextmenu="event.preventDefault();">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div id="status-notice" class="godot" style="display: none;"></div>
</div>
<script src="$GODOT_URL"></script>
<script>
const GODOT_CONFIG = $GODOT_CONFIG;
const engine = new Engine(GODOT_CONFIG);
(function () {
const INDETERMINATE_STATUS_STEP_MS = 100;
const statusProgress = document.getElementById('status-progress');
const statusProgressInner = document.getElementById('status-progress-inner');
const statusIndeterminate = document.getElementById('status-indeterminate');
const statusNotice = document.getElementById('status-notice');
let initializing = true;
let statusMode = 'hidden';
let animationCallbacks = [];
function animate(time) {
animationCallbacks.forEach((callback) => callback(time));
requestAnimationFrame(animate);
}
requestAnimationFrame(animate);
function animateStatusIndeterminate(ms) {
const i = Math.floor((ms / INDETERMINATE_STATUS_STEP_MS) % 8);
if (statusIndeterminate.children[i].style.borderTopColor === '') {
Array.prototype.slice.call(statusIndeterminate.children).forEach((child) => {
child.style.borderTopColor = '';
});
statusIndeterminate.children[i].style.borderTopColor = '#dfdfdf';
}
}
function setStatusMode(mode) {
if (statusMode === mode || !initializing) {
return;
}
[statusProgress, statusIndeterminate, statusNotice].forEach((elem) => {
elem.style.display = 'none';
});
animationCallbacks = animationCallbacks.filter(function (value) {
return (value !== animateStatusIndeterminate);
});
switch (mode) {
case 'progress':
statusProgress.style.display = 'block';
break;
case 'indeterminate':
statusIndeterminate.style.display = 'block';
animationCallbacks.push(animateStatusIndeterminate);
break;
case 'notice':
statusNotice.style.display = 'block';
break;
case 'hidden':
break;
default:
throw new Error('Invalid status mode');
}
statusMode = mode;
}
function setStatusNotice(text) {
while (statusNotice.lastChild) {
statusNotice.removeChild(statusNotice.lastChild);
}
const lines = text.split('\n');
lines.forEach((line) => {
statusNotice.appendChild(document.createTextNode(line));
statusNotice.appendChild(document.createElement('br'));
});
}
function displayFailureNotice(err) {
const msg = err.message || err;
console.error(msg);
setStatusNotice(msg);
setStatusMode('notice');
initializing = false;
}
const missing = Engine.getMissingFeatures();
if (missing.length !== 0) {
const missingMsg = 'Error\nThe following features required to run Godot projects on the Web are missing:\n';
displayFailureNotice(missingMsg + missing.join('\n'));
} else {
setStatusMode('indeterminate');
engine.startGame({
'onProgress': function (current, total) {
if (total > 0) {
statusProgressInner.style.width = `${(current / total) * 100}%`;
setStatusMode('progress');
if (current === total) {
// wait for progress bar animation
setTimeout(() => {
setStatusMode('indeterminate');
}, 500);
}
} else {
setStatusMode('indeterminate');
}
},
}).then(() => {
setStatusMode('hidden');
initializing = false;
}, displayFailureNotice);
}
}());
</script>
</body>
</html>
[gd_scene load_steps=337 format=3 uid="uid://dq0hclmv84sx"] [gd_scene load_steps=340 format=3 uid="uid://dq0hclmv84sx"]
[ext_resource type="PackedScene" uid="uid://bisbhn3ir5rre" path="res://actors/killzone.tscn" id="1_jbn22"] [ext_resource type="PackedScene" uid="uid://bisbhn3ir5rre" path="res://actors/killzone.tscn" id="1_jbn22"]
[ext_resource type="TileSet" uid="uid://cbpepakxabcka" path="res://components/whitespace.tres" id="1_vhxu0"] [ext_resource type="TileSet" uid="uid://cbpepakxabcka" path="res://components/whitespace.tres" id="1_vhxu0"]
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
[ext_resource type="PackedScene" uid="uid://fe7f727dwujs" path="res://components/textbox.tscn" id="5_ylw86"] [ext_resource type="PackedScene" uid="uid://fe7f727dwujs" path="res://components/textbox.tscn" id="5_ylw86"]
[ext_resource type="Texture2D" uid="uid://bwy02g4thojvq" path="res://assets/paintings/maxence.png" id="7_omuf7"] [ext_resource type="Texture2D" uid="uid://bwy02g4thojvq" path="res://assets/paintings/maxence.png" id="7_omuf7"]
[ext_resource type="Texture2D" uid="uid://bvvnsa63uepll" path="res://assets/paintings/keilani.png" id="8_7xn2g"] [ext_resource type="Texture2D" uid="uid://bvvnsa63uepll" path="res://assets/paintings/keilani.png" id="8_7xn2g"]
[ext_resource type="Texture2D" uid="uid://cusjfg8xhddog" path="res://assets/paintings/joshua.png" id="8_h3fpl"]
[ext_resource type="Texture2D" uid="uid://c5ljwfujlvtcr" path="res://assets/paintings/ben.png" id="9_snffs"] [ext_resource type="Texture2D" uid="uid://c5ljwfujlvtcr" path="res://assets/paintings/ben.png" id="9_snffs"]
[ext_resource type="Texture2D" uid="uid://k5svt0ujv4of" path="res://assets/paintings/manahil.png" id="10_hqsry"] [ext_resource type="Texture2D" uid="uid://k5svt0ujv4of" path="res://assets/paintings/manahil.png" id="10_hqsry"]
[ext_resource type="Texture2D" uid="uid://cn16kufreajin" path="res://assets/paintings/haig.png" id="11_8wpcf"] [ext_resource type="Texture2D" uid="uid://cn16kufreajin" path="res://assets/paintings/haig.png" id="11_8wpcf"]
...@@ -23,6 +24,8 @@ ...@@ -23,6 +24,8 @@
[ext_resource type="Script" path="res://scripts/autoplay.gd" id="18_lbep7"] [ext_resource type="Script" path="res://scripts/autoplay.gd" id="18_lbep7"]
[ext_resource type="Texture2D" uid="uid://ccx24cjbwtnu4" path="res://assets/kevin/cards.png" id="19_dm7bs"] [ext_resource type="Texture2D" uid="uid://ccx24cjbwtnu4" path="res://assets/kevin/cards.png" id="19_dm7bs"]
[ext_resource type="Texture2D" uid="uid://cqe2gui1t8i3p" path="res://assets/kevin/sword.png" id="19_makog"] [ext_resource type="Texture2D" uid="uid://cqe2gui1t8i3p" path="res://assets/kevin/sword.png" id="19_makog"]
[ext_resource type="Texture2D" uid="uid://ba0h7ghbw3ita" path="res://assets/misc/hint.png" id="22_1is8e"]
[ext_resource type="Script" path="res://scripts/arrow.gd" id="23_itlps"]
[sub_resource type="AtlasTexture" id="AtlasTexture_kld05"] [sub_resource type="AtlasTexture" id="AtlasTexture_kld05"]
atlas = ExtResource("17_spete") atlas = ExtResource("17_spete")
...@@ -2288,6 +2291,10 @@ type = 0 ...@@ -2288,6 +2291,10 @@ type = 0
position = Vector2(-1472, -192) position = Vector2(-1472, -192)
texture = ExtResource("7_omuf7") texture = ExtResource("7_omuf7")
[node name="joshua" parent="paintings/war" instance=ExtResource("3_kw4jh")]
position = Vector2(-2368, -224)
texture = ExtResource("8_h3fpl")
[node name="fun" type="Node2D" parent="paintings"] [node name="fun" type="Node2D" parent="paintings"]
[node name="keilani" parent="paintings/fun" instance=ExtResource("3_kw4jh")] [node name="keilani" parent="paintings/fun" instance=ExtResource("3_kw4jh")]
...@@ -2361,13 +2368,19 @@ caption = "The box art is an actual picture taken during the North African campa ...@@ -2361,13 +2368,19 @@ caption = "The box art is an actual picture taken during the North African campa
[node name="maxence_b" parent="plaques/war" instance=ExtResource("4_arnng")] [node name="maxence_b" parent="plaques/war" instance=ExtResource("4_arnng")]
position = Vector2(-1583, -183) position = Vector2(-1583, -183)
author = "cont'd." author = "cont'd."
caption = " This complete hex game map is made up of 5 separate maps which come with the game and measures around 10ft in length. In addition to the fighting space, it features reminders in the form of tables on the side as well as a turn tracker as a calendar since time of year is relevant to some rules. The size of the map alone should be an indicator that CNR is not a practical game. In addition to finding a table capable of holding such a map, the nature of the paper maps and the paper counters which will be placed on it means that this game board cannot be moved for the approximate 1500 hours it takes to complete. " caption = "The complete hex game map is made up of 5 separate maps which come with the game and measures around 10ft in length. In addition to the fighting space, it features reminders in the form of tables on the side as well as a turn tracker as a calendar since time of year is relevant to some rules. The size of the map alone should be an indicator that CNR is not a practical game. In addition to finding a table capable of holding such a map, the nature of the paper maps and the paper counters which will be placed on it means that this game board cannot be moved for the approximate 1500 hours it takes to complete. "
[node name="maxence_c" parent="plaques/war" instance=ExtResource("4_arnng")] [node name="maxence_c" parent="plaques/war" instance=ExtResource("4_arnng")]
position = Vector2(-1646, -183) position = Vector2(-1646, -183)
author = "cont'd." author = "cont'd."
caption = "At its core, the ruleset focused on players creating and customizing their vehicles, meticulously selecting armaments, defensive measures, and even aesthetic enhancements to gain an edge in the chaotic confrontations that unfolded on the game board. The mechanics ingeniously integrated elements of speed, agility, and weaponry, challenging players to navigate not only the treacherous terrain but also the tactical decisions crucial for survival and dominance. The rulebook laid out guidelines for movement, combat resolution, damage allocation, and campaign play, providing a comprehensive framework for immersive gameplay sessions. While the first edition of RoadRash might have been overshadowed by more mainstream tabletop games of its time, its ruleset and supplements carved a niche for enthusiasts keen on vehicular combat and post-apocalyptic settings. Despite its rarity and limited distribution, its impact resonates within the gaming community as a testament to the creativity and innovation prevalent during the era of tabletop gaming's evolution." caption = "At its core, the ruleset focused on players creating and customizing their vehicles, meticulously selecting armaments, defensive measures, and even aesthetic enhancements to gain an edge in the chaotic confrontations that unfolded on the game board. The mechanics ingeniously integrated elements of speed, agility, and weaponry, challenging players to navigate not only the treacherous terrain but also the tactical decisions crucial for survival and dominance. The rulebook laid out guidelines for movement, combat resolution, damage allocation, and campaign play, providing a comprehensive framework for immersive gameplay sessions. While the first edition of RoadRash might have been overshadowed by more mainstream tabletop games of its time, its ruleset and supplements carved a niche for enthusiasts keen on vehicular combat and post-apocalyptic settings. Despite its rarity and limited distribution, its impact resonates within the gaming community as a testament to the creativity and innovation prevalent during the era of tabletop gaming's evolution."
[node name="joshua" parent="plaques/war" instance=ExtResource("4_arnng")]
position = Vector2(-2290, -210)
author = "Joshua Ricefield"
tagline = "The Importance of Wargaming in World War II"
caption = "The image portrays the operations room at the Western Approaches Operations headquarters the Derby House, located in Liverpool, United Kingdom. The main plot located on the left wall shows naval bombing restrictions in the Atlantic Ocean to allow passage of Allied submarines. The home plot located on the back wall shows the enemy submarines reports. The information on the boards was updated in real time so ongoing scenarios could be solved and deployed into the field of battle. It was in this room that the entire Battle of the Atlantic was planned throughout the Second World War. In the very same building, members of the Woman’s Royal Naval Service developed wargames to improve the anti-submarine strategies of the British fleet. Acting upon the words of Churchill who stated, “Find out what is happening and sink the U-boats” at a time where German wolfpacks devasted Allied shipping lanes. Using novel communication technology, WATU used the outcomes of these wargames to signal the Allied fleets causing a quadruple in U-Boat losses. British admirals and naval officers have credited WATU with the Allied victory in the war."
[node name="fun" type="Node2D" parent="plaques"] [node name="fun" type="Node2D" parent="plaques"]
[node name="keilani" parent="plaques/fun" instance=ExtResource("4_arnng")] [node name="keilani" parent="plaques/fun" instance=ExtResource("4_arnng")]
...@@ -2411,7 +2424,7 @@ caption = "This image is a contrast between The Game of Life (1960) and The Chec ...@@ -2411,7 +2424,7 @@ caption = "This image is a contrast between The Game of Life (1960) and The Chec
tile_set = ExtResource("1_vhxu0") tile_set = ExtResource("1_vhxu0")
cell_quadrant_size = 32 cell_quadrant_size = 32
format = 2 format = 2
layer_0/tile_data = PackedInt32Array(65535, 65536, 0, 131071, 65536, 1, 65536, 65536, 1, 0, 65536, 0, 131072, 65536, 1, 131073, 65536, 1, 65537, 65536, 1, 1, 65536, 0, 196609, 65536, 2, 196610, 65536, 2, 262143, 65536, 2, 196608, 65536, 2, 196607, 65536, 1, 65538, 65536, 1, 2, 65536, 0, 131074, 65536, 1, 65534, 65536, 0, 131070, 65536, 1, 196606, 65536, 1, 262142, 65536, 2, 3, 65536, 0, 65539, 65536, 1, 131075, 65536, 1, 196611, 65536, 2, 65533, 65536, 0, 131069, 65536, 1, 196605, 65536, 1, 262141, 65536, 2, 65532, 65536, 0, 131068, 65536, 1, 196604, 65536, 1, 262140, 65536, 2, 262139, 65536, 2, 196603, 65536, 1, 131067, 65536, 1, 65531, 65536, 0, 4, 65536, 0, 5, 65536, 0, 65541, 65536, 1, 131077, 65536, 1, 196613, 65536, 2, 196612, 65536, 2, 131076, 65536, 1, 65540, 65536, 1, 6, 65536, 0, 65542, 65536, 1, 131078, 65536, 1, 196614, 65536, 2, 65530, 0, 0, 131066, 0, 1, 196602, 0, 1, 262138, 0, 2, 7, 131072, 0, 65543, 131072, 1, 131079, 131072, 1, 196615, 131072, 2, 65526, 131072, 0, 131062, 131072, 1, 196598, 131072, 1, 262134, 131072, 2, 262133, 65536, 2, 196597, 65536, 1, 131061, 65536, 1, 65525, 65536, 0, 65524, 65536, 0, 65523, 65536, 0, 131059, 65536, 1, 196595, 65536, 1, 262131, 65536, 2, 262132, 65536, 2, 196596, 65536, 1, 131060, 65536, 1, 65522, 0, 0, 131058, 0, 1, 196594, 0, 1, 262130, 0, 2, 1638391, 0, 3, 1703927, 0, 4, 1703928, 65536, 4, 1769464, 65536, 4, 1769463, 0, 4, 1834999, 0, 5, 1835000, 65536, 5, 1835001, 65536, 5, 1835002, 65536, 5, 1835003, 65536, 5, 1835004, 65536, 5, 1835005, 65536, 5, 1835006, 131072, 5, 1769470, 131072, 4, 1703934, 131072, 4, 1638398, 131072, 3, 1638397, 65536, 3, 1638396, 65536, 3, 1638395, 65536, 3, 1638394, 65536, 3, 1638393, 65536, 3, 1638392, 65536, 3, 1703929, 65536, 4, 1703930, 65536, 4, 1703931, 65536, 4, 1703932, 65536, 4, 1703933, 65536, 4, 1769468, 65536, 4, 1769467, 65536, 4, 1769465, 65536, 4, 1769466, 65536, 4, 1769469, 65536, 4, 1572867, 65536, 3, 1638403, 65536, 4, 1703939, 65536, 4, 1769475, 65536, 5, 1769476, 65536, 5, 1703940, 65536, 4, 1638404, 65536, 4, 1572868, 65536, 3, 1572866, 0, 3, 1638402, 0, 4, 1703938, 0, 4, 1769474, 0, 5, 12, 0, 1, 65548, 0, 1, 131084, 0, 1, 196620, 0, 2, 196621, 65536, 2, 131085, 65536, 1, 65549, 65536, 1, 13, 65536, 1, 14, 65536, 1, 65550, 65536, 1, 131086, 65536, 1, 196622, 65536, 2, 15, 65536, 1, 65551, 65536, 1, 131087, 65536, 1, 196623, 65536, 2, 16, 131072, 1, 65552, 131072, 1, 131088, 131072, 1, 196624, 131072, 2, -65524, 0, 0, -65523, 65536, 0, -65522, 65536, 0, -65521, 65536, 0, -65520, 131072, 0, -65515, 0, 1, 21, 0, 1, 65557, 0, 1, 131093, 0, 1, 196629, 0, 2, 196630, 65536, 2, 196631, 65536, 2, 131095, 65536, 1, 65559, 65536, 1, 23, 65536, 1, 22, 65536, 1, -65514, 65536, 1, -131050, 65536, 0, -131051, 0, 0, -65513, 65536, 1, 65558, 65536, 1, 131094, 65536, 1, 131096, 65536, 1, 196632, 65536, 2, 65560, 65536, 1, 24, 65536, 1, -65512, 65536, 1, -131048, 65536, 0, -131049, 65536, 0, -65511, 131072, 1, 25, 131072, 1, 65561, 131072, 1, 131097, 131072, 1, 196633, 131072, 2, -131047, 131072, 0, -196578, 0, 0, -131042, 0, 1, -65506, 0, 1, 30, 0, 1, 65566, 0, 1, 131102, 0, 1, 196638, 0, 2, 196639, 65536, 2, 196640, 65536, 2, 131104, 65536, 1, 65567, 65536, 1, 31, 65536, 1, -65505, 65536, 1, -131041, 65536, 1, -196577, 65536, 0, -196576, 65536, 0, -131040, 65536, 1, -65504, 65536, 1, 32, 65536, 1, 65568, 65536, 1, 131103, 65536, 1, 196641, 65536, 2, 131105, 65536, 1, 65569, 65536, 1, 33, 65536, 1, -65503, 65536, 1, -131039, 65536, 1, -196575, 65536, 0, -131038, 65536, 1, -65502, 65536, 1, 34, 65536, 1, 65570, 65536, 1, 131106, 65536, 1, 196642, 65536, 2, -196574, 65536, 0, -196573, 65536, 0, -196572, 65536, 0, -196571, 65536, 0, -196570, 65536, 0, -196569, 65536, 0, -196568, 65536, 0, -196567, 65536, 0, -196566, 65536, 0, -196565, 65536, 0, -196564, 65536, 0, -196563, 65536, 0, -196562, 65536, 0, -196561, 65536, 0, -196560, 65536, 0, -196559, 65536, 0, -196558, 65536, 0, -196557, 65536, 0, -196556, 65536, 0, -196555, 65536, 0, -196554, 131072, 0, -131018, 131072, 1, -65482, 131072, 1, 54, 131072, 1, 65590, 131072, 1, 131126, 131072, 1, 196662, 131072, 2, 196661, 65536, 2, 196660, 65536, 2, 196659, 65536, 2, 196658, 65536, 2, 196657, 65536, 2, 196656, 65536, 2, 196655, 65536, 2, 196654, 65536, 2, 196653, 65536, 2, 196652, 65536, 2, 196651, 65536, 2, 196650, 65536, 2, 196649, 65536, 2, 196648, 65536, 2, 196647, 65536, 2, 196646, 65536, 2, 196645, 65536, 2, 196644, 65536, 2, 196643, 65536, 2, -131037, 65536, 1, -131036, 65536, 1, -131035, 65536, 1, -131034, 65536, 1, -131033, 65536, 1, -131032, 65536, 1, -131031, 65536, 1, -65494, 65536, 1, -65493, 65536, 1, -65492, 65536, 1, -65491, 65536, 1, -65490, 65536, 1, -65489, 65536, 1, -65488, 65536, 1, -65487, 65536, 1, -131023, 65536, 1, -131022, 65536, 1, -131021, 65536, 1, -131020, 65536, 1, -131019, 65536, 1, -131024, 65536, 1, -131025, 65536, 1, -131026, 65536, 1, -131027, 65536, 1, -131028, 65536, 1, -131029, 65536, 1, -131030, 65536, 1, -65498, 65536, 1, -65499, 65536, 1, -65500, 65536, 1, -65501, 65536, 1, -65497, 65536, 1, -65496, 65536, 1, -65495, 65536, 1, -65486, 65536, 1, -65485, 65536, 1, -65484, 65536, 1, -65483, 65536, 1, 53, 65536, 1, 65589, 65536, 1, 65588, 65536, 1, 65587, 65536, 1, 65586, 65536, 1, 65585, 65536, 1, 131120, 65536, 1, 131119, 65536, 1, 131118, 65536, 1, 131117, 65536, 1, 131116, 65536, 1, 131115, 65536, 1, 131114, 65536, 1, 131113, 65536, 1, 131112, 65536, 1, 131111, 65536, 1, 131110, 65536, 1, 65573, 65536, 1, 65572, 65536, 1, 65571, 65536, 1, 131107, 65536, 1, 131108, 65536, 1, 36, 65536, 1, 35, 65536, 1, 37, 65536, 1, 38, 65536, 1, 39, 65536, 1, 40, 65536, 1, 41, 65536, 1, 42, 65536, 1, 43, 65536, 1, 44, 65536, 1, 45, 65536, 1, 46, 65536, 1, 47, 65536, 1, 48, 65536, 1, 49, 65536, 1, 50, 65536, 1, 51, 65536, 1, 52, 65536, 1, 131125, 65536, 1, 131124, 65536, 1, 131123, 65536, 1, 131122, 65536, 1, 131121, 65536, 1, 131109, 65536, 1, 65574, 65536, 1, 65575, 65536, 1, 65576, 65536, 1, 65577, 65536, 1, 65578, 65536, 1, 65579, 65536, 1, 65580, 65536, 1, 65581, 65536, 1, 65582, 65536, 1, 65583, 65536, 1, 65584, 65536, 1, -196549, 0, 0, -131013, 0, 1, -65477, 0, 1, 59, 0, 1, 65595, 0, 1, 131131, 0, 1, 196667, 0, 2, 196668, 65536, 2, 196669, 65536, 2, 131133, 65536, 1, 65597, 65536, 1, 61, 65536, 1, -65475, 65536, 1, -131011, 65536, 1, -196547, 65536, 0, -196548, 65536, 0, -131012, 65536, 1, -65476, 65536, 1, 60, 65536, 1, 131132, 65536, 1, 65596, 65536, 1, 131134, 65536, 1, 196670, 65536, 2, 65598, 65536, 1, 62, 65536, 1, -65474, 65536, 1, -131010, 65536, 1, -196546, 65536, 0, -196545, 65536, 0, -196544, 65536, 0, -131008, 65536, 1, -65472, 65536, 1, 63, 65536, 1, 65599, 65536, 1, 131135, 65536, 1, 196671, 65536, 2, 196672, 65536, 2, 131136, 65536, 1, 65600, 65536, 1, 64, 65536, 1, -131009, 65536, 1, -65473, 65536, 1, 196673, 131072, 2, 131137, 131072, 1, 65601, 131072, 1, 65, 131072, 1, -65471, 131072, 1, -131007, 131072, 1, -196543, 131072, 0, 65517, 65536, 0, 131053, 65536, 1, 196589, 65536, 1, 262125, 65536, 2, 65518, 131072, 0, 131054, 131072, 1, 196590, 131072, 1, 262126, 131072, 2, 65516, 65536, 0, 131052, 65536, 1, 131051, 65536, 1, 196587, 65536, 1, 262123, 65536, 2, 262124, 65536, 2, 196588, 65536, 1, 65515, 65536, 0, 65514, 65536, 0, 131050, 65536, 1, 196586, 65536, 1, 262122, 65536, 2, 131049, 0, 1, 65513, 0, 0, 196585, 0, 1, 262121, 0, 2, 65507, 131072, 0, 131043, 131072, 1, 196579, 131072, 1, 262115, 131072, 2, 262114, 65536, 2, 196578, 65536, 1, 131042, 65536, 1, 65506, 65536, 0, 65505, 65536, 0, 131041, 65536, 1, 131040, 65536, 1, 196576, 65536, 1, 196577, 65536, 1, 262113, 65536, 2, 262112, 65536, 2, 65504, 65536, 1, 65503, 65536, 1, 131039, 65536, 1, 196575, 65536, 1, 262111, 65536, 2, 196574, 65536, 1, 131038, 65536, 1, 65502, 65536, 1, 262110, 65536, 2, -32, 131072, 0, -33, 65536, 0, -34, 65536, 0, -65571, 131072, 0, -65572, 65536, 0, -131110, 131072, 0, -65574, 65536, 1, -38, 65536, 1, 65498, 65536, 1, 131034, 65536, 1, 196570, 65536, 1, 262106, 65536, 2, 262107, 65536, 2, 262108, 65536, 2, 196572, 65536, 1, 196573, 65536, 1, 131037, 65536, 1, 65501, 65536, 1, 65500, 65536, 1, -36, 65536, 1, -65573, 65536, 0, -37, 65536, 1, 65499, 65536, 1, 131035, 65536, 1, 131036, 65536, 1, 262109, 65536, 2, -35, 65536, 1, 196571, 65536, 1, -131111, 65536, 0, -65575, 65536, 1, -39, 65536, 1, 65497, 65536, 1, 131033, 65536, 1, 196569, 65536, 1, 262105, 65536, 2, 262104, 65536, 2, 262103, 65536, 2, 196567, 65536, 1, 196568, 65536, 1, 131032, 65536, 1, 65496, 65536, 1, -40, 65536, 1, -65576, 65536, 1, -131112, 65536, 0, -196649, 131072, 0, -196650, 65536, 0, -196651, 65536, 0, -196652, 65536, 0, -196653, 65536, 0, -196654, 65536, 0, -196655, 65536, 0, -131119, 65536, 1, -196656, 65536, 0, -131120, 65536, 1, -65584, 65536, 1, -65585, 65536, 1, -49, 65536, 1, 65487, 65536, 1, 131023, 65536, 1, 131024, 65536, 1, 196560, 65536, 1, 262096, 65536, 2, 262095, 65536, 2, 196559, 65536, 1, -131121, 65536, 1, -196657, 65536, 0, 65488, 65536, 1, 196561, 65536, 1, 196562, 65536, 1, 262098, 65536, 2, 262099, 65536, 2, 262100, 65536, 2, 262101, 65536, 2, 262102, 65536, 2, 196566, 65536, 1, 196565, 65536, 1, 196564, 65536, 1, 131029, 65536, 1, 131030, 65536, 1, 131031, 65536, 1, 65495, 65536, 1, -41, 65536, 1, -42, 65536, 1, -65578, 65536, 1, -65577, 65536, 1, -131113, 65536, 1, 65494, 65536, 1, 65493, 65536, 1, 131028, 65536, 1, 196563, 65536, 1, 262097, 65536, 2, 131027, 65536, 1, 65492, 65536, 1, -44, 65536, 1, -43, 65536, 1, -65579, 65536, 1, -131115, 65536, 1, -131114, 65536, 1, -131116, 65536, 1, -65580, 65536, 1, -65581, 65536, 1, -65582, 65536, 1, -46, 65536, 1, -47, 65536, 1, 65489, 65536, 1, 131025, 65536, 1, 131026, 65536, 1, 65491, 65536, 1, -45, 65536, 1, -131117, 65536, 1, -131118, 65536, 1, -65583, 65536, 1, 65490, 65536, 1, -48, 65536, 1, -196658, 65536, 0, -131122, 65536, 1, -65586, 65536, 1, -50, 65536, 1, 65486, 65536, 1, 131022, 65536, 1, 196558, 65536, 1, 262094, 65536, 2, 262093, 65536, 2, 196557, 65536, 1, 131021, 65536, 1, 65485, 65536, 1, -51, 65536, 1, -65587, 65536, 1, -131123, 65536, 1, -196659, 65536, 0, -196660, 65536, 0, -196661, 65536, 0, -196662, 65536, 0, -196663, 0, 0, -131127, 0, 1, -131126, 65536, 1, -65590, 65536, 1, -54, 65536, 1, 65482, 65536, 1, 131018, 65536, 1, 196554, 65536, 1, 262090, 65536, 2, 262089, 0, 2, 196553, 0, 1, 131017, 0, 1, 65481, 0, 1, -55, 0, 1, -65591, 0, 1, -53, 65536, 1, 65483, 65536, 1, 131019, 65536, 1, 196555, 65536, 1, 262091, 65536, 2, 262092, 65536, 2, 196556, 65536, 1, 131020, 65536, 1, 65484, 65536, 1, -52, 65536, 1, -65588, 65536, 1, -65589, 65536, 1, -131125, 65536, 1, -131124, 65536, 1, -196670, 65536, 0, -131134, 65536, 1, -131133, 65536, 1, -131132, 65536, 1, -131131, 65536, 1, -131130, 131072, 1, -196666, 131072, 0, -196667, 65536, 0, -196668, 65536, 0, -196669, 65536, 0, -65596, 65536, 1, -65595, 65536, 1, -59, 65536, 2, -60, 65536, 2, -61, 65536, 2, -65597, 65536, 1, -65598, 65536, 1, -65594, 131072, 1, -58, 131072, 2, -62, 65536, 2, -63, 65536, 2, -65599, 65536, 1, -131135, 65536, 1, -196671, 65536, 0, -196672, 0, 0, -131136, 0, 1, -65600, 0, 1, -64, 0, 2, -196677, 131072, 1, -131141, 131072, 1, -131142, 65536, 1, -65605, 131072, 1, -65606, 65536, 1, -70, 65536, 2, -71, 65536, 2, -65607, 65536, 1, -131143, 65536, 1, -196679, 65536, 1, -196678, 65536, 1, -69, 131072, 2, -72, 65536, 2, -65608, 65536, 1, -131144, 65536, 1, -196680, 65536, 1, -196681, 65536, 1, -131145, 65536, 1, -65609, 65536, 1, -73, 65536, 2, -74, 65536, 2, -65610, 65536, 1, -131146, 65536, 1, -196682, 65536, 1, -262217, 65536, 0, -196683, 65536, 1, -131147, 65536, 1, -65611, 65536, 1, -75, 65536, 2, -262218, 65536, 0, -262216, 65536, 0, -262215, 65536, 0, -262214, 65536, 0, -262213, 131072, 0, -262219, 65536, 0, -262220, 65536, 0, -262221, 65536, 0, -262222, 0, 0, -196686, 0, 1, -131150, 0, 1, -65614, 0, 1, -78, 0, 2, -77, 65536, 2, -65613, 65536, 1, -131149, 65536, 1, -196685, 65536, 1, -196684, 65536, 1, -131148, 65536, 1, -65612, 65536, 1, -76, 65536, 2, 1572869, 131072, 3, 1638405, 131072, 4, 1703941, 131072, 4, 1769477, 131072, 5, 1572873, 0, 3, 1638409, 0, 4, 1638410, 65536, 4, 1703946, 65536, 4, 1769482, 65536, 5, 1769481, 0, 5, 1703945, 0, 4, 1572874, 65536, 3, 1572875, 65536, 3, 1572876, 65536, 3, 1572877, 65536, 3, 1572878, 65536, 3, 1572879, 65536, 3, 1572880, 65536, 3, 1572881, 65536, 3, 1572882, 65536, 3, 1638418, 65536, 4, 1638419, 131072, 4, 1703955, 131072, 4, 1769491, 131072, 5, 1769490, 65536, 5, 1769489, 65536, 5, 1769488, 65536, 5, 1769487, 65536, 5, 1769486, 65536, 5, 1769485, 65536, 5, 1769484, 65536, 5, 1769483, 65536, 5, 1638411, 65536, 4, 1638412, 65536, 4, 1638413, 65536, 4, 1638414, 65536, 4, 1703949, 65536, 4, 1703948, 65536, 4, 1703947, 65536, 4, 1703950, 65536, 4, 1703951, 65536, 4, 1703952, 65536, 4, 1703953, 65536, 4, 1638417, 65536, 4, 1572883, 131072, 3, 1703954, 65536, 4, 1638416, 65536, 4, 1638415, 65536, 4, 1638385, 65536, 3, 1638386, 131072, 3, 1703922, 131072, 4, 1769458, 131072, 4, 1834994, 131072, 5, 1834993, 65536, 5, 1834992, 65536, 5, 1769456, 65536, 4, 1703920, 65536, 4, 1638384, 65536, 3, 1703921, 65536, 4, 1769457, 65536, 4, 1769455, 65536, 4, 1703919, 65536, 4, 1638383, 65536, 3, 1638382, 65536, 3, 1703918, 65536, 4, 1769454, 65536, 4, 1834991, 65536, 5, 1834990, 65536, 5, 1834989, 65536, 5, 1769453, 65536, 4, 1703917, 65536, 4, 1638381, 65536, 3, 1638380, 65536, 3, 1703916, 65536, 4, 1769452, 65536, 4, 1834988, 65536, 5, 1769451, 65536, 4, 1703915, 65536, 4, 1638379, 65536, 3, 1834987, 65536, 5, 1638377, 65536, 3, 1638378, 65536, 3, 1638376, 65536, 3, 1638375, 65536, 4, 1572839, 131072, 3, 1572838, 65536, 3, 1572837, 65536, 3, 1638373, 65536, 4, 1703909, 65536, 4, 1769445, 65536, 4, 1769446, 65536, 4, 1834982, 65536, 5, 1703910, 65536, 4, 1638374, 65536, 4, 1834981, 65536, 5, 1834983, 65536, 5, 1834984, 65536, 5, 1834985, 65536, 5, 1769449, 65536, 4, 1769450, 65536, 4, 1703914, 65536, 4, 1703913, 65536, 4, 1703912, 65536, 4, 1703911, 65536, 4, 1769447, 65536, 4, 1769448, 65536, 4, 1834986, 65536, 5, 1572836, 65536, 3, 1572835, 65536, 3, 1572834, 65536, 3, 1572833, 65536, 3, 1572832, 65536, 3, 1572831, 65536, 3, 1769444, 65536, 4, 1769443, 65536, 4, 1769442, 65536, 4, 1769441, 65536, 4, 1769440, 65536, 4, 1703904, 65536, 4, 1638368, 65536, 4, 1638372, 65536, 4, 1638371, 65536, 4, 1638370, 65536, 4, 1638369, 65536, 4, 1638367, 65536, 4, 1638366, 65536, 4, 1638365, 0, 4, 1703901, 0, 4, 1769437, 0, 4, 1834973, 0, 5, 1834974, 65536, 5, 1834975, 65536, 5, 1834976, 65536, 5, 1834977, 65536, 5, 1834978, 65536, 5, 1834979, 65536, 5, 1834980, 65536, 5, 1703908, 65536, 4, 1703907, 65536, 4, 1703906, 65536, 4, 1703905, 65536, 4, 1703903, 65536, 4, 1703902, 65536, 4, 1769438, 65536, 4, 1769439, 65536, 4, 1572830, 65536, 3, 1572829, 0, 3, 1376226, 131072, 6, 1441762, 131072, 7, 1376227, 196608, 6, 1441763, 196608, 7, 1441765, 0, 7, 1507308, 0, 7, 1507310, 65536, 7, 1376273, 131072, 6, 1441809, 131072, 7, 1376274, 196608, 6, 1441810, 196608, 7, 1441807, 0, 7, 1441802, 0, 7, 1441804, 65536, 7, -393263, 131072, 6, -327727, 131072, 7, -393262, 196608, 6, -327726, 196608, 7, -327724, 0, 7, -327730, 0, 7, -327732, 0, 7, 196678, 0, 5, 131142, 0, 4, 65606, 0, 4, 70, 0, 4, -65465, 65536, 4, -131001, 65536, 4, -131002, 0, 4, -196538, 0, 3, -65466, 0, 4, -196537, 65536, 3, -196536, 65536, 3, -196535, 65536, 3, -196534, 65536, 3, -196533, 65536, 3, -196532, 65536, 3, -196531, 65536, 3, -196530, 65536, 3, -196529, 65536, 3, -196528, 65536, 3, -196527, 65536, 3, -196526, 65536, 3, -196525, 65536, 3, -196524, 65536, 3, -196523, 65536, 3, -196522, 65536, 3, -196521, 65536, 4, -130985, 65536, 4, -65449, 65536, 4, 87, 65536, 4, 65623, 65536, 4, 131159, 65536, 4, 196695, 65536, 5, 196694, 65536, 5, 196693, 65536, 5, 196692, 65536, 5, 196691, 65536, 5, 196690, 65536, 5, 196689, 65536, 5, 196688, 65536, 5, 196687, 65536, 5, 196686, 65536, 5, 196685, 65536, 5, 196684, 65536, 5, 196683, 65536, 5, 196682, 65536, 5, 196681, 65536, 5, 196680, 65536, 5, 196679, 65536, 5, 131143, 65536, 4, 65607, 65536, 4, 65608, 65536, 4, 72, 65536, 4, 71, 65536, 4, 73, 65536, 4, 74, 65536, 4, 65610, 65536, 4, 65609, 65536, 4, 131145, 65536, 4, 131146, 65536, 4, 131147, 65536, 4, 131148, 65536, 4, 131149, 65536, 4, 131150, 65536, 4, 131151, 65536, 4, 131152, 65536, 4, 131153, 65536, 4, 131154, 65536, 4, 131155, 65536, 4, 131156, 65536, 4, 131157, 65536, 4, 131158, 65536, 4, 131144, 65536, 4, -65464, 65536, 4, -131000, 65536, 4, -130999, 65536, 4, 75, 65536, 4, -65461, 65536, 4, -65462, 65536, 4, -130998, 65536, 4, -65463, 65536, 4, -130997, 65536, 4, -65460, 65536, 4, -130996, 65536, 4, 65611, 65536, 4, 76, 65536, 4, 65612, 65536, 4, 65613, 65536, 4, 77, 65536, 4, 78, 65536, 4, -65458, 65536, 4, -130994, 65536, 4, -130995, 65536, 4, -65457, 65536, 4, 65614, 65536, 4, -65459, 65536, 4, 79, 65536, 4, 65616, 65536, 4, 65615, 65536, 4, -65456, 65536, 4, -130992, 65536, 4, -130993, 65536, 4, -65455, 65536, 4, -65454, 65536, 4, -130990, 65536, 4, -130989, 65536, 4, -65452, 65536, 4, -65451, 65536, 4, -65450, 65536, 4, 86, 65536, 4, 85, 65536, 4, 65621, 65536, 4, -130986, 65536, 4, 65622, 65536, 4, 65620, 65536, 4, 65619, 65536, 4, 65618, 65536, 4, 65617, 65536, 4, -130991, 65536, 4, -65453, 65536, 4, 82, 65536, 4, 81, 65536, 4, 80, 65536, 4, 83, 65536, 4, 84, 65536, 4, -130988, 65536, 4, -130987, 65536, 4, -196520, 65536, 3, -130984, 65536, 4, -65448, 65536, 4, 88, 65536, 4, 65624, 65536, 4, 131160, 65536, 4, 196696, 65536, 5, -196519, 65536, 3, -196518, 65536, 3, -196517, 65536, 3, -196516, 65536, 3, -196515, 65536, 3, -196514, 65536, 3, -196513, 65536, 3, -196512, 65536, 3, -196511, 65536, 3, -196510, 65536, 3, -196509, 65536, 3, -196508, 65536, 3, -196507, 65536, 3, -196506, 65536, 3, -196505, 65536, 3, -196504, 65536, 3, -196503, 131072, 3, -130967, 131072, 4, -65431, 131072, 4, 105, 131072, 4, 65641, 131072, 4, 131177, 131072, 4, 196713, 131072, 5, 131176, 65536, 4, 131175, 65536, 4, 131174, 65536, 4, 131173, 65536, 4, 131172, 65536, 4, 131171, 65536, 4, 131170, 65536, 4, 131169, 65536, 4, 196704, 65536, 5, 196703, 65536, 5, 196702, 65536, 5, 196701, 65536, 5, 196700, 65536, 5, 196699, 65536, 5, 196698, 65536, 5, 196697, 65536, 5, 196712, 65536, 5, 196711, 65536, 5, 196710, 65536, 5, 196709, 65536, 5, 196708, 65536, 5, 196707, 65536, 5, 196706, 65536, 5, 196705, 65536, 5, -65441, 65536, 4, -130977, 65536, 4, -130978, 65536, 4, -130979, 65536, 4, -130980, 65536, 4, -130981, 65536, 4, -130982, 65536, 4, -130983, 65536, 4, -65447, 65536, 4, 89, 65536, 4, 65625, 65536, 4, 131161, 65536, 4, 131162, 65536, 4, 65626, 65536, 4, 90, 65536, 4, -65446, 65536, 4, -65445, 65536, 4, 91, 65536, 4, 65627, 65536, 4, 131163, 65536, 4, 131164, 65536, 4, 65628, 65536, 4, 92, 65536, 4, -65444, 65536, 4, -65443, 65536, 4, 93, 65536, 4, 65629, 65536, 4, 131165, 65536, 4, 131166, 65536, 4, 65630, 65536, 4, 94, 65536, 4, -65442, 65536, 4, 95, 65536, 4, 65631, 65536, 4, 131167, 65536, 4, 131168, 65536, 4, 65632, 65536, 4, 96, 65536, 4, -65440, 65536, 4, -130976, 65536, 4, -130975, 65536, 4, -65439, 65536, 4, 97, 65536, 4, 65633, 65536, 4, 65634, 65536, 4, 98, 65536, 4, -65438, 65536, 4, -130974, 65536, 4, -130973, 65536, 4, -65437, 65536, 4, 99, 65536, 4, 65635, 65536, 4, 65636, 65536, 4, 100, 65536, 4, -65436, 65536, 4, -130972, 65536, 4, -130971, 65536, 4, -65435, 65536, 4, 101, 65536, 4, 65637, 65536, 4, 65638, 65536, 4, 102, 65536, 4, -65434, 65536, 4, -130970, 65536, 4, -130969, 65536, 4, -65433, 65536, 4, 103, 65536, 4, 65639, 65536, 4, 65640, 65536, 4, 104, 65536, 4, -65432, 65536, 4, -130968, 65536, 4, -196593, 65536, 7, -196595, 0, 7, -262120, 0, 7, -262122, 65536, 7, -393182, 131072, 6, -327646, 131072, 7, -393181, 196608, 6, -327645, 196608, 7, -327643, 0, 7, -327640, 0, 7, -327638, 65536, 7, -393167, 131072, 6, -327631, 131072, 7, -393166, 196608, 6, -327630, 196608, 7, -327633, 0, 7, -327619, 0, 7, -393153, 131072, 6, -327617, 131072, 7, -393152, 196608, 6, -327616, 196608, 7, -393139, 131072, 6, -327603, 131072, 7, -393138, 196608, 6, -327602, 196608, 7, -327605, 0, 7, -458665, 196608, 4, -393129, 196608, 4, -327593, 196608, 4, -720809, 196608, 4, -655273, 196608, 4, -589737, 196608, 4, -982953, 196608, 3, -917417, 196608, 4, -851881, 196608, 4, -524201, 196608, 4, -786345, 196608, 4, -262057, 196608, 4) layer_0/tile_data = PackedInt32Array(65535, 65536, 0, 131071, 65536, 1, 65536, 65536, 1, 0, 65536, 0, 131072, 65536, 1, 131073, 65536, 1, 65537, 65536, 1, 1, 65536, 0, 196609, 65536, 2, 196610, 65536, 2, 262143, 65536, 2, 196608, 65536, 2, 196607, 65536, 1, 65538, 65536, 1, 2, 65536, 0, 131074, 65536, 1, 65534, 65536, 0, 131070, 65536, 1, 196606, 65536, 1, 262142, 65536, 2, 3, 65536, 0, 65539, 65536, 1, 131075, 65536, 1, 196611, 65536, 2, 65533, 65536, 0, 131069, 65536, 1, 196605, 65536, 1, 262141, 65536, 2, 65532, 65536, 0, 131068, 65536, 1, 196604, 65536, 1, 262140, 65536, 2, 262139, 65536, 2, 196603, 65536, 1, 131067, 65536, 1, 65531, 65536, 0, 4, 65536, 0, 5, 65536, 0, 65541, 65536, 1, 131077, 65536, 1, 196613, 65536, 2, 196612, 65536, 2, 131076, 65536, 1, 65540, 65536, 1, 6, 65536, 0, 65542, 65536, 1, 131078, 65536, 1, 196614, 65536, 2, 65530, 0, 0, 131066, 0, 1, 196602, 0, 1, 262138, 0, 2, 7, 131072, 0, 65543, 131072, 1, 131079, 131072, 1, 196615, 131072, 2, 65526, 131072, 0, 131062, 131072, 1, 196598, 131072, 1, 262134, 131072, 2, 262133, 65536, 2, 196597, 65536, 1, 131061, 65536, 1, 65525, 65536, 0, 65524, 65536, 0, 65523, 65536, 0, 131059, 65536, 1, 196595, 65536, 1, 262131, 65536, 2, 262132, 65536, 2, 196596, 65536, 1, 131060, 65536, 1, 65522, 0, 0, 131058, 0, 1, 196594, 0, 1, 262130, 0, 2, 1638391, 0, 3, 1703927, 0, 4, 1703928, 65536, 4, 1769464, 65536, 4, 1769463, 0, 4, 1834999, 0, 5, 1835000, 65536, 5, 1835001, 65536, 5, 1835002, 65536, 5, 1835003, 65536, 5, 1835004, 65536, 5, 1835005, 65536, 5, 1835006, 131072, 5, 1769470, 131072, 4, 1703934, 131072, 4, 1638398, 131072, 3, 1638397, 65536, 3, 1638396, 65536, 3, 1638395, 65536, 3, 1638394, 65536, 3, 1638393, 65536, 3, 1638392, 65536, 3, 1703929, 65536, 4, 1703930, 65536, 4, 1703931, 65536, 4, 1703932, 65536, 4, 1703933, 65536, 4, 1769468, 65536, 4, 1769467, 65536, 4, 1769465, 65536, 4, 1769466, 65536, 4, 1769469, 65536, 4, 1572867, 65536, 3, 1638403, 65536, 4, 1703939, 65536, 4, 1769475, 65536, 5, 1769476, 65536, 5, 1703940, 65536, 4, 1638404, 65536, 4, 1572868, 65536, 3, 1572866, 0, 3, 1638402, 0, 4, 1703938, 0, 4, 1769474, 0, 5, 12, 0, 1, 65548, 0, 1, 131084, 0, 1, 196620, 0, 2, 196621, 65536, 2, 131085, 65536, 1, 65549, 65536, 1, 13, 65536, 1, 14, 65536, 1, 65550, 65536, 1, 131086, 65536, 1, 196622, 65536, 2, 15, 65536, 1, 65551, 65536, 1, 131087, 65536, 1, 196623, 65536, 2, 16, 131072, 1, 65552, 131072, 1, 131088, 131072, 1, 196624, 131072, 2, -65524, 0, 0, -65523, 65536, 0, -65522, 65536, 0, -65521, 65536, 0, -65520, 131072, 0, -65515, 0, 1, 21, 0, 1, 65557, 0, 1, 131093, 0, 1, 196629, 0, 2, 196630, 65536, 2, 196631, 65536, 2, 131095, 65536, 1, 65559, 65536, 1, 23, 65536, 1, 22, 65536, 1, -65514, 65536, 1, -131050, 65536, 0, -131051, 0, 0, -65513, 65536, 1, 65558, 65536, 1, 131094, 65536, 1, 131096, 65536, 1, 196632, 65536, 2, 65560, 65536, 1, 24, 65536, 1, -65512, 65536, 1, -131048, 65536, 0, -131049, 65536, 0, -65511, 131072, 1, 25, 131072, 1, 65561, 131072, 1, 131097, 131072, 1, 196633, 131072, 2, -131047, 131072, 0, -196578, 0, 0, -131042, 0, 1, -65506, 0, 1, 30, 0, 1, 65566, 0, 1, 131102, 0, 1, 196638, 0, 2, 196639, 65536, 2, 196640, 65536, 2, 131104, 65536, 1, 65567, 65536, 1, 31, 65536, 1, -65505, 65536, 1, -131041, 65536, 1, -196577, 65536, 0, -196576, 65536, 0, -131040, 65536, 1, -65504, 65536, 1, 32, 65536, 1, 65568, 65536, 1, 131103, 65536, 1, 196641, 65536, 2, 131105, 65536, 1, 65569, 65536, 1, 33, 65536, 1, -65503, 65536, 1, -131039, 65536, 1, -196575, 65536, 0, -131038, 65536, 1, -65502, 65536, 1, 34, 65536, 1, 65570, 65536, 1, 131106, 65536, 1, 196642, 65536, 2, -196574, 65536, 0, -196573, 65536, 0, -196572, 65536, 0, -196571, 65536, 0, -196570, 65536, 0, -196569, 65536, 0, -196568, 65536, 0, -196567, 65536, 0, -196566, 65536, 0, -196565, 65536, 0, -196564, 65536, 0, -196563, 65536, 0, -196562, 65536, 0, -196561, 65536, 0, -196560, 65536, 0, -196559, 65536, 0, -196558, 65536, 0, -196557, 65536, 0, -196556, 65536, 0, -196555, 65536, 0, -196554, 131072, 0, -131018, 131072, 1, -65482, 131072, 1, 54, 131072, 1, 65590, 131072, 1, 131126, 131072, 1, 196662, 131072, 2, 196661, 65536, 2, 196660, 65536, 2, 196659, 65536, 2, 196658, 65536, 2, 196657, 65536, 2, 196656, 65536, 2, 196655, 65536, 2, 196654, 65536, 2, 196653, 65536, 2, 196652, 65536, 2, 196651, 65536, 2, 196650, 65536, 2, 196649, 65536, 2, 196648, 65536, 2, 196647, 65536, 2, 196646, 65536, 2, 196645, 65536, 2, 196644, 65536, 2, 196643, 65536, 2, -131037, 65536, 1, -131036, 65536, 1, -131035, 65536, 1, -131034, 65536, 1, -131033, 65536, 1, -131032, 65536, 1, -131031, 65536, 1, -65494, 65536, 1, -65493, 65536, 1, -65492, 65536, 1, -65491, 65536, 1, -65490, 65536, 1, -65489, 65536, 1, -65488, 65536, 1, -65487, 65536, 1, -131023, 65536, 1, -131022, 65536, 1, -131021, 65536, 1, -131020, 65536, 1, -131019, 65536, 1, -131024, 65536, 1, -131025, 65536, 1, -131026, 65536, 1, -131027, 65536, 1, -131028, 65536, 1, -131029, 65536, 1, -131030, 65536, 1, -65498, 65536, 1, -65499, 65536, 1, -65500, 65536, 1, -65501, 65536, 1, -65497, 65536, 1, -65496, 65536, 1, -65495, 65536, 1, -65486, 65536, 1, -65485, 65536, 1, -65484, 65536, 1, -65483, 65536, 1, 53, 65536, 1, 65589, 65536, 1, 65588, 65536, 1, 65587, 65536, 1, 65586, 65536, 1, 65585, 65536, 1, 131120, 65536, 1, 131119, 65536, 1, 131118, 65536, 1, 131117, 65536, 1, 131116, 65536, 1, 131115, 65536, 1, 131114, 65536, 1, 131113, 65536, 1, 131112, 65536, 1, 131111, 65536, 1, 131110, 65536, 1, 65573, 65536, 1, 65572, 65536, 1, 65571, 65536, 1, 131107, 65536, 1, 131108, 65536, 1, 36, 65536, 1, 35, 65536, 1, 37, 65536, 1, 38, 65536, 1, 39, 65536, 1, 40, 65536, 1, 41, 65536, 1, 42, 65536, 1, 43, 65536, 1, 44, 65536, 1, 45, 65536, 1, 46, 65536, 1, 47, 65536, 1, 48, 65536, 1, 49, 65536, 1, 50, 65536, 1, 51, 65536, 1, 52, 65536, 1, 131125, 65536, 1, 131124, 65536, 1, 131123, 65536, 1, 131122, 65536, 1, 131121, 65536, 1, 131109, 65536, 1, 65574, 65536, 1, 65575, 65536, 1, 65576, 65536, 1, 65577, 65536, 1, 65578, 65536, 1, 65579, 65536, 1, 65580, 65536, 1, 65581, 65536, 1, 65582, 65536, 1, 65583, 65536, 1, 65584, 65536, 1, -196549, 0, 0, -131013, 0, 1, -65477, 0, 1, 59, 0, 1, 65595, 0, 1, 131131, 0, 1, 196667, 0, 2, 196668, 65536, 2, 196669, 65536, 2, 131133, 65536, 1, 65597, 65536, 1, 61, 65536, 1, -65475, 65536, 1, -131011, 65536, 1, -196547, 65536, 0, -196548, 65536, 0, -131012, 65536, 1, -65476, 65536, 1, 60, 65536, 1, 131132, 65536, 1, 65596, 65536, 1, 131134, 65536, 1, 196670, 65536, 2, 65598, 65536, 1, 62, 65536, 1, -65474, 65536, 1, -131010, 65536, 1, -196546, 65536, 0, -196545, 65536, 0, -196544, 65536, 0, -131008, 65536, 1, -65472, 65536, 1, 63, 65536, 1, 65599, 65536, 1, 131135, 65536, 1, 196671, 65536, 2, 196672, 65536, 2, 131136, 65536, 1, 65600, 65536, 1, 64, 65536, 1, -131009, 65536, 1, -65473, 65536, 1, 196673, 131072, 2, 131137, 131072, 1, 65601, 131072, 1, 65, 131072, 1, -65471, 131072, 1, -131007, 131072, 1, -196543, 131072, 0, 65517, 65536, 0, 131053, 65536, 1, 196589, 65536, 1, 262125, 65536, 2, 65518, 131072, 0, 131054, 131072, 1, 196590, 131072, 1, 262126, 131072, 2, 65516, 65536, 0, 131052, 65536, 1, 131051, 65536, 1, 196587, 65536, 1, 262123, 65536, 2, 262124, 65536, 2, 196588, 65536, 1, 65515, 65536, 0, 65514, 65536, 0, 131050, 65536, 1, 196586, 65536, 1, 262122, 65536, 2, 131049, 0, 1, 65513, 0, 0, 196585, 0, 1, 262121, 0, 2, 65507, 131072, 0, 131043, 131072, 1, 196579, 131072, 1, 262115, 131072, 2, 262114, 65536, 2, 196578, 65536, 1, 131042, 65536, 1, 65506, 65536, 0, 65505, 65536, 0, 131041, 65536, 1, 131040, 65536, 1, 196576, 65536, 1, 196577, 65536, 1, 262113, 65536, 2, 262112, 65536, 2, 65504, 65536, 1, 65503, 65536, 1, 131039, 65536, 1, 196575, 65536, 1, 262111, 65536, 2, 196574, 65536, 1, 131038, 65536, 1, 65502, 65536, 1, 262110, 65536, 2, -32, 131072, 0, -33, 65536, 0, -34, 65536, 0, -65571, 131072, 0, -65572, 65536, 0, -131110, 131072, 0, -65574, 65536, 1, -38, 65536, 1, 65498, 65536, 1, 131034, 65536, 1, 196570, 65536, 1, 262106, 65536, 2, 262107, 65536, 2, 262108, 65536, 2, 196572, 65536, 1, 196573, 65536, 1, 131037, 65536, 1, 65501, 65536, 1, 65500, 65536, 1, -36, 65536, 1, -65573, 65536, 0, -37, 65536, 1, 65499, 65536, 1, 131035, 65536, 1, 131036, 65536, 1, 262109, 65536, 2, -35, 65536, 1, 196571, 65536, 1, -131111, 65536, 0, -65575, 65536, 1, -39, 65536, 1, 65497, 65536, 1, 131033, 65536, 1, 196569, 65536, 1, 262105, 65536, 2, 262104, 65536, 2, 262103, 65536, 2, 196567, 65536, 1, 196568, 65536, 1, 131032, 65536, 1, 65496, 65536, 1, -40, 65536, 1, -65576, 65536, 1, -131112, 65536, 0, -196649, 131072, 0, -196650, 65536, 0, -196651, 65536, 0, -196652, 65536, 0, -196653, 65536, 0, -196654, 65536, 0, -196655, 65536, 0, -131119, 65536, 1, -196656, 65536, 0, -131120, 65536, 1, -65584, 65536, 1, -65585, 65536, 1, -49, 65536, 1, 65487, 65536, 1, 131023, 65536, 1, 131024, 65536, 1, 196560, 65536, 1, 262096, 65536, 2, 262095, 65536, 2, 196559, 65536, 1, -131121, 65536, 1, -196657, 65536, 0, 65488, 65536, 1, 196561, 65536, 1, 196562, 65536, 1, 262098, 65536, 2, 262099, 65536, 2, 262100, 65536, 2, 262101, 65536, 2, 262102, 65536, 2, 196566, 65536, 1, 196565, 65536, 1, 196564, 65536, 1, 131029, 65536, 1, 131030, 65536, 1, 131031, 65536, 1, 65495, 65536, 1, -41, 65536, 1, -42, 65536, 1, -65578, 65536, 1, -65577, 65536, 1, -131113, 65536, 1, 65494, 65536, 1, 65493, 65536, 1, 131028, 65536, 1, 196563, 65536, 1, 262097, 65536, 2, 131027, 65536, 1, 65492, 65536, 1, -44, 65536, 1, -43, 65536, 1, -65579, 65536, 1, -131115, 65536, 1, -131114, 65536, 1, -131116, 65536, 1, -65580, 65536, 1, -65581, 65536, 1, -65582, 65536, 1, -46, 65536, 1, -47, 65536, 1, 65489, 65536, 1, 131025, 65536, 1, 131026, 65536, 1, 65491, 65536, 1, -45, 65536, 1, -131117, 65536, 1, -131118, 65536, 1, -65583, 65536, 1, 65490, 65536, 1, -48, 65536, 1, -196658, 65536, 0, -131122, 65536, 1, -65586, 65536, 1, -50, 65536, 1, 65486, 65536, 1, 131022, 65536, 1, 196558, 65536, 1, 262094, 65536, 2, 262093, 65536, 2, 196557, 65536, 1, 131021, 65536, 1, 65485, 65536, 1, -51, 65536, 1, -65587, 65536, 1, -131123, 65536, 1, -196659, 65536, 0, -196660, 65536, 0, -196661, 65536, 0, -196662, 65536, 0, -196663, 0, 0, -131127, 0, 1, -131126, 65536, 1, -65590, 65536, 1, -54, 65536, 1, 65482, 65536, 1, 131018, 65536, 1, 196554, 65536, 1, 262090, 65536, 2, 262089, 0, 2, 196553, 0, 1, 131017, 0, 1, 65481, 0, 1, -55, 0, 1, -65591, 0, 1, -53, 65536, 1, 65483, 65536, 1, 131019, 65536, 1, 196555, 65536, 1, 262091, 65536, 2, 262092, 65536, 2, 196556, 65536, 1, 131020, 65536, 1, 65484, 65536, 1, -52, 65536, 1, -65588, 65536, 1, -65589, 65536, 1, -131125, 65536, 1, -131124, 65536, 1, -196670, 65536, 0, -131134, 65536, 1, -131133, 65536, 1, -131132, 65536, 1, -131131, 65536, 1, -131130, 131072, 1, -196666, 131072, 0, -196667, 65536, 0, -196668, 65536, 0, -196669, 65536, 0, -65596, 65536, 1, -65595, 65536, 1, -59, 65536, 2, -60, 65536, 2, -61, 65536, 2, -65597, 65536, 1, -65598, 65536, 1, -65594, 131072, 1, -58, 131072, 2, -62, 65536, 2, -63, 65536, 2, -65599, 65536, 1, -131135, 65536, 1, -196671, 65536, 0, -196672, 0, 0, -131136, 0, 1, -65600, 0, 1, -64, 0, 2, -196677, 131072, 1, -131141, 131072, 1, -131142, 65536, 1, -65605, 131072, 1, -65606, 65536, 1, -70, 65536, 2, -71, 65536, 2, -65607, 65536, 1, -131143, 65536, 1, -196679, 65536, 1, -196678, 65536, 1, -69, 131072, 2, -72, 65536, 2, -65608, 65536, 1, -131144, 65536, 1, -196680, 65536, 1, -196681, 65536, 1, -131145, 65536, 1, -65609, 65536, 1, -73, 65536, 2, -74, 65536, 2, -65610, 65536, 1, -131146, 65536, 1, -196682, 65536, 1, -262217, 65536, 0, -196683, 65536, 1, -131147, 65536, 1, -65611, 65536, 1, -75, 65536, 2, -262218, 65536, 0, -262216, 65536, 0, -262215, 65536, 0, -262214, 65536, 0, -262213, 131072, 0, -262219, 65536, 0, -262220, 65536, 0, -262221, 65536, 0, -262222, 0, 0, -196686, 0, 1, -131150, 0, 1, -65614, 0, 1, -78, 0, 2, -77, 65536, 2, -65613, 65536, 1, -131149, 65536, 1, -196685, 65536, 1, -196684, 65536, 1, -131148, 65536, 1, -65612, 65536, 1, -76, 65536, 2, 1572869, 131072, 3, 1638405, 131072, 4, 1703941, 131072, 4, 1769477, 131072, 5, 1572873, 0, 3, 1638409, 0, 4, 1638410, 65536, 4, 1703946, 65536, 4, 1769482, 65536, 5, 1769481, 0, 5, 1703945, 0, 4, 1572874, 65536, 3, 1572875, 65536, 3, 1572876, 65536, 3, 1572877, 65536, 3, 1572878, 65536, 3, 1572879, 65536, 3, 1572880, 65536, 3, 1572881, 65536, 3, 1572882, 65536, 3, 1638418, 65536, 4, 1638419, 131072, 4, 1703955, 131072, 4, 1769491, 131072, 5, 1769490, 65536, 5, 1769489, 65536, 5, 1769488, 65536, 5, 1769487, 65536, 5, 1769486, 65536, 5, 1769485, 65536, 5, 1769484, 65536, 5, 1769483, 65536, 5, 1638411, 65536, 4, 1638412, 65536, 4, 1638413, 65536, 4, 1638414, 65536, 4, 1703949, 65536, 4, 1703948, 65536, 4, 1703947, 65536, 4, 1703950, 65536, 4, 1703951, 65536, 4, 1703952, 65536, 4, 1703953, 65536, 4, 1638417, 65536, 4, 1572883, 131072, 3, 1703954, 65536, 4, 1638416, 65536, 4, 1638415, 65536, 4, 1638385, 65536, 3, 1638386, 131072, 3, 1703922, 131072, 4, 1769458, 131072, 4, 1834994, 131072, 5, 1834993, 65536, 5, 1834992, 65536, 5, 1769456, 65536, 4, 1703920, 65536, 4, 1638384, 65536, 3, 1703921, 65536, 4, 1769457, 65536, 4, 1769455, 65536, 4, 1703919, 65536, 4, 1638383, 65536, 3, 1638382, 65536, 3, 1703918, 65536, 4, 1769454, 65536, 4, 1834991, 65536, 5, 1834990, 65536, 5, 1834989, 65536, 5, 1769453, 65536, 4, 1703917, 65536, 4, 1638381, 65536, 3, 1638380, 65536, 3, 1703916, 65536, 4, 1769452, 65536, 4, 1834988, 65536, 5, 1769451, 65536, 4, 1703915, 65536, 4, 1638379, 65536, 3, 1834987, 65536, 5, 1638377, 65536, 3, 1638378, 65536, 3, 1638376, 65536, 3, 1638375, 65536, 4, 1572839, 131072, 3, 1572838, 65536, 3, 1572837, 65536, 3, 1638373, 65536, 4, 1703909, 65536, 4, 1769445, 65536, 4, 1769446, 65536, 4, 1834982, 65536, 5, 1703910, 65536, 4, 1638374, 65536, 4, 1834981, 65536, 5, 1834983, 65536, 5, 1834984, 65536, 5, 1834985, 65536, 5, 1769449, 65536, 4, 1769450, 65536, 4, 1703914, 65536, 4, 1703913, 65536, 4, 1703912, 65536, 4, 1703911, 65536, 4, 1769447, 65536, 4, 1769448, 65536, 4, 1834986, 65536, 5, 1572836, 65536, 3, 1572835, 65536, 3, 1572834, 65536, 3, 1572833, 65536, 3, 1572832, 65536, 3, 1572831, 65536, 3, 1769444, 65536, 4, 1769443, 65536, 4, 1769442, 65536, 4, 1769441, 65536, 4, 1769440, 65536, 4, 1703904, 65536, 4, 1638368, 65536, 4, 1638372, 65536, 4, 1638371, 65536, 4, 1638370, 65536, 4, 1638369, 65536, 4, 1638367, 65536, 4, 1638366, 65536, 4, 1638365, 0, 4, 1703901, 0, 4, 1769437, 0, 4, 1834973, 0, 5, 1834974, 65536, 5, 1834975, 65536, 5, 1834976, 65536, 5, 1834977, 65536, 5, 1834978, 65536, 5, 1834979, 65536, 5, 1834980, 65536, 5, 1703908, 65536, 4, 1703907, 65536, 4, 1703906, 65536, 4, 1703905, 65536, 4, 1703903, 65536, 4, 1703902, 65536, 4, 1769438, 65536, 4, 1769439, 65536, 4, 1572830, 65536, 3, 1572829, 0, 3, 1376226, 131072, 6, 1441762, 131072, 7, 1376227, 196608, 6, 1441763, 196608, 7, 1441765, 0, 7, 1507308, 0, 7, 1507310, 65536, 7, 1376273, 131072, 6, 1441809, 131072, 7, 1376274, 196608, 6, 1441810, 196608, 7, 1441807, 0, 7, 1441802, 0, 7, 1441804, 65536, 7, -393263, 131072, 6, -327727, 131072, 7, -393262, 196608, 6, -327726, 196608, 7, -327724, 0, 7, -327730, 0, 7, -327732, 0, 7, 196678, 0, 5, 131142, 0, 4, 65606, 0, 4, 70, 0, 4, -65465, 65536, 4, -131001, 65536, 4, -131002, 0, 4, -196538, 0, 3, -65466, 0, 4, -196537, 65536, 3, -196536, 65536, 3, -196535, 65536, 3, -196534, 65536, 3, -196533, 65536, 3, -196532, 65536, 3, -196531, 65536, 3, -196530, 65536, 3, -196529, 65536, 3, -196528, 65536, 3, -196527, 65536, 3, -196526, 65536, 3, -196525, 65536, 3, -196524, 65536, 3, -196523, 65536, 3, -196522, 65536, 3, -196521, 65536, 4, -130985, 65536, 4, -65449, 65536, 4, 87, 65536, 4, 65623, 65536, 4, 131159, 65536, 4, 196695, 65536, 5, 196694, 65536, 5, 196693, 65536, 5, 196692, 65536, 5, 196691, 65536, 5, 196690, 65536, 5, 196689, 65536, 5, 196688, 65536, 5, 196687, 65536, 5, 196686, 65536, 5, 196685, 65536, 5, 196684, 65536, 5, 196683, 65536, 5, 196682, 65536, 5, 196681, 65536, 5, 196680, 65536, 5, 196679, 65536, 5, 131143, 65536, 4, 65607, 65536, 4, 65608, 65536, 4, 72, 65536, 4, 71, 65536, 4, 73, 65536, 4, 74, 65536, 4, 65610, 65536, 4, 65609, 65536, 4, 131145, 65536, 4, 131146, 65536, 4, 131147, 65536, 4, 131148, 65536, 4, 131149, 65536, 4, 131150, 65536, 4, 131151, 65536, 4, 131152, 65536, 4, 131153, 65536, 4, 131154, 65536, 4, 131155, 65536, 4, 131156, 65536, 4, 131157, 65536, 4, 131158, 65536, 4, 131144, 65536, 4, -65464, 65536, 4, -131000, 65536, 4, -130999, 65536, 4, 75, 65536, 4, -65461, 65536, 4, -65462, 65536, 4, -130998, 65536, 4, -65463, 65536, 4, -130997, 65536, 4, -65460, 65536, 4, -130996, 65536, 4, 65611, 65536, 4, 76, 65536, 4, 65612, 65536, 4, 65613, 65536, 4, 77, 65536, 4, 78, 65536, 4, -65458, 65536, 4, -130994, 65536, 4, -130995, 65536, 4, -65457, 65536, 4, 65614, 65536, 4, -65459, 65536, 4, 79, 65536, 4, 65616, 65536, 4, 65615, 65536, 4, -65456, 65536, 4, -130992, 65536, 4, -130993, 65536, 4, -65455, 65536, 4, -65454, 65536, 4, -130990, 65536, 4, -130989, 65536, 4, -65452, 65536, 4, -65451, 65536, 4, -65450, 65536, 4, 86, 65536, 4, 85, 65536, 4, 65621, 65536, 4, -130986, 65536, 4, 65622, 65536, 4, 65620, 65536, 4, 65619, 65536, 4, 65618, 65536, 4, 65617, 65536, 4, -130991, 65536, 4, -65453, 65536, 4, 82, 65536, 4, 81, 65536, 4, 80, 65536, 4, 83, 65536, 4, 84, 65536, 4, -130988, 65536, 4, -130987, 65536, 4, -196520, 65536, 3, -130984, 65536, 4, -65448, 65536, 4, 88, 65536, 4, 65624, 65536, 4, 131160, 65536, 4, 196696, 65536, 5, -196519, 65536, 3, -196518, 65536, 3, -196517, 65536, 3, -196516, 65536, 3, -196515, 65536, 3, -196514, 65536, 3, -196513, 65536, 3, -196512, 65536, 3, -196511, 65536, 3, -196510, 65536, 3, -196509, 65536, 3, -196508, 65536, 3, -196507, 65536, 3, -196506, 65536, 3, -196505, 65536, 3, -196504, 65536, 3, -196503, 131072, 3, -130967, 131072, 4, -65431, 131072, 4, 105, 131072, 4, 65641, 131072, 4, 131177, 131072, 4, 196713, 131072, 5, 131176, 65536, 4, 131175, 65536, 4, 131174, 65536, 4, 131173, 65536, 4, 131172, 65536, 4, 131171, 65536, 4, 131170, 65536, 4, 131169, 65536, 4, 196704, 65536, 5, 196703, 65536, 5, 196702, 65536, 5, 196701, 65536, 5, 196700, 65536, 5, 196699, 65536, 5, 196698, 65536, 5, 196697, 65536, 5, 196712, 65536, 5, 196711, 65536, 5, 196710, 65536, 5, 196709, 65536, 5, 196708, 65536, 5, 196707, 65536, 5, 196706, 65536, 5, 196705, 65536, 5, -65441, 65536, 4, -130977, 65536, 4, -130978, 65536, 4, -130979, 65536, 4, -130980, 65536, 4, -130981, 65536, 4, -130982, 65536, 4, -130983, 65536, 4, -65447, 65536, 4, 89, 65536, 4, 65625, 65536, 4, 131161, 65536, 4, 131162, 65536, 4, 65626, 65536, 4, 90, 65536, 4, -65446, 65536, 4, -65445, 65536, 4, 91, 65536, 4, 65627, 65536, 4, 131163, 65536, 4, 131164, 65536, 4, 65628, 65536, 4, 92, 65536, 4, -65444, 65536, 4, -65443, 65536, 4, 93, 65536, 4, 65629, 65536, 4, 131165, 65536, 4, 131166, 65536, 4, 65630, 65536, 4, 94, 65536, 4, -65442, 65536, 4, 95, 65536, 4, 65631, 65536, 4, 131167, 65536, 4, 131168, 65536, 4, 65632, 65536, 4, 96, 65536, 4, -65440, 65536, 4, -130976, 65536, 4, -130975, 65536, 4, -65439, 65536, 4, 97, 65536, 4, 65633, 65536, 4, 65634, 65536, 4, 98, 65536, 4, -65438, 65536, 4, -130974, 65536, 4, -130973, 65536, 4, -65437, 65536, 4, 99, 65536, 4, 65635, 65536, 4, 65636, 65536, 4, 100, 65536, 4, -65436, 65536, 4, -130972, 65536, 4, -130971, 65536, 4, -65435, 65536, 4, 101, 65536, 4, 65637, 65536, 4, 65638, 65536, 4, 102, 65536, 4, -65434, 65536, 4, -130970, 65536, 4, -130969, 65536, 4, -65433, 65536, 4, 103, 65536, 4, 65639, 65536, 4, 65640, 65536, 4, 104, 65536, 4, -65432, 65536, 4, -130968, 65536, 4, -196593, 65536, 7, -196595, 0, 7, -262120, 0, 7, -262122, 65536, 7, -393182, 131072, 6, -327646, 131072, 7, -393181, 196608, 6, -327645, 196608, 7, -327643, 0, 7, -327640, 0, 7, -327638, 65536, 7, -393167, 131072, 6, -327631, 131072, 7, -393166, 196608, 6, -327630, 196608, 7, -327633, 0, 7, -327619, 0, 7, -393153, 131072, 6, -327617, 131072, 7, -393152, 196608, 6, -327616, 196608, 7, -393139, 131072, 6, -327603, 131072, 7, -393138, 196608, 6, -327602, 196608, 7, -327605, 0, 7, -458665, 196608, 4, -393129, 196608, 4, -327593, 196608, 4, -720809, 196608, 4, -655273, 196608, 4, -589737, 196608, 4, -982953, 196608, 3, -917417, 196608, 4, -851881, 196608, 4, -524201, 196608, 4, -786345, 196608, 4, -262057, 196608, 4, -458827, 131072, 6, -393291, 131072, 7, -458826, 196608, 6, -393290, 196608, 7, -393288, 0, 7)
[node name="decor" type="Node2D" parent="."] [node name="decor" type="Node2D" parent="."]
...@@ -2438,6 +2451,12 @@ sprite_frames = SubResource("SpriteFrames_tjpwd") ...@@ -2438,6 +2451,12 @@ sprite_frames = SubResource("SpriteFrames_tjpwd")
frame_progress = 0.295437 frame_progress = 0.295437
script = ExtResource("18_lbep7") script = ExtResource("18_lbep7")
[node name="arrow" type="Sprite2D" parent="decor"]
position = Vector2(-239, -22)
scale = Vector2(0.5, 0.5)
texture = ExtResource("22_1is8e")
script = ExtResource("23_itlps")
[node name="player" parent="." instance=ExtResource("2_aqp80")] [node name="player" parent="." instance=ExtResource("2_aqp80")]
position = Vector2(20, -30) position = Vector2(20, -30)
... ...
......
extends Sprite2D
@export var hit = 10
var val
var up
func _ready():
val = position.y
func _process(delta):
if up:
position.y -= 1
if abs(val - position.y) > hit:
up = false
else:
position.y += 1
if abs(val - position.y) > hit:
up = true
extends AnimatedSprite2D extends AnimatedSprite2D
# Called when the node enters the scene tree for the first time.
func _ready():
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta): func _process(delta):
play("default") play("default")
extends Node2D
# Called when the node enters the scene tree for the first time.
func _ready():
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass
...@@ -5,15 +5,6 @@ extends Area2D ...@@ -5,15 +5,6 @@ extends Area2D
@export var tagline = "" @export var tagline = ""
@export_multiline var caption = "" @export_multiline var caption = ""
func _ready():
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass
func body_entered(body): func body_entered(body):
if body.name == "player": if body.name == "player":
body.set_interaction("plaque", [author, caption]) body.set_interaction("plaque", [author, caption])
... ...
......
...@@ -87,10 +87,3 @@ func on_line_piped(): ...@@ -87,10 +87,3 @@ func on_line_piped():
func change_state(new_state): func change_state(new_state):
current_state = new_state current_state = new_state
match current_state:
State.READY:
pass
State.READING:
pass
State.FINISHED:
pass
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment